changeset 88:7e2e5f8bc516

remove some images
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Thu, 18 Feb 2016 12:05:09 +0900
parents 04e333c17c0d
children a4af6428370a
files paper/c4.tex paper/images/image.graffle paper/images/regex/allostate.pdf paper/images/regex/parser.pdf paper/master_paper.pdf slide/s6/images/example/wordcountseparate.svg slide/s6/images/regex/allostate.svg slide/s6/images/regex/cctree.svg slide/s6/images/regex/cctreemerge.svg slide/s6/images/regex/dfa.svg slide/s6/images/regex/parser.svg slide/s6/images/regex/setstate.svg slide/s6/images/regex/stateafasta.svg slide/s6/images/regex/stateasta.svg slide/s6/images/regex/stateasta3.svg slide/s6/images/regex/stateselect.svg slide/s6/images/regex/stateselectasta.svg slide/s6/images/regex/stateselseq.svg slide/s6/images/regex/stateseq.svg slide/s6/images/regex/subset.svg slide/s6/images/regex/subsetauto.svg slide/s6/images/regex/transitiontable.svg slide/s6/index.html
diffstat 23 files changed, 358 insertions(+), 3308 deletions(-) [+]
line wrap: on
line diff
--- a/paper/c4.tex	Thu Feb 18 06:40:17 2016 +0900
+++ b/paper/c4.tex	Thu Feb 18 12:05:09 2016 +0900
@@ -49,8 +49,10 @@
 }
 \end{lstlisting}
 
+文字列処理の Task と結果の整合や表示を行う Print Task をそれぞれ決められたフォーマットに沿って記述すればよい。
 ファイルを分割して文字列処理を行なった際、分割された部分でそれぞれの例題の整合性が取れなくなってしまうことがある。
-整合性の取り方についてはそれぞれの例題にて述べる。
+
+文字列処理や結果の整合性の取り方についてはそれぞれの例題にて述べる。
 
 \section{Word Count}
 \label{sec:wc}
@@ -95,7 +97,7 @@
 % 分割されたファイルを先頭から見ていき、まずは先頭が空白か改行かどうかをチェックする。
 % 空白や改行が読み込まれるたびに Word Num や Line Num をカウントしていき、最後に分割されたファイルの末尾が空白かどうかをチェックしている。
 
-\begin{lstlisting}[frame=lrbt,label=src:Exec,caption=文字列処理の記述,numbers=left]
+\begin{lstlisting}[frame=lrbt,label=src:Exec,caption=Word Countの記述,numbers=left]
 SchedDefineTask1(Exec,wordcount);
 
 static int
@@ -130,7 +132,7 @@
 Task それぞれの単語数と行数を集計し、分割された部分に関して整合性をとり単語数を調整する。
 単語数、行数がそれぞれ決定されたのちに結果が Print される。
 
-\begin{lstlisting}[frame=lrbt,label=src:Print,caption=結果を集計する Print ルーチン,numbers=left]
+\begin{lstlisting}[frame=lrbt,label=src:Print,caption=Word Count の Print Task,numbers=left]
 #define STATUS_NUM 2
 
 static int
@@ -239,7 +241,6 @@
 その場合は、本来の読み込み部分の text の長さ $L$ に加えて、pattern の長さ $s$ から 1 引いた数だけ多く読みこむように設計することで、正しく結果を算出することができる。
 (図\ref{fig:iodivsuc})
 
-
 \begin{figure}[htbp]
 \begin{center}
 \includegraphics[width=1.0\textwidth]{images/example/iodivsuc.pdf}
@@ -252,7 +253,7 @@
 そして Boyer-Moore String Search に必要な情報を bm という構造体にまとめ、この構造体をそれぞれの Task に送信している。
 (ソースコード\ref{src:bmTMmain})
 
-\begin{lstlisting}[frame=lrbt,label=src:bmTMmain,caption=Task の生成前に Boyer Moore の skip table を生成,numbers=left]
+\begin{lstlisting}[frame=lrbt,label=src:bmTMmain,caption=Boyer-Moore String Search の TMmain,numbers=left]
 typedef struct bm {
     int* skip_table;
     unsigned char *search_word;
@@ -295,8 +296,7 @@
 \end{lstlisting}
 
 
-
-\begin{lstlisting}[frame=lrbt,label=src:bmexec,caption=Boyer-Moore String Search のメインルーチン,numbers=left]
+\begin{lstlisting}[frame=lrbt,label=src:bmexec,caption=Boyer-Moore String Search の記述,numbers=left]
 static int BM_method(unsigned char *text,int text_len,
               unsigned char *pattern,int sw_len,int *skip)
 {
@@ -333,7 +333,7 @@
 }
 \end{lstlisting}
 
-\begin{lstlisting}[frame=lrbt,label=src:bmprint,caption=Boyer-Moore String Search の結果の集計,numbers=left]
+\begin{lstlisting}[frame=lrbt,label=src:bmprint,caption=Boyer-Moore String Search の Print Task,numbers=left]
 static int
 print_task(SchedTask *s, void *rbuf, void *wbuf)
 {
@@ -554,7 +554,7 @@
   \begin{center}
     \includegraphics[scale=0.20]{images/regex/dfaregex.pdf}
   \end{center}
-  \caption{どの状態もある入力を与えたとしても遷移先は一意に決定される}
+  \caption{どの状態もある入力を与えたとしても遷移先は一意に決定される(DFA)}
   \label{fig:dfaregex}
 \end{figure}
 
@@ -584,7 +584,7 @@
 \end{figure}
 
 このとき、状態 2 と 4 を組み合わせて一つの状態を新しく作り、その状態に遷移させる。新しく作られる状態の数は状態の組み合わせなので、その状態の組み合わせの和をとっている。
-これより、状態 4 に a か [c-z] を入力すると状態 4 に遷移し、b が入力されると新しい状態 6 に遷移する。
+これより、状態 4 に a か [c-z] を入力すると状態 4 に遷移し、b が入力されると新しい状態 2,4 に遷移する。
 このような変換をすることによって、入力によって遷移先が一意に決定されるようになる。(図\ref{fig:dfa})
 
 \begin{figure}[htpb]
@@ -597,7 +597,7 @@
 
 \subsection{Subset Construction による状態の変換}
 
-Subset Construction は、ある複数の状態を 1 つの新しい状態としてまとめ、その新しい状態から新しい遷移先を構成しそれを繰り返す手法である。
+Subset Construction は、ある複数の状態を 1 つの新しい状態としてまとめ、その新しい状態からの遷移先を構成する手法である。
 
 ソースコード\ref{src:cc}は文字クラスの構造体である。正規表現木の各ノードそれぞれに、この構造体を持っている。
 文字クラスは二分木で構築されており、それぞれの二分木に文字の範囲である Condition を持っている。
@@ -626,7 +626,6 @@
 図\ref{fig:sc} に2つの状態があり、それぞれに入力と遷移先がある。
 これら 2 つの状態を一つの状態として表現し、新しく状態遷移図を生成する。
 もし、文字クラスの範囲が重なっている場合は、遷移先の状態を組み合わせて新しい状態を生成する。
-新しい状態が作られれば、その状態から新しい状態遷移を生成し、新しい状態が生成されなくなるまでこれを繰り返す。
 
 \begin{figure}[htpb]
   \begin{center}
@@ -636,7 +635,7 @@
   \label{fig:sc}
 \end{figure}
 
-ある文字クラスの範囲に別の文字クラスの範囲が重なり、さらにそれぞれの文字クラスの遷移先が異なる場合、図\ref{fig:CharClassMergePattern}のように 13 パターンの場合を考慮しなければならない。
+ある文字クラスの範囲に別の文字クラスの範囲が重なり、さらにそれぞれの文字クラスの遷移先が異なる場合、図\ref{fig:CharClassMergePattern}のような 13 パターンの場合分けを考慮しなければならない。
 
 \begin{figure}[htpb]
   \begin{center}
@@ -648,16 +647,17 @@
 
 \subsection{正規表現マッチャの並列処理の実装}
 正規表現から正規表現木を生成し、その木に対して状態を割り振りを行ない、Subset Construction による新しい状態の生成が終わったあとにマッチングを行う。
-なお、Subset Construction による新しい状態の生成はマッチングの前に行うことも可能であるが、マッチング途中で新しい状態を発見したときにその都度生成することも可能である。
 
 % bit パターンの実装の話
-本研究の実装では、状態を Bit Pattern で表現している。
+今回の実装では、状態それぞれを Bit Pattern で表現している。
 Bit Pattern で状態を持つことで、Subset Construction による状態の組み合わせも Bit Pattern の和を取ることで容易に表現できる。
 % state 構造 bitvector の話 配列を MaxState の分のコードの話
-その状態は StateArray と呼ばれる配列で格納されており、状態遷移が行われるたびに StateArray を見に行く。
+それらの状態は StateArray と呼ばれる配列で格納されており、状態遷移が行われるたびに StateArray を見に行く。
 あらかじめ配列の大きさのメモリを確保する必要があるが、Subset Construction による新しい状態生成も考慮しなければならない。
 正規表現木に状態を割り振った時に最大の状態の Bit は分かっているので、その状態の Bit の 2 倍だけ配列を確保しておけば、Bit Pattern が全て 1 までの状態を表現することができる。
-状態の遷移先は文字クラスごとの List 構造になっており、その状態に入力が行われたらそのリストを辿って遷移先の状態を判断する。
+
+StateArray を見れば、ある状態に対して入力をすると状態の遷移先をチェックすることができる。
+状態の遷移先は文字クラスごとの List 構造になっており、入力された文字をチェックしながらリストを辿って状態の遷移先を判断する。
 (図\ref{fig:statearray})
 
 \begin{figure}[htpb]
@@ -689,7 +689,7 @@
 }
 \end{lstlisting}
 
-\begin{lstlisting}[frame=lrbt,label=src:task,caption=正規表現のマッチング部分,numbers=left]
+\begin{lstlisting}[frame=lrbt,label=src:task,caption=ceriumGrep のマッチング部分,numbers=left]
 TSValue blockSearch(TSValue tsv,Buffer buff,int task_spawned) {
     tsv.current = tsv.tg->stateStart->tState;
     tsv.blk->result = NULL;
@@ -697,7 +697,7 @@
     tsv.blk->resultEnd = &result;
     tsv.blk->blockBegin = tsv.current;
     addResult(tsv,true,buff.buff,buff.buffend);  // entire buffer
-    tsv = tSearch(tsv);
+    tsv = tSearch(tsv);  // Matching
     tsv.blk->blockEnd = tsv.current;
     if (tsv.blk->blockEnd->state->bitState.bitContainer != 1) {
         if (tsv.matchBegin != tsv.buff.buffptr) {
@@ -731,6 +731,7 @@
 分割されたファイルに対して正規表現によるマッチングを行う。
 マッチングすると、マッチングの始まりのファイルの場所と終わりのファイルの場所を Result という構造体に格納する。
 マッチングの数だけこの構造体が生成され、これらは List 構造として結果をまとめていく。 (ソースコード\ref{src:result})
+もし、分割されたファイル
 \begin{lstlisting}[frame=lrbt,label=src:result,caption=Resultの構造体,numbers=left]
 typedef struct result {
     unsigned char *begin;
@@ -750,6 +751,7 @@
 そして、1つ目のファイルの末尾が状態遷移の途中で終わっていた場合(状態 1 でない場合)は、結果を集計する際に再度マッチングし始めた場所から正規表現をマッチングさせる。
 
 このマッチングは結果を集計する Print Task にて実行されるので、single thread で処理される。
+そのため、分割された部分で状態遷移の途中で終わっている場合が多ければそれだけ集計時の処理が重くなる。
 
 \begin{figure}[htpb]
   \begin{center}
--- a/paper/images/image.graffle	Thu Feb 18 06:40:17 2016 +0900
+++ b/paper/images/image.graffle	Thu Feb 18 12:05:09 2016 +0900
@@ -85857,14 +85857,14 @@
 	<key>WindowInfo</key>
 	<dict>
 		<key>CurrentSheet</key>
-		<integer>11</integer>
+		<integer>9</integer>
 		<key>Expanded_Canvases</key>
 		<array>
+			<string>キャンバス 7</string>
 			<string>cctree</string>
-			<string>キャンバス 7</string>
 		</array>
 		<key>Frame</key>
-		<string>{{529, 38}, {1279, 1139}}</string>
+		<string>{{514, 38}, {1279, 1139}}</string>
 		<key>ShowInfo</key>
 		<true/>
 		<key>ShowRuler</key>
@@ -85876,9 +85876,9 @@
 		<key>TopSlabHeight</key>
 		<real>682</real>
 		<key>VisibleRegion</key>
-		<string>{{542.99062758785806, -66}, {565.42053303038585, 916.82238496331979}}</string>
+		<string>{{619.10113354641885, 66.247193458329861}, {679.7752918250153, 1102.2472087278347}}</string>
 		<key>Zoom</key>
-		<real>1.0700000524520874</real>
+		<real>0.88999998569488525</real>
 		<key>ZoomValues</key>
 		<array>
 			<array>
Binary file paper/images/regex/allostate.pdf has changed
Binary file paper/images/regex/parser.pdf has changed
Binary file paper/master_paper.pdf has changed
--- a/slide/s6/images/example/wordcountseparate.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,207 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1272pt" height="363pt" viewBox="0 0 1272 363" 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 27.640625 0 L 35.5625 -24.8125 L 31.34375 -24.8125 L 25.78125 -4.515625 L 25.6875 -4.515625 L 20.5 -24.8125 L 16.03125 -24.8125 L 11.046875 -4.515625 L 10.9375 -4.515625 L 5.328125 -24.8125 L 0.8125 -24.8125 L 8.78125 0 L 13.203125 0 L 18.1875 -19.734375 L 18.28125 -19.734375 L 23.328125 0 Z M 27.640625 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-2">
-<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-3">
-<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-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 16.84375 0.765625 L 2.640625 -35.09375 L -0.8125 -35.09375 L 13.34375 0.765625 Z M 16.84375 0.765625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-6">
-<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-7">
-<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 3.3125 -24.8125 L 3.3125 0 L 7.390625 0 L 7.390625 -24.8125 Z M 3.3125 -24.8125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-8">
-<path style="stroke:none;" d="M 19.921875 -16.84375 L 24.140625 -16.84375 C 23.984375 -18.320312 23.597656 -19.59375 22.984375 -20.65625 C 22.378906 -21.726562 21.601562 -22.617188 20.65625 -23.328125 C 19.71875 -24.035156 18.628906 -24.554688 17.390625 -24.890625 C 16.160156 -25.222656 14.84375 -25.390625 13.4375 -25.390625 C 11.488281 -25.390625 9.773438 -25.046875 8.296875 -24.359375 C 6.828125 -23.671875 5.601562 -22.726562 4.625 -21.53125 C 3.65625 -20.332031 2.929688 -18.921875 2.453125 -17.296875 C 1.972656 -15.679688 1.734375 -13.945312 1.734375 -12.09375 C 1.734375 -10.238281 1.976562 -8.535156 2.46875 -6.984375 C 2.96875 -5.429688 3.703125 -4.09375 4.671875 -2.96875 C 5.648438 -1.851562 6.867188 -0.988281 8.328125 -0.375 C 9.785156 0.226562 11.457031 0.53125 13.34375 0.53125 C 16.507812 0.53125 19.007812 -0.300781 20.84375 -1.96875 C 22.6875 -3.632812 23.832031 -6.003906 24.28125 -9.078125 L 20.109375 -9.078125 C 19.859375 -7.148438 19.160156 -5.660156 18.015625 -4.609375 C 16.878906 -3.554688 15.304688 -3.03125 13.296875 -3.03125 C 12.015625 -3.03125 10.910156 -3.285156 9.984375 -3.796875 C 9.054688 -4.304688 8.300781 -4.984375 7.71875 -5.828125 C 7.144531 -6.679688 6.722656 -7.648438 6.453125 -8.734375 C 6.179688 -9.828125 6.046875 -10.945312 6.046875 -12.09375 C 6.046875 -13.34375 6.171875 -14.550781 6.421875 -15.71875 C 6.679688 -16.882812 7.109375 -17.914062 7.703125 -18.8125 C 8.296875 -19.707031 9.085938 -20.425781 10.078125 -20.96875 C 11.066406 -21.519531 12.300781 -21.796875 13.78125 -21.796875 C 15.507812 -21.796875 16.882812 -21.363281 17.90625 -20.5 C 18.925781 -19.632812 19.597656 -18.414062 19.921875 -16.84375 Z M 19.921875 -16.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-9">
-<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-10">
-<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="glyph1-0">
-<path style="stroke:none;" d="M 4.796875 -41.28125 L 4.796875 4.796875 L 43.203125 4.796875 L 43.203125 -41.28125 Z M 39.125 -38.78125 L 24.046875 -20.203125 L 8.921875 -38.78125 Z M 40.703125 0.390625 L 25.625 -18.1875 L 40.703125 -36.765625 Z M 8.96875 2.296875 L 24.046875 -16.21875 L 39.078125 2.296875 Z M 7.296875 0.4375 L 7.296875 -36.859375 L 22.421875 -18.1875 Z M 7.296875 0.4375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 36.90625 -0.28125 C 37.109375 -1.34375 37.109375 -1.390625 38.15625 -5.046875 L 45.796875 -31.296875 C 46.5625 -33.984375 46.9375 -35.140625 47.671875 -36.765625 L 42.859375 -36.765625 C 42.765625 -35.375 42.4375 -33.640625 41.953125 -31.78125 L 36.28125 -11.046875 L 34.984375 -5.515625 C 34.03125 -9.265625 33.84375 -9.984375 33.546875 -11.046875 L 27.125 -32.0625 C 26.546875 -33.890625 26.203125 -35.328125 25.96875 -36.765625 L 22.375 -36.765625 C 22.21875 -35.671875 21.796875 -33.796875 21.265625 -32.0625 L 14.828125 -10.984375 C 14.453125 -9.703125 13.875 -7.4375 13.390625 -5.515625 C 12.71875 -8.453125 12.4375 -9.796875 12.09375 -10.9375 L 6.4375 -31.78125 C 5.90625 -33.75 5.609375 -35.328125 5.515625 -36.765625 L 0.671875 -36.765625 C 1.4375 -35.1875 1.875 -33.9375 2.640625 -31.296875 L 10.21875 -5.046875 C 11.375 -1.15625 11.375 -1.15625 11.515625 -0.28125 L 15.21875 -0.28125 C 15.453125 -1.484375 15.640625 -2.296875 16.46875 -4.890625 L 22.75 -25.625 C 23.046875 -26.59375 23.65625 -29.09375 24 -30.34375 C 24 -30.53125 24.09375 -30.8125 24.1875 -31.15625 C 24.53125 -29.328125 24.953125 -27.703125 25.578125 -25.625 L 31.921875 -4.890625 C 32.546875 -2.96875 32.96875 -1.25 33.171875 -0.28125 Z M 36.90625 -0.28125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 15.078125 0.34375 C 22.796875 0.34375 27.796875 -5.046875 27.796875 -13.25 C 27.796875 -21.5 22.84375 -26.78125 15.03125 -26.78125 C 7.203125 -26.78125 2.203125 -21.5 2.203125 -13.203125 C 2.203125 -4.890625 7.203125 0.34375 15.078125 0.34375 Z M 15.125 -23.765625 C 20.640625 -23.765625 24.09375 -19.734375 24.09375 -13.25 C 24.09375 -6.765625 20.640625 -2.78125 15.03125 -2.78125 C 9.40625 -2.78125 5.90625 -6.765625 5.90625 -13.296875 C 5.90625 -19.78125 9.40625 -23.765625 15.125 -23.765625 Z M 15.125 -23.765625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<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="glyph1-4">
-<path style="stroke:none;" d="M 23.71875 -0.28125 L 27.546875 -0.28125 C 27.3125 -2.15625 27.21875 -3.40625 27.21875 -5.8125 L 27.21875 -31.34375 C 27.21875 -33.453125 27.3125 -34.84375 27.546875 -36.765625 L 23.328125 -36.765625 C 23.5625 -34.9375 23.65625 -33.546875 23.65625 -31.296875 L 23.65625 -24.859375 C 23.65625 -23.765625 23.65625 -23.328125 23.8125 -22.3125 L 23.859375 -21.59375 C 21.75 -24.90625 18.390625 -26.6875 14.015625 -26.6875 C 6.8125 -26.6875 2.203125 -21.453125 2.203125 -13.25 C 2.203125 -4.890625 6.71875 0.1875 14.109375 0.1875 C 18.484375 0.1875 21.59375 -1.484375 23.859375 -4.984375 C 23.765625 -4.171875 23.71875 -3.3125 23.71875 -2.640625 Z M 14.40625 -23.5625 C 16.9375 -23.5625 19.25 -22.65625 20.921875 -21.03125 C 22.65625 -19.34375 23.609375 -16.5625 23.609375 -13.390625 C 23.609375 -7.0625 20.015625 -2.96875 14.40625 -2.96875 C 11.71875 -2.96875 9.453125 -3.984375 7.96875 -5.859375 C 6.71875 -7.4375 6 -10.171875 6 -13.34375 C 6 -19.734375 9.171875 -23.5625 14.40625 -23.5625 Z M 14.40625 -23.5625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d=""/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 3.796875 -36.765625 C 4.078125 -35.046875 4.171875 -33.59375 4.171875 -31.390625 L 4.171875 -6 C 4.171875 -3.5 4.078125 -1.828125 3.796875 -0.28125 L 8.25 -0.28125 C 7.96875 -1.875 7.875 -3.453125 7.875 -6 L 7.875 -26.5 C 7.875 -27.75 7.78125 -30.09375 7.578125 -32.359375 C 8.25 -31.0625 9.84375 -28.3125 10.21875 -27.75 L 25.625 -4.609375 C 26.921875 -2.640625 27.453125 -1.6875 28.125 -0.28125 L 33.359375 -0.28125 C 33.078125 -1.828125 32.96875 -3.265625 32.96875 -5.65625 L 32.96875 -31.25 C 32.96875 -33.703125 33.078125 -35.046875 33.359375 -36.765625 L 28.890625 -36.765625 C 29.1875 -35.09375 29.28125 -33.59375 29.28125 -31.25 L 29.28125 -10.890625 C 29.28125 -10.46875 29.375 -8.359375 29.5625 -4.515625 C 28.421875 -6.578125 26.96875 -8.921875 26.453125 -9.75 L 11.28125 -32.453125 C 9.890625 -34.609375 9.265625 -35.671875 8.828125 -36.765625 Z M 3.796875 -36.765625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-7">
-<path style="stroke:none;" d="M 22.265625 -0.28125 L 26.25 -0.28125 C 25.96875 -2.203125 25.875 -3.546875 25.875 -5.71875 L 25.875 -20.734375 C 25.875 -22.9375 25.96875 -24.484375 26.203125 -26.15625 L 21.9375 -26.15625 C 22.171875 -24.484375 22.265625 -22.796875 22.265625 -20.734375 L 22.265625 -11.46875 C 21.84375 -9.546875 21.3125 -8.359375 20.0625 -6.671875 C 18.140625 -4.078125 15.890625 -2.875 13.15625 -2.875 C 9.40625 -2.875 7.34375 -5.28125 7.34375 -9.546875 L 7.34375 -20.734375 C 7.34375 -22.84375 7.4375 -24.484375 7.6875 -26.15625 L 3.359375 -26.15625 C 3.59375 -24.625 3.703125 -22.9375 3.703125 -20.78125 L 3.703125 -8.921875 C 3.703125 -6.625 4.171875 -4.75 5.046875 -3.359375 C 6.578125 -1.0625 9.265625 0.1875 12.71875 0.1875 C 17.046875 0.1875 20.015625 -1.578125 22.421875 -5.515625 C 22.265625 -4.265625 22.265625 -3.9375 22.265625 -3.40625 Z M 22.265625 -0.28125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-8">
-<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="glyph1-9">
-<path style="stroke:none;" d="M 8.109375 -26.15625 L 3.359375 -26.15625 L 3.359375 -21.40625 L 8.109375 -21.40625 Z M 8.109375 -0.28125 L 8.109375 -5.046875 L 3.359375 -5.046875 L 3.359375 -0.28125 Z M 8.109375 -0.28125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-10">
-<path style="stroke:none;" d="M 22.703125 -0.28125 C 25.109375 -0.28125 26.6875 -0.1875 28.609375 0 L 28.609375 -4.03125 C 26.78125 -3.796875 25.15625 -3.703125 22.75 -3.703125 L 7.4375 -3.703125 C 8.015625 -6 8.6875 -7.296875 10.171875 -9.265625 C 11.765625 -11.28125 13.296875 -12.625 17.09375 -15.171875 C 22.5625 -18.8125 23.8125 -19.734375 25.25 -21.359375 C 27.125 -23.421875 28.078125 -25.734375 28.078125 -28.171875 C 28.078125 -33.84375 23.421875 -37.484375 16.171875 -37.484375 C 11.953125 -37.484375 8.6875 -36.234375 6.53125 -33.796875 C 4.9375 -32.015625 4.21875 -30.34375 3.5 -26.875 L 7.53125 -26.203125 C 7.875 -28.609375 8.296875 -29.765625 9.21875 -31.0625 C 10.65625 -33.125 13.015625 -34.171875 16.171875 -34.171875 C 21.078125 -34.171875 24.140625 -31.828125 24.140625 -28.171875 C 24.140625 -25.25 22.5625 -23.140625 17.8125 -19.921875 C 12.234375 -16.125 12.140625 -16.078125 10.46875 -14.640625 C 7.4375 -12.046875 5.421875 -9.40625 4.21875 -6.390625 C 3.5 -4.5625 3.359375 -3.84375 2.828125 -0.046875 C 4.375 -0.234375 5.09375 -0.28125 8.109375 -0.28125 Z M 22.703125 -0.28125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-11">
-<path style="stroke:none;" d="M 22.9375 -0.28125 C 25.625 -0.28125 26.96875 -0.1875 28.515625 0.046875 L 28.515625 -4.03125 C 26.640625 -3.796875 25.34375 -3.703125 22.9375 -3.703125 L 7.828125 -3.703125 L 7.828125 -31.109375 C 7.828125 -33.75 7.921875 -34.984375 8.203125 -36.765625 L 3.703125 -36.765625 C 3.984375 -35.09375 4.078125 -33.59375 4.078125 -31.109375 L 4.078125 -5.859375 C 4.078125 -3.5 3.984375 -1.96875 3.703125 -0.140625 C 5.375 -0.234375 6.71875 -0.28125 8.921875 -0.28125 Z M 22.9375 -0.28125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-12">
-<path style="stroke:none;" d="M 3.359375 -36.765625 L 3.359375 -32.5 L 8.015625 -32.5 L 8.015625 -36.765625 Z M 3.5 -26.15625 C 3.75 -24.484375 3.84375 -23.046875 3.84375 -20.734375 L 3.84375 -5.71875 C 3.84375 -3.703125 3.75 -2.359375 3.5 -0.28125 L 7.828125 -0.28125 C 7.578125 -2.15625 7.484375 -3.5 7.484375 -5.71875 L 7.484375 -20.734375 C 7.484375 -23.140625 7.578125 -24.484375 7.828125 -26.15625 Z M 3.5 -26.15625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-13">
-<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="glyph1-14">
-<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="glyph1-15">
-<path style="stroke:none;" d="M 15.75 0.4375 C 20.15625 0.4375 23.515625 -1.25 25.921875 -4.609375 C 28.03125 -7.53125 29.28125 -12.671875 29.28125 -18.484375 C 29.28125 -22.46875 28.65625 -26.296875 27.453125 -29.609375 C 26.875 -31.203125 25.921875 -32.6875 24.578125 -34.03125 C 22.421875 -36.28125 19.34375 -37.4375 15.796875 -37.4375 C 11.046875 -37.4375 7.34375 -35.421875 5.046875 -31.53125 C 3.359375 -28.75 2.25 -23.5625 2.25 -18.484375 C 2.25 -14.546875 2.875 -10.75 4.078125 -7.390625 C 4.65625 -5.765625 5.65625 -4.265625 6.953125 -2.96875 C 9.21875 -0.71875 12.1875 0.4375 15.75 0.4375 Z M 15.75 -34.125 C 19.109375 -34.125 21.703125 -32.640625 23.28125 -29.765625 C 24.53125 -27.5 25.4375 -22.75 25.4375 -18.578125 C 25.4375 -15.03125 24.953125 -11.859375 23.953125 -8.875 C 23.515625 -7.484375 22.75 -6.234375 21.703125 -5.140625 C 20.25 -3.640625 18.1875 -2.875 15.796875 -2.875 C 12.53125 -2.875 10.03125 -4.265625 8.359375 -7.0625 C 7.0625 -9.3125 6.09375 -14.015625 6.09375 -18.484375 C 6.09375 -21.984375 6.578125 -25.25 7.578125 -28.171875 C 7.96875 -29.375 8.734375 -30.578125 9.75 -31.6875 C 11.28125 -33.3125 13.25 -34.125 15.75 -34.125 Z M 15.75 -34.125 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1272" height="363" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
-<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.096354 221.102865 L 108.901042 221.102865 L 108.901042 249.449219 L 83.096354 249.449219 Z M 83.096354 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="53.80437" y="93.154803"/>
-</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 108.901042 221.102865 L 134.704427 221.102865 L 134.704427 249.449219 L 108.901042 249.449219 Z M 108.901042 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="135.6326" y="93.154803"/>
-</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 134.704427 221.102865 L 160.509115 221.102865 L 160.509115 249.449219 L 134.704427 249.449219 Z M 134.704427 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="218.8289" y="93.154803"/>
-</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 160.509115 221.102865 L 186.3125 221.102865 L 186.3125 249.449219 L 160.509115 249.449219 Z M 160.509115 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="290.0012" y="93.154803"/>
-</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 186.3125 221.102865 L 212.117188 221.102865 L 212.117188 249.449219 L 186.3125 249.449219 Z M 186.3125 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<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 212.117188 221.102865 L 237.921875 221.102865 L 237.921875 249.449219 L 212.117188 249.449219 Z M 212.117188 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="440.8657" y="93.154803"/>
-</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 237.921875 221.102865 L 263.72526 221.102865 L 263.72526 249.449219 L 237.921875 249.449219 Z M 237.921875 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="522.6939" y="93.154803"/>
-</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 263.72526 221.102865 L 289.529948 221.102865 L 289.529948 249.449219 L 263.72526 249.449219 Z M 263.72526 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="605.8902" y="93.154803"/>
-</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 304.227865 221.102865 L 330.032552 221.102865 L 330.032552 249.449219 L 304.227865 249.449219 Z M 304.227865 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="721.1581" y="93.154803"/>
-</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 330.032552 221.102865 L 355.835938 221.102865 L 355.835938 249.449219 L 330.032552 249.449219 Z M 330.032552 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="791.4663" y="93.154803"/>
-  <use xlink:href="#glyph0-6" x="807.4503" y="93.154803"/>
-</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 355.835938 221.102865 L 381.640625 221.102865 L 381.640625 249.449219 L 355.835938 249.449219 Z M 355.835938 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-7" x="884.8866" y="93.154803"/>
-</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 381.640625 221.102865 L 407.44401 221.102865 L 407.44401 249.449219 L 381.640625 249.449219 Z M 381.640625 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-8" x="954.7389" y="93.154803"/>
-</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 407.44401 221.102865 L 433.248698 221.102865 L 433.248698 249.449219 L 407.44401 249.449219 Z M 407.44401 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="1032.151" y="93.154803"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="166.3688" y="198.106276"/>
-  <use xlink:href="#glyph1-2" x="214.6568" y="198.106276"/>
-  <use xlink:href="#glyph1-3" x="244.6568" y="198.106276"/>
-  <use xlink:href="#glyph1-4" x="265.2968" y="198.106276"/>
-  <use xlink:href="#glyph1-5" x="296.3048" y="198.106276"/>
-  <use xlink:href="#glyph1-6" x="312.2888" y="198.106276"/>
-  <use xlink:href="#glyph1-7" x="349.4408" y="198.106276"/>
-  <use xlink:href="#glyph1-8" x="379.1048" y="198.106276"/>
-  <use xlink:href="#glyph1-5" x="423.7928" y="198.106276"/>
-  <use xlink:href="#glyph1-9" x="439.7768" y="198.106276"/>
-  <use xlink:href="#glyph1-5" x="451.2968" y="198.106276"/>
-  <use xlink:href="#glyph1-10" x="467.2808" y="198.106276"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-11" x="182.2328" y="287.397626"/>
-  <use xlink:href="#glyph1-12" x="211.1288" y="287.397626"/>
-  <use xlink:href="#glyph1-13" x="222.5528" y="287.397626"/>
-  <use xlink:href="#glyph1-14" x="252.2168" y="287.397626"/>
-  <use xlink:href="#glyph1-5" x="280.4408" y="287.397626"/>
-  <use xlink:href="#glyph1-6" x="296.4248" y="287.397626"/>
-  <use xlink:href="#glyph1-7" x="333.5768" y="287.397626"/>
-  <use xlink:href="#glyph1-8" x="363.2408" y="287.397626"/>
-  <use xlink:href="#glyph1-5" x="407.9288" y="287.397626"/>
-  <use xlink:href="#glyph1-9" x="423.9128" y="287.397626"/>
-  <use xlink:href="#glyph1-5" x="435.4328" y="287.397626"/>
-  <use xlink:href="#glyph1-15" x="451.4168" y="287.397626"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="807.0061" y="198.106276"/>
-  <use xlink:href="#glyph1-2" x="855.2941" y="198.106276"/>
-  <use xlink:href="#glyph1-3" x="885.2941" y="198.106276"/>
-  <use xlink:href="#glyph1-4" x="905.9341" y="198.106276"/>
-  <use xlink:href="#glyph1-5" x="936.9421" y="198.106276"/>
-  <use xlink:href="#glyph1-6" x="952.9261" y="198.106276"/>
-  <use xlink:href="#glyph1-7" x="990.0781" y="198.106276"/>
-  <use xlink:href="#glyph1-8" x="1019.7421" y="198.106276"/>
-  <use xlink:href="#glyph1-5" x="1064.4301" y="198.106276"/>
-  <use xlink:href="#glyph1-9" x="1080.4141" y="198.106276"/>
-  <use xlink:href="#glyph1-5" x="1091.9341" y="198.106276"/>
-  <use xlink:href="#glyph1-10" x="1107.9181" y="198.106276"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-11" x="822.8701" y="287.397626"/>
-  <use xlink:href="#glyph1-12" x="851.7661" y="287.397626"/>
-  <use xlink:href="#glyph1-13" x="863.1901" y="287.397626"/>
-  <use xlink:href="#glyph1-14" x="892.8541" y="287.397626"/>
-  <use xlink:href="#glyph1-5" x="921.0781" y="287.397626"/>
-  <use xlink:href="#glyph1-6" x="937.0621" y="287.397626"/>
-  <use xlink:href="#glyph1-7" x="974.2141" y="287.397626"/>
-  <use xlink:href="#glyph1-8" x="1003.8781" y="287.397626"/>
-  <use xlink:href="#glyph1-5" x="1048.5661" y="287.397626"/>
-  <use xlink:href="#glyph1-9" x="1064.5501" y="287.397626"/>
-  <use xlink:href="#glyph1-5" x="1076.0701" y="287.397626"/>
-  <use xlink:href="#glyph1-10" x="1092.0541" y="287.397626"/>
-</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 433.248698 221.102865 L 459.052083 221.102865 L 459.052083 249.449219 L 433.248698 249.449219 Z M 433.248698 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="1101.115" y="93.154803"/>
-  <use xlink:href="#glyph0-6" x="1117.099" y="93.154803"/>
-</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 459.052083 221.102865 L 484.856771 221.102865 L 484.856771 249.449219 L 459.052083 249.449219 Z M 459.052083 221.102865 " transform="matrix(3,0,0,3,-216,-630)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="1178.528" y="93.154803"/>
-  <use xlink:href="#glyph0-10" x="1194.512" y="93.154803"/>
-</g>
-</g>
-</svg>
--- a/slide/s6/images/regex/allostate.svg	Thu Feb 18 06:40:17 2016 +0900
+++ b/slide/s6/images/regex/allostate.svg	Thu Feb 18 12:05:09 2016 +0900
@@ -1,496 +1,176 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="3600pt" height="2340pt" viewBox="0 0 3600 2340" version="1.1">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1518pt" height="1290pt" viewBox="0 0 1518 1290" version="1.1">
 <defs>
 <g>
 <symbol overflow="visible" id="glyph0-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
+<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 10.859375 -32.453125 L 10.859375 -38.5625 L 7.984375 -38.5625 L 7.984375 -32.453125 L 2.265625 -34.609375 L 1.296875 -32.015625 L 7.015625 -29.96875 L 3.515625 -25.0625 L 5.9375 -23.375 L 9.453125 -28.5625 L 13.171875 -23.375 L 15.390625 -25.0625 L 11.828125 -29.96875 L 17.71875 -32.015625 L 16.625 -34.609375 Z M 10.859375 -32.453125 "/>
+<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-2">
-<path style="stroke:none;" d="M 4.15625 -42.4375 L 4.15625 11.5 L 7.828125 11.5 L 7.828125 -42.4375 Z M 4.15625 -42.4375 "/>
+<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-3">
-<path style="stroke:none;" d="M 18.03125 -15.5 L 18.03125 -27.328125 L 14.359375 -27.328125 L 14.359375 -15.5 L 2.59375 -15.5 L 2.59375 -11.828125 L 14.359375 -11.828125 L 14.359375 0 L 18.03125 0 L 18.03125 -11.828125 L 29.8125 -11.828125 L 29.8125 -15.5 Z M 18.03125 -15.5 "/>
+<path style="stroke:none;" d="M 7.4375 -25.203125 C 7.4375 -26.066406 7.597656 -26.816406 7.921875 -27.453125 C 8.242188 -28.097656 8.664062 -28.644531 9.1875 -29.09375 C 9.71875 -29.539062 10.347656 -29.875 11.078125 -30.09375 C 11.816406 -30.320312 12.585938 -30.4375 13.390625 -30.4375 C 15.054688 -30.4375 16.425781 -29.992188 17.5 -29.109375 C 18.570312 -28.234375 19.109375 -26.929688 19.109375 -25.203125 C 19.109375 -23.472656 18.578125 -22.128906 17.515625 -21.171875 C 16.460938 -20.210938 15.117188 -19.734375 13.484375 -19.734375 C 12.648438 -19.734375 11.863281 -19.84375 11.125 -20.0625 C 10.394531 -20.289062 9.757812 -20.628906 9.21875 -21.078125 C 8.675781 -21.523438 8.242188 -22.09375 7.921875 -22.78125 C 7.597656 -23.46875 7.4375 -24.273438 7.4375 -25.203125 Z M 3.125 -25.34375 C 3.125 -23.8125 3.554688 -22.394531 4.421875 -21.09375 C 5.285156 -19.800781 6.4375 -18.863281 7.875 -18.28125 C 5.945312 -17.613281 4.472656 -16.535156 3.453125 -15.046875 C 2.429688 -13.554688 1.921875 -11.804688 1.921875 -9.796875 C 1.921875 -8.066406 2.21875 -6.550781 2.8125 -5.25 C 3.40625 -3.957031 4.21875 -2.878906 5.25 -2.015625 C 6.289062 -1.148438 7.515625 -0.507812 8.921875 -0.09375 C 10.335938 0.320312 11.859375 0.53125 13.484375 0.53125 C 15.054688 0.53125 16.53125 0.304688 17.90625 -0.140625 C 19.28125 -0.585938 20.46875 -1.25 21.46875 -2.125 C 22.476562 -3.007812 23.28125 -4.09375 23.875 -5.375 C 24.46875 -6.65625 24.765625 -8.128906 24.765625 -9.796875 C 24.765625 -11.898438 24.269531 -13.679688 23.28125 -15.140625 C 22.289062 -16.597656 20.769531 -17.644531 18.71875 -18.28125 C 20.15625 -18.925781 21.296875 -19.878906 22.140625 -21.140625 C 22.992188 -22.410156 23.421875 -23.8125 23.421875 -25.34375 C 23.421875 -26.425781 23.226562 -27.488281 22.84375 -28.53125 C 22.457031 -29.570312 21.859375 -30.5 21.046875 -31.3125 C 20.234375 -32.132812 19.171875 -32.789062 17.859375 -33.28125 C 16.546875 -33.78125 14.960938 -34.03125 13.109375 -34.03125 C 11.796875 -34.03125 10.535156 -33.835938 9.328125 -33.453125 C 8.128906 -33.066406 7.066406 -32.503906 6.140625 -31.765625 C 5.210938 -31.035156 4.476562 -30.132812 3.9375 -29.0625 C 3.394531 -27.988281 3.125 -26.75 3.125 -25.34375 Z M 6.234375 -9.59375 C 6.234375 -10.59375 6.414062 -11.488281 6.78125 -12.28125 C 7.15625 -13.082031 7.671875 -13.769531 8.328125 -14.34375 C 8.984375 -14.925781 9.75 -15.367188 10.625 -15.671875 C 11.507812 -15.972656 12.445312 -16.125 13.4375 -16.125 C 14.394531 -16.125 15.296875 -15.957031 16.140625 -15.625 C 16.992188 -15.289062 17.738281 -14.832031 18.375 -14.25 C 19.019531 -13.675781 19.523438 -13 19.890625 -12.21875 C 20.265625 -11.4375 20.453125 -10.578125 20.453125 -9.640625 C 20.453125 -8.679688 20.28125 -7.800781 19.9375 -7 C 19.601562 -6.207031 19.125 -5.515625 18.5 -4.921875 C 17.875 -4.328125 17.140625 -3.863281 16.296875 -3.53125 C 15.453125 -3.195312 14.515625 -3.03125 13.484375 -3.03125 C 11.367188 -3.03125 9.628906 -3.613281 8.265625 -4.78125 C 6.910156 -5.945312 6.234375 -7.550781 6.234375 -9.59375 Z M 6.234375 -9.59375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-4">
-<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-5">
-<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-6">
-<path style="stroke:none;" d="M 10.859375 -15.9375 L 17.390625 -33.90625 L 17.5 -33.90625 L 23.921875 -15.9375 Z M 14.6875 -38.5625 L -0.328125 0 L 4.90625 0 L 9.234375 -11.609375 L 25.546875 -11.609375 L 29.75 0 L 35.421875 0 L 20.359375 -38.5625 Z M 14.6875 -38.5625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-7">
-<path style="stroke:none;" d="M 31.3125 -26.953125 L 36.453125 -26.953125 C 36.160156 -29.003906 35.546875 -30.8125 34.609375 -32.375 C 33.671875 -33.9375 32.5 -35.238281 31.09375 -36.28125 C 29.695312 -37.332031 28.097656 -38.125 26.296875 -38.65625 C 24.492188 -39.195312 22.585938 -39.46875 20.578125 -39.46875 C 17.617188 -39.46875 14.992188 -38.9375 12.703125 -37.875 C 10.421875 -36.8125 8.515625 -35.363281 6.984375 -33.53125 C 5.460938 -31.695312 4.304688 -29.546875 3.515625 -27.078125 C 2.722656 -24.609375 2.328125 -21.972656 2.328125 -19.171875 C 2.328125 -16.359375 2.691406 -13.726562 3.421875 -11.28125 C 4.160156 -8.832031 5.269531 -6.707031 6.75 -4.90625 C 8.226562 -3.113281 10.082031 -1.703125 12.3125 -0.671875 C 14.539062 0.347656 17.148438 0.859375 20.140625 0.859375 C 25.078125 0.859375 28.96875 -0.488281 31.8125 -3.1875 C 34.65625 -5.882812 36.328125 -9.664062 36.828125 -14.53125 L 31.703125 -14.53125 C 31.585938 -12.945312 31.257812 -11.46875 30.71875 -10.09375 C 30.1875 -8.726562 29.441406 -7.550781 28.484375 -6.5625 C 27.523438 -5.570312 26.390625 -4.796875 25.078125 -4.234375 C 23.765625 -3.679688 22.265625 -3.40625 20.578125 -3.40625 C 18.273438 -3.40625 16.296875 -3.835938 14.640625 -4.703125 C 12.984375 -5.566406 11.625 -6.726562 10.5625 -8.1875 C 9.5 -9.644531 8.710938 -11.351562 8.203125 -13.3125 C 7.703125 -15.269531 7.453125 -17.347656 7.453125 -19.546875 C 7.453125 -21.566406 7.703125 -23.507812 8.203125 -25.375 C 8.710938 -27.25 9.5 -28.914062 10.5625 -30.375 C 11.625 -31.832031 12.972656 -32.992188 14.609375 -33.859375 C 16.242188 -34.722656 18.210938 -35.15625 20.515625 -35.15625 C 23.210938 -35.15625 25.539062 -34.46875 27.5 -33.09375 C 29.46875 -31.726562 30.738281 -29.679688 31.3125 -26.953125 Z M 31.3125 -26.953125 "/>
+<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="glyph1-0">
-<path style="stroke:none;" d="M 14.71875 -23.96875 L 3.671875 -23.96875 L 3.671875 -1.6875 L 14.71875 -1.6875 Z M 16.5625 -25.625 L 16.5625 -0.03125 L 1.84375 -0.03125 L 1.84375 -25.625 Z M 16.5625 -25.625 "/>
+<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 9.328125 -23.875 L 9.328125 -26.3125 L 2.59375 -26.3125 L 2.59375 7.09375 L 9.328125 7.09375 L 9.328125 4.640625 L 5.46875 4.640625 L 5.46875 -23.875 Z M 9.328125 -23.875 "/>
+<path style="stroke:none;" d="M 10.859375 -32.453125 L 10.859375 -38.5625 L 7.984375 -38.5625 L 7.984375 -32.453125 L 2.265625 -34.609375 L 1.296875 -32.015625 L 7.015625 -29.96875 L 3.515625 -25.0625 L 5.9375 -23.375 L 9.453125 -28.5625 L 13.171875 -23.375 L 15.390625 -25.0625 L 11.828125 -29.96875 L 17.71875 -32.015625 L 16.625 -34.609375 Z M 10.859375 -32.453125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 18.796875 -0.078125 C 18.265625 0.234375 17.53125 0.390625 16.59375 0.390625 C 15.800781 0.390625 15.171875 0.171875 14.703125 -0.265625 C 14.234375 -0.710938 14 -1.441406 14 -2.453125 C 13.164062 -1.441406 12.1875 -0.710938 11.0625 -0.265625 C 9.945312 0.171875 8.742188 0.390625 7.453125 0.390625 C 6.609375 0.390625 5.804688 0.289062 5.046875 0.09375 C 4.296875 -0.09375 3.644531 -0.390625 3.09375 -0.796875 C 2.539062 -1.203125 2.101562 -1.734375 1.78125 -2.390625 C 1.457031 -3.054688 1.296875 -3.851562 1.296875 -4.78125 C 1.296875 -5.84375 1.472656 -6.707031 1.828125 -7.375 C 2.191406 -8.050781 2.664062 -8.597656 3.25 -9.015625 C 3.84375 -9.429688 4.515625 -9.75 5.265625 -9.96875 C 6.023438 -10.1875 6.800781 -10.367188 7.59375 -10.515625 C 8.4375 -10.679688 9.234375 -10.804688 9.984375 -10.890625 C 10.742188 -10.972656 11.410156 -11.09375 11.984375 -11.25 C 12.566406 -11.40625 13.023438 -11.632812 13.359375 -11.9375 C 13.691406 -12.238281 13.859375 -12.675781 13.859375 -13.25 C 13.859375 -13.914062 13.734375 -14.453125 13.484375 -14.859375 C 13.234375 -15.273438 12.910156 -15.585938 12.515625 -15.796875 C 12.117188 -16.015625 11.671875 -16.160156 11.171875 -16.234375 C 10.679688 -16.304688 10.195312 -16.34375 9.71875 -16.34375 C 8.425781 -16.34375 7.347656 -16.097656 6.484375 -15.609375 C 5.617188 -15.117188 5.148438 -14.1875 5.078125 -12.8125 L 2.015625 -12.8125 C 2.066406 -13.96875 2.304688 -14.941406 2.734375 -15.734375 C 3.171875 -16.523438 3.75 -17.164062 4.46875 -17.65625 C 5.1875 -18.144531 6.003906 -18.5 6.921875 -18.71875 C 7.847656 -18.9375 8.84375 -19.046875 9.90625 -19.046875 C 10.738281 -19.046875 11.566406 -18.984375 12.390625 -18.859375 C 13.222656 -18.742188 13.972656 -18.5 14.640625 -18.125 C 15.316406 -17.75 15.859375 -17.222656 16.265625 -16.546875 C 16.679688 -15.878906 16.890625 -15.007812 16.890625 -13.9375 L 16.890625 -4.359375 C 16.890625 -3.640625 16.929688 -3.109375 17.015625 -2.765625 C 17.097656 -2.429688 17.378906 -2.265625 17.859375 -2.265625 C 18.117188 -2.265625 18.429688 -2.328125 18.796875 -2.453125 Z M 13.828125 -9.609375 C 13.441406 -9.328125 12.9375 -9.117188 12.3125 -8.984375 C 11.6875 -8.847656 11.03125 -8.738281 10.34375 -8.65625 C 9.664062 -8.570312 8.976562 -8.472656 8.28125 -8.359375 C 7.582031 -8.253906 6.957031 -8.082031 6.40625 -7.84375 C 5.851562 -7.601562 5.398438 -7.257812 5.046875 -6.8125 C 4.703125 -6.375 4.53125 -5.769531 4.53125 -5 C 4.53125 -4.5 4.628906 -4.070312 4.828125 -3.71875 C 5.035156 -3.375 5.300781 -3.09375 5.625 -2.875 C 5.957031 -2.664062 6.335938 -2.507812 6.765625 -2.40625 C 7.203125 -2.3125 7.660156 -2.265625 8.140625 -2.265625 C 9.140625 -2.265625 10 -2.398438 10.71875 -2.671875 C 11.445312 -2.953125 12.035156 -3.300781 12.484375 -3.71875 C 12.941406 -4.144531 13.28125 -4.601562 13.5 -5.09375 C 13.71875 -5.582031 13.828125 -6.046875 13.828125 -6.484375 Z M 13.828125 -9.609375 "/>
+<path style="stroke:none;" d="M 4.15625 -42.4375 L 4.15625 11.5 L 7.828125 11.5 L 7.828125 -42.4375 Z M 4.15625 -42.4375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 1.796875 -11.453125 L 1.796875 -8.5625 L 12.203125 -8.5625 L 12.203125 -11.453125 Z M 1.796875 -11.453125 "/>
+<path style="stroke:none;" d="M 18.03125 -15.5 L 18.03125 -27.328125 L 14.359375 -27.328125 L 14.359375 -15.5 L 2.59375 -15.5 L 2.59375 -11.828125 L 14.359375 -11.828125 L 14.359375 0 L 18.03125 0 L 18.03125 -11.828125 L 29.8125 -11.828125 L 29.8125 -15.5 Z M 18.03125 -15.5 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 0.796875 -2.34375 L 0.796875 0 L 16.484375 0 L 16.484375 -2.703125 L 4.609375 -2.703125 L 15.984375 -16.53125 L 15.984375 -18.609375 L 1.515625 -18.609375 L 1.515625 -15.90625 L 12.03125 -15.90625 Z M 0.796875 -2.34375 "/>
+<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 7.234375 -10.625 L 11.59375 -22.609375 L 11.65625 -22.609375 L 15.953125 -10.625 Z M 9.796875 -25.703125 L -0.21875 0 L 3.28125 0 L 6.15625 -7.734375 L 17.03125 -7.734375 L 19.84375 0 L 23.609375 0 L 13.578125 -25.703125 Z M 9.796875 -25.703125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 0.796875 -2.875 L 0.796875 0 L 21.234375 0 L 21.234375 -2.875 L 4.859375 -2.875 L 20.8125 -22.828125 L 20.8125 -25.703125 L 2.015625 -25.703125 L 2.015625 -22.828125 L 16.78125 -22.828125 Z M 0.796875 -2.875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-7">
-<path style="stroke:none;" d="M 0 4.640625 L 0 7.09375 L 6.734375 7.09375 L 6.734375 -26.3125 L 0 -26.3125 L 0 -23.875 L 3.859375 -23.875 L 3.859375 4.640625 Z M 0 4.640625 "/>
+<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
 </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 "/>
+<path style="stroke:none;" d="M 14.71875 -23.96875 L 3.671875 -23.96875 L 3.671875 -1.6875 L 14.71875 -1.6875 Z M 16.5625 -25.625 L 16.5625 -0.03125 L 1.84375 -0.03125 L 1.84375 -25.625 Z M 16.5625 -25.625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-1">
-<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 "/>
+<path style="stroke:none;" d="M 9.328125 -23.875 L 9.328125 -26.3125 L 2.59375 -26.3125 L 2.59375 7.09375 L 9.328125 7.09375 L 9.328125 4.640625 L 5.46875 4.640625 L 5.46875 -23.875 Z M 9.328125 -23.875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-2">
-<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 "/>
+<path style="stroke:none;" d="M 18.796875 -0.078125 C 18.265625 0.234375 17.53125 0.390625 16.59375 0.390625 C 15.800781 0.390625 15.171875 0.171875 14.703125 -0.265625 C 14.234375 -0.710938 14 -1.441406 14 -2.453125 C 13.164062 -1.441406 12.1875 -0.710938 11.0625 -0.265625 C 9.945312 0.171875 8.742188 0.390625 7.453125 0.390625 C 6.609375 0.390625 5.804688 0.289062 5.046875 0.09375 C 4.296875 -0.09375 3.644531 -0.390625 3.09375 -0.796875 C 2.539062 -1.203125 2.101562 -1.734375 1.78125 -2.390625 C 1.457031 -3.054688 1.296875 -3.851562 1.296875 -4.78125 C 1.296875 -5.84375 1.472656 -6.707031 1.828125 -7.375 C 2.191406 -8.050781 2.664062 -8.597656 3.25 -9.015625 C 3.84375 -9.429688 4.515625 -9.75 5.265625 -9.96875 C 6.023438 -10.1875 6.800781 -10.367188 7.59375 -10.515625 C 8.4375 -10.679688 9.234375 -10.804688 9.984375 -10.890625 C 10.742188 -10.972656 11.410156 -11.09375 11.984375 -11.25 C 12.566406 -11.40625 13.023438 -11.632812 13.359375 -11.9375 C 13.691406 -12.238281 13.859375 -12.675781 13.859375 -13.25 C 13.859375 -13.914062 13.734375 -14.453125 13.484375 -14.859375 C 13.234375 -15.273438 12.910156 -15.585938 12.515625 -15.796875 C 12.117188 -16.015625 11.671875 -16.160156 11.171875 -16.234375 C 10.679688 -16.304688 10.195312 -16.34375 9.71875 -16.34375 C 8.425781 -16.34375 7.347656 -16.097656 6.484375 -15.609375 C 5.617188 -15.117188 5.148438 -14.1875 5.078125 -12.8125 L 2.015625 -12.8125 C 2.066406 -13.96875 2.304688 -14.941406 2.734375 -15.734375 C 3.171875 -16.523438 3.75 -17.164062 4.46875 -17.65625 C 5.1875 -18.144531 6.003906 -18.5 6.921875 -18.71875 C 7.847656 -18.9375 8.84375 -19.046875 9.90625 -19.046875 C 10.738281 -19.046875 11.566406 -18.984375 12.390625 -18.859375 C 13.222656 -18.742188 13.972656 -18.5 14.640625 -18.125 C 15.316406 -17.75 15.859375 -17.222656 16.265625 -16.546875 C 16.679688 -15.878906 16.890625 -15.007812 16.890625 -13.9375 L 16.890625 -4.359375 C 16.890625 -3.640625 16.929688 -3.109375 17.015625 -2.765625 C 17.097656 -2.429688 17.378906 -2.265625 17.859375 -2.265625 C 18.117188 -2.265625 18.429688 -2.328125 18.796875 -2.453125 Z M 13.828125 -9.609375 C 13.441406 -9.328125 12.9375 -9.117188 12.3125 -8.984375 C 11.6875 -8.847656 11.03125 -8.738281 10.34375 -8.65625 C 9.664062 -8.570312 8.976562 -8.472656 8.28125 -8.359375 C 7.582031 -8.253906 6.957031 -8.082031 6.40625 -7.84375 C 5.851562 -7.601562 5.398438 -7.257812 5.046875 -6.8125 C 4.703125 -6.375 4.53125 -5.769531 4.53125 -5 C 4.53125 -4.5 4.628906 -4.070312 4.828125 -3.71875 C 5.035156 -3.375 5.300781 -3.09375 5.625 -2.875 C 5.957031 -2.664062 6.335938 -2.507812 6.765625 -2.40625 C 7.203125 -2.3125 7.660156 -2.265625 8.140625 -2.265625 C 9.140625 -2.265625 10 -2.398438 10.71875 -2.671875 C 11.445312 -2.953125 12.035156 -3.300781 12.484375 -3.71875 C 12.941406 -4.144531 13.28125 -4.601562 13.5 -5.09375 C 13.71875 -5.582031 13.828125 -6.046875 13.828125 -6.484375 Z M 13.828125 -9.609375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-3">
-<path style="stroke:none;" d="M 7.4375 -25.203125 C 7.4375 -26.066406 7.597656 -26.816406 7.921875 -27.453125 C 8.242188 -28.097656 8.664062 -28.644531 9.1875 -29.09375 C 9.71875 -29.539062 10.347656 -29.875 11.078125 -30.09375 C 11.816406 -30.320312 12.585938 -30.4375 13.390625 -30.4375 C 15.054688 -30.4375 16.425781 -29.992188 17.5 -29.109375 C 18.570312 -28.234375 19.109375 -26.929688 19.109375 -25.203125 C 19.109375 -23.472656 18.578125 -22.128906 17.515625 -21.171875 C 16.460938 -20.210938 15.117188 -19.734375 13.484375 -19.734375 C 12.648438 -19.734375 11.863281 -19.84375 11.125 -20.0625 C 10.394531 -20.289062 9.757812 -20.628906 9.21875 -21.078125 C 8.675781 -21.523438 8.242188 -22.09375 7.921875 -22.78125 C 7.597656 -23.46875 7.4375 -24.273438 7.4375 -25.203125 Z M 3.125 -25.34375 C 3.125 -23.8125 3.554688 -22.394531 4.421875 -21.09375 C 5.285156 -19.800781 6.4375 -18.863281 7.875 -18.28125 C 5.945312 -17.613281 4.472656 -16.535156 3.453125 -15.046875 C 2.429688 -13.554688 1.921875 -11.804688 1.921875 -9.796875 C 1.921875 -8.066406 2.21875 -6.550781 2.8125 -5.25 C 3.40625 -3.957031 4.21875 -2.878906 5.25 -2.015625 C 6.289062 -1.148438 7.515625 -0.507812 8.921875 -0.09375 C 10.335938 0.320312 11.859375 0.53125 13.484375 0.53125 C 15.054688 0.53125 16.53125 0.304688 17.90625 -0.140625 C 19.28125 -0.585938 20.46875 -1.25 21.46875 -2.125 C 22.476562 -3.007812 23.28125 -4.09375 23.875 -5.375 C 24.46875 -6.65625 24.765625 -8.128906 24.765625 -9.796875 C 24.765625 -11.898438 24.269531 -13.679688 23.28125 -15.140625 C 22.289062 -16.597656 20.769531 -17.644531 18.71875 -18.28125 C 20.15625 -18.925781 21.296875 -19.878906 22.140625 -21.140625 C 22.992188 -22.410156 23.421875 -23.8125 23.421875 -25.34375 C 23.421875 -26.425781 23.226562 -27.488281 22.84375 -28.53125 C 22.457031 -29.570312 21.859375 -30.5 21.046875 -31.3125 C 20.234375 -32.132812 19.171875 -32.789062 17.859375 -33.28125 C 16.546875 -33.78125 14.960938 -34.03125 13.109375 -34.03125 C 11.796875 -34.03125 10.535156 -33.835938 9.328125 -33.453125 C 8.128906 -33.066406 7.066406 -32.503906 6.140625 -31.765625 C 5.210938 -31.035156 4.476562 -30.132812 3.9375 -29.0625 C 3.394531 -27.988281 3.125 -26.75 3.125 -25.34375 Z M 6.234375 -9.59375 C 6.234375 -10.59375 6.414062 -11.488281 6.78125 -12.28125 C 7.15625 -13.082031 7.671875 -13.769531 8.328125 -14.34375 C 8.984375 -14.925781 9.75 -15.367188 10.625 -15.671875 C 11.507812 -15.972656 12.445312 -16.125 13.4375 -16.125 C 14.394531 -16.125 15.296875 -15.957031 16.140625 -15.625 C 16.992188 -15.289062 17.738281 -14.832031 18.375 -14.25 C 19.019531 -13.675781 19.523438 -13 19.890625 -12.21875 C 20.265625 -11.4375 20.453125 -10.578125 20.453125 -9.640625 C 20.453125 -8.679688 20.28125 -7.800781 19.9375 -7 C 19.601562 -6.207031 19.125 -5.515625 18.5 -4.921875 C 17.875 -4.328125 17.140625 -3.863281 16.296875 -3.53125 C 15.453125 -3.195312 14.515625 -3.03125 13.484375 -3.03125 C 11.367188 -3.03125 9.628906 -3.613281 8.265625 -4.78125 C 6.910156 -5.945312 6.234375 -7.550781 6.234375 -9.59375 Z M 6.234375 -9.59375 "/>
+<path style="stroke:none;" d="M 1.796875 -11.453125 L 1.796875 -8.5625 L 12.203125 -8.5625 L 12.203125 -11.453125 Z M 1.796875 -11.453125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-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 "/>
+<path style="stroke:none;" d="M 0.796875 -2.34375 L 0.796875 0 L 16.484375 0 L 16.484375 -2.703125 L 4.609375 -2.703125 L 15.984375 -16.53125 L 15.984375 -18.609375 L 1.515625 -18.609375 L 1.515625 -15.90625 L 12.03125 -15.90625 Z M 0.796875 -2.34375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-5">
-<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 "/>
+<path style="stroke:none;" d="M 7.234375 -10.625 L 11.59375 -22.609375 L 11.65625 -22.609375 L 15.953125 -10.625 Z M 9.796875 -25.703125 L -0.21875 0 L 3.28125 0 L 6.15625 -7.734375 L 17.03125 -7.734375 L 19.84375 0 L 23.609375 0 L 13.578125 -25.703125 Z M 9.796875 -25.703125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-6">
-<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 "/>
+<path style="stroke:none;" d="M 0.796875 -2.875 L 0.796875 0 L 21.234375 0 L 21.234375 -2.875 L 4.859375 -2.875 L 20.8125 -22.828125 L 20.8125 -25.703125 L 2.015625 -25.703125 L 2.015625 -22.828125 L 16.78125 -22.828125 Z M 0.796875 -2.875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-7">
-<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="glyph2-8">
-<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="glyph2-9">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-10">
-<path style="stroke:none;" d="M 1.0625 -3.84375 L 1.0625 0 L 28.3125 0 L 28.3125 -3.84375 L 6.484375 -3.84375 L 27.75 -30.4375 L 27.75 -34.265625 L 2.6875 -34.265625 L 2.6875 -30.4375 L 22.375 -30.4375 Z M 1.0625 -3.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-11">
-<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="glyph2-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="glyph2-13">
-<path style="stroke:none;" d="M 9.796875 9.453125 L 12.90625 9.453125 C 10.632812 5.773438 9.007812 2.128906 8.03125 -1.484375 C 7.0625 -5.097656 6.578125 -8.921875 6.578125 -12.953125 C 6.578125 -16.890625 7.054688 -20.648438 8.015625 -24.234375 C 8.972656 -27.816406 10.601562 -31.4375 12.90625 -35.09375 L 9.796875 -35.09375 C 7.296875 -31.789062 5.410156 -28.21875 4.140625 -24.375 C 2.878906 -20.539062 2.25 -16.734375 2.25 -12.953125 C 2.25 -10.847656 2.425781 -8.832031 2.78125 -6.90625 C 3.132812 -4.988281 3.640625 -3.117188 4.296875 -1.296875 C 4.953125 0.523438 5.742188 2.320312 6.671875 4.09375 C 7.597656 5.875 8.640625 7.660156 9.796875 9.453125 Z M 9.796875 9.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-14">
-<path style="stroke:none;" d=""/>
-</symbol>
-<symbol overflow="visible" id="glyph2-15">
-<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="glyph2-16">
-<path style="stroke:none;" d="M 9.640625 -28.84375 L 9.640625 -34.265625 L 7.109375 -34.265625 L 7.109375 -28.84375 L 2.015625 -30.765625 L 1.15625 -28.46875 L 6.234375 -26.640625 L 3.125 -22.265625 L 5.28125 -20.78125 L 8.40625 -25.390625 L 11.71875 -20.78125 L 13.6875 -22.265625 L 10.515625 -26.640625 L 15.75 -28.46875 L 14.78125 -30.765625 Z M 9.640625 -28.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-17">
-<path style="stroke:none;" d="M -0.4375 9.453125 L 2.640625 9.453125 C 5.140625 6.160156 7.019531 2.601562 8.28125 -1.21875 C 9.539062 -5.039062 10.171875 -8.84375 10.171875 -12.625 C 10.171875 -14.738281 9.992188 -16.753906 9.640625 -18.671875 C 9.296875 -20.585938 8.796875 -22.46875 8.140625 -24.3125 C 7.484375 -26.15625 6.691406 -27.960938 5.765625 -29.734375 C 4.835938 -31.515625 3.796875 -33.300781 2.640625 -35.09375 L -0.4375 -35.09375 C 1.800781 -31.40625 3.410156 -27.742188 4.390625 -24.109375 C 5.367188 -20.484375 5.859375 -16.65625 5.859375 -12.625 C 5.859375 -8.71875 5.375 -4.960938 4.40625 -1.359375 C 3.445312 2.234375 1.832031 5.835938 -0.4375 9.453125 Z M -0.4375 9.453125 "/>
+<path style="stroke:none;" d="M 0 4.640625 L 0 7.09375 L 6.734375 7.09375 L 6.734375 -26.3125 L 0 -26.3125 L 0 -23.875 L 3.859375 -23.875 L 3.859375 4.640625 Z M 0 4.640625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph3-0">
-<path style="stroke:none;" d="M 4.796875 -41.28125 L 4.796875 4.796875 L 43.203125 4.796875 L 43.203125 -41.28125 Z M 39.125 -38.78125 L 24.046875 -20.203125 L 8.921875 -38.78125 Z M 40.703125 0.390625 L 25.625 -18.1875 L 40.703125 -36.765625 Z M 8.96875 2.296875 L 24.046875 -16.21875 L 39.078125 2.296875 Z M 7.296875 0.4375 L 7.296875 -36.859375 L 22.421875 -18.1875 Z M 7.296875 0.4375 "/>
+<path style="stroke:none;" d="M 11.046875 -17.984375 L 2.75 -17.984375 L 2.75 -1.265625 L 11.046875 -1.265625 Z M 12.421875 -19.21875 L 12.421875 -0.03125 L 1.375 -0.03125 L 1.375 -19.21875 Z M 12.421875 -19.21875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph3-1">
-<path style="stroke:none;" d="M 28.515625 -20.96875 L 28.515625 -20.6875 L 28.703125 -3.03125 C 28.703125 -2.734375 28.703125 -2.5 28.703125 -1.96875 C 28.703125 -0.09375 28.65625 0.4375 28.515625 1.828125 L 32.40625 1.828125 C 32.25 0.53125 32.15625 -1.015625 32.15625 -3.078125 L 31.828125 -26.453125 L 38.25 -26.453125 C 38.5 -26.453125 38.78125 -26.453125 38.96875 -26.453125 C 40.9375 -26.453125 41.953125 -26.40625 42.953125 -26.296875 L 42.953125 -29.8125 C 41.421875 -29.5625 40.84375 -29.515625 38.15625 -29.515625 L 31.828125 -29.515625 L 31.734375 -34.3125 L 31.734375 -35.46875 C 31.734375 -36.28125 31.78125 -37.0625 31.921875 -38.109375 L 28.078125 -38.109375 C 28.265625 -36.71875 28.265625 -36.71875 28.3125 -34.21875 L 28.375 -29.515625 L 10.890625 -29.421875 C 8.0625 -29.421875 7.203125 -29.46875 5.46875 -29.765625 L 5.46875 -26.15625 C 7.109375 -26.359375 7.78125 -26.359375 10.796875 -26.359375 L 26.546875 -26.453125 C 24.953125 -23.71875 22.3125 -20.40625 19.625 -17.71875 C 14.59375 -12.671875 9.171875 -8.828125 3.359375 -6.234375 C 4.609375 -5.234375 4.984375 -4.75 5.765625 -3.359375 C 9.640625 -5.5625 11.515625 -6.71875 13.6875 -8.296875 C 18.34375 -11.65625 22.5625 -15.59375 25.0625 -18.90625 C 27.3125 -21.890625 27.75 -22.515625 28.65625 -24.28125 C 28.5625 -22.21875 28.515625 -21.5 28.515625 -21.171875 Z M 28.515625 -20.96875 "/>
+<path style="stroke:none;" d="M 5.421875 -7.96875 L 8.6875 -16.953125 L 8.75 -16.953125 L 11.96875 -7.96875 Z M 7.34375 -19.28125 L -0.15625 0 L 2.453125 0 L 4.609375 -5.8125 L 12.765625 -5.8125 L 14.875 0 L 17.71875 0 L 10.171875 -19.28125 Z M 7.34375 -19.28125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph3-2">
-<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 "/>
+<path style="stroke:none;" d="M 11.203125 -9.484375 L 13.578125 -9.484375 C 13.492188 -10.304688 13.28125 -11.019531 12.9375 -11.625 C 12.59375 -12.226562 12.15625 -12.726562 11.625 -13.125 C 11.09375 -13.519531 10.476562 -13.8125 9.78125 -14 C 9.09375 -14.1875 8.351562 -14.28125 7.5625 -14.28125 C 6.457031 -14.28125 5.488281 -14.085938 4.65625 -13.703125 C 3.832031 -13.316406 3.144531 -12.785156 2.59375 -12.109375 C 2.050781 -11.429688 1.644531 -10.640625 1.375 -9.734375 C 1.101562 -8.828125 0.96875 -7.847656 0.96875 -6.796875 C 0.96875 -5.753906 1.109375 -4.796875 1.390625 -3.921875 C 1.671875 -3.054688 2.082031 -2.304688 2.625 -1.671875 C 3.175781 -1.046875 3.859375 -0.5625 4.671875 -0.21875 C 5.492188 0.125 6.4375 0.296875 7.5 0.296875 C 9.28125 0.296875 10.6875 -0.171875 11.71875 -1.109375 C 12.757812 -2.046875 13.40625 -3.378906 13.65625 -5.109375 L 11.3125 -5.109375 C 11.164062 -4.023438 10.773438 -3.1875 10.140625 -2.59375 C 9.503906 -2 8.617188 -1.703125 7.484375 -1.703125 C 6.765625 -1.703125 6.140625 -1.84375 5.609375 -2.125 C 5.085938 -2.414062 4.664062 -2.800781 4.34375 -3.28125 C 4.019531 -3.757812 3.78125 -4.300781 3.625 -4.90625 C 3.476562 -5.519531 3.40625 -6.148438 3.40625 -6.796875 C 3.40625 -7.503906 3.472656 -8.1875 3.609375 -8.84375 C 3.753906 -9.5 3.992188 -10.078125 4.328125 -10.578125 C 4.660156 -11.085938 5.101562 -11.492188 5.65625 -11.796875 C 6.21875 -12.109375 6.914062 -12.265625 7.75 -12.265625 C 8.71875 -12.265625 9.488281 -12.019531 10.0625 -11.53125 C 10.644531 -11.039062 11.023438 -10.359375 11.203125 -9.484375 Z M 11.203125 -9.484375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph3-3">
-<path style="stroke:none;" d="M 18.34375 1.484375 C 18.140625 0.140625 18.09375 -0.90625 18.09375 -3.59375 L 18.09375 -18.046875 C 18.09375 -19.25 18.046875 -19.921875 17.90625 -20.875 L 18 -20.921875 C 18.4375 -20.59375 18.765625 -20.40625 19.484375 -20.109375 C 26.25 -17.328125 32.875 -13.78125 37.390625 -10.609375 L 39.453125 -14.15625 C 31.0625 -19.015625 25.484375 -21.640625 18.09375 -24.28125 L 18.09375 -33.265625 C 18.09375 -36 18.140625 -37.015625 18.34375 -38.25 L 14.203125 -38.25 C 14.40625 -37.0625 14.5 -35.90625 14.5 -33.359375 L 14.5 -3.546875 C 14.5 -0.953125 14.40625 0.1875 14.203125 1.484375 Z M 18.34375 1.484375 "/>
+<path style="stroke:none;" d="M 11.421875 -8.3125 L 3.40625 -8.3125 C 3.4375 -8.851562 3.550781 -9.363281 3.75 -9.84375 C 3.945312 -10.320312 4.21875 -10.738281 4.5625 -11.09375 C 4.90625 -11.457031 5.3125 -11.742188 5.78125 -11.953125 C 6.257812 -12.160156 6.796875 -12.265625 7.390625 -12.265625 C 7.972656 -12.265625 8.5 -12.160156 8.96875 -11.953125 C 9.445312 -11.742188 9.863281 -11.460938 10.21875 -11.109375 C 10.570312 -10.753906 10.847656 -10.332031 11.046875 -9.84375 C 11.253906 -9.363281 11.378906 -8.851562 11.421875 -8.3125 Z M 13.640625 -4.421875 L 11.359375 -4.421875 C 11.160156 -3.503906 10.75 -2.820312 10.125 -2.375 C 9.507812 -1.925781 8.71875 -1.703125 7.75 -1.703125 C 6.988281 -1.703125 6.328125 -1.828125 5.765625 -2.078125 C 5.210938 -2.328125 4.753906 -2.660156 4.390625 -3.078125 C 4.035156 -3.503906 3.773438 -3.992188 3.609375 -4.546875 C 3.453125 -5.097656 3.382812 -5.679688 3.40625 -6.296875 L 13.84375 -6.296875 C 13.882812 -7.140625 13.8125 -8.03125 13.625 -8.96875 C 13.4375 -9.90625 13.09375 -10.769531 12.59375 -11.5625 C 12.101562 -12.351562 11.445312 -13.003906 10.625 -13.515625 C 9.800781 -14.023438 8.769531 -14.28125 7.53125 -14.28125 C 6.582031 -14.28125 5.707031 -14.097656 4.90625 -13.734375 C 4.101562 -13.378906 3.40625 -12.878906 2.8125 -12.234375 C 2.226562 -11.585938 1.773438 -10.820312 1.453125 -9.9375 C 1.128906 -9.050781 0.96875 -8.078125 0.96875 -7.015625 C 1.007812 -5.953125 1.164062 -4.972656 1.4375 -4.078125 C 1.71875 -3.179688 2.132812 -2.40625 2.6875 -1.75 C 3.25 -1.101562 3.941406 -0.597656 4.765625 -0.234375 C 5.585938 0.117188 6.554688 0.296875 7.671875 0.296875 C 9.253906 0.296875 10.566406 -0.0976562 11.609375 -0.890625 C 12.648438 -1.679688 13.328125 -2.859375 13.640625 -4.421875 Z M 13.640625 -4.421875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph3-4">
-<path style="stroke:none;" d="M 11.140625 -20.203125 C 18.34375 -14.40625 25.484375 -6.53125 29.859375 0.4375 L 32.78125 -2.015625 C 29.5625 -6.28125 27.59375 -8.78125 25.78125 -10.75 C 31.828125 -15.640625 36.90625 -21.40625 41.609375 -28.75 C 42.625 -30.28125 42.953125 -30.71875 43.53125 -31.296875 L 41.515625 -33.703125 C 40.75 -33.40625 40.515625 -33.359375 38.828125 -33.359375 L 10.84375 -33.359375 C 8.0625 -33.359375 6.90625 -33.40625 5.234375 -33.640625 L 5.234375 -29.859375 C 6.859375 -30 8.203125 -30.046875 10.796875 -30.046875 C 37.53125 -30.09375 37.53125 -30.09375 38.203125 -30.140625 C 38.015625 -29.859375 37.96875 -29.8125 37.828125 -29.5625 C 35.8125 -26.25 32.546875 -21.9375 29.90625 -19.15625 C 28.125 -17.28125 25.578125 -14.96875 23.515625 -13.25 C 19.15625 -17.71875 17.375 -19.34375 13.78125 -22.3125 Z M 11.140625 -20.203125 "/>
+<path style="stroke:none;" d="M 1.8125 -13.953125 L 1.8125 5.3125 L 4.109375 5.3125 L 4.109375 -1.859375 L 4.15625 -1.859375 C 4.40625 -1.441406 4.710938 -1.09375 5.078125 -0.8125 C 5.453125 -0.539062 5.847656 -0.320312 6.265625 -0.15625 C 6.679688 0 7.097656 0.113281 7.515625 0.1875 C 7.941406 0.257812 8.328125 0.296875 8.671875 0.296875 C 9.734375 0.296875 10.660156 0.109375 11.453125 -0.265625 C 12.253906 -0.648438 12.921875 -1.171875 13.453125 -1.828125 C 13.984375 -2.484375 14.378906 -3.25 14.640625 -4.125 C 14.898438 -5.007812 15.03125 -5.945312 15.03125 -6.9375 C 15.03125 -7.925781 14.894531 -8.859375 14.625 -9.734375 C 14.363281 -10.617188 13.96875 -11.398438 13.4375 -12.078125 C 12.90625 -12.753906 12.238281 -13.289062 11.4375 -13.6875 C 10.632812 -14.082031 9.691406 -14.28125 8.609375 -14.28125 C 7.640625 -14.28125 6.75 -14.101562 5.9375 -13.75 C 5.125 -13.40625 4.53125 -12.84375 4.15625 -12.0625 L 4.109375 -12.0625 L 4.109375 -13.953125 Z M 12.609375 -7.09375 C 12.609375 -6.414062 12.535156 -5.75 12.390625 -5.09375 C 12.242188 -4.445312 12.007812 -3.875 11.6875 -3.375 C 11.363281 -2.875 10.9375 -2.46875 10.40625 -2.15625 C 9.875 -1.851562 9.210938 -1.703125 8.421875 -1.703125 C 7.628906 -1.703125 6.953125 -1.847656 6.390625 -2.140625 C 5.835938 -2.441406 5.382812 -2.832031 5.03125 -3.3125 C 4.6875 -3.800781 4.429688 -4.363281 4.265625 -5 C 4.097656 -5.644531 4.015625 -6.3125 4.015625 -7 C 4.015625 -7.644531 4.09375 -8.28125 4.25 -8.90625 C 4.40625 -9.539062 4.65625 -10.101562 5 -10.59375 C 5.34375 -11.09375 5.78125 -11.492188 6.3125 -11.796875 C 6.851562 -12.109375 7.507812 -12.265625 8.28125 -12.265625 C 9.019531 -12.265625 9.664062 -12.117188 10.21875 -11.828125 C 10.769531 -11.535156 11.21875 -11.144531 11.5625 -10.65625 C 11.914062 -10.175781 12.175781 -9.625 12.34375 -9 C 12.519531 -8.382812 12.609375 -7.75 12.609375 -7.09375 Z M 12.609375 -7.09375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph3-5">
-<path style="stroke:none;" d="M 7.484375 -31.34375 C 11.65625 -28.796875 15.453125 -25.6875 18.90625 -21.9375 L 21.40625 -24.90625 C 17.953125 -28.3125 14.96875 -30.671875 9.84375 -33.9375 Z M 7.828125 -0.140625 C 9.03125 -0.53125 9.40625 -0.625 10.703125 -0.90625 C 18.71875 -2.734375 23.65625 -4.703125 28.609375 -8.0625 C 34.9375 -12.4375 39.40625 -18.046875 43.25 -26.40625 C 41.90625 -27.3125 41.421875 -27.75 40.3125 -29.234375 C 36.4375 -19.0625 30 -12 20.734375 -7.875 C 16.265625 -5.8125 10.515625 -4.3125 6.765625 -4.171875 Z M 7.828125 -0.140625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-6">
-<path style="stroke:none;" d="M 9.3125 -37.4375 C 9.21875 -36.34375 9.125 -35.859375 8.640625 -33.59375 C 7.0625 -26.5 6.484375 -21.40625 6.484375 -14.59375 C 6.484375 -9.546875 6.8125 -6.09375 7.734375 -1.015625 C 7.875 -0.09375 7.921875 0.140625 8.015625 0.90625 L 11.46875 0.625 C 11.46875 0.28125 11.46875 0.046875 11.46875 -0.09375 C 11.46875 -2.78125 13.203125 -8.546875 15.359375 -13.296875 L 13.0625 -14.40625 C 11.515625 -10.890625 10.609375 -8.25 9.9375 -5.046875 C 9.75 -7.578125 9.640625 -10.421875 9.640625 -14.15625 C 9.640625 -19.921875 10.078125 -24.140625 11.09375 -29.1875 C 11.8125 -32.453125 12.390625 -34.796875 13.109375 -36.859375 Z M 19.203125 -28.375 C 22.3125 -28.03125 24.1875 -27.890625 26.875 -27.890625 C 30.578125 -27.890625 34.421875 -28.125 37.203125 -28.515625 C 39.3125 -28.796875 40.421875 -28.9375 40.515625 -28.9375 L 40.265625 -32.359375 C 37.0625 -31.484375 32.734375 -31.0625 27.40625 -31.0625 C 23.65625 -31.0625 21.3125 -31.25 19.25 -31.78125 Z M 22.703125 -19.015625 C 19.734375 -15.59375 18.53125 -13.015625 18.53125 -10.078125 C 18.53125 -8.296875 19.015625 -6.859375 19.96875 -5.65625 C 22.03125 -3.171875 25.484375 -2.015625 30.953125 -2.015625 C 34.21875 -2.015625 37.4375 -2.296875 40.796875 -2.96875 C 41.765625 -3.125 41.859375 -3.171875 42.484375 -3.21875 L 42 -6.90625 C 39.40625 -5.859375 35.328125 -5.234375 30.953125 -5.234375 C 24.765625 -5.234375 21.75 -6.953125 21.75 -10.515625 C 21.75 -12.625 22.9375 -14.921875 25.34375 -17.5625 Z M 22.703125 -19.015625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-7">
-<path style="stroke:none;" d="M 12.484375 -35.234375 L 8.875 -35.234375 C 6.765625 -35.234375 5.28125 -35.328125 4.03125 -35.515625 L 4.03125 -32.40625 C 5.515625 -32.546875 7.0625 -32.640625 8.875 -32.640625 L 12.484375 -32.640625 L 12.484375 -17.234375 L 7.25 -17.234375 C 5.28125 -17.234375 3.796875 -17.328125 2.5 -17.515625 L 2.5 -14.40625 C 3.84375 -14.59375 5.328125 -14.6875 7.296875 -14.6875 L 14.296875 -14.6875 C 11.609375 -11.5625 7.109375 -9.171875 1.390625 -7.828125 C 2.296875 -6.671875 2.546875 -6.34375 3.078125 -4.9375 C 10.03125 -7.390625 14.203125 -10.125 17.859375 -14.6875 L 29.71875 -14.6875 C 33.84375 -10.078125 37.875 -7.53125 45.078125 -5.140625 C 45.59375 -6.34375 45.9375 -6.953125 46.75 -8.0625 C 40.5625 -9.59375 36.671875 -11.515625 33.359375 -14.6875 L 40.609375 -14.6875 C 42.53125 -14.6875 44.015625 -14.59375 45.40625 -14.40625 L 45.40625 -17.515625 C 44.0625 -17.328125 42.484375 -17.234375 40.515625 -17.234375 L 35.234375 -17.234375 L 35.234375 -32.640625 L 39.640625 -32.640625 C 41.46875 -32.640625 42.953125 -32.546875 44.5 -32.40625 L 44.5 -35.515625 C 43.203125 -35.328125 41.765625 -35.234375 39.640625 -35.234375 L 35.234375 -35.234375 L 35.234375 -35.515625 C 35.234375 -37.203125 35.28125 -38.546875 35.46875 -39.703125 L 32.015625 -39.703125 C 32.203125 -38.6875 32.296875 -37.4375 32.296875 -35.515625 L 32.296875 -35.234375 L 15.40625 -35.234375 L 15.40625 -35.515625 C 15.40625 -37.15625 15.5 -38.546875 15.640625 -39.703125 L 12.1875 -39.703125 C 12.390625 -38.6875 12.484375 -37.484375 12.484375 -35.515625 Z M 15.40625 -17.234375 L 15.40625 -20.78125 L 32.296875 -20.78125 L 32.296875 -17.234375 Z M 15.40625 -23.28125 L 15.40625 -26.6875 L 32.296875 -26.6875 L 32.296875 -23.28125 Z M 15.40625 -29.1875 L 15.40625 -32.640625 L 32.296875 -32.640625 L 32.296875 -29.1875 Z M 22.125 -8.734375 L 16.21875 -8.734375 C 14.296875 -8.734375 13.203125 -8.78125 12.046875 -8.921875 L 12.046875 -5.953125 C 13.34375 -6.09375 14.359375 -6.140625 16.21875 -6.140625 L 22.125 -6.140625 L 22.125 -0.8125 L 10.3125 -0.8125 C 7.78125 -0.8125 6.28125 -0.90625 5.1875 -1.0625 L 5.1875 2.109375 C 6.671875 1.921875 8.296875 1.828125 10.421875 1.828125 L 38.015625 1.828125 C 40.078125 1.828125 41.671875 1.921875 43.15625 2.109375 L 43.15625 -1.0625 C 41.859375 -0.859375 40.5625 -0.8125 38.109375 -0.8125 L 24.953125 -0.8125 L 24.953125 -6.140625 L 31.828125 -6.140625 C 33.75 -6.140625 34.796875 -6.09375 36 -5.953125 L 36 -8.921875 C 34.75 -8.78125 33.84375 -8.734375 31.828125 -8.734375 L 24.953125 -8.734375 L 24.953125 -9.171875 C 24.953125 -10.984375 25.015625 -11.90625 25.203125 -13.015625 L 21.890625 -13.015625 C 22.03125 -11.90625 22.125 -10.9375 22.125 -9.171875 Z M 22.125 -8.734375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-8">
-<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-9">
-<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-10">
-<path style="stroke:none;" d="M 40.796875 -23.765625 C 42.71875 -23.765625 44.109375 -23.65625 45.40625 -23.46875 L 45.40625 -26.78125 C 44.0625 -26.59375 42.765625 -26.5 40.703125 -26.5 L 30.578125 -26.5 C 30.765625 -28.984375 30.8125 -30.53125 30.90625 -33.984375 C 31.015625 -37.6875 31.0625 -38.15625 31.25 -39.40625 L 27.546875 -39.40625 C 27.75 -38.546875 27.84375 -37.015625 27.84375 -35.8125 C 27.84375 -30.8125 27.796875 -29.765625 27.640625 -26.5 L 20.78125 -26.5 C 18.8125 -26.5 17.328125 -26.59375 16.03125 -26.78125 L 16.03125 -23.46875 C 17.375 -23.65625 18.90625 -23.765625 20.828125 -23.765625 L 27.40625 -23.765625 C 26.734375 -16.890625 25.296875 -12.09375 22.46875 -7.4375 C 20.453125 -4.171875 18.390625 -2.015625 15.03125 0.28125 C 15.84375 0.953125 16.46875 1.6875 17.1875 2.921875 C 21.03125 0 23.46875 -2.921875 25.6875 -7.0625 C 27.75 -10.984375 29.1875 -15.546875 29.765625 -20.15625 C 30.765625 -15.21875 31.484375 -13.109375 33.171875 -9.640625 C 35.8125 -4.171875 38.6875 -0.625 43.484375 3.171875 C 44.203125 1.875 44.6875 1.25 45.75 0.1875 C 41.328125 -2.78125 38.296875 -6.140625 35.765625 -11.046875 C 33.890625 -14.59375 32.59375 -18.390625 31.34375 -23.765625 Z M 11.046875 -16.46875 C 7.828125 -14.359375 3.796875 -12.234375 1.828125 -11.609375 L 3.21875 -8.546875 C 3.84375 -8.921875 4.984375 -9.59375 6.625 -10.515625 C 7.921875 -11.28125 9.546875 -12.28125 11.046875 -13.296875 L 11.046875 -0.953125 C 11.046875 0.8125 10.9375 2.203125 10.75 3.5 L 14.359375 3.5 C 14.109375 2.15625 14.0625 1.109375 14.0625 -0.765625 L 14.0625 -35.421875 C 14.0625 -37.203125 14.109375 -38.296875 14.359375 -39.640625 L 10.75 -39.640625 C 10.9375 -38.296875 11.046875 -37.109375 11.046875 -35.421875 Z M 2.59375 -32.15625 C 4.375 -28.3125 5.140625 -25.921875 5.953125 -21.75 L 8.734375 -22.890625 C 7.6875 -27.265625 6.953125 -29.375 5.234375 -33.171875 Z M 42.71875 -30.34375 C 40.171875 -33.796875 39.125 -34.984375 36.046875 -37.96875 L 33.796875 -36.4375 C 36.859375 -33.453125 38.203125 -31.828125 40.3125 -28.515625 Z M 42.71875 -30.34375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-11">
-<path style="stroke:none;" d="M 2.921875 -29.90625 C 4.03125 -30.046875 4.796875 -30.140625 5.421875 -30.140625 C 13.203125 -30.578125 14.296875 -30.671875 20.921875 -31.484375 C 21.546875 -30.578125 21.796875 -30.1875 22.5625 -28.984375 L 24.90625 -30.484375 C 22.65625 -33.703125 20.828125 -35.953125 18.53125 -38.359375 L 16.3125 -37.0625 C 17.765625 -35.609375 18.28125 -35.046875 19.4375 -33.5 C 15.3125 -33.125 14.015625 -33.03125 9.75 -32.875 C 11.09375 -34.84375 11.90625 -36.234375 13.734375 -39.453125 L 10.5625 -40.3125 C 9.75 -37.78125 8.828125 -36.046875 6.671875 -32.78125 C 5.65625 -32.734375 5.46875 -32.734375 4.984375 -32.734375 C 3.9375 -32.734375 3.359375 -32.78125 2.59375 -32.828125 Z M 8.453125 -15.75 L 19.25 -15.75 L 19.25 -13.25 C 19.25 -12.1875 19.015625 -12 17.5625 -12 C 16.46875 -12 15.125 -12.140625 13.4375 -12.390625 C 13.875 -11.46875 14.015625 -10.75 14.0625 -9.796875 C 15.21875 -9.75 16.265625 -9.703125 16.984375 -9.703125 C 18.578125 -9.703125 19.96875 -9.890625 20.6875 -10.21875 C 21.5 -10.5625 21.9375 -11.5625 21.9375 -13.203125 L 21.9375 -23.609375 C 21.9375 -26.015625 21.984375 -27.3125 22.125 -28.421875 C 21.078125 -28.265625 19.921875 -28.21875 17.90625 -28.21875 L 9.84375 -28.21875 C 7.875 -28.21875 6.625 -28.265625 5.5625 -28.375 C 5.65625 -27.3125 5.71875 -26.5 5.71875 -24.4375 L 5.71875 -14.0625 C 5.71875 -11.71875 5.65625 -10.46875 5.46875 -9.171875 L 8.640625 -9.171875 C 8.5 -10.265625 8.453125 -11.421875 8.453125 -13.78125 Z M 8.453125 -17.953125 L 8.453125 -20.828125 L 19.25 -20.828125 L 19.25 -17.953125 Z M 8.453125 -23.046875 L 8.453125 -25.921875 L 19.25 -25.921875 L 19.25 -23.046875 Z M 28.984375 -36.34375 C 28.984375 -37.921875 29.046875 -38.6875 29.28125 -39.796875 L 25.875 -39.796875 C 26.109375 -38.6875 26.15625 -37.828125 26.15625 -36.234375 L 26.15625 -28.890625 C 26.15625 -26.15625 27.703125 -25.53125 34.375 -25.53125 C 39.9375 -25.53125 41.5625 -25.734375 42.625 -26.546875 C 43.78125 -27.359375 44.203125 -28.609375 44.546875 -32.15625 C 43.25 -32.546875 43.109375 -32.640625 41.8125 -33.359375 C 41.5625 -28.03125 41.46875 -27.984375 35.8125 -27.984375 C 32.6875 -27.984375 30.390625 -28.125 29.8125 -28.3125 C 29.140625 -28.5625 28.984375 -28.796875 28.984375 -29.515625 L 28.984375 -31.828125 C 32.640625 -32.59375 34.03125 -32.921875 37.203125 -33.890625 C 38.921875 -34.46875 42.1875 -35.671875 43.625 -36.28125 L 41.328125 -38.640625 C 39.078125 -37.0625 34.65625 -35.421875 28.984375 -34.21875 Z M 28.84375 -20.5 C 28.84375 -22.078125 28.890625 -22.9375 29.140625 -23.953125 L 25.734375 -23.953125 C 25.96875 -22.84375 26.015625 -21.984375 26.015625 -20.40625 L 26.015625 -13.34375 C 26.015625 -10.65625 27.59375 -10.03125 34.5625 -10.03125 C 39.890625 -10.03125 41.90625 -10.3125 43.015625 -11.234375 C 43.96875 -12.09375 44.296875 -13.109375 44.6875 -16.703125 C 43.4375 -17.046875 43.15625 -17.1875 41.953125 -17.90625 C 41.8125 -14.828125 41.5625 -13.6875 40.984375 -13.203125 C 40.375 -12.71875 39.03125 -12.578125 34.75 -12.578125 C 29.71875 -12.578125 28.84375 -12.8125 28.84375 -14.0625 L 28.84375 -16.796875 C 34.125 -17.90625 37.625 -18.859375 40.984375 -20.25 C 42.1875 -20.734375 42.34375 -20.78125 42.90625 -20.96875 L 40.75 -23.328125 C 38.640625 -21.796875 34.03125 -20.203125 28.84375 -19.203125 Z M 5.421875 2.6875 C 8.015625 -0.53125 8.921875 -2.109375 10.609375 -6.390625 L 7.921875 -7.625 C 6.53125 -3.796875 5.515625 -2.203125 2.78125 0.859375 Z M 14.015625 -7.921875 C 14.25 -6.765625 14.296875 -5.8125 14.296875 -4.421875 L 14.296875 -0.1875 C 14.296875 2.6875 15.40625 3.03125 24.671875 3.03125 C 30.4375 3.03125 32.640625 2.78125 33.703125 2.015625 C 34.84375 1.15625 35.421875 -0.484375 35.765625 -3.984375 C 34.5625 -4.265625 33.84375 -4.515625 32.78125 -5.140625 C 32.734375 -2.78125 32.453125 -1.390625 31.96875 -0.71875 C 31.390625 0.140625 29.765625 0.34375 23.375 0.34375 C 18.140625 0.34375 17.1875 0.140625 17.1875 -0.90625 L 17.1875 -4.65625 C 17.1875 -6.09375 17.234375 -6.8125 17.46875 -7.921875 Z M 45.171875 0.671875 C 43.34375 -2.546875 41.765625 -4.65625 38.875 -7.921875 L 36.484375 -6.671875 C 38.96875 -3.890625 40.65625 -1.34375 42.53125 2.296875 Z M 29.1875 -4.421875 C 26.78125 -6.53125 25.296875 -7.625 22.703125 -9.03125 L 20.6875 -7.34375 C 23.1875 -6 24.859375 -4.65625 27.078125 -2.453125 Z M 29.1875 -4.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-12">
-<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-13">
-<path style="stroke:none;" d="M 14.875 -26.453125 L 14.875 -23.046875 L 9.84375 -23.046875 C 7.96875 -23.046875 6.953125 -23.09375 5.765625 -23.28125 L 5.765625 -20.40625 C 6.953125 -20.59375 7.921875 -20.640625 9.84375 -20.640625 L 14.875 -20.640625 L 14.875 -16.75 L 7.15625 -16.75 C 5.140625 -16.75 4.171875 -16.796875 2.96875 -16.984375 L 2.96875 -13.96875 C 4.171875 -14.15625 5.328125 -14.203125 7.15625 -14.203125 L 24.90625 -14.203125 C 26.78125 -14.203125 27.796875 -14.15625 28.984375 -13.96875 L 28.984375 -16.984375 C 27.796875 -16.796875 26.828125 -16.75 24.90625 -16.75 L 17.609375 -16.75 L 17.609375 -20.640625 L 22.375 -20.640625 C 24.234375 -20.640625 25.109375 -20.59375 26.296875 -20.40625 L 26.296875 -23.28125 C 25.109375 -23.09375 24.1875 -23.046875 22.375 -23.046875 L 17.609375 -23.046875 L 17.609375 -26.453125 L 21.21875 -26.453125 C 23.09375 -26.453125 24.046875 -26.40625 25.296875 -26.203125 L 25.296875 -29.140625 C 24.09375 -28.9375 23.1875 -28.890625 21.21875 -28.890625 L 17.609375 -28.890625 C 17.609375 -30.53125 17.65625 -31.0625 17.859375 -31.921875 L 14.640625 -31.921875 C 14.828125 -31.0625 14.875 -30.390625 14.875 -28.890625 L 11.1875 -28.890625 C 9.21875 -28.890625 8.25 -28.9375 7.0625 -29.140625 L 7.0625 -26.203125 C 8.296875 -26.40625 9.3125 -26.453125 11.1875 -26.453125 Z M 14.828125 -35.859375 L 7.828125 -35.859375 C 5.421875 -35.859375 4.375 -35.90625 3.078125 -36.046875 C 3.21875 -35.140625 3.265625 -34.21875 3.265625 -32.828125 L 3.265625 -30.859375 C 3.265625 -29.46875 3.21875 -28.65625 3.078125 -27.640625 L 6.09375 -27.640625 L 6.09375 -33.359375 L 26.25 -33.359375 L 26.25 -28.125 L 29.140625 -28.125 C 29.046875 -29.046875 28.984375 -29.953125 28.984375 -31.203125 L 28.984375 -32.96875 C 28.984375 -34.171875 29.046875 -35.140625 29.140625 -36.046875 C 27.640625 -35.90625 26.25 -35.859375 23.859375 -35.859375 L 17.8125 -35.859375 L 17.8125 -36.234375 C 17.8125 -37.96875 17.90625 -39.03125 18.09375 -40.03125 L 14.546875 -40.03125 C 14.734375 -38.96875 14.828125 -37.96875 14.828125 -36.234375 Z M 10.46875 -10.890625 C 8.59375 -10.890625 7.390625 -10.9375 6.1875 -11.09375 C 6.34375 -9.703125 6.390625 -8.40625 6.390625 -6.625 L 6.390625 -0.859375 C 6.390625 1.0625 6.28125 2.296875 6.09375 3.640625 L 9.359375 3.640625 L 9.359375 1.296875 L 22.796875 1.296875 L 22.796875 3.03125 L 25.96875 3.03125 C 25.78125 1.921875 25.734375 0.8125 25.734375 -1.53125 L 25.734375 -6.671875 C 25.734375 -8.734375 25.78125 -9.703125 25.921875 -11.09375 C 24.671875 -10.9375 23.65625 -10.890625 21.984375 -10.890625 Z M 9.359375 -8.359375 L 22.796875 -8.359375 L 22.796875 -1.25 L 9.359375 -1.25 Z M 31.828125 -37.0625 C 32.015625 -35.859375 32.0625 -34.796875 32.0625 -31.78125 L 32.0625 -12.90625 C 32.0625 -9.890625 32.015625 -8.96875 31.828125 -7.53125 L 35.28125 -7.53125 C 35.09375 -8.78125 35.046875 -9.796875 35.046875 -12.90625 L 35.046875 -31.828125 C 35.046875 -34.46875 35.140625 -35.859375 35.328125 -37.0625 Z M 40.421875 -39.546875 C 40.65625 -38.0625 40.75 -36.578125 40.75 -33.703125 L 40.75 -1.484375 C 40.75 -0.28125 40.375 0 38.640625 0 C 37.015625 0 35.09375 -0.140625 32.875 -0.484375 C 33.359375 0.671875 33.546875 1.34375 33.796875 2.546875 C 35.46875 2.6875 37.015625 2.78125 38.203125 2.78125 C 42.859375 2.78125 43.828125 2.0625 43.828125 -1.484375 L 43.828125 -33.75 C 43.828125 -36.484375 43.921875 -38.203125 44.15625 -39.546875 Z M 40.421875 -39.546875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-14">
-<path style="stroke:none;" d="M 12.765625 -38.875 C 12.765625 -38.296875 12.71875 -38.0625 12.625 -37.34375 C 11.421875 -28.84375 10.984375 -24.34375 10.984375 -19.625 C 10.984375 -19.390625 10.984375 -18.953125 10.984375 -18.53125 L 11.09375 -13.53125 L 11.140625 -12.671875 C 11.140625 -12.578125 11.140625 -12.390625 11.140625 -12.140625 L 14.59375 -12.28125 C 14.546875 -13.015625 14.546875 -13.25 14.546875 -13.4375 C 14.546875 -16.9375 15.453125 -20.640625 17.140625 -24.140625 C 19.875 -29.765625 22.9375 -32.5 26.59375 -32.5 C 31.203125 -32.5 33.890625 -28.03125 33.890625 -20.296875 C 33.890625 -12.625 31.25 -7.578125 25.625 -4.375 C 22.84375 -2.78125 20.359375 -2.015625 15.890625 -1.34375 C 16.9375 -0.046875 17.234375 0.484375 17.8125 1.921875 C 21.171875 1.203125 24.046875 0.234375 26.359375 -0.90625 C 33.546875 -4.515625 37.4375 -11.09375 37.4375 -19.78125 C 37.4375 -24.90625 36.578125 -28.46875 34.5625 -31.4375 C 32.6875 -34.21875 30 -35.71875 26.875 -35.71875 C 23.140625 -35.71875 19.96875 -33.640625 17.28125 -29.515625 C 15.890625 -27.359375 14.921875 -25.015625 14.359375 -22.375 C 14.109375 -21.359375 14.109375 -21.359375 14.015625 -20.96875 L 13.828125 -21.03125 C 13.96875 -23.46875 14.640625 -28.703125 15.40625 -33.546875 C 15.84375 -36.140625 16.125 -37.484375 16.515625 -38.5 Z M 12.765625 -38.875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-15">
-<path style="stroke:none;" d="M 22.46875 -21.5 L 9.796875 -21.5 C 7.6875 -21.5 6.625 -21.546875 5.28125 -21.75 L 5.28125 -18.34375 C 6.71875 -18.53125 7.6875 -18.578125 9.640625 -18.578125 L 38.453125 -18.578125 L 38.453125 -11.953125 L 11.234375 -11.953125 C 9.03125 -11.953125 7.96875 -12 6.8125 -12.1875 L 6.8125 -8.78125 C 8.015625 -8.96875 9.171875 -9.03125 11.09375 -9.03125 L 38.453125 -9.03125 L 38.453125 -1.6875 L 9.265625 -1.6875 C 7.203125 -1.6875 6.09375 -1.734375 4.84375 -1.921875 L 4.84375 1.53125 C 6.234375 1.34375 7.53125 1.25 9.3125 1.25 L 38.453125 1.25 L 38.453125 3.796875 L 41.8125 3.796875 C 41.609375 2.203125 41.515625 0.8125 41.515625 -1.0625 L 41.515625 -18 C 41.515625 -19.578125 41.5625 -20.453125 41.71875 -21.796875 C 40.375 -21.546875 39.40625 -21.5 37.921875 -21.5 L 25.578125 -21.5 L 25.578125 -35.71875 C 25.578125 -37.828125 25.6875 -38.921875 25.875 -40.03125 L 22.171875 -40.03125 C 22.375 -38.921875 22.46875 -37.78125 22.46875 -35.71875 Z M 6.140625 -35.5625 C 9.84375 -30.90625 10.796875 -29.375 13.484375 -23.765625 L 16.3125 -25.390625 C 13.734375 -30.578125 12.765625 -32.0625 8.828125 -37.0625 Z M 38.921875 -37.34375 C 36.484375 -31.390625 34.9375 -28.890625 31.25 -24.578125 L 33.890625 -22.9375 C 37.578125 -27.40625 39.03125 -29.71875 41.90625 -35.90625 Z M 38.921875 -37.34375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-16">
-<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-17">
-<path style="stroke:none;" d="M 19.0625 -32.359375 C 18.953125 -28.65625 18.625 -26.78125 17.609375 -24.671875 C 16.421875 -22.171875 14.546875 -20.546875 10.890625 -18.8125 C 12.046875 -18.09375 12.671875 -17.5625 13.390625 -16.703125 C 19.78125 -20.5 21.75 -24.09375 21.984375 -32.359375 L 27.890625 -32.359375 L 27.890625 -22.078125 C 27.890625 -21.171875 27.640625 -20.96875 26.59375 -20.96875 C 25.34375 -20.96875 24.09375 -21.078125 22.515625 -21.3125 C 23.046875 -20.296875 23.28125 -19.53125 23.375 -18.484375 C 24.671875 -18.390625 26.25 -18.34375 27.40625 -18.34375 C 30 -18.34375 30.8125 -19.0625 30.8125 -21.40625 L 30.8125 -32.359375 L 39.265625 -32.359375 C 41.328125 -32.359375 43.0625 -32.25 44.59375 -32.109375 L 44.59375 -35.328125 C 43.25 -35.140625 41.765625 -35.046875 39.21875 -35.046875 L 25.484375 -35.046875 L 25.484375 -36.4375 C 25.484375 -37.828125 25.578125 -38.78125 25.78125 -39.796875 L 22.03125 -39.796875 C 22.21875 -38.828125 22.3125 -37.828125 22.3125 -36.4375 L 22.3125 -35.046875 L 8.6875 -35.046875 C 6.140625 -35.046875 4.65625 -35.140625 3.40625 -35.328125 L 3.40625 -32.109375 C 4.75 -32.296875 6.09375 -32.359375 8.546875 -32.359375 Z M 34.5625 -14.296875 C 33.59375 -14.15625 32.15625 -14.0625 30.09375 -14.0625 L 19.015625 -14.0625 C 19.828125 -14.921875 20.734375 -15.984375 21.546875 -16.9375 C 21.890625 -17.328125 21.9375 -17.421875 22.265625 -17.765625 L 19.4375 -19.015625 C 18.53125 -17.375 17.46875 -16.078125 15.5 -14.25 C 12.34375 -11.328125 8.921875 -9.21875 4.609375 -7.53125 C 5.375 -6.71875 5.71875 -6.28125 6.4375 -5.234375 C 9.984375 -6.90625 11.90625 -8.0625 14.6875 -10.171875 C 16.9375 -7.734375 18.71875 -6.1875 21.546875 -4.265625 C 15.703125 -1.484375 10.171875 -0.1875 2.015625 0.34375 C 2.828125 1.390625 3.265625 2.0625 3.640625 3.3125 C 9.796875 2.40625 10.84375 2.203125 13.828125 1.4375 C 17.859375 0.390625 21.40625 -0.953125 24.390625 -2.546875 C 29.765625 0.4375 35.71875 2.25 44.296875 3.546875 C 44.734375 2.40625 45.21875 1.484375 46.03125 0.390625 C 37.921875 -0.28125 32.546875 -1.578125 27.125 -4.171875 C 30.140625 -6.140625 32.40625 -8.015625 35.046875 -10.796875 C 36.140625 -11.953125 36.140625 -11.953125 36.53125 -12.34375 Z M 31.734375 -11.5625 C 29.140625 -8.875 27.3125 -7.4375 24.28125 -5.65625 C 21.265625 -7.53125 19.015625 -9.359375 16.9375 -11.5625 Z M 11.8125 -30.578125 C 10.609375 -27.890625 9.703125 -26.453125 7.96875 -24.578125 C 6.625 -23.09375 5.515625 -22.171875 3.21875 -20.640625 C 4.46875 -19.78125 4.703125 -19.625 5.71875 -18.578125 C 7.96875 -20.359375 8.96875 -21.3125 10.421875 -22.984375 C 12.1875 -25.0625 13.109375 -26.5 14.546875 -29.328125 Z M 33.078125 -28.46875 C 36.671875 -25.109375 38.640625 -22.796875 41.5625 -18.4375 L 44.25 -20.5 C 41.046875 -24.53125 39.078125 -26.59375 35.28125 -30.140625 Z M 33.078125 -28.46875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-18">
-<path style="stroke:none;" d="M 32.921875 -28.75 C 34.125 -30.28125 35.28125 -31.921875 36.4375 -33.84375 C 36.90625 -34.609375 37.0625 -34.84375 37.390625 -35.28125 L 35.71875 -37.0625 C 34.84375 -36.953125 33.9375 -36.90625 32.15625 -36.90625 L 26.109375 -36.90625 C 26.59375 -37.828125 26.78125 -38.25 27.125 -38.96875 C 27.3125 -39.40625 27.40625 -39.546875 27.59375 -39.9375 L 24.390625 -40.5625 C 23.375 -36.1875 19.828125 -31.4375 15.03125 -27.9375 L 15.03125 -30.8125 C 14.0625 -30.671875 13.25 -30.625 11.953125 -30.625 L 11.046875 -30.625 L 11.046875 -35.140625 C 11.046875 -37.4375 11.09375 -38.640625 11.328125 -40.03125 L 7.78125 -40.03125 C 7.96875 -38.734375 8.0625 -37.34375 8.0625 -35.09375 L 8.0625 -30.625 L 5.8125 -30.625 C 4.65625 -30.625 3.75 -30.671875 2.59375 -30.859375 L 2.59375 -27.703125 C 3.9375 -27.890625 4.75 -27.9375 5.8125 -27.9375 L 8.0625 -27.9375 L 8.0625 -16.890625 C 4.9375 -15.75 3.546875 -15.359375 2.0625 -15.171875 L 2.78125 -12 C 3.84375 -12.484375 4.078125 -12.578125 5.046875 -12.90625 C 6.046875 -13.25 6.765625 -13.484375 8.0625 -14.015625 L 8.0625 -0.953125 C 8.0625 -0.140625 7.828125 0.09375 6.859375 0.09375 C 5.65625 0.09375 4.265625 0 2.734375 -0.234375 C 3.125 0.90625 3.265625 1.625 3.359375 2.6875 C 4.75 2.78125 5.375 2.828125 6.09375 2.828125 C 10.171875 2.828125 11.046875 2.25 11.046875 -0.484375 L 11.046875 -15.21875 C 12.53125 -15.84375 13.390625 -16.21875 15.640625 -17.328125 L 15.59375 -20.15625 C 13.390625 -19.109375 12.671875 -18.71875 11.046875 -18.046875 L 11.046875 -27.9375 L 12 -27.9375 C 13.15625 -27.9375 13.96875 -27.890625 14.78125 -27.796875 C 14.359375 -27.5 14.203125 -27.40625 13.734375 -27.125 C 14.546875 -26.5 15.265625 -25.78125 15.640625 -25.015625 C 16.515625 -25.6875 16.796875 -25.875 17.46875 -26.5 C 17.515625 -25.34375 17.515625 -25.015625 17.515625 -24.09375 L 17.515625 -10.890625 C 15.890625 -10.9375 15.359375 -10.9375 14.453125 -11.09375 L 14.453125 -8.015625 C 15.890625 -8.203125 16.890625 -8.25 18.484375 -8.25 L 27.3125 -8.25 C 26.359375 -6.09375 24.90625 -4.421875 22.75 -2.921875 C 19.921875 -0.953125 17.046875 0.046875 12.234375 0.71875 C 13.0625 1.734375 13.4375 2.40625 13.875 3.5 C 18.765625 2.5 21.640625 1.34375 24.625 -0.859375 C 26.921875 -2.546875 28.5625 -4.515625 29.71875 -7.015625 C 32.640625 -1.921875 37.734375 1.625 44.875 3.5 C 45.3125 2.453125 45.9375 1.4375 46.515625 0.671875 C 39.3125 -0.765625 34.421875 -3.75 31.828125 -8.25 L 41.765625 -8.25 C 43.78125 -8.25 44.921875 -8.203125 46.171875 -7.96875 L 46.171875 -11.140625 C 45.3125 -10.984375 44.40625 -10.890625 43.0625 -10.890625 L 43.0625 -24.390625 C 43.0625 -26.59375 43.109375 -27.640625 43.25 -28.9375 C 42.046875 -28.796875 40.984375 -28.75 39.171875 -28.75 Z M 21.40625 -28.75 C 20.875 -28.75 20.734375 -28.75 20.015625 -28.75 C 22.125 -30.8125 23.28125 -32.203125 24.671875 -34.375 L 33.5 -34.375 C 32.15625 -32.0625 30.953125 -30.34375 29.609375 -28.75 Z M 20.296875 -10.890625 L 20.296875 -26.203125 L 25.828125 -26.203125 C 25.625 -20.296875 24.484375 -17.859375 20.640625 -15.40625 C 21.640625 -14.78125 22.125 -14.40625 22.703125 -13.578125 C 26.828125 -16.796875 28.03125 -19.4375 28.421875 -26.203125 L 32.0625 -26.203125 L 32.0625 -19.203125 C 32.0625 -16.9375 32.875 -16.46875 36.8125 -16.46875 C 37.4375 -16.46875 39.03125 -16.515625 40.265625 -16.515625 L 40.265625 -10.890625 L 30.953125 -10.890625 C 31.109375 -11.765625 31.15625 -12.140625 31.25 -12.765625 C 31.390625 -13.828125 31.390625 -13.828125 31.484375 -14.5 L 28.375 -14.6875 C 28.375 -14.359375 28.375 -14.0625 28.375 -13.921875 C 28.375 -13.0625 28.265625 -11.953125 28.078125 -10.890625 Z M 40.265625 -18.90625 C 38.359375 -18.859375 37.484375 -18.859375 36.484375 -18.859375 C 34.890625 -18.859375 34.609375 -19.0625 34.609375 -20.015625 L 34.609375 -26.203125 L 40.265625 -26.203125 Z M 40.265625 -18.90625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph4-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="glyph4-1">
-<path style="stroke:none;" d="M 17.421875 -18.140625 C 17.203125 -19.453125 16.648438 -20.40625 15.765625 -21 C 14.890625 -21.59375 13.617188 -21.890625 11.953125 -21.890625 C 10.347656 -21.890625 9.050781 -21.609375 8.0625 -21.046875 C 7.070312 -20.484375 6.578125 -19.53125 6.578125 -18.1875 C 6.578125 -16.976562 6.925781 -16.09375 7.625 -15.53125 C 8.332031 -14.96875 9.296875 -14.6875 10.515625 -14.6875 L 14.40625 -14.6875 L 14.40625 -11.1875 L 10.609375 -11.1875 C 8.941406 -11.1875 7.734375 -10.84375 6.984375 -10.15625 C 6.234375 -9.46875 5.859375 -8.5 5.859375 -7.25 C 5.859375 -5.707031 6.425781 -4.597656 7.5625 -3.921875 C 8.695312 -3.253906 10.191406 -2.921875 12.046875 -2.921875 C 12.847656 -2.921875 13.597656 -2.992188 14.296875 -3.140625 C 15.003906 -3.285156 15.628906 -3.539062 16.171875 -3.90625 C 16.710938 -4.28125 17.175781 -4.785156 17.5625 -5.421875 C 17.945312 -6.066406 18.222656 -6.882812 18.390625 -7.875 L 22.5625 -7.875 C 22.113281 -4.832031 20.910156 -2.660156 18.953125 -1.359375 C 17.003906 -0.0664062 14.429688 0.578125 11.234375 0.578125 C 10.046875 0.578125 8.875 0.441406 7.71875 0.171875 C 6.570312 -0.0976562 5.535156 -0.53125 4.609375 -1.125 C 3.679688 -1.71875 2.925781 -2.492188 2.34375 -3.453125 C 1.769531 -4.410156 1.484375 -5.597656 1.484375 -7.015625 C 1.484375 -8.609375 1.90625 -9.910156 2.75 -10.921875 C 3.601562 -11.929688 4.65625 -12.578125 5.90625 -12.859375 L 5.90625 -12.953125 C 4.78125 -13.304688 3.894531 -13.90625 3.25 -14.75 C 2.613281 -15.601562 2.296875 -16.71875 2.296875 -18.09375 C 2.296875 -19.28125 2.550781 -20.320312 3.0625 -21.21875 C 3.582031 -22.113281 4.289062 -22.875 5.1875 -23.5 C 6.082031 -24.125 7.101562 -24.59375 8.25 -24.90625 C 9.40625 -25.226562 10.640625 -25.390625 11.953125 -25.390625 C 14.640625 -25.390625 16.796875 -24.820312 18.421875 -23.6875 C 20.054688 -22.550781 21.066406 -20.703125 21.453125 -18.140625 Z M 17.421875 -18.140625 "/>
+<path style="stroke:none;" d="M 4.90625 -13.953125 L 4.90625 -18.140625 L 2.625 -18.140625 L 2.625 -13.953125 L 0.25 -13.953125 L 0.25 -11.9375 L 2.625 -11.9375 L 2.625 -3.046875 C 2.625 -2.398438 2.6875 -1.878906 2.8125 -1.484375 C 2.9375 -1.085938 3.128906 -0.78125 3.390625 -0.5625 C 3.648438 -0.351562 3.988281 -0.207031 4.40625 -0.125 C 4.832031 -0.0390625 5.34375 0 5.9375 0 L 7.6875 0 L 7.6875 -2.03125 L 6.640625 -2.03125 C 6.285156 -2.03125 5.992188 -2.039062 5.765625 -2.0625 C 5.535156 -2.09375 5.359375 -2.148438 5.234375 -2.234375 C 5.109375 -2.328125 5.019531 -2.453125 4.96875 -2.609375 C 4.925781 -2.773438 4.90625 -2.992188 4.90625 -3.265625 L 4.90625 -11.9375 L 7.6875 -11.9375 L 7.6875 -13.953125 Z M 4.90625 -13.953125 "/>
 </symbol>
 </g>
 </defs>
 <g id="surface1">
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M -183 -2388 L 4848 -2388 L 4848 2310 L -183 2310 Z M -183 -2388 "/>
-<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 284.355469 1263.169271 C 295.269531 1274.082031 295.269531 1291.776042 284.355469 1302.688802 C 273.442708 1313.601562 255.748698 1313.601562 244.835938 1302.688802 C 233.923177 1291.776042 233.923177 1274.082031 244.835938 1263.169271 C 255.748698 1252.25651 273.442708 1252.25651 284.355469 1263.169271 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="601.2842" y="1479.531203"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 423.515625 1568.660156 C 456.253906 1601.398438 456.253906 1654.480469 423.515625 1687.21875 C 390.777344 1719.957031 337.695312 1719.957031 304.957031 1687.21875 C 272.21875 1654.480469 272.21875 1601.398438 304.957031 1568.660156 C 337.695312 1535.917969 390.777344 1535.917969 423.515625 1568.660156 "/>
-<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.171875 1318.885417 C 213.084635 1329.799479 213.084635 1347.49349 202.171875 1358.40625 C 191.259115 1369.31901 173.565104 1369.31901 162.652344 1358.40625 C 151.739583 1347.49349 151.739583 1329.799479 162.652344 1318.885417 C 173.565104 1307.972656 191.259115 1307.972656 202.171875 1318.885417 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="358.2425" y="1646.682303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 176.964844 1717.699219 C 209.703125 1750.4375 209.703125 1803.519531 176.964844 1836.257812 C 144.226562 1869 91.144531 1869 58.40625 1836.257812 C 25.664062 1803.519531 25.664062 1750.4375 58.40625 1717.699219 C 91.144531 1684.960938 144.226562 1684.960938 176.964844 1717.699219 "/>
-<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.988281 1368.566406 C 130.901042 1379.480469 130.901042 1397.173177 119.988281 1408.085938 C 109.075521 1419 91.38151 1419 80.46875 1408.085938 C 69.554688 1397.173177 69.554688 1379.480469 80.46875 1368.566406 C 91.38151 1357.653646 109.075521 1357.653646 119.988281 1368.566406 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="53.3887" y="1788.475303"/>
-  <use xlink:href="#glyph1-2" x="62.7127" y="1788.475303"/>
-  <use xlink:href="#glyph1-3" x="82.0447" y="1788.475303"/>
-  <use xlink:href="#glyph1-4" x="96.0487" y="1788.475303"/>
-  <use xlink:href="#glyph1-5" x="113.3287" y="1788.475303"/>
-  <use xlink:href="#glyph1-3" x="136.6567" y="1788.475303"/>
-  <use xlink:href="#glyph1-6" x="150.6607" y="1788.475303"/>
-  <use xlink:href="#glyph1-7" x="172.6567" y="1788.475303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 670.066406 1717.699219 C 702.808594 1750.4375 702.808594 1803.519531 670.066406 1836.257812 C 637.328125 1869 584.246094 1869 551.507812 1836.257812 C 518.769531 1803.519531 518.769531 1750.4375 551.507812 1717.699219 C 584.246094 1684.960938 637.328125 1684.960938 670.066406 1717.699219 "/>
-<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 284.355469 1368.566406 C 295.269531 1379.480469 295.269531 1397.173177 284.355469 1408.085938 C 273.442708 1419 255.748698 1419 244.835938 1408.085938 C 233.923177 1397.173177 233.923177 1379.480469 244.835938 1368.566406 C 255.748698 1357.653646 273.442708 1357.653646 284.355469 1368.566406 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="594.5882" y="1795.723303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 423.515625 1907.359375 C 456.253906 1940.097656 456.253906 1993.179688 423.515625 2025.917969 C 390.777344 2058.660156 337.695312 2058.660156 304.957031 2025.917969 C 272.21875 1993.179688 272.21875 1940.097656 304.957031 1907.359375 C 337.695312 1874.621094 390.777344 1874.621094 423.515625 1907.359375 "/>
-<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.171875 1431.786458 C 213.084635 1442.700521 213.084635 1460.393229 202.171875 1471.30599 C 191.259115 1482.220052 173.565104 1482.220052 162.652344 1471.30599 C 151.739583 1460.393229 151.739583 1442.700521 162.652344 1431.786458 C 173.565104 1420.872396 191.259115 1420.872396 202.171875 1431.786458 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="349.7375" y="1985.383303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 891.816406 1238.753906 C 924.554688 1271.492188 924.554688 1324.574219 891.816406 1357.316406 C 859.078125 1390.054688 805.996094 1390.054688 773.257812 1357.316406 C 740.515625 1324.574219 740.515625 1271.492188 773.257812 1238.753906 C 805.996094 1206.015625 859.078125 1206.015625 891.816406 1238.753906 "/>
-<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.272135 1208.917969 C 369.184896 1219.830729 369.184896 1237.52474 358.272135 1248.4375 C 347.359375 1259.351562 329.665365 1259.351562 318.752604 1248.4375 C 307.838542 1237.52474 307.838542 1219.830729 318.752604 1208.917969 C 329.665365 1198.005208 347.359375 1198.005208 358.272135 1208.917969 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="816.3366" y="1316.779003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1102.953125 1074.5625 C 1135.695312 1107.300781 1135.695312 1160.382812 1102.953125 1193.121094 C 1070.214844 1225.859375 1017.132812 1225.859375 984.394531 1193.121094 C 951.65625 1160.382812 951.65625 1107.300781 984.394531 1074.5625 C 1017.132812 1041.824219 1070.214844 1041.824219 1102.953125 1074.5625 "/>
-<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 428.651042 1154.1875 C 439.565104 1165.10026 439.565104 1182.794271 428.651042 1193.707031 C 417.738281 1204.619792 400.044271 1204.619792 389.13151 1193.707031 C 378.21875 1182.794271 378.21875 1165.10026 389.13151 1154.1875 C 400.044271 1143.273438 417.738281 1143.273438 428.651042 1154.1875 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="1027.475" y="1152.586003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1303.097656 905.894531 C 1335.835938 938.632812 1335.835938 991.714844 1303.097656 1024.453125 C 1270.355469 1057.191406 1217.277344 1057.191406 1184.535156 1024.453125 C 1151.796875 991.714844 1151.796875 938.632812 1184.535156 905.894531 C 1217.277344 873.152344 1270.355469 873.152344 1303.097656 905.894531 "/>
-<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 495.365885 1097.963542 C 506.278646 1108.877604 506.278646 1126.571615 495.365885 1137.484375 C 484.451823 1148.397135 466.759115 1148.397135 455.845052 1137.484375 C 444.932292 1126.571615 444.932292 1108.877604 455.845052 1097.963542 C 466.759115 1087.050781 484.451823 1087.050781 495.365885 1097.963542 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="1227.616" y="983.917003"/>
-</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 386.829427 1191.104167 L 360.574219 1211.522135 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 430.261719 1155.9375 L 454.235677 1135.734375 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 315.980469 1245.214844 L 287.127604 1266.391927 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 241.46224 1298.613281 L 205.546875 1322.96224 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 158.492188 1353.105469 L 124.148438 1373.867188 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 206.332031 1353.105469 L 240.675781 1373.867188 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 242.44401 1405.367188 L 204.563802 1434.50651 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 891.816406 1907.359375 C 924.554688 1940.097656 924.554688 1993.179688 891.816406 2025.917969 C 859.078125 2058.660156 805.996094 2058.660156 773.257812 2025.917969 C 740.515625 1993.179688 740.515625 1940.097656 773.257812 1907.359375 C 805.996094 1874.621094 859.078125 1874.621094 891.816406 1907.359375 "/>
-<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.272135 1431.786458 C 369.184896 1442.700521 369.184896 1460.393229 358.272135 1471.30599 C 347.359375 1482.220052 329.665365 1482.220052 318.752604 1471.30599 C 307.838542 1460.393229 307.838542 1442.700521 318.752604 1431.786458 C 329.665365 1420.872396 347.359375 1420.872396 358.272135 1431.786458 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="823.0326" y="1985.383303"/>
-</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 285.833333 1406.490885 L 317.27474 1433.38151 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 670.066406 2086.976562 C 702.808594 2119.714844 702.808594 2172.796875 670.066406 2205.535156 C 637.328125 2238.273438 584.246094 2238.273438 551.507812 2205.535156 C 518.769531 2172.796875 518.769531 2119.714844 551.507812 2086.976562 C 584.246094 2054.238281 637.328125 2054.238281 670.066406 2086.976562 "/>
-<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 284.355469 1491.658854 C 295.269531 1502.571615 295.269531 1520.265625 284.355469 1531.178385 C 273.442708 1542.092448 255.748698 1542.092448 244.835938 1531.178385 C 233.923177 1520.265625 233.923177 1502.571615 244.835938 1491.658854 C 255.748698 1480.744792 273.442708 1480.744792 284.355469 1491.658854 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="594.7772" y="2164.999703"/>
-</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 316.795573 1469.136719 L 286.3125 1493.828125 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1303.097656 1238.753906 C 1335.835938 1271.492188 1335.835938 1324.574219 1303.097656 1357.316406 C 1270.355469 1390.054688 1217.277344 1390.054688 1184.535156 1357.316406 C 1151.796875 1324.574219 1151.796875 1271.492188 1184.535156 1238.753906 C 1217.277344 1206.015625 1270.355469 1206.015625 1303.097656 1238.753906 "/>
-<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 495.365885 1208.917969 C 506.278646 1219.830729 506.278646 1237.52474 495.365885 1248.4375 C 484.451823 1259.351562 466.759115 1259.351562 455.845052 1248.4375 C 444.932292 1237.52474 444.932292 1219.830729 455.845052 1208.917969 C 466.759115 1198.005208 484.451823 1198.005208 495.365885 1208.917969 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="1229.317" y="1316.779003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1503.238281 1074.5625 C 1535.976562 1107.300781 1535.976562 1160.382812 1503.238281 1193.121094 C 1470.496094 1225.859375 1417.417969 1225.859375 1384.679688 1193.121094 C 1351.9375 1160.382812 1351.9375 1107.300781 1384.679688 1074.5625 C 1417.417969 1041.824219 1470.496094 1041.824219 1503.238281 1074.5625 "/>
-<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 562.079427 1154.1875 C 572.992188 1165.10026 572.992188 1182.794271 562.079427 1193.707031 C 551.166667 1204.619792 533.472656 1204.619792 522.559896 1193.707031 C 511.645833 1182.794271 511.645833 1165.10026 522.559896 1154.1875 C 533.472656 1143.273438 551.166667 1143.273438 562.079427 1154.1875 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="1429.459" y="1152.586003"/>
-</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 430.497396 1191.673177 L 453.998698 1210.953125 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 496.97526 1135.734375 L 520.949219 1155.9375 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1703.378906 1238.753906 C 1736.117188 1271.492188 1736.117188 1324.574219 1703.378906 1357.316406 C 1670.640625 1390.054688 1617.558594 1390.054688 1584.820312 1357.316406 C 1552.078125 1324.574219 1552.078125 1271.492188 1584.820312 1238.753906 C 1617.558594 1206.015625 1670.640625 1206.015625 1703.378906 1238.753906 "/>
-<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 628.792969 1208.917969 C 639.705729 1219.830729 639.705729 1237.52474 628.792969 1248.4375 C 617.880208 1259.351562 600.186198 1259.351562 589.273438 1248.4375 C 578.360677 1237.52474 578.360677 1219.830729 589.273438 1208.917969 C 600.186198 1198.005208 617.880208 1198.005208 628.792969 1208.917969 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="1607.109" y="1316.779003"/>
-  <use xlink:href="#glyph0-7" x="1642.101" y="1316.779003"/>
-</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 563.925781 1191.673177 L 587.427083 1210.953125 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<rect x="0" y="0" width="1518" height="1290" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
 <g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-1" x="1940.967" y="1911.282903"/>
+  <use xlink:href="#glyph0-1" x="110.9896" y="877.256503"/>
 </g>
 <g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-1" x="2178.498" y="2104.826403"/>
+  <use xlink:href="#glyph0-1" x="340.5959" y="1064.343103"/>
 </g>
 <g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-1" x="3062.639" y="1436.221703"/>
+  <use xlink:href="#glyph0-1" x="994.691" y="572.006903"/>
 </g>
 <g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-2" x="2424.826" y="2280.774943"/>
+  <use xlink:href="#glyph0-2" x="578.7061" y="1234.421853"/>
 </g>
 <g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-3" x="3264.98" y="1273.469003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2498.414062 1401.507812 C 2531.152344 1434.246094 2531.152344 1487.328125 2498.414062 1520.066406 C 2465.675781 1552.804688 2412.59375 1552.804688 2379.855469 1520.066406 C 2347.113281 1487.328125 2347.113281 1434.246094 2379.855469 1401.507812 C 2412.59375 1368.769531 2465.675781 1368.769531 2498.414062 1401.507812 "/>
-<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 893.804688 1263.169271 C 904.717448 1274.082031 904.717448 1291.776042 893.804688 1302.688802 C 882.891927 1313.601562 865.197917 1313.601562 854.285156 1302.688802 C 843.372396 1291.776042 843.372396 1274.082031 854.285156 1263.169271 C 865.197917 1252.25651 882.891927 1252.25651 893.804688 1263.169271 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="2429.631" y="1479.531203"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2251.863281 1568.660156 C 2284.601562 1601.398438 2284.601562 1654.480469 2251.863281 1687.21875 C 2219.121094 1719.957031 2166.042969 1719.957031 2133.304688 1687.21875 C 2100.5625 1654.480469 2100.5625 1601.398438 2133.304688 1568.660156 C 2166.042969 1535.917969 2219.121094 1535.917969 2251.863281 1568.660156 "/>
-<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.621094 1318.885417 C 822.533854 1329.799479 822.533854 1347.49349 811.621094 1358.40625 C 800.708333 1369.31901 783.014323 1369.31901 772.101562 1358.40625 C 761.1875 1347.49349 761.1875 1329.799479 772.101562 1318.885417 C 783.014323 1307.972656 800.708333 1307.972656 811.621094 1318.885417 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="2186.589" y="1646.682303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2005.3125 1717.699219 C 2038.050781 1750.4375 2038.050781 1803.519531 2005.3125 1836.257812 C 1972.570312 1869 1919.492188 1869 1886.75 1836.257812 C 1854.011719 1803.519531 1854.011719 1750.4375 1886.75 1717.699219 C 1919.492188 1684.960938 1972.570312 1684.960938 2005.3125 1717.699219 "/>
-<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 729.4375 1368.566406 C 740.35026 1379.480469 740.35026 1397.173177 729.4375 1408.085938 C 718.523438 1419 700.830729 1419 689.916667 1408.085938 C 679.003906 1397.173177 679.003906 1379.480469 689.916667 1368.566406 C 700.830729 1357.653646 718.523438 1357.653646 729.4375 1368.566406 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="1881.735" y="1788.475303"/>
-  <use xlink:href="#glyph1-2" x="1891.059" y="1788.475303"/>
-  <use xlink:href="#glyph1-3" x="1910.391" y="1788.475303"/>
-  <use xlink:href="#glyph1-4" x="1924.395" y="1788.475303"/>
-  <use xlink:href="#glyph1-5" x="1941.675" y="1788.475303"/>
-  <use xlink:href="#glyph1-3" x="1965.003" y="1788.475303"/>
-  <use xlink:href="#glyph1-6" x="1979.007" y="1788.475303"/>
-  <use xlink:href="#glyph1-7" x="2001.003" y="1788.475303"/>
+  <use xlink:href="#glyph0-3" x="1190.282" y="414.684103"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2498.414062 1717.699219 C 2531.152344 1750.4375 2531.152344 1803.519531 2498.414062 1836.257812 C 2465.675781 1869 2412.59375 1869 2379.855469 1836.257812 C 2347.113281 1803.519531 2347.113281 1750.4375 2379.855469 1717.699219 C 2412.59375 1684.960938 2465.675781 1684.960938 2498.414062 1717.699219 "/>
-<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 893.804688 1368.566406 C 904.717448 1379.480469 904.717448 1397.173177 893.804688 1408.085938 C 882.891927 1419 865.197917 1419 854.285156 1408.085938 C 843.372396 1397.173177 843.372396 1379.480469 854.285156 1368.566406 C 865.197917 1357.653646 882.891927 1357.653646 893.804688 1368.566406 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<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 834.761719 350.970052 C 845.311198 361.519531 845.311198 378.622396 834.761719 389.171875 C 824.21224 399.720052 807.109375 399.720052 796.559896 389.171875 C 786.011719 378.622396 786.011719 361.519531 796.559896 350.970052 C 807.109375 340.420573 824.21224 340.420573 834.761719 350.970052 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="2422.935" y="1795.723303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2251.863281 1907.359375 C 2284.601562 1940.097656 2284.601562 1993.179688 2251.863281 2025.917969 C 2219.121094 2058.660156 2166.042969 2058.660156 2133.304688 2025.917969 C 2100.5625 1993.179688 2100.5625 1940.097656 2133.304688 1907.359375 C 2166.042969 1874.621094 2219.121094 1874.621094 2251.863281 1907.359375 "/>
-<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.621094 1431.786458 C 822.533854 1442.700521 822.533854 1460.393229 811.621094 1471.30599 C 800.708333 1482.220052 783.014323 1482.220052 772.101562 1471.30599 C 761.1875 1460.393229 761.1875 1442.700521 772.101562 1431.786458 C 783.014323 1420.872396 800.708333 1420.872396 811.621094 1431.786458 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="2178.084" y="1985.383303"/>
+  <use xlink:href="#glyph1-1" x="583.4789" y="459.955703"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2720.164062 1238.753906 C 2752.902344 1271.492188 2752.902344 1324.574219 2720.164062 1357.316406 C 2687.425781 1390.054688 2634.34375 1390.054688 2601.601562 1357.316406 C 2568.863281 1324.574219 2568.863281 1271.492188 2601.601562 1238.753906 C 2634.34375 1206.015625 2687.425781 1206.015625 2720.164062 1238.753906 "/>
-<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 967.721354 1208.917969 C 978.634115 1219.830729 978.634115 1237.52474 967.721354 1248.4375 C 956.807292 1259.351562 939.114583 1259.351562 928.200521 1248.4375 C 917.28776 1237.52474 917.28776 1219.830729 928.200521 1208.917969 C 939.114583 1198.005208 956.807292 1198.005208 967.721354 1208.917969 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<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 755.31901 404.828125 C 765.86849 415.377604 765.86849 432.480469 755.31901 443.029948 C 744.770833 453.578125 727.666667 453.578125 717.11849 443.029948 C 706.56901 432.480469 706.56901 415.377604 717.11849 404.828125 C 727.666667 394.278646 744.770833 394.278646 755.31901 404.828125 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="2644.683" y="1316.779003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2931.300781 1074.5625 C 2964.039062 1107.300781 2964.039062 1160.382812 2931.300781 1193.121094 C 2898.5625 1225.859375 2845.480469 1225.859375 2812.742188 1193.121094 C 2780.003906 1160.382812 2780.003906 1107.300781 2812.742188 1074.5625 C 2845.480469 1041.824219 2898.5625 1041.824219 2931.300781 1074.5625 "/>
-<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 1038.10026 1154.1875 C 1049.014323 1165.10026 1049.014323 1182.794271 1038.10026 1193.707031 C 1027.1875 1204.619792 1009.49349 1204.619792 998.580729 1193.707031 C 987.667969 1182.794271 987.667969 1165.10026 998.580729 1154.1875 C 1009.49349 1143.273438 1027.1875 1143.273438 1038.10026 1154.1875 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="2855.821" y="1152.586003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 3131.441406 905.894531 C 3164.183594 938.632812 3164.183594 991.714844 3131.441406 1024.453125 C 3098.703125 1057.191406 3045.621094 1057.191406 3012.882812 1024.453125 C 2980.144531 991.714844 2980.144531 938.632812 3012.882812 905.894531 C 3045.621094 873.152344 3098.703125 873.152344 3131.441406 905.894531 "/>
-<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 1104.813802 1097.963542 C 1115.726562 1108.877604 1115.726562 1126.571615 1104.813802 1137.484375 C 1093.901042 1148.397135 1076.207031 1148.397135 1065.294271 1137.484375 C 1054.38151 1126.571615 1054.38151 1108.877604 1065.294271 1097.963542 C 1076.207031 1087.050781 1093.901042 1087.050781 1104.813802 1097.963542 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="3055.963" y="983.917003"/>
+  <use xlink:href="#glyph1-2" x="348.6624" y="621.530503"/>
 </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 996.278646 1191.104167 L 970.023438 1211.522135 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 1039.709635 1155.9375 L 1063.684896 1135.734375 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 925.429688 1245.214844 L 896.576823 1266.391927 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 850.910156 1298.613281 L 814.996094 1322.96224 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 767.940104 1353.105469 L 733.597656 1373.867188 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 815.78125 1353.105469 L 850.125 1373.867188 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 851.893229 1405.367188 L 814.013021 1434.50651 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2720.164062 1907.359375 C 2752.902344 1940.097656 2752.902344 1993.179688 2720.164062 2025.917969 C 2687.425781 2058.660156 2634.34375 2058.660156 2601.601562 2025.917969 C 2568.863281 1993.179688 2568.863281 1940.097656 2601.601562 1907.359375 C 2634.34375 1874.621094 2687.425781 1874.621094 2720.164062 1907.359375 "/>
-<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 967.721354 1431.786458 C 978.634115 1442.700521 978.634115 1460.393229 967.721354 1471.30599 C 956.807292 1482.220052 939.114583 1482.220052 928.200521 1471.30599 C 917.28776 1460.393229 917.28776 1442.700521 928.200521 1431.786458 C 939.114583 1420.872396 956.807292 1420.872396 967.721354 1431.786458 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 173.632812 689.554688 C 205.28125 721.199219 205.28125 772.511719 173.632812 804.15625 C 141.984375 835.804688 90.675781 835.804688 59.027344 804.15625 C 27.378906 772.511719 27.378906 721.199219 59.027344 689.554688 C 90.675781 657.90625 141.984375 657.90625 173.632812 689.554688 "/>
+<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 675.877604 452.851562 C 686.425781 463.39974 686.425781 480.503906 675.877604 491.052083 C 665.328125 501.601562 648.22526 501.601562 637.675781 491.052083 C 627.126302 480.503906 627.126302 463.39974 637.675781 452.851562 C 648.22526 442.302083 665.328125 442.302083 675.877604 452.851562 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="2651.379" y="1985.383303"/>
-</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 895.282552 1406.490885 L 926.723958 1433.38151 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2498.414062 2086.976562 C 2531.152344 2119.714844 2531.152344 2172.796875 2498.414062 2205.535156 C 2465.675781 2238.273438 2412.59375 2238.273438 2379.855469 2205.535156 C 2347.113281 2172.796875 2347.113281 2119.714844 2379.855469 2086.976562 C 2412.59375 2054.238281 2465.675781 2054.238281 2498.414062 2086.976562 "/>
-<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 893.804688 1491.658854 C 904.717448 1502.571615 904.717448 1520.265625 893.804688 1531.178385 C 882.891927 1542.092448 865.197917 1542.092448 854.285156 1531.178385 C 843.372396 1520.265625 843.372396 1502.571615 854.285156 1491.658854 C 865.197917 1480.744792 882.891927 1480.744792 893.804688 1491.658854 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="2423.124" y="2164.999703"/>
-</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 926.244792 1469.136719 L 895.761719 1493.828125 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 3131.441406 1238.753906 C 3164.183594 1271.492188 3164.183594 1324.574219 3131.441406 1357.316406 C 3098.703125 1390.054688 3045.621094 1390.054688 3012.882812 1357.316406 C 2980.144531 1324.574219 2980.144531 1271.492188 3012.882812 1238.753906 C 3045.621094 1206.015625 3098.703125 1206.015625 3131.441406 1238.753906 "/>
-<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 1104.813802 1208.917969 C 1115.726562 1219.830729 1115.726562 1237.52474 1104.813802 1248.4375 C 1093.901042 1259.351562 1076.207031 1259.351562 1065.294271 1248.4375 C 1054.38151 1237.52474 1054.38151 1219.830729 1065.294271 1208.917969 C 1076.207031 1198.005208 1093.901042 1198.005208 1104.813802 1208.917969 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="3057.664" y="1316.779003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 3331.585938 1074.5625 C 3364.324219 1107.300781 3364.324219 1160.382812 3331.585938 1193.121094 C 3298.84375 1225.859375 3245.765625 1225.859375 3213.023438 1193.121094 C 3180.285156 1160.382812 3180.285156 1107.300781 3213.023438 1074.5625 C 3245.765625 1041.824219 3298.84375 1041.824219 3331.585938 1074.5625 "/>
-<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 1171.528646 1154.1875 C 1182.441406 1165.10026 1182.441406 1182.794271 1171.528646 1193.707031 C 1160.614583 1204.619792 1142.920573 1204.619792 1132.007812 1193.707031 C 1121.095052 1182.794271 1121.095052 1165.10026 1132.007812 1154.1875 C 1142.920573 1143.273438 1160.614583 1143.273438 1171.528646 1154.1875 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="3257.805" y="1152.586003"/>
+  <use xlink:href="#glyph2-1" x="52.0339" y="758.351303"/>
+  <use xlink:href="#glyph2-2" x="61.3579" y="758.351303"/>
+  <use xlink:href="#glyph2-3" x="80.6899" y="758.351303"/>
+  <use xlink:href="#glyph2-4" x="94.6939" y="758.351303"/>
+  <use xlink:href="#glyph2-5" x="111.9739" y="758.351303"/>
+  <use xlink:href="#glyph2-3" x="135.3019" y="758.351303"/>
+  <use xlink:href="#glyph2-6" x="149.3059" y="758.351303"/>
+  <use xlink:href="#glyph2-7" x="171.3019" y="758.351303"/>
 </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 1039.946615 1191.673177 L 1063.447917 1210.953125 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 1106.424479 1135.734375 L 1130.398438 1155.9375 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 3531.726562 1238.753906 C 3564.464844 1271.492188 3564.464844 1324.574219 3531.726562 1357.316406 C 3498.984375 1390.054688 3445.90625 1390.054688 3413.164062 1357.316406 C 3380.425781 1324.574219 3380.425781 1271.492188 3413.164062 1238.753906 C 3445.90625 1206.015625 3498.984375 1206.015625 3531.726562 1238.753906 "/>
-<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 1238.242188 1208.917969 C 1249.154948 1219.830729 1249.154948 1237.52474 1238.242188 1248.4375 C 1227.329427 1259.351562 1209.635417 1259.351562 1198.721354 1248.4375 C 1187.808594 1237.52474 1187.808594 1219.830729 1198.721354 1208.917969 C 1209.635417 1198.005208 1227.329427 1198.005208 1238.242188 1208.917969 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<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 834.761719 452.851562 C 845.311198 463.39974 845.311198 480.503906 834.761719 491.052083 C 824.21224 501.601562 807.109375 501.601562 796.559896 491.052083 C 786.011719 480.503906 786.011719 463.39974 796.559896 452.851562 C 807.109375 442.302083 824.21224 442.302083 834.761719 452.851562 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="3435.456" y="1316.779003"/>
-  <use xlink:href="#glyph0-7" x="3470.448" y="1316.779003"/>
+  <use xlink:href="#glyph1-3" x="576.7829" y="765.599303"/>
 </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 1173.373698 1191.673177 L 1196.876302 1210.953125 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-4" x="3467.321" y="1436.221703"/>
-</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 1233.428385 1212.882812 C 1241.903646 1221.358073 1241.903646 1235.098958 1233.428385 1243.574219 C 1224.954427 1252.049479 1211.213542 1252.049479 1202.738281 1243.574219 C 1194.263021 1235.098958 1194.263021 1221.358073 1202.738281 1212.882812 C 1211.213542 1204.408854 1224.954427 1204.408854 1233.428385 1212.882812 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 669.738281 1229.464844 L 740.449219 1228.898438 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 748.447917 1228.834635 L 740.424479 1225.898438 L 740.472656 1231.898438 Z M 748.447917 1228.834635 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<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 755.31901 513.96224 C 765.86849 524.510417 765.86849 541.614583 755.31901 552.16276 C 744.770833 562.71224 727.666667 562.71224 717.11849 552.16276 C 706.56901 541.614583 706.56901 524.510417 717.11849 513.96224 C 727.666667 503.41276 744.770833 503.41276 755.31901 513.96224 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-1" x="1710.13" y="1433.06684"/>
-  <use xlink:href="#glyph3-2" x="1758.13" y="1433.06684"/>
-  <use xlink:href="#glyph3-3" x="1806.13" y="1433.06684"/>
+  <use xlink:href="#glyph1-4" x="340.1574" y="948.932103"/>
 </g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-4" x="1850.77" y="1433.06684"/>
-  <use xlink:href="#glyph3-3" x="1898.77" y="1433.06684"/>
-</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 907.393229 296.945312 C 917.942708 307.49349 917.942708 324.597656 907.393229 335.145833 C 896.84375 345.695312 879.740885 345.695312 869.191406 335.145833 C 858.643229 324.597656 858.643229 307.49349 869.191406 296.945312 C 879.740885 286.395833 896.84375 286.395833 907.393229 296.945312 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-5" x="1945.33" y="1433.06684"/>
-  <use xlink:href="#glyph3-6" x="1993.33" y="1433.06684"/>
-  <use xlink:href="#glyph3-7" x="2041.33" y="1433.06684"/>
-  <use xlink:href="#glyph3-8" x="2089.33" y="1433.06684"/>
+  <use xlink:href="#glyph1-3" x="794.6779" y="297.881003"/>
 </g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-9" x="2135.41" y="1433.06684"/>
-</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 971.88151 242.597656 C 982.43099 253.147135 982.43099 270.25 971.88151 280.799479 C 961.332031 291.347656 944.229167 291.347656 933.679688 280.799479 C 923.13151 270.25 923.13151 253.147135 933.679688 242.597656 C 944.229167 232.048177 961.332031 232.048177 971.88151 242.597656 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-10" x="1710.13" y="1505.0669"/>
-  <use xlink:href="#glyph3-11" x="1758.13" y="1505.0669"/>
-  <use xlink:href="#glyph3-12" x="1806.13" y="1505.0669"/>
-  <use xlink:href="#glyph3-13" x="1854.13" y="1505.0669"/>
-  <use xlink:href="#glyph3-14" x="1902.13" y="1505.0669"/>
-  <use xlink:href="#glyph3-15" x="1950.13" y="1505.0669"/>
-  <use xlink:href="#glyph3-9" x="1998.13" y="1505.0669"/>
-  <use xlink:href="#glyph3-16" x="2046.13" y="1505.0669"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2464.539062 444.601562 C 2488.269531 468.335938 2488.269531 506.808594 2464.539062 530.542969 C 2440.804688 554.273438 2402.328125 554.273438 2378.597656 530.542969 C 2354.867188 506.808594 2354.867188 468.335938 2378.597656 444.601562 C 2402.328125 420.871094 2440.804688 420.871094 2464.539062 444.601562 "/>
-<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 882.513021 944.200521 C 890.423177 952.110677 890.423177 964.936198 882.513021 972.847656 C 874.601562 980.757812 861.776042 980.757812 853.865885 972.847656 C 845.955729 964.936198 845.955729 952.110677 853.865885 944.200521 C 861.776042 936.290365 874.601562 936.290365 882.513021 944.200521 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-1" x="2408.224" y="504.900003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2979.027344 444.601562 C 3002.757812 468.335938 3002.757812 506.808594 2979.027344 530.542969 C 2955.296875 554.273438 2916.816406 554.273438 2893.085938 530.542969 C 2869.355469 506.808594 2869.355469 468.335938 2893.085938 444.601562 C 2916.816406 420.871094 2955.296875 420.871094 2979.027344 444.601562 "/>
-<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 1054.009115 944.200521 C 1061.919271 952.110677 1061.919271 964.936198 1054.009115 972.847656 C 1046.097656 980.757812 1033.273438 980.757812 1025.361979 972.847656 C 1017.451823 964.936198 1017.451823 952.110677 1025.361979 944.200521 C 1033.273438 936.290365 1046.097656 936.290365 1054.009115 944.200521 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-4" x="2922.712" y="504.900003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2732.410156 244.757812 C 2756.144531 268.492188 2756.144531 306.96875 2732.410156 330.699219 C 2708.679688 354.429688 2670.203125 354.429688 2646.472656 330.699219 C 2622.738281 306.96875 2622.738281 268.492188 2646.472656 244.757812 C 2670.203125 221.027344 2708.679688 221.027344 2732.410156 244.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 971.803385 877.585938 C 979.714844 885.497396 979.714844 898.322917 971.803385 906.233073 C 963.893229 914.143229 951.067708 914.143229 943.157552 906.233073 C 935.247396 898.322917 935.247396 885.497396 943.157552 877.585938 C 951.067708 869.675781 963.893229 869.675781 971.803385 877.585938 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-2" x="2676.098" y="305.057003"/>
+  <use xlink:href="#glyph1-3" x="988.142" y="134.839003"/>
 </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 879.817708 941.933594 C 885.860677 932.058594 891.421875 920.170573 888.445312 913.402344 C 882.707031 900.352865 853.671875 899.68099 847.933594 912.464844 C 845.740885 917.347656 848.179688 925.222656 852.03125 933.089844 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 855.876302 940.109375 L 854.664062 931.652344 L 849.402344 934.533854 Z M 855.876302 940.109375 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<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 908.949219 298.636719 L 932.123698 279.106771 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<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 793.298177 385.231771 L 758.582031 408.768229 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<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 713.096354 437.90625 L 679.898438 457.973958 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<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 759.341146 437.90625 L 792.539062 457.973958 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<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 794.248698 488.423177 L 757.63151 516.591146 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<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 906.21224 513.96224 C 916.760417 524.510417 916.760417 541.614583 906.21224 552.16276 C 895.66276 562.71224 878.559896 562.71224 868.010417 552.16276 C 857.460938 541.614583 857.460938 524.510417 868.010417 513.96224 C 878.559896 503.41276 895.66276 503.41276 906.21224 513.96224 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-5" x="2334.568" y="289.289003"/>
-  <use xlink:href="#glyph2-6" x="2347" y="289.289003"/>
-  <use xlink:href="#glyph2-7" x="2372.776" y="289.289003"/>
-  <use xlink:href="#glyph2-8" x="2391.448" y="289.289003"/>
-  <use xlink:href="#glyph2-9" x="2414.488" y="289.289003"/>
-  <use xlink:href="#glyph2-7" x="2445.592" y="289.289003"/>
-  <use xlink:href="#glyph2-10" x="2464.264" y="289.289003"/>
-  <use xlink:href="#glyph2-11" x="2493.592" y="289.289003"/>
+  <use xlink:href="#glyph1-1" x="797.8296" y="948.932103"/>
 </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 884.427083 946.410156 L 933.307292 909.94401 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 2636.160156 327.480469 L 2611.539062 334.617188 L 2622.304688 349.046875 Z M 2636.160156 327.480469 "/>
-<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 939.720052 905.160156 L 931.514323 907.539062 L 935.101562 912.347656 Z M 939.720052 905.160156 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<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 836.190104 489.510417 L 866.582031 515.503906 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<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 834.761719 571.83724 C 845.311198 582.385417 845.311198 599.489583 834.761719 610.03776 C 824.21224 620.58724 807.109375 620.58724 796.559896 610.03776 C 786.011719 599.489583 786.011719 582.385417 796.559896 571.83724 C 807.109375 561.28776 824.21224 561.28776 834.761719 571.83724 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-6" x="2538.568" y="361.572003"/>
+  <use xlink:href="#glyph1-5" x="576.9719" y="1122.556203"/>
 </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 971.040365 876.861979 C 977.205729 868.898438 982.563802 859.65625 979.736979 854.152344 C 973.998698 842.976562 943.529948 841.768229 937.223958 852.464844 C 935.105469 856.058594 936.697917 861.690104 939.744792 867.583333 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 2648.691406 235.261719 L 2643.925781 210.078125 L 2628.539062 219.421875 Z M 2648.691406 235.261719 "/>
-<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 943.897135 874.420573 L 942.308594 866.026042 L 937.18099 869.140625 Z M 943.897135 874.420573 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<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 866.11849 550.066406 L 836.653646 573.933594 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<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 971.88151 349.85026 C 982.43099 360.398438 982.43099 377.502604 971.88151 388.050781 C 961.332031 398.60026 944.229167 398.60026 933.679688 388.050781 C 923.13151 377.502604 923.13151 360.398438 933.679688 349.85026 C 944.229167 339.300781 961.332031 339.300781 971.88151 349.85026 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-12" x="2674.442" y="127.714003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2732.410156 652.59375 C 2756.144531 676.324219 2756.144531 714.800781 2732.410156 738.53125 C 2708.679688 762.265625 2670.203125 762.265625 2646.472656 738.53125 C 2622.738281 714.800781 2622.738281 676.324219 2646.472656 652.59375 C 2670.203125 628.859375 2708.679688 628.859375 2732.410156 652.59375 "/>
-<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 971.803385 1013.53125 C 979.714844 1021.441406 979.714844 1034.266927 971.803385 1042.177083 C 963.893229 1050.088542 951.067708 1050.088542 943.157552 1042.177083 C 935.247396 1034.266927 935.247396 1021.441406 943.157552 1013.53125 C 951.067708 1005.619792 963.893229 1005.619792 971.803385 1013.53125 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-3" x="2676.098" y="712.890003"/>
+  <use xlink:href="#glyph1-4" x="989.843" y="456.595903"/>
 </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 884.190104 970.947917 L 933.660156 1009.358073 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 2636.9375 654.792969 L 2623.5 632.964844 L 2612.460938 647.183594 Z M 2636.9375 654.792969 "/>
-<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 939.979167 1014.265625 L 935.5 1006.989583 L 931.820312 1011.727865 Z M 939.979167 1014.265625 " transform="matrix(3,0,0,3,-183,-2388)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1255.109375 221.835938 C 1286.757812 253.480469 1286.757812 304.792969 1255.109375 336.4375 C 1223.460938 368.085938 1172.152344 368.085938 1140.503906 336.4375 C 1108.859375 304.792969 1108.859375 253.480469 1140.503906 221.835938 C 1172.152344 190.1875 1223.460938 190.1875 1255.109375 221.835938 "/>
+<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 1036.369792 296.945312 C 1046.919271 307.49349 1046.919271 324.597656 1036.369792 335.145833 C 1025.821615 345.695312 1008.717448 345.695312 998.167969 335.145833 C 987.619792 324.597656 987.619792 307.49349 998.167969 296.945312 C 1008.717448 286.395833 1025.821615 286.395833 1036.369792 296.945312 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-6" x="2554.382" y="565.667003"/>
+  <use xlink:href="#glyph1-4" x="1183.308" y="297.881003"/>
 </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 972.966146 1014.794271 L 1016.63151 977.966146 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 1022.747396 972.808594 L 1014.697917 975.673177 L 1018.566406 980.260417 Z M 1022.747396 972.808594 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-6" x="2775.484" y="565.667003"/>
-</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 971.35026 877.145833 C 989.53125 856.730469 1016.552083 821.91276 993.5 817.795573 C 960.643229 811.925781 877.001302 831.324219 841.5 871.192708 C 821.016927 894.196615 833.05599 919.729167 846.90625 937.213542 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 852.123698 943.28125 L 849.183594 935.259115 L 844.634115 939.170573 Z M 852.123698 943.28125 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph4-1" x="2484.568" y="89.446003"/>
-</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 909.178385 333.179688 L 931.895833 351.816406 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<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 973.4375 279.106771 L 996.611979 298.636719 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<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 1100.858073 349.85026 C 1111.407552 360.398438 1111.407552 377.502604 1100.858073 388.050781 C 1090.308594 398.60026 1073.205729 398.60026 1062.65625 388.050781 C 1052.106771 377.502604 1052.106771 360.398438 1062.65625 349.85026 C 1073.205729 339.300781 1090.308594 339.300781 1100.858073 349.85026 " transform="matrix(3,0,0,3,-1854,-669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-13" x="1048.06282" y="464.328003"/>
-  <use xlink:href="#glyph2-14" x="1060.49482" y="464.328003"/>
-  <use xlink:href="#glyph2-5" x="1073.83882" y="464.328003"/>
-  <use xlink:href="#glyph2-6" x="1086.27082" y="464.328003"/>
-  <use xlink:href="#glyph2-7" x="1112.04682" y="464.328003"/>
-  <use xlink:href="#glyph2-8" x="1130.71882" y="464.328003"/>
-  <use xlink:href="#glyph2-9" x="1153.75882" y="464.328003"/>
-  <use xlink:href="#glyph2-7" x="1184.86282" y="464.328003"/>
-  <use xlink:href="#glyph2-10" x="1203.53482" y="464.328003"/>
-  <use xlink:href="#glyph2-11" x="1232.86282" y="464.328003"/>
-  <use xlink:href="#glyph2-14" x="1245.29482" y="464.328003"/>
-  <use xlink:href="#glyph2-15" x="1258.63882" y="464.328003"/>
-  <use xlink:href="#glyph2-14" x="1269.29482" y="464.328003"/>
-  <use xlink:href="#glyph2-6" x="1282.63882" y="464.328003"/>
-  <use xlink:href="#glyph2-12" x="1308.41482" y="464.328003"/>
-  <use xlink:href="#glyph2-14" x="1336.87882" y="464.328003"/>
-  <use xlink:href="#glyph2-16" x="1350.22282" y="464.328003"/>
-  <use xlink:href="#glyph2-14" x="1367.11882" y="464.328003"/>
-  <use xlink:href="#glyph2-17" x="1380.46282" y="464.328003"/>
-  <use xlink:href="#glyph2-14" x="1392.89482" y="464.328003"/>
-  <use xlink:href="#glyph2-16" x="1406.23882" y="464.328003"/>
-  <use xlink:href="#glyph2-14" x="1423.13482" y="464.328003"/>
-  <use xlink:href="#glyph2-6" x="1436.47882" y="464.328003"/>
-  <use xlink:href="#glyph2-6" x="1462.25482" y="464.328003"/>
+  <use xlink:href="#glyph3-1" x="1348.5175" y="447.973903"/>
+  <use xlink:href="#glyph3-2" x="1366.0135" y="447.973903"/>
+  <use xlink:href="#glyph3-2" x="1380.5125" y="447.973903"/>
+  <use xlink:href="#glyph3-3" x="1395.0115" y="447.973903"/>
+  <use xlink:href="#glyph3-4" x="1409.5105" y="447.973903"/>
+  <use xlink:href="#glyph3-5" x="1425.5215" y="447.973903"/>
 </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 650.610677 930 L 759.575521 930 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<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 767.575521 930 L 759.575521 927 L 759.575521 933 Z M 767.575521 930 " transform="matrix(3,0,0,3,-183,-2388)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-1" x="1732.63" y="519.046976"/>
-  <use xlink:href="#glyph3-2" x="1780.63" y="519.046976"/>
-  <use xlink:href="#glyph3-3" x="1828.63" y="519.046976"/>
+<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 1038.153646 333.179688 L 1060.872396 351.816406 " transform="matrix(3,0,0,3,-1854,-669)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="1385.873" y="572.006903"/>
 </g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-4" x="1873.27" y="519.046976"/>
-  <use xlink:href="#glyph3-3" x="1921.27" y="519.046976"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-5" x="1967.83" y="519.046976"/>
-  <use xlink:href="#glyph3-6" x="2015.83" y="519.046976"/>
-  <use xlink:href="#glyph3-17" x="2063.83" y="519.046976"/>
-  <use xlink:href="#glyph3-18" x="2111.83" y="519.046976"/>
-</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 866.615885 332.169271 L 837.338542 353.946615 " transform="matrix(3,0,0,3,-1854,-669)"/>
 </g>
 </svg>
--- a/slide/s6/images/regex/cctree.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,87 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1545pt" height="747pt" viewBox="0 0 1545 747" version="1.1">
-<defs>
-<g>
-<symbol overflow="visible" id="glyph0-0">
-<path style="stroke:none;" d="M 15.953125 -25.96875 L 3.984375 -25.96875 L 3.984375 -1.828125 L 15.953125 -1.828125 Z M 17.9375 -27.765625 L 17.9375 -0.03125 L 1.984375 -0.03125 L 1.984375 -27.765625 Z M 17.9375 -27.765625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-1">
-<path style="stroke:none;" d="M 10.09375 -25.859375 L 10.09375 -28.515625 L 2.8125 -28.515625 L 2.8125 7.6875 L 10.09375 7.6875 L 10.09375 5.03125 L 5.921875 5.03125 L 5.921875 -25.859375 Z M 10.09375 -25.859375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-2">
-<path style="stroke:none;" d="M 20.359375 -0.078125 C 19.785156 0.253906 18.992188 0.421875 17.984375 0.421875 C 17.117188 0.421875 16.429688 0.179688 15.921875 -0.296875 C 15.421875 -0.773438 15.171875 -1.5625 15.171875 -2.65625 C 14.265625 -1.5625 13.203125 -0.773438 11.984375 -0.296875 C 10.773438 0.179688 9.472656 0.421875 8.078125 0.421875 C 7.160156 0.421875 6.289062 0.316406 5.46875 0.109375 C 4.65625 -0.0859375 3.945312 -0.40625 3.34375 -0.84375 C 2.75 -1.289062 2.273438 -1.875 1.921875 -2.59375 C 1.578125 -3.3125 1.40625 -4.175781 1.40625 -5.1875 C 1.40625 -6.332031 1.597656 -7.269531 1.984375 -8 C 2.378906 -8.726562 2.894531 -9.316406 3.53125 -9.765625 C 4.164062 -10.222656 4.890625 -10.566406 5.703125 -10.796875 C 6.523438 -11.035156 7.367188 -11.234375 8.234375 -11.390625 C 9.140625 -11.566406 10 -11.703125 10.8125 -11.796875 C 11.632812 -11.890625 12.359375 -12.019531 12.984375 -12.1875 C 13.609375 -12.351562 14.101562 -12.597656 14.46875 -12.921875 C 14.832031 -13.253906 15.015625 -13.734375 15.015625 -14.359375 C 15.015625 -15.078125 14.878906 -15.65625 14.609375 -16.09375 C 14.335938 -16.539062 13.984375 -16.878906 13.546875 -17.109375 C 13.117188 -17.347656 12.640625 -17.503906 12.109375 -17.578125 C 11.578125 -17.660156 11.050781 -17.703125 10.53125 -17.703125 C 9.125 -17.703125 7.953125 -17.4375 7.015625 -16.90625 C 6.078125 -16.375 5.570312 -15.367188 5.5 -13.890625 L 2.1875 -13.890625 C 2.238281 -15.128906 2.5 -16.175781 2.96875 -17.03125 C 3.4375 -17.894531 4.054688 -18.59375 4.828125 -19.125 C 5.609375 -19.65625 6.5 -20.035156 7.5 -20.265625 C 8.507812 -20.503906 9.582031 -20.625 10.71875 -20.625 C 11.632812 -20.625 12.539062 -20.554688 13.4375 -20.421875 C 14.332031 -20.296875 15.144531 -20.03125 15.875 -19.625 C 16.601562 -19.226562 17.1875 -18.664062 17.625 -17.9375 C 18.070312 -17.207031 18.296875 -16.257812 18.296875 -15.09375 L 18.296875 -4.71875 C 18.296875 -3.9375 18.335938 -3.363281 18.421875 -3 C 18.515625 -2.632812 18.820312 -2.453125 19.34375 -2.453125 C 19.625 -2.453125 19.960938 -2.519531 20.359375 -2.65625 Z M 14.96875 -10.40625 C 14.5625 -10.09375 14.019531 -9.863281 13.34375 -9.71875 C 12.664062 -9.582031 11.953125 -9.46875 11.203125 -9.375 C 10.460938 -9.289062 9.71875 -9.1875 8.96875 -9.0625 C 8.21875 -8.945312 7.539062 -8.757812 6.9375 -8.5 C 6.34375 -8.238281 5.851562 -7.867188 5.46875 -7.390625 C 5.09375 -6.910156 4.90625 -6.253906 4.90625 -5.421875 C 4.90625 -4.878906 5.015625 -4.414062 5.234375 -4.03125 C 5.460938 -3.65625 5.75 -3.347656 6.09375 -3.109375 C 6.445312 -2.878906 6.859375 -2.710938 7.328125 -2.609375 C 7.796875 -2.503906 8.289062 -2.453125 8.8125 -2.453125 C 9.90625 -2.453125 10.84375 -2.601562 11.625 -2.90625 C 12.40625 -3.207031 13.039062 -3.582031 13.53125 -4.03125 C 14.03125 -4.488281 14.394531 -4.984375 14.625 -5.515625 C 14.851562 -6.046875 14.96875 -6.546875 14.96875 -7.015625 Z M 14.96875 -10.40625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-3">
-<path style="stroke:none;" d="M 1.953125 -12.40625 L 1.953125 -9.28125 L 13.21875 -9.28125 L 13.21875 -12.40625 Z M 1.953125 -12.40625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-4">
-<path style="stroke:none;" d="M 0.859375 -2.53125 L 0.859375 0 L 17.859375 0 L 17.859375 -2.921875 L 4.984375 -2.921875 L 17.3125 -17.90625 L 17.3125 -20.15625 L 1.640625 -20.15625 L 1.640625 -17.234375 L 13.03125 -17.234375 Z M 0.859375 -2.53125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-5">
-<path style="stroke:none;" d="M 0 5.03125 L 0 7.6875 L 7.296875 7.6875 L 7.296875 -28.515625 L 0 -28.515625 L 0 -25.859375 L 4.171875 -25.859375 L 4.171875 5.03125 Z M 0 5.03125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-6">
-<path style="stroke:none;" d="M 2.609375 -27.84375 L 2.609375 0 L 5.921875 0 L 5.921875 -2.6875 L 6 -2.6875 C 6.363281 -2.09375 6.8125 -1.59375 7.34375 -1.1875 C 7.882812 -0.78125 8.453125 -0.460938 9.046875 -0.234375 C 9.640625 -0.00390625 10.242188 0.160156 10.859375 0.265625 C 11.472656 0.367188 12.023438 0.421875 12.515625 0.421875 C 14.046875 0.421875 15.390625 0.148438 16.546875 -0.390625 C 17.710938 -0.929688 18.675781 -1.675781 19.4375 -2.625 C 20.207031 -3.582031 20.78125 -4.695312 21.15625 -5.96875 C 21.53125 -7.238281 21.71875 -8.585938 21.71875 -10.015625 C 21.71875 -11.453125 21.519531 -12.804688 21.125 -14.078125 C 20.738281 -15.347656 20.160156 -16.472656 19.390625 -17.453125 C 18.628906 -18.429688 17.671875 -19.203125 16.515625 -19.765625 C 15.359375 -20.335938 14 -20.625 12.4375 -20.625 C 11.03125 -20.625 9.742188 -20.367188 8.578125 -19.859375 C 7.410156 -19.359375 6.550781 -18.550781 6 -17.4375 L 5.921875 -17.4375 L 5.921875 -27.84375 Z M 18.21875 -10.25 C 18.21875 -9.269531 18.113281 -8.3125 17.90625 -7.375 C 17.695312 -6.4375 17.359375 -5.601562 16.890625 -4.875 C 16.421875 -4.144531 15.800781 -3.554688 15.03125 -3.109375 C 14.269531 -2.671875 13.316406 -2.453125 12.171875 -2.453125 C 11.023438 -2.453125 10.046875 -2.664062 9.234375 -3.09375 C 8.429688 -3.53125 7.773438 -4.097656 7.265625 -4.796875 C 6.765625 -5.492188 6.394531 -6.304688 6.15625 -7.234375 C 5.925781 -8.160156 5.8125 -9.113281 5.8125 -10.09375 C 5.8125 -11.03125 5.921875 -11.953125 6.140625 -12.859375 C 6.359375 -13.773438 6.710938 -14.585938 7.203125 -15.296875 C 7.703125 -16.015625 8.34375 -16.59375 9.125 -17.03125 C 9.90625 -17.476562 10.851562 -17.703125 11.96875 -17.703125 C 13.039062 -17.703125 13.972656 -17.492188 14.765625 -17.078125 C 15.554688 -16.660156 16.203125 -16.101562 16.703125 -15.40625 C 17.210938 -14.707031 17.59375 -13.90625 17.84375 -13 C 18.09375 -12.101562 18.21875 -11.1875 18.21875 -10.25 Z M 18.21875 -10.25 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-7">
-<path style="stroke:none;" d="M 16.1875 -13.6875 L 19.609375 -13.6875 C 19.484375 -14.882812 19.171875 -15.914062 18.671875 -16.78125 C 18.179688 -17.65625 17.550781 -18.378906 16.78125 -18.953125 C 16.019531 -19.523438 15.140625 -19.945312 14.140625 -20.21875 C 13.140625 -20.488281 12.066406 -20.625 10.921875 -20.625 C 9.335938 -20.625 7.945312 -20.34375 6.75 -19.78125 C 5.550781 -19.226562 4.554688 -18.460938 3.765625 -17.484375 C 2.972656 -16.515625 2.378906 -15.375 1.984375 -14.0625 C 1.597656 -12.75 1.40625 -11.335938 1.40625 -9.828125 C 1.40625 -8.316406 1.601562 -6.929688 2 -5.671875 C 2.40625 -4.410156 3.003906 -3.320312 3.796875 -2.40625 C 4.585938 -1.5 5.578125 -0.800781 6.765625 -0.3125 C 7.953125 0.175781 9.3125 0.421875 10.84375 0.421875 C 13.414062 0.421875 15.445312 -0.25 16.9375 -1.59375 C 18.4375 -2.945312 19.367188 -4.875 19.734375 -7.375 L 16.34375 -7.375 C 16.132812 -5.8125 15.566406 -4.597656 14.640625 -3.734375 C 13.722656 -2.878906 12.441406 -2.453125 10.796875 -2.453125 C 9.765625 -2.453125 8.867188 -2.660156 8.109375 -3.078125 C 7.359375 -3.492188 6.75 -4.046875 6.28125 -4.734375 C 5.8125 -5.421875 5.460938 -6.207031 5.234375 -7.09375 C 5.015625 -7.976562 4.90625 -8.890625 4.90625 -9.828125 C 4.90625 -10.835938 5.007812 -11.816406 5.21875 -12.765625 C 5.425781 -13.722656 5.769531 -14.5625 6.25 -15.28125 C 6.738281 -16.007812 7.382812 -16.59375 8.1875 -17.03125 C 9 -17.476562 10 -17.703125 11.1875 -17.703125 C 12.59375 -17.703125 13.710938 -17.347656 14.546875 -16.640625 C 15.378906 -15.941406 15.925781 -14.957031 16.1875 -13.6875 Z M 16.1875 -13.6875 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1545" height="747" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
-<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 134.627604 558.940104 C 156.766927 581.079427 156.766927 616.97526 134.627604 639.115885 C 112.486979 661.255208 76.591146 661.255208 54.451823 639.115885 C 32.311198 616.97526 32.311198 581.079427 54.451823 558.940104 C 76.591146 536.799479 112.486979 536.799479 134.627604 558.940104 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="115.4466" y="270.233503"/>
-  <use xlink:href="#glyph0-2" x="125.5476" y="270.233503"/>
-  <use xlink:href="#glyph0-3" x="146.4906" y="270.233503"/>
-  <use xlink:href="#glyph0-4" x="161.6616" y="270.233503"/>
-  <use xlink:href="#glyph0-5" x="180.3816" y="270.233503"/>
-</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 109.572917 583.994792 C 117.875 592.296875 117.875 605.757812 109.572917 614.059896 C 101.269531 622.363281 87.808594 622.363281 79.50651 614.059896 C 71.204427 605.757812 71.204427 592.296875 79.50651 583.994792 C 87.808594 575.692708 101.269531 575.692708 109.572917 583.994792 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="177.1001" y="385.036703"/>
-  <use xlink:href="#glyph0-2" x="187.2011" y="385.036703"/>
-  <use xlink:href="#glyph0-3" x="208.1441" y="385.036703"/>
-  <use xlink:href="#glyph0-4" x="223.3151" y="385.036703"/>
-  <use xlink:href="#glyph0-5" x="242.0351" y="385.036703"/>
-</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 183.830729 599.027344 L 269.046875 599.027344 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<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 277.046875 599.027344 L 269.046875 596.027344 L 269.046875 602.027344 Z M 277.046875 599.027344 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1411.839844 133.054688 C 1544.679688 265.894531 1544.679688 481.269531 1411.839844 614.109375 C 1279 746.949219 1063.621094 746.949219 930.785156 614.109375 C 797.941406 481.269531 797.941406 265.894531 930.785156 133.054688 C 1063.621094 0.214844 1279 0.214844 1411.839844 133.054688 "/>
-<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 493.613281 519.351562 C 537.893229 563.63151 537.893229 635.423177 493.613281 679.703125 C 449.333333 723.983073 377.541667 723.983073 333.261719 679.703125 C 288.980469 635.423177 288.980469 563.63151 333.261719 519.351562 C 377.541667 475.071615 449.333333 475.071615 493.613281 519.351562 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="991.352" y="176.064303"/>
-  <use xlink:href="#glyph0-2" x="1001.453" y="176.064303"/>
-  <use xlink:href="#glyph0-3" x="1022.396" y="176.064303"/>
-  <use xlink:href="#glyph0-4" x="1037.567" y="176.064303"/>
-  <use xlink:href="#glyph0-5" x="1056.287" y="176.064303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1037.828125 449.664062 C 1062.734375 474.574219 1062.734375 514.957031 1037.828125 539.863281 C 1012.921875 564.769531 972.535156 564.769531 947.628906 539.863281 C 922.722656 514.957031 922.722656 474.574219 947.628906 449.664062 C 972.535156 424.757812 1012.921875 424.757812 1037.828125 449.664062 "/>
-<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 368.942708 624.888021 C 377.244792 633.191406 377.244792 646.652344 368.942708 654.954427 C 360.639323 663.25651 347.178385 663.25651 338.876302 654.954427 C 330.574219 646.652344 330.574219 633.191406 338.876302 624.888021 C 347.178385 616.585938 360.639323 616.585938 368.942708 624.888021 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="982.2568" y="507.717803"/>
-</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 431.304688 544.10026 C 439.606771 552.403646 439.606771 565.864583 431.304688 574.166667 C 423.002604 582.46875 409.541667 582.46875 401.238281 574.166667 C 392.936198 565.864583 392.936198 552.403646 401.238281 544.10026 C 409.541667 535.798177 423.002604 535.798177 431.304688 544.10026 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="1168.2515" y="265.355603"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1394.992188 449.664062 C 1419.898438 474.574219 1419.898438 514.957031 1394.992188 539.863281 C 1370.085938 564.769531 1329.703125 564.769531 1304.796875 539.863281 C 1279.886719 514.957031 1279.886719 474.574219 1304.796875 449.664062 C 1329.703125 424.757812 1370.085938 424.757812 1394.992188 449.664062 "/>
-<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 487.997396 624.888021 C 496.299479 633.191406 496.299479 646.652344 487.997396 654.954427 C 479.695312 663.25651 466.234375 663.25651 457.93099 654.954427 C 449.628906 646.652344 449.628906 633.191406 457.93099 624.888021 C 466.234375 616.585938 479.695312 616.585938 487.997396 624.888021 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1312.376" y="507.717803"/>
-  <use xlink:href="#glyph0-7" x="1322.477" y="507.717803"/>
-  <use xlink:href="#glyph0-3" x="1343.42" y="507.717803"/>
-  <use xlink:href="#glyph0-4" x="1358.591" y="507.717803"/>
-  <use xlink:href="#glyph0-5" x="1377.311" y="507.717803"/>
-</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 403.279948 575.964844 L 366.902344 623.089844 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<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 428.485677 576.539062 L 460.75 622.515625 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<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 185.111979 492.36849 C 193.414062 500.670573 193.414062 514.13151 185.111979 522.434896 C 176.808594 530.736979 163.347656 530.736979 155.045573 522.434896 C 146.74349 514.13151 146.74349 500.670573 155.045573 492.36849 C 163.347656 484.066406 176.808594 484.066406 185.111979 492.36849 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="429.6727" y="110.158703"/>
-</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 156.553385 523.80599 L 114.361979 574.984375 " transform="matrix(3,0,0,3,-69,-1425)"/>
-<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 109.273438 581.15625 L 116.677083 576.891927 L 112.046875 573.075521 Z M 109.273438 581.15625 " transform="matrix(3,0,0,3,-69,-1425)"/>
-</g>
-</svg>
--- a/slide/s6/images/regex/cctreemerge.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,258 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1275pt" height="1866pt" viewBox="0 0 1275 1866" version="1.1">
-<defs>
-<g>
-<symbol overflow="visible" id="glyph0-0">
-<path style="stroke:none;" d="M 15.953125 -25.96875 L 3.984375 -25.96875 L 3.984375 -1.828125 L 15.953125 -1.828125 Z M 17.9375 -27.765625 L 17.9375 -0.03125 L 1.984375 -0.03125 L 1.984375 -27.765625 Z M 17.9375 -27.765625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-1">
-<path style="stroke:none;" d="M 10.09375 -25.859375 L 10.09375 -28.515625 L 2.8125 -28.515625 L 2.8125 7.6875 L 10.09375 7.6875 L 10.09375 5.03125 L 5.921875 5.03125 L 5.921875 -25.859375 Z M 10.09375 -25.859375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-2">
-<path style="stroke:none;" d="M 20.359375 -0.078125 C 19.785156 0.253906 18.992188 0.421875 17.984375 0.421875 C 17.117188 0.421875 16.429688 0.179688 15.921875 -0.296875 C 15.421875 -0.773438 15.171875 -1.5625 15.171875 -2.65625 C 14.265625 -1.5625 13.203125 -0.773438 11.984375 -0.296875 C 10.773438 0.179688 9.472656 0.421875 8.078125 0.421875 C 7.160156 0.421875 6.289062 0.316406 5.46875 0.109375 C 4.65625 -0.0859375 3.945312 -0.40625 3.34375 -0.84375 C 2.75 -1.289062 2.273438 -1.875 1.921875 -2.59375 C 1.578125 -3.3125 1.40625 -4.175781 1.40625 -5.1875 C 1.40625 -6.332031 1.597656 -7.269531 1.984375 -8 C 2.378906 -8.726562 2.894531 -9.316406 3.53125 -9.765625 C 4.164062 -10.222656 4.890625 -10.566406 5.703125 -10.796875 C 6.523438 -11.035156 7.367188 -11.234375 8.234375 -11.390625 C 9.140625 -11.566406 10 -11.703125 10.8125 -11.796875 C 11.632812 -11.890625 12.359375 -12.019531 12.984375 -12.1875 C 13.609375 -12.351562 14.101562 -12.597656 14.46875 -12.921875 C 14.832031 -13.253906 15.015625 -13.734375 15.015625 -14.359375 C 15.015625 -15.078125 14.878906 -15.65625 14.609375 -16.09375 C 14.335938 -16.539062 13.984375 -16.878906 13.546875 -17.109375 C 13.117188 -17.347656 12.640625 -17.503906 12.109375 -17.578125 C 11.578125 -17.660156 11.050781 -17.703125 10.53125 -17.703125 C 9.125 -17.703125 7.953125 -17.4375 7.015625 -16.90625 C 6.078125 -16.375 5.570312 -15.367188 5.5 -13.890625 L 2.1875 -13.890625 C 2.238281 -15.128906 2.5 -16.175781 2.96875 -17.03125 C 3.4375 -17.894531 4.054688 -18.59375 4.828125 -19.125 C 5.609375 -19.65625 6.5 -20.035156 7.5 -20.265625 C 8.507812 -20.503906 9.582031 -20.625 10.71875 -20.625 C 11.632812 -20.625 12.539062 -20.554688 13.4375 -20.421875 C 14.332031 -20.296875 15.144531 -20.03125 15.875 -19.625 C 16.601562 -19.226562 17.1875 -18.664062 17.625 -17.9375 C 18.070312 -17.207031 18.296875 -16.257812 18.296875 -15.09375 L 18.296875 -4.71875 C 18.296875 -3.9375 18.335938 -3.363281 18.421875 -3 C 18.515625 -2.632812 18.820312 -2.453125 19.34375 -2.453125 C 19.625 -2.453125 19.960938 -2.519531 20.359375 -2.65625 Z M 14.96875 -10.40625 C 14.5625 -10.09375 14.019531 -9.863281 13.34375 -9.71875 C 12.664062 -9.582031 11.953125 -9.46875 11.203125 -9.375 C 10.460938 -9.289062 9.71875 -9.1875 8.96875 -9.0625 C 8.21875 -8.945312 7.539062 -8.757812 6.9375 -8.5 C 6.34375 -8.238281 5.851562 -7.867188 5.46875 -7.390625 C 5.09375 -6.910156 4.90625 -6.253906 4.90625 -5.421875 C 4.90625 -4.878906 5.015625 -4.414062 5.234375 -4.03125 C 5.460938 -3.65625 5.75 -3.347656 6.09375 -3.109375 C 6.445312 -2.878906 6.859375 -2.710938 7.328125 -2.609375 C 7.796875 -2.503906 8.289062 -2.453125 8.8125 -2.453125 C 9.90625 -2.453125 10.84375 -2.601562 11.625 -2.90625 C 12.40625 -3.207031 13.039062 -3.582031 13.53125 -4.03125 C 14.03125 -4.488281 14.394531 -4.984375 14.625 -5.515625 C 14.851562 -6.046875 14.96875 -6.546875 14.96875 -7.015625 Z M 14.96875 -10.40625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-3">
-<path style="stroke:none;" d="M 1.953125 -12.40625 L 1.953125 -9.28125 L 13.21875 -9.28125 L 13.21875 -12.40625 Z M 1.953125 -12.40625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-4">
-<path style="stroke:none;" d="M 16.1875 -13.6875 L 19.609375 -13.6875 C 19.484375 -14.882812 19.171875 -15.914062 18.671875 -16.78125 C 18.179688 -17.65625 17.550781 -18.378906 16.78125 -18.953125 C 16.019531 -19.523438 15.140625 -19.945312 14.140625 -20.21875 C 13.140625 -20.488281 12.066406 -20.625 10.921875 -20.625 C 9.335938 -20.625 7.945312 -20.34375 6.75 -19.78125 C 5.550781 -19.226562 4.554688 -18.460938 3.765625 -17.484375 C 2.972656 -16.515625 2.378906 -15.375 1.984375 -14.0625 C 1.597656 -12.75 1.40625 -11.335938 1.40625 -9.828125 C 1.40625 -8.316406 1.601562 -6.929688 2 -5.671875 C 2.40625 -4.410156 3.003906 -3.320312 3.796875 -2.40625 C 4.585938 -1.5 5.578125 -0.800781 6.765625 -0.3125 C 7.953125 0.175781 9.3125 0.421875 10.84375 0.421875 C 13.414062 0.421875 15.445312 -0.25 16.9375 -1.59375 C 18.4375 -2.945312 19.367188 -4.875 19.734375 -7.375 L 16.34375 -7.375 C 16.132812 -5.8125 15.566406 -4.597656 14.640625 -3.734375 C 13.722656 -2.878906 12.441406 -2.453125 10.796875 -2.453125 C 9.765625 -2.453125 8.867188 -2.660156 8.109375 -3.078125 C 7.359375 -3.492188 6.75 -4.046875 6.28125 -4.734375 C 5.8125 -5.421875 5.460938 -6.207031 5.234375 -7.09375 C 5.015625 -7.976562 4.90625 -8.890625 4.90625 -9.828125 C 4.90625 -10.835938 5.007812 -11.816406 5.21875 -12.765625 C 5.425781 -13.722656 5.769531 -14.5625 6.25 -15.28125 C 6.738281 -16.007812 7.382812 -16.59375 8.1875 -17.03125 C 9 -17.476562 10 -17.703125 11.1875 -17.703125 C 12.59375 -17.703125 13.710938 -17.347656 14.546875 -16.640625 C 15.378906 -15.941406 15.925781 -14.957031 16.1875 -13.6875 Z M 16.1875 -13.6875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-5">
-<path style="stroke:none;" d="M 16.5 -12.015625 L 4.90625 -12.015625 C 4.957031 -12.796875 5.125 -13.53125 5.40625 -14.21875 C 5.695312 -14.90625 6.085938 -15.507812 6.578125 -16.03125 C 7.078125 -16.550781 7.671875 -16.957031 8.359375 -17.25 C 9.054688 -17.550781 9.832031 -17.703125 10.6875 -17.703125 C 11.519531 -17.703125 12.28125 -17.550781 12.96875 -17.25 C 13.65625 -16.957031 14.25 -16.554688 14.75 -16.046875 C 15.257812 -15.535156 15.664062 -14.929688 15.96875 -14.234375 C 16.269531 -13.535156 16.445312 -12.796875 16.5 -12.015625 Z M 19.6875 -6.390625 L 16.421875 -6.390625 C 16.128906 -5.066406 15.535156 -4.078125 14.640625 -3.421875 C 13.742188 -2.773438 12.59375 -2.453125 11.1875 -2.453125 C 10.101562 -2.453125 9.15625 -2.632812 8.34375 -3 C 7.539062 -3.363281 6.878906 -3.847656 6.359375 -4.453125 C 5.835938 -5.066406 5.457031 -5.769531 5.21875 -6.5625 C 4.988281 -7.363281 4.882812 -8.207031 4.90625 -9.09375 L 20 -9.09375 C 20.050781 -10.3125 19.941406 -11.59375 19.671875 -12.9375 C 19.398438 -14.289062 18.90625 -15.539062 18.1875 -16.6875 C 17.476562 -17.832031 16.53125 -18.773438 15.34375 -19.515625 C 14.164062 -20.253906 12.675781 -20.625 10.875 -20.625 C 9.5 -20.625 8.234375 -20.363281 7.078125 -19.84375 C 5.921875 -19.332031 4.921875 -18.609375 4.078125 -17.671875 C 3.234375 -16.734375 2.578125 -15.625 2.109375 -14.34375 C 1.640625 -13.070312 1.40625 -11.671875 1.40625 -10.140625 C 1.457031 -8.609375 1.679688 -7.191406 2.078125 -5.890625 C 2.484375 -4.585938 3.085938 -3.46875 3.890625 -2.53125 C 4.703125 -1.59375 5.695312 -0.863281 6.875 -0.34375 C 8.0625 0.164062 9.460938 0.421875 11.078125 0.421875 C 13.367188 0.421875 15.265625 -0.144531 16.765625 -1.28125 C 18.273438 -2.425781 19.25 -4.128906 19.6875 -6.390625 Z M 19.6875 -6.390625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-6">
-<path style="stroke:none;" d="M 6 -23.796875 L 6 -27.84375 L 2.6875 -27.84375 L 2.6875 -23.796875 Z M 2.6875 -20.15625 L 2.6875 0 L 6 0 L 6 -20.15625 Z M 2.6875 -20.15625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-7">
-<path style="stroke:none;" d="M 0 5.03125 L 0 7.6875 L 7.296875 7.6875 L 7.296875 -28.515625 L 0 -28.515625 L 0 -25.859375 L 4.171875 -25.859375 L 4.171875 5.03125 Z M 0 5.03125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-8">
-<path style="stroke:none;" d="M 2.609375 -27.84375 L 2.609375 0 L 5.921875 0 L 5.921875 -2.6875 L 6 -2.6875 C 6.363281 -2.09375 6.8125 -1.59375 7.34375 -1.1875 C 7.882812 -0.78125 8.453125 -0.460938 9.046875 -0.234375 C 9.640625 -0.00390625 10.242188 0.160156 10.859375 0.265625 C 11.472656 0.367188 12.023438 0.421875 12.515625 0.421875 C 14.046875 0.421875 15.390625 0.148438 16.546875 -0.390625 C 17.710938 -0.929688 18.675781 -1.675781 19.4375 -2.625 C 20.207031 -3.582031 20.78125 -4.695312 21.15625 -5.96875 C 21.53125 -7.238281 21.71875 -8.585938 21.71875 -10.015625 C 21.71875 -11.453125 21.519531 -12.804688 21.125 -14.078125 C 20.738281 -15.347656 20.160156 -16.472656 19.390625 -17.453125 C 18.628906 -18.429688 17.671875 -19.203125 16.515625 -19.765625 C 15.359375 -20.335938 14 -20.625 12.4375 -20.625 C 11.03125 -20.625 9.742188 -20.367188 8.578125 -19.859375 C 7.410156 -19.359375 6.550781 -18.550781 6 -17.4375 L 5.921875 -17.4375 L 5.921875 -27.84375 Z M 18.21875 -10.25 C 18.21875 -9.269531 18.113281 -8.3125 17.90625 -7.375 C 17.695312 -6.4375 17.359375 -5.601562 16.890625 -4.875 C 16.421875 -4.144531 15.800781 -3.554688 15.03125 -3.109375 C 14.269531 -2.671875 13.316406 -2.453125 12.171875 -2.453125 C 11.023438 -2.453125 10.046875 -2.664062 9.234375 -3.09375 C 8.429688 -3.53125 7.773438 -4.097656 7.265625 -4.796875 C 6.765625 -5.492188 6.394531 -6.304688 6.15625 -7.234375 C 5.925781 -8.160156 5.8125 -9.113281 5.8125 -10.09375 C 5.8125 -11.03125 5.921875 -11.953125 6.140625 -12.859375 C 6.359375 -13.773438 6.710938 -14.585938 7.203125 -15.296875 C 7.703125 -16.015625 8.34375 -16.59375 9.125 -17.03125 C 9.90625 -17.476562 10.851562 -17.703125 11.96875 -17.703125 C 13.039062 -17.703125 13.972656 -17.492188 14.765625 -17.078125 C 15.554688 -16.660156 16.203125 -16.101562 16.703125 -15.40625 C 17.210938 -14.707031 17.59375 -13.90625 17.84375 -13 C 18.09375 -12.101562 18.21875 -11.1875 18.21875 -10.25 Z M 18.21875 -10.25 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-9">
-<path style="stroke:none;" d="M 3.859375 -17.234375 L 3.859375 0 L 7.171875 0 L 7.171875 -17.234375 L 11.078125 -17.234375 L 11.078125 -20.15625 L 7.171875 -20.15625 L 7.171875 -22.96875 C 7.171875 -23.851562 7.390625 -24.453125 7.828125 -24.765625 C 8.273438 -25.078125 8.90625 -25.234375 9.71875 -25.234375 C 10 -25.234375 10.304688 -25.210938 10.640625 -25.171875 C 10.984375 -25.128906 11.296875 -25.054688 11.578125 -24.953125 L 11.578125 -27.84375 C 11.265625 -27.945312 10.90625 -28.023438 10.5 -28.078125 C 10.101562 -28.128906 9.75 -28.15625 9.4375 -28.15625 C 7.613281 -28.15625 6.226562 -27.734375 5.28125 -26.890625 C 4.332031 -26.046875 3.859375 -24.804688 3.859375 -23.171875 L 3.859375 -20.15625 L 0.46875 -20.15625 L 0.46875 -17.234375 Z M 3.859375 -17.234375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-10">
-<path style="stroke:none;" d="M 2.5 -27.84375 L 2.5 0 L 5.8125 0 L 5.8125 -11.390625 C 5.8125 -12.296875 5.929688 -13.128906 6.171875 -13.890625 C 6.421875 -14.660156 6.789062 -15.332031 7.28125 -15.90625 C 7.78125 -16.476562 8.398438 -16.921875 9.140625 -17.234375 C 9.878906 -17.546875 10.757812 -17.703125 11.78125 -17.703125 C 13.050781 -17.703125 14.050781 -17.335938 14.78125 -16.609375 C 15.507812 -15.878906 15.875 -14.894531 15.875 -13.65625 L 15.875 0 L 19.1875 0 L 19.1875 -13.265625 C 19.1875 -14.347656 19.078125 -15.335938 18.859375 -16.234375 C 18.640625 -17.140625 18.253906 -17.914062 17.703125 -18.5625 C 17.160156 -19.207031 16.445312 -19.710938 15.5625 -20.078125 C 14.675781 -20.441406 13.570312 -20.625 12.25 -20.625 C 11.644531 -20.625 11.023438 -20.554688 10.390625 -20.421875 C 9.753906 -20.296875 9.144531 -20.097656 8.5625 -19.828125 C 7.976562 -19.554688 7.453125 -19.207031 6.984375 -18.78125 C 6.515625 -18.351562 6.148438 -17.828125 5.890625 -17.203125 L 5.8125 -17.203125 L 5.8125 -27.84375 Z M 2.5 -27.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-11">
-<path style="stroke:none;" d="M 6 -23.796875 L 6 -27.84375 L 2.6875 -27.84375 L 2.6875 -23.796875 Z M 6 2.53125 L 6 -20.15625 L 2.6875 -20.15625 L 2.6875 1.984375 C 2.6875 3.023438 2.554688 3.75 2.296875 4.15625 C 2.035156 4.5625 1.539062 4.765625 0.8125 4.765625 L 0.109375 4.765625 C 0.015625 4.765625 -0.078125 4.753906 -0.171875 4.734375 C -0.265625 4.722656 -0.375 4.707031 -0.5 4.6875 L -0.5 7.53125 C 0.0078125 7.632812 0.566406 7.6875 1.171875 7.6875 C 2.648438 7.6875 3.820312 7.273438 4.6875 6.453125 C 5.5625 5.628906 6 4.320312 6 2.53125 Z M 6 2.53125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-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="glyph1-1">
-<path style="stroke:none;" d="M 16.03125 -13.78125 L 16.03125 -24.28125 L 12.765625 -24.28125 L 12.765625 -13.78125 L 2.296875 -13.78125 L 2.296875 -10.515625 L 12.765625 -10.515625 L 12.765625 0 L 16.03125 0 L 16.03125 -10.515625 L 26.5 -10.515625 L 26.5 -13.78125 Z M 16.03125 -13.78125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-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="glyph1-3">
-<path style="stroke:none;" d="M 19.921875 -16.84375 L 24.140625 -16.84375 C 23.984375 -18.320312 23.597656 -19.59375 22.984375 -20.65625 C 22.378906 -21.726562 21.601562 -22.617188 20.65625 -23.328125 C 19.71875 -24.035156 18.628906 -24.554688 17.390625 -24.890625 C 16.160156 -25.222656 14.84375 -25.390625 13.4375 -25.390625 C 11.488281 -25.390625 9.773438 -25.046875 8.296875 -24.359375 C 6.828125 -23.671875 5.601562 -22.726562 4.625 -21.53125 C 3.65625 -20.332031 2.929688 -18.921875 2.453125 -17.296875 C 1.972656 -15.679688 1.734375 -13.945312 1.734375 -12.09375 C 1.734375 -10.238281 1.976562 -8.535156 2.46875 -6.984375 C 2.96875 -5.429688 3.703125 -4.09375 4.671875 -2.96875 C 5.648438 -1.851562 6.867188 -0.988281 8.328125 -0.375 C 9.785156 0.226562 11.457031 0.53125 13.34375 0.53125 C 16.507812 0.53125 19.007812 -0.300781 20.84375 -1.96875 C 22.6875 -3.632812 23.832031 -6.003906 24.28125 -9.078125 L 20.109375 -9.078125 C 19.859375 -7.148438 19.160156 -5.660156 18.015625 -4.609375 C 16.878906 -3.554688 15.304688 -3.03125 13.296875 -3.03125 C 12.015625 -3.03125 10.910156 -3.285156 9.984375 -3.796875 C 9.054688 -4.304688 8.300781 -4.984375 7.71875 -5.828125 C 7.144531 -6.679688 6.722656 -7.648438 6.453125 -8.734375 C 6.179688 -9.828125 6.046875 -10.945312 6.046875 -12.09375 C 6.046875 -13.34375 6.171875 -14.550781 6.421875 -15.71875 C 6.679688 -16.882812 7.109375 -17.914062 7.703125 -18.8125 C 8.296875 -19.707031 9.085938 -20.425781 10.078125 -20.96875 C 11.066406 -21.519531 12.300781 -21.796875 13.78125 -21.796875 C 15.507812 -21.796875 16.882812 -21.363281 17.90625 -20.5 C 18.925781 -19.632812 19.597656 -18.414062 19.921875 -16.84375 Z M 19.921875 -16.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<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="glyph1-5">
-<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 3.3125 -24.8125 L 3.3125 0 L 7.390625 0 L 7.390625 -24.8125 Z M 3.3125 -24.8125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<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="glyph1-7">
-<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="glyph1-8">
-<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="glyph1-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>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1275" height="1866" 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="158.8438" y="474.242003"/>
-  <use xlink:href="#glyph0-2" x="168.9448" y="474.242003"/>
-  <use xlink:href="#glyph0-3" x="189.8878" y="474.242003"/>
-  <use xlink:href="#glyph0-4" x="205.0588" y="474.242003"/>
-  <use xlink:href="#glyph0-5" x="226.0018" y="474.242003"/>
-  <use xlink:href="#glyph0-3" x="246.9448" y="474.242003"/>
-  <use xlink:href="#glyph0-6" x="262.1158" y="474.242003"/>
-  <use xlink:href="#glyph0-7" x="270.7738" y="474.242003"/>
-</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 728.166667 240.5625 C 735.171875 247.567708 735.171875 258.925781 728.166667 265.93099 C 721.161458 272.936198 709.803385 272.936198 702.798177 265.93099 C 695.792969 258.925781 695.792969 247.567708 702.798177 240.5625 C 709.803385 233.557292 721.161458 233.557292 728.166667 240.5625 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="184.8174" y="574.695003"/>
-  <use xlink:href="#glyph0-2" x="194.9184" y="574.695003"/>
-  <use xlink:href="#glyph0-3" x="215.8614" y="574.695003"/>
-  <use xlink:href="#glyph0-4" x="231.0324" y="574.695003"/>
-  <use xlink:href="#glyph0-7" x="251.9754" y="574.695003"/>
-</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 805.897135 282.85026 C 812.902344 289.855469 812.902344 301.213542 805.897135 308.21875 C 798.891927 315.223958 787.535156 315.223958 780.529948 308.21875 C 773.52474 301.213542 773.52474 289.855469 780.529948 282.85026 C 787.535156 275.845052 798.891927 275.845052 805.897135 282.85026 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="424.1538" y="701.557003"/>
-  <use xlink:href="#glyph0-5" x="434.2548" y="701.557003"/>
-  <use xlink:href="#glyph0-3" x="455.1978" y="701.557003"/>
-  <use xlink:href="#glyph0-6" x="470.3688" y="701.557003"/>
-  <use xlink:href="#glyph0-7" x="479.0268" y="701.557003"/>
-</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 731.24349 261.821615 L 777.451823 286.959635 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="655.7742" y="474.242003"/>
-  <use xlink:href="#glyph0-8" x="665.8752" y="474.242003"/>
-  <use xlink:href="#glyph0-3" x="689.0022" y="474.242003"/>
-  <use xlink:href="#glyph0-9" x="704.1732" y="474.242003"/>
-  <use xlink:href="#glyph0-10" x="715.7172" y="474.242003"/>
-  <use xlink:href="#glyph0-3" x="737.4012" y="474.242003"/>
-  <use xlink:href="#glyph0-11" x="752.5722" y="474.242003"/>
-  <use xlink:href="#glyph0-7" x="761.2302" y="474.242003"/>
-</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 892.730469 240.5625 C 899.735677 247.567708 899.735677 258.925781 892.730469 265.93099 C 885.72526 272.936198 874.36849 272.936198 867.363281 265.93099 C 860.358073 258.925781 860.358073 247.567708 867.363281 240.5625 C 874.36849 233.557292 885.72526 233.557292 892.730469 240.5625 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="682.1183" y="574.695003"/>
-  <use xlink:href="#glyph0-8" x="692.2193" y="574.695003"/>
-  <use xlink:href="#glyph0-3" x="715.3463" y="574.695003"/>
-  <use xlink:href="#glyph0-9" x="730.5173" y="574.695003"/>
-  <use xlink:href="#glyph0-7" x="742.0613" y="574.695003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 982.339844 650.550781 C 1003.355469 671.566406 1003.355469 705.640625 982.339844 726.65625 C 961.324219 747.671875 927.25 747.671875 906.234375 726.65625 C 885.21875 705.640625 885.21875 671.566406 906.234375 650.550781 C 927.25 629.535156 961.324219 629.535156 982.339844 650.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 968.446615 282.85026 C 975.451823 289.855469 975.451823 301.213542 968.446615 308.21875 C 961.441406 315.223958 950.084635 315.223958 943.078125 308.21875 C 936.072917 301.213542 936.072917 289.855469 943.078125 282.85026 C 950.084635 275.845052 961.441406 275.845052 968.446615 282.85026 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="911.4309" y="701.557003"/>
-  <use xlink:href="#glyph0-10" x="921.5319" y="701.557003"/>
-  <use xlink:href="#glyph0-3" x="943.2159" y="701.557003"/>
-  <use xlink:href="#glyph0-11" x="958.3869" y="701.557003"/>
-  <use xlink:href="#glyph0-7" x="967.0449" y="701.557003"/>
-</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 895.71224 261.996094 L 940.097656 286.785156 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="583.65357" y="675.236003"/>
-</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 657.627604 141.190104 L 944.901042 141.190104 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 677.411458 120.442708 L 677.411458 160.372396 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 773.855469 128.434896 L 773.855469 152.380208 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 828.260417 128.434896 L 828.260417 152.380208 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 919.760417 127.016927 L 919.760417 150.96224 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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.311198 151.671875 L 763.957031 152.299479 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 771.955729 152.364583 L 763.980469 149.299479 L 763.932292 155.299479 Z M 771.955729 152.364583 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 679.311198 151.606771 L 687.286458 154.671875 L 687.335938 148.671875 Z M 679.311198 151.606771 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 838.161458 152.380208 L 909.859375 152.380208 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 917.859375 152.380208 L 909.859375 149.380208 L 909.859375 155.380208 Z M 917.859375 152.380208 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 830.161458 152.380208 L 838.161458 155.380208 L 838.161458 149.380208 Z M 830.161458 152.380208 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="93.2548" y="342.444003"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="388.9158" y="342.444003"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="545.8034" y="342.444003"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="827.8601" y="342.444003"/>
-</g>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="241.1692" y="89.682003"/>
-</g>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-7" x="642.4781" y="89.682003"/>
-</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 857.027344 117.244792 L 857.027344 141.190104 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 739.015625 110.68099 L 847.127604 110.68099 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;" d="M 642.382812 134.046875 L 618.382812 125.046875 L 618.382812 143.046875 Z M 642.382812 134.046875 "/>
-<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 855.127604 110.68099 L 847.127604 107.68099 L 847.127604 113.68099 Z M 855.127604 110.68099 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;" d="M 270.046875 134.046875 L 294.046875 143.046875 L 294.046875 125.046875 Z M 270.046875 134.046875 "/>
-<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 731.015625 110.68099 L 739.015625 113.68099 L 739.015625 107.68099 Z M 731.015625 110.68099 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 725.634115 117.244792 L 725.634115 141.190104 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 906.611979 110.68099 L 952.300781 110.68099 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;" d="M 957.902344 134.046875 L 933.902344 125.046875 L 933.902344 143.046875 Z M 957.902344 134.046875 "/>
-<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 960.300781 110.68099 L 952.300781 107.68099 L 952.300781 113.68099 Z M 960.300781 110.68099 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;" d="M 772.835938 134.046875 L 796.835938 143.046875 L 796.835938 125.046875 Z M 772.835938 134.046875 "/>
-<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 898.611979 110.68099 L 906.611979 113.68099 L 906.611979 107.68099 Z M 898.611979 110.68099 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 896.71224 117.244792 L 896.71224 141.190104 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-8" x="755.2932" y="89.682003"/>
-</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 961.200521 117.244792 L 961.200521 141.190104 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-9" x="956.7737" y="89.682003"/>
-</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 704.47526 388.114583 C 712.272135 395.911458 712.272135 408.552083 704.47526 416.348958 C 696.678385 424.145833 684.03776 424.145833 676.240885 416.348958 C 668.44401 408.552083 668.44401 395.911458 676.240885 388.114583 C 684.03776 380.317708 696.678385 380.317708 704.47526 388.114583 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="108.3533" y="1021.649403"/>
-  <use xlink:href="#glyph0-2" x="118.4543" y="1021.649403"/>
-  <use xlink:href="#glyph0-3" x="139.3973" y="1021.649403"/>
-  <use xlink:href="#glyph0-8" x="154.5683" y="1021.649403"/>
-  <use xlink:href="#glyph0-7" x="177.6953" y="1021.649403"/>
-</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 704.47526 466.265625 C 712.272135 474.061198 712.272135 486.703125 704.47526 494.498698 C 696.678385 502.295573 684.03776 502.295573 676.240885 494.498698 C 668.44401 486.703125 668.44401 474.061198 676.240885 466.265625 C 684.03776 458.46875 696.678385 458.46875 704.47526 466.265625 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="108.3533" y="1256.100803"/>
-  <use xlink:href="#glyph0-8" x="118.4543" y="1256.100803"/>
-  <use xlink:href="#glyph0-3" x="141.5813" y="1256.100803"/>
-  <use xlink:href="#glyph0-4" x="156.7523" y="1256.100803"/>
-  <use xlink:href="#glyph0-7" x="177.6953" y="1256.100803"/>
-</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 770.05599 508.364583 C 777.852865 516.160156 777.852865 528.802083 770.05599 536.597656 C 762.259115 544.394531 749.61849 544.394531 741.821615 536.597656 C 734.02474 528.802083 734.02474 516.160156 741.821615 508.364583 C 749.61849 500.567708 762.259115 500.567708 770.05599 508.364583 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="306.1878" y="1382.397503"/>
-  <use xlink:href="#glyph0-4" x="316.2888" y="1382.397503"/>
-  <use xlink:href="#glyph0-3" x="337.2318" y="1382.397503"/>
-  <use xlink:href="#glyph0-5" x="352.4028" y="1382.397503"/>
-  <use xlink:href="#glyph0-7" x="373.3458" y="1382.397503"/>
-</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 827.571615 548.292969 C 835.36849 556.089844 835.36849 568.730469 827.571615 576.527344 C 819.77474 584.324219 807.134115 584.324219 799.33724 576.527344 C 791.540365 568.730469 791.540365 556.089844 799.33724 548.292969 C 807.134115 540.496094 819.77474 540.496094 827.571615 548.292969 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="483.4343" y="1502.184903"/>
-  <use xlink:href="#glyph0-5" x="493.5353" y="1502.184903"/>
-  <use xlink:href="#glyph0-3" x="514.4783" y="1502.184903"/>
-  <use xlink:href="#glyph0-9" x="529.6493" y="1502.184903"/>
-  <use xlink:href="#glyph0-7" x="541.1933" y="1502.184903"/>
-</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 888.605469 592.294271 C 896.402344 600.091146 896.402344 612.731771 888.605469 620.528646 C 880.808594 628.324219 868.167969 628.324219 860.371094 620.528646 C 852.574219 612.731771 852.574219 600.091146 860.371094 592.294271 C 868.167969 584.497396 880.808594 584.497396 888.605469 592.294271 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="666.1641" y="1634.187103"/>
-  <use xlink:href="#glyph0-9" x="676.2651" y="1634.187103"/>
-  <use xlink:href="#glyph0-3" x="687.8091" y="1634.187103"/>
-  <use xlink:href="#glyph0-10" x="702.9801" y="1634.187103"/>
-  <use xlink:href="#glyph0-7" x="724.6641" y="1634.187103"/>
-</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 942.585938 642.391927 C 950.382812 650.1875 950.382812 662.829427 942.585938 670.625 C 934.789062 678.421875 922.148438 678.421875 914.351562 670.625 C 906.554688 662.829427 906.554688 650.1875 914.351562 642.391927 C 922.148438 634.595052 934.789062 634.595052 942.585938 642.391927 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="829.548" y="1784.479123"/>
-  <use xlink:href="#glyph0-10" x="839.649" y="1784.479123"/>
-  <use xlink:href="#glyph0-3" x="861.333" y="1784.479123"/>
-  <use xlink:href="#glyph0-6" x="876.504" y="1784.479123"/>
-  <use xlink:href="#glyph0-7" x="885.162" y="1784.479123"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1223.652344 1729.175781 C 1247.042969 1752.5625 1247.042969 1790.488281 1223.652344 1813.875 C 1200.265625 1837.265625 1162.34375 1837.265625 1138.953125 1813.875 C 1115.5625 1790.488281 1115.5625 1752.5625 1138.953125 1729.175781 C 1162.34375 1705.785156 1200.265625 1705.785156 1223.652344 1729.175781 "/>
-<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 1048.885417 642.391927 C 1056.68099 650.1875 1056.68099 662.829427 1048.885417 670.625 C 1041.088542 678.421875 1028.446615 678.421875 1020.651042 670.625 C 1012.854167 662.829427 1012.854167 650.1875 1020.651042 642.391927 C 1028.446615 634.595052 1041.088542 634.595052 1048.885417 642.391927 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1154.9585" y="1784.479123"/>
-  <use xlink:href="#glyph0-6" x="1165.0595" y="1784.479123"/>
-  <use xlink:href="#glyph0-3" x="1173.7175" y="1784.479123"/>
-  <use xlink:href="#glyph0-11" x="1188.8885" y="1784.479123"/>
-  <use xlink:href="#glyph0-7" x="1197.5465" y="1784.479123"/>
-</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 770.05599 428.375 C 777.852865 436.171875 777.852865 448.8125 770.05599 456.609375 C 762.259115 464.40625 749.61849 464.40625 741.821615 456.609375 C 734.02474 448.8125 734.02474 436.171875 741.821615 428.375 C 749.61849 420.579427 762.259115 420.579427 770.05599 428.375 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 827.571615 466.265625 C 835.36849 474.061198 835.36849 486.703125 827.571615 494.498698 C 819.77474 502.295573 807.134115 502.295573 799.33724 494.498698 C 791.540365 486.703125 791.540365 474.061198 799.33724 466.265625 C 807.134115 458.46875 819.77474 458.46875 827.571615 466.265625 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 890.731771 508.364583 C 898.527344 516.160156 898.527344 528.802083 890.731771 536.597656 C 882.934896 544.394531 870.294271 544.394531 862.497396 536.597656 C 854.700521 528.802083 854.700521 516.160156 862.497396 508.364583 C 870.294271 500.567708 882.934896 500.567708 890.731771 508.364583 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 942.585938 552.364583 C 950.382812 560.161458 950.382812 572.802083 942.585938 580.598958 C 934.789062 588.395833 922.148438 588.395833 914.351562 580.598958 C 906.554688 572.802083 906.554688 560.161458 914.351562 552.364583 C 922.148438 544.567708 934.789062 544.567708 942.585938 552.364583 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 996.566406 592.294271 C 1004.363281 600.091146 1004.363281 612.731771 996.566406 620.528646 C 988.769531 628.324219 976.128906 628.324219 968.332031 620.528646 C 960.535156 612.731771 960.535156 600.091146 968.332031 592.294271 C 976.128906 584.497396 988.769531 584.497396 996.566406 592.294271 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 710.24349 414.440104 L 738.920573 432.045573 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 738.648438 452.483073 L 710.322917 468.847656 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 772.614583 453.477865 L 796.779948 469.397135 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 797.342448 492.175781 L 772.052083 510.6875 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 859.998698 511.40625 L 830.070312 491.457031 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 913.244792 553.563802 L 891.83724 535.398438 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 966.395833 594.536458 L 944.520833 578.355469 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 1020.347656 642.700521 L 996.86849 620.21875 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 967.815104 619.992188 L 943.102865 642.927083 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 912.415365 578.355469 L 890.540365 594.536458 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 859.735677 533.152344 L 830.333333 551.739583 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 844.572917 345.826823 L 843.734375 397.166667 " transform="matrix(3,0,0,3,-1923,-198)"/>
-<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 843.604167 405.165365 L 846.734375 397.216146 L 840.734375 397.117188 Z M 843.604167 405.165365 " transform="matrix(3,0,0,3,-1923,-198)"/>
-</g>
-</svg>
--- a/slide/s6/images/regex/dfa.svg	Thu Feb 18 06:40:17 2016 +0900
+++ b/slide/s6/images/regex/dfa.svg	Thu Feb 18 12:05:09 2016 +0900
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1266pt" height="570pt" viewBox="0 0 1266 570" version="1.1">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="777pt" height="570pt" viewBox="0 0 777 570" version="1.1">
 <defs>
 <g>
 <symbol overflow="visible" id="glyph0-0">
@@ -15,60 +15,45 @@
 <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="glyph1-0">
-<path style="stroke:none;" d="M 79.5625 -1.4375 L 10.4375 -1.4375 L 10.4375 -90.71875 L 79.5625 -90.71875 Z M 9 -92.15625 L 9 0 L 81 0 L 81 -92.15625 Z M 9 -92.15625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 36.71875 -131.578125 L 33.125 -131.578125 C 26.28125 -119.222656 21.085938 -106.203125 17.546875 -92.515625 C 14.003906 -78.835938 12.234375 -64.921875 12.234375 -50.765625 C 12.234375 -42.960938 12.679688 -35.550781 13.578125 -28.53125 C 14.484375 -21.507812 15.804688 -14.664062 17.546875 -8 C 19.285156 -1.34375 21.472656 5.222656 24.109375 11.703125 C 26.753906 18.179688 29.816406 24.84375 33.296875 31.6875 L 36.90625 31.6875 C 29.9375 18.957031 24.679688 5.664062 21.140625 -8.1875 C 17.609375 -22.050781 15.84375 -36.242188 15.84375 -50.765625 C 15.84375 -64.921875 17.609375 -78.835938 21.140625 -92.515625 C 24.679688 -106.203125 29.875 -119.222656 36.71875 -131.578125 Z M 36.71875 -131.578125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 3.234375 31.6875 L 6.84375 31.6875 C 13.675781 19.320312 18.863281 6.332031 22.40625 -7.28125 C 25.945312 -20.90625 27.71875 -34.796875 27.71875 -48.953125 C 27.71875 -56.753906 27.265625 -64.164062 26.359375 -71.1875 C 25.460938 -78.207031 24.144531 -85.046875 22.40625 -91.703125 C 20.664062 -98.367188 18.472656 -104.96875 15.828125 -111.5 C 13.191406 -118.039062 10.132812 -124.734375 6.65625 -131.578125 L 3.0625 -131.578125 C 10.019531 -118.859375 15.269531 -105.535156 18.8125 -91.609375 C 22.351562 -77.691406 24.125 -63.472656 24.125 -48.953125 C 24.125 -34.796875 22.351562 -20.90625 18.8125 -7.28125 C 15.269531 6.332031 10.078125 19.320312 3.234375 31.6875 Z M 3.234375 31.6875 "/>
-</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 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="glyph2-2">
-<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="glyph2-3">
+<symbol overflow="visible" id="glyph1-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="glyph2-4">
+<symbol overflow="visible" id="glyph1-2">
 <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="glyph2-5">
+<symbol overflow="visible" id="glyph1-3">
 <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="glyph2-6">
+<symbol overflow="visible" id="glyph1-4">
 <path style="stroke:none;" d="M 19.921875 -16.84375 L 24.140625 -16.84375 C 23.984375 -18.320312 23.597656 -19.59375 22.984375 -20.65625 C 22.378906 -21.726562 21.601562 -22.617188 20.65625 -23.328125 C 19.71875 -24.035156 18.628906 -24.554688 17.390625 -24.890625 C 16.160156 -25.222656 14.84375 -25.390625 13.4375 -25.390625 C 11.488281 -25.390625 9.773438 -25.046875 8.296875 -24.359375 C 6.828125 -23.671875 5.601562 -22.726562 4.625 -21.53125 C 3.65625 -20.332031 2.929688 -18.921875 2.453125 -17.296875 C 1.972656 -15.679688 1.734375 -13.945312 1.734375 -12.09375 C 1.734375 -10.238281 1.976562 -8.535156 2.46875 -6.984375 C 2.96875 -5.429688 3.703125 -4.09375 4.671875 -2.96875 C 5.648438 -1.851562 6.867188 -0.988281 8.328125 -0.375 C 9.785156 0.226562 11.457031 0.53125 13.34375 0.53125 C 16.507812 0.53125 19.007812 -0.300781 20.84375 -1.96875 C 22.6875 -3.632812 23.832031 -6.003906 24.28125 -9.078125 L 20.109375 -9.078125 C 19.859375 -7.148438 19.160156 -5.660156 18.015625 -4.609375 C 16.878906 -3.554688 15.304688 -3.03125 13.296875 -3.03125 C 12.015625 -3.03125 10.910156 -3.285156 9.984375 -3.796875 C 9.054688 -4.304688 8.300781 -4.984375 7.71875 -5.828125 C 7.144531 -6.679688 6.722656 -7.648438 6.453125 -8.734375 C 6.179688 -9.828125 6.046875 -10.945312 6.046875 -12.09375 C 6.046875 -13.34375 6.171875 -14.550781 6.421875 -15.71875 C 6.679688 -16.882812 7.109375 -17.914062 7.703125 -18.8125 C 8.296875 -19.707031 9.085938 -20.425781 10.078125 -20.96875 C 11.066406 -21.519531 12.300781 -21.796875 13.78125 -21.796875 C 15.507812 -21.796875 16.882812 -21.363281 17.90625 -20.5 C 18.925781 -19.632812 19.597656 -18.414062 19.921875 -16.84375 Z M 19.921875 -16.84375 "/>
 </symbol>
-<symbol overflow="visible" id="glyph2-7">
+<symbol overflow="visible" id="glyph1-5">
 <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="glyph2-8">
+<symbol overflow="visible" id="glyph1-6">
 <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="glyph2-9">
+<symbol overflow="visible" id="glyph1-7">
 <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="glyph3-0">
+<symbol overflow="visible" id="glyph2-0">
 <path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
 </symbol>
-<symbol overflow="visible" id="glyph3-1">
+<symbol overflow="visible" id="glyph2-1">
 <path style="stroke:none;" d="M 18.3125 -13.015625 L 5.453125 -13.015625 L 18.203125 -31.75 L 18.3125 -31.75 Z M 22.625 -13.015625 L 22.625 -38.28125 L 18.953125 -38.28125 L 1.515625 -13.390625 L 1.515625 -8.96875 L 18.3125 -8.96875 L 18.3125 0 L 22.625 0 L 22.625 -8.96875 L 27.8125 -8.96875 L 27.8125 -13.015625 Z M 22.625 -13.015625 "/>
 </symbol>
-<symbol overflow="visible" id="glyph3-2">
-<path style="stroke:none;" d="M 22.359375 -28.515625 L 26.953125 -28.515625 C 26.660156 -31.679688 25.578125 -34.097656 23.703125 -35.765625 C 21.828125 -37.441406 19.304688 -38.28125 16.140625 -38.28125 C 13.410156 -38.28125 11.144531 -37.703125 9.34375 -36.546875 C 7.539062 -35.398438 6.097656 -33.875 5.015625 -31.96875 C 3.941406 -30.0625 3.175781 -27.875 2.71875 -25.40625 C 2.269531 -22.9375 2.046875 -20.390625 2.046875 -17.765625 C 2.046875 -15.742188 2.195312 -13.65625 2.5 -11.5 C 2.8125 -9.34375 3.4375 -7.363281 4.375 -5.5625 C 5.3125 -3.757812 6.644531 -2.28125 8.375 -1.125 C 10.101562 0.0195312 12.390625 0.59375 15.234375 0.59375 C 17.640625 0.59375 19.660156 0.1875 21.296875 -0.625 C 22.941406 -1.4375 24.257812 -2.460938 25.25 -3.703125 C 26.238281 -4.941406 26.945312 -6.316406 27.375 -7.828125 C 27.8125 -9.335938 28.03125 -10.796875 28.03125 -12.203125 C 28.03125 -13.960938 27.757812 -15.597656 27.21875 -17.109375 C 26.675781 -18.628906 25.910156 -19.945312 24.921875 -21.0625 C 23.929688 -22.175781 22.707031 -23.046875 21.25 -23.671875 C 19.789062 -24.304688 18.144531 -24.625 16.3125 -24.625 C 14.21875 -24.625 12.367188 -24.226562 10.765625 -23.4375 C 9.171875 -22.644531 7.832031 -21.367188 6.75 -19.609375 L 6.640625 -19.703125 C 6.679688 -21.179688 6.828125 -22.765625 7.078125 -24.453125 C 7.328125 -26.148438 7.785156 -27.726562 8.453125 -29.1875 C 9.117188 -30.644531 10.046875 -31.847656 11.234375 -32.796875 C 12.421875 -33.753906 13.988281 -34.234375 15.9375 -34.234375 C 17.769531 -34.234375 19.242188 -33.710938 20.359375 -32.671875 C 21.472656 -31.628906 22.140625 -30.242188 22.359375 -28.515625 Z M 15.4375 -20.578125 C 16.738281 -20.578125 17.875 -20.34375 18.84375 -19.875 C 19.8125 -19.40625 20.617188 -18.78125 21.265625 -18 C 21.921875 -17.226562 22.398438 -16.3125 22.703125 -15.25 C 23.015625 -14.1875 23.171875 -13.0625 23.171875 -11.875 C 23.171875 -10.757812 23 -9.6875 22.65625 -8.65625 C 22.3125 -7.632812 21.816406 -6.726562 21.171875 -5.9375 C 20.523438 -5.144531 19.722656 -4.523438 18.765625 -4.078125 C 17.804688 -3.628906 16.695312 -3.40625 15.4375 -3.40625 C 14.175781 -3.40625 13.050781 -3.628906 12.0625 -4.078125 C 11.070312 -4.523438 10.242188 -5.125 9.578125 -5.875 C 8.921875 -6.632812 8.410156 -7.535156 8.046875 -8.578125 C 7.679688 -9.628906 7.5 -10.75 7.5 -11.9375 C 7.5 -13.125 7.671875 -14.25 8.015625 -15.3125 C 8.359375 -16.375 8.867188 -17.289062 9.546875 -18.0625 C 10.234375 -18.832031 11.0625 -19.441406 12.03125 -19.890625 C 13.007812 -20.347656 14.144531 -20.578125 15.4375 -20.578125 Z M 15.4375 -20.578125 "/>
+<symbol overflow="visible" id="glyph2-2">
+<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
 </symbol>
-<symbol overflow="visible" id="glyph3-3">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
+<symbol overflow="visible" id="glyph2-3">
+<path style="stroke:none;" d="M 4.484375 -6 L 4.484375 0 L 7.671875 0 C 7.703125 0.425781 7.671875 0.890625 7.578125 1.390625 C 7.492188 1.898438 7.328125 2.398438 7.078125 2.890625 C 6.828125 3.378906 6.492188 3.828125 6.078125 4.234375 C 5.660156 4.648438 5.144531 4.96875 4.53125 5.1875 L 4.53125 7.890625 C 6.625 7.273438 8.132812 6.226562 9.0625 4.75 C 10 3.269531 10.46875 1.503906 10.46875 -0.546875 L 10.46875 -6 Z M 4.484375 -6 "/>
 </symbol>
 </g>
 </defs>
 <g id="surface1">
-<rect x="0" y="0" width="1266" height="570" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="777" height="570" 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="87.6383" y="87.862176"/>
   <use xlink:href="#glyph0-2" x="124.0223" y="87.862176"/>
@@ -76,33 +61,25 @@
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
   <use xlink:href="#glyph0-3" x="149.0783" y="87.862176"/>
 </g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="751.1381" y="376.10556"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="1181.783" y="376.10556"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-1" x="970.1425" y="339.693003"/>
-  <use xlink:href="#glyph2-2" x="997.6945" y="339.693003"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="453.5352" y="180.772303"/>
 </g>
 <g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-3" x="453.5352" y="180.772303"/>
-</g>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-4" x="452.1912" y="299.177803"/>
+  <use xlink:href="#glyph1-2" x="452.1912" y="299.177803"/>
 </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 673.596354 523.652344 C 680.515625 530.294271 680.515625 541.0625 673.596354 547.704427 C 666.677083 554.346354 655.459635 554.346354 648.541667 547.704427 C 641.622396 541.0625 641.622396 530.294271 648.541667 523.652344 C 655.459635 517.010417 666.677083 517.010417 673.596354 523.652344 " transform="matrix(3,0,0,3,-1680,-1293)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-1" x="288.1947" y="332.778903"/>
+  <use xlink:href="#glyph2-1" x="288.1947" y="332.778903"/>
 </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 791.78125 466.526042 C 798.700521 473.167969 798.700521 483.936198 791.78125 490.578125 C 784.863281 497.220052 773.645833 497.220052 766.726562 490.578125 C 759.807292 483.936198 759.807292 473.167969 766.726562 466.526042 C 773.645833 459.884115 784.863281 459.884115 791.78125 466.526042 " transform="matrix(3,0,0,3,-1680,-1293)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-1" x="642.7498" y="161.400903"/>
+  <use xlink:href="#glyph2-1" x="642.7498" y="161.400903"/>
 </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 791.78125 523.652344 C 798.700521 530.294271 798.700521 541.0625 791.78125 547.704427 C 784.863281 554.346354 773.645833 554.346354 766.726562 547.704427 C 759.807292 541.0625 759.807292 530.294271 766.726562 523.652344 C 773.645833 517.010417 784.863281 517.010417 791.78125 523.652344 " transform="matrix(3,0,0,3,-1680,-1293)"/>
+<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 801.088542 523.652344 C 810.135417 530.294271 810.135417 541.0625 801.088542 547.704427 C 792.040365 554.346354 777.371094 554.346354 768.322917 547.704427 C 759.276042 541.0625 759.276042 530.294271 768.322917 523.652344 C 777.371094 517.010417 792.040365 517.010417 801.088542 523.652344 " transform="matrix(3,0,0,3,-1680,-1293)"/>
 <g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph3-2" x="642.7498" y="332.778903"/>
+  <use xlink:href="#glyph2-2" x="636.5871" y="332.778903"/>
+  <use xlink:href="#glyph2-3" x="666.6111" y="332.778903"/>
+  <use xlink:href="#glyph2-1" x="681.6231" y="332.778903"/>
 </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 676.897135 528.027344 L 754.513021 490.511719 " transform="matrix(3,0,0,3,-1680,-1293)"/>
 <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 761.714844 487.029948 L 753.207031 487.809896 L 755.817708 493.21224 Z M 761.714844 487.029948 " transform="matrix(3,0,0,3,-1680,-1293)"/>
@@ -110,24 +87,16 @@
 <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 759.638021 535.678385 L 751.638021 532.678385 L 751.638021 538.678385 Z M 759.638021 535.678385 " transform="matrix(3,0,0,3,-1680,-1293)"/>
 <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 791.78125 580.777344 C 798.700521 587.419271 798.700521 598.188802 791.78125 604.830729 C 784.863281 611.472656 773.645833 611.472656 766.726562 604.830729 C 759.807292 598.188802 759.807292 587.419271 766.726562 580.777344 C 773.645833 574.135417 784.863281 574.135417 791.78125 580.777344 " transform="matrix(3,0,0,3,-1680,-1293)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-1" x="642.7498" y="504.156843"/>
+  <use xlink:href="#glyph2-1" x="642.7498" y="504.156843"/>
 </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 676.897135 543.329427 L 754.513021 580.845052 " transform="matrix(3,0,0,3,-1680,-1293)"/>
 <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 761.714844 584.326823 L 755.817708 578.144531 L 753.207031 583.545573 Z M 761.714844 584.326823 " transform="matrix(3,0,0,3,-1680,-1293)"/>
 <g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph2-5" x="420.2472" y="469.256603"/>
-  <use xlink:href="#glyph2-6" x="432.6792" y="469.256603"/>
-  <use xlink:href="#glyph2-7" x="458.4552" y="469.256603"/>
-  <use xlink:href="#glyph2-8" x="477.1272" y="469.256603"/>
-  <use xlink:href="#glyph2-9" x="500.1672" y="469.256603"/>
-</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 940.213542 528.436198 C 947.13151 535.078125 947.13151 545.847656 940.213542 552.489583 C 933.294271 559.13151 922.076823 559.13151 915.157552 552.489583 C 908.239583 545.847656 908.239583 535.078125 915.157552 528.436198 C 922.076823 521.794271 933.294271 521.794271 940.213542 528.436198 " transform="matrix(3,0,0,3,-1680,-1293)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-1" x="1088.045" y="347.132603"/>
-</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 866.115885 528.436198 C 873.033854 535.078125 873.033854 545.847656 866.115885 552.489583 C 859.196615 559.13151 847.979167 559.13151 841.061198 552.489583 C 834.141927 545.847656 834.141927 535.078125 841.061198 528.436198 C 847.979167 521.794271 859.196615 521.794271 866.115885 528.436198 " transform="matrix(3,0,0,3,-1680,-1293)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-3" x="865.7523" y="347.132603"/>
+  <use xlink:href="#glyph1-3" x="420.2472" y="469.256603"/>
+  <use xlink:href="#glyph1-4" x="432.6792" y="469.256603"/>
+  <use xlink:href="#glyph1-5" x="458.4552" y="469.256603"/>
+  <use xlink:href="#glyph1-6" x="477.1272" y="469.256603"/>
+  <use xlink:href="#glyph1-7" x="500.1672" y="469.256603"/>
 </g>
 </g>
 </svg>
--- a/slide/s6/images/regex/parser.svg	Thu Feb 18 06:40:17 2016 +0900
+++ b/slide/s6/images/regex/parser.svg	Thu Feb 18 12:05:09 2016 +0900
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1707pt" height="1671pt" viewBox="0 0 1707 1671" version="1.1">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1485pt" height="1539pt" viewBox="0 0 1485 1539" version="1.1">
 <defs>
 <g>
 <symbol overflow="visible" id="glyph0-0">
@@ -62,12 +62,6 @@
 <symbol overflow="visible" id="glyph1-5">
 <path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
 </symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 10.859375 -15.9375 L 17.390625 -33.90625 L 17.5 -33.90625 L 23.921875 -15.9375 Z M 14.6875 -38.5625 L -0.328125 0 L 4.90625 0 L 9.234375 -11.609375 L 25.546875 -11.609375 L 29.75 0 L 35.421875 0 L 20.359375 -38.5625 Z M 14.6875 -38.5625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-7">
-<path style="stroke:none;" d="M 31.3125 -26.953125 L 36.453125 -26.953125 C 36.160156 -29.003906 35.546875 -30.8125 34.609375 -32.375 C 33.671875 -33.9375 32.5 -35.238281 31.09375 -36.28125 C 29.695312 -37.332031 28.097656 -38.125 26.296875 -38.65625 C 24.492188 -39.195312 22.585938 -39.46875 20.578125 -39.46875 C 17.617188 -39.46875 14.992188 -38.9375 12.703125 -37.875 C 10.421875 -36.8125 8.515625 -35.363281 6.984375 -33.53125 C 5.460938 -31.695312 4.304688 -29.546875 3.515625 -27.078125 C 2.722656 -24.609375 2.328125 -21.972656 2.328125 -19.171875 C 2.328125 -16.359375 2.691406 -13.726562 3.421875 -11.28125 C 4.160156 -8.832031 5.269531 -6.707031 6.75 -4.90625 C 8.226562 -3.113281 10.082031 -1.703125 12.3125 -0.671875 C 14.539062 0.347656 17.148438 0.859375 20.140625 0.859375 C 25.078125 0.859375 28.96875 -0.488281 31.8125 -3.1875 C 34.65625 -5.882812 36.328125 -9.664062 36.828125 -14.53125 L 31.703125 -14.53125 C 31.585938 -12.945312 31.257812 -11.46875 30.71875 -10.09375 C 30.1875 -8.726562 29.441406 -7.550781 28.484375 -6.5625 C 27.523438 -5.570312 26.390625 -4.796875 25.078125 -4.234375 C 23.765625 -3.679688 22.265625 -3.40625 20.578125 -3.40625 C 18.273438 -3.40625 16.296875 -3.835938 14.640625 -4.703125 C 12.984375 -5.566406 11.625 -6.726562 10.5625 -8.1875 C 9.5 -9.644531 8.710938 -11.351562 8.203125 -13.3125 C 7.703125 -15.269531 7.453125 -17.347656 7.453125 -19.546875 C 7.453125 -21.566406 7.703125 -23.507812 8.203125 -25.375 C 8.710938 -27.25 9.5 -28.914062 10.5625 -30.375 C 11.625 -31.832031 12.972656 -32.992188 14.609375 -33.859375 C 16.242188 -34.722656 18.210938 -35.15625 20.515625 -35.15625 C 23.210938 -35.15625 25.539062 -34.46875 27.5 -33.09375 C 29.46875 -31.726562 30.738281 -29.679688 31.3125 -26.953125 Z M 31.3125 -26.953125 "/>
-</symbol>
 <symbol overflow="visible" id="glyph2-0">
 <path style="stroke:none;" d="M 14.71875 -23.96875 L 3.671875 -23.96875 L 3.671875 -1.6875 L 14.71875 -1.6875 Z M 16.5625 -25.625 L 16.5625 -0.03125 L 1.84375 -0.03125 L 1.84375 -25.625 Z M 16.5625 -25.625 "/>
 </symbol>
@@ -92,115 +86,128 @@
 <symbol overflow="visible" id="glyph2-7">
 <path style="stroke:none;" d="M 0 4.640625 L 0 7.09375 L 6.734375 7.09375 L 6.734375 -26.3125 L 0 -26.3125 L 0 -23.875 L 3.859375 -23.875 L 3.859375 4.640625 Z M 0 4.640625 "/>
 </symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 11.046875 -17.984375 L 2.75 -17.984375 L 2.75 -1.265625 L 11.046875 -1.265625 Z M 12.421875 -19.21875 L 12.421875 -0.03125 L 1.375 -0.03125 L 1.375 -19.21875 Z M 12.421875 -19.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M 5.421875 -7.96875 L 8.6875 -16.953125 L 8.75 -16.953125 L 11.96875 -7.96875 Z M 7.34375 -19.28125 L -0.15625 0 L 2.453125 0 L 4.609375 -5.8125 L 12.765625 -5.8125 L 14.875 0 L 17.71875 0 L 10.171875 -19.28125 Z M 7.34375 -19.28125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M 11.203125 -9.484375 L 13.578125 -9.484375 C 13.492188 -10.304688 13.28125 -11.019531 12.9375 -11.625 C 12.59375 -12.226562 12.15625 -12.726562 11.625 -13.125 C 11.09375 -13.519531 10.476562 -13.8125 9.78125 -14 C 9.09375 -14.1875 8.351562 -14.28125 7.5625 -14.28125 C 6.457031 -14.28125 5.488281 -14.085938 4.65625 -13.703125 C 3.832031 -13.316406 3.144531 -12.785156 2.59375 -12.109375 C 2.050781 -11.429688 1.644531 -10.640625 1.375 -9.734375 C 1.101562 -8.828125 0.96875 -7.847656 0.96875 -6.796875 C 0.96875 -5.753906 1.109375 -4.796875 1.390625 -3.921875 C 1.671875 -3.054688 2.082031 -2.304688 2.625 -1.671875 C 3.175781 -1.046875 3.859375 -0.5625 4.671875 -0.21875 C 5.492188 0.125 6.4375 0.296875 7.5 0.296875 C 9.28125 0.296875 10.6875 -0.171875 11.71875 -1.109375 C 12.757812 -2.046875 13.40625 -3.378906 13.65625 -5.109375 L 11.3125 -5.109375 C 11.164062 -4.023438 10.773438 -3.1875 10.140625 -2.59375 C 9.503906 -2 8.617188 -1.703125 7.484375 -1.703125 C 6.765625 -1.703125 6.140625 -1.84375 5.609375 -2.125 C 5.085938 -2.414062 4.664062 -2.800781 4.34375 -3.28125 C 4.019531 -3.757812 3.78125 -4.300781 3.625 -4.90625 C 3.476562 -5.519531 3.40625 -6.148438 3.40625 -6.796875 C 3.40625 -7.503906 3.472656 -8.1875 3.609375 -8.84375 C 3.753906 -9.5 3.992188 -10.078125 4.328125 -10.578125 C 4.660156 -11.085938 5.101562 -11.492188 5.65625 -11.796875 C 6.21875 -12.109375 6.914062 -12.265625 7.75 -12.265625 C 8.71875 -12.265625 9.488281 -12.019531 10.0625 -11.53125 C 10.644531 -11.039062 11.023438 -10.359375 11.203125 -9.484375 Z M 11.203125 -9.484375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-3">
+<path style="stroke:none;" d="M 11.421875 -8.3125 L 3.40625 -8.3125 C 3.4375 -8.851562 3.550781 -9.363281 3.75 -9.84375 C 3.945312 -10.320312 4.21875 -10.738281 4.5625 -11.09375 C 4.90625 -11.457031 5.3125 -11.742188 5.78125 -11.953125 C 6.257812 -12.160156 6.796875 -12.265625 7.390625 -12.265625 C 7.972656 -12.265625 8.5 -12.160156 8.96875 -11.953125 C 9.445312 -11.742188 9.863281 -11.460938 10.21875 -11.109375 C 10.570312 -10.753906 10.847656 -10.332031 11.046875 -9.84375 C 11.253906 -9.363281 11.378906 -8.851562 11.421875 -8.3125 Z M 13.640625 -4.421875 L 11.359375 -4.421875 C 11.160156 -3.503906 10.75 -2.820312 10.125 -2.375 C 9.507812 -1.925781 8.71875 -1.703125 7.75 -1.703125 C 6.988281 -1.703125 6.328125 -1.828125 5.765625 -2.078125 C 5.210938 -2.328125 4.753906 -2.660156 4.390625 -3.078125 C 4.035156 -3.503906 3.773438 -3.992188 3.609375 -4.546875 C 3.453125 -5.097656 3.382812 -5.679688 3.40625 -6.296875 L 13.84375 -6.296875 C 13.882812 -7.140625 13.8125 -8.03125 13.625 -8.96875 C 13.4375 -9.90625 13.09375 -10.769531 12.59375 -11.5625 C 12.101562 -12.351562 11.445312 -13.003906 10.625 -13.515625 C 9.800781 -14.023438 8.769531 -14.28125 7.53125 -14.28125 C 6.582031 -14.28125 5.707031 -14.097656 4.90625 -13.734375 C 4.101562 -13.378906 3.40625 -12.878906 2.8125 -12.234375 C 2.226562 -11.585938 1.773438 -10.820312 1.453125 -9.9375 C 1.128906 -9.050781 0.96875 -8.078125 0.96875 -7.015625 C 1.007812 -5.953125 1.164062 -4.972656 1.4375 -4.078125 C 1.71875 -3.179688 2.132812 -2.40625 2.6875 -1.75 C 3.25 -1.101562 3.941406 -0.597656 4.765625 -0.234375 C 5.585938 0.117188 6.554688 0.296875 7.671875 0.296875 C 9.253906 0.296875 10.566406 -0.0976562 11.609375 -0.890625 C 12.648438 -1.679688 13.328125 -2.859375 13.640625 -4.421875 Z M 13.640625 -4.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-4">
+<path style="stroke:none;" d="M 1.8125 -13.953125 L 1.8125 5.3125 L 4.109375 5.3125 L 4.109375 -1.859375 L 4.15625 -1.859375 C 4.40625 -1.441406 4.710938 -1.09375 5.078125 -0.8125 C 5.453125 -0.539062 5.847656 -0.320312 6.265625 -0.15625 C 6.679688 0 7.097656 0.113281 7.515625 0.1875 C 7.941406 0.257812 8.328125 0.296875 8.671875 0.296875 C 9.734375 0.296875 10.660156 0.109375 11.453125 -0.265625 C 12.253906 -0.648438 12.921875 -1.171875 13.453125 -1.828125 C 13.984375 -2.484375 14.378906 -3.25 14.640625 -4.125 C 14.898438 -5.007812 15.03125 -5.945312 15.03125 -6.9375 C 15.03125 -7.925781 14.894531 -8.859375 14.625 -9.734375 C 14.363281 -10.617188 13.96875 -11.398438 13.4375 -12.078125 C 12.90625 -12.753906 12.238281 -13.289062 11.4375 -13.6875 C 10.632812 -14.082031 9.691406 -14.28125 8.609375 -14.28125 C 7.640625 -14.28125 6.75 -14.101562 5.9375 -13.75 C 5.125 -13.40625 4.53125 -12.84375 4.15625 -12.0625 L 4.109375 -12.0625 L 4.109375 -13.953125 Z M 12.609375 -7.09375 C 12.609375 -6.414062 12.535156 -5.75 12.390625 -5.09375 C 12.242188 -4.445312 12.007812 -3.875 11.6875 -3.375 C 11.363281 -2.875 10.9375 -2.46875 10.40625 -2.15625 C 9.875 -1.851562 9.210938 -1.703125 8.421875 -1.703125 C 7.628906 -1.703125 6.953125 -1.847656 6.390625 -2.140625 C 5.835938 -2.441406 5.382812 -2.832031 5.03125 -3.3125 C 4.6875 -3.800781 4.429688 -4.363281 4.265625 -5 C 4.097656 -5.644531 4.015625 -6.3125 4.015625 -7 C 4.015625 -7.644531 4.09375 -8.28125 4.25 -8.90625 C 4.40625 -9.539062 4.65625 -10.101562 5 -10.59375 C 5.34375 -11.09375 5.78125 -11.492188 6.3125 -11.796875 C 6.851562 -12.109375 7.507812 -12.265625 8.28125 -12.265625 C 9.019531 -12.265625 9.664062 -12.117188 10.21875 -11.828125 C 10.769531 -11.535156 11.21875 -11.144531 11.5625 -10.65625 C 11.914062 -10.175781 12.175781 -9.625 12.34375 -9 C 12.519531 -8.382812 12.609375 -7.75 12.609375 -7.09375 Z M 12.609375 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-5">
+<path style="stroke:none;" d="M 4.90625 -13.953125 L 4.90625 -18.140625 L 2.625 -18.140625 L 2.625 -13.953125 L 0.25 -13.953125 L 0.25 -11.9375 L 2.625 -11.9375 L 2.625 -3.046875 C 2.625 -2.398438 2.6875 -1.878906 2.8125 -1.484375 C 2.9375 -1.085938 3.128906 -0.78125 3.390625 -0.5625 C 3.648438 -0.351562 3.988281 -0.207031 4.40625 -0.125 C 4.832031 -0.0390625 5.34375 0 5.9375 0 L 7.6875 0 L 7.6875 -2.03125 L 6.640625 -2.03125 C 6.285156 -2.03125 5.992188 -2.039062 5.765625 -2.0625 C 5.535156 -2.09375 5.359375 -2.148438 5.234375 -2.234375 C 5.109375 -2.328125 5.019531 -2.453125 4.96875 -2.609375 C 4.925781 -2.773438 4.90625 -2.992188 4.90625 -3.265625 L 4.90625 -11.9375 L 7.6875 -11.9375 L 7.6875 -13.953125 Z M 4.90625 -13.953125 "/>
+</symbol>
 </g>
 </defs>
 <g id="surface1">
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 9 -318 L 5040 -318 L 5040 2031 L 9 2031 Z M 9 -318 "/>
+<rect x="0" y="0" width="1485" height="1539" 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="542.11422" y="90.336003"/>
-  <use xlink:href="#glyph0-2" x="554.54622" y="90.336003"/>
-  <use xlink:href="#glyph0-3" x="567.89022" y="90.336003"/>
-  <use xlink:href="#glyph0-4" x="580.32222" y="90.336003"/>
-  <use xlink:href="#glyph0-5" x="606.09822" y="90.336003"/>
-  <use xlink:href="#glyph0-6" x="624.77022" y="90.336003"/>
-  <use xlink:href="#glyph0-7" x="647.81022" y="90.336003"/>
-  <use xlink:href="#glyph0-5" x="678.91422" y="90.336003"/>
-  <use xlink:href="#glyph0-8" x="697.58622" y="90.336003"/>
-  <use xlink:href="#glyph0-9" x="726.91422" y="90.336003"/>
-  <use xlink:href="#glyph0-2" x="739.34622" y="90.336003"/>
-  <use xlink:href="#glyph0-10" x="752.69022" y="90.336003"/>
-  <use xlink:href="#glyph0-2" x="763.34622" y="90.336003"/>
-  <use xlink:href="#glyph0-4" x="776.69022" y="90.336003"/>
-  <use xlink:href="#glyph0-11" x="802.46622" y="90.336003"/>
-  <use xlink:href="#glyph0-2" x="830.93022" y="90.336003"/>
-  <use xlink:href="#glyph0-12" x="844.27422" y="90.336003"/>
-  <use xlink:href="#glyph0-2" x="861.17022" y="90.336003"/>
-  <use xlink:href="#glyph0-13" x="874.51422" y="90.336003"/>
-  <use xlink:href="#glyph0-2" x="886.94622" y="90.336003"/>
-  <use xlink:href="#glyph0-12" x="900.29022" y="90.336003"/>
-  <use xlink:href="#glyph0-2" x="917.18622" y="90.336003"/>
-  <use xlink:href="#glyph0-4" x="930.53022" y="90.336003"/>
-  <use xlink:href="#glyph0-4" x="956.30622" y="90.336003"/>
+  <use xlink:href="#glyph0-1" x="470.11422" y="90.336003"/>
+  <use xlink:href="#glyph0-2" x="482.54622" y="90.336003"/>
+  <use xlink:href="#glyph0-3" x="495.89022" y="90.336003"/>
+  <use xlink:href="#glyph0-4" x="508.32222" y="90.336003"/>
+  <use xlink:href="#glyph0-5" x="534.09822" y="90.336003"/>
+  <use xlink:href="#glyph0-6" x="552.77022" y="90.336003"/>
+  <use xlink:href="#glyph0-7" x="575.81022" y="90.336003"/>
+  <use xlink:href="#glyph0-5" x="606.91422" y="90.336003"/>
+  <use xlink:href="#glyph0-8" x="625.58622" y="90.336003"/>
+  <use xlink:href="#glyph0-9" x="654.91422" y="90.336003"/>
+  <use xlink:href="#glyph0-2" x="667.34622" y="90.336003"/>
+  <use xlink:href="#glyph0-10" x="680.69022" y="90.336003"/>
+  <use xlink:href="#glyph0-2" x="691.34622" y="90.336003"/>
+  <use xlink:href="#glyph0-4" x="704.69022" y="90.336003"/>
+  <use xlink:href="#glyph0-11" x="730.46622" y="90.336003"/>
+  <use xlink:href="#glyph0-2" x="758.93022" y="90.336003"/>
+  <use xlink:href="#glyph0-12" x="772.27422" y="90.336003"/>
+  <use xlink:href="#glyph0-2" x="789.17022" y="90.336003"/>
+  <use xlink:href="#glyph0-13" x="802.51422" y="90.336003"/>
+  <use xlink:href="#glyph0-2" x="814.94622" y="90.336003"/>
+  <use xlink:href="#glyph0-12" x="828.29022" y="90.336003"/>
+  <use xlink:href="#glyph0-2" x="845.18622" y="90.336003"/>
+  <use xlink:href="#glyph0-4" x="858.53022" y="90.336003"/>
+  <use xlink:href="#glyph0-4" x="884.30622" y="90.336003"/>
 </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 253.700521 158.96875 L 253.700521 206.950521 " transform="matrix(3,0,0,3,9,-318)"/>
-<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 253.700521 214.950521 L 256.700521 206.950521 L 250.700521 206.950521 Z M 253.700521 214.950521 " transform="matrix(3,0,0,3,9,-318)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 649.503906 835.367188 C 681.152344 867.015625 681.152344 918.324219 649.503906 949.972656 C 617.855469 981.617188 566.546875 981.617188 534.898438 949.972656 C 503.253906 918.324219 503.253906 867.015625 534.898438 835.367188 C 566.546875 803.71875 617.855469 803.71875 649.503906 835.367188 "/>
-<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 213.501302 384.455729 C 224.050781 395.005208 224.050781 412.108073 213.501302 422.657552 C 202.953125 433.205729 185.848958 433.205729 175.299479 422.657552 C 164.751302 412.108073 164.751302 395.005208 175.299479 384.455729 C 185.848958 373.90625 202.953125 373.90625 213.501302 384.455729 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 253.700521 158.96875 L 253.700521 206.950521 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 253.700521 214.950521 L 256.700521 206.950521 L 250.700521 206.950521 Z M 253.700521 214.950521 " transform="matrix(3,0,0,3,-63,-318)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 649.289062 702.664062 C 680.933594 734.308594 680.933594 785.621094 649.289062 817.269531 C 617.640625 848.914062 566.332031 848.914062 534.683594 817.269531 C 503.035156 785.621094 503.035156 734.308594 534.683594 702.664062 C 566.332031 671.015625 617.640625 671.015625 649.289062 702.664062 "/>
+<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 237.429688 340.221354 C 247.977865 350.770833 247.977865 367.873698 237.429688 378.421875 C 226.880208 388.971354 209.777344 388.971354 199.227865 378.421875 C 188.678385 367.873698 188.678385 350.770833 199.227865 340.221354 C 209.777344 329.671875 226.880208 329.671875 237.429688 340.221354 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="582.6984" y="911.412703"/>
+  <use xlink:href="#glyph1-1" x="582.4816" y="778.709503"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 411.179688 996.941406 C 442.824219 1028.589844 442.824219 1079.898438 411.179688 1111.546875 C 379.53125 1143.191406 328.222656 1143.191406 296.574219 1111.546875 C 264.925781 1079.898438 264.925781 1028.589844 296.574219 996.941406 C 328.222656 965.292969 379.53125 965.292969 411.179688 996.941406 "/>
-<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 134.059896 438.313802 C 144.608073 448.863281 144.608073 465.966146 134.059896 476.515625 C 123.510417 487.063802 106.40625 487.063802 95.858073 476.515625 C 85.308594 465.966146 85.308594 448.863281 95.858073 438.313802 C 106.40625 427.764323 123.510417 427.764323 134.059896 438.313802 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 157.986979 394.079427 C 168.536458 404.628906 168.536458 421.731771 157.986979 432.28125 C 147.4375 442.829427 130.334635 442.829427 119.785156 432.28125 C 109.236979 421.731771 109.236979 404.628906 119.785156 394.079427 C 130.334635 383.529948 147.4375 383.529948 157.986979 394.079427 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="347.8818" y="1072.987503"/>
+  <use xlink:href="#glyph1-2" x="347.6651" y="940.284303"/>
 </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 54.617188 486.33724 C 65.166667 496.885417 65.166667 513.989583 54.617188 524.53776 C 44.067708 535.08724 26.964844 535.08724 16.415365 524.53776 C 5.867188 513.989583 5.867188 496.885417 16.415365 486.33724 C 26.964844 475.78776 44.067708 475.78776 54.617188 486.33724 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 78.544271 442.102865 C 89.09375 452.651042 89.09375 469.755208 78.544271 480.303385 C 67.996094 490.852865 50.891927 490.852865 40.34375 480.303385 C 29.794271 469.755208 29.794271 452.651042 40.34375 442.102865 C 50.891927 431.553385 67.996094 431.553385 78.544271 442.102865 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-1" x="51.2533" y="1209.808303"/>
-  <use xlink:href="#glyph2-2" x="60.5773" y="1209.808303"/>
-  <use xlink:href="#glyph2-3" x="79.9093" y="1209.808303"/>
-  <use xlink:href="#glyph2-4" x="93.9133" y="1209.808303"/>
-  <use xlink:href="#glyph2-5" x="111.1933" y="1209.808303"/>
-  <use xlink:href="#glyph2-3" x="134.5213" y="1209.808303"/>
-  <use xlink:href="#glyph2-6" x="148.5253" y="1209.808303"/>
-  <use xlink:href="#glyph2-7" x="170.5213" y="1209.808303"/>
+  <use xlink:href="#glyph2-1" x="51.0366" y="1077.105103"/>
+  <use xlink:href="#glyph2-2" x="60.3606" y="1077.105103"/>
+  <use xlink:href="#glyph2-3" x="79.6926" y="1077.105103"/>
+  <use xlink:href="#glyph2-4" x="93.6966" y="1077.105103"/>
+  <use xlink:href="#glyph2-5" x="110.9766" y="1077.105103"/>
+  <use xlink:href="#glyph2-3" x="134.3046" y="1077.105103"/>
+  <use xlink:href="#glyph2-6" x="148.3086" y="1077.105103"/>
+  <use xlink:href="#glyph2-7" x="170.3046" y="1077.105103"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 649.503906 1141.011719 C 681.152344 1172.65625 681.152344 1223.96875 649.503906 1255.613281 C 617.855469 1287.261719 566.546875 1287.261719 534.898438 1255.613281 C 503.253906 1223.96875 503.253906 1172.65625 534.898438 1141.011719 C 566.546875 1109.363281 617.855469 1109.363281 649.503906 1141.011719 "/>
-<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 213.501302 486.33724 C 224.050781 496.885417 224.050781 513.989583 213.501302 524.53776 C 202.953125 535.08724 185.848958 535.08724 175.299479 524.53776 C 164.751302 513.989583 164.751302 496.885417 175.299479 486.33724 C 185.848958 475.78776 202.953125 475.78776 213.501302 486.33724 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 237.429688 442.102865 C 247.977865 452.651042 247.977865 469.755208 237.429688 480.303385 C 226.880208 490.852865 209.777344 490.852865 199.227865 480.303385 C 188.678385 469.755208 188.678385 452.651042 199.227865 442.102865 C 209.777344 431.553385 226.880208 431.553385 237.429688 442.102865 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="576.0024" y="1217.056303"/>
+  <use xlink:href="#glyph1-3" x="575.7856" y="1084.353103"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 411.179688 1324.34375 C 442.824219 1355.988281 442.824219 1407.300781 411.179688 1438.945312 C 379.53125 1470.59375 328.222656 1470.59375 296.574219 1438.945312 C 264.925781 1407.300781 264.925781 1355.988281 296.574219 1324.34375 C 328.222656 1292.695312 379.53125 1292.695312 411.179688 1324.34375 "/>
-<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 134.059896 547.447917 C 144.608073 557.996094 144.608073 575.10026 134.059896 585.64974 C 123.510417 596.197917 106.40625 596.197917 95.858073 585.64974 C 85.308594 575.10026 85.308594 557.996094 95.858073 547.447917 C 106.40625 536.898438 123.510417 536.898438 134.059896 547.447917 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 157.986979 503.213542 C 168.536458 513.761719 168.536458 530.865885 157.986979 541.414062 C 147.4375 551.963542 130.334635 551.963542 119.785156 541.414062 C 109.236979 530.865885 109.236979 513.761719 119.785156 503.213542 C 130.334635 492.664062 147.4375 492.664062 157.986979 503.213542 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="339.3768" y="1400.389103"/>
+  <use xlink:href="#glyph1-4" x="339.1601" y="1267.685903"/>
 </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 284.951823 332.014323 C 295.501302 342.563802 295.501302 359.666667 284.951823 370.216146 C 274.402344 380.765625 257.299479 380.765625 246.75 370.216146 C 236.201823 359.666667 236.201823 342.563802 246.75 332.014323 C 257.299479 321.466146 274.402344 321.466146 284.951823 332.014323 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 308.878906 286.196615 C 319.428385 296.744792 319.428385 313.848958 308.878906 324.397135 C 298.330729 334.946615 281.226562 334.946615 270.678385 324.397135 C 260.128906 313.848958 260.128906 296.744792 270.678385 286.196615 C 281.226562 275.647135 298.330729 275.647135 308.878906 286.196615 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="790.353" y="754.089903"/>
+  <use xlink:href="#glyph1-3" x="790.1362" y="616.634503"/>
 </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 352.983073 279.109375 C 363.532552 289.658854 363.532552 306.761719 352.983073 317.311198 C 342.433594 327.859375 325.330729 327.859375 314.78125 317.311198 C 304.233073 306.761719 304.233073 289.658854 314.78125 279.109375 C 325.330729 268.559896 342.433594 268.559896 352.983073 279.109375 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 373.367188 231.848958 C 383.916667 242.398438 383.916667 259.501302 373.367188 270.050781 C 362.81901 280.598958 345.714844 280.598958 335.166667 270.050781 C 324.617188 259.501302 324.617188 242.398438 335.166667 231.848958 C 345.714844 221.299479 362.81901 221.299479 373.367188 231.848958 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="994.447" y="595.375003"/>
+  <use xlink:href="#glyph1-3" x="983.6008" y="453.593003"/>
 </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 417.471354 224.761719 C 428.020833 235.311198 428.020833 252.414062 417.471354 262.963542 C 406.921875 273.513021 389.81901 273.513021 379.269531 262.963542 C 368.721354 252.414062 368.721354 235.311198 379.269531 224.761719 C 389.81901 214.213542 406.921875 214.213542 417.471354 224.761719 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 310.434896 287.888021 L 333.610677 268.358073 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 195.966146 374.483073 L 161.248698 398.019531 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 115.764323 427.157552 L 82.566406 447.22526 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 162.009115 427.157552 L 195.205729 447.22526 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 196.915365 477.674479 L 160.299479 505.842448 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 308.878906 503.213542 C 319.428385 513.761719 319.428385 530.865885 308.878906 541.414062 C 298.330729 551.963542 281.226562 551.963542 270.678385 541.414062 C 260.128906 530.865885 260.128906 513.761719 270.678385 503.213542 C 281.226562 492.664062 298.330729 492.664062 308.878906 503.213542 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="1187.912" y="432.333003"/>
+  <use xlink:href="#glyph1-1" x="796.8322" y="1267.685903"/>
 </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 312.55599 314.794271 L 287.177083 334.53125 " transform="matrix(3,0,0,3,9,-318)"/>
-<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 354.539062 280.802083 L 377.713542 261.270833 " transform="matrix(3,0,0,3,9,-318)"/>
-<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.071615 367.10026 L 216.18099 387.571615 " transform="matrix(3,0,0,3,9,-318)"/>
-<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 172.03776 418.717448 L 137.321615 442.253906 " transform="matrix(3,0,0,3,9,-318)"/>
-<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 91.835938 471.391927 L 58.639323 491.459635 " transform="matrix(3,0,0,3,9,-318)"/>
-<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 138.080729 471.391927 L 171.278646 491.459635 " transform="matrix(3,0,0,3,9,-318)"/>
-<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 172.988281 521.908854 L 136.371094 550.076823 " transform="matrix(3,0,0,3,9,-318)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 863.855469 1324.34375 C 895.503906 1355.988281 895.503906 1407.300781 863.855469 1438.945312 C 832.207031 1470.59375 780.898438 1470.59375 749.25 1438.945312 C 717.605469 1407.300781 717.605469 1355.988281 749.25 1324.34375 C 780.898438 1292.695312 832.207031 1292.695312 863.855469 1324.34375 "/>
-<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 284.951823 547.447917 C 295.501302 557.996094 295.501302 575.10026 284.951823 585.64974 C 274.402344 596.197917 257.299479 596.197917 246.75 585.64974 C 236.201823 575.10026 236.201823 557.996094 246.75 547.447917 C 257.299479 536.898438 274.402344 536.898438 284.951823 547.447917 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 238.858073 478.761719 L 269.25 504.755208 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 237.429688 561.088542 C 247.977865 571.636719 247.977865 588.740885 237.429688 599.289062 C 226.880208 609.838542 209.777344 609.838542 199.227865 599.289062 C 188.678385 588.740885 188.678385 571.636719 199.227865 561.088542 C 209.777344 550.539062 226.880208 550.539062 237.429688 561.088542 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="797.049" y="1400.389103"/>
+  <use xlink:href="#glyph1-5" x="575.9746" y="1441.310103"/>
 </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 214.929688 522.996094 L 245.321615 548.989583 " transform="matrix(3,0,0,3,9,-318)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 649.503906 1497.96875 C 681.152344 1529.613281 681.152344 1580.925781 649.503906 1612.570312 C 617.855469 1644.21875 566.546875 1644.21875 534.898438 1612.570312 C 503.253906 1580.925781 503.253906 1529.613281 534.898438 1497.96875 C 566.546875 1466.320312 617.855469 1466.320312 649.503906 1497.96875 "/>
-<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 213.501302 605.322917 C 224.050781 615.871094 224.050781 632.97526 213.501302 643.523438 C 202.953125 654.072917 185.848958 654.072917 175.299479 643.523438 C 164.751302 632.97526 164.751302 615.871094 175.299479 605.322917 C 185.848958 594.773438 202.953125 594.773438 213.501302 605.322917 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 268.786458 539.317708 L 239.320312 563.184896 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 373.367188 339.101562 C 383.916667 349.64974 383.916667 366.753906 373.367188 377.302083 C 362.81901 387.851562 345.714844 387.851562 335.166667 377.302083 C 324.617188 366.753906 324.617188 349.64974 335.166667 339.101562 C 345.714844 328.552083 362.81901 328.552083 373.367188 339.101562 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="576.1914" y="1574.013303"/>
+  <use xlink:href="#glyph1-4" x="985.3018" y="775.349703"/>
+</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 437.855469 286.196615 C 448.404948 296.744792 448.404948 313.848958 437.855469 324.397135 C 427.307292 334.946615 410.203125 334.946615 399.654948 324.397135 C 389.105469 313.848958 389.105469 296.744792 399.654948 286.196615 C 410.203125 275.647135 427.307292 275.647135 437.855469 286.196615 " transform="matrix(3,0,0,3,-63,-318)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-4" x="1178.766" y="616.634503"/>
 </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 244.859375 583.552083 L 215.393229 607.419271 " transform="matrix(3,0,0,3,9,-318)"/>
-<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 417.471354 332.014323 C 428.020833 342.563802 428.020833 359.666667 417.471354 370.216146 C 406.921875 380.765625 389.81901 380.765625 379.269531 370.216146 C 368.721354 359.666667 368.721354 342.563802 379.269531 332.014323 C 389.81901 321.466146 406.921875 321.466146 417.471354 332.014323 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 310.664062 322.43099 L 333.38151 341.067708 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 374.923177 268.358073 L 398.097656 287.888021 " transform="matrix(3,0,0,3,-63,-318)"/>
+<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 239.877604 343.028646 L 268.229167 321.591146 " transform="matrix(3,0,0,3,-63,-318)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1426.964844 702.664062 C 1458.613281 734.308594 1458.613281 785.621094 1426.964844 817.269531 C 1395.316406 848.914062 1344.007812 848.914062 1312.359375 817.269531 C 1280.714844 785.621094 1280.714844 734.308594 1312.359375 702.664062 C 1344.007812 671.015625 1395.316406 671.015625 1426.964844 702.664062 "/>
+<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 496.654948 340.221354 C 507.204427 350.770833 507.204427 367.873698 496.654948 378.421875 C 486.105469 388.971354 469.002604 388.971354 458.453125 378.421875 C 447.904948 367.873698 447.904948 350.770833 458.453125 340.221354 C 469.002604 329.671875 486.105469 329.671875 496.654948 340.221354 " transform="matrix(3,0,0,3,-63,-318)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="1189.613" y="754.089903"/>
-</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 481.959635 279.109375 C 492.509115 289.658854 492.509115 306.761719 481.959635 317.311198 C 471.410156 327.859375 454.307292 327.859375 443.757812 317.311198 C 433.209635 306.761719 433.209635 289.658854 443.757812 279.109375 C 454.307292 268.559896 471.410156 268.559896 481.959635 279.109375 " transform="matrix(3,0,0,3,9,-318)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="1383.078" y="595.375003"/>
+  <use xlink:href="#glyph3-1" x="1326.9085" y="770.087503"/>
+  <use xlink:href="#glyph3-2" x="1344.4045" y="770.087503"/>
+  <use xlink:href="#glyph3-2" x="1358.9035" y="770.087503"/>
+  <use xlink:href="#glyph3-3" x="1373.4025" y="770.087503"/>
+  <use xlink:href="#glyph3-4" x="1387.9015" y="770.087503"/>
+  <use xlink:href="#glyph3-5" x="1403.9125" y="770.087503"/>
 </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 354.768229 315.34375 L 377.485677 333.981771 " transform="matrix(3,0,0,3,9,-318)"/>
-<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 419.027344 261.270833 L 442.201823 280.802083 " transform="matrix(3,0,0,3,9,-318)"/>
-<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 546.447917 332.014323 C 556.997396 342.563802 556.997396 359.666667 546.447917 370.216146 C 535.898438 380.765625 518.795573 380.765625 508.246094 370.216146 C 497.697917 359.666667 497.697917 342.563802 508.246094 332.014323 C 518.795573 321.466146 535.898438 321.466146 546.447917 332.014323 " transform="matrix(3,0,0,3,9,-318)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="1554.051" y="754.089903"/>
-  <use xlink:href="#glyph1-7" x="1589.043" y="754.089903"/>
-</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 483.744792 315.34375 L 506.46224 333.981771 " transform="matrix(3,0,0,3,9,-318)"/>
+<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 438.647135 323.572917 L 457.66276 341.045573 " transform="matrix(3,0,0,3,-63,-318)"/>
 </g>
 </svg>
--- a/slide/s6/images/regex/setstate.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,297 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1719pt" height="2067pt" viewBox="0 0 1719 2067" 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 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-2">
-<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-3">
-<path style="stroke:none;" d="M 7.4375 -25.203125 C 7.4375 -26.066406 7.597656 -26.816406 7.921875 -27.453125 C 8.242188 -28.097656 8.664062 -28.644531 9.1875 -29.09375 C 9.71875 -29.539062 10.347656 -29.875 11.078125 -30.09375 C 11.816406 -30.320312 12.585938 -30.4375 13.390625 -30.4375 C 15.054688 -30.4375 16.425781 -29.992188 17.5 -29.109375 C 18.570312 -28.234375 19.109375 -26.929688 19.109375 -25.203125 C 19.109375 -23.472656 18.578125 -22.128906 17.515625 -21.171875 C 16.460938 -20.210938 15.117188 -19.734375 13.484375 -19.734375 C 12.648438 -19.734375 11.863281 -19.84375 11.125 -20.0625 C 10.394531 -20.289062 9.757812 -20.628906 9.21875 -21.078125 C 8.675781 -21.523438 8.242188 -22.09375 7.921875 -22.78125 C 7.597656 -23.46875 7.4375 -24.273438 7.4375 -25.203125 Z M 3.125 -25.34375 C 3.125 -23.8125 3.554688 -22.394531 4.421875 -21.09375 C 5.285156 -19.800781 6.4375 -18.863281 7.875 -18.28125 C 5.945312 -17.613281 4.472656 -16.535156 3.453125 -15.046875 C 2.429688 -13.554688 1.921875 -11.804688 1.921875 -9.796875 C 1.921875 -8.066406 2.21875 -6.550781 2.8125 -5.25 C 3.40625 -3.957031 4.21875 -2.878906 5.25 -2.015625 C 6.289062 -1.148438 7.515625 -0.507812 8.921875 -0.09375 C 10.335938 0.320312 11.859375 0.53125 13.484375 0.53125 C 15.054688 0.53125 16.53125 0.304688 17.90625 -0.140625 C 19.28125 -0.585938 20.46875 -1.25 21.46875 -2.125 C 22.476562 -3.007812 23.28125 -4.09375 23.875 -5.375 C 24.46875 -6.65625 24.765625 -8.128906 24.765625 -9.796875 C 24.765625 -11.898438 24.269531 -13.679688 23.28125 -15.140625 C 22.289062 -16.597656 20.769531 -17.644531 18.71875 -18.28125 C 20.15625 -18.925781 21.296875 -19.878906 22.140625 -21.140625 C 22.992188 -22.410156 23.421875 -23.8125 23.421875 -25.34375 C 23.421875 -26.425781 23.226562 -27.488281 22.84375 -28.53125 C 22.457031 -29.570312 21.859375 -30.5 21.046875 -31.3125 C 20.234375 -32.132812 19.171875 -32.789062 17.859375 -33.28125 C 16.546875 -33.78125 14.960938 -34.03125 13.109375 -34.03125 C 11.796875 -34.03125 10.535156 -33.835938 9.328125 -33.453125 C 8.128906 -33.066406 7.066406 -32.503906 6.140625 -31.765625 C 5.210938 -31.035156 4.476562 -30.132812 3.9375 -29.0625 C 3.394531 -27.988281 3.125 -26.75 3.125 -25.34375 Z M 6.234375 -9.59375 C 6.234375 -10.59375 6.414062 -11.488281 6.78125 -12.28125 C 7.15625 -13.082031 7.671875 -13.769531 8.328125 -14.34375 C 8.984375 -14.925781 9.75 -15.367188 10.625 -15.671875 C 11.507812 -15.972656 12.445312 -16.125 13.4375 -16.125 C 14.394531 -16.125 15.296875 -15.957031 16.140625 -15.625 C 16.992188 -15.289062 17.738281 -14.832031 18.375 -14.25 C 19.019531 -13.675781 19.523438 -13 19.890625 -12.21875 C 20.265625 -11.4375 20.453125 -10.578125 20.453125 -9.640625 C 20.453125 -8.679688 20.28125 -7.800781 19.9375 -7 C 19.601562 -6.207031 19.125 -5.515625 18.5 -4.921875 C 17.875 -4.328125 17.140625 -3.863281 16.296875 -3.53125 C 15.453125 -3.195312 14.515625 -3.03125 13.484375 -3.03125 C 11.367188 -3.03125 9.628906 -3.613281 8.265625 -4.78125 C 6.910156 -5.945312 6.234375 -7.550781 6.234375 -9.59375 Z M 6.234375 -9.59375 "/>
-</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 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-6">
-<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-7">
-<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-8">
-<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-9">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-10">
-<path style="stroke:none;" d="M 1.0625 -3.84375 L 1.0625 0 L 28.3125 0 L 28.3125 -3.84375 L 6.484375 -3.84375 L 27.75 -30.4375 L 27.75 -34.265625 L 2.6875 -34.265625 L 2.6875 -30.4375 L 22.375 -30.4375 Z M 1.0625 -3.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-11">
-<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-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 9.796875 9.453125 L 12.90625 9.453125 C 10.632812 5.773438 9.007812 2.128906 8.03125 -1.484375 C 7.0625 -5.097656 6.578125 -8.921875 6.578125 -12.953125 C 6.578125 -16.890625 7.054688 -20.648438 8.015625 -24.234375 C 8.972656 -27.816406 10.601562 -31.4375 12.90625 -35.09375 L 9.796875 -35.09375 C 7.296875 -31.789062 5.410156 -28.21875 4.140625 -24.375 C 2.878906 -20.539062 2.25 -16.734375 2.25 -12.953125 C 2.25 -10.847656 2.425781 -8.832031 2.78125 -6.90625 C 3.132812 -4.988281 3.640625 -3.117188 4.296875 -1.296875 C 4.953125 0.523438 5.742188 2.320312 6.671875 4.09375 C 7.597656 5.875 8.640625 7.660156 9.796875 9.453125 Z M 9.796875 9.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-14">
-<path style="stroke:none;" d=""/>
-</symbol>
-<symbol overflow="visible" id="glyph0-15">
-<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-16">
-<path style="stroke:none;" d="M 9.640625 -28.84375 L 9.640625 -34.265625 L 7.109375 -34.265625 L 7.109375 -28.84375 L 2.015625 -30.765625 L 1.15625 -28.46875 L 6.234375 -26.640625 L 3.125 -22.265625 L 5.28125 -20.78125 L 8.40625 -25.390625 L 11.71875 -20.78125 L 13.6875 -22.265625 L 10.515625 -26.640625 L 15.75 -28.46875 L 14.78125 -30.765625 Z M 9.640625 -28.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-17">
-<path style="stroke:none;" d="M -0.4375 9.453125 L 2.640625 9.453125 C 5.140625 6.160156 7.019531 2.601562 8.28125 -1.21875 C 9.539062 -5.039062 10.171875 -8.84375 10.171875 -12.625 C 10.171875 -14.738281 9.992188 -16.753906 9.640625 -18.671875 C 9.296875 -20.585938 8.796875 -22.46875 8.140625 -24.3125 C 7.484375 -26.15625 6.691406 -27.960938 5.765625 -29.734375 C 4.835938 -31.515625 3.796875 -33.300781 2.640625 -35.09375 L -0.4375 -35.09375 C 1.800781 -31.40625 3.410156 -27.742188 4.390625 -24.109375 C 5.367188 -20.484375 5.859375 -16.65625 5.859375 -12.625 C 5.859375 -8.71875 5.375 -4.960938 4.40625 -1.359375 C 3.445312 2.234375 1.832031 5.835938 -0.4375 9.453125 Z M -0.4375 9.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 10.859375 -32.453125 L 10.859375 -38.5625 L 7.984375 -38.5625 L 7.984375 -32.453125 L 2.265625 -34.609375 L 1.296875 -32.015625 L 7.015625 -29.96875 L 3.515625 -25.0625 L 5.9375 -23.375 L 9.453125 -28.5625 L 13.171875 -23.375 L 15.390625 -25.0625 L 11.828125 -29.96875 L 17.71875 -32.015625 L 16.625 -34.609375 Z M 10.859375 -32.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 4.15625 -42.4375 L 4.15625 11.5 L 7.828125 11.5 L 7.828125 -42.4375 Z M 4.15625 -42.4375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 18.03125 -15.5 L 18.03125 -27.328125 L 14.359375 -27.328125 L 14.359375 -15.5 L 2.59375 -15.5 L 2.59375 -11.828125 L 14.359375 -11.828125 L 14.359375 0 L 18.03125 0 L 18.03125 -11.828125 L 29.8125 -11.828125 L 29.8125 -15.5 Z M 18.03125 -15.5 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 10.859375 -15.9375 L 17.390625 -33.90625 L 17.5 -33.90625 L 23.921875 -15.9375 Z M 14.6875 -38.5625 L -0.328125 0 L 4.90625 0 L 9.234375 -11.609375 L 25.546875 -11.609375 L 29.75 0 L 35.421875 0 L 20.359375 -38.5625 Z M 14.6875 -38.5625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-7">
-<path style="stroke:none;" d="M 31.3125 -26.953125 L 36.453125 -26.953125 C 36.160156 -29.003906 35.546875 -30.8125 34.609375 -32.375 C 33.671875 -33.9375 32.5 -35.238281 31.09375 -36.28125 C 29.695312 -37.332031 28.097656 -38.125 26.296875 -38.65625 C 24.492188 -39.195312 22.585938 -39.46875 20.578125 -39.46875 C 17.617188 -39.46875 14.992188 -38.9375 12.703125 -37.875 C 10.421875 -36.8125 8.515625 -35.363281 6.984375 -33.53125 C 5.460938 -31.695312 4.304688 -29.546875 3.515625 -27.078125 C 2.722656 -24.609375 2.328125 -21.972656 2.328125 -19.171875 C 2.328125 -16.359375 2.691406 -13.726562 3.421875 -11.28125 C 4.160156 -8.832031 5.269531 -6.707031 6.75 -4.90625 C 8.226562 -3.113281 10.082031 -1.703125 12.3125 -0.671875 C 14.539062 0.347656 17.148438 0.859375 20.140625 0.859375 C 25.078125 0.859375 28.96875 -0.488281 31.8125 -3.1875 C 34.65625 -5.882812 36.328125 -9.664062 36.828125 -14.53125 L 31.703125 -14.53125 C 31.585938 -12.945312 31.257812 -11.46875 30.71875 -10.09375 C 30.1875 -8.726562 29.441406 -7.550781 28.484375 -6.5625 C 27.523438 -5.570312 26.390625 -4.796875 25.078125 -4.234375 C 23.765625 -3.679688 22.265625 -3.40625 20.578125 -3.40625 C 18.273438 -3.40625 16.296875 -3.835938 14.640625 -4.703125 C 12.984375 -5.566406 11.625 -6.726562 10.5625 -8.1875 C 9.5 -9.644531 8.710938 -11.351562 8.203125 -13.3125 C 7.703125 -15.269531 7.453125 -17.347656 7.453125 -19.546875 C 7.453125 -21.566406 7.703125 -23.507812 8.203125 -25.375 C 8.710938 -27.25 9.5 -28.914062 10.5625 -30.375 C 11.625 -31.832031 12.972656 -32.992188 14.609375 -33.859375 C 16.242188 -34.722656 18.210938 -35.15625 20.515625 -35.15625 C 23.210938 -35.15625 25.539062 -34.46875 27.5 -33.09375 C 29.46875 -31.726562 30.738281 -29.679688 31.3125 -26.953125 Z M 31.3125 -26.953125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-0">
-<path style="stroke:none;" d="M 14.71875 -23.96875 L 3.671875 -23.96875 L 3.671875 -1.6875 L 14.71875 -1.6875 Z M 16.5625 -25.625 L 16.5625 -0.03125 L 1.84375 -0.03125 L 1.84375 -25.625 Z M 16.5625 -25.625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-1">
-<path style="stroke:none;" d="M 9.328125 -23.875 L 9.328125 -26.3125 L 2.59375 -26.3125 L 2.59375 7.09375 L 9.328125 7.09375 L 9.328125 4.640625 L 5.46875 4.640625 L 5.46875 -23.875 Z M 9.328125 -23.875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-2">
-<path style="stroke:none;" d="M 18.796875 -0.078125 C 18.265625 0.234375 17.53125 0.390625 16.59375 0.390625 C 15.800781 0.390625 15.171875 0.171875 14.703125 -0.265625 C 14.234375 -0.710938 14 -1.441406 14 -2.453125 C 13.164062 -1.441406 12.1875 -0.710938 11.0625 -0.265625 C 9.945312 0.171875 8.742188 0.390625 7.453125 0.390625 C 6.609375 0.390625 5.804688 0.289062 5.046875 0.09375 C 4.296875 -0.09375 3.644531 -0.390625 3.09375 -0.796875 C 2.539062 -1.203125 2.101562 -1.734375 1.78125 -2.390625 C 1.457031 -3.054688 1.296875 -3.851562 1.296875 -4.78125 C 1.296875 -5.84375 1.472656 -6.707031 1.828125 -7.375 C 2.191406 -8.050781 2.664062 -8.597656 3.25 -9.015625 C 3.84375 -9.429688 4.515625 -9.75 5.265625 -9.96875 C 6.023438 -10.1875 6.800781 -10.367188 7.59375 -10.515625 C 8.4375 -10.679688 9.234375 -10.804688 9.984375 -10.890625 C 10.742188 -10.972656 11.410156 -11.09375 11.984375 -11.25 C 12.566406 -11.40625 13.023438 -11.632812 13.359375 -11.9375 C 13.691406 -12.238281 13.859375 -12.675781 13.859375 -13.25 C 13.859375 -13.914062 13.734375 -14.453125 13.484375 -14.859375 C 13.234375 -15.273438 12.910156 -15.585938 12.515625 -15.796875 C 12.117188 -16.015625 11.671875 -16.160156 11.171875 -16.234375 C 10.679688 -16.304688 10.195312 -16.34375 9.71875 -16.34375 C 8.425781 -16.34375 7.347656 -16.097656 6.484375 -15.609375 C 5.617188 -15.117188 5.148438 -14.1875 5.078125 -12.8125 L 2.015625 -12.8125 C 2.066406 -13.96875 2.304688 -14.941406 2.734375 -15.734375 C 3.171875 -16.523438 3.75 -17.164062 4.46875 -17.65625 C 5.1875 -18.144531 6.003906 -18.5 6.921875 -18.71875 C 7.847656 -18.9375 8.84375 -19.046875 9.90625 -19.046875 C 10.738281 -19.046875 11.566406 -18.984375 12.390625 -18.859375 C 13.222656 -18.742188 13.972656 -18.5 14.640625 -18.125 C 15.316406 -17.75 15.859375 -17.222656 16.265625 -16.546875 C 16.679688 -15.878906 16.890625 -15.007812 16.890625 -13.9375 L 16.890625 -4.359375 C 16.890625 -3.640625 16.929688 -3.109375 17.015625 -2.765625 C 17.097656 -2.429688 17.378906 -2.265625 17.859375 -2.265625 C 18.117188 -2.265625 18.429688 -2.328125 18.796875 -2.453125 Z M 13.828125 -9.609375 C 13.441406 -9.328125 12.9375 -9.117188 12.3125 -8.984375 C 11.6875 -8.847656 11.03125 -8.738281 10.34375 -8.65625 C 9.664062 -8.570312 8.976562 -8.472656 8.28125 -8.359375 C 7.582031 -8.253906 6.957031 -8.082031 6.40625 -7.84375 C 5.851562 -7.601562 5.398438 -7.257812 5.046875 -6.8125 C 4.703125 -6.375 4.53125 -5.769531 4.53125 -5 C 4.53125 -4.5 4.628906 -4.070312 4.828125 -3.71875 C 5.035156 -3.375 5.300781 -3.09375 5.625 -2.875 C 5.957031 -2.664062 6.335938 -2.507812 6.765625 -2.40625 C 7.203125 -2.3125 7.660156 -2.265625 8.140625 -2.265625 C 9.140625 -2.265625 10 -2.398438 10.71875 -2.671875 C 11.445312 -2.953125 12.035156 -3.300781 12.484375 -3.71875 C 12.941406 -4.144531 13.28125 -4.601562 13.5 -5.09375 C 13.71875 -5.582031 13.828125 -6.046875 13.828125 -6.484375 Z M 13.828125 -9.609375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-3">
-<path style="stroke:none;" d="M 1.796875 -11.453125 L 1.796875 -8.5625 L 12.203125 -8.5625 L 12.203125 -11.453125 Z M 1.796875 -11.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-4">
-<path style="stroke:none;" d="M 0.796875 -2.34375 L 0.796875 0 L 16.484375 0 L 16.484375 -2.703125 L 4.609375 -2.703125 L 15.984375 -16.53125 L 15.984375 -18.609375 L 1.515625 -18.609375 L 1.515625 -15.90625 L 12.03125 -15.90625 Z M 0.796875 -2.34375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-5">
-<path style="stroke:none;" d="M 7.234375 -10.625 L 11.59375 -22.609375 L 11.65625 -22.609375 L 15.953125 -10.625 Z M 9.796875 -25.703125 L -0.21875 0 L 3.28125 0 L 6.15625 -7.734375 L 17.03125 -7.734375 L 19.84375 0 L 23.609375 0 L 13.578125 -25.703125 Z M 9.796875 -25.703125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-6">
-<path style="stroke:none;" d="M 0.796875 -2.875 L 0.796875 0 L 21.234375 0 L 21.234375 -2.875 L 4.859375 -2.875 L 20.8125 -22.828125 L 20.8125 -25.703125 L 2.015625 -25.703125 L 2.015625 -22.828125 L 16.78125 -22.828125 Z M 0.796875 -2.875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-7">
-<path style="stroke:none;" d="M 0 4.640625 L 0 7.09375 L 6.734375 7.09375 L 6.734375 -26.3125 L 0 -26.3125 L 0 -23.875 L 3.859375 -23.875 L 3.859375 4.640625 Z M 0 4.640625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-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="glyph3-1">
-<path style="stroke:none;" d="M 17.421875 -18.140625 C 17.203125 -19.453125 16.648438 -20.40625 15.765625 -21 C 14.890625 -21.59375 13.617188 -21.890625 11.953125 -21.890625 C 10.347656 -21.890625 9.050781 -21.609375 8.0625 -21.046875 C 7.070312 -20.484375 6.578125 -19.53125 6.578125 -18.1875 C 6.578125 -16.976562 6.925781 -16.09375 7.625 -15.53125 C 8.332031 -14.96875 9.296875 -14.6875 10.515625 -14.6875 L 14.40625 -14.6875 L 14.40625 -11.1875 L 10.609375 -11.1875 C 8.941406 -11.1875 7.734375 -10.84375 6.984375 -10.15625 C 6.234375 -9.46875 5.859375 -8.5 5.859375 -7.25 C 5.859375 -5.707031 6.425781 -4.597656 7.5625 -3.921875 C 8.695312 -3.253906 10.191406 -2.921875 12.046875 -2.921875 C 12.847656 -2.921875 13.597656 -2.992188 14.296875 -3.140625 C 15.003906 -3.285156 15.628906 -3.539062 16.171875 -3.90625 C 16.710938 -4.28125 17.175781 -4.785156 17.5625 -5.421875 C 17.945312 -6.066406 18.222656 -6.882812 18.390625 -7.875 L 22.5625 -7.875 C 22.113281 -4.832031 20.910156 -2.660156 18.953125 -1.359375 C 17.003906 -0.0664062 14.429688 0.578125 11.234375 0.578125 C 10.046875 0.578125 8.875 0.441406 7.71875 0.171875 C 6.570312 -0.0976562 5.535156 -0.53125 4.609375 -1.125 C 3.679688 -1.71875 2.925781 -2.492188 2.34375 -3.453125 C 1.769531 -4.410156 1.484375 -5.597656 1.484375 -7.015625 C 1.484375 -8.609375 1.90625 -9.910156 2.75 -10.921875 C 3.601562 -11.929688 4.65625 -12.578125 5.90625 -12.859375 L 5.90625 -12.953125 C 4.78125 -13.304688 3.894531 -13.90625 3.25 -14.75 C 2.613281 -15.601562 2.296875 -16.71875 2.296875 -18.09375 C 2.296875 -19.28125 2.550781 -20.320312 3.0625 -21.21875 C 3.582031 -22.113281 4.289062 -22.875 5.1875 -23.5 C 6.082031 -24.125 7.101562 -24.59375 8.25 -24.90625 C 9.40625 -25.226562 10.640625 -25.390625 11.953125 -25.390625 C 14.640625 -25.390625 16.796875 -24.820312 18.421875 -23.6875 C 20.054688 -22.550781 21.066406 -20.703125 21.453125 -18.140625 Z M 17.421875 -18.140625 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1719" height="2067" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="111.4395" y="1652.219503"/>
-</g>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="341.0458" y="1839.306203"/>
-</g>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1195.691" y="1193.006903"/>
-</g>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="579.156" y="2009.384903"/>
-</g>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="1391.282" y="1035.684003"/>
-</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 767.911458 402.290365 C 778.460938 412.839844 778.460938 429.942708 767.911458 440.492188 C 757.361979 451.041667 740.259115 451.041667 729.709635 440.492188 C 719.161458 429.942708 719.161458 412.839844 729.709635 402.290365 C 740.259115 391.742188 757.361979 391.742188 767.911458 402.290365 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="583.9288" y="1234.918803"/>
-</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 688.470052 456.14974 C 699.018229 466.697917 699.018229 483.802083 688.470052 494.35026 C 677.920573 504.89974 660.817708 504.89974 650.268229 494.35026 C 639.71875 483.802083 639.71875 466.697917 650.268229 456.14974 C 660.817708 445.60026 677.920573 445.60026 688.470052 456.14974 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="349.1123" y="1396.493603"/>
-</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 609.027344 504.171875 C 619.576823 514.721354 619.576823 531.824219 609.027344 542.373698 C 598.477865 552.923177 581.375 552.923177 570.825521 542.373698 C 560.277344 531.824219 560.277344 514.721354 570.825521 504.171875 C 581.375 493.622396 598.477865 493.622396 609.027344 504.171875 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-1" x="52.4838" y="1533.314403"/>
-  <use xlink:href="#glyph2-2" x="61.8078" y="1533.314403"/>
-  <use xlink:href="#glyph2-3" x="81.1398" y="1533.314403"/>
-  <use xlink:href="#glyph2-4" x="95.1438" y="1533.314403"/>
-  <use xlink:href="#glyph2-5" x="112.4238" y="1533.314403"/>
-  <use xlink:href="#glyph2-3" x="135.7518" y="1533.314403"/>
-  <use xlink:href="#glyph2-6" x="149.7558" y="1533.314403"/>
-  <use xlink:href="#glyph2-7" x="171.7518" y="1533.314403"/>
-</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 767.911458 504.171875 C 778.460938 514.721354 778.460938 531.824219 767.911458 542.373698 C 757.361979 552.923177 740.259115 552.923177 729.709635 542.373698 C 719.161458 531.824219 719.161458 514.721354 729.709635 504.171875 C 740.259115 493.622396 757.361979 493.622396 767.911458 504.171875 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="577.2328" y="1540.562403"/>
-</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 688.470052 565.282552 C 699.018229 575.832031 699.018229 592.934896 688.470052 603.484375 C 677.920573 614.033854 660.817708 614.033854 650.268229 603.484375 C 639.71875 592.934896 639.71875 575.832031 650.268229 565.282552 C 660.817708 554.734375 677.920573 554.734375 688.470052 565.282552 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="340.6073" y="1723.895103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 865.085938 1001.550781 C 896.734375 1033.195312 896.734375 1084.507812 865.085938 1116.152344 C 833.4375 1147.800781 782.128906 1147.800781 750.480469 1116.152344 C 718.835938 1084.507812 718.835938 1033.195312 750.480469 1001.550781 C 782.128906 969.902344 833.4375 969.902344 865.085938 1001.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 839.361979 349.85026 C 849.911458 360.398438 849.911458 377.502604 839.361979 388.050781 C 828.8125 398.60026 811.709635 398.60026 801.160156 388.050781 C 790.610677 377.502604 790.610677 360.398438 801.160156 349.85026 C 811.709635 339.300781 828.8125 339.300781 839.361979 349.85026 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="791.5834" y="1077.596003"/>
-</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 907.393229 296.945312 C 917.942708 307.49349 917.942708 324.597656 907.393229 335.145833 C 896.84375 345.695312 879.740885 345.695312 869.191406 335.145833 C 858.643229 324.597656 858.643229 307.49349 869.191406 296.945312 C 879.740885 286.395833 896.84375 286.395833 907.393229 296.945312 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="995.678" y="918.881003"/>
-</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 971.88151 242.597656 C 982.43099 253.147135 982.43099 270.25 971.88151 280.799479 C 961.332031 291.347656 944.229167 291.347656 933.679688 280.799479 C 923.13151 270.25 923.13151 253.147135 933.679688 242.597656 C 944.229167 232.048177 961.332031 232.048177 971.88151 242.597656 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="1189.142" y="755.839003"/>
-</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 866.967448 332.630208 L 841.58724 352.365885 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 908.949219 298.636719 L 932.123698 279.106771 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 798.481771 384.936198 L 770.591146 405.40625 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 726.447917 436.552083 L 691.731771 460.088542 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 646.246094 489.227865 L 613.049479 509.295573 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 692.490885 489.227865 L 725.688802 509.295573 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 727.398438 539.744792 L 690.78125 567.911458 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 865.085938 1647.847656 C 896.734375 1679.496094 896.734375 1730.804688 865.085938 1762.453125 C 833.4375 1794.101562 782.128906 1794.101562 750.480469 1762.453125 C 718.835938 1730.804688 718.835938 1679.496094 750.480469 1647.847656 C 782.128906 1616.203125 833.4375 1616.203125 865.085938 1647.847656 "/>
-<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.361979 565.282552 C 849.911458 575.832031 849.911458 592.934896 839.361979 603.484375 C 828.8125 614.033854 811.709635 614.033854 801.160156 603.484375 C 790.610677 592.934896 790.610677 575.832031 801.160156 565.282552 C 811.709635 554.734375 828.8125 554.734375 839.361979 565.282552 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="798.2794" y="1723.895103"/>
-</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 769.339844 540.830729 L 799.731771 566.825521 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 650.734375 1821.472656 C 682.382812 1853.121094 682.382812 1904.429688 650.734375 1936.078125 C 619.085938 1967.726562 567.777344 1967.726562 536.128906 1936.078125 C 504.484375 1904.429688 504.484375 1853.121094 536.128906 1821.472656 C 567.777344 1789.824219 619.085938 1789.824219 650.734375 1821.472656 "/>
-<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 767.911458 623.157552 C 778.460938 633.707031 778.460938 650.809896 767.911458 661.359375 C 757.361979 671.907552 740.259115 671.907552 729.709635 661.359375 C 719.161458 650.809896 719.161458 633.707031 729.709635 623.157552 C 740.259115 612.608073 757.361979 612.608073 767.911458 623.157552 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="577.4218" y="1897.519303"/>
-</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 799.269531 601.386719 L 769.803385 625.255208 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 971.88151 349.85026 C 982.43099 360.398438 982.43099 377.502604 971.88151 388.050781 C 961.332031 398.60026 944.229167 398.60026 933.679688 388.050781 C 923.13151 377.502604 923.13151 360.398438 933.679688 349.85026 C 944.229167 339.300781 961.332031 339.300781 971.88151 349.85026 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="1190.843" y="1077.596003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1456.109375 842.835938 C 1487.757812 874.480469 1487.757812 925.792969 1456.109375 957.4375 C 1424.460938 989.085938 1373.152344 989.085938 1341.503906 957.4375 C 1309.859375 925.792969 1309.859375 874.480469 1341.503906 842.835938 C 1373.152344 811.1875 1424.460938 811.1875 1456.109375 842.835938 "/>
-<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 1036.369792 296.945312 C 1046.919271 307.49349 1046.919271 324.597656 1036.369792 335.145833 C 1025.821615 345.695312 1008.717448 345.695312 998.167969 335.145833 C 987.619792 324.597656 987.619792 307.49349 998.167969 296.945312 C 1008.717448 286.395833 1025.821615 286.395833 1036.369792 296.945312 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="1384.308" y="918.881003"/>
-</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 909.178385 333.179688 L 931.895833 351.816406 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 973.4375 279.106771 L 996.611979 298.636719 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 1100.858073 349.85026 C 1111.407552 360.398438 1111.407552 377.502604 1100.858073 388.050781 C 1090.308594 398.60026 1073.205729 398.60026 1062.65625 388.050781 C 1052.106771 377.502604 1052.106771 360.398438 1062.65625 349.85026 C 1073.205729 339.300781 1090.308594 339.300781 1100.858073 349.85026 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="1555.282" y="1077.596003"/>
-  <use xlink:href="#glyph1-7" x="1590.274" y="1077.596003"/>
-</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 1038.153646 333.179688 L 1060.872396 351.816406 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="1586.873" y="1193.006903"/>
-</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 1096.204427 353.682292 C 1104.397135 361.875 1104.397135 375.157552 1096.204427 383.348958 C 1088.013021 391.541667 1074.730469 391.541667 1066.539062 383.348958 C 1058.346354 375.157552 1058.346354 361.875 1066.539062 353.682292 C 1074.730469 345.490885 1088.013021 345.490885 1096.204427 353.682292 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 256.535156 552.316406 C 280.269531 576.050781 280.269531 614.527344 256.535156 638.257812 C 232.804688 661.988281 194.328125 661.988281 170.597656 638.257812 C 146.863281 614.527344 146.863281 576.050781 170.597656 552.316406 C 194.328125 528.585938 232.804688 528.585938 256.535156 552.316406 "/>
-<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 636.511719 200.106771 C 644.423177 208.016927 644.423177 220.842448 636.511719 228.752604 C 628.601562 236.66276 615.776042 236.66276 607.865885 228.752604 C 599.955729 220.842448 599.955729 208.016927 607.865885 200.106771 C 615.776042 192.195312 628.601562 192.195312 636.511719 200.106771 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="200.2229" y="612.616003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 771.023438 552.316406 C 794.757812 576.050781 794.757812 614.527344 771.023438 638.257812 C 747.292969 661.988281 708.816406 661.988281 685.085938 638.257812 C 661.351562 614.527344 661.351562 576.050781 685.085938 552.316406 C 708.816406 528.585938 747.292969 528.585938 771.023438 552.316406 "/>
-<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 808.007812 200.106771 C 815.919271 208.016927 815.919271 220.842448 808.007812 228.752604 C 800.097656 236.66276 787.272135 236.66276 779.361979 228.752604 C 771.450521 220.842448 771.450521 208.016927 779.361979 200.106771 C 787.272135 192.195312 800.097656 192.195312 808.007812 200.106771 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="714.7111" y="612.616003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 524.410156 352.476562 C 548.144531 376.207031 548.144531 414.683594 524.410156 438.414062 C 500.679688 462.148438 462.203125 462.148438 438.472656 438.414062 C 414.738281 414.683594 414.738281 376.207031 438.472656 352.476562 C 462.203125 328.742188 500.679688 328.742188 524.410156 352.476562 "/>
-<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 725.803385 133.492188 C 733.714844 141.402344 733.714844 154.227865 725.803385 162.138021 C 717.893229 170.049479 705.067708 170.049479 697.157552 162.138021 C 689.246094 154.227865 689.246094 141.402344 697.157552 133.492188 C 705.067708 125.582031 717.893229 125.582031 725.803385 133.492188 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="468.097" y="412.774003"/>
-</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 633.816406 197.838542 C 639.859375 187.964844 645.421875 176.076823 642.445312 169.307292 C 636.707031 156.259115 607.671875 155.58724 601.932292 168.369792 C 599.740885 173.253906 602.179688 181.127604 606.03125 188.994792 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 609.876302 196.015625 L 608.664062 187.557292 L 603.402344 190.440104 Z M 609.876302 196.015625 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="126.5669" y="397.005003"/>
-  <use xlink:href="#glyph0-6" x="138.9989" y="397.005003"/>
-  <use xlink:href="#glyph0-7" x="164.7749" y="397.005003"/>
-  <use xlink:href="#glyph0-8" x="183.4469" y="397.005003"/>
-  <use xlink:href="#glyph0-9" x="206.4869" y="397.005003"/>
-  <use xlink:href="#glyph0-7" x="237.5909" y="397.005003"/>
-  <use xlink:href="#glyph0-10" x="256.2629" y="397.005003"/>
-  <use xlink:href="#glyph0-11" x="285.5909" y="397.005003"/>
-</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 638.427083 202.315104 L 687.307292 165.848958 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 428.160156 435.195312 L 403.539062 442.335938 L 414.304688 456.761719 Z M 428.160156 435.195312 "/>
-<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 693.720052 161.065104 L 685.513021 163.44401 L 689.101562 168.253906 Z M 693.720052 161.065104 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="330.5669" y="469.289003"/>
-</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 725.040365 132.766927 C 731.205729 124.804688 736.563802 115.5625 733.736979 110.057292 C 727.997396 98.882812 697.529948 97.673177 691.223958 108.369792 C 689.105469 111.963542 690.696615 117.595052 693.744792 123.489583 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 697.895833 130.326823 L 696.308594 121.93099 L 691.179688 125.045573 Z M 697.895833 130.326823 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-12" x="466.441" y="235.430003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 524.410156 760.308594 C 548.144531 784.039062 548.144531 822.515625 524.410156 846.246094 C 500.679688 869.980469 462.203125 869.980469 438.472656 846.246094 C 414.738281 822.515625 414.738281 784.039062 438.472656 760.308594 C 462.203125 736.578125 500.679688 736.578125 524.410156 760.308594 "/>
-<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 725.803385 269.436198 C 733.714844 277.346354 733.714844 290.171875 725.803385 298.083333 C 717.893229 305.99349 705.067708 305.99349 697.157552 298.083333 C 689.246094 290.171875 689.246094 277.346354 697.157552 269.436198 C 705.067708 261.526042 717.893229 261.526042 725.803385 269.436198 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="468.097" y="820.606003"/>
-</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 638.190104 226.854167 L 687.658854 265.264323 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 693.977865 270.170573 L 689.498698 262.894531 L 685.81901 267.632812 Z M 693.977865 270.170573 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="346.3809" y="673.383003"/>
-</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 726.966146 270.699219 L 770.63151 233.872396 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 776.747396 228.714844 L 768.697917 231.579427 L 772.566406 236.165365 Z M 776.747396 228.714844 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="567.4832" y="673.383003"/>
-</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 725.35026 133.052083 C 743.53125 112.636719 770.552083 77.817708 747.5 73.700521 C 714.641927 67.832031 631.001302 87.229167 595.5 127.098958 C 575.015625 150.102865 587.05599 175.634115 600.90625 193.11849 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<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 606.123698 199.1875 L 603.183594 191.165365 L 598.632812 195.076823 Z M 606.123698 199.1875 " transform="matrix(3,0,0,3,-1653,-48)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-1" x="276.5669" y="197.163003"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-13" x="50.74222" y="90.863003"/>
-  <use xlink:href="#glyph0-14" x="63.17422" y="90.863003"/>
-  <use xlink:href="#glyph0-5" x="76.51822" y="90.863003"/>
-  <use xlink:href="#glyph0-6" x="88.95022" y="90.863003"/>
-  <use xlink:href="#glyph0-7" x="114.72622" y="90.863003"/>
-  <use xlink:href="#glyph0-8" x="133.39822" y="90.863003"/>
-  <use xlink:href="#glyph0-9" x="156.43822" y="90.863003"/>
-  <use xlink:href="#glyph0-7" x="187.54222" y="90.863003"/>
-  <use xlink:href="#glyph0-10" x="206.21422" y="90.863003"/>
-  <use xlink:href="#glyph0-11" x="235.54222" y="90.863003"/>
-  <use xlink:href="#glyph0-14" x="247.97422" y="90.863003"/>
-  <use xlink:href="#glyph0-15" x="261.31822" y="90.863003"/>
-  <use xlink:href="#glyph0-14" x="271.97422" y="90.863003"/>
-  <use xlink:href="#glyph0-6" x="285.31822" y="90.863003"/>
-  <use xlink:href="#glyph0-12" x="311.09422" y="90.863003"/>
-  <use xlink:href="#glyph0-14" x="339.55822" y="90.863003"/>
-  <use xlink:href="#glyph0-16" x="352.90222" y="90.863003"/>
-  <use xlink:href="#glyph0-14" x="369.79822" y="90.863003"/>
-  <use xlink:href="#glyph0-17" x="383.14222" y="90.863003"/>
-  <use xlink:href="#glyph0-14" x="395.57422" y="90.863003"/>
-  <use xlink:href="#glyph0-16" x="408.91822" y="90.863003"/>
-  <use xlink:href="#glyph0-14" x="425.81422" y="90.863003"/>
-  <use xlink:href="#glyph0-6" x="439.15822" y="90.863003"/>
-  <use xlink:href="#glyph0-6" x="464.93422" y="90.863003"/>
-</g>
-</g>
-</svg>
--- a/slide/s6/images/regex/stateafasta.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,128 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1242pt" height="1017pt" viewBox="0 0 1242 1017" 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 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-3">
-<path style="stroke:none;" d="M 9.640625 -28.84375 L 9.640625 -34.265625 L 7.109375 -34.265625 L 7.109375 -28.84375 L 2.015625 -30.765625 L 1.15625 -28.46875 L 6.234375 -26.640625 L 3.125 -22.265625 L 5.28125 -20.78125 L 8.40625 -25.390625 L 11.71875 -20.78125 L 13.6875 -22.265625 L 10.515625 -26.640625 L 15.75 -28.46875 L 14.78125 -30.765625 Z M 9.640625 -28.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-4">
-<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-5">
-<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-6">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-7">
-<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="glyph1-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 19.21875 0 L 19.21875 -38.28125 L 15.71875 -38.28125 C 15.46875 -36.84375 15 -35.65625 14.3125 -34.71875 C 13.625 -33.78125 12.785156 -33.039062 11.796875 -32.5 C 10.804688 -31.96875 9.695312 -31.601562 8.46875 -31.40625 C 7.25 -31.207031 5.992188 -31.109375 4.703125 -31.109375 L 4.703125 -27.4375 L 14.640625 -27.4375 L 14.640625 0 Z M 19.21875 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 18.03125 -15.5 L 18.03125 -27.328125 L 14.359375 -27.328125 L 14.359375 -15.5 L 2.59375 -15.5 L 2.59375 -11.828125 L 14.359375 -11.828125 L 14.359375 0 L 18.03125 0 L 18.03125 -11.828125 L 29.8125 -11.828125 L 29.8125 -15.5 Z M 18.03125 -15.5 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 10.859375 -32.453125 L 10.859375 -38.5625 L 7.984375 -38.5625 L 7.984375 -32.453125 L 2.265625 -34.609375 L 1.296875 -32.015625 L 7.015625 -29.96875 L 3.515625 -25.0625 L 5.9375 -23.375 L 9.453125 -28.5625 L 13.171875 -23.375 L 15.390625 -25.0625 L 11.828125 -29.96875 L 17.71875 -32.015625 L 16.625 -34.609375 Z M 10.859375 -32.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1242" height="1017" 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="43.08667" y="89.635103"/>
-  <use xlink:href="#glyph0-2" x="68.86267" y="89.635103"/>
-  <use xlink:href="#glyph0-3" x="97.32667" y="89.635103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 722.597656 518.117188 C 743.355469 538.042969 743.355469 570.351562 722.597656 590.277344 C 701.84375 610.203125 668.191406 610.203125 647.433594 590.277344 C 626.675781 570.351562 626.675781 538.042969 647.433594 518.117188 C 668.191406 498.191406 701.84375 498.191406 722.597656 518.117188 "/>
-<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 1373.865885 204.705729 C 1380.785156 211.347656 1380.785156 222.117188 1373.865885 228.759115 C 1366.946615 235.401042 1355.730469 235.401042 1348.811198 228.759115 C 1341.891927 222.117188 1341.891927 211.347656 1348.811198 204.705729 C 1355.730469 198.063802 1366.946615 198.063802 1373.865885 204.705729 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="670.5168" y="572.940903"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="671.5158" y="667.548503"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="803.3268" y="799.713803"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1143.542969 811.859375 C 1164.300781 831.785156 1164.300781 864.089844 1143.542969 884.015625 C 1122.785156 903.941406 1089.132812 903.941406 1068.378906 884.015625 C 1047.621094 864.089844 1047.621094 831.785156 1068.378906 811.859375 C 1089.132812 791.933594 1122.785156 791.933594 1143.542969 811.859375 "/>
-<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 1514.18099 302.619792 C 1521.10026 309.261719 1521.10026 320.029948 1514.18099 326.671875 C 1507.261719 333.313802 1496.045573 333.313802 1489.126302 326.671875 C 1482.207031 320.029948 1482.207031 309.261719 1489.126302 302.619792 C 1496.045573 295.977865 1507.261719 295.977865 1514.18099 302.619792 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="1073.081" y="865.265003"/>
-  <use xlink:href="#glyph0-7" x="1104.185" y="865.265003"/>
-</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 1463.0625 277.03776 L 1489.221354 302.529948 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="1092.461" y="961.288643"/>
-</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 1430.558594 100.886719 C 1437.477865 107.528646 1437.477865 118.298177 1430.558594 124.940104 C 1423.640625 131.582031 1412.423177 131.582031 1405.503906 124.940104 C 1398.584635 118.298177 1398.584635 107.528646 1405.503906 100.886719 C 1412.423177 94.244792 1423.640625 94.244792 1430.558594 100.886719 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="840.0825" y="261.484203"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1143.542969 206.660156 C 1164.300781 226.585938 1164.300781 258.894531 1143.542969 278.820312 C 1122.785156 298.746094 1089.132812 298.746094 1068.378906 278.820312 C 1047.621094 258.894531 1047.621094 226.585938 1068.378906 206.660156 C 1089.132812 186.734375 1122.785156 186.734375 1143.542969 206.660156 "/>
-<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 1514.18099 100.886719 C 1521.10026 107.528646 1521.10026 118.298177 1514.18099 124.940104 C 1507.261719 131.582031 1496.045573 131.582031 1489.126302 124.940104 C 1482.207031 118.298177 1482.207031 107.528646 1489.126302 100.886719 C 1496.045573 94.244792 1507.261719 94.244792 1514.18099 100.886719 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="1090.949" y="261.484203"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="961.2616" y="212.942203"/>
-</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 1435.747396 112.91276 L 1474.036458 112.91276 " transform="matrix(3,0,0,3,-3399,-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 1482.036458 112.91276 L 1474.036458 109.91276 L 1474.036458 115.91276 Z M 1482.036458 112.91276 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 990.472656 365.402344 C 1011.230469 385.328125 1011.230469 417.632812 990.472656 437.558594 C 969.714844 457.484375 936.0625 457.484375 915.308594 437.558594 C 894.550781 417.632812 894.550781 385.328125 915.308594 365.402344 C 936.0625 345.476562 969.714844 345.476562 990.472656 365.402344 "/>
-<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 1463.157552 153.800781 C 1470.075521 160.442708 1470.075521 171.210938 1463.157552 177.852865 C 1456.239583 184.494792 1445.020833 184.494792 1438.101562 177.852865 C 1431.183594 171.210938 1431.183594 160.442708 1438.101562 153.800781 C 1445.020833 147.158854 1456.239583 147.158854 1463.157552 153.800781 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="936.6898" y="420.224303"/>
-</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 1376.575521 208.045573 L 1435.393229 174.513021 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1143.542969 518.117188 C 1164.300781 538.042969 1164.300781 570.351562 1143.542969 590.277344 C 1122.785156 610.203125 1089.132812 610.203125 1068.378906 590.277344 C 1047.621094 570.351562 1047.621094 538.042969 1068.378906 518.117188 C 1089.132812 498.191406 1122.785156 498.191406 1143.542969 518.117188 "/>
-<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 1514.18099 204.705729 C 1521.10026 211.347656 1521.10026 222.117188 1514.18099 228.759115 C 1507.261719 235.401042 1496.045573 235.401042 1489.126302 228.759115 C 1482.207031 222.117188 1482.207031 211.347656 1489.126302 204.705729 C 1496.045573 198.063802 1507.261719 198.063802 1514.18099 204.705729 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="1096.457" y="572.940903"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="935.1378" y="799.713803"/>
-</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 1462.914062 178.082031 L 1489.36849 204.476562 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="1091.729" y="89.635103"/>
-</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 1512.941406 99.803385 C 1517.763021 93.234375 1521.789062 85.785156 1519.369792 81.496094 C 1514.351562 72.595052 1488.955729 72.595052 1483.9375 81.496094 C 1482.529948 83.990885 1483.303385 87.554688 1485.145833 91.391927 " transform="matrix(3,0,0,3,-3399,-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 1489.363281 98.188802 L 1487.69401 89.809896 L 1482.596354 92.973958 Z M 1489.363281 98.188802 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 854.410156 662.683594 C 875.164062 682.609375 875.164062 714.917969 854.410156 734.84375 C 833.652344 754.769531 800 754.769531 779.246094 734.84375 C 758.488281 714.917969 758.488281 682.609375 779.246094 662.683594 C 800 642.757812 833.652344 642.757812 854.410156 662.683594 "/>
-<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 1417.803385 252.894531 C 1424.721354 259.536458 1424.721354 270.30599 1417.803385 276.947917 C 1410.884115 283.589844 1399.666667 283.589844 1392.747396 276.947917 C 1385.829427 270.30599 1385.829427 259.536458 1392.747396 252.894531 C 1399.666667 246.252604 1410.884115 246.252604 1417.803385 252.894531 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="783.9468" y="716.091803"/>
-  <use xlink:href="#glyph0-7" x="815.0508" y="716.091803"/>
-</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 1373.007812 229.53125 L 1393.606771 252.122396 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 990.472656 662.683594 C 1011.230469 682.609375 1011.230469 714.917969 990.472656 734.84375 C 969.714844 754.769531 936.0625 754.769531 915.308594 734.84375 C 894.550781 714.917969 894.550781 682.609375 915.308594 662.683594 C 936.0625 642.757812 969.714844 642.757812 990.472656 662.683594 "/>
-<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 1463.157552 252.894531 C 1470.075521 259.536458 1470.075521 270.30599 1463.157552 276.947917 C 1456.239583 283.589844 1445.020833 283.589844 1438.101562 276.947917 C 1431.183594 270.30599 1431.183594 259.536458 1438.101562 252.894531 C 1445.020833 246.252604 1456.239583 246.252604 1463.157552 252.894531 " transform="matrix(3,0,0,3,-3399,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="936.8788" y="717.507803"/>
-</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 1463.259115 252.99349 L 1489.023438 228.660156 " transform="matrix(3,0,0,3,-3399,-96)"/>
-</g>
-</svg>
--- a/slide/s6/images/regex/stateasta.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,114 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1191pt" height="798pt" viewBox="0 0 1191 798" 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 9.640625 -28.84375 L 9.640625 -34.265625 L 7.109375 -34.265625 L 7.109375 -28.84375 L 2.015625 -30.765625 L 1.15625 -28.46875 L 6.234375 -26.640625 L 3.125 -22.265625 L 5.28125 -20.78125 L 8.40625 -25.390625 L 11.71875 -20.78125 L 13.6875 -22.265625 L 10.515625 -26.640625 L 15.75 -28.46875 L 14.78125 -30.765625 Z M 9.640625 -28.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-3">
-<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-4">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-5">
-<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-6">
-<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-7">
-<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="glyph1-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 19.21875 0 L 19.21875 -38.28125 L 15.71875 -38.28125 C 15.46875 -36.84375 15 -35.65625 14.3125 -34.71875 C 13.625 -33.78125 12.785156 -33.039062 11.796875 -32.5 C 10.804688 -31.96875 9.695312 -31.601562 8.46875 -31.40625 C 7.25 -31.207031 5.992188 -31.109375 4.703125 -31.109375 L 4.703125 -27.4375 L 14.640625 -27.4375 L 14.640625 0 Z M 19.21875 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 10.859375 -32.453125 L 10.859375 -38.5625 L 7.984375 -38.5625 L 7.984375 -32.453125 L 2.265625 -34.609375 L 1.296875 -32.015625 L 7.015625 -29.96875 L 3.515625 -25.0625 L 5.9375 -23.375 L 9.453125 -28.5625 L 13.171875 -23.375 L 15.390625 -25.0625 L 11.828125 -29.96875 L 17.71875 -32.015625 L 16.625 -34.609375 Z M 10.859375 -32.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 18.03125 -15.5 L 18.03125 -27.328125 L 14.359375 -27.328125 L 14.359375 -15.5 L 2.59375 -15.5 L 2.59375 -11.828125 L 14.359375 -11.828125 L 14.359375 0 L 18.03125 0 L 18.03125 -11.828125 L 29.8125 -11.828125 L 29.8125 -15.5 Z M 18.03125 -15.5 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1191" height="798" 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="43.50007" y="99.131203"/>
-  <use xlink:href="#glyph0-2" x="69.27607" y="99.131203"/>
-  <use xlink:href="#glyph0-3" x="86.17207" y="99.131203"/>
-</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 814.023438 413.40625 C 820.942708 420.048177 820.942708 430.817708 814.023438 437.459635 C 807.104167 444.101562 795.886719 444.101562 788.96875 437.459635 C 782.049479 430.817708 782.049479 420.048177 788.96875 413.40625 C 795.886719 406.764323 807.104167 406.764323 814.023438 413.40625 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="556.4762" y="137.043203"/>
-</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 910.401042 413.40625 C 917.320312 420.048177 917.320312 430.817708 910.401042 437.459635 C 903.483073 444.101562 892.265625 444.101562 885.346354 437.459635 C 878.428385 430.817708 878.428385 420.048177 885.346354 413.40625 C 892.265625 406.764323 903.483073 406.764323 910.401042 413.40625 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="845.6101" y="137.043203"/>
-</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 811.28776 439.610677 C 817.049479 449.045573 822.60026 460.783854 819.21224 466.865885 C 812.988281 478.03776 784.546875 476.604167 779.527344 464.865885 C 777.595052 460.347656 780.40625 453.463542 784.595052 446.705729 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<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 789.165365 440.136719 L 782.134115 444.990885 L 787.059896 448.416667 Z M 789.165365 440.136719 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<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 819.21224 425.433594 L 870.257812 425.433594 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<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 878.257812 425.433594 L 870.257812 422.433594 L 870.257812 428.433594 Z M 878.257812 425.433594 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="558.6002" y="304.643003"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="690.7621" y="92.044503"/>
-</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 814.023438 583.721354 C 820.942708 590.363281 820.942708 601.132812 814.023438 607.77474 C 807.104167 614.416667 795.886719 614.416667 788.96875 607.77474 C 782.049479 601.132812 782.049479 590.363281 788.96875 583.721354 C 795.886719 577.079427 807.104167 577.079427 814.023438 583.721354 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="556.9892" y="647.988103"/>
-</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 858.526042 531.28125 C 865.44401 537.923177 865.44401 548.691406 858.526042 555.333333 C 851.606771 561.97526 840.389323 561.97526 833.470052 555.333333 C 826.552083 548.691406 826.552083 537.923177 833.470052 531.28125 C 840.389323 524.639323 851.606771 524.639323 858.526042 531.28125 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="695.4901" y="490.665303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 884.585938 279.226562 C 905.34375 299.152344 905.34375 331.460938 884.585938 351.386719 C 863.832031 371.3125 830.179688 371.3125 809.421875 351.386719 C 788.664062 331.460938 788.664062 299.152344 809.421875 279.226562 C 830.179688 259.300781 863.832031 259.300781 884.585938 279.226562 "/>
-<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 905.861979 479.075521 C 912.78125 485.717448 912.78125 496.486979 905.861979 503.128906 C 898.94401 509.770833 887.72526 509.770833 880.807292 503.128906 C 873.888021 496.486979 873.888021 485.717448 880.807292 479.075521 C 887.72526 472.433594 898.94401 472.433594 905.861979 479.075521 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="830.804" y="334.051103"/>
-</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 948.669271 531.28125 C 955.588542 537.923177 955.588542 548.691406 948.669271 555.333333 C 941.75 561.97526 930.532552 561.97526 923.614583 555.333333 C 916.695312 548.691406 916.695312 537.923177 923.614583 531.28125 C 930.532552 524.639323 941.75 524.639323 948.669271 531.28125 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="959.4142" y="490.665303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1140.566406 593.164062 C 1161.324219 613.089844 1161.324219 645.398438 1140.566406 665.324219 C 1119.808594 685.25 1086.15625 685.25 1065.402344 665.324219 C 1044.644531 645.398438 1044.644531 613.089844 1065.402344 593.164062 C 1086.15625 573.238281 1119.808594 573.238281 1140.566406 593.164062 "/>
-<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 991.188802 583.721354 C 998.108073 590.363281 998.108073 601.132812 991.188802 607.77474 C 984.270833 614.416667 973.052083 614.416667 966.134115 607.77474 C 959.214844 601.132812 959.214844 590.363281 966.134115 583.721354 C 973.052083 577.079427 984.270833 577.079427 991.188802 583.721354 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="1070.104" y="646.572103"/>
-  <use xlink:href="#glyph0-5" x="1101.208" y="646.572103"/>
-</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 834.807292 556.49349 L 812.686198 582.561198 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<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 857.630208 530.477865 L 881.701823 503.93099 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<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 904.294271 504.467448 L 925.182292 529.941406 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<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 947.02474 556.729167 L 967.778646 582.325521 " transform="matrix(3,0,0,3,-1833,-1158)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="557.9882" y="742.595733"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="961.9252" y="585.272903"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-7" x="1089.484" y="742.595733"/>
-</g>
-</g>
-</svg>
--- a/slide/s6/images/regex/stateasta3.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,147 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="780pt" height="1074pt" viewBox="0 0 780 1074" version="1.1">
-<defs>
-<g>
-<symbol overflow="visible" id="glyph0-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-1">
-<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-2">
-<path style="stroke:none;" d="M 19.21875 0 L 19.21875 -38.28125 L 15.71875 -38.28125 C 15.46875 -36.84375 15 -35.65625 14.3125 -34.71875 C 13.625 -33.78125 12.785156 -33.039062 11.796875 -32.5 C 10.804688 -31.96875 9.695312 -31.601562 8.46875 -31.40625 C 7.25 -31.207031 5.992188 -31.109375 4.703125 -31.109375 L 4.703125 -27.4375 L 14.640625 -27.4375 L 14.640625 0 Z M 19.21875 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-3">
-<path style="stroke:none;" d="M 18.3125 -13.015625 L 5.453125 -13.015625 L 18.203125 -31.75 L 18.3125 -31.75 Z M 22.625 -13.015625 L 22.625 -38.28125 L 18.953125 -38.28125 L 1.515625 -13.390625 L 1.515625 -8.96875 L 18.3125 -8.96875 L 18.3125 0 L 22.625 0 L 22.625 -8.96875 L 27.8125 -8.96875 L 27.8125 -13.015625 Z M 22.625 -13.015625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-4">
-<path style="stroke:none;" d="M 18.03125 -15.5 L 18.03125 -27.328125 L 14.359375 -27.328125 L 14.359375 -15.5 L 2.59375 -15.5 L 2.59375 -11.828125 L 14.359375 -11.828125 L 14.359375 0 L 18.03125 0 L 18.03125 -11.828125 L 29.8125 -11.828125 L 29.8125 -15.5 Z M 18.03125 -15.5 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-5">
-<path style="stroke:none;" d="M 10.859375 -32.453125 L 10.859375 -38.5625 L 7.984375 -38.5625 L 7.984375 -32.453125 L 2.265625 -34.609375 L 1.296875 -32.015625 L 7.015625 -29.96875 L 3.515625 -25.0625 L 5.9375 -23.375 L 9.453125 -28.5625 L 13.171875 -23.375 L 15.390625 -25.0625 L 11.828125 -29.96875 L 17.71875 -32.015625 L 16.625 -34.609375 Z M 10.859375 -32.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-6">
-<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-7">
-<path style="stroke:none;" d="M 22.40625 -18.953125 L 27.15625 -18.953125 C 26.976562 -20.609375 26.546875 -22.039062 25.859375 -23.25 C 25.179688 -24.457031 24.3125 -25.457031 23.25 -26.25 C 22.1875 -27.039062 20.960938 -27.625 19.578125 -28 C 18.191406 -28.375 16.707031 -28.5625 15.125 -28.5625 C 12.925781 -28.5625 11 -28.175781 9.34375 -27.40625 C 7.6875 -26.632812 6.304688 -25.570312 5.203125 -24.21875 C 4.109375 -22.863281 3.289062 -21.273438 2.75 -19.453125 C 2.207031 -17.640625 1.9375 -15.691406 1.9375 -13.609375 C 1.9375 -11.515625 2.21875 -9.59375 2.78125 -7.84375 C 3.34375 -6.101562 4.171875 -4.601562 5.265625 -3.34375 C 6.359375 -2.082031 7.722656 -1.109375 9.359375 -0.421875 C 11.003906 0.253906 12.890625 0.59375 15.015625 0.59375 C 18.578125 0.59375 21.390625 -0.335938 23.453125 -2.203125 C 25.523438 -4.078125 26.816406 -6.742188 27.328125 -10.203125 L 22.625 -10.203125 C 22.332031 -8.046875 21.546875 -6.375 20.265625 -5.1875 C 18.992188 -4 17.222656 -3.40625 14.953125 -3.40625 C 13.515625 -3.40625 12.273438 -3.691406 11.234375 -4.265625 C 10.191406 -4.835938 9.34375 -5.597656 8.6875 -6.546875 C 8.039062 -7.503906 7.5625 -8.59375 7.25 -9.8125 C 6.945312 -11.039062 6.796875 -12.304688 6.796875 -13.609375 C 6.796875 -15.015625 6.941406 -16.375 7.234375 -17.6875 C 7.523438 -19 8.003906 -20.160156 8.671875 -21.171875 C 9.335938 -22.179688 10.226562 -22.988281 11.34375 -23.59375 C 12.457031 -24.207031 13.84375 -24.515625 15.5 -24.515625 C 17.4375 -24.515625 18.984375 -24.023438 20.140625 -23.046875 C 21.296875 -22.078125 22.050781 -20.710938 22.40625 -18.953125 Z M 22.40625 -18.953125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-8">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-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="glyph1-1">
-<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="glyph1-2">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<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="glyph1-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="glyph1-5">
-<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="glyph1-6">
-<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="glyph1-7">
-<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="glyph1-8">
-<path style="stroke:none;" d="M 19.921875 -16.84375 L 24.140625 -16.84375 C 23.984375 -18.320312 23.597656 -19.59375 22.984375 -20.65625 C 22.378906 -21.726562 21.601562 -22.617188 20.65625 -23.328125 C 19.71875 -24.035156 18.628906 -24.554688 17.390625 -24.890625 C 16.160156 -25.222656 14.84375 -25.390625 13.4375 -25.390625 C 11.488281 -25.390625 9.773438 -25.046875 8.296875 -24.359375 C 6.828125 -23.671875 5.601562 -22.726562 4.625 -21.53125 C 3.65625 -20.332031 2.929688 -18.921875 2.453125 -17.296875 C 1.972656 -15.679688 1.734375 -13.945312 1.734375 -12.09375 C 1.734375 -10.238281 1.976562 -8.535156 2.46875 -6.984375 C 2.96875 -5.429688 3.703125 -4.09375 4.671875 -2.96875 C 5.648438 -1.851562 6.867188 -0.988281 8.328125 -0.375 C 9.785156 0.226562 11.457031 0.53125 13.34375 0.53125 C 16.507812 0.53125 19.007812 -0.300781 20.84375 -1.96875 C 22.6875 -3.632812 23.832031 -6.003906 24.28125 -9.078125 L 20.109375 -9.078125 C 19.859375 -7.148438 19.160156 -5.660156 18.015625 -4.609375 C 16.878906 -3.554688 15.304688 -3.03125 13.296875 -3.03125 C 12.015625 -3.03125 10.910156 -3.285156 9.984375 -3.796875 C 9.054688 -4.304688 8.300781 -4.984375 7.71875 -5.828125 C 7.144531 -6.679688 6.722656 -7.648438 6.453125 -8.734375 C 6.179688 -9.828125 6.046875 -10.945312 6.046875 -12.09375 C 6.046875 -13.34375 6.171875 -14.550781 6.421875 -15.71875 C 6.679688 -16.882812 7.109375 -17.914062 7.703125 -18.8125 C 8.296875 -19.707031 9.085938 -20.425781 10.078125 -20.96875 C 11.066406 -21.519531 12.300781 -21.796875 13.78125 -21.796875 C 15.507812 -21.796875 16.882812 -21.363281 17.90625 -20.5 C 18.925781 -19.632812 19.597656 -18.414062 19.921875 -16.84375 Z M 19.921875 -16.84375 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="780" height="1074" 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 125.90625 702.9375 C 146.660156 722.863281 146.660156 755.167969 125.90625 775.09375 C 105.148438 795.019531 71.496094 795.019531 50.742188 775.09375 C 29.984375 755.167969 29.984375 722.863281 50.742188 702.9375 C 71.496094 683.011719 105.148438 683.011719 125.90625 702.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 1954.967448 284.3125 C 1961.886719 290.954427 1961.886719 301.722656 1954.967448 308.364583 C 1948.049479 315.00651 1936.832031 315.00651 1929.91276 308.364583 C 1922.994792 301.722656 1922.994792 290.954427 1929.91276 284.3125 C 1936.832031 277.670573 1948.049479 277.670573 1954.967448 284.3125 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="73.82389" y="757.759803"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="74.82289" y="852.367403"/>
-</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 2156.227865 284.3125 C 2163.147135 290.954427 2163.147135 301.722656 2156.227865 308.364583 C 2149.309896 315.00651 2138.092448 315.00651 2131.173177 308.364583 C 2124.255208 301.722656 2124.255208 290.954427 2131.173177 284.3125 C 2138.092448 277.670573 2149.309896 277.670573 2156.227865 284.3125 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="659.2224" y="756.343803"/>
-  <use xlink:href="#glyph1-3" x="690.3264" y="756.343803"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="678.6024" y="852.367403"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 176.929688 207.9375 C 197.683594 227.863281 197.683594 260.167969 176.929688 280.09375 C 156.171875 300.019531 122.519531 300.019531 101.765625 280.09375 C 81.007812 260.167969 81.007812 227.863281 101.765625 207.9375 C 122.519531 188.011719 156.171875 188.011719 176.929688 207.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 1971.976562 119.3125 C 1978.894531 125.954427 1978.894531 136.722656 1971.976562 143.364583 C 1965.058594 150.00651 1953.839844 150.00651 1946.920573 143.364583 C 1940.002604 136.722656 1940.002604 125.954427 1946.920573 119.3125 C 1953.839844 112.670573 1965.058594 112.670573 1971.976562 119.3125 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="124.3345" y="262.759803"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 427.796875 207.9375 C 448.550781 227.863281 448.550781 260.167969 427.796875 280.09375 C 407.039062 300.019531 373.386719 300.019531 352.628906 280.09375 C 331.875 260.167969 331.875 227.863281 352.628906 207.9375 C 373.386719 188.011719 407.039062 188.011719 427.796875 207.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 2055.597656 119.3125 C 2062.516927 125.954427 2062.516927 136.722656 2055.597656 143.364583 C 2048.679688 150.00651 2037.46224 150.00651 2030.542969 143.364583 C 2023.625 136.722656 2023.625 125.954427 2030.542969 119.3125 C 2037.46224 112.670573 2048.679688 112.670573 2055.597656 119.3125 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="375.2007" y="262.759803"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="245.5136" y="214.217803"/>
-</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 1977.165365 131.338542 L 2015.454427 131.338542 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<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 2023.454427 131.338542 L 2015.454427 128.338542 L 2015.454427 134.338542 Z M 2023.454427 131.338542 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<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 2007.122396 236.240885 C 2014.040365 242.882812 2014.040365 253.652344 2007.122396 260.294271 C 2000.203125 266.936198 1988.985677 266.936198 1982.066406 260.294271 C 1975.148438 253.652344 1975.148438 242.882812 1982.066406 236.240885 C 1988.985677 229.598958 2000.203125 229.598958 2007.122396 236.240885 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="228.5835" y="613.547203"/>
-</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 1955.221354 284.559896 L 1981.815104 260.046875 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 427.796875 702.9375 C 448.550781 722.863281 448.550781 755.167969 427.796875 775.09375 C 407.039062 795.019531 373.386719 795.019531 352.628906 775.09375 C 331.875 755.167969 331.875 722.863281 352.628906 702.9375 C 373.386719 683.011719 407.039062 683.011719 427.796875 702.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 2055.597656 284.3125 C 2062.516927 290.954427 2062.516927 301.722656 2055.597656 308.364583 C 2048.679688 315.00651 2037.46224 315.00651 2030.542969 308.364583 C 2023.625 301.722656 2023.625 290.954427 2030.542969 284.3125 C 2037.46224 277.670573 2048.679688 277.670573 2055.597656 284.3125 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="380.7087" y="757.759803"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="231.2835" y="1018.548483"/>
-</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 2006.916667 260.486979 L 2030.747396 284.11849 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-7" x="375.9807" y="90.911003"/>
-</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 2054.359375 118.229167 C 2059.179688 111.660156 2063.205729 104.209635 2060.786458 99.921875 C 2055.768229 91.020833 2030.373698 91.020833 2025.354167 99.921875 C 2023.947917 102.415365 2024.721354 105.979167 2026.5625 109.817708 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 353.339844 199.84375 L 348.335938 174.707031 L 333.039062 184.195312 Z M 353.339844 199.84375 "/>
-<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 2030.779948 116.614583 L 2029.110677 108.235677 L 2024.013021 111.398438 Z M 2030.779948 116.614583 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<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 2007.122396 339.705729 C 2014.040365 346.347656 2014.040365 357.117188 2007.122396 363.759115 C 2000.203125 370.401042 1988.985677 370.401042 1982.066406 363.759115 C 1975.148438 357.117188 1975.148438 346.347656 1982.066406 339.705729 C 1988.985677 333.063802 2000.203125 333.063802 2007.122396 339.705729 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="228.7725" y="923.940903"/>
-</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 2005.990885 338.709635 L 2031.674479 309.361979 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 427.796875 409.90625 C 448.550781 429.832031 448.550781 462.136719 427.796875 482.0625 C 407.039062 501.988281 373.386719 501.988281 352.628906 482.0625 C 331.875 462.136719 331.875 429.832031 352.628906 409.90625 C 373.386719 389.980469 407.039062 389.980469 427.796875 409.90625 "/>
-<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 2055.597656 186.635417 C 2062.516927 193.277344 2062.516927 204.045573 2055.597656 210.6875 C 2048.679688 217.329427 2037.46224 217.329427 2030.542969 210.6875 C 2023.625 204.045573 2023.625 193.277344 2030.542969 186.635417 C 2037.46224 179.99349 2048.679688 179.99349 2055.597656 186.635417 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="374.0127" y="464.728303"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 571.5 558.722656 C 592.257812 578.648438 592.257812 610.957031 571.5 630.882812 C 550.742188 650.808594 517.089844 650.808594 496.335938 630.882812 C 475.578125 610.957031 475.578125 578.648438 496.335938 558.722656 C 517.089844 538.796875 550.742188 538.796875 571.5 558.722656 "/>
-<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 2103.5 236.240885 C 2110.419271 242.882812 2110.419271 253.652344 2103.5 260.294271 C 2096.580729 266.936198 2085.364583 266.936198 2078.445312 260.294271 C 2071.526042 253.652344 2071.526042 242.882812 2078.445312 236.240885 C 2085.364583 229.598958 2096.580729 229.598958 2103.5 236.240885 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-7" x="519.4184" y="613.547203"/>
-</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 2030.949219 211.065104 L 2006.716146 235.863281 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<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 2055.114583 211.134115 L 2078.928385 235.794271 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<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 2103.81901 259.979167 L 2130.854167 284.626302 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<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 2060.786458 131.338542 L 2099.075521 131.338542 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 582.230469 244.015625 L 558.230469 235.015625 L 558.230469 253.015625 Z M 582.230469 244.015625 "/>
-<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 2107.075521 131.338542 L 2099.075521 128.338542 L 2099.075521 134.338542 Z M 2107.075521 131.338542 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 678.660156 207.9375 C 699.417969 227.863281 699.417969 260.167969 678.660156 280.09375 C 657.90625 300.019531 624.253906 300.019531 603.496094 280.09375 C 582.738281 260.167969 582.738281 227.863281 603.496094 207.9375 C 624.253906 188.011719 657.90625 188.011719 678.660156 207.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 2139.220052 119.3125 C 2146.139323 125.954427 2146.139323 136.722656 2139.220052 143.364583 C 2132.302083 150.00651 2121.084635 150.00651 2114.165365 143.364583 C 2107.247396 136.722656 2107.247396 125.954427 2114.165365 119.3125 C 2121.084635 112.670573 2132.302083 112.670573 2139.220052 119.3125 " transform="matrix(3,0,0,3,-5739,-150)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-8" x="626.0668" y="262.759803"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="520.4174" y="708.154803"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-8" x="504.8837" y="214.217803"/>
-</g>
-</g>
-</svg>
--- a/slide/s6/images/regex/stateselect.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,120 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="990pt" height="726pt" viewBox="0 0 990 726" 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=""/>
-</symbol>
-<symbol overflow="visible" id="glyph0-3">
-<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-4">
-<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-5">
-<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-6">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-7">
-<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-8">
-<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-9">
-<path style="stroke:none;" d="M 3.984375 -5.328125 L 3.984375 0 L 6.8125 0 C 6.84375 0.382812 6.816406 0.800781 6.734375 1.25 C 6.660156 1.695312 6.507812 2.132812 6.28125 2.5625 C 6.0625 3 5.765625 3.398438 5.390625 3.765625 C 5.023438 4.128906 4.570312 4.410156 4.03125 4.609375 L 4.03125 7.015625 C 5.882812 6.460938 7.226562 5.53125 8.0625 4.21875 C 8.894531 2.90625 9.3125 1.335938 9.3125 -0.484375 L 9.3125 -5.328125 Z M 3.984375 -5.328125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 4.15625 -42.4375 L 4.15625 11.5 L 7.828125 11.5 L 7.828125 -42.4375 Z M 4.15625 -42.4375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 19.21875 0 L 19.21875 -38.28125 L 15.71875 -38.28125 C 15.46875 -36.84375 15 -35.65625 14.3125 -34.71875 C 13.625 -33.78125 12.785156 -33.039062 11.796875 -32.5 C 10.804688 -31.96875 9.695312 -31.601562 8.46875 -31.40625 C 7.25 -31.207031 5.992188 -31.109375 4.703125 -31.109375 L 4.703125 -27.4375 L 14.640625 -27.4375 L 14.640625 0 Z M 19.21875 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="990" height="726" 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="43.81891" y="119.894903"/>
-  <use xlink:href="#glyph0-2" x="69.59491" y="119.894903"/>
-  <use xlink:href="#glyph0-3" x="82.93891" y="119.894903"/>
-  <use xlink:href="#glyph0-2" x="93.59491" y="119.894903"/>
-  <use xlink:href="#glyph0-4" x="106.93891" y="119.894903"/>
-</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 250.216146 465.611979 C 257.135417 472.253906 257.135417 483.022135 250.216146 489.664062 C 243.298177 496.30599 232.080729 496.30599 225.161458 489.664062 C 218.242188 483.022135 218.242188 472.253906 225.161458 465.611979 C 232.080729 458.96875 243.298177 458.96875 250.216146 465.611979 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="587.0729" y="284.657403"/>
-</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 206.279948 513.800781 C 213.197917 520.442708 213.197917 531.210938 206.279948 537.852865 C 199.360677 544.494792 188.143229 544.494792 181.223958 537.852865 C 174.30599 531.210938 174.30599 520.442708 181.223958 513.800781 C 188.143229 507.158854 199.360677 507.158854 206.279948 513.800781 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="446.7569" y="429.224303"/>
-</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 294.153646 513.800781 C 301.071615 520.442708 301.071615 531.210938 294.153646 537.852865 C 287.234375 544.494792 276.016927 544.494792 269.098958 537.852865 C 262.179688 531.210938 262.179688 520.442708 269.098958 513.800781 C 276.016927 507.158854 287.234375 507.158854 294.153646 513.800781 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="708.867" y="429.224303"/>
-</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 226.019531 490.436198 L 205.420573 513.028646 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<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 249.358073 490.436198 L 269.957031 513.028646 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="447.7559" y="523.832003"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="711.378" y="523.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 340.924479 561.989583 C 347.84375 568.63151 347.84375 579.39974 340.924479 586.041667 C 334.00651 592.683594 322.789062 592.683594 315.869792 586.041667 C 308.951823 579.39974 308.951823 568.63151 315.869792 561.989583 C 322.789062 555.347656 334.00651 555.347656 340.924479 561.989583 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="832.3129" y="572.375303"/>
-  <use xlink:href="#glyph0-7" x="863.4169" y="572.375303"/>
-</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 293.703125 538.270833 L 316.320312 561.571615 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-8" x="851.6929" y="668.398883"/>
-</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 250.216146 561.989583 C 257.135417 568.63151 257.135417 579.39974 250.216146 586.041667 C 243.298177 592.683594 232.080729 592.683594 225.161458 586.041667 C 218.242188 579.39974 218.242188 568.63151 225.161458 561.989583 C 232.080729 555.347656 243.298177 555.347656 250.216146 561.989583 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-6" x="560.1869" y="572.375303"/>
-  <use xlink:href="#glyph0-7" x="591.2909" y="572.375303"/>
-</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 205.420573 538.625 L 226.019531 561.217448 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-8" x="579.5669" y="668.398883"/>
-</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 171.976562 416.950521 C 178.894531 423.592448 178.894531 434.360677 171.976562 441.002604 C 165.057292 447.644531 153.839844 447.644531 146.921875 441.002604 C 140.002604 434.360677 140.002604 423.592448 146.921875 416.950521 C 153.839844 410.308594 165.057292 410.308594 171.976562 416.950521 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="343.3345" y="138.673103"/>
-</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 353.393229 416.950521 C 360.3125 423.592448 360.3125 434.360677 353.393229 441.002604 C 346.47526 447.644531 335.257812 447.644531 328.338542 441.002604 C 321.419271 434.360677 321.419271 423.592448 328.338542 416.950521 C 335.257812 410.308594 346.47526 410.308594 353.393229 416.950521 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="887.5864" y="138.673103"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="583.3364" y="90.131203"/>
-  <use xlink:href="#glyph0-2" x="609.1124" y="90.131203"/>
-  <use xlink:href="#glyph0-9" x="622.4564" y="90.131203"/>
-  <use xlink:href="#glyph0-2" x="635.8004" y="90.131203"/>
-  <use xlink:href="#glyph0-4" x="649.1444" y="90.131203"/>
-</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 177.165365 428.976562 L 313.25 428.976562 " transform="matrix(3,0,0,3,-120,-1167)"/>
-<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 321.25 428.976562 L 313.25 425.976562 L 313.25 431.976562 Z M 321.25 428.976562 " transform="matrix(3,0,0,3,-120,-1167)"/>
-</g>
-</svg>
--- a/slide/s6/images/regex/stateselectasta.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,172 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1338pt" height="936pt" viewBox="0 0 1338 936" 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=""/>
-</symbol>
-<symbol overflow="visible" id="glyph0-2">
-<path style="stroke:none;" d="M 9.796875 9.453125 L 12.90625 9.453125 C 10.632812 5.773438 9.007812 2.128906 8.03125 -1.484375 C 7.0625 -5.097656 6.578125 -8.921875 6.578125 -12.953125 C 6.578125 -16.890625 7.054688 -20.648438 8.015625 -24.234375 C 8.972656 -27.816406 10.601562 -31.4375 12.90625 -35.09375 L 9.796875 -35.09375 C 7.296875 -31.789062 5.410156 -28.21875 4.140625 -24.375 C 2.878906 -20.539062 2.25 -16.734375 2.25 -12.953125 C 2.25 -10.847656 2.425781 -8.832031 2.78125 -6.90625 C 3.132812 -4.988281 3.640625 -3.117188 4.296875 -1.296875 C 4.953125 0.523438 5.742188 2.320312 6.671875 4.09375 C 7.597656 5.875 8.640625 7.660156 9.796875 9.453125 Z M 9.796875 9.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-3">
-<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-4">
-<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-5">
-<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-6">
-<path style="stroke:none;" d="M -0.4375 9.453125 L 2.640625 9.453125 C 5.140625 6.160156 7.019531 2.601562 8.28125 -1.21875 C 9.539062 -5.039062 10.171875 -8.84375 10.171875 -12.625 C 10.171875 -14.738281 9.992188 -16.753906 9.640625 -18.671875 C 9.296875 -20.585938 8.796875 -22.46875 8.140625 -24.3125 C 7.484375 -26.15625 6.691406 -27.960938 5.765625 -29.734375 C 4.835938 -31.515625 3.796875 -33.300781 2.640625 -35.09375 L -0.4375 -35.09375 C 1.800781 -31.40625 3.410156 -27.742188 4.390625 -24.109375 C 5.367188 -20.484375 5.859375 -16.65625 5.859375 -12.625 C 5.859375 -8.71875 5.375 -4.960938 4.40625 -1.359375 C 3.445312 2.234375 1.832031 5.835938 -0.4375 9.453125 Z M -0.4375 9.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-7">
-<path style="stroke:none;" d="M 9.640625 -28.84375 L 9.640625 -34.265625 L 7.109375 -34.265625 L 7.109375 -28.84375 L 2.015625 -30.765625 L 1.15625 -28.46875 L 6.234375 -26.640625 L 3.125 -22.265625 L 5.28125 -20.78125 L 8.40625 -25.390625 L 11.71875 -20.78125 L 13.6875 -22.265625 L 10.515625 -26.640625 L 15.75 -28.46875 L 14.78125 -30.765625 Z M 9.640625 -28.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-8">
-<path style="stroke:none;" d="M 19.921875 -16.84375 L 24.140625 -16.84375 C 23.984375 -18.320312 23.597656 -19.59375 22.984375 -20.65625 C 22.378906 -21.726562 21.601562 -22.617188 20.65625 -23.328125 C 19.71875 -24.035156 18.628906 -24.554688 17.390625 -24.890625 C 16.160156 -25.222656 14.84375 -25.390625 13.4375 -25.390625 C 11.488281 -25.390625 9.773438 -25.046875 8.296875 -24.359375 C 6.828125 -23.671875 5.601562 -22.726562 4.625 -21.53125 C 3.65625 -20.332031 2.929688 -18.921875 2.453125 -17.296875 C 1.972656 -15.679688 1.734375 -13.945312 1.734375 -12.09375 C 1.734375 -10.238281 1.976562 -8.535156 2.46875 -6.984375 C 2.96875 -5.429688 3.703125 -4.09375 4.671875 -2.96875 C 5.648438 -1.851562 6.867188 -0.988281 8.328125 -0.375 C 9.785156 0.226562 11.457031 0.53125 13.34375 0.53125 C 16.507812 0.53125 19.007812 -0.300781 20.84375 -1.96875 C 22.6875 -3.632812 23.832031 -6.003906 24.28125 -9.078125 L 20.109375 -9.078125 C 19.859375 -7.148438 19.160156 -5.660156 18.015625 -4.609375 C 16.878906 -3.554688 15.304688 -3.03125 13.296875 -3.03125 C 12.015625 -3.03125 10.910156 -3.285156 9.984375 -3.796875 C 9.054688 -4.304688 8.300781 -4.984375 7.71875 -5.828125 C 7.144531 -6.679688 6.722656 -7.648438 6.453125 -8.734375 C 6.179688 -9.828125 6.046875 -10.945312 6.046875 -12.09375 C 6.046875 -13.34375 6.171875 -14.550781 6.421875 -15.71875 C 6.679688 -16.882812 7.109375 -17.914062 7.703125 -18.8125 C 8.296875 -19.707031 9.085938 -20.425781 10.078125 -20.96875 C 11.066406 -21.519531 12.300781 -21.796875 13.78125 -21.796875 C 15.507812 -21.796875 16.882812 -21.363281 17.90625 -20.5 C 18.925781 -19.632812 19.597656 -18.414062 19.921875 -16.84375 Z M 19.921875 -16.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-9">
-<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-10">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-11">
-<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-12">
-<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-13">
-<path style="stroke:none;" d="M 3.984375 -5.328125 L 3.984375 0 L 6.8125 0 C 6.84375 0.382812 6.816406 0.800781 6.734375 1.25 C 6.660156 1.695312 6.507812 2.132812 6.28125 2.5625 C 6.0625 3 5.765625 3.398438 5.390625 3.765625 C 5.023438 4.128906 4.570312 4.410156 4.03125 4.609375 L 4.03125 7.015625 C 5.882812 6.460938 7.226562 5.53125 8.0625 4.21875 C 8.894531 2.90625 9.3125 1.335938 9.3125 -0.484375 L 9.3125 -5.328125 Z M 3.984375 -5.328125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 4.15625 -42.4375 L 4.15625 11.5 L 7.828125 11.5 L 7.828125 -42.4375 Z M 4.15625 -42.4375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 19.21875 0 L 19.21875 -38.28125 L 15.71875 -38.28125 C 15.46875 -36.84375 15 -35.65625 14.3125 -34.71875 C 13.625 -33.78125 12.785156 -33.039062 11.796875 -32.5 C 10.804688 -31.96875 9.695312 -31.601562 8.46875 -31.40625 C 7.25 -31.207031 5.992188 -31.109375 4.703125 -31.109375 L 4.703125 -27.4375 L 14.640625 -27.4375 L 14.640625 0 Z M 19.21875 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 10.859375 -32.453125 L 10.859375 -38.5625 L 7.984375 -38.5625 L 7.984375 -32.453125 L 2.265625 -34.609375 L 1.296875 -32.015625 L 7.015625 -29.96875 L 3.515625 -25.0625 L 5.9375 -23.375 L 9.453125 -28.5625 L 13.171875 -23.375 L 15.390625 -25.0625 L 11.828125 -29.96875 L 17.71875 -32.015625 L 16.625 -34.609375 Z M 10.859375 -32.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 22.40625 -18.953125 L 27.15625 -18.953125 C 26.976562 -20.609375 26.546875 -22.039062 25.859375 -23.25 C 25.179688 -24.457031 24.3125 -25.457031 23.25 -26.25 C 22.1875 -27.039062 20.960938 -27.625 19.578125 -28 C 18.191406 -28.375 16.707031 -28.5625 15.125 -28.5625 C 12.925781 -28.5625 11 -28.175781 9.34375 -27.40625 C 7.6875 -26.632812 6.304688 -25.570312 5.203125 -24.21875 C 4.109375 -22.863281 3.289062 -21.273438 2.75 -19.453125 C 2.207031 -17.640625 1.9375 -15.691406 1.9375 -13.609375 C 1.9375 -11.515625 2.21875 -9.59375 2.78125 -7.84375 C 3.34375 -6.101562 4.171875 -4.601562 5.265625 -3.34375 C 6.359375 -2.082031 7.722656 -1.109375 9.359375 -0.421875 C 11.003906 0.253906 12.890625 0.59375 15.015625 0.59375 C 18.578125 0.59375 21.390625 -0.335938 23.453125 -2.203125 C 25.523438 -4.078125 26.816406 -6.742188 27.328125 -10.203125 L 22.625 -10.203125 C 22.332031 -8.046875 21.546875 -6.375 20.265625 -5.1875 C 18.992188 -4 17.222656 -3.40625 14.953125 -3.40625 C 13.515625 -3.40625 12.273438 -3.691406 11.234375 -4.265625 C 10.191406 -4.835938 9.34375 -5.597656 8.6875 -6.546875 C 8.039062 -7.503906 7.5625 -8.59375 7.25 -9.8125 C 6.945312 -11.039062 6.796875 -12.304688 6.796875 -13.609375 C 6.796875 -15.015625 6.941406 -16.375 7.234375 -17.6875 C 7.523438 -19 8.003906 -20.160156 8.671875 -21.171875 C 9.335938 -22.179688 10.226562 -22.988281 11.34375 -23.59375 C 12.457031 -24.207031 13.84375 -24.515625 15.5 -24.515625 C 17.4375 -24.515625 18.984375 -24.023438 20.140625 -23.046875 C 21.296875 -22.078125 22.050781 -20.710938 22.40625 -18.953125 Z M 22.40625 -18.953125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-7">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-8">
-<path style="stroke:none;" d="M 18.03125 -15.5 L 18.03125 -27.328125 L 14.359375 -27.328125 L 14.359375 -15.5 L 2.59375 -15.5 L 2.59375 -11.828125 L 14.359375 -11.828125 L 14.359375 0 L 18.03125 0 L 18.03125 -11.828125 L 29.8125 -11.828125 L 29.8125 -15.5 Z M 18.03125 -15.5 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1338" height="936" 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="42.11817" y="89.493403"/>
-  <use xlink:href="#glyph0-2" x="55.46217" y="89.493403"/>
-  <use xlink:href="#glyph0-1" x="67.89417" y="89.493403"/>
-  <use xlink:href="#glyph0-3" x="81.23817" y="89.493403"/>
-  <use xlink:href="#glyph0-1" x="107.01417" y="89.493403"/>
-  <use xlink:href="#glyph0-4" x="120.35817" y="89.493403"/>
-  <use xlink:href="#glyph0-1" x="131.01417" y="89.493403"/>
-  <use xlink:href="#glyph0-5" x="144.35817" y="89.493403"/>
-  <use xlink:href="#glyph0-1" x="172.82217" y="89.493403"/>
-  <use xlink:href="#glyph0-6" x="186.16617" y="89.493403"/>
-  <use xlink:href="#glyph0-1" x="198.59817" y="89.493403"/>
-  <use xlink:href="#glyph0-7" x="211.94217" y="89.493403"/>
-  <use xlink:href="#glyph0-1" x="228.83817" y="89.493403"/>
-  <use xlink:href="#glyph0-8" x="242.18217" y="89.493403"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 687.613281 585.121094 C 708.371094 605.046875 708.371094 637.355469 687.613281 657.28125 C 666.859375 677.207031 633.207031 677.207031 612.449219 657.28125 C 591.691406 637.355469 591.691406 605.046875 612.449219 585.121094 C 633.207031 565.195312 666.859375 565.195312 687.613281 585.121094 "/>
-<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 1385.204427 590.040365 C 1392.122396 596.682292 1392.122396 607.451823 1385.204427 614.09375 C 1378.286458 620.735677 1367.067708 620.735677 1360.14974 614.09375 C 1353.230469 607.451823 1353.230469 596.682292 1360.14974 590.040365 C 1367.067708 583.398438 1378.286458 583.398438 1385.204427 590.040365 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="644.0375" y="639.944803"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 555.804688 729.6875 C 576.558594 749.613281 576.558594 781.921875 555.804688 801.847656 C 535.046875 821.773438 501.394531 821.773438 480.636719 801.847656 C 459.882812 781.921875 459.882812 749.613281 480.636719 729.6875 C 501.394531 709.761719 535.046875 709.761719 555.804688 729.6875 "/>
-<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 1341.268229 638.229167 C 1348.186198 644.871094 1348.186198 655.640625 1341.268229 662.282552 C 1334.348958 668.924479 1323.13151 668.924479 1316.213542 662.282552 C 1309.294271 655.640625 1309.294271 644.871094 1316.213542 638.229167 C 1323.13151 631.58724 1334.348958 631.58724 1341.268229 638.229167 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="503.7215" y="784.511703"/>
-</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 1429.141927 638.229167 C 1436.059896 644.871094 1436.059896 655.640625 1429.141927 662.282552 C 1422.222656 668.924479 1411.005208 668.924479 1404.08724 662.282552 C 1397.167969 655.640625 1397.167969 644.871094 1404.08724 638.229167 C 1411.005208 631.58724 1422.222656 631.58724 1429.141927 638.229167 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="765.8316" y="784.511703"/>
-</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 1361.007812 614.865885 L 1340.408854 637.457031 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<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 1384.346354 614.865885 L 1404.945312 637.457031 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="504.7205" y="879.119363"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="768.3426" y="879.119363"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1287.140625 585.121094 C 1307.898438 605.046875 1307.898438 637.355469 1287.140625 657.28125 C 1266.386719 677.207031 1232.734375 677.207031 1211.976562 657.28125 C 1191.21875 637.355469 1191.21875 605.046875 1211.976562 585.121094 C 1232.734375 565.195312 1266.386719 565.195312 1287.140625 585.121094 "/>
-<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 1585.046875 590.040365 C 1591.966146 596.682292 1591.966146 607.451823 1585.046875 614.09375 C 1578.127604 620.735677 1566.911458 620.735677 1559.992188 614.09375 C 1553.072917 607.451823 1553.072917 596.682292 1559.992188 590.040365 C 1566.911458 583.398438 1578.127604 583.398438 1585.046875 590.040365 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-10" x="1216.679" y="638.528803"/>
-  <use xlink:href="#glyph0-11" x="1247.783" y="638.528803"/>
-</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 1531.032552 563.061198 L 1559.861979 590.166667 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-12" x="1236.059" y="734.552403"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 568.558594 218.035156 C 589.316406 237.960938 589.316406 270.265625 568.558594 290.191406 C 547.800781 310.121094 514.148438 310.121094 493.394531 290.191406 C 472.636719 270.265625 472.636719 237.960938 493.394531 218.035156 C 514.148438 198.109375 547.800781 198.109375 568.558594 218.035156 "/>
-<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 1345.519531 467.678385 C 1352.4375 474.320312 1352.4375 485.088542 1345.519531 491.730469 C 1338.601562 498.373698 1327.382812 498.373698 1320.464844 491.730469 C 1313.545573 485.088542 1313.545573 474.320312 1320.464844 467.678385 C 1327.382812 461.036458 1338.601562 461.036458 1345.519531 467.678385 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="515.9644" y="272.858203"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="483.8404" y="102.603603"/>
-  <use xlink:href="#glyph0-1" x="509.6164" y="102.603603"/>
-  <use xlink:href="#glyph0-13" x="522.9604" y="102.603603"/>
-  <use xlink:href="#glyph0-1" x="536.3044" y="102.603603"/>
-  <use xlink:href="#glyph0-5" x="549.6484" y="102.603603"/>
-</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 1344.395833 466.6875 C 1349.510417 459.789062 1353.778646 451.794271 1350.709635 447.098958 C 1344.484375 437.578125 1316.042969 436.860677 1311.023438 446.098958 C 1309.290365 449.286458 1311.372396 454.278646 1314.841146 459.447917 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 491.210938 212.3125 L 483.632812 187.828125 L 469.402344 198.851562 Z M 491.210938 212.3125 "/>
-<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 1319.736979 465.770833 L 1317.210938 457.609375 L 1312.467448 461.282552 Z M 1319.736979 465.770833 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<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 1429.141927 539.135417 C 1436.059896 545.777344 1436.059896 556.545573 1429.141927 563.1875 C 1422.222656 569.829427 1411.005208 569.829427 1404.08724 563.1875 C 1397.167969 556.545573 1397.167969 545.777344 1404.08724 539.135417 C 1411.005208 532.49349 1422.222656 532.49349 1429.141927 539.135417 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="772.3386" y="487.228303"/>
-</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 1383.980469 588.970052 L 1405.309896 564.259115 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1124.703125 432.40625 C 1145.460938 452.332031 1145.460938 484.636719 1124.703125 504.5625 C 1103.949219 524.488281 1070.296875 524.488281 1049.539062 504.5625 C 1028.78125 484.636719 1028.78125 452.332031 1049.539062 432.40625 C 1070.296875 412.480469 1103.949219 412.480469 1124.703125 432.40625 "/>
-<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 1530.901042 539.135417 C 1537.820312 545.777344 1537.820312 556.545573 1530.901042 563.1875 C 1523.983073 569.829427 1512.765625 569.829427 1505.846354 563.1875 C 1498.928385 556.545573 1498.928385 545.777344 1505.846354 539.135417 C 1512.765625 532.49349 1523.983073 532.49349 1530.901042 539.135417 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="1072.623" y="487.228303"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="1073.622" y="581.835903"/>
-</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 1479.50651 509.8125 L 1506.505208 538.533854 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 793.914062 218.035156 C 814.667969 237.960938 814.667969 270.265625 793.914062 290.191406 C 773.15625 310.121094 739.503906 310.121094 718.75 290.191406 C 697.992188 270.265625 697.992188 237.960938 718.75 218.035156 C 739.503906 198.109375 773.15625 198.109375 793.914062 218.035156 "/>
-<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 1420.638021 467.678385 C 1427.55599 474.320312 1427.55599 485.088542 1420.638021 491.730469 C 1413.71875 498.373698 1402.502604 498.373698 1395.583333 491.730469 C 1388.664062 485.088542 1388.664062 474.320312 1395.583333 467.678385 C 1402.502604 461.036458 1413.71875 461.036458 1420.638021 467.678385 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-7" x="741.3187" y="272.858203"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-8" x="641.3955" y="194.552403"/>
-</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 1350.709635 479.704427 L 1380.49349 479.704427 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<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 1388.49349 479.704427 L 1380.49349 476.704427 L 1380.49349 482.704427 Z M 1388.49349 479.704427 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 972.496094 270.476562 C 993.253906 290.402344 993.253906 322.707031 972.496094 342.632812 C 951.738281 362.558594 918.085938 362.558594 897.332031 342.632812 C 876.574219 322.707031 876.574219 290.402344 897.332031 270.476562 C 918.085938 250.550781 951.738281 250.550781 972.496094 270.476562 "/>
-<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 1480.165365 485.158854 C 1487.084635 491.800781 1487.084635 502.56901 1480.165365 509.210938 C 1473.247396 515.852865 1462.028646 515.852865 1455.109375 509.210938 C 1448.191406 502.56901 1448.191406 491.800781 1455.109375 485.158854 C 1462.028646 478.516927 1473.247396 478.516927 1480.165365 485.158854 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-8" x="918.7134" y="325.299103"/>
-</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 1428.519531 538.566406 L 1455.731771 509.779948 " transform="matrix(3,0,0,3,-3468,-1185)"/>
-</g>
-</svg>
--- a/slide/s6/images/regex/stateselseq.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,163 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1194pt" height="801pt" viewBox="0 0 1194 801" 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=""/>
-</symbol>
-<symbol overflow="visible" id="glyph0-2">
-<path style="stroke:none;" d="M 9.796875 9.453125 L 12.90625 9.453125 C 10.632812 5.773438 9.007812 2.128906 8.03125 -1.484375 C 7.0625 -5.097656 6.578125 -8.921875 6.578125 -12.953125 C 6.578125 -16.890625 7.054688 -20.648438 8.015625 -24.234375 C 8.972656 -27.816406 10.601562 -31.4375 12.90625 -35.09375 L 9.796875 -35.09375 C 7.296875 -31.789062 5.410156 -28.21875 4.140625 -24.375 C 2.878906 -20.539062 2.25 -16.734375 2.25 -12.953125 C 2.25 -10.847656 2.425781 -8.832031 2.78125 -6.90625 C 3.132812 -4.988281 3.640625 -3.117188 4.296875 -1.296875 C 4.953125 0.523438 5.742188 2.320312 6.671875 4.09375 C 7.597656 5.875 8.640625 7.660156 9.796875 9.453125 Z M 9.796875 9.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-3">
-<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-4">
-<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-5">
-<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-6">
-<path style="stroke:none;" d="M -0.4375 9.453125 L 2.640625 9.453125 C 5.140625 6.160156 7.019531 2.601562 8.28125 -1.21875 C 9.539062 -5.039062 10.171875 -8.84375 10.171875 -12.625 C 10.171875 -14.738281 9.992188 -16.753906 9.640625 -18.671875 C 9.296875 -20.585938 8.796875 -22.46875 8.140625 -24.3125 C 7.484375 -26.15625 6.691406 -27.960938 5.765625 -29.734375 C 4.835938 -31.515625 3.796875 -33.300781 2.640625 -35.09375 L -0.4375 -35.09375 C 1.800781 -31.40625 3.410156 -27.742188 4.390625 -24.109375 C 5.367188 -20.484375 5.859375 -16.65625 5.859375 -12.625 C 5.859375 -8.71875 5.375 -4.960938 4.40625 -1.359375 C 3.445312 2.234375 1.832031 5.835938 -0.4375 9.453125 Z M -0.4375 9.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-7">
-<path style="stroke:none;" d="M 19.921875 -16.84375 L 24.140625 -16.84375 C 23.984375 -18.320312 23.597656 -19.59375 22.984375 -20.65625 C 22.378906 -21.726562 21.601562 -22.617188 20.65625 -23.328125 C 19.71875 -24.035156 18.628906 -24.554688 17.390625 -24.890625 C 16.160156 -25.222656 14.84375 -25.390625 13.4375 -25.390625 C 11.488281 -25.390625 9.773438 -25.046875 8.296875 -24.359375 C 6.828125 -23.671875 5.601562 -22.726562 4.625 -21.53125 C 3.65625 -20.332031 2.929688 -18.921875 2.453125 -17.296875 C 1.972656 -15.679688 1.734375 -13.945312 1.734375 -12.09375 C 1.734375 -10.238281 1.976562 -8.535156 2.46875 -6.984375 C 2.96875 -5.429688 3.703125 -4.09375 4.671875 -2.96875 C 5.648438 -1.851562 6.867188 -0.988281 8.328125 -0.375 C 9.785156 0.226562 11.457031 0.53125 13.34375 0.53125 C 16.507812 0.53125 19.007812 -0.300781 20.84375 -1.96875 C 22.6875 -3.632812 23.832031 -6.003906 24.28125 -9.078125 L 20.109375 -9.078125 C 19.859375 -7.148438 19.160156 -5.660156 18.015625 -4.609375 C 16.878906 -3.554688 15.304688 -3.03125 13.296875 -3.03125 C 12.015625 -3.03125 10.910156 -3.285156 9.984375 -3.796875 C 9.054688 -4.304688 8.300781 -4.984375 7.71875 -5.828125 C 7.144531 -6.679688 6.722656 -7.648438 6.453125 -8.734375 C 6.179688 -9.828125 6.046875 -10.945312 6.046875 -12.09375 C 6.046875 -13.34375 6.171875 -14.550781 6.421875 -15.71875 C 6.679688 -16.882812 7.109375 -17.914062 7.703125 -18.8125 C 8.296875 -19.707031 9.085938 -20.425781 10.078125 -20.96875 C 11.066406 -21.519531 12.300781 -21.796875 13.78125 -21.796875 C 15.507812 -21.796875 16.882812 -21.363281 17.90625 -20.5 C 18.925781 -19.632812 19.597656 -18.414062 19.921875 -16.84375 Z M 19.921875 -16.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-8">
-<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-9">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-10">
-<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-11">
-<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-12">
-<path style="stroke:none;" d="M 3.984375 -5.328125 L 3.984375 0 L 6.8125 0 C 6.84375 0.382812 6.816406 0.800781 6.734375 1.25 C 6.660156 1.695312 6.507812 2.132812 6.28125 2.5625 C 6.0625 3 5.765625 3.398438 5.390625 3.765625 C 5.023438 4.128906 4.570312 4.410156 4.03125 4.609375 L 4.03125 7.015625 C 5.882812 6.460938 7.226562 5.53125 8.0625 4.21875 C 8.894531 2.90625 9.3125 1.335938 9.3125 -0.484375 L 9.3125 -5.328125 Z M 3.984375 -5.328125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-13">
-<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="glyph1-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 4.15625 -42.4375 L 4.15625 11.5 L 7.828125 11.5 L 7.828125 -42.4375 Z M 4.15625 -42.4375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 19.21875 0 L 19.21875 -38.28125 L 15.71875 -38.28125 C 15.46875 -36.84375 15 -35.65625 14.3125 -34.71875 C 13.625 -33.78125 12.785156 -33.039062 11.796875 -32.5 C 10.804688 -31.96875 9.695312 -31.601562 8.46875 -31.40625 C 7.25 -31.207031 5.992188 -31.109375 4.703125 -31.109375 L 4.703125 -27.4375 L 14.640625 -27.4375 L 14.640625 0 Z M 19.21875 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 18.3125 -13.015625 L 5.453125 -13.015625 L 18.203125 -31.75 L 18.3125 -31.75 Z M 22.625 -13.015625 L 22.625 -38.28125 L 18.953125 -38.28125 L 1.515625 -13.390625 L 1.515625 -8.96875 L 18.3125 -8.96875 L 18.3125 0 L 22.625 0 L 22.625 -8.96875 L 27.8125 -8.96875 L 27.8125 -13.015625 Z M 22.625 -13.015625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 18.03125 -15.5 L 18.03125 -27.328125 L 14.359375 -27.328125 L 14.359375 -15.5 L 2.59375 -15.5 L 2.59375 -11.828125 L 14.359375 -11.828125 L 14.359375 0 L 18.03125 0 L 18.03125 -11.828125 L 29.8125 -11.828125 L 29.8125 -15.5 Z M 18.03125 -15.5 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-7">
-<path style="stroke:none;" d="M 22.40625 -18.953125 L 27.15625 -18.953125 C 26.976562 -20.609375 26.546875 -22.039062 25.859375 -23.25 C 25.179688 -24.457031 24.3125 -25.457031 23.25 -26.25 C 22.1875 -27.039062 20.960938 -27.625 19.578125 -28 C 18.191406 -28.375 16.707031 -28.5625 15.125 -28.5625 C 12.925781 -28.5625 11 -28.175781 9.34375 -27.40625 C 7.6875 -26.632812 6.304688 -25.570312 5.203125 -24.21875 C 4.109375 -22.863281 3.289062 -21.273438 2.75 -19.453125 C 2.207031 -17.640625 1.9375 -15.691406 1.9375 -13.609375 C 1.9375 -11.515625 2.21875 -9.59375 2.78125 -7.84375 C 3.34375 -6.101562 4.171875 -4.601562 5.265625 -3.34375 C 6.359375 -2.082031 7.722656 -1.109375 9.359375 -0.421875 C 11.003906 0.253906 12.890625 0.59375 15.015625 0.59375 C 18.578125 0.59375 21.390625 -0.335938 23.453125 -2.203125 C 25.523438 -4.078125 26.816406 -6.742188 27.328125 -10.203125 L 22.625 -10.203125 C 22.332031 -8.046875 21.546875 -6.375 20.265625 -5.1875 C 18.992188 -4 17.222656 -3.40625 14.953125 -3.40625 C 13.515625 -3.40625 12.273438 -3.691406 11.234375 -4.265625 C 10.191406 -4.835938 9.34375 -5.597656 8.6875 -6.546875 C 8.039062 -7.503906 7.5625 -8.59375 7.25 -9.8125 C 6.945312 -11.039062 6.796875 -12.304688 6.796875 -13.609375 C 6.796875 -15.015625 6.941406 -16.375 7.234375 -17.6875 C 7.523438 -19 8.003906 -20.160156 8.671875 -21.171875 C 9.335938 -22.179688 10.226562 -22.988281 11.34375 -23.59375 C 12.457031 -24.207031 13.84375 -24.515625 15.5 -24.515625 C 17.4375 -24.515625 18.984375 -24.023438 20.140625 -23.046875 C 21.296875 -22.078125 22.050781 -20.710938 22.40625 -18.953125 Z M 22.40625 -18.953125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-8">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1194" height="801" 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="42.35437" y="89.635103"/>
-  <use xlink:href="#glyph0-2" x="55.69837" y="89.635103"/>
-  <use xlink:href="#glyph0-1" x="68.13037" y="89.635103"/>
-  <use xlink:href="#glyph0-3" x="81.47437" y="89.635103"/>
-  <use xlink:href="#glyph0-1" x="107.25037" y="89.635103"/>
-  <use xlink:href="#glyph0-4" x="120.59437" y="89.635103"/>
-  <use xlink:href="#glyph0-1" x="131.25037" y="89.635103"/>
-  <use xlink:href="#glyph0-5" x="144.59437" y="89.635103"/>
-  <use xlink:href="#glyph0-1" x="173.05837" y="89.635103"/>
-  <use xlink:href="#glyph0-6" x="186.40237" y="89.635103"/>
-  <use xlink:href="#glyph0-1" x="198.83437" y="89.635103"/>
-  <use xlink:href="#glyph0-7" x="212.17837" y="89.635103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 730.371094 450.441406 C 751.125 470.367188 751.125 502.671875 730.371094 522.597656 C 709.613281 542.523438 675.960938 542.523438 655.203125 522.597656 C 634.449219 502.671875 634.449219 470.367188 655.203125 450.441406 C 675.960938 430.515625 709.613281 430.515625 730.371094 450.441406 "/>
-<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 849.457031 182.147135 C 856.375 188.789062 856.375 199.557292 849.457031 206.199219 C 842.53776 212.841146 831.320312 212.841146 824.402344 206.199219 C 817.483073 199.557292 817.483073 188.789062 824.402344 182.147135 C 831.320312 175.505208 842.53776 175.505208 849.457031 182.147135 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="686.7934" y="505.263703"/>
-</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 805.519531 230.335938 C 812.438802 236.977865 812.438802 247.746094 805.519531 254.388021 C 798.60026 261.03125 787.382812 261.03125 780.464844 254.388021 C 773.545573 247.746094 773.545573 236.977865 780.464844 230.335938 C 787.382812 223.69401 798.60026 223.69401 805.519531 230.335938 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="546.4774" y="649.830603"/>
-</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 893.393229 230.335938 C 900.3125 236.977865 900.3125 247.746094 893.393229 254.388021 C 886.47526 261.03125 875.257812 261.03125 868.338542 254.388021 C 861.419271 247.746094 861.419271 236.977865 868.338542 230.335938 C 875.257812 223.69401 886.47526 223.69401 893.393229 230.335938 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="808.5874" y="649.830603"/>
-</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 825.260417 206.971354 L 804.661458 229.563802 " transform="matrix(3,0,0,3,-1818,-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 848.597656 206.971354 L 869.196615 229.563802 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-8" x="547.4764" y="744.438243"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-8" x="811.0984" y="744.438243"/>
-</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 986.9375 230.335938 C 993.855469 236.977865 993.855469 247.746094 986.9375 254.388021 C 980.018229 261.03125 968.800781 261.03125 961.88151 254.388021 C 954.963542 247.746094 954.963542 236.977865 961.88151 230.335938 C 968.800781 223.69401 980.018229 223.69401 986.9375 230.335938 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="1072.348" y="648.414603"/>
-  <use xlink:href="#glyph0-10" x="1103.452" y="648.414603"/>
-</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 943.341146 207.152344 L 962.958333 229.384115 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-11" x="1091.728" y="744.438243"/>
-</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 809.772135 59.785156 C 816.690104 66.427083 816.690104 77.195312 809.772135 83.83724 C 802.852865 90.479167 791.635417 90.479167 784.716146 83.83724 C 777.798177 77.195312 777.798177 66.427083 784.716146 59.785156 C 791.635417 53.143229 802.852865 53.143229 809.772135 59.785156 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="558.7203" y="138.177103"/>
-</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 893.393229 59.785156 C 900.3125 66.427083 900.3125 77.195312 893.393229 83.83724 C 886.47526 90.479167 875.257812 90.479167 868.338542 83.83724 C 861.419271 77.195312 861.419271 66.427083 868.338542 59.785156 C 875.257812 53.143229 886.47526 53.143229 893.393229 59.785156 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="809.5864" y="138.177103"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="645.6514" y="89.635103"/>
-  <use xlink:href="#glyph0-1" x="671.4274" y="89.635103"/>
-  <use xlink:href="#glyph0-12" x="684.7714" y="89.635103"/>
-  <use xlink:href="#glyph0-1" x="698.1154" y="89.635103"/>
-  <use xlink:href="#glyph0-5" x="711.4594" y="89.635103"/>
-</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 814.960938 71.811198 L 853.25 71.811198 " transform="matrix(3,0,0,3,-1818,-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 861.25 71.811198 L 853.25 68.811198 L 853.25 74.811198 Z M 861.25 71.811198 " transform="matrix(3,0,0,3,-1818,-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 893.393229 131.240885 C 900.3125 137.882812 900.3125 148.652344 893.393229 155.294271 C 886.47526 161.936198 875.257812 161.936198 868.338542 155.294271 C 861.419271 148.652344 861.419271 137.882812 868.338542 131.240885 C 875.257812 124.598958 886.47526 124.598958 893.393229 131.240885 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="808.3984" y="352.547203"/>
-</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 848.233073 181.075521 L 869.561198 156.364583 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1015.253906 450.441406 C 1036.007812 470.367188 1036.007812 502.671875 1015.253906 522.597656 C 994.496094 542.523438 960.84375 542.523438 940.085938 522.597656 C 919.332031 502.671875 919.332031 470.367188 940.085938 450.441406 C 960.84375 430.515625 994.496094 430.515625 1015.253906 450.441406 "/>
-<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 944.416667 182.147135 C 951.335938 188.789062 951.335938 199.557292 944.416667 206.199219 C 937.498698 212.841146 926.28125 212.841146 919.361979 206.199219 C 912.44401 199.557292 912.44401 188.789062 919.361979 182.147135 C 926.28125 175.505208 937.498698 175.505208 944.416667 182.147135 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-7" x="963.1703" y="505.263703"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-13" x="964.1693" y="599.871303"/>
-</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 893.14974 155.523438 L 919.605469 181.917969 " transform="matrix(3,0,0,3,-1818,-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 977.015625 59.785156 C 983.934896 66.427083 983.934896 77.195312 977.015625 83.83724 C 970.096354 90.479167 958.878906 90.479167 951.960938 83.83724 C 945.041667 77.195312 945.041667 66.427083 951.960938 59.785156 C 958.878906 53.143229 970.096354 53.143229 977.015625 59.785156 " transform="matrix(3,0,0,3,-1818,-96)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-8" x="1060.453" y="138.177103"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-7" x="922.2616" y="89.635103"/>
-</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 898.583333 71.811198 L 936.871094 71.811198 " transform="matrix(3,0,0,3,-1818,-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 944.871094 71.811198 L 936.871094 68.811198 L 936.871094 74.811198 Z M 944.871094 71.811198 " transform="matrix(3,0,0,3,-1818,-96)"/>
-</g>
-</svg>
--- a/slide/s6/images/regex/stateseq.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,112 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1035pt" height="762pt" viewBox="0 0 1035 762" 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 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-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 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-5">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-6">
-<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-7">
-<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="glyph1-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 19.21875 0 L 19.21875 -38.28125 L 15.71875 -38.28125 C 15.46875 -36.84375 15 -35.65625 14.3125 -34.71875 C 13.625 -33.78125 12.785156 -33.039062 11.796875 -32.5 C 10.804688 -31.96875 9.695312 -31.601562 8.46875 -31.40625 C 7.25 -31.207031 5.992188 -31.109375 4.703125 -31.109375 L 4.703125 -27.4375 L 14.640625 -27.4375 L 14.640625 0 Z M 19.21875 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 18.3125 -13.015625 L 5.453125 -13.015625 L 18.203125 -31.75 L 18.3125 -31.75 Z M 22.625 -13.015625 L 22.625 -38.28125 L 18.953125 -38.28125 L 1.515625 -13.390625 L 1.515625 -8.96875 L 18.3125 -8.96875 L 18.3125 0 L 22.625 0 L 22.625 -8.96875 L 27.8125 -8.96875 L 27.8125 -13.015625 Z M 22.625 -13.015625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 18.03125 -15.5 L 18.03125 -27.328125 L 14.359375 -27.328125 L 14.359375 -15.5 L 2.59375 -15.5 L 2.59375 -11.828125 L 14.359375 -11.828125 L 14.359375 0 L 18.03125 0 L 18.03125 -11.828125 L 29.8125 -11.828125 L 29.8125 -15.5 Z M 18.03125 -15.5 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 28.1875 -0.109375 C 27.394531 0.359375 26.296875 0.59375 24.890625 0.59375 C 23.703125 0.59375 22.753906 0.257812 22.046875 -0.40625 C 21.347656 -1.070312 21 -2.160156 21 -3.671875 C 19.738281 -2.160156 18.269531 -1.070312 16.59375 -0.40625 C 14.925781 0.257812 13.117188 0.59375 11.171875 0.59375 C 9.910156 0.59375 8.710938 0.445312 7.578125 0.15625 C 6.453125 -0.125 5.472656 -0.570312 4.640625 -1.1875 C 3.816406 -1.800781 3.160156 -2.601562 2.671875 -3.59375 C 2.179688 -4.582031 1.9375 -5.78125 1.9375 -7.1875 C 1.9375 -8.769531 2.207031 -10.0625 2.75 -11.0625 C 3.289062 -12.070312 4 -12.890625 4.875 -13.515625 C 5.757812 -14.148438 6.769531 -14.628906 7.90625 -14.953125 C 9.039062 -15.273438 10.203125 -15.546875 11.390625 -15.765625 C 12.648438 -16.015625 13.847656 -16.203125 14.984375 -16.328125 C 16.117188 -16.460938 17.117188 -16.644531 17.984375 -16.875 C 18.847656 -17.101562 19.53125 -17.441406 20.03125 -17.890625 C 20.539062 -18.347656 20.796875 -19.007812 20.796875 -19.875 C 20.796875 -20.882812 20.601562 -21.691406 20.21875 -22.296875 C 19.84375 -22.910156 19.359375 -23.378906 18.765625 -23.703125 C 18.171875 -24.023438 17.503906 -24.238281 16.765625 -24.34375 C 16.023438 -24.457031 15.296875 -24.515625 14.578125 -24.515625 C 12.628906 -24.515625 11.007812 -24.144531 9.71875 -23.40625 C 8.425781 -22.664062 7.722656 -21.269531 7.609375 -19.21875 L 3.03125 -19.21875 C 3.09375 -20.945312 3.445312 -22.40625 4.09375 -23.59375 C 4.75 -24.78125 5.613281 -25.742188 6.6875 -26.484375 C 7.769531 -27.222656 9.003906 -27.753906 10.390625 -28.078125 C 11.773438 -28.398438 13.257812 -28.5625 14.84375 -28.5625 C 16.101562 -28.5625 17.351562 -28.472656 18.59375 -28.296875 C 19.84375 -28.117188 20.96875 -27.75 21.96875 -27.1875 C 22.976562 -26.632812 23.789062 -25.851562 24.40625 -24.84375 C 25.019531 -23.832031 25.328125 -22.515625 25.328125 -20.890625 L 25.328125 -6.53125 C 25.328125 -5.445312 25.390625 -4.65625 25.515625 -4.15625 C 25.640625 -3.65625 26.0625 -3.40625 26.78125 -3.40625 C 27.175781 -3.40625 27.644531 -3.492188 28.1875 -3.671875 Z M 20.734375 -14.421875 C 20.160156 -13.984375 19.40625 -13.664062 18.46875 -13.46875 C 17.53125 -13.269531 16.546875 -13.109375 15.515625 -12.984375 C 14.492188 -12.859375 13.460938 -12.710938 12.421875 -12.546875 C 11.378906 -12.390625 10.441406 -12.128906 9.609375 -11.765625 C 8.785156 -11.410156 8.109375 -10.898438 7.578125 -10.234375 C 7.054688 -9.566406 6.796875 -8.65625 6.796875 -7.5 C 6.796875 -6.75 6.945312 -6.113281 7.25 -5.59375 C 7.5625 -5.070312 7.960938 -4.644531 8.453125 -4.3125 C 8.941406 -3.988281 9.507812 -3.753906 10.15625 -3.609375 C 10.800781 -3.472656 11.484375 -3.40625 12.203125 -3.40625 C 13.710938 -3.40625 15.007812 -3.609375 16.09375 -4.015625 C 17.175781 -4.429688 18.054688 -4.953125 18.734375 -5.578125 C 19.421875 -6.210938 19.925781 -6.898438 20.25 -7.640625 C 20.570312 -8.378906 20.734375 -9.070312 20.734375 -9.71875 Z M 20.734375 -14.421875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 3.625 -38.5625 L 3.625 0 L 8.203125 0 L 8.203125 -3.71875 L 8.3125 -3.71875 C 8.820312 -2.894531 9.441406 -2.203125 10.171875 -1.640625 C 10.910156 -1.085938 11.691406 -0.648438 12.515625 -0.328125 C 13.347656 -0.00390625 14.1875 0.226562 15.03125 0.375 C 15.882812 0.519531 16.648438 0.59375 17.328125 0.59375 C 19.453125 0.59375 21.316406 0.21875 22.921875 -0.53125 C 24.523438 -1.289062 25.859375 -2.328125 26.921875 -3.640625 C 27.984375 -4.953125 28.773438 -6.488281 29.296875 -8.25 C 29.816406 -10.019531 30.078125 -11.894531 30.078125 -13.875 C 30.078125 -15.851562 29.804688 -17.722656 29.265625 -19.484375 C 28.722656 -21.253906 27.921875 -22.8125 26.859375 -24.15625 C 25.796875 -25.507812 24.460938 -26.582031 22.859375 -27.375 C 21.265625 -28.164062 19.382812 -28.5625 17.21875 -28.5625 C 15.28125 -28.5625 13.5 -28.207031 11.875 -27.5 C 10.257812 -26.800781 9.070312 -25.679688 8.3125 -24.140625 L 8.203125 -24.140625 L 8.203125 -38.5625 Z M 25.21875 -14.203125 C 25.21875 -12.835938 25.070312 -11.503906 24.78125 -10.203125 C 24.5 -8.910156 24.03125 -7.757812 23.375 -6.75 C 22.726562 -5.738281 21.875 -4.925781 20.8125 -4.3125 C 19.75 -3.707031 18.425781 -3.40625 16.84375 -3.40625 C 15.257812 -3.40625 13.910156 -3.703125 12.796875 -4.296875 C 11.679688 -4.890625 10.769531 -5.671875 10.0625 -6.640625 C 9.363281 -7.609375 8.851562 -8.734375 8.53125 -10.015625 C 8.207031 -11.296875 8.046875 -12.617188 8.046875 -13.984375 C 8.046875 -15.285156 8.195312 -16.5625 8.5 -17.8125 C 8.8125 -19.070312 9.304688 -20.195312 9.984375 -21.1875 C 10.671875 -22.1875 11.550781 -22.988281 12.625 -23.59375 C 13.707031 -24.207031 15.023438 -24.515625 16.578125 -24.515625 C 18.054688 -24.515625 19.34375 -24.222656 20.4375 -23.640625 C 21.539062 -23.066406 22.441406 -22.296875 23.140625 -21.328125 C 23.835938 -20.359375 24.359375 -19.25 24.703125 -18 C 25.046875 -16.757812 25.21875 -15.492188 25.21875 -14.203125 Z M 25.21875 -14.203125 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1035" height="762" 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="42.82678" y="126.131203"/>
-  <use xlink:href="#glyph0-2" x="68.60278" y="126.131203"/>
-</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 193.235677 44.902344 C 200.154948 51.544271 200.154948 62.313802 193.235677 68.955729 C 186.317708 75.597656 175.10026 75.597656 168.18099 68.955729 C 161.263021 62.313802 161.263021 51.544271 168.18099 44.902344 C 175.10026 38.260417 186.317708 38.260417 193.235677 44.902344 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="389.114" y="138.531403"/>
-</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 283.945312 44.902344 C 290.863281 51.544271 290.863281 62.313802 283.945312 68.955729 C 277.026042 75.597656 265.808594 75.597656 258.889323 68.955729 C 251.971354 62.313802 251.971354 51.544271 258.889323 44.902344 C 265.808594 38.260417 277.026042 38.260417 283.945312 44.902344 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="661.24" y="138.531403"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 985.960938 83.707031 C 1006.71875 103.632812 1006.71875 135.941406 985.960938 155.867188 C 965.203125 175.792969 931.550781 175.792969 910.796875 155.867188 C 890.039062 135.941406 890.039062 103.632812 910.796875 83.707031 C 931.550781 63.78125 965.203125 63.78125 985.960938 83.707031 "/>
-<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 374.653646 44.902344 C 381.571615 51.544271 381.571615 62.313802 374.653646 68.955729 C 367.734375 75.597656 356.516927 75.597656 349.598958 68.955729 C 342.679688 62.313802 342.679688 51.544271 349.598958 44.902344 C 356.516927 38.260417 367.734375 38.260417 374.653646 44.902344 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph1-3" x="933.366" y="138.531403"/>
-</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 198.425781 56.929688 L 243.800781 56.929688 " transform="matrix(3,0,0,3,-138,-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 251.800781 56.929688 L 243.800781 53.929688 L 243.800781 59.929688 Z M 251.800781 56.929688 " transform="matrix(3,0,0,3,-138,-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 289.134115 56.929688 L 334.509115 56.929688 " transform="matrix(3,0,0,3,-138,-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 342.509115 56.929688 L 334.509115 53.929688 L 334.509115 59.929688 Z M 342.509115 56.929688 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="523.049" y="92.115403"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="785.3271" y="92.115403"/>
-</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 283.945312 105.847656 C 290.863281 112.489583 290.863281 123.257812 283.945312 129.901042 C 277.026042 136.542969 265.808594 136.542969 258.889323 129.901042 C 251.971354 123.257812 251.971354 112.489583 258.889323 105.847656 C 265.808594 99.205729 277.026042 99.205729 283.945312 105.847656 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="660.052" y="321.366003"/>
-</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 240.007812 154.036458 C 246.927083 160.678385 246.927083 171.447917 240.007812 178.089844 C 233.088542 184.731771 221.871094 184.731771 214.953125 178.089844 C 208.033854 171.447917 208.033854 160.678385 214.953125 154.036458 C 221.871094 147.394531 233.088542 147.394531 240.007812 154.036458 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="529.942" y="465.933003"/>
-</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 327.88151 154.036458 C 334.800781 160.678385 334.800781 171.447917 327.88151 178.089844 C 320.963542 184.731771 309.746094 184.731771 302.826823 178.089844 C 295.907552 171.447917 295.907552 160.678385 302.826823 154.036458 C 309.746094 147.394531 320.963542 147.394531 327.88151 154.036458 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="792.052" y="465.933003"/>
-</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 259.748698 130.671875 L 239.14974 153.264323 " transform="matrix(3,0,0,3,-138,-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 283.085938 130.671875 L 303.684896 153.264323 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="530.941" y="560.540603"/>
-</g>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="794.563" y="560.540603"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 985.960938 555.675781 C 1006.71875 575.601562 1006.71875 607.910156 985.960938 627.835938 C 965.203125 647.761719 931.550781 647.761719 910.796875 627.835938 C 890.039062 607.910156 890.039062 575.601562 910.796875 555.675781 C 931.550781 535.75 965.203125 535.75 985.960938 555.675781 "/>
-<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 374.653646 202.22526 C 381.571615 208.867188 381.571615 219.636719 374.653646 226.278646 C 367.734375 232.920573 356.516927 232.920573 349.598958 226.278646 C 342.679688 219.636719 342.679688 208.867188 349.598958 202.22526 C 356.516927 195.583333 367.734375 195.583333 374.653646 202.22526 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-5" x="915.498" y="609.083903"/>
-  <use xlink:href="#glyph0-6" x="946.602" y="609.083903"/>
-</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 327.432292 178.50651 L 350.048177 201.808594 " transform="matrix(3,0,0,3,-138,-51)"/>
-<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;">
-  <use xlink:href="#glyph0-7" x="934.878" y="705.107533"/>
-</g>
-</g>
-</svg>
--- a/slide/s6/images/regex/subset.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,164 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1323pt" height="1056pt" viewBox="0 0 1323 1056" version="1.1">
-<defs>
-<g>
-<symbol overflow="visible" id="glyph0-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-1">
-<path style="stroke:none;" d="M 22.359375 -28.515625 L 26.953125 -28.515625 C 26.660156 -31.679688 25.578125 -34.097656 23.703125 -35.765625 C 21.828125 -37.441406 19.304688 -38.28125 16.140625 -38.28125 C 13.410156 -38.28125 11.144531 -37.703125 9.34375 -36.546875 C 7.539062 -35.398438 6.097656 -33.875 5.015625 -31.96875 C 3.941406 -30.0625 3.175781 -27.875 2.71875 -25.40625 C 2.269531 -22.9375 2.046875 -20.390625 2.046875 -17.765625 C 2.046875 -15.742188 2.195312 -13.65625 2.5 -11.5 C 2.8125 -9.34375 3.4375 -7.363281 4.375 -5.5625 C 5.3125 -3.757812 6.644531 -2.28125 8.375 -1.125 C 10.101562 0.0195312 12.390625 0.59375 15.234375 0.59375 C 17.640625 0.59375 19.660156 0.1875 21.296875 -0.625 C 22.941406 -1.4375 24.257812 -2.460938 25.25 -3.703125 C 26.238281 -4.941406 26.945312 -6.316406 27.375 -7.828125 C 27.8125 -9.335938 28.03125 -10.796875 28.03125 -12.203125 C 28.03125 -13.960938 27.757812 -15.597656 27.21875 -17.109375 C 26.675781 -18.628906 25.910156 -19.945312 24.921875 -21.0625 C 23.929688 -22.175781 22.707031 -23.046875 21.25 -23.671875 C 19.789062 -24.304688 18.144531 -24.625 16.3125 -24.625 C 14.21875 -24.625 12.367188 -24.226562 10.765625 -23.4375 C 9.171875 -22.644531 7.832031 -21.367188 6.75 -19.609375 L 6.640625 -19.703125 C 6.679688 -21.179688 6.828125 -22.765625 7.078125 -24.453125 C 7.328125 -26.148438 7.785156 -27.726562 8.453125 -29.1875 C 9.117188 -30.644531 10.046875 -31.847656 11.234375 -32.796875 C 12.421875 -33.753906 13.988281 -34.234375 15.9375 -34.234375 C 17.769531 -34.234375 19.242188 -33.710938 20.359375 -32.671875 C 21.472656 -31.628906 22.140625 -30.242188 22.359375 -28.515625 Z M 15.4375 -20.578125 C 16.738281 -20.578125 17.875 -20.34375 18.84375 -19.875 C 19.8125 -19.40625 20.617188 -18.78125 21.265625 -18 C 21.921875 -17.226562 22.398438 -16.3125 22.703125 -15.25 C 23.015625 -14.1875 23.171875 -13.0625 23.171875 -11.875 C 23.171875 -10.757812 23 -9.6875 22.65625 -8.65625 C 22.3125 -7.632812 21.816406 -6.726562 21.171875 -5.9375 C 20.523438 -5.144531 19.722656 -4.523438 18.765625 -4.078125 C 17.804688 -3.628906 16.695312 -3.40625 15.4375 -3.40625 C 14.175781 -3.40625 13.050781 -3.628906 12.0625 -4.078125 C 11.070312 -4.523438 10.242188 -5.125 9.578125 -5.875 C 8.921875 -6.632812 8.410156 -7.535156 8.046875 -8.578125 C 7.679688 -9.628906 7.5 -10.75 7.5 -11.9375 C 7.5 -13.125 7.671875 -14.25 8.015625 -15.3125 C 8.359375 -16.375 8.867188 -17.289062 9.546875 -18.0625 C 10.234375 -18.832031 11.0625 -19.441406 12.03125 -19.890625 C 13.007812 -20.347656 14.144531 -20.578125 15.4375 -20.578125 Z M 15.4375 -20.578125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-2">
-<path style="stroke:none;" d="M 18.3125 -13.015625 L 5.453125 -13.015625 L 18.203125 -31.75 L 18.3125 -31.75 Z M 22.625 -13.015625 L 22.625 -38.28125 L 18.953125 -38.28125 L 1.515625 -13.390625 L 1.515625 -8.96875 L 18.3125 -8.96875 L 18.3125 0 L 22.625 0 L 22.625 -8.96875 L 27.8125 -8.96875 L 27.8125 -13.015625 Z M 22.625 -13.015625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-3">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-0">
-<path style="stroke:none;" d="M 4.796875 -41.28125 L 4.796875 4.796875 L 43.203125 4.796875 L 43.203125 -41.28125 Z M 39.125 -38.78125 L 24.046875 -20.203125 L 8.921875 -38.78125 Z M 40.703125 0.390625 L 25.625 -18.1875 L 40.703125 -36.765625 Z M 8.96875 2.296875 L 24.046875 -16.21875 L 39.078125 2.296875 Z M 7.296875 0.4375 L 7.296875 -36.859375 L 22.421875 -18.1875 Z M 7.296875 0.4375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 23.765625 -35.953125 L 23.765625 -33.03125 L 19.15625 -33.03125 C 17.46875 -33.03125 16.375 -33.078125 15.453125 -33.21875 C 15.59375 -32.359375 15.640625 -31.484375 15.640625 -30.390625 L 15.640625 -27.546875 C 15.640625 -26.0625 15.59375 -25.296875 15.5 -24.671875 C 17.28125 -24.765625 17.953125 -24.765625 19.203125 -24.765625 L 26.6875 -24.765625 C 25.828125 -23.28125 25.625 -22.984375 24.953125 -22.078125 L 19.109375 -22.078125 C 16.890625 -22.078125 15.265625 -22.171875 14.0625 -22.375 L 14.0625 -19.484375 C 15.265625 -19.625 16.890625 -19.734375 19.0625 -19.734375 L 22.796875 -19.734375 C 19.875 -17.046875 17.46875 -15.59375 12.671875 -13.78125 C 13.4375 -12.90625 13.921875 -12.234375 14.296875 -11.328125 C 18.578125 -13.625 20.25 -14.6875 22.5625 -16.515625 L 22.5625 -14.5 C 23.65625 -14.640625 24.859375 -14.6875 26.359375 -14.6875 L 33.9375 -14.6875 L 33.9375 -11.71875 L 22.171875 -11.71875 C 20.78125 -11.71875 19.828125 -11.765625 18.859375 -11.859375 C 18.90625 -11.328125 18.953125 -10.375 18.953125 -9.03125 L 18.953125 -6.8125 C 18.953125 -5.1875 19.296875 -4.375 20.203125 -3.984375 C 21.59375 -3.359375 23.953125 -3.171875 29.71875 -3.171875 C 41.140625 -3.171875 41.421875 -3.3125 42.140625 -9.125 C 41.09375 -9.359375 40.375 -9.640625 39.3125 -10.265625 C 39.265625 -7.53125 39.03125 -6.625 38.203125 -6.140625 C 37.4375 -5.71875 34.65625 -5.515625 28.984375 -5.515625 C 24.90625 -5.515625 23.765625 -5.5625 22.75 -5.859375 C 21.9375 -6.09375 21.75 -6.34375 21.75 -7.15625 L 21.75 -9.546875 L 33.21875 -9.546875 C 34.84375 -9.546875 35.765625 -9.5 36.71875 -9.40625 C 36.625 -10.078125 36.625 -10.421875 36.625 -12.234375 L 36.625 -15.40625 C 39.171875 -13.78125 40.890625 -12.953125 45.21875 -11.421875 C 45.84375 -12.953125 45.984375 -13.25 46.609375 -14.109375 C 42.578125 -14.96875 40.375 -15.796875 37.53125 -17.421875 C 36.34375 -18.140625 35.765625 -18.578125 34.515625 -19.734375 L 40.125 -19.734375 C 42.140625 -19.734375 43.734375 -19.625 45.03125 -19.4375 L 45.03125 -22.375 C 43.734375 -22.171875 42.140625 -22.078125 40.078125 -22.078125 L 27.84375 -22.078125 C 28.375 -22.84375 28.5625 -23.140625 29.515625 -24.765625 L 39.640625 -24.765625 C 40.890625 -24.765625 41.609375 -24.765625 43.25 -24.671875 C 43.109375 -25.484375 43.0625 -26.25 43.0625 -27.5 L 43.0625 -30.390625 C 43.0625 -31.625 43.109375 -32.296875 43.25 -33.21875 C 42.28125 -33.078125 41.140625 -33.03125 39.5 -33.03125 L 34.3125 -33.03125 L 34.3125 -35.953125 L 40.125 -35.953125 C 42.09375 -35.953125 43.734375 -35.859375 44.96875 -35.671875 L 44.96875 -38.59375 C 43.625 -38.40625 42 -38.296875 39.9375 -38.296875 L 18.859375 -38.296875 C 16.75 -38.296875 15.078125 -38.40625 13.6875 -38.59375 L 13.6875 -35.671875 C 14.921875 -35.859375 16.65625 -35.953125 18.625 -35.953125 Z M 26.296875 -35.953125 L 31.78125 -35.953125 L 31.78125 -33.03125 L 26.296875 -33.03125 Z M 23.765625 -30.859375 L 23.765625 -26.875 L 18.234375 -26.875 L 18.234375 -30.859375 Z M 26.296875 -30.859375 L 31.78125 -30.859375 L 31.78125 -26.875 L 26.296875 -26.875 Z M 34.3125 -30.859375 L 40.375 -30.859375 L 40.375 -26.875 L 34.3125 -26.875 Z M 31.4375 -19.734375 C 33.03125 -18.140625 33.453125 -17.765625 34.609375 -16.84375 C 33.40625 -16.84375 33.265625 -16.84375 32.546875 -16.84375 L 26.359375 -16.84375 C 24.859375 -16.84375 24.1875 -16.890625 23.140625 -16.984375 C 24.390625 -18.046875 24.953125 -18.625 26.015625 -19.734375 Z M 3.125 -36.953125 C 6.1875 -34.078125 7.921875 -32.015625 10.515625 -28.265625 L 12.953125 -30.390625 C 10.078125 -34.078125 8.453125 -35.90625 5.328125 -38.875 Z M 2.546875 -17.765625 C 3.703125 -17.953125 4.515625 -18 6.046875 -18 L 8.875 -18 L 8.875 -6.4375 C 6 -3.59375 3.453125 -1.578125 1.390625 -0.671875 L 3.03125 2.5 C 3.3125 2.25 3.3125 2.25 4.125 1.53125 C 5.71875 0.234375 5.71875 0.234375 6.8125 -0.71875 C 8.359375 -2.0625 8.734375 -2.5 10.265625 -3.984375 C 12.1875 -1.0625 14.203125 0.484375 17.234375 1.296875 C 19.734375 2.015625 22.515625 2.25 27.984375 2.25 C 33.59375 2.25 40.3125 2.109375 45.640625 1.875 C 45.890625 0.4375 46.125 -0.1875 46.75 -1.4375 C 41.46875 -0.765625 35.5625 -0.484375 27.3125 -0.484375 C 21.59375 -0.484375 18.71875 -0.859375 16.265625 -1.875 C 14.109375 -2.78125 13.0625 -3.84375 11.859375 -6.34375 L 11.859375 -16.21875 C 11.859375 -18.53125 11.90625 -19.578125 12.046875 -20.921875 C 10.890625 -20.734375 9.9375 -20.6875 8.40625 -20.6875 L 6.234375 -20.6875 C 4.421875 -20.6875 3.640625 -20.734375 2.546875 -20.921875 Z M 2.546875 -17.765625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 42.71875 -16.03125 C 40.421875 -12.34375 38.640625 -10.375 34.984375 -7.34375 C 32.828125 -9.265625 31.875 -9.984375 29.09375 -11.765625 L 26.921875 -10.078125 C 29.90625 -8.203125 30.8125 -7.484375 32.734375 -5.609375 C 28.078125 -2.453125 23.515625 -0.625 16.703125 0.765625 C 17.515625 1.734375 17.90625 2.296875 18.34375 3.5 C 21.21875 2.828125 22.65625 2.40625 24.390625 1.78125 C 27.9375 0.484375 31.578125 -1.390625 34.75 -3.640625 C 39.265625 -6.765625 42.859375 -10.65625 45.3125 -14.921875 C 45.984375 -16.171875 46.21875 -16.515625 46.421875 -16.84375 L 44.546875 -18.71875 C 43.578125 -18.578125 42.71875 -18.53125 41.28125 -18.53125 L 34.171875 -18.53125 C 34.703125 -19.15625 35.90625 -20.6875 36.671875 -21.640625 L 33.703125 -22.65625 C 33.125 -21.5 32.453125 -20.546875 31.484375 -19.390625 C 28.125 -15.59375 23.8125 -12.765625 18 -10.515625 C 18.90625 -9.703125 19.34375 -9.171875 19.921875 -8.109375 C 24.953125 -10.375 28.3125 -12.578125 31.875 -16.03125 Z M 41.515625 -36.484375 C 40.609375 -36.34375 39.75 -36.28125 38.296875 -36.28125 L 30.8125 -36.28125 C 31.0625 -36.625 31.734375 -37.625 32.78125 -39.21875 L 29.71875 -40.171875 C 28.375 -36.234375 23.8125 -31.734375 18.390625 -28.84375 C 19.203125 -28.171875 19.6875 -27.640625 20.203125 -26.734375 C 23.859375 -28.890625 26.5 -31.0625 28.890625 -33.796875 L 39.5 -33.796875 C 37.390625 -30.53125 35.71875 -28.65625 32.453125 -26.015625 C 30.859375 -27.5 29.5625 -28.46875 27.21875 -29.953125 L 25.0625 -28.3125 C 28.03125 -26.359375 28.84375 -25.734375 30.234375 -24.28125 C 26.203125 -21.40625 22.9375 -19.828125 17.953125 -18.34375 C 15.796875 -20.359375 14.59375 -22.125 13.25 -25.0625 L 15.171875 -25.0625 C 16.515625 -25.0625 17.421875 -25.015625 18.4375 -24.859375 L 18.4375 -27.890625 C 17.515625 -27.75 16.65625 -27.703125 15.171875 -27.703125 L 13.15625 -27.703125 L 13.15625 -35.28125 C 15.125 -35.90625 16.125 -36.28125 18.046875 -37.15625 C 18.53125 -37.390625 18.71875 -37.484375 19.15625 -37.625 L 17.234375 -40.21875 C 16.375 -39.546875 15.359375 -39.03125 13.734375 -38.453125 C 10.171875 -37.15625 7.203125 -36.484375 3.078125 -35.953125 C 3.796875 -34.890625 4.078125 -34.375 4.46875 -33.3125 C 7.34375 -33.84375 8.453125 -34.078125 10.265625 -34.515625 L 10.265625 -27.703125 L 6.34375 -27.703125 C 4.46875 -27.703125 3.546875 -27.75 2.546875 -27.9375 L 2.546875 -24.8125 C 3.640625 -25.015625 4.609375 -25.0625 6.34375 -25.0625 L 9.796875 -25.0625 C 9.3125 -23.1875 8.359375 -20.828125 7.203125 -18.390625 C 5.46875 -14.78125 3.546875 -11.90625 1.4375 -9.75 C 2.296875 -8.734375 2.734375 -8.109375 3.21875 -6.953125 C 6.578125 -10.84375 8.78125 -15.03125 10.515625 -21.078125 C 10.421875 -19.015625 10.265625 -14.6875 10.265625 -13.578125 L 10.265625 -2.0625 C 10.265625 0.625 10.171875 2.109375 9.984375 3.5 L 13.4375 3.5 C 13.25 2.0625 13.15625 0.4375 13.15625 -2.0625 L 13.15625 -14.5 C 13.15625 -14.640625 13.109375 -15.84375 13.0625 -17.953125 C 13.015625 -19.78125 13.015625 -20.015625 12.90625 -21.59375 C 14.109375 -18.8125 14.96875 -17.421875 16.703125 -15.453125 C 17.234375 -16.515625 17.65625 -17.140625 18.234375 -17.90625 C 18.859375 -17.234375 19.15625 -16.703125 19.625 -15.796875 C 24.71875 -17.515625 28.3125 -19.4375 32.5 -22.5625 C 36.578125 -25.578125 39.796875 -28.984375 42.140625 -32.78125 C 42.71875 -33.640625 42.71875 -33.640625 43.34375 -34.5625 Z M 41.515625 -36.484375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 22.421875 -28.796875 L 22.421875 -20.25 L 8.0625 -20.25 C 5.90625 -20.25 4.421875 -20.359375 3.125 -20.546875 L 3.125 -17.140625 C 4.5625 -17.328125 6 -17.421875 8.0625 -17.421875 L 16.84375 -17.421875 C 16.75 -15.21875 16.65625 -13.96875 16.46875 -12.859375 C 15.890625 -9.453125 14.546875 -6.71875 12.390625 -4.5625 C 9.9375 -2.15625 6.953125 -0.484375 2.296875 0.953125 C 2.640625 1.484375 2.640625 1.484375 3.359375 2.453125 C 3.640625 2.828125 3.890625 3.21875 4.265625 3.984375 C 7.015625 2.875 8.453125 2.15625 10.171875 1.109375 C 14.109375 -1.25 16.515625 -3.84375 18.09375 -7.296875 C 19.4375 -10.3125 19.828125 -12.234375 20.0625 -17.421875 L 27.265625 -17.421875 L 27.265625 -0.390625 C 27.265625 2.25 28.703125 2.921875 34.46875 2.921875 C 40.703125 2.921875 42.4375 2.453125 43.53125 0.34375 C 44.25 -1.0625 44.640625 -3.078125 44.96875 -7.25 C 43.625 -7.625 42.90625 -7.921875 41.859375 -8.546875 C 41.859375 -4.75 41.5625 -2.546875 40.9375 -1.390625 C 40.3125 -0.28125 39.078125 0 34.984375 0 C 31.015625 0 30.390625 -0.1875 30.390625 -1.4375 L 30.390625 -17.421875 L 40.46875 -17.421875 C 42.53125 -17.421875 43.921875 -17.328125 45.359375 -17.140625 L 45.359375 -20.546875 C 44.0625 -20.359375 42.625 -20.25 40.46875 -20.25 L 25.53125 -20.25 L 25.53125 -28.796875 L 37.015625 -28.796875 C 38.921875 -28.796875 40.3125 -28.703125 41.609375 -28.515625 L 41.609375 -31.921875 C 40.375 -31.734375 39.03125 -31.625 37.015625 -31.625 L 25.53125 -31.625 L 25.53125 -35.421875 C 25.53125 -37.109375 25.625 -38.296875 25.828125 -39.640625 L 22.125 -39.640625 C 22.3125 -38.25 22.421875 -37.0625 22.421875 -35.421875 L 22.421875 -31.625 L 13.625 -31.625 C 14.296875 -33.078125 14.640625 -33.9375 15.3125 -35.71875 C 15.640625 -36.625 15.890625 -37.25 16.21875 -38.015625 L 12.8125 -38.921875 C 12.484375 -36.8125 11.71875 -34.46875 10.5625 -32.15625 C 8.875 -28.890625 7.109375 -26.546875 4.375 -24.046875 C 5.421875 -23.421875 5.953125 -22.984375 6.90625 -21.9375 C 9.171875 -24.390625 10.515625 -26.109375 12.140625 -28.796875 Z M 22.421875 -28.796875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 10.03125 -23.71875 L 7.53125 -23.71875 C 5.46875 -23.71875 4.171875 -23.8125 2.875 -24 L 2.875 -20.6875 C 4.375 -20.875 5.5625 -20.96875 7.53125 -20.96875 L 10.03125 -20.96875 L 10.03125 -12.28125 L 8.734375 -12.28125 C 6.71875 -12.28125 5.328125 -12.390625 4.078125 -12.578125 L 4.078125 -9.3125 C 5.46875 -9.5 6.765625 -9.59375 8.59375 -9.59375 L 39.890625 -9.59375 C 41.8125 -9.59375 43.15625 -9.5 44.5 -9.3125 L 44.5 -12.578125 C 43.25 -12.390625 41.953125 -12.28125 39.84375 -12.28125 L 38.203125 -12.28125 L 38.203125 -20.96875 L 40.796875 -20.96875 C 42.8125 -20.96875 44.109375 -20.875 45.5 -20.6875 L 45.5 -24 C 44.203125 -23.8125 42.90625 -23.71875 40.796875 -23.71875 L 38.203125 -23.71875 L 38.203125 -32.296875 C 40.265625 -32.296875 41.765625 -32.203125 43.53125 -32.0625 L 43.53125 -35.28125 C 42.140625 -35.09375 40.5625 -34.984375 37.484375 -34.984375 L 12.953125 -34.984375 C 13.96875 -36.53125 14.40625 -37.203125 15.5 -39.171875 C 15.84375 -39.703125 15.9375 -39.890625 16.21875 -40.3125 L 12.859375 -41.140625 C 12.671875 -40.3125 12.390625 -39.59375 11.90625 -38.59375 C 9.890625 -34.5625 7.390625 -31.6875 2.59375 -27.890625 C 3.59375 -27.3125 4.21875 -26.734375 4.890625 -25.875 C 7.203125 -27.890625 8.25 -28.984375 10.03125 -31.203125 Z M 12.8125 -32.296875 L 18.53125 -32.296875 L 18.53125 -23.71875 L 12.8125 -23.71875 Z M 12.8125 -20.96875 L 18.53125 -20.96875 L 18.53125 -12.28125 L 12.8125 -12.28125 Z M 21.171875 -12.28125 L 21.171875 -20.96875 L 26.828125 -20.96875 L 26.828125 -12.28125 Z M 21.171875 -23.71875 L 21.171875 -32.296875 L 26.828125 -32.296875 L 26.828125 -23.71875 Z M 29.46875 -12.28125 L 29.46875 -20.96875 L 35.421875 -20.96875 L 35.421875 -12.28125 Z M 29.46875 -23.71875 L 29.46875 -32.296875 L 35.421875 -32.296875 L 35.421875 -23.71875 Z M 44.78125 1.015625 C 42.90625 -2.546875 41.421875 -4.75 38.6875 -8.015625 L 36.234375 -6.71875 C 38.96875 -3.359375 40.3125 -1.203125 42.09375 2.734375 Z M 31.4375 1.96875 C 30.4375 -2.6875 29.90625 -4.46875 28.5625 -7.625 L 25.96875 -6.859375 C 27.3125 -3.40625 27.640625 -1.96875 28.46875 2.78125 Z M 20.5 2.453125 C 20.25 -1.4375 19.921875 -3.796875 19.0625 -7.4375 L 16.375 -7.015625 C 17.046875 -3.796875 17.421875 -0.578125 17.46875 2.921875 Z M 5.765625 3.03125 C 8.59375 -0.046875 9.984375 -2.25 11.90625 -6.671875 L 9.3125 -8.109375 C 7.734375 -3.984375 6.28125 -1.875 3.265625 0.90625 Z M 5.765625 3.03125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<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="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 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="glyph2-2">
-<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="glyph2-3">
-<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="glyph2-4">
-<path style="stroke:none;" d="M 19.921875 -16.84375 L 24.140625 -16.84375 C 23.984375 -18.320312 23.597656 -19.59375 22.984375 -20.65625 C 22.378906 -21.726562 21.601562 -22.617188 20.65625 -23.328125 C 19.71875 -24.035156 18.628906 -24.554688 17.390625 -24.890625 C 16.160156 -25.222656 14.84375 -25.390625 13.4375 -25.390625 C 11.488281 -25.390625 9.773438 -25.046875 8.296875 -24.359375 C 6.828125 -23.671875 5.601562 -22.726562 4.625 -21.53125 C 3.65625 -20.332031 2.929688 -18.921875 2.453125 -17.296875 C 1.972656 -15.679688 1.734375 -13.945312 1.734375 -12.09375 C 1.734375 -10.238281 1.976562 -8.535156 2.46875 -6.984375 C 2.96875 -5.429688 3.703125 -4.09375 4.671875 -2.96875 C 5.648438 -1.851562 6.867188 -0.988281 8.328125 -0.375 C 9.785156 0.226562 11.457031 0.53125 13.34375 0.53125 C 16.507812 0.53125 19.007812 -0.300781 20.84375 -1.96875 C 22.6875 -3.632812 23.832031 -6.003906 24.28125 -9.078125 L 20.109375 -9.078125 C 19.859375 -7.148438 19.160156 -5.660156 18.015625 -4.609375 C 16.878906 -3.554688 15.304688 -3.03125 13.296875 -3.03125 C 12.015625 -3.03125 10.910156 -3.285156 9.984375 -3.796875 C 9.054688 -4.304688 8.300781 -4.984375 7.71875 -5.828125 C 7.144531 -6.679688 6.722656 -7.648438 6.453125 -8.734375 C 6.179688 -9.828125 6.046875 -10.945312 6.046875 -12.09375 C 6.046875 -13.34375 6.171875 -14.550781 6.421875 -15.71875 C 6.679688 -16.882812 7.109375 -17.914062 7.703125 -18.8125 C 8.296875 -19.707031 9.085938 -20.425781 10.078125 -20.96875 C 11.066406 -21.519531 12.300781 -21.796875 13.78125 -21.796875 C 15.507812 -21.796875 16.882812 -21.363281 17.90625 -20.5 C 18.925781 -19.632812 19.597656 -18.414062 19.921875 -16.84375 Z M 19.921875 -16.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-5">
-<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="glyph2-6">
-<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="glyph2-7">
-<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="glyph2-8">
-<path style="stroke:none;" d="M 3.984375 -5.328125 L 3.984375 0 L 6.8125 0 C 6.84375 0.382812 6.816406 0.800781 6.734375 1.25 C 6.660156 1.695312 6.507812 2.132812 6.28125 2.5625 C 6.0625 3 5.765625 3.398438 5.390625 3.765625 C 5.023438 4.128906 4.570312 4.410156 4.03125 4.609375 L 4.03125 7.015625 C 5.882812 6.460938 7.226562 5.53125 8.0625 4.21875 C 8.894531 2.90625 9.3125 1.335938 9.3125 -0.484375 L 9.3125 -5.328125 Z M 3.984375 -5.328125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph2-9">
-<path style="stroke:none;" d=""/>
-</symbol>
-<symbol overflow="visible" id="glyph3-0">
-<path style="stroke:none;" d="M 24.546875 -39.953125 L 6.125 -39.953125 L 6.125 -2.8125 L 24.546875 -2.8125 Z M 27.59375 -42.71875 L 27.59375 -0.0625 L 3.0625 -0.0625 L 3.0625 -42.71875 Z M 27.59375 -42.71875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph3-1">
-<path style="stroke:none;" d="M 20.046875 -17.21875 L 20.046875 -30.359375 L 15.953125 -30.359375 L 15.953125 -17.21875 L 2.875 -17.21875 L 2.875 -13.140625 L 15.953125 -13.140625 L 15.953125 0 L 20.046875 0 L 20.046875 -13.140625 L 33.125 -13.140625 L 33.125 -17.21875 Z M 20.046875 -17.21875 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1323" height="1056" 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 510.554688 811.519531 C 531.3125 831.445312 531.3125 863.753906 510.554688 883.679688 C 489.796875 903.605469 456.144531 903.605469 435.390625 883.679688 C 414.632812 863.753906 414.632812 831.445312 435.390625 811.519531 C 456.144531 791.59375 489.796875 791.59375 510.554688 811.519531 "/>
-<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 1336.184896 281.50651 C 1343.104167 288.148438 1343.104167 298.917969 1336.184896 305.559896 C 1329.265625 312.201823 1318.049479 312.201823 1311.130208 305.559896 C 1304.210938 298.917969 1304.210938 288.148438 1311.130208 281.50651 C 1318.049479 274.864583 1329.265625 274.864583 1336.184896 281.50651 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="457.9602" y="866.343103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 836.46875 683.960938 C 857.226562 703.886719 857.226562 736.191406 836.46875 756.121094 C 815.710938 776.046875 782.058594 776.046875 761.304688 756.121094 C 740.546875 736.191406 740.546875 703.886719 761.304688 683.960938 C 782.058594 664.035156 815.710938 664.035156 836.46875 683.960938 "/>
-<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 1444.822917 238.986979 C 1451.742188 245.628906 1451.742188 256.397135 1444.822917 263.039062 C 1437.903646 269.682292 1426.6875 269.682292 1419.768229 263.039062 C 1412.848958 256.397135 1412.848958 245.628906 1419.768229 238.986979 C 1426.6875 232.345052 1437.903646 232.345052 1444.822917 238.986979 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="783.8741" y="738.784103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 836.46875 934.828125 C 857.226562 954.753906 857.226562 987.058594 836.46875 1006.984375 C 815.710938 1026.910156 782.058594 1026.910156 761.304688 1006.984375 C 740.546875 987.058594 740.546875 954.753906 761.304688 934.828125 C 782.058594 914.902344 815.710938 914.902344 836.46875 934.828125 "/>
-<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 1444.822917 322.609375 C 1451.742188 329.251302 1451.742188 340.019531 1444.822917 346.661458 C 1437.903646 353.303385 1426.6875 353.303385 1419.768229 346.661458 C 1412.848958 340.019531 1412.848958 329.251302 1419.768229 322.609375 C 1426.6875 315.967448 1437.903646 315.967448 1444.822917 322.609375 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="783.8741" y="989.650223"/>
-</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 1340.066406 287.110677 L 1406.666667 261.044271 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<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 1414.115885 258.128906 L 1405.572917 258.25 L 1407.760417 263.83724 Z M 1414.115885 258.128906 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<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 1340.144531 299.770833 L 1406.549479 324.894531 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<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 1414.03125 327.72526 L 1407.610677 322.088542 L 1405.486979 327.700521 Z M 1414.03125 327.72526 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 126.117188 221.355469 C 146.875 241.28125 146.875 273.585938 126.117188 293.511719 C 105.363281 313.4375 71.710938 313.4375 50.953125 293.511719 C 30.195312 273.585938 30.195312 241.28125 50.953125 221.355469 C 71.710938 201.429688 105.363281 201.429688 126.117188 221.355469 "/>
-<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.039062 84.785156 C 1214.958333 91.427083 1214.958333 102.195312 1208.039062 108.83724 C 1201.121094 115.479167 1189.903646 115.479167 1182.984375 108.83724 C 1176.066406 102.195312 1176.066406 91.427083 1182.984375 84.785156 C 1189.903646 78.143229 1201.121094 78.143229 1208.039062 84.785156 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="73.52347" y="276.177103"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="209.9649" y="277.665376"/>
-  <use xlink:href="#glyph1-2" x="257.9649" y="277.665376"/>
-  <use xlink:href="#glyph1-3" x="305.9649" y="277.665376"/>
-  <use xlink:href="#glyph1-4" x="353.9649" y="277.665376"/>
-  <use xlink:href="#glyph1-5" x="401.9649" y="277.665376"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-1" x="1029.73" y="124.170503"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-2" x="1028.386" y="242.576003"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 916.984375 221.355469 C 937.742188 241.28125 937.742188 273.585938 916.984375 293.511719 C 896.226562 313.4375 862.574219 313.4375 841.820312 293.511719 C 821.0625 273.585938 821.0625 241.28125 841.820312 221.355469 C 862.574219 201.429688 896.226562 201.429688 916.984375 221.355469 "/>
-<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 1471.661458 84.785156 C 1478.579427 91.427083 1478.579427 102.195312 1471.661458 108.83724 C 1464.74349 115.479167 1453.52474 115.479167 1446.605469 108.83724 C 1439.6875 102.195312 1439.6875 91.427083 1446.605469 84.785156 C 1453.52474 78.143229 1464.74349 78.143229 1471.661458 84.785156 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="864.3896" y="276.177103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1271.539062 49.976562 C 1292.296875 69.902344 1292.296875 102.207031 1271.539062 122.132812 C 1250.78125 142.058594 1217.132812 142.058594 1196.375 122.132812 C 1175.617188 102.207031 1175.617188 69.902344 1196.375 49.976562 C 1217.132812 30.050781 1250.78125 30.050781 1271.539062 49.976562 "/>
-<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 1589.846354 27.658854 C 1596.765625 34.300781 1596.765625 45.06901 1589.846354 51.710938 C 1582.928385 58.352865 1571.709635 58.352865 1564.790365 51.710938 C 1557.872396 45.06901 1557.872396 34.300781 1564.790365 27.658854 C 1571.709635 21.016927 1582.928385 21.016927 1589.846354 27.658854 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="1218.945" y="104.799103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1271.539062 221.355469 C 1292.296875 241.28125 1292.296875 273.585938 1271.539062 293.511719 C 1250.78125 313.4375 1217.132812 313.4375 1196.375 293.511719 C 1175.617188 273.585938 1175.617188 241.28125 1196.375 221.355469 C 1217.132812 201.429688 1250.78125 201.429688 1271.539062 221.355469 "/>
-<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 1589.846354 84.785156 C 1596.765625 91.427083 1596.765625 102.195312 1589.846354 108.83724 C 1582.928385 115.479167 1571.709635 115.479167 1564.790365 108.83724 C 1557.872396 102.195312 1557.872396 91.427083 1564.790365 84.785156 C 1571.709635 78.143229 1582.928385 78.143229 1589.846354 84.785156 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1218.945" y="276.177103"/>
-</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 1474.96224 89.160156 L 1552.576823 51.644531 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<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 1559.779948 48.16276 L 1551.272135 48.942708 L 1553.882812 54.345052 Z M 1559.779948 48.16276 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<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 1476.85026 96.811198 L 1549.701823 96.811198 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<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 1557.701823 96.811198 L 1549.701823 93.811198 L 1549.701823 99.811198 Z M 1557.701823 96.811198 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1271.539062 392.730469 C 1292.296875 412.65625 1292.296875 444.964844 1271.539062 464.890625 C 1250.78125 484.816406 1217.132812 484.816406 1196.375 464.890625 C 1175.617188 444.964844 1175.617188 412.65625 1196.375 392.730469 C 1217.132812 372.804688 1250.78125 372.804688 1271.539062 392.730469 "/>
-<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 1589.846354 141.910156 C 1596.765625 148.552083 1596.765625 159.321615 1589.846354 165.963542 C 1582.928385 172.605469 1571.709635 172.605469 1564.790365 165.963542 C 1557.872396 159.321615 1557.872396 148.552083 1564.790365 141.910156 C 1571.709635 135.268229 1582.928385 135.268229 1589.846354 141.910156 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="1218.945" y="447.555003"/>
-</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 1474.96224 104.46224 L 1552.576823 141.977865 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<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 1559.779948 145.459635 L 1553.882812 139.277344 L 1551.272135 144.678385 Z M 1559.779948 145.459635 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-3" x="996.442" y="412.654803"/>
-  <use xlink:href="#glyph2-4" x="1008.874" y="412.654803"/>
-  <use xlink:href="#glyph2-5" x="1034.65" y="412.654803"/>
-  <use xlink:href="#glyph2-6" x="1053.322" y="412.654803"/>
-  <use xlink:href="#glyph2-7" x="1076.362" y="412.654803"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph3-1" x="617.9292" y="279.093103"/>
-</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 1377.476562 144.566406 L 1377.476562 214.175781 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<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 1377.476562 222.175781 L 1380.476562 214.175781 L 1374.476562 214.175781 Z M 1377.476562 222.175781 " transform="matrix(3,0,0,3,-3498,-33)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-1" x="535.765" y="743.391703"/>
-  <use xlink:href="#glyph2-8" x="561.541" y="743.391703"/>
-  <use xlink:href="#glyph2-9" x="574.885" y="743.391703"/>
-  <use xlink:href="#glyph2-3" x="588.229" y="743.391703"/>
-  <use xlink:href="#glyph2-4" x="600.661" y="743.391703"/>
-  <use xlink:href="#glyph2-5" x="626.437" y="743.391703"/>
-  <use xlink:href="#glyph2-6" x="645.109" y="743.391703"/>
-  <use xlink:href="#glyph2-7" x="668.149" y="743.391703"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph2-2" x="593.941" y="960.950803"/>
-</g>
-</g>
-</svg>
--- a/slide/s6/images/regex/subsetauto.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="915pt" height="927pt" viewBox="0 0 915 927" version="1.1">
-<defs>
-<g>
-<symbol overflow="visible" id="glyph0-0">
-<path style="stroke:none;" d="M 22.09375 -35.96875 L 5.515625 -35.96875 L 5.515625 -2.53125 L 22.09375 -2.53125 Z M 24.84375 -38.453125 L 24.84375 -0.046875 L 2.75 -0.046875 L 2.75 -38.453125 Z M 24.84375 -38.453125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-1">
-<path style="stroke:none;" d="M 19.21875 0 L 19.21875 -38.28125 L 15.71875 -38.28125 C 15.46875 -36.84375 15 -35.65625 14.3125 -34.71875 C 13.625 -33.78125 12.785156 -33.039062 11.796875 -32.5 C 10.804688 -31.96875 9.695312 -31.601562 8.46875 -31.40625 C 7.25 -31.207031 5.992188 -31.109375 4.703125 -31.109375 L 4.703125 -27.4375 L 14.640625 -27.4375 L 14.640625 0 Z M 19.21875 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-2">
-<path style="stroke:none;" d="M 18.3125 -13.015625 L 5.453125 -13.015625 L 18.203125 -31.75 L 18.3125 -31.75 Z M 22.625 -13.015625 L 22.625 -38.28125 L 18.953125 -38.28125 L 1.515625 -13.390625 L 1.515625 -8.96875 L 18.3125 -8.96875 L 18.3125 0 L 22.625 0 L 22.625 -8.96875 L 27.8125 -8.96875 L 27.8125 -13.015625 Z M 22.625 -13.015625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-3">
-<path style="stroke:none;" d="M 2.375 -24.734375 L 6.96875 -24.734375 C 6.925781 -25.878906 7.039062 -27.019531 7.3125 -28.15625 C 7.582031 -29.289062 8.023438 -30.304688 8.640625 -31.203125 C 9.253906 -32.109375 10.035156 -32.835938 10.984375 -33.390625 C 11.941406 -33.953125 13.085938 -34.234375 14.421875 -34.234375 C 15.429688 -34.234375 16.382812 -34.070312 17.28125 -33.75 C 18.175781 -33.425781 18.957031 -32.957031 19.625 -32.34375 C 20.289062 -31.726562 20.820312 -31 21.21875 -30.15625 C 21.613281 -29.3125 21.8125 -28.367188 21.8125 -27.328125 C 21.8125 -25.992188 21.601562 -24.820312 21.1875 -23.8125 C 20.78125 -22.800781 20.171875 -21.863281 19.359375 -21 C 18.546875 -20.132812 17.523438 -19.28125 16.296875 -18.4375 C 15.078125 -17.59375 13.660156 -16.664062 12.046875 -15.65625 C 10.710938 -14.863281 9.429688 -14.015625 8.203125 -13.109375 C 6.984375 -12.210938 5.882812 -11.171875 4.90625 -9.984375 C 3.9375 -8.796875 3.132812 -7.398438 2.5 -5.796875 C 1.875 -4.203125 1.472656 -2.269531 1.296875 0 L 26.296875 0 L 26.296875 -4.046875 L 6.640625 -4.046875 C 6.859375 -5.234375 7.316406 -6.285156 8.015625 -7.203125 C 8.722656 -8.128906 9.570312 -8.988281 10.5625 -9.78125 C 11.550781 -10.570312 12.640625 -11.316406 13.828125 -12.015625 C 15.015625 -12.710938 16.203125 -13.421875 17.390625 -14.140625 C 18.578125 -14.898438 19.726562 -15.691406 20.84375 -16.515625 C 21.957031 -17.347656 22.945312 -18.273438 23.8125 -19.296875 C 24.675781 -20.328125 25.367188 -21.488281 25.890625 -22.78125 C 26.410156 -24.082031 26.671875 -25.578125 26.671875 -27.265625 C 26.671875 -29.066406 26.351562 -30.648438 25.71875 -32.015625 C 25.09375 -33.390625 24.238281 -34.535156 23.15625 -35.453125 C 22.082031 -36.367188 20.816406 -37.066406 19.359375 -37.546875 C 17.898438 -38.035156 16.34375 -38.28125 14.6875 -38.28125 C 12.664062 -38.28125 10.863281 -37.9375 9.28125 -37.25 C 7.695312 -36.570312 6.375 -35.628906 5.3125 -34.421875 C 4.25 -33.210938 3.46875 -31.78125 2.96875 -30.125 C 2.46875 -28.46875 2.269531 -26.671875 2.375 -24.734375 Z M 2.375 -24.734375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-4">
-<path style="stroke:none;" d="M 22.359375 -28.515625 L 26.953125 -28.515625 C 26.660156 -31.679688 25.578125 -34.097656 23.703125 -35.765625 C 21.828125 -37.441406 19.304688 -38.28125 16.140625 -38.28125 C 13.410156 -38.28125 11.144531 -37.703125 9.34375 -36.546875 C 7.539062 -35.398438 6.097656 -33.875 5.015625 -31.96875 C 3.941406 -30.0625 3.175781 -27.875 2.71875 -25.40625 C 2.269531 -22.9375 2.046875 -20.390625 2.046875 -17.765625 C 2.046875 -15.742188 2.195312 -13.65625 2.5 -11.5 C 2.8125 -9.34375 3.4375 -7.363281 4.375 -5.5625 C 5.3125 -3.757812 6.644531 -2.28125 8.375 -1.125 C 10.101562 0.0195312 12.390625 0.59375 15.234375 0.59375 C 17.640625 0.59375 19.660156 0.1875 21.296875 -0.625 C 22.941406 -1.4375 24.257812 -2.460938 25.25 -3.703125 C 26.238281 -4.941406 26.945312 -6.316406 27.375 -7.828125 C 27.8125 -9.335938 28.03125 -10.796875 28.03125 -12.203125 C 28.03125 -13.960938 27.757812 -15.597656 27.21875 -17.109375 C 26.675781 -18.628906 25.910156 -19.945312 24.921875 -21.0625 C 23.929688 -22.175781 22.707031 -23.046875 21.25 -23.671875 C 19.789062 -24.304688 18.144531 -24.625 16.3125 -24.625 C 14.21875 -24.625 12.367188 -24.226562 10.765625 -23.4375 C 9.171875 -22.644531 7.832031 -21.367188 6.75 -19.609375 L 6.640625 -19.703125 C 6.679688 -21.179688 6.828125 -22.765625 7.078125 -24.453125 C 7.328125 -26.148438 7.785156 -27.726562 8.453125 -29.1875 C 9.117188 -30.644531 10.046875 -31.847656 11.234375 -32.796875 C 12.421875 -33.753906 13.988281 -34.234375 15.9375 -34.234375 C 17.769531 -34.234375 19.242188 -33.710938 20.359375 -32.671875 C 21.472656 -31.628906 22.140625 -30.242188 22.359375 -28.515625 Z M 15.4375 -20.578125 C 16.738281 -20.578125 17.875 -20.34375 18.84375 -19.875 C 19.8125 -19.40625 20.617188 -18.78125 21.265625 -18 C 21.921875 -17.226562 22.398438 -16.3125 22.703125 -15.25 C 23.015625 -14.1875 23.171875 -13.0625 23.171875 -11.875 C 23.171875 -10.757812 23 -9.6875 22.65625 -8.65625 C 22.3125 -7.632812 21.816406 -6.726562 21.171875 -5.9375 C 20.523438 -5.144531 19.722656 -4.523438 18.765625 -4.078125 C 17.804688 -3.628906 16.695312 -3.40625 15.4375 -3.40625 C 14.175781 -3.40625 13.050781 -3.628906 12.0625 -4.078125 C 11.070312 -4.523438 10.242188 -5.125 9.578125 -5.875 C 8.921875 -6.632812 8.410156 -7.535156 8.046875 -8.578125 C 7.679688 -9.628906 7.5 -10.75 7.5 -11.9375 C 7.5 -13.125 7.671875 -14.25 8.015625 -15.3125 C 8.359375 -16.375 8.867188 -17.289062 9.546875 -18.0625 C 10.234375 -18.832031 11.0625 -19.441406 12.03125 -19.890625 C 13.007812 -20.347656 14.144531 -20.578125 15.4375 -20.578125 Z M 15.4375 -20.578125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-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="glyph1-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="glyph1-2">
-<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="glyph1-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="glyph1-4">
-<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="glyph1-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="glyph1-6">
-<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="glyph1-7">
-<path style="stroke:none;" d="M 3.984375 -5.328125 L 3.984375 0 L 6.8125 0 C 6.84375 0.382812 6.816406 0.800781 6.734375 1.25 C 6.660156 1.695312 6.507812 2.132812 6.28125 2.5625 C 6.0625 3 5.765625 3.398438 5.390625 3.765625 C 5.023438 4.128906 4.570312 4.410156 4.03125 4.609375 L 4.03125 7.015625 C 5.882812 6.460938 7.226562 5.53125 8.0625 4.21875 C 8.894531 2.90625 9.3125 1.335938 9.3125 -0.484375 L 9.3125 -5.328125 Z M 3.984375 -5.328125 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-8">
-<path style="stroke:none;" d=""/>
-</symbol>
-<symbol overflow="visible" id="glyph1-9">
-<path style="stroke:none;" d="M 19.921875 -16.84375 L 24.140625 -16.84375 C 23.984375 -18.320312 23.597656 -19.59375 22.984375 -20.65625 C 22.378906 -21.726562 21.601562 -22.617188 20.65625 -23.328125 C 19.71875 -24.035156 18.628906 -24.554688 17.390625 -24.890625 C 16.160156 -25.222656 14.84375 -25.390625 13.4375 -25.390625 C 11.488281 -25.390625 9.773438 -25.046875 8.296875 -24.359375 C 6.828125 -23.671875 5.601562 -22.726562 4.625 -21.53125 C 3.65625 -20.332031 2.929688 -18.921875 2.453125 -17.296875 C 1.972656 -15.679688 1.734375 -13.945312 1.734375 -12.09375 C 1.734375 -10.238281 1.976562 -8.535156 2.46875 -6.984375 C 2.96875 -5.429688 3.703125 -4.09375 4.671875 -2.96875 C 5.648438 -1.851562 6.867188 -0.988281 8.328125 -0.375 C 9.785156 0.226562 11.457031 0.53125 13.34375 0.53125 C 16.507812 0.53125 19.007812 -0.300781 20.84375 -1.96875 C 22.6875 -3.632812 23.832031 -6.003906 24.28125 -9.078125 L 20.109375 -9.078125 C 19.859375 -7.148438 19.160156 -5.660156 18.015625 -4.609375 C 16.878906 -3.554688 15.304688 -3.03125 13.296875 -3.03125 C 12.015625 -3.03125 10.910156 -3.285156 9.984375 -3.796875 C 9.054688 -4.304688 8.300781 -4.984375 7.71875 -5.828125 C 7.144531 -6.679688 6.722656 -7.648438 6.453125 -8.734375 C 6.179688 -9.828125 6.046875 -10.945312 6.046875 -12.09375 C 6.046875 -13.34375 6.171875 -14.550781 6.421875 -15.71875 C 6.679688 -16.882812 7.109375 -17.914062 7.703125 -18.8125 C 8.296875 -19.707031 9.085938 -20.425781 10.078125 -20.96875 C 11.066406 -21.519531 12.300781 -21.796875 13.78125 -21.796875 C 15.507812 -21.796875 16.882812 -21.363281 17.90625 -20.5 C 18.925781 -19.632812 19.597656 -18.414062 19.921875 -16.84375 Z M 19.921875 -16.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-10">
-<path style="stroke:none;" d="M 3.703125 -34.265625 L 3.703125 0 L 8.015625 0 L 8.015625 -27.5 L 8.109375 -27.5 L 26.015625 0 L 31.015625 0 L 31.015625 -34.265625 L 26.6875 -34.265625 L 26.6875 -6.484375 L 26.59375 -6.484375 L 8.546875 -34.265625 Z M 3.703125 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-11">
-<path style="stroke:none;" d="M 3.75 -34.265625 L 3.75 0 L 8.296875 0 L 8.296875 -15.703125 L 24.046875 -15.703125 L 24.046875 -19.53125 L 8.296875 -19.53125 L 8.296875 -30.4375 L 26.25 -30.4375 L 26.25 -34.265625 Z M 3.75 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-12">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-13">
-<path style="stroke:none;" d="M 8.296875 -3.84375 L 8.296875 -30.4375 L 15.984375 -30.4375 C 18.097656 -30.4375 19.875 -30.140625 21.3125 -29.546875 C 22.75 -28.953125 23.921875 -28.085938 24.828125 -26.953125 C 25.742188 -25.816406 26.398438 -24.441406 26.796875 -22.828125 C 27.203125 -21.210938 27.40625 -19.378906 27.40625 -17.328125 C 27.40625 -15.210938 27.1875 -13.410156 26.75 -11.921875 C 26.320312 -10.441406 25.769531 -9.203125 25.09375 -8.203125 C 24.425781 -7.210938 23.664062 -6.425781 22.8125 -5.84375 C 21.96875 -5.269531 21.113281 -4.832031 20.25 -4.53125 C 19.382812 -4.226562 18.566406 -4.035156 17.796875 -3.953125 C 17.035156 -3.878906 16.398438 -3.84375 15.890625 -3.84375 Z M 3.75 -34.265625 L 3.75 0 L 15.5 0 C 18.351562 0 20.816406 -0.398438 22.890625 -1.203125 C 24.972656 -2.003906 26.6875 -3.160156 28.03125 -4.671875 C 29.375 -6.191406 30.363281 -8.0625 31 -10.28125 C 31.644531 -12.507812 31.96875 -15.066406 31.96875 -17.953125 C 31.96875 -23.453125 30.539062 -27.546875 27.6875 -30.234375 C 24.84375 -32.921875 20.78125 -34.265625 15.5 -34.265625 Z M 3.75 -34.265625 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="915" height="927" 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 177.378906 220.890625 C 198.132812 240.816406 198.132812 273.125 177.378906 293.050781 C 156.621094 312.976562 122.96875 312.976562 102.214844 293.050781 C 81.457031 273.125 81.457031 240.816406 102.214844 220.890625 C 122.96875 200.964844 156.621094 200.964844 177.378906 220.890625 "/>
-<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 1215.126302 530.630208 C 1222.045573 537.272135 1222.045573 548.040365 1215.126302 554.683594 C 1208.207031 561.325521 1196.989583 561.325521 1190.071615 554.683594 C 1183.152344 548.040365 1183.152344 537.272135 1190.071615 530.630208 C 1196.989583 523.988281 1208.207031 523.988281 1215.126302 530.630208 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="124.7833" y="275.713903"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="286.6874" y="337.723103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 498.734375 220.890625 C 519.488281 240.816406 519.488281 273.125 498.734375 293.050781 C 477.976562 312.976562 444.324219 312.976562 423.566406 293.050781 C 402.8125 273.125 402.8125 240.816406 423.566406 220.890625 C 444.324219 200.964844 477.976562 200.964844 498.734375 220.890625 "/>
-<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 1322.24349 530.630208 C 1329.16276 537.272135 1329.16276 548.040365 1322.24349 554.683594 C 1315.325521 561.325521 1304.108073 561.325521 1297.188802 554.683594 C 1290.269531 548.040365 1290.269531 537.272135 1297.188802 530.630208 C 1304.108073 523.988281 1315.325521 523.988281 1322.24349 530.630208 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="446.1382" y="275.713903"/>
-</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 1220.315104 542.65625 L 1282.10026 542.65625 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<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 1290.10026 542.65625 L 1282.10026 539.65625 L 1282.10026 545.65625 Z M 1290.10026 542.65625 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<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 1320.15625 528.911458 C 1325.334635 521.049479 1329.99349 511.705729 1327.433594 506.309896 C 1322.414062 495.729167 1297.019531 495.013021 1292 505.309896 C 1290.269531 508.859375 1291.838542 514.39974 1294.635417 520.136719 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 427.792969 210.246094 L 423.71875 184.9375 L 408.082031 193.859375 Z M 427.792969 210.246094 "/>
-<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 1298.597656 527.082031 L 1297.239583 518.645833 L 1292.028646 521.619792 Z M 1298.597656 527.082031 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-2" x="414.9742" y="91.108903"/>
-  <use xlink:href="#glyph1-1" x="427.4062" y="91.108903"/>
-  <use xlink:href="#glyph1-3" x="453.1822" y="91.108903"/>
-  <use xlink:href="#glyph1-4" x="471.8542" y="91.108903"/>
-  <use xlink:href="#glyph1-5" x="494.8942" y="91.108903"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 815.171875 220.890625 C 835.929688 240.816406 835.929688 273.125 815.171875 293.050781 C 794.417969 312.976562 760.765625 312.976562 740.007812 293.050781 C 719.25 273.125 719.25 240.816406 740.007812 220.890625 C 760.765625 200.964844 794.417969 200.964844 815.171875 220.890625 "/>
-<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 1427.723958 530.630208 C 1434.643229 537.272135 1434.643229 548.040365 1427.723958 554.683594 C 1420.80599 561.325521 1409.588542 561.325521 1402.669271 554.683594 C 1395.751302 548.040365 1395.751302 537.272135 1402.669271 530.630208 C 1409.588542 523.988281 1420.80599 523.988281 1427.723958 530.630208 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="762.5786" y="275.713903"/>
-</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 1327.433594 542.65625 L 1387.579427 542.65625 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 718.742188 256.96875 L 694.742188 247.96875 L 694.742188 265.96875 Z M 718.742188 256.96875 "/>
-<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 1395.579427 542.65625 L 1387.579427 539.65625 L 1387.579427 545.65625 Z M 1395.579427 542.65625 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="589.0279" y="337.723103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 177.378906 721.207031 C 198.132812 741.132812 198.132812 773.4375 177.378906 793.363281 C 156.621094 813.289062 122.96875 813.289062 102.214844 793.363281 C 81.457031 773.4375 81.457031 741.132812 102.214844 721.207031 C 122.96875 701.28125 156.621094 701.28125 177.378906 721.207031 "/>
-<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 1215.126302 697.402344 C 1222.045573 704.044271 1222.045573 714.8125 1215.126302 721.454427 C 1208.207031 728.096354 1196.989583 728.096354 1190.071615 721.454427 C 1183.152344 714.8125 1183.152344 704.044271 1190.071615 697.402344 C 1196.989583 690.760417 1208.207031 690.760417 1215.126302 697.402344 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="124.7833" y="776.028903"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="286.6874" y="838.038103"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 498.734375 721.207031 C 519.488281 741.132812 519.488281 773.4375 498.734375 793.363281 C 477.976562 813.289062 444.324219 813.289062 423.566406 793.363281 C 402.8125 773.4375 402.8125 741.132812 423.566406 721.207031 C 444.324219 701.28125 477.976562 701.28125 498.734375 721.207031 "/>
-<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 1322.24349 697.402344 C 1329.16276 704.044271 1329.16276 714.8125 1322.24349 721.454427 C 1315.325521 728.096354 1304.108073 728.096354 1297.188802 721.454427 C 1290.269531 714.8125 1290.269531 704.044271 1297.188802 697.402344 C 1304.108073 690.760417 1315.325521 690.760417 1322.24349 697.402344 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="446.1382" y="776.028903"/>
-</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 1220.315104 709.428385 L 1282.10026 709.428385 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<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 1290.10026 709.428385 L 1282.10026 706.428385 L 1282.10026 712.428385 Z M 1290.10026 709.428385 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<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 1320.15625 695.683594 C 1325.334635 687.820312 1329.99349 678.476562 1327.433594 673.082031 C 1322.414062 662.501302 1297.019531 661.785156 1292 672.082031 C 1290.269531 675.63151 1291.838542 681.171875 1294.635417 686.907552 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 427.792969 710.558594 L 423.71875 685.253906 L 408.082031 694.171875 Z M 427.792969 710.558594 "/>
-<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 1298.597656 693.852865 L 1297.239583 685.417969 L 1292.028646 688.390625 Z M 1298.597656 693.852865 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="389.6396" y="595.675903"/>
-  <use xlink:href="#glyph1-7" x="415.4156" y="595.675903"/>
-  <use xlink:href="#glyph1-8" x="428.7596" y="595.675903"/>
-  <use xlink:href="#glyph1-2" x="442.1036" y="595.675903"/>
-  <use xlink:href="#glyph1-9" x="454.5356" y="595.675903"/>
-  <use xlink:href="#glyph1-3" x="480.3116" y="595.675903"/>
-  <use xlink:href="#glyph1-4" x="498.9836" y="595.675903"/>
-  <use xlink:href="#glyph1-5" x="522.0236" y="595.675903"/>
-</g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 815.171875 721.207031 C 835.929688 741.132812 835.929688 773.4375 815.171875 793.363281 C 794.417969 813.289062 760.765625 813.289062 740.007812 793.363281 C 719.25 773.4375 719.25 741.132812 740.007812 721.207031 C 760.765625 701.28125 794.417969 701.28125 815.171875 721.207031 "/>
-<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 1427.723958 697.402344 C 1434.643229 704.044271 1434.643229 714.8125 1427.723958 721.454427 C 1420.80599 728.096354 1409.588542 728.096354 1402.669271 721.454427 C 1395.751302 714.8125 1395.751302 704.044271 1402.669271 697.402344 C 1409.588542 690.760417 1420.80599 690.760417 1427.723958 697.402344 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
-  <use xlink:href="#glyph0-4" x="762.5786" y="776.028903"/>
-</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 1325.644531 716.885417 C 1333.385417 719.453125 1343.804688 721.696615 1356.583333 721.696615 C 1368.054688 721.696615 1379.358073 719.888021 1388.929688 717.660156 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 722.019531 775.914062 L 696.523438 773.269531 L 701.070312 790.6875 Z M 722.019531 775.914062 "/>
-<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 1396.673177 715.638021 L 1388.174479 714.75651 L 1389.691406 720.5625 Z M 1396.673177 715.638021 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="589.0279" y="870.636513"/>
-</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 1426.424479 696.270833 C 1431.273438 689.615885 1435.342448 682.045573 1432.91276 677.696615 C 1427.894531 668.705729 1402.5 668.705729 1397.480469 677.696615 C 1396.053385 680.25 1396.86849 683.914062 1398.765625 687.85026 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<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 1402.970052 694.654948 L 1401.316406 686.272135 L 1396.21224 689.425781 Z M 1402.970052 694.654948 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-6" x="763.3586" y="595.675903"/>
-</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 1398.585938 703.502604 C 1387.532552 700.179688 1372.214844 696.696615 1356.583333 696.696615 C 1348.411458 696.696615 1341.204427 697.648438 1335.045573 699.03125 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 514.046875 732.640625 L 539.589844 734.753906 L 534.679688 717.4375 Z M 514.046875 732.640625 "/>
-<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 1327.348958 701.213542 L 1335.864583 701.917969 L 1334.226562 696.145833 Z M 1327.348958 701.213542 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="534.2065" y="685.675903"/>
-  <use xlink:href="#glyph1-7" x="559.9825" y="685.675903"/>
-  <use xlink:href="#glyph1-8" x="573.3265" y="685.675903"/>
-  <use xlink:href="#glyph1-2" x="586.6705" y="685.675903"/>
-  <use xlink:href="#glyph1-9" x="599.1025" y="685.675903"/>
-  <use xlink:href="#glyph1-3" x="624.8785" y="685.675903"/>
-  <use xlink:href="#glyph1-4" x="643.5505" y="685.675903"/>
-  <use xlink:href="#glyph1-5" x="666.5905" y="685.675903"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-10" x="42.11814" y="91.108903"/>
-  <use xlink:href="#glyph1-11" x="76.77414" y="91.108903"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-12" x="101.68614" y="91.108903"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-13" x="42.11814" y="595.675903"/>
-  <use xlink:href="#glyph1-11" x="75.91014" y="595.675903"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-12" x="100.82214" y="595.675903"/>
-</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 1309.515625 596.986979 L 1309.515625 617.08724 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-<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 1309.515625 625.08724 L 1312.515625 617.08724 L 1306.515625 617.08724 Z M 1309.515625 625.08724 " transform="matrix(3,0,0,3,-3468,-1371)"/>
-</g>
-</svg>
--- a/slide/s6/images/regex/transitiontable.svg	Thu Feb 18 06:40:17 2016 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,373 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1227pt" height="1131pt" viewBox="0 0 1227 1131" 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 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-2">
-<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-3">
-<path style="stroke:none;" d="M 9.640625 -14.15625 L 15.453125 -30.140625 L 15.546875 -30.140625 L 21.265625 -14.15625 Z M 13.0625 -34.265625 L -0.28125 0 L 4.375 0 L 8.203125 -10.3125 L 22.703125 -10.3125 L 26.453125 0 L 31.484375 0 L 18.09375 -34.265625 Z M 13.0625 -34.265625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-4">
-<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-5">
-<path style="stroke:none;" d="M 1.0625 -3.84375 L 1.0625 0 L 28.3125 0 L 28.3125 -3.84375 L 6.484375 -3.84375 L 27.75 -30.4375 L 27.75 -34.265625 L 2.6875 -34.265625 L 2.6875 -30.4375 L 22.375 -30.4375 Z M 1.0625 -3.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-6">
-<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-7">
-<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-8">
-<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-9">
-<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-10">
-<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-11">
-<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-12">
-<path style="stroke:none;" d="M 7.4375 -25.203125 C 7.4375 -26.066406 7.597656 -26.816406 7.921875 -27.453125 C 8.242188 -28.097656 8.664062 -28.644531 9.1875 -29.09375 C 9.71875 -29.539062 10.347656 -29.875 11.078125 -30.09375 C 11.816406 -30.320312 12.585938 -30.4375 13.390625 -30.4375 C 15.054688 -30.4375 16.425781 -29.992188 17.5 -29.109375 C 18.570312 -28.234375 19.109375 -26.929688 19.109375 -25.203125 C 19.109375 -23.472656 18.578125 -22.128906 17.515625 -21.171875 C 16.460938 -20.210938 15.117188 -19.734375 13.484375 -19.734375 C 12.648438 -19.734375 11.863281 -19.84375 11.125 -20.0625 C 10.394531 -20.289062 9.757812 -20.628906 9.21875 -21.078125 C 8.675781 -21.523438 8.242188 -22.09375 7.921875 -22.78125 C 7.597656 -23.46875 7.4375 -24.273438 7.4375 -25.203125 Z M 3.125 -25.34375 C 3.125 -23.8125 3.554688 -22.394531 4.421875 -21.09375 C 5.285156 -19.800781 6.4375 -18.863281 7.875 -18.28125 C 5.945312 -17.613281 4.472656 -16.535156 3.453125 -15.046875 C 2.429688 -13.554688 1.921875 -11.804688 1.921875 -9.796875 C 1.921875 -8.066406 2.21875 -6.550781 2.8125 -5.25 C 3.40625 -3.957031 4.21875 -2.878906 5.25 -2.015625 C 6.289062 -1.148438 7.515625 -0.507812 8.921875 -0.09375 C 10.335938 0.320312 11.859375 0.53125 13.484375 0.53125 C 15.054688 0.53125 16.53125 0.304688 17.90625 -0.140625 C 19.28125 -0.585938 20.46875 -1.25 21.46875 -2.125 C 22.476562 -3.007812 23.28125 -4.09375 23.875 -5.375 C 24.46875 -6.65625 24.765625 -8.128906 24.765625 -9.796875 C 24.765625 -11.898438 24.269531 -13.679688 23.28125 -15.140625 C 22.289062 -16.597656 20.769531 -17.644531 18.71875 -18.28125 C 20.15625 -18.925781 21.296875 -19.878906 22.140625 -21.140625 C 22.992188 -22.410156 23.421875 -23.8125 23.421875 -25.34375 C 23.421875 -26.425781 23.226562 -27.488281 22.84375 -28.53125 C 22.457031 -29.570312 21.859375 -30.5 21.046875 -31.3125 C 20.234375 -32.132812 19.171875 -32.789062 17.859375 -33.28125 C 16.546875 -33.78125 14.960938 -34.03125 13.109375 -34.03125 C 11.796875 -34.03125 10.535156 -33.835938 9.328125 -33.453125 C 8.128906 -33.066406 7.066406 -32.503906 6.140625 -31.765625 C 5.210938 -31.035156 4.476562 -30.132812 3.9375 -29.0625 C 3.394531 -27.988281 3.125 -26.75 3.125 -25.34375 Z M 6.234375 -9.59375 C 6.234375 -10.59375 6.414062 -11.488281 6.78125 -12.28125 C 7.15625 -13.082031 7.671875 -13.769531 8.328125 -14.34375 C 8.984375 -14.925781 9.75 -15.367188 10.625 -15.671875 C 11.507812 -15.972656 12.445312 -16.125 13.4375 -16.125 C 14.394531 -16.125 15.296875 -15.957031 16.140625 -15.625 C 16.992188 -15.289062 17.738281 -14.832031 18.375 -14.25 C 19.019531 -13.675781 19.523438 -13 19.890625 -12.21875 C 20.265625 -11.4375 20.453125 -10.578125 20.453125 -9.640625 C 20.453125 -8.679688 20.28125 -7.800781 19.9375 -7 C 19.601562 -6.207031 19.125 -5.515625 18.5 -4.921875 C 17.875 -4.328125 17.140625 -3.863281 16.296875 -3.53125 C 15.453125 -3.195312 14.515625 -3.03125 13.484375 -3.03125 C 11.367188 -3.03125 9.628906 -3.613281 8.265625 -4.78125 C 6.910156 -5.945312 6.234375 -7.550781 6.234375 -9.59375 Z M 6.234375 -9.59375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-13">
-<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-14">
-<path style="stroke:none;" d="M 19.921875 -16.84375 L 24.140625 -16.84375 C 23.984375 -18.320312 23.597656 -19.59375 22.984375 -20.65625 C 22.378906 -21.726562 21.601562 -22.617188 20.65625 -23.328125 C 19.71875 -24.035156 18.628906 -24.554688 17.390625 -24.890625 C 16.160156 -25.222656 14.84375 -25.390625 13.4375 -25.390625 C 11.488281 -25.390625 9.773438 -25.046875 8.296875 -24.359375 C 6.828125 -23.671875 5.601562 -22.726562 4.625 -21.53125 C 3.65625 -20.332031 2.929688 -18.921875 2.453125 -17.296875 C 1.972656 -15.679688 1.734375 -13.945312 1.734375 -12.09375 C 1.734375 -10.238281 1.976562 -8.535156 2.46875 -6.984375 C 2.96875 -5.429688 3.703125 -4.09375 4.671875 -2.96875 C 5.648438 -1.851562 6.867188 -0.988281 8.328125 -0.375 C 9.785156 0.226562 11.457031 0.53125 13.34375 0.53125 C 16.507812 0.53125 19.007812 -0.300781 20.84375 -1.96875 C 22.6875 -3.632812 23.832031 -6.003906 24.28125 -9.078125 L 20.109375 -9.078125 C 19.859375 -7.148438 19.160156 -5.660156 18.015625 -4.609375 C 16.878906 -3.554688 15.304688 -3.03125 13.296875 -3.03125 C 12.015625 -3.03125 10.910156 -3.285156 9.984375 -3.796875 C 9.054688 -4.304688 8.300781 -4.984375 7.71875 -5.828125 C 7.144531 -6.679688 6.722656 -7.648438 6.453125 -8.734375 C 6.179688 -9.828125 6.046875 -10.945312 6.046875 -12.09375 C 6.046875 -13.34375 6.171875 -14.550781 6.421875 -15.71875 C 6.679688 -16.882812 7.109375 -17.914062 7.703125 -18.8125 C 8.296875 -19.707031 9.085938 -20.425781 10.078125 -20.96875 C 11.066406 -21.519531 12.300781 -21.796875 13.78125 -21.796875 C 15.507812 -21.796875 16.882812 -21.363281 17.90625 -20.5 C 18.925781 -19.632812 19.597656 -18.414062 19.921875 -16.84375 Z M 19.921875 -16.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph0-15">
-<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="glyph1-0">
-<path style="stroke:none;" d="M 17.171875 -27.96875 L 4.28125 -27.96875 L 4.28125 -1.96875 L 17.171875 -1.96875 Z M 19.3125 -29.90625 L 19.3125 -0.046875 L 2.140625 -0.046875 L 2.140625 -29.90625 Z M 19.3125 -29.90625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 17.4375 -14.734375 L 21.125 -14.734375 C 20.988281 -16.023438 20.648438 -17.140625 20.109375 -18.078125 C 19.578125 -19.015625 18.898438 -19.789062 18.078125 -20.40625 C 17.253906 -21.03125 16.300781 -21.488281 15.21875 -21.78125 C 14.144531 -22.070312 12.992188 -22.21875 11.765625 -22.21875 C 10.054688 -22.21875 8.554688 -21.914062 7.265625 -21.3125 C 5.972656 -20.707031 4.898438 -19.878906 4.046875 -18.828125 C 3.191406 -17.785156 2.554688 -16.554688 2.140625 -15.140625 C 1.722656 -13.722656 1.515625 -12.203125 1.515625 -10.578125 C 1.515625 -8.953125 1.726562 -7.460938 2.15625 -6.109375 C 2.59375 -4.753906 3.238281 -3.585938 4.09375 -2.609375 C 4.945312 -1.628906 6.007812 -0.867188 7.28125 -0.328125 C 8.5625 0.203125 10.023438 0.46875 11.671875 0.46875 C 14.441406 0.46875 16.628906 -0.257812 18.234375 -1.71875 C 19.847656 -3.175781 20.851562 -5.25 21.25 -7.9375 L 17.59375 -7.9375 C 17.375 -6.257812 16.765625 -4.957031 15.765625 -4.03125 C 14.773438 -3.101562 13.398438 -2.640625 11.640625 -2.640625 C 10.515625 -2.640625 9.546875 -2.863281 8.734375 -3.3125 C 7.921875 -3.757812 7.257812 -4.351562 6.75 -5.09375 C 6.25 -5.84375 5.878906 -6.691406 5.640625 -7.640625 C 5.410156 -8.597656 5.296875 -9.578125 5.296875 -10.578125 C 5.296875 -11.671875 5.40625 -12.726562 5.625 -13.75 C 5.851562 -14.769531 6.222656 -15.671875 6.734375 -16.453125 C 7.253906 -17.242188 7.945312 -17.875 8.8125 -18.34375 C 9.6875 -18.820312 10.765625 -19.0625 12.046875 -19.0625 C 13.566406 -19.0625 14.773438 -18.679688 15.671875 -17.921875 C 16.566406 -17.171875 17.15625 -16.109375 17.4375 -14.734375 Z M 17.4375 -14.734375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 20.65625 0 L 20.65625 -21.71875 L 17.09375 -21.71875 L 17.09375 -9.453125 C 17.09375 -8.472656 16.957031 -7.566406 16.6875 -6.734375 C 16.425781 -5.910156 16.03125 -5.191406 15.5 -4.578125 C 14.96875 -3.960938 14.300781 -3.484375 13.5 -3.140625 C 12.707031 -2.804688 11.765625 -2.640625 10.671875 -2.640625 C 9.296875 -2.640625 8.21875 -3.03125 7.4375 -3.8125 C 6.65625 -4.601562 6.265625 -5.671875 6.265625 -7.015625 L 6.265625 -21.71875 L 2.6875 -21.71875 L 2.6875 -7.4375 C 2.6875 -6.257812 2.804688 -5.1875 3.046875 -4.21875 C 3.285156 -3.25 3.695312 -2.414062 4.28125 -1.71875 C 4.875 -1.019531 5.644531 -0.476562 6.59375 -0.09375 C 7.539062 0.28125 8.726562 0.46875 10.15625 0.46875 C 11.757812 0.46875 13.148438 0.15625 14.328125 -0.46875 C 15.503906 -1.101562 16.46875 -2.09375 17.21875 -3.4375 L 17.296875 -3.4375 L 17.296875 0 Z M 20.65625 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 2.5625 -21.71875 L 2.5625 0 L 6.125 0 L 6.125 -9.65625 C 6.125 -11.0625 6.265625 -12.300781 6.546875 -13.375 C 6.828125 -14.457031 7.273438 -15.375 7.890625 -16.125 C 8.503906 -16.882812 9.316406 -17.457031 10.328125 -17.84375 C 11.335938 -18.238281 12.554688 -18.4375 13.984375 -18.4375 L 13.984375 -22.21875 C 12.054688 -22.269531 10.460938 -21.875 9.203125 -21.03125 C 7.941406 -20.195312 6.875 -18.898438 6 -17.140625 L 5.921875 -17.140625 L 5.921875 -21.71875 Z M 2.5625 -21.71875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 17.765625 -12.9375 L 5.296875 -12.9375 C 5.347656 -13.78125 5.523438 -14.570312 5.828125 -15.3125 C 6.140625 -16.050781 6.5625 -16.703125 7.09375 -17.265625 C 7.625 -17.828125 8.257812 -18.265625 9 -18.578125 C 9.75 -18.898438 10.585938 -19.0625 11.515625 -19.0625 C 12.410156 -19.0625 13.226562 -18.898438 13.96875 -18.578125 C 14.707031 -18.265625 15.347656 -17.832031 15.890625 -17.28125 C 16.441406 -16.738281 16.878906 -16.085938 17.203125 -15.328125 C 17.523438 -14.578125 17.710938 -13.78125 17.765625 -12.9375 Z M 21.203125 -6.890625 L 17.6875 -6.890625 C 17.375 -5.460938 16.734375 -4.394531 15.765625 -3.6875 C 14.804688 -2.988281 13.566406 -2.640625 12.046875 -2.640625 C 10.878906 -2.640625 9.859375 -2.835938 8.984375 -3.234375 C 8.117188 -3.628906 7.40625 -4.15625 6.84375 -4.8125 C 6.28125 -5.46875 5.875 -6.222656 5.625 -7.078125 C 5.375 -7.929688 5.265625 -8.832031 5.296875 -9.78125 L 21.546875 -9.78125 C 21.597656 -11.101562 21.476562 -12.488281 21.1875 -13.9375 C 20.894531 -15.394531 20.363281 -16.738281 19.59375 -17.96875 C 18.820312 -19.207031 17.796875 -20.222656 16.515625 -21.015625 C 15.242188 -21.816406 13.644531 -22.21875 11.71875 -22.21875 C 10.226562 -22.21875 8.859375 -21.9375 7.609375 -21.375 C 6.367188 -20.8125 5.296875 -20.023438 4.390625 -19.015625 C 3.484375 -18.015625 2.773438 -16.828125 2.265625 -15.453125 C 1.765625 -14.078125 1.515625 -12.566406 1.515625 -10.921875 C 1.566406 -9.265625 1.804688 -7.734375 2.234375 -6.328125 C 2.671875 -4.929688 3.320312 -3.726562 4.1875 -2.71875 C 5.0625 -1.71875 6.132812 -0.9375 7.40625 -0.375 C 8.6875 0.1875 10.191406 0.46875 11.921875 0.46875 C 14.390625 0.46875 16.4375 -0.144531 18.0625 -1.375 C 19.6875 -2.613281 20.734375 -4.453125 21.203125 -6.890625 Z M 21.203125 -6.890625 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 2.6875 -21.71875 L 2.6875 0 L 6.265625 0 L 6.265625 -12.265625 C 6.265625 -13.242188 6.394531 -14.144531 6.65625 -14.96875 C 6.925781 -15.800781 7.328125 -16.523438 7.859375 -17.140625 C 8.390625 -17.753906 9.050781 -18.226562 9.84375 -18.5625 C 10.644531 -18.894531 11.59375 -19.0625 12.6875 -19.0625 C 14.050781 -19.0625 15.125 -18.671875 15.90625 -17.890625 C 16.695312 -17.109375 17.09375 -16.046875 17.09375 -14.703125 L 17.09375 0 L 20.65625 0 L 20.65625 -14.28125 C 20.65625 -15.457031 20.535156 -16.523438 20.296875 -17.484375 C 20.066406 -18.453125 19.65625 -19.285156 19.0625 -19.984375 C 18.476562 -20.691406 17.707031 -21.238281 16.75 -21.625 C 15.800781 -22.019531 14.613281 -22.21875 13.1875 -22.21875 C 9.96875 -22.21875 7.613281 -20.898438 6.125 -18.265625 L 6.046875 -18.265625 L 6.046875 -21.71875 Z M 2.6875 -21.71875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-6">
-<path style="stroke:none;" d="M 7.640625 -21.71875 L 7.640625 -28.21875 L 4.078125 -28.21875 L 4.078125 -21.71875 L 0.375 -21.71875 L 0.375 -18.5625 L 4.078125 -18.5625 L 4.078125 -4.75 C 4.078125 -3.738281 4.171875 -2.925781 4.359375 -2.3125 C 4.554688 -1.695312 4.859375 -1.21875 5.265625 -0.875 C 5.671875 -0.539062 6.203125 -0.3125 6.859375 -0.1875 C 7.523438 -0.0625 8.316406 0 9.234375 0 L 11.96875 0 L 11.96875 -3.15625 L 10.328125 -3.15625 C 9.765625 -3.15625 9.304688 -3.175781 8.953125 -3.21875 C 8.609375 -3.257812 8.335938 -3.347656 8.140625 -3.484375 C 7.953125 -3.628906 7.820312 -3.828125 7.75 -4.078125 C 7.675781 -4.328125 7.640625 -4.660156 7.640625 -5.078125 L 7.640625 -18.5625 L 11.96875 -18.5625 L 11.96875 -21.71875 Z M 7.640625 -21.71875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-7">
-<path style="stroke:none;" d="M 4.875 -6.84375 L 1.296875 -6.84375 C 1.359375 -5.5 1.640625 -4.359375 2.140625 -3.421875 C 2.640625 -2.484375 3.3125 -1.726562 4.15625 -1.15625 C 5 -0.582031 5.960938 -0.171875 7.046875 0.078125 C 8.140625 0.335938 9.289062 0.46875 10.5 0.46875 C 11.59375 0.46875 12.691406 0.359375 13.796875 0.140625 C 14.898438 -0.0664062 15.894531 -0.4375 16.78125 -0.96875 C 17.664062 -1.5 18.378906 -2.195312 18.921875 -3.0625 C 19.460938 -3.9375 19.734375 -5.03125 19.734375 -6.34375 C 19.734375 -7.375 19.53125 -8.238281 19.125 -8.9375 C 18.71875 -9.644531 18.1875 -10.226562 17.53125 -10.6875 C 16.875 -11.144531 16.117188 -11.515625 15.265625 -11.796875 C 14.410156 -12.078125 13.535156 -12.316406 12.640625 -12.515625 C 11.796875 -12.710938 10.953125 -12.898438 10.109375 -13.078125 C 9.273438 -13.265625 8.519531 -13.488281 7.84375 -13.75 C 7.175781 -14.019531 6.625 -14.359375 6.1875 -14.765625 C 5.757812 -15.171875 5.546875 -15.679688 5.546875 -16.296875 C 5.546875 -16.859375 5.6875 -17.3125 5.96875 -17.65625 C 6.25 -18.007812 6.613281 -18.289062 7.0625 -18.5 C 7.507812 -18.707031 8.003906 -18.851562 8.546875 -18.9375 C 9.085938 -19.019531 9.625 -19.0625 10.15625 -19.0625 C 10.75 -19.0625 11.332031 -19 11.90625 -18.875 C 12.476562 -18.75 13.003906 -18.546875 13.484375 -18.265625 C 13.960938 -17.984375 14.351562 -17.613281 14.65625 -17.15625 C 14.96875 -16.695312 15.148438 -16.113281 15.203125 -15.40625 L 18.78125 -15.40625 C 18.6875 -16.726562 18.398438 -17.828125 17.921875 -18.703125 C 17.453125 -19.585938 16.816406 -20.289062 16.015625 -20.8125 C 15.222656 -21.332031 14.304688 -21.695312 13.265625 -21.90625 C 12.234375 -22.113281 11.101562 -22.21875 9.875 -22.21875 C 8.914062 -22.21875 7.953125 -22.097656 6.984375 -21.859375 C 6.023438 -21.617188 5.160156 -21.253906 4.390625 -20.765625 C 3.617188 -20.273438 2.988281 -19.640625 2.5 -18.859375 C 2.007812 -18.078125 1.765625 -17.140625 1.765625 -16.046875 C 1.765625 -14.640625 2.113281 -13.546875 2.8125 -12.765625 C 3.507812 -11.984375 4.382812 -11.375 5.4375 -10.9375 C 6.488281 -10.507812 7.628906 -10.175781 8.859375 -9.9375 C 10.085938 -9.695312 11.226562 -9.425781 12.28125 -9.125 C 13.332031 -8.832031 14.207031 -8.445312 14.90625 -7.96875 C 15.601562 -7.5 15.953125 -6.800781 15.953125 -5.875 C 15.953125 -5.207031 15.785156 -4.65625 15.453125 -4.21875 C 15.117188 -3.78125 14.691406 -3.445312 14.171875 -3.21875 C 13.648438 -3 13.082031 -2.847656 12.46875 -2.765625 C 11.851562 -2.679688 11.265625 -2.640625 10.703125 -2.640625 C 9.984375 -2.640625 9.28125 -2.707031 8.59375 -2.84375 C 7.90625 -2.988281 7.285156 -3.222656 6.734375 -3.546875 C 6.191406 -3.867188 5.75 -4.300781 5.40625 -4.84375 C 5.070312 -5.394531 4.894531 -6.0625 4.875 -6.84375 Z M 4.875 -6.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-8">
-<path style="stroke:none;" d="M 21.921875 -0.078125 C 21.304688 0.285156 20.453125 0.46875 19.359375 0.46875 C 18.429688 0.46875 17.695312 0.207031 17.15625 -0.3125 C 16.613281 -0.832031 16.34375 -1.679688 16.34375 -2.859375 C 15.363281 -1.679688 14.222656 -0.832031 12.921875 -0.3125 C 11.617188 0.207031 10.207031 0.46875 8.6875 0.46875 C 7.707031 0.46875 6.773438 0.351562 5.890625 0.125 C 5.015625 -0.09375 4.253906 -0.441406 3.609375 -0.921875 C 2.960938 -1.398438 2.453125 -2.023438 2.078125 -2.796875 C 1.703125 -3.566406 1.515625 -4.5 1.515625 -5.59375 C 1.515625 -6.820312 1.722656 -7.828125 2.140625 -8.609375 C 2.554688 -9.390625 3.109375 -10.023438 3.796875 -10.515625 C 4.484375 -11.003906 5.265625 -11.375 6.140625 -11.625 C 7.023438 -11.882812 7.929688 -12.097656 8.859375 -12.265625 C 9.835938 -12.460938 10.769531 -12.609375 11.65625 -12.703125 C 12.539062 -12.804688 13.316406 -12.945312 13.984375 -13.125 C 14.660156 -13.300781 15.191406 -13.566406 15.578125 -13.921875 C 15.972656 -14.273438 16.171875 -14.785156 16.171875 -15.453125 C 16.171875 -16.234375 16.019531 -16.863281 15.71875 -17.34375 C 15.425781 -17.820312 15.050781 -18.1875 14.59375 -18.4375 C 14.132812 -18.6875 13.617188 -18.851562 13.046875 -18.9375 C 12.472656 -19.019531 11.90625 -19.0625 11.34375 -19.0625 C 9.832031 -19.0625 8.570312 -18.773438 7.5625 -18.203125 C 6.550781 -17.628906 6.003906 -16.546875 5.921875 -14.953125 L 2.359375 -14.953125 C 2.410156 -16.296875 2.6875 -17.425781 3.1875 -18.34375 C 3.695312 -19.269531 4.367188 -20.019531 5.203125 -20.59375 C 6.046875 -21.175781 7.003906 -21.59375 8.078125 -21.84375 C 9.160156 -22.09375 10.316406 -22.21875 11.546875 -22.21875 C 12.523438 -22.21875 13.5 -22.144531 14.46875 -22 C 15.4375 -21.863281 16.3125 -21.578125 17.09375 -21.140625 C 17.875 -20.710938 18.503906 -20.101562 18.984375 -19.3125 C 19.460938 -18.53125 19.703125 -17.507812 19.703125 -16.25 L 19.703125 -5.078125 C 19.703125 -4.242188 19.75 -3.628906 19.84375 -3.234375 C 19.9375 -2.835938 20.265625 -2.640625 20.828125 -2.640625 C 21.140625 -2.640625 21.503906 -2.710938 21.921875 -2.859375 Z M 16.125 -11.21875 C 15.675781 -10.875 15.085938 -10.625 14.359375 -10.46875 C 13.628906 -10.320312 12.863281 -10.195312 12.0625 -10.09375 C 11.269531 -10 10.46875 -9.890625 9.65625 -9.765625 C 8.84375 -9.640625 8.113281 -9.4375 7.46875 -9.15625 C 6.832031 -8.875 6.3125 -8.472656 5.90625 -7.953125 C 5.5 -7.441406 5.296875 -6.738281 5.296875 -5.84375 C 5.296875 -5.25 5.410156 -4.75 5.640625 -4.34375 C 5.878906 -3.9375 6.1875 -3.609375 6.5625 -3.359375 C 6.945312 -3.109375 7.390625 -2.925781 7.890625 -2.8125 C 8.398438 -2.695312 8.929688 -2.640625 9.484375 -2.640625 C 10.660156 -2.640625 11.671875 -2.800781 12.515625 -3.125 C 13.359375 -3.445312 14.046875 -3.851562 14.578125 -4.34375 C 15.109375 -4.832031 15.5 -5.363281 15.75 -5.9375 C 16 -6.507812 16.125 -7.050781 16.125 -7.5625 Z M 16.125 -11.21875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-9">
-<path style="stroke:none;" d="M 5.296875 -10.84375 C 5.296875 -12.15625 5.46875 -13.320312 5.8125 -14.34375 C 6.164062 -15.363281 6.648438 -16.222656 7.265625 -16.921875 C 7.878906 -17.617188 8.597656 -18.148438 9.421875 -18.515625 C 10.253906 -18.878906 11.128906 -19.0625 12.046875 -19.0625 C 12.972656 -19.0625 13.847656 -18.878906 14.671875 -18.515625 C 15.503906 -18.148438 16.226562 -17.617188 16.84375 -16.921875 C 17.457031 -16.222656 17.9375 -15.363281 18.28125 -14.34375 C 18.632812 -13.320312 18.8125 -12.15625 18.8125 -10.84375 C 18.8125 -9.519531 18.632812 -8.347656 18.28125 -7.328125 C 17.9375 -6.304688 17.457031 -5.453125 16.84375 -4.765625 C 16.226562 -4.078125 15.503906 -3.550781 14.671875 -3.1875 C 13.847656 -2.820312 12.972656 -2.640625 12.046875 -2.640625 C 11.128906 -2.640625 10.253906 -2.820312 9.421875 -3.1875 C 8.597656 -3.550781 7.878906 -4.078125 7.265625 -4.765625 C 6.648438 -5.453125 6.164062 -6.304688 5.8125 -7.328125 C 5.46875 -8.347656 5.296875 -9.519531 5.296875 -10.84375 Z M 1.515625 -10.84375 C 1.515625 -9.238281 1.738281 -7.75 2.1875 -6.375 C 2.632812 -5.007812 3.304688 -3.816406 4.203125 -2.796875 C 5.097656 -1.773438 6.203125 -0.972656 7.515625 -0.390625 C 8.828125 0.179688 10.335938 0.46875 12.046875 0.46875 C 13.785156 0.46875 15.304688 0.179688 16.609375 -0.390625 C 17.910156 -0.972656 19.007812 -1.773438 19.90625 -2.796875 C 20.800781 -3.816406 21.472656 -5.007812 21.921875 -6.375 C 22.367188 -7.75 22.59375 -9.238281 22.59375 -10.84375 C 22.59375 -12.4375 22.367188 -13.925781 21.921875 -15.3125 C 21.472656 -16.695312 20.800781 -17.898438 19.90625 -18.921875 C 19.007812 -19.941406 17.910156 -20.742188 16.609375 -21.328125 C 15.304688 -21.921875 13.785156 -22.21875 12.046875 -22.21875 C 10.335938 -22.21875 8.828125 -21.921875 7.515625 -21.328125 C 6.203125 -20.742188 5.097656 -19.941406 4.203125 -18.921875 C 3.304688 -17.898438 2.632812 -16.695312 2.1875 -15.3125 C 1.738281 -13.925781 1.515625 -12.4375 1.515625 -10.84375 Z M 1.515625 -10.84375 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-10">
-<path style="stroke:none;" d="M 5.296875 -10.671875 C 5.296875 -11.734375 5.40625 -12.765625 5.625 -13.765625 C 5.851562 -14.773438 6.21875 -15.671875 6.71875 -16.453125 C 7.21875 -17.242188 7.890625 -17.875 8.734375 -18.34375 C 9.578125 -18.820312 10.597656 -19.0625 11.796875 -19.0625 C 13.035156 -19.0625 14.085938 -18.832031 14.953125 -18.375 C 15.816406 -17.914062 16.519531 -17.304688 17.0625 -16.546875 C 17.613281 -15.785156 18.015625 -14.910156 18.265625 -13.921875 C 18.515625 -12.929688 18.640625 -11.90625 18.640625 -10.84375 C 18.640625 -9.832031 18.519531 -8.835938 18.28125 -7.859375 C 18.050781 -6.878906 17.671875 -6.003906 17.140625 -5.234375 C 16.609375 -4.460938 15.921875 -3.835938 15.078125 -3.359375 C 14.234375 -2.878906 13.210938 -2.640625 12.015625 -2.640625 C 10.867188 -2.640625 9.867188 -2.863281 9.015625 -3.3125 C 8.160156 -3.757812 7.457031 -4.363281 6.90625 -5.125 C 6.363281 -5.882812 5.957031 -6.742188 5.6875 -7.703125 C 5.425781 -8.671875 5.296875 -9.660156 5.296875 -10.671875 Z M 22.09375 0 L 22.09375 -29.984375 L 18.515625 -29.984375 L 18.515625 -18.8125 L 18.4375 -18.8125 C 18.039062 -19.457031 17.554688 -19.992188 16.984375 -20.421875 C 16.410156 -20.859375 15.800781 -21.207031 15.15625 -21.46875 C 14.519531 -21.738281 13.878906 -21.929688 13.234375 -22.046875 C 12.585938 -22.160156 11.984375 -22.21875 11.421875 -22.21875 C 9.773438 -22.21875 8.328125 -21.914062 7.078125 -21.3125 C 5.828125 -20.707031 4.789062 -19.894531 3.96875 -18.875 C 3.144531 -17.851562 2.53125 -16.65625 2.125 -15.28125 C 1.71875 -13.914062 1.515625 -12.460938 1.515625 -10.921875 C 1.515625 -9.378906 1.722656 -7.921875 2.140625 -6.546875 C 2.554688 -5.179688 3.175781 -3.976562 4 -2.9375 C 4.832031 -1.90625 5.867188 -1.078125 7.109375 -0.453125 C 8.359375 0.160156 9.828125 0.46875 11.515625 0.46875 C 13.023438 0.46875 14.410156 0.203125 15.671875 -0.328125 C 16.929688 -0.867188 17.851562 -1.738281 18.4375 -2.9375 L 18.515625 -2.9375 L 18.515625 0 Z M 22.09375 0 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-11">
-<path style="stroke:none;" d="M 6.46875 -25.625 L 6.46875 -29.984375 L 2.890625 -29.984375 L 2.890625 -25.625 Z M 2.890625 -21.71875 L 2.890625 0 L 6.46875 0 L 6.46875 -21.71875 Z M 2.890625 -21.71875 "/>
-</symbol>
-<symbol overflow="visible" id="glyph1-12">
-<path style="stroke:none;" d="M 8.53125 -11.421875 L 0.375 0 L 4.703125 0 L 10.75 -8.984375 L 16.796875 0 L 21.375 0 L 12.984375 -11.71875 L 20.453125 -21.71875 L 16.171875 -21.71875 L 10.75 -14.109375 L 5.546875 -21.71875 L 0.96875 -21.71875 Z M 8.53125 -11.421875 "/>
-</symbol>
-</g>
-</defs>
-<g id="surface1">
-<rect x="0" y="0" width="1227" height="1131" 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="119.1757" y="241.265003"/>
-</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 1221.731771 134.645833 L 1277.007812 134.645833 L 1277.007812 164.645833 L 1221.731771 164.645833 Z M 1221.731771 134.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="276.1263" y="241.265003"/>
-  <use xlink:href="#glyph0-3" x="288.5583" y="241.265003"/>
-  <use xlink:href="#glyph0-4" x="319.6623" y="241.265003"/>
-  <use xlink:href="#glyph0-5" x="338.3343" y="241.265003"/>
-  <use xlink:href="#glyph0-6" x="367.6623" y="241.265003"/>
-</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 1221.731771 164.645833 L 1277.007812 164.645833 L 1277.007812 194.645833 L 1221.731771 194.645833 Z M 1221.731771 164.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="280.5903" y="331.265003"/>
-  <use xlink:href="#glyph0-7" x="293.0223" y="331.265003"/>
-  <use xlink:href="#glyph0-4" x="321.4863" y="331.265003"/>
-  <use xlink:href="#glyph0-8" x="340.1583" y="331.265003"/>
-  <use xlink:href="#glyph0-6" x="363.1983" y="331.265003"/>
-</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 1277.007812 134.645833 L 1332.282552 134.645833 L 1332.282552 164.645833 L 1277.007812 164.645833 Z M 1277.007812 134.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="480.593" y="241.265003"/>
-</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 1277.007812 164.645833 L 1332.282552 164.645833 L 1332.282552 194.645833 L 1277.007812 194.645833 Z M 1277.007812 164.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="480.593" y="331.265003"/>
-</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 1221.731771 194.645833 L 1277.007812 194.645833 L 1277.007812 224.645833 L 1221.731771 224.645833 Z M 1221.731771 194.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="315.2223" y="421.265003"/>
-</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 1277.007812 194.645833 L 1332.282552 194.645833 L 1332.282552 224.645833 L 1277.007812 224.645833 Z M 1277.007812 194.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="467.249" y="421.265003"/>
-  <use xlink:href="#glyph0-10" x="493.937" y="421.265003"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-11" x="119.1757" y="547.406703"/>
-</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 1221.731771 236.692708 L 1277.007812 236.692708 L 1277.007812 266.692708 L 1221.731771 266.692708 Z M 1221.731771 236.692708 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-7" x="313.8783" y="547.406703"/>
-</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 1277.007812 236.692708 L 1332.282552 236.692708 L 1332.282552 266.692708 L 1277.007812 266.692708 Z M 1277.007812 236.692708 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-11" x="480.593" y="547.406703"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-12" x="119.1757" y="673.548503"/>
-</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 1221.731771 278.739583 L 1277.007812 278.739583 L 1277.007812 308.739583 L 1221.731771 308.739583 Z M 1221.731771 278.739583 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="315.2223" y="673.548503"/>
-</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 1277.007812 278.739583 L 1332.282552 278.739583 L 1332.282552 308.739583 L 1277.007812 308.739583 Z M 1277.007812 278.739583 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-13" x="480.593" y="673.548503"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="105.8317" y="799.690203"/>
-  <use xlink:href="#glyph0-10" x="132.5197" y="799.690203"/>
-</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 1221.731771 320.78776 L 1277.007812 320.78776 L 1277.007812 350.78776 L 1221.731771 350.78776 Z M 1221.731771 320.78776 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="276.1263" y="799.690203"/>
-  <use xlink:href="#glyph0-3" x="288.5583" y="799.690203"/>
-  <use xlink:href="#glyph0-4" x="319.6623" y="799.690203"/>
-  <use xlink:href="#glyph0-5" x="338.3343" y="799.690203"/>
-  <use xlink:href="#glyph0-6" x="367.6623" y="799.690203"/>
-</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 1221.731771 350.78776 L 1277.007812 350.78776 L 1277.007812 380.78776 L 1221.731771 380.78776 Z M 1221.731771 350.78776 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="281.9343" y="889.690203"/>
-  <use xlink:href="#glyph0-14" x="294.3663" y="889.690203"/>
-  <use xlink:href="#glyph0-4" x="320.1423" y="889.690203"/>
-  <use xlink:href="#glyph0-8" x="338.8143" y="889.690203"/>
-  <use xlink:href="#glyph0-6" x="361.8543" y="889.690203"/>
-</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 1277.007812 320.78776 L 1332.282552 320.78776 L 1332.282552 350.78776 L 1277.007812 350.78776 Z M 1277.007812 320.78776 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="480.593" y="799.690203"/>
-</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 1277.007812 350.78776 L 1332.282552 350.78776 L 1332.282552 380.78776 L 1277.007812 380.78776 Z M 1277.007812 350.78776 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="480.593" y="889.690203"/>
-</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 1221.731771 380.78776 L 1277.007812 380.78776 L 1277.007812 410.78776 L 1221.731771 410.78776 Z M 1221.731771 380.78776 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="315.2223" y="979.690203"/>
-</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 1277.007812 380.78776 L 1332.282552 380.78776 L 1332.282552 410.78776 L 1277.007812 410.78776 Z M 1277.007812 380.78776 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="467.249" y="979.690203"/>
-  <use xlink:href="#glyph0-15" x="493.937" y="979.690203"/>
-</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 1221.731771 410.78776 L 1277.007812 410.78776 L 1277.007812 440.78776 L 1221.731771 440.78776 Z M 1221.731771 410.78776 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-7" x="313.8783" y="1069.690223"/>
-</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 1277.007812 410.78776 L 1332.282552 410.78776 L 1332.282552 440.78776 L 1277.007812 440.78776 Z M 1277.007812 410.78776 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-15" x="480.593" y="1069.690223"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="705.3593" y="241.265003"/>
-  <use xlink:href="#glyph0-15" x="732.0473" y="241.265003"/>
-</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 1421.575521 134.645833 L 1476.85026 134.645833 L 1476.85026 164.645833 L 1421.575521 164.645833 Z M 1421.575521 134.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="875.6538" y="241.265003"/>
-  <use xlink:href="#glyph0-3" x="888.0858" y="241.265003"/>
-  <use xlink:href="#glyph0-4" x="919.1898" y="241.265003"/>
-  <use xlink:href="#glyph0-5" x="937.8618" y="241.265003"/>
-  <use xlink:href="#glyph0-6" x="967.1898" y="241.265003"/>
-</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 1421.575521 164.645833 L 1476.85026 164.645833 L 1476.85026 194.645833 L 1421.575521 194.645833 Z M 1421.575521 164.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="881.4618" y="331.265003"/>
-  <use xlink:href="#glyph0-14" x="893.8938" y="331.265003"/>
-  <use xlink:href="#glyph0-4" x="919.6698" y="331.265003"/>
-  <use xlink:href="#glyph0-8" x="938.3418" y="331.265003"/>
-  <use xlink:href="#glyph0-6" x="961.3818" y="331.265003"/>
-</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 1476.85026 134.645833 L 1532.126302 134.645833 L 1532.126302 164.645833 L 1476.85026 164.645833 Z M 1476.85026 134.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1080.121" y="241.265003"/>
-</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 1476.85026 164.645833 L 1532.126302 164.645833 L 1532.126302 194.645833 L 1476.85026 194.645833 Z M 1476.85026 164.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1080.121" y="331.265003"/>
-</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 1421.575521 194.645833 L 1476.85026 194.645833 L 1476.85026 224.645833 L 1421.575521 224.645833 Z M 1421.575521 194.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="914.7498" y="421.265003"/>
-</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 1476.85026 194.645833 L 1532.126302 194.645833 L 1532.126302 224.645833 L 1476.85026 224.645833 Z M 1476.85026 194.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1066.777" y="421.265003"/>
-  <use xlink:href="#glyph0-15" x="1093.465" y="421.265003"/>
-</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 1421.575521 224.645833 L 1476.85026 224.645833 L 1476.85026 254.645833 L 1421.575521 254.645833 Z M 1421.575521 224.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-7" x="913.4058" y="511.265003"/>
-</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 1476.85026 224.645833 L 1532.126302 224.645833 L 1532.126302 254.645833 L 1476.85026 254.645833 Z M 1476.85026 224.645833 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-15" x="1080.121" y="511.265003"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-15" x="718.7033" y="630.320103"/>
-</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 1421.575521 264.330729 L 1476.85026 264.330729 L 1476.85026 294.330729 L 1421.575521 294.330729 Z M 1421.575521 264.330729 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="875.6538" y="630.320103"/>
-  <use xlink:href="#glyph0-3" x="888.0858" y="630.320103"/>
-  <use xlink:href="#glyph0-4" x="919.1898" y="630.320103"/>
-  <use xlink:href="#glyph0-5" x="937.8618" y="630.320103"/>
-  <use xlink:href="#glyph0-6" x="967.1898" y="630.320103"/>
-</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 1421.575521 294.330729 L 1476.85026 294.330729 L 1476.85026 324.330729 L 1421.575521 324.330729 Z M 1421.575521 294.330729 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-2" x="881.4618" y="720.320103"/>
-  <use xlink:href="#glyph0-14" x="893.8938" y="720.320103"/>
-  <use xlink:href="#glyph0-4" x="919.6698" y="720.320103"/>
-  <use xlink:href="#glyph0-8" x="938.3418" y="720.320103"/>
-  <use xlink:href="#glyph0-6" x="961.3818" y="720.320103"/>
-</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 1476.85026 264.330729 L 1532.126302 264.330729 L 1532.126302 294.330729 L 1476.85026 294.330729 Z M 1476.85026 264.330729 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1080.121" y="630.320103"/>
-</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 1476.85026 294.330729 L 1532.126302 294.330729 L 1532.126302 324.330729 L 1476.85026 324.330729 Z M 1476.85026 294.330729 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1080.121" y="720.320103"/>
-</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 1421.575521 324.330729 L 1476.85026 324.330729 L 1476.85026 354.330729 L 1421.575521 354.330729 Z M 1421.575521 324.330729 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-9" x="914.7498" y="810.320103"/>
-</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 1476.85026 324.330729 L 1532.126302 324.330729 L 1532.126302 354.330729 L 1476.85026 354.330729 Z M 1476.85026 324.330729 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-1" x="1066.777" y="810.320103"/>
-  <use xlink:href="#glyph0-10" x="1093.465" y="810.320103"/>
-</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 1421.575521 354.330729 L 1476.85026 354.330729 L 1476.85026 384.330729 L 1421.575521 384.330729 Z M 1421.575521 354.330729 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-7" x="913.4058" y="900.320103"/>
-</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 1476.85026 354.330729 L 1532.126302 354.330729 L 1532.126302 384.330729 L 1476.85026 384.330729 Z M 1476.85026 354.330729 " transform="matrix(3,0,0,3,-3420,-225)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-15" x="1080.121" y="900.320103"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="68.5167" y="81.619006"/>
-  <use xlink:href="#glyph1-2" x="91.0707" y="81.619006"/>
-  <use xlink:href="#glyph1-3" x="114.4227" y="81.619006"/>
-  <use xlink:href="#glyph1-3" x="128.4087" y="81.619006"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="141.6387" y="81.619006"/>
-  <use xlink:href="#glyph1-5" x="164.1927" y="81.619006"/>
-  <use xlink:href="#glyph1-6" x="187.5447" y="81.619006"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-7" x="88.3617" y="130.795"/>
-  <use xlink:href="#glyph1-6" x="109.3617" y="130.795"/>
-  <use xlink:href="#glyph1-8" x="122.5917" y="130.795"/>
-  <use xlink:href="#glyph1-6" x="145.1457" y="130.795"/>
-  <use xlink:href="#glyph1-4" x="158.3757" y="130.795"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="226.0994" y="107.707003"/>
-  <use xlink:href="#glyph1-9" x="248.6534" y="107.707003"/>
-  <use xlink:href="#glyph1-5" x="272.7614" y="107.707003"/>
-  <use xlink:href="#glyph1-10" x="296.1134" y="107.707003"/>
-  <use xlink:href="#glyph1-11" x="321.0194" y="107.707003"/>
-  <use xlink:href="#glyph1-6" x="330.3434" y="107.707003"/>
-  <use xlink:href="#glyph1-11" x="343.5734" y="107.707003"/>
-  <use xlink:href="#glyph1-9" x="352.8974" y="107.707003"/>
-  <use xlink:href="#glyph1-5" x="377.0054" y="107.707003"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="451.3651" y="81.619006"/>
-  <use xlink:href="#glyph1-4" x="474.7171" y="81.619006"/>
-  <use xlink:href="#glyph1-12" x="497.2711" y="81.619006"/>
-  <use xlink:href="#glyph1-6" x="519.0271" y="81.619006"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-7" x="445.5271" y="130.795"/>
-  <use xlink:href="#glyph1-6" x="466.5271" y="130.795"/>
-  <use xlink:href="#glyph1-8" x="479.7571" y="130.795"/>
-  <use xlink:href="#glyph1-6" x="502.3111" y="130.795"/>
-  <use xlink:href="#glyph1-4" x="515.5411" y="130.795"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="668.0443" y="83.119006"/>
-  <use xlink:href="#glyph1-2" x="690.5983" y="83.119006"/>
-  <use xlink:href="#glyph1-3" x="713.9503" y="83.119006"/>
-  <use xlink:href="#glyph1-3" x="727.9363" y="83.119006"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-4" x="741.1663" y="83.119006"/>
-  <use xlink:href="#glyph1-5" x="763.7203" y="83.119006"/>
-  <use xlink:href="#glyph1-6" x="787.0723" y="83.119006"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-7" x="687.8893" y="132.295"/>
-  <use xlink:href="#glyph1-6" x="708.8893" y="132.295"/>
-  <use xlink:href="#glyph1-8" x="722.1193" y="132.295"/>
-  <use xlink:href="#glyph1-6" x="744.6733" y="132.295"/>
-  <use xlink:href="#glyph1-4" x="757.9033" y="132.295"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-1" x="825.6269" y="109.207003"/>
-  <use xlink:href="#glyph1-9" x="848.1809" y="109.207003"/>
-  <use xlink:href="#glyph1-5" x="872.2889" y="109.207003"/>
-  <use xlink:href="#glyph1-10" x="895.6409" y="109.207003"/>
-  <use xlink:href="#glyph1-11" x="920.5469" y="109.207003"/>
-  <use xlink:href="#glyph1-6" x="929.8709" y="109.207003"/>
-  <use xlink:href="#glyph1-11" x="943.1009" y="109.207003"/>
-  <use xlink:href="#glyph1-9" x="952.4249" y="109.207003"/>
-  <use xlink:href="#glyph1-5" x="976.5329" y="109.207003"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-5" x="1050.893" y="83.119006"/>
-  <use xlink:href="#glyph1-4" x="1074.245" y="83.119006"/>
-  <use xlink:href="#glyph1-12" x="1096.799" y="83.119006"/>
-  <use xlink:href="#glyph1-6" x="1118.555" y="83.119006"/>
-</g>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-7" x="1045.055" y="132.295"/>
-  <use xlink:href="#glyph1-6" x="1066.055" y="132.295"/>
-  <use xlink:href="#glyph1-8" x="1079.285" y="132.295"/>
-  <use xlink:href="#glyph1-6" x="1101.839" y="132.295"/>
-  <use xlink:href="#glyph1-4" x="1115.069" y="132.295"/>
-</g>
-</g>
-</svg>
--- a/slide/s6/index.html	Thu Feb 18 06:40:17 2016 +0900
+++ b/slide/s6/index.html	Thu Feb 18 12:05:09 2016 +0900
@@ -193,29 +193,136 @@
     </ul>
 </div>
 
+
+      <div class='slide'>
+    <h2>Cerium Task Manager</h2>
+    <object data="images/cerium/createTask.svg"  width="50%" type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>mmap Model</h2>
+    <object data="images/cerium/mmap.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>Read Task Model</h2>
+    <object data="images/cerium/blockedreadimage.svg" width="50%" type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>独立した CPU で処理</h2>
+    <object data="images/cerium/speblockedread.svg" width="50%"  type="image/svg+xml"></object><br>
+    <object data="images/cerium/iothread.svg"  width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>文字列処理の並列処理</h2>
+    <object data="images/example/dividefile.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>Word Count の整合性</h2>
+    <object data="images/example/wordcount.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>正規表現の一例</h2>
+    <object data="images/regex/regexbasic.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+
+      <div class='slide'>
+    <h2>parser</h2>
+    <object data="images/regex/parser.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>連接</h2>
+    <object data="images/regex/regexseq.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>連接の連続</h2>
+    <object data="images/regex/regexseq2.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+
+      <div class='slide'>
+    <h2>| の接続</h2>
+    <object data="images/regex/regexselect.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>* の組み合わせ</h2>
+    <object data="images/regex/regexasta.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2> | * の接続</h2>
+    <object data="images/regex/regexgroup.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>正規表現の連接</h2>
+    <object data="images/regex/regexseqregex.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+
+      <div class='slide'>
+    <h2>正規表現木をオートマトンの状態遷移に沿って状態割当</h2>
+    <object data="images/regex/allostate.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>正規表現の整合性</h2>
+    <object data="images/regex/regexdivide.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>DFA</h2>
+    <object data="images/regex/dfaregex.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>NFA</h2>
+    <object data="images/regex/nfaex.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+
+      <div class='slide'>
+    <h2>1入力で複数の状態遷移先があれば、その状態をまとめる</h2>
+    <object data="images/regex/dfa.svg" width="30%"  type="image/svg+xml"></object><br>
+    <object data="images/regex/nfa.svg" width="30%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>cc tree merge pattern</h2>
+    <object data="images/regex/CharClassMergePattern.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>transition table</h2>
+    <object data="images/regex/transitiontable.svg" width="50%"  type="image/svg+xml"></object><br>
+      </div>
+
+      <div class='slide'>
+    <h2>状態をまとめる</h2>
+    <object data="images/regex/wordstate.svg" type="image/svg+xml" width="50%"></object><br>
+      </div>
+
       <div class='slide'>
 <h2>実験概要</h2>
 <p>実験環境</p>
 <ul>
-    <li>OS:MacOS 10.9.2</li>
+    <li>OS:MacOS 10.10.5</li>
     <li>CPU:2*2.66GHz 6-Core Intel Xeon</li>
-    <li>GPU:NVIDIA Quadro K5000 4096MB</li>
-    <li>Memory:16GB 1333MHz DDR3</li>
     <li>HDD :  1TB 7200 rpm SATA 3.0 Gbps </li>
-    <li>Word Count の時間を、ファイルの読み込みから結果出力するまでを測定</li>
 </ul>
-
-Word Count を実行した後に、読み込むファイルをキャッシュから追い出すために、
-        <pre>% sudo purge </pre>
-        を実行して繰り返し、測定を行っている。
       </div>
 
       <div class='slide'>
-  <h2>実験1: 使用 CPU 数を変更させた時の実行速度の比較</h2>
-  <p>全ての実験のfile size は 1GB であり、表内の数値の単位は全て秒である。</p>
-<p>
-Blocked read Task 1つ当たりの読み込み量  : 16kbyte * 48
-</p>
+  <h2>実験1:</h2>
+  <p>全ての実験のfile size</p>
 <table  border="2" cellpadding="0" cellspacing="0">
     <tbody>
         <tr>
@@ -272,21 +379,10 @@
 
 
 <ul>
-<li> SPE_ANY は、Cerium Task Manager がそれぞれの Task に自動的に CPU を割り振ってくれる。<br>
--> I/O が連続で動作する保証がなくなってしまう。
-</li>
-<li> <font color=red>CPU 4 以上</font>からはほとんど同じ実行結果を示した。 </li>
-<li> 実行時間のほとんどは I/O の読み込みの時間となっている。<br>
-read でファイル読み込みだけの時間を測定すると、<font color=red>11.166 秒</font>となった。 </li>
-<li>
-  GPU を使用した場合、並列計算と I/O を分離させたほうが <font color=red>10%</font> ほど速くなった。
-  </li>
+<li> hoge </li>
+<li> <font color=red>hoge</font></li>
 </ul>
 
-<p>
-ファイルがキャッシュに入った時の実行速度は以下のようになった。
-</p>
-
 <table  border="2" cellpadding="0" cellspacing="0">
     <tbody>
         <tr>
@@ -321,12 +417,6 @@
         </tr>
     </tbody>
 </table>
-<ul>
-
-</ul>
-<br>
-<br>
-<br>
 </div>
 
       <div class='slide'>
@@ -353,186 +443,6 @@
     </ul>
       </div>
 
-      <div class='slide'>
-    <h2>Cerium Task Manager</h2>
-    <object data="images/cerium/createTask.svg"  width="50%" type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>mmap Model</h2>
-    <object data="images/cerium/mmap.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>Read Task Model</h2>
-    <object data="images/cerium/blockedreadimage.svg" width="50%" type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>独立した CPU で処理</h2>
-    <object data="images/cerium/speblockedread.svg" width="50%"  type="image/svg+xml"></object><br>
-    <object data="images/cerium/iothread.svg"  width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>文字列処理の並列処理</h2>
-    <object data="images/example/dividefile.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>Word Count の整合性</h2>
-    <object data="images/example/wordcount.svg" width="50%"  type="image/svg+xml"></object><br>
-    <object data="images/example/wordcountseparate.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>正規表現の一例</h2>
-    <object data="images/regex/regexbasic.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-
-      <div class='slide'>
-    <h2>parser</h2>
-    <object data="images/regex/parser.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>連接</h2>
-    <object data="images/regex/regexseq.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>連接の連続</h2>
-    <object data="images/regex/regexseq2.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-
-      <div class='slide'>
-    <h2>| の接続</h2>
-    <object data="images/regex/regexselect.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-
-      <div class='slide'>
-    <h2> | * の接続</h2>
-    <object data="images/regex/regexgroup.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>正規表現の連接</h2>
-    <object data="images/regex/regexseqregex.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-
-      <div class='slide'>
-    <h2>正規表現木をオートマトンの状態遷移に沿って状態割当</h2>
-    <object data="images/regex/allostate.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>* の組み合わせ</h2>
-    <object data="images/regex/regexasta.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>正規表現の整合性</h2>
-    <object data="images/regex/regexdivide.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>状態割り振り例</h2>
-    <object data="images/regex/setstate.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>連接の状態割り振り</h2>
-    <object data="images/regex/stateseq.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>選択状態割り振り</h2>
-    <object data="images/regex/stateselseq.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-
-      <div class='slide'>
-    <h2>*の状態割り振り</h2>
-    <object data="images/regex/stateafasta.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>*の状態割り振り</h2>
-    <object data="images/regex/stateasta.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>連接中の状態割り振り</h2>
-    <object data="images/regex/stateasta3.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>選択の状態割り振り</h2>
-    <object data="images/regex/stateselect.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>選択繰返しの状態割り振り</h2>
-    <object data="images/regex/stateselectasta.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>DFA</h2>
-    <object data="images/regex/dfaregex.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>NFA</h2>
-    <object data="images/regex/nfaex.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-
-      <div class='slide'>
-    <h2>Subset Construction</h2>
-    <object data="images/regex/subset.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>NFA DFA</h2>
-    <object data="images/regex/dfa.svg" width="50%"  type="image/svg+xml"></object><br>
-    <object data="images/regex/nfa.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>CC の merge</h2>
-    <object data="images/regex/cctree.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>CC の木の merge</h2>
-    <object data="images/regex/cctreemerge.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>cc tree merge pattern</h2>
-    <object data="images/regex/CharClassMergePattern.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-
-      <div class='slide'>
-    <h2>NFAからDFAへの変換</h2>
-    <object data="images/regex/subsetauto.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>transition table</h2>
-    <object data="images/regex/transitiontable.svg" width="50%"  type="image/svg+xml"></object><br>
-      </div>
-
-      <div class='slide'>
-    <h2>状態をまとめる</h2>
-    <object data="images/regex/wordstate.svg" type="image/svg+xml" width="50%"></object><br>
-      </div>
-
 </div> <!-- presentation -->
 </body>
 </html>