Add Tikz Figures

This commit is contained in:
Thomas Dehaeze 2020-10-08 10:53:01 +02:00
parent 39dd38500e
commit efc21ba3b8
99 changed files with 34152 additions and 0 deletions

1196
tikz/config.html Normal file

File diff suppressed because it is too large Load Diff

690
tikz/config.org Normal file
View File

@ -0,0 +1,690 @@
#+TITLE: LaTeX Configuration for Tikz export
:drawer:
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../css/htmlize.css"/>
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../css/readtheorg.css"/>
#+HTML_HEAD: <script src="../js/jquery.min.js"></script>
#+HTML_HEAD: <script src="../js/bootstrap.min.js"></script>
#+HTML_HEAD: <script src="../js/jquery.stickytableheaders.min.js"></script>
#+HTML_HEAD: <script src="../js/readtheorg.js"></script>
#+PROPERTY: header-args:latex+ :tangle config.tex
#+PROPERTY: header-args:latex+ :exports code
:end:
* Packages
#+begin_src latex
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french, english]{babel} % Last language is main language
\usepackage{lmodern} % Latin Modern Font
\usepackage{gensymb} % Generic symbols for both text and math mode
\usepackage{standalone} % Used to generate standalone Tikz
\usepackage{amsmath} % Main math Package
\usepackage{mathtools} % Extension package to amsmath
\usepackage{amsthm} % Typesetting theorems (AMS style)
\usepackage{amsfonts} % More fonts from the AMS
\usepackage{textcomp} % provide many text symbols
\usepackage{steinmetz} % For phase symbol
\usepackage{xstring} % Utils to manipulate strings
\usepackage{etoolbox} % Add basic if/then
\usepackage{esvect} % Beautyfull vectors
\usepackage{graphicx} % Enhanced support for graphics
\usepackage{grffile} % Used by matlab2tikz
\usepackage{microtype} % typographic tuning
\usepackage{setspace} % for line spacing, e.g. \onehalfspacing
\usepackage{tabularx} % table features
\usepackage{enumitem} % for simple list modifications
\usepackage{booktabs} % better table support
\usepackage{stackengine} %
\usepackage[load-configurations=abbreviations]{siunitx} % SI units
\sisetup{
locale = US,
detect-all,
range-phrase=--,
range-units=single
}
#+end_src
* Tikz related packages
#+begin_src latex
\usepackage{tikz} % Tikz
\usepackage{tikzscale} % Used to scale Tikz graphics
\usepackage{adjustbox} % Used to proper positioning of tikz pictures
\usepackage{circuitikz} % Draw electronic circuits
\usepackage{pgfpages} % Needed to use notes
\usepackage{pgfplots} % Used to plot functions
#+end_src
* Tikz Libraries
#+begin_src latex
\usetikzlibrary{arrows} % Arrow tip library
\usetikzlibrary{arrows.meta} % Add some arrows
\usetikzlibrary{calc} % The library allows advanced Coordinate Calculations
\usetikzlibrary{intersections} % calculate intersections of paths
\usetikzlibrary{matrix} %
\usetikzlibrary{patterns} %
\usetikzlibrary{shapes} % Defines circle and rectangle
\usetikzlibrary{shapes.geometric} % Use for the shape diamond and isosceles triangle
\usetikzlibrary{snakes} % snake=coil and snake=zigzag using segment amplitude=10pt
\usetikzlibrary{positioning} % Additional options for placing nodes
\usetikzlibrary{3d} % Plot 3D shapes
\usetikzlibrary{spy} % Creating a magnified area
\usetikzlibrary{decorations.text} % Used to make text follows a curve
\usetikzlibrary{decorations.pathmorphing} % deformation of a path
\usetikzlibrary{decorations.markings} % Used for spring and damper
\usetikzlibrary{babel} % A tiny library that make the interaction with the babel package easier
\usetikzlibrary{plotmarks} % This library defines a number of plot marks
\usetikzlibrary{fit} % Used to make rectangle as nodes by specifying two points
\usetikzlibrary{backgrounds} % Used to put things under others
#+end_src
* PGF Plot libraries and config
#+begin_src latex
\usepgfplotslibrary{patchplots}
\usepgfplotslibrary{groupplots}
\pgfplotsset{compat=newest}
\pgfplotsset{plot coordinates/math parser=false}
#+end_src
* Setup size of figures
#+begin_src latex
\newlength{\fheight}
\newlength{\fwidth}
\setlength{\fwidth}{85mm}
\setlength{\fheight}{112mm}
#+end_src
* Setup Arrows style
#+begin_src latex
\tikzset{>=Stealth}
% Setup default Linewidth
\tikzset{every path/.style={line width=1pt}}
#+end_src
* Colors
#+begin_src latex
\usepackage{xcolor}% Color extension
\definecolor{colorblack}{rgb}{0, 0, 0}
\definecolor{colorblue}{rgb}{0, 0.4470, 0.7410}
\definecolor{colorred}{rgb}{0.8500, 0.3250, 0.0980}
\definecolor{coloryellow}{rgb}{0.9290, 0.6940, 0.1250}
\definecolor{colorpurple}{rgb}{0.4940, 0.1840, 0.5560}
\definecolor{colorgreen}{rgb}{0.4660, 0.6740, 0.1880}
\definecolor{colorcyan}{rgb}{0.3010, 0.7450, 0.9330}
\definecolor{colorbordeau}{rgb}{0.6350, 0.0780, 0.1840}
% Main color
\definecolor{maincolor}{RGB}{89, 9, 38}
\definecolor{secondcolor}{RGB}{20, 9, 89}
#+end_src
* Control
** Blocks
#+begin_src latex
\tikzset{%
block/.style n args={2}{%
draw,
fill=white,
minimum width = #1,
minimum height = #2,
},
block/.default={1.2cm}{1.0cm}
}
#+end_src
** TODO Branches
#+begin_src latex
\tikzstyle{branch}=[fill,shape=circle,minimum size=4pt,inner sep=0pt]
\tikzstyle{->top}=[-{Stealth[color=black, scale=0.8]}, draw=white, double=black, double distance=1pt, line width=1pt]
\tikzstyle{<-top}=[{stealth[color=black, scale=0.8]}-, draw=white, double=black, double distance=1pt, line width=1pt]
#+end_src
** TODO Hand Writen Style
Usefull for schematic plots
#+begin_src latex
\tikzstyle{handwriten}=[decorate,decoration={random steps,amplitude=0.1pt,segment length=0.8pt}]
#+end_src
** DAC
#+begin_src latex
\tikzset{%
DAC/.style={%
draw,
signal,
}
}
#+end_src
** ADC
#+begin_src latex
\tikzset{%
ADC/.style={%
draw,
signal,
signal to = west,
}
}
#+end_src
** TODO Gain
Maybe use =isosceles= instead of regular polygon?
#+begin_src latex
\tikzset{%
gain right/.style={%
draw,
regular polygon,
regular polygon sides = 3,
inner sep = 2pt,
shape border rotate=-90
},
gain left/.style={%
draw,
regular polygon,
regular polygon sides = 3,
inner sep = 2pt,
shape border rotate=90
},
gain top/.style={%
draw,
regular polygon,
regular polygon sides = 3,
inner sep = 2pt,
shape border rotate=0
},
gain bottom/.style={%
draw,
regular polygon,
regular polygon sides = 3,
inner sep = 2pt,
shape border rotate=180
},
}
#+end_src
** Add / Substract / Divide / Multiply block
#+begin_src latex
\tikzset{% Add block with Circled operations
addc/.style n args={5}{%
draw,
fill=white,
circle,
outer sep = 0pt,
inner sep = 0pt,
minimum size = 2em,
execute at begin node={\LARGE $#1$},
append after command={\pgfextra{\let\mainnode=\tikzlastnode}
\ifx#2\empty\else
node[draw, circle, outer sep=6pt, inner sep=0pt, above left] at (\mainnode.west) {$#2$}%
\fi
\ifx#3\empty\else
node[draw, circle, outer sep=6pt, inner sep=0pt, above right] at (\mainnode.north) {$#3$}%
\fi
\ifx#4\empty\else
node[draw, circle, outer sep=6pt, inner sep=0pt, below right] at (\mainnode.east) {$#4$}%
\fi
\ifx#5\empty\else
node[draw, circle, outer sep=6pt, inner sep=0pt, below left] at (\mainnode.south) {$#5$}%
\fi
}
},
addc/.default={+}{}{}{}{},
}
#+end_src
#+begin_src latex
\tikzset{% Add Block
addb/.style n args={5}{%
draw,
fill=white,
circle,
outer sep = 0pt,
inner sep = 0pt,
minimum size = 2em,
execute at begin node={\LARGE $#1$},
append after command={\pgfextra{\let\mainnode=\tikzlastnode}
\ifx#2\empty\else
node[outer sep=2pt, inner sep=0pt, above left] at (\mainnode.west) {$#2$}%
\fi
\ifx#3\empty\else
node[outer sep=2pt, inner sep=0pt, above right] at (\mainnode.north) {$#3$}%
\fi
\ifx#4\empty\else
node[outer sep=2pt, inner sep=0pt, below right] at (\mainnode.east) {$#4$}%
\fi
\ifx#5\empty\else
node[outer sep=2pt, inner sep=0pt, below left] at (\mainnode.south) {$#5$}%
\fi
}
},
addb/.default={+}{}{}{}{},
}
#+end_src
* Plots
** Grid
#+begin_src latex
\pgfplotsset{grid style={black}}
\pgfplotsset{major grid style={black!30!white}}
\pgfplotsset{minor grid style={black!10!white}}
\pgfplotsset{xmajorgrids}
\pgfplotsset{ymajorgrids}
#+end_src
** Lines
#+begin_src latex
\pgfplotsset{separate axis lines=false} % draw axis as rectangle and not as 4 lines
\pgfplotsset{every outer x axis line/.append style={black}}
\pgfplotsset{every outer y axis line/.append style={black}}
\pgfplotsset{axis background/.style={fill=white}}
\pgfplotsset{axis x line*=bottom} % solid line on the bottom with thin on the top
\pgfplotsset{axis y line*=left} % solid line on the left with thin on the right
#+end_src
** Ticks
#+begin_src latex
\pgfplotsset{every y tick label/.append style={font=\color{black}}}
\pgfplotsset{every y tick/.append style={black}}
\pgfplotsset{every x tick label/.append style={font=\color{black}}}
\pgfplotsset{every x tick/.append style={black}}
#+end_src
** Size
If =scale only axis=false= (the default), pgfplots will try to produce the desired width including labels, titles and ticks.
#+begin_src latex
\pgfplotsset{scale only axis=true}
#+end_src
** Label
Used to align all of ylabel of one figure.
#+begin_src latex
\pgfplotsset{ylabel absolute}
#+end_src
** Legend
#+begin_src latex
% https://tex.stackexchange.com/questions/54794/using-a-pgfplots-style-legend-in-a-plain-old-tikzpicture#54834
% argument #1: any options
\newenvironment{customlegend}[1][]{%
\begingroup
% inits/clears the lists (which might be populated from previous
% axes):
\csname pgfplots@init@cleared@structures\endcsname
\pgfplotsset{#1}%
}{%
% draws the legend:
\csname pgfplots@createlegend\endcsname
\endgroup
}%
% makes \addlegendimage available (typically only available within an
% axis environment):
\def\addlegendimage{\csname pgfplots@addlegendimage\endcsname}
% definition to insert numbers
% \pgfkeys{/pgfplots/number in legend/.style={%
% /pgfplots/legend image code/.code={%
% \node at (0.125,-0.0225){#1}; % <= changed x value
% },%
% },
% }
\pgfplotsset{
every legend to name picture/.style={west}
}
#+end_src
** Upper and Lower bounds
#+begin_src latex
\tikzstyle{upperbound}=[line cap=round, postaction={decorate,draw,decoration={border, segment length=0.2cm, amplitude=0.3cm, angle=60}}]
\tikzstyle{lowerbound}=[line cap=round, postaction={decorate,draw,decoration={border, segment length=0.2cm, amplitude=0.3cm, angle=-60}}]
#+end_src
And we add the corresdonding
#+begin_src latex
\pgfplotsset{
/pgfplots/upperbound/.style 1 args={
legend image code/.code={
\draw[##1, upperbound]
plot coordinates {
(0cm,0cm)
(0.6cm,0cm)
}
}
}
}
#+end_src
** Pole
#+begin_src latex
\tikzset{%
pole/.style{%
color=red,
cross out,
draw,
inner sep=0pt,
outer sep=0pt,
minimum size=#1pt
},
pole/.default={4}
}
#+end_src
** Zero
#+begin_src latex
\tikzset{%
zero/.style{%
color=red,
circle,
draw,
inner sep=0pt,
outer sep=0pt,
minimum size=#1pt
},
zero/.default={4}
}
#+end_src
* Mechanical
** Spring
#+begin_src latex
\tikzset{%
spring/.style={%
thick,
decoration={
zigzag,
pre length = #1cm,
post length = #1cm,
segment length = 6
},
decorate
},
spring/.default={0.2}
}
#+end_src
** Coil
#+begin_src latex
\tikzset{%
coil/.style n args={2}{%
thick,
decoration={
coil,
pre length = #1cm,
post length = #2cm,
segment length = 4
},
decorate
},
coil/.default={0.3}{0.3}
}
#+end_src
** Damper
#+begin_src latex
\tikzset{%
damper/.style n args={2}{%
thick,
decoration={markings, mark connection node=dmp, mark=at position 0.5 with {
\node (dmp) [thick,
inner sep = 0pt,
transform shape,
rotate =-90,
minimum width = #1pt,
minimum height = #2pt,
draw=none] {};
\draw [thick] ($(dmp.north east)+(0.6*#2pt,0)$) -- (dmp.south east) -- (dmp.south west) -- ($(dmp.north west)+(0.6*#2pt,0)$);
\draw [thick] ($(dmp.north)+(0,-0.3*#1pt)$) -- ($(dmp.north)+(0,0.3*#1pt)$);
}
},
decorate
},
damper/.default={12}{3}
}
#+end_src
** Actuator
#+begin_src latex
\tikzset{%
actuator/.style n args={2}{%
thick,
draw=none,
decoration={
markings,
mark connection node=my node,
mark=at position .5 with {
\node [draw, inner sep=0pt, minimum width=#1cm, minimum height=#2cm,
transform shape, fill=white] (my node) {};
},
mark=at position .0 with {
\draw[<-] (0, 0) -- (my node);
},
mark=at position 1.0 with {
\draw[<-] (0, 0) -- (my node);
}
},
decorate
},
actuator/.default={0.5}{0.2}
}
#+end_src
** Ground
#+begin_src latex
\tikzset{%
ground/.style n args={2}{%
fill,
pattern = north east lines,
draw = none,
anchor = north,
minimum width = #1cm,
minimum height = #2cm,
append after command={
(\tikzlastnode.north west) edge (\tikzlastnode.north east)
}
},
ground/.default={2.5}{0.3}
}
#+end_src
** Force Sensor
#+begin_src latex
\tikzset{%
forcesensor/.style n args={2}{%
rectangle,
outer sep=0pt,
inner sep=0pt,
draw=black,
fill=white!60!black,
anchor=south,
minimum width =#1cm,
minimum height=#2cm,
append after command={
[every edge/.append style={
thick,
black,
}]
(\tikzlastnode.north west) edge (\tikzlastnode.south east)
(\tikzlastnode.north east) edge (\tikzlastnode.south west)
}
},
forcesensor/.default={2.0}{0.5}
}
#+end_src
** Inertial Sensor
#+begin_src latex
\tikzset{%
inertialsensor/.style={%
rectangle,
outer sep=0pt,
inner sep=0pt,
draw=black,
fill=white!60!black,
anchor=south east,
minimum size=#1cm,
append after command={
[every edge/.append style={
thick,
black,
}]
(\tikzlastnode.north west) edge (\tikzlastnode.south east)
(\tikzlastnode.north east) edge (\tikzlastnode.south west)
}
},
inertialsensor/.default={0.3}
}
#+end_src
** Axis Rotator
#+begin_src latex
\newcommand{\AxisRotator}[1][rotate=0]{%
\tikz [x=0.1cm,y=0.30cm,-stealth,#1] \draw (0,0) arc (-150:150:1 and 1);%
}
#+end_src
** Cross
#+begin_src latex
\tikzstyle{cross}=[path picture={
\draw[black]
(path picture bounding box.south east) -- (path picture bounding box.north west) (path picture bounding box.south west) -- (path picture bounding box.north east);
}]
#+end_src
** Piezoelectric actuator
#+begin_src latex
\tikzset{%
piezo/.style n args={3}{%
draw,
rectangle,
minimum width = #1cm,
minimum height = #2cm,
fill=blue!10!white,
anchor=center,
append after command={
[every edge/.append style={
thick,
black,
}]
\foreach \i in {1,...,#3}{
(${\i/(1+#3)}*(\tikzlastnode.north west)+{(1+#3-\i)/(1+#3)}*(\tikzlastnode.south west)+0.1*(#1,0)$) edge (${\i/(1+#3)}*(\tikzlastnode.north east)+{(1+#3-\i)/(1+#3)}*(\tikzlastnode.south east)-0.1*(#1,0)$)
}
}
},
piezo/.default={2}{4}{10}
}
#+end_src
** Voice coil
#+begin_src latex
\def\voicecoil#1#2#3{
% ======================
% Parameters
% ======================
\def\voicecoilw{#1} % Total Width
\def\voicecoilh{#2} % Total Height
\def\magnetw{\voicecoilw} % Width of the magnet
\def\magneth{\voicecoilh/1.4} % Height of the magnet
\def\magnetwb{0.15*\magnetw} % Width of the borders of the magnet
\def\magnetmw{0.15*\magnetw} % Width of the middle part of the magnet
\def\magnetwg{0.5*\magnetw} % Width of the gap of the magnet
\def\magnethl{\magnetwb} % Height of the low part of the magnet
\def\magnetmh{0.15*\magneth} % Height of the middle part of the magnet
\def\magnethg{0.2*\magneth} % Height of the gap of the magnet
% ======================
\begin{scope}[shift={(0.5*\voicecoilw, 0.5*\voicecoilh)}, rotate=#3, shift={(0, -0.5*\voicecoilh)}]
% ======================
% Magnet
% ======================
\draw[fill=white] (0, 0) -| ++(0.5*\magnetw, \magneth) -| ++(-0.5*\magnetw+0.5*\magnetwg, -\magnethg) -| (0.5*\magnetw-\magnetwb, \magnethl) -| (-0.5*\magnetw+\magnetwb, \magneth-\magnethg) -| (-0.5*\magnetwg, \magneth) -| (-0.5*\magnetw, 0) -- (cycle);
\begin{scope}[shift={(0, \magnethl)}]
\draw[fill=red] (-0.5*\magnetmw, 0) rectangle (0.5*\magnetmw, \magnetmh);
\draw[fill=blue] (-0.5*\magnetmw, \magnetmh) rectangle (0.5*\magnetmw, 2*\magnetmh);
% Top conductive Magnet
\draw[fill=white] (-0.5*\magnetmw, 2*\magnetmh) -| (0.5*\magnetmw, -\magnethl+\magneth-\magnethg) -| ++(0.1, \magnethg) -| ++(-0.2-\magnetmw, -\magnethg) -| (-0.5*\magnetmw, \magnetmh);
\end{scope}
% ======================
% ======================
% Coil
% ======================
\pgfmathsetmacro{\coilwidth}{0.5*0.5*\magnetmw+0.5*0.1+0.25*\magnetwg}%
\draw[] ( \coilwidth, 0.5*\magneth) -- ++(0, 0.7*\magneth);
\draw[] (-\coilwidth, 0.5*\magneth) -- ++(0, 0.7*\magneth);
% Point on the coil
\foreach \x in {0,1,...,9}
{
\node[circle,inner sep=0.6pt,fill] at ( \coilwidth, \x*0.7*\magneth/10+0.5*\magneth);
\node[circle,inner sep=0.6pt,fill] at (-\coilwidth, \x*0.7*\magneth/10+0.5*\magneth);
}
\draw[fill=white] (-0.5*\magnetw, 1.2*\magneth) rectangle ++(\magnetw, \magnethg);
% ======================
% ======================
% Coordinates
% ======================
% Force
\coordinate[] (vc_force) at (0, \magneth-0.5*\magnethg);
% Coil
\coordinate[] (vc_coil) at (0, \voicecoilh);
% Magnet
\coordinate[] (vc_magnet) at (0, 0);
% Coil Wires
\coordinate[] (vc_wire_one) at ( \coilwidth, 1.2*\magneth);
\coordinate[] (vc_wire_two) at (-\coilwidth, 1.2*\magneth);
% ======================
\end{scope}
}
#+end_src
* Optics
#+begin_src latex
\tikzset{%
->-/.style={
decoration={
markings,
mark = at position #1 with {\arrow{>}
}
},
postaction={decorate}
}
}
\tikzset{%
-<-/.style={
decoration={
markings,
mark = at position #1 with {\arrow{<}
}
},
postaction={decorate}
}
}
#+end_src
* Misc
#+begin_src latex
\tikzset{%
labelc/.style= {%
draw,
fill=white,
shape=circle,
inner sep=2pt,
outer sep=6pt,
}
}
#+end_src

556
tikz/config.tex Normal file
View File

@ -0,0 +1,556 @@
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french, english]{babel} % Last language is main language
\usepackage{lmodern} % Latin Modern Font
\usepackage{gensymb} % Generic symbols for both text and math mode
\usepackage{standalone} % Used to generate standalone Tikz
\usepackage{amsmath} % Main math Package
\usepackage{mathtools} % Extension package to amsmath
\usepackage{amsthm} % Typesetting theorems (AMS style)
\usepackage{amsfonts} % More fonts from the AMS
\usepackage{textcomp} % provide many text symbols
\usepackage{steinmetz} % For phase symbol
\usepackage{xstring} % Utils to manipulate strings
\usepackage{etoolbox} % Add basic if/then
\usepackage{esvect} % Beautyfull vectors
\usepackage{graphicx} % Enhanced support for graphics
\usepackage{grffile} % Used by matlab2tikz
\usepackage{microtype} % typographic tuning
\usepackage{setspace} % for line spacing, e.g. \onehalfspacing
\usepackage{tabularx} % table features
\usepackage{enumitem} % for simple list modifications
\usepackage{booktabs} % better table support
\usepackage{stackengine} %
\usepackage[load-configurations=abbreviations]{siunitx} % SI units
\sisetup{
locale = US,
detect-all,
range-phrase=--,
range-units=single
}
\usepackage{tikz} % Tikz
\usepackage{tikzscale} % Used to scale Tikz graphics
\usepackage{adjustbox} % Used to proper positioning of tikz pictures
\usepackage{circuitikz} % Draw electronic circuits
\usepackage{pgfpages} % Needed to use notes
\usepackage{pgfplots} % Used to plot functions
\usetikzlibrary{arrows} % Arrow tip library
\usetikzlibrary{arrows.meta} % Add some arrows
\usetikzlibrary{calc} % The library allows advanced Coordinate Calculations
\usetikzlibrary{intersections} % calculate intersections of paths
\usetikzlibrary{matrix} %
\usetikzlibrary{patterns} %
\usetikzlibrary{shapes} % Defines circle and rectangle
\usetikzlibrary{shapes.geometric} % Use for the shape diamond and isosceles triangle
\usetikzlibrary{snakes} % snake=coil and snake=zigzag using segment amplitude=10pt
\usetikzlibrary{positioning} % Additional options for placing nodes
\usetikzlibrary{3d} % Plot 3D shapes
\usetikzlibrary{spy} % Creating a magnified area
\usetikzlibrary{decorations.text} % Used to make text follows a curve
\usetikzlibrary{decorations.pathmorphing} % deformation of a path
\usetikzlibrary{decorations.markings} % Used for spring and damper
\usetikzlibrary{babel} % A tiny library that make the interaction with the babel package easier
\usetikzlibrary{plotmarks} % This library defines a number of plot marks
\usetikzlibrary{fit} % Used to make rectangle as nodes by specifying two points
\usetikzlibrary{backgrounds} % Used to put things under others
\usepgfplotslibrary{patchplots}
\usepgfplotslibrary{groupplots}
\pgfplotsset{compat=newest}
\pgfplotsset{plot coordinates/math parser=false}
\newlength{\fheight}
\newlength{\fwidth}
\setlength{\fwidth}{85mm}
\setlength{\fheight}{112mm}
\tikzset{>=Stealth}
% Setup default Linewidth
\tikzset{every path/.style={line width=1pt}}
\usepackage{xcolor}% Color extension
\definecolor{colorblack}{rgb}{0, 0, 0}
\definecolor{colorblue}{rgb}{0, 0.4470, 0.7410}
\definecolor{colorred}{rgb}{0.8500, 0.3250, 0.0980}
\definecolor{coloryellow}{rgb}{0.9290, 0.6940, 0.1250}
\definecolor{colorpurple}{rgb}{0.4940, 0.1840, 0.5560}
\definecolor{colorgreen}{rgb}{0.4660, 0.6740, 0.1880}
\definecolor{colorcyan}{rgb}{0.3010, 0.7450, 0.9330}
\definecolor{colorbordeau}{rgb}{0.6350, 0.0780, 0.1840}
% Main color
\definecolor{maincolor}{RGB}{89, 9, 38}
\definecolor{secondcolor}{RGB}{20, 9, 89}
\tikzset{%
block/.style n args={2}{%
draw,
fill=white,
minimum width = #1,
minimum height = #2,
},
block/.default={1.2cm}{1.0cm}
}
\tikzstyle{branch}=[fill,shape=circle,minimum size=4pt,inner sep=0pt]
\tikzstyle{->top}=[-{Stealth[color=black, scale=0.8]}, draw=white, double=black, double distance=1pt, line width=1pt]
\tikzstyle{<-top}=[{stealth[color=black, scale=0.8]}-, draw=white, double=black, double distance=1pt, line width=1pt]
\tikzstyle{handwriten}=[decorate,decoration={random steps,amplitude=0.1pt,segment length=0.8pt}]
\tikzset{%
DAC/.style={%
draw,
signal,
}
}
\tikzset{%
ADC/.style={%
draw,
signal,
signal to = west,
}
}
\tikzset{%
gain right/.style={%
draw,
regular polygon,
regular polygon sides = 3,
inner sep = 2pt,
shape border rotate=-90
},
gain left/.style={%
draw,
regular polygon,
regular polygon sides = 3,
inner sep = 2pt,
shape border rotate=90
},
gain top/.style={%
draw,
regular polygon,
regular polygon sides = 3,
inner sep = 2pt,
shape border rotate=0
},
gain bottom/.style={%
draw,
regular polygon,
regular polygon sides = 3,
inner sep = 2pt,
shape border rotate=180
},
}
\tikzset{% Add block with Circled operations
addc/.style n args={5}{%
draw,
fill=white,
circle,
outer sep = 0pt,
inner sep = 0pt,
minimum size = 2em,
execute at begin node={\LARGE $#1$},
append after command={\pgfextra{\let\mainnode=\tikzlastnode}
\ifx#2\empty\else
node[draw, circle, outer sep=6pt, inner sep=0pt, above left] at (\mainnode.west) {$#2$}%
\fi
\ifx#3\empty\else
node[draw, circle, outer sep=6pt, inner sep=0pt, above right] at (\mainnode.north) {$#3$}%
\fi
\ifx#4\empty\else
node[draw, circle, outer sep=6pt, inner sep=0pt, below right] at (\mainnode.east) {$#4$}%
\fi
\ifx#5\empty\else
node[draw, circle, outer sep=6pt, inner sep=0pt, below left] at (\mainnode.south) {$#5$}%
\fi
}
},
addc/.default={+}{}{}{}{},
}
\tikzset{% Add Block
addb/.style n args={5}{%
draw,
fill=white,
circle,
outer sep = 0pt,
inner sep = 0pt,
minimum size = 2em,
execute at begin node={\LARGE $#1$},
append after command={\pgfextra{\let\mainnode=\tikzlastnode}
\ifx#2\empty\else
node[outer sep=2pt, inner sep=0pt, above left] at (\mainnode.west) {$#2$}%
\fi
\ifx#3\empty\else
node[outer sep=2pt, inner sep=0pt, above right] at (\mainnode.north) {$#3$}%
\fi
\ifx#4\empty\else
node[outer sep=2pt, inner sep=0pt, below right] at (\mainnode.east) {$#4$}%
\fi
\ifx#5\empty\else
node[outer sep=2pt, inner sep=0pt, below left] at (\mainnode.south) {$#5$}%
\fi
}
},
addb/.default={+}{}{}{}{},
}
\pgfplotsset{grid style={black}}
\pgfplotsset{major grid style={black!30!white}}
\pgfplotsset{minor grid style={black!10!white}}
\pgfplotsset{xmajorgrids}
\pgfplotsset{ymajorgrids}
\pgfplotsset{separate axis lines=false} % draw axis as rectangle and not as 4 lines
\pgfplotsset{every outer x axis line/.append style={black}}
\pgfplotsset{every outer y axis line/.append style={black}}
\pgfplotsset{axis background/.style={fill=white}}
\pgfplotsset{axis x line*=bottom} % solid line on the bottom with thin on the top
\pgfplotsset{axis y line*=left} % solid line on the left with thin on the right
\pgfplotsset{every y tick label/.append style={font=\color{black}}}
\pgfplotsset{every y tick/.append style={black}}
\pgfplotsset{every x tick label/.append style={font=\color{black}}}
\pgfplotsset{every x tick/.append style={black}}
\pgfplotsset{scale only axis=true}
\pgfplotsset{ylabel absolute}
% https://tex.stackexchange.com/questions/54794/using-a-pgfplots-style-legend-in-a-plain-old-tikzpicture#54834
% argument #1: any options
\newenvironment{customlegend}[1][]{%
\begingroup
% inits/clears the lists (which might be populated from previous
% axes):
\csname pgfplots@init@cleared@structures\endcsname
\pgfplotsset{#1}%
}{%
% draws the legend:
\csname pgfplots@createlegend\endcsname
\endgroup
}%
% makes \addlegendimage available (typically only available within an
% axis environment):
\def\addlegendimage{\csname pgfplots@addlegendimage\endcsname}
% definition to insert numbers
% \pgfkeys{/pgfplots/number in legend/.style={%
% /pgfplots/legend image code/.code={%
% \node at (0.125,-0.0225){#1}; % <= changed x value
% },%
% },
% }
\pgfplotsset{
every legend to name picture/.style={west}
}
\tikzstyle{upperbound}=[line cap=round, postaction={decorate,draw,decoration={border, segment length=0.2cm, amplitude=0.3cm, angle=60}}]
\tikzstyle{lowerbound}=[line cap=round, postaction={decorate,draw,decoration={border, segment length=0.2cm, amplitude=0.3cm, angle=-60}}]
\pgfplotsset{
/pgfplots/upperbound/.style 1 args={
legend image code/.code={
\draw[##1, upperbound]
plot coordinates {
(0cm,0cm)
(0.6cm,0cm)
}
}
}
}
\tikzset{%
pole/.style{%
color=red,
cross out,
draw,
inner sep=0pt,
outer sep=0pt,
minimum size=#1pt
},
pole/.default={4}
}
\tikzset{%
zero/.style{%
color=red,
circle,
draw,
inner sep=0pt,
outer sep=0pt,
minimum size=#1pt
},
zero/.default={4}
}
\tikzset{%
spring/.style={%
thick,
decoration={
zigzag,
pre length = #1cm,
post length = #1cm,
segment length = 6
},
decorate
},
spring/.default={0.2}
}
\tikzset{%
coil/.style n args={2}{%
thick,
decoration={
coil,
pre length = #1cm,
post length = #2cm,
segment length = 4
},
decorate
},
coil/.default={0.3}{0.3}
}
\tikzset{%
damper/.style n args={2}{%
thick,
decoration={markings, mark connection node=dmp, mark=at position 0.5 with {
\node (dmp) [thick,
inner sep = 0pt,
transform shape,
rotate =-90,
minimum width = #1pt,
minimum height = #2pt,
draw=none] {};
\draw [thick] ($(dmp.north east)+(0.6*#2pt,0)$) -- (dmp.south east) -- (dmp.south west) -- ($(dmp.north west)+(0.6*#2pt,0)$);
\draw [thick] ($(dmp.north)+(0,-0.3*#1pt)$) -- ($(dmp.north)+(0,0.3*#1pt)$);
}
},
decorate
},
damper/.default={12}{3}
}
\tikzset{%
actuator/.style n args={2}{%
thick,
draw=none,
decoration={
markings,
mark connection node=my node,
mark=at position .5 with {
\node [draw, inner sep=0pt, minimum width=#1cm, minimum height=#2cm,
transform shape, fill=white] (my node) {};
},
mark=at position .0 with {
\draw[<-] (0, 0) -- (my node);
},
mark=at position 1.0 with {
\draw[<-] (0, 0) -- (my node);
}
},
decorate
},
actuator/.default={0.5}{0.2}
}
\tikzset{%
ground/.style n args={2}{%
fill,
pattern = north east lines,
draw = none,
anchor = north,
minimum width = #1cm,
minimum height = #2cm,
append after command={
(\tikzlastnode.north west) edge (\tikzlastnode.north east)
}
},
ground/.default={2.5}{0.3}
}
\tikzset{%
forcesensor/.style n args={2}{%
rectangle,
outer sep=0pt,
inner sep=0pt,
draw=black,
fill=white!60!black,
anchor=south,
minimum width =#1cm,
minimum height=#2cm,
append after command={
[every edge/.append style={
thick,
black,
}]
(\tikzlastnode.north west) edge (\tikzlastnode.south east)
(\tikzlastnode.north east) edge (\tikzlastnode.south west)
}
},
forcesensor/.default={2.0}{0.5}
}
\tikzset{%
inertialsensor/.style={%
rectangle,
outer sep=0pt,
inner sep=0pt,
draw=black,
fill=white!60!black,
anchor=south east,
minimum size=#1cm,
append after command={
[every edge/.append style={
thick,
black,
}]
(\tikzlastnode.north west) edge (\tikzlastnode.south east)
(\tikzlastnode.north east) edge (\tikzlastnode.south west)
}
},
inertialsensor/.default={0.3}
}
\newcommand{\AxisRotator}[1][rotate=0]{%
\tikz [x=0.1cm,y=0.30cm,-stealth,#1] \draw (0,0) arc (-150:150:1 and 1);%
}
\tikzstyle{cross}=[path picture={
\draw[black]
(path picture bounding box.south east) -- (path picture bounding box.north west) (path picture bounding box.south west) -- (path picture bounding box.north east);
}]
\tikzset{%
piezo/.style n args={3}{%
draw,
rectangle,
minimum width = #1cm,
minimum height = #2cm,
fill=blue!10!white,
anchor=center,
append after command={
[every edge/.append style={
thick,
black,
}]
\foreach \i in {1,...,#3}{
(${\i/(1+#3)}*(\tikzlastnode.north west)+{(1+#3-\i)/(1+#3)}*(\tikzlastnode.south west)+0.1*(#1,0)$) edge (${\i/(1+#3)}*(\tikzlastnode.north east)+{(1+#3-\i)/(1+#3)}*(\tikzlastnode.south east)-0.1*(#1,0)$)
}
}
},
piezo/.default={2}{4}{10}
}
\def\voicecoil#1#2#3{
% ======================
% Parameters
% ======================
\def\voicecoilw{#1} % Total Width
\def\voicecoilh{#2} % Total Height
\def\magnetw{\voicecoilw} % Width of the magnet
\def\magneth{\voicecoilh/1.4} % Height of the magnet
\def\magnetwb{0.15*\magnetw} % Width of the borders of the magnet
\def\magnetmw{0.15*\magnetw} % Width of the middle part of the magnet
\def\magnetwg{0.5*\magnetw} % Width of the gap of the magnet
\def\magnethl{\magnetwb} % Height of the low part of the magnet
\def\magnetmh{0.15*\magneth} % Height of the middle part of the magnet
\def\magnethg{0.2*\magneth} % Height of the gap of the magnet
% ======================
\begin{scope}[shift={(0.5*\voicecoilw, 0.5*\voicecoilh)}, rotate=#3, shift={(0, -0.5*\voicecoilh)}]
% ======================
% Magnet
% ======================
\draw[fill=white] (0, 0) -| ++(0.5*\magnetw, \magneth) -| ++(-0.5*\magnetw+0.5*\magnetwg, -\magnethg) -| (0.5*\magnetw-\magnetwb, \magnethl) -| (-0.5*\magnetw+\magnetwb, \magneth-\magnethg) -| (-0.5*\magnetwg, \magneth) -| (-0.5*\magnetw, 0) -- (cycle);
\begin{scope}[shift={(0, \magnethl)}]
\draw[fill=red] (-0.5*\magnetmw, 0) rectangle (0.5*\magnetmw, \magnetmh);
\draw[fill=blue] (-0.5*\magnetmw, \magnetmh) rectangle (0.5*\magnetmw, 2*\magnetmh);
% Top conductive Magnet
\draw[fill=white] (-0.5*\magnetmw, 2*\magnetmh) -| (0.5*\magnetmw, -\magnethl+\magneth-\magnethg) -| ++(0.1, \magnethg) -| ++(-0.2-\magnetmw, -\magnethg) -| (-0.5*\magnetmw, \magnetmh);
\end{scope}
% ======================
% ======================
% Coil
% ======================
\pgfmathsetmacro{\coilwidth}{0.5*0.5*\magnetmw+0.5*0.1+0.25*\magnetwg}%
\draw[] ( \coilwidth, 0.5*\magneth) -- ++(0, 0.7*\magneth);
\draw[] (-\coilwidth, 0.5*\magneth) -- ++(0, 0.7*\magneth);
% Point on the coil
\foreach \x in {0,1,...,9}
{
\node[circle,inner sep=0.6pt,fill] at ( \coilwidth, \x*0.7*\magneth/10+0.5*\magneth);
\node[circle,inner sep=0.6pt,fill] at (-\coilwidth, \x*0.7*\magneth/10+0.5*\magneth);
}
\draw[fill=white] (-0.5*\magnetw, 1.2*\magneth) rectangle ++(\magnetw, \magnethg);
% ======================
% ======================
% Coordinates
% ======================
% Force
\coordinate[] (vc_force) at (0, \magneth-0.5*\magnethg);
% Coil
\coordinate[] (vc_coil) at (0, \voicecoilh);
% Magnet
\coordinate[] (vc_magnet) at (0, 0);
% Coil Wires
\coordinate[] (vc_wire_one) at ( \coilwidth, 1.2*\magneth);
\coordinate[] (vc_wire_two) at (-\coilwidth, 1.2*\magneth);
% ======================
\end{scope}
}
\tikzset{%
->-/.style={
decoration={
markings,
mark = at position #1 with {\arrow{>}
}
},
postaction={decorate}
}
}
\tikzset{%
-<-/.style={
decoration={
markings,
mark = at position #1 with {\arrow{<}
}
},
postaction={decorate}
}
}
\tikzset{%
labelc/.style= {%
draw,
fill=white,
shape=circle,
inner sep=2pt,
outer sep=6pt,
}
}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="87.04pt" height="159.4pt" viewBox="0 0 87.04 159.4" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 8.671875 0 L 8.671875 -0.3125 L 8.4375 -0.3125 C 7.671875 -0.3125 7.65625 -0.421875 7.65625 -0.765625 L 7.65625 -5.96875 C 7.65625 -6.3125 7.671875 -6.421875 8.4375 -6.421875 L 8.671875 -6.421875 L 8.671875 -6.734375 L 7 -6.734375 C 6.75 -6.734375 6.75 -6.71875 6.671875 -6.546875 L 4.515625 -1 L 2.375 -6.515625 C 2.28125 -6.734375 2.25 -6.734375 2.03125 -6.734375 L 0.359375 -6.734375 L 0.359375 -6.421875 L 0.59375 -6.421875 C 1.359375 -6.421875 1.375 -6.3125 1.375 -5.96875 L 1.375 -1.03125 C 1.375 -0.765625 1.375 -0.3125 0.359375 -0.3125 L 0.359375 0 L 1.515625 -0.03125 L 2.671875 0 L 2.671875 -0.3125 C 1.65625 -0.3125 1.65625 -0.765625 1.65625 -1.03125 L 1.65625 -6.34375 L 1.671875 -6.34375 L 4.046875 -0.21875 C 4.09375 -0.09375 4.140625 0 4.234375 0 C 4.34375 0 4.375 -0.078125 4.421875 -0.1875 L 6.84375 -6.421875 L 6.859375 -6.421875 L 6.859375 -0.765625 C 6.859375 -0.421875 6.828125 -0.3125 6.078125 -0.3125 L 5.84375 -0.3125 L 5.84375 0 C 6.203125 -0.03125 6.875 -0.03125 7.25 -0.03125 C 7.640625 -0.03125 8.296875 -0.03125 8.671875 0 Z M 8.671875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.765625 -0.875 L 4.765625 -1.421875 L 4.515625 -1.421875 L 4.515625 -0.875 C 4.515625 -0.3125 4.265625 -0.25 4.15625 -0.25 C 3.828125 -0.25 3.796875 -0.6875 3.796875 -0.734375 L 3.796875 -2.71875 C 3.796875 -3.125 3.796875 -3.515625 3.4375 -3.875 C 3.0625 -4.265625 2.5625 -4.421875 2.09375 -4.421875 C 1.28125 -4.421875 0.59375 -3.953125 0.59375 -3.296875 C 0.59375 -3 0.796875 -2.84375 1.0625 -2.84375 C 1.328125 -2.84375 1.515625 -3.03125 1.515625 -3.296875 C 1.515625 -3.40625 1.453125 -3.734375 1 -3.75 C 1.265625 -4.09375 1.75 -4.203125 2.078125 -4.203125 C 2.546875 -4.203125 3.109375 -3.8125 3.109375 -2.9375 L 3.109375 -2.578125 C 2.609375 -2.546875 1.921875 -2.515625 1.296875 -2.21875 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.265625 0.109375 1.890625 0.109375 C 2.546875 0.109375 3 -0.28125 3.1875 -0.75 C 3.21875 -0.359375 3.484375 0.0625 3.953125 0.0625 C 4.15625 0.0625 4.765625 -0.078125 4.765625 -0.875 Z M 3.109375 -1.375 C 3.109375 -0.4375 2.40625 -0.109375 1.96875 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.484375 1.484375 -2.3125 3.109375 -2.359375 Z M 3.109375 -1.375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.546875 -1.265625 C 3.546875 -1.78125 3.25 -2.078125 3.140625 -2.203125 C 2.8125 -2.515625 2.421875 -2.59375 2.015625 -2.671875 C 1.453125 -2.78125 0.796875 -2.90625 0.796875 -3.484375 C 0.796875 -3.828125 1.0625 -4.234375 1.90625 -4.234375 C 2.984375 -4.234375 3.03125 -3.34375 3.0625 -3.03125 C 3.0625 -2.953125 3.171875 -2.953125 3.171875 -2.953125 C 3.296875 -2.953125 3.296875 -3 3.296875 -3.1875 L 3.296875 -4.1875 C 3.296875 -4.34375 3.296875 -4.421875 3.1875 -4.421875 C 3.140625 -4.421875 3.125 -4.421875 3 -4.296875 C 2.96875 -4.265625 2.875 -4.171875 2.828125 -4.140625 C 2.453125 -4.421875 2.046875 -4.421875 1.90625 -4.421875 C 0.703125 -4.421875 0.328125 -3.75 0.328125 -3.203125 C 0.328125 -2.859375 0.484375 -2.578125 0.75 -2.359375 C 1.0625 -2.109375 1.34375 -2.046875 2.046875 -1.90625 C 2.265625 -1.875 3.078125 -1.71875 3.078125 -1 C 3.078125 -0.5 2.734375 -0.109375 1.96875 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.640625 0.546875 -1.671875 0.453125 -1.671875 C 0.328125 -1.671875 0.328125 -1.609375 0.328125 -1.421875 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.875 -0.3125 C 1.3125 0.09375 1.75 0.109375 1.96875 0.109375 C 3.09375 0.109375 3.546875 -0.546875 3.546875 -1.265625 Z M 3.546875 -1.265625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -28.348609 -42.518607 L 28.348024 -42.518607 L 28.348024 42.518445 L -28.348609 42.518445 Z M -28.348609 -42.518607 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 -35.196543 L 23.174397 -35.196543 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 -27.376862 L 23.174397 -27.376862 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 -19.553232 L 23.174397 -19.553232 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 -11.733551 L 23.174397 -11.733551 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 -3.909921 L 23.174397 -3.909921 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 3.909759 L 23.174397 3.909759 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 11.733389 L 23.174397 11.733389 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 19.55307 L 23.174397 19.55307 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 27.3767 L 23.174397 27.3767 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.174982 35.19638 L 23.174397 35.19638 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.518819 57.691785 L 42.522183 57.691785 L 42.522183 100.210311 L -42.518819 100.210311 Z M -42.518819 57.691785 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="32.176116" y="25.98544"/>
<use xlink:href="#glyph0-2" x="41.209202" y="25.98544"/>
<use xlink:href="#glyph0-3" x="46.136161" y="25.98544"/>
<use xlink:href="#glyph0-3" x="50.023531" y="25.98544"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.518819 -57.190382 L 42.522183 -57.190382 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.306273 43.02001 L -17.306273 57.190219 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.305687 43.02001 L 17.305687 57.190219 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.306273 -43.020172 L -17.306273 -57.190382 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.305687 -43.020172 L 17.305687 -57.190382 " transform="matrix(0.989091,0,0,-0.989091,43.043258,100.679607)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -0,0 +1,16 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
\node[piezo={2}{3}{10}] (piezo) at (0, 0){};
\node[draw, fill=white, anchor=south, minimum width=3cm, minimum height=1.5cm] (mass) at ($(piezo.north)+(0, 0.5)$) {Mass};
\draw[] ($(piezo.south)+(-1.5, -0.5)$) -- ++(3, 0);
\draw ($0.8*(piezo.north west)+0.2*(piezo.north east)$) -- ++(0, 0.5);
\draw ($0.2*(piezo.north west)+0.8*(piezo.north east)$) -- ++(0, 0.5);
\draw ($0.8*(piezo.south west)+0.2*(piezo.south east)$) -- ++(0, -0.5);
\draw ($0.2*(piezo.south west)+0.8*(piezo.south east)$) -- ++(0, -0.5);
\end{tikzpicture}

BIN
tikz/figs/bode_Kfb.pdf Normal file

Binary file not shown.

BIN
tikz/figs/bode_Kfb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

324
tikz/figs/bode_Kfb.svg Normal file
View File

@ -0,0 +1,324 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="253.14pt" height="182.46pt" viewBox="0 0 253.14 182.46" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.34375 C 2.921875 -6.59375 2.921875 -6.609375 2.6875 -6.609375 C 2.078125 -5.96875 1.203125 -5.96875 0.890625 -5.96875 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.921875 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.703125 -6.453125 2.890625 -6.609375 2.484375 -6.609375 C 1.890625 -6.609375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.4375 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.296875 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.921875 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.296875 C 1.203125 -3.921875 1.203125 -4.578125 1.296875 -5.125 C 1.484375 -6.296875 2.21875 -6.390625 2.46875 -6.390625 C 2.796875 -6.390625 3.453125 -6.21875 3.640625 -5.234375 C 3.734375 -4.671875 3.734375 -3.921875 3.734375 -3.296875 Z M 3.734375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.53125 -1.671875 C 4.53125 -2.03125 4.421875 -2.46875 4.046875 -2.890625 C 3.859375 -3.09375 3.703125 -3.1875 3.0625 -3.59375 C 3.78125 -3.953125 4.265625 -4.46875 4.265625 -5.125 C 4.265625 -6.046875 3.390625 -6.609375 2.484375 -6.609375 C 1.484375 -6.609375 0.6875 -5.875 0.6875 -4.953125 C 0.6875 -4.765625 0.703125 -4.328125 1.125 -3.859375 C 1.234375 -3.734375 1.59375 -3.5 1.84375 -3.328125 C 1.265625 -3.03125 0.421875 -2.484375 0.421875 -1.5 C 0.421875 -0.453125 1.421875 0.21875 2.46875 0.21875 C 3.59375 0.21875 4.53125 -0.609375 4.53125 -1.671875 Z M 3.828125 -5.125 C 3.828125 -4.5625 3.4375 -4.09375 2.84375 -3.734375 L 1.625 -4.53125 C 1.15625 -4.828125 1.125 -5.171875 1.125 -5.34375 C 1.125 -5.9375 1.765625 -6.359375 2.46875 -6.359375 C 3.1875 -6.359375 3.828125 -5.84375 3.828125 -5.125 Z M 4.03125 -1.3125 C 4.03125 -0.578125 3.296875 -0.0625 2.484375 -0.0625 C 1.625 -0.0625 0.90625 -0.671875 0.90625 -1.5 C 0.90625 -2.078125 1.234375 -2.703125 2.078125 -3.171875 L 3.296875 -2.40625 C 3.578125 -2.21875 4.03125 -1.921875 4.03125 -1.3125 Z M 4.03125 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.53125 -3.265625 C 4.53125 -5.9375 3.390625 -6.609375 2.515625 -6.609375 C 1.96875 -6.609375 1.484375 -6.421875 1.046875 -5.984375 C 0.640625 -5.53125 0.421875 -5.125 0.421875 -4.375 C 0.421875 -3.140625 1.296875 -2.15625 2.40625 -2.15625 C 3 -2.15625 3.40625 -2.578125 3.640625 -3.15625 L 3.640625 -2.84375 C 3.640625 -0.515625 2.609375 -0.0625 2.03125 -0.0625 C 1.859375 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.234375 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.328125 0.21875 4.53125 -1.125 4.53125 -3.265625 Z M 3.625 -4.171875 C 3.625 -3.359375 3.28125 -2.390625 2.40625 -2.390625 C 2.25 -2.390625 1.796875 -2.390625 1.484375 -3.015625 C 1.3125 -3.390625 1.3125 -3.875 1.3125 -4.359375 C 1.3125 -4.90625 1.3125 -5.375 1.515625 -5.734375 C 1.78125 -6.234375 2.15625 -6.359375 2.515625 -6.359375 C 2.96875 -6.359375 3.296875 -6.015625 3.46875 -5.578125 C 3.578125 -5.265625 3.625 -4.640625 3.625 -4.171875 Z M 3.625 -4.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 7.109375 0 L 7.109375 -0.3125 L 6.859375 -0.3125 C 6.109375 -0.3125 6.078125 -0.421875 6.078125 -0.78125 L 6.078125 -6 C 6.078125 -6.359375 6.109375 -6.46875 6.859375 -6.46875 L 7.109375 -6.46875 L 7.109375 -6.78125 C 6.75 -6.75 6.015625 -6.75 5.640625 -6.75 C 5.265625 -6.75 4.53125 -6.75 4.171875 -6.78125 L 4.171875 -6.46875 L 4.421875 -6.46875 C 5.171875 -6.46875 5.203125 -6.359375 5.203125 -6 L 5.203125 -3.6875 L 2.234375 -3.6875 L 2.234375 -6 C 2.234375 -6.359375 2.25 -6.46875 3.015625 -6.46875 L 3.25 -6.46875 L 3.25 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.34375 -6.359375 1.34375 -6 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.375 L 5.203125 -3.375 L 5.203125 -0.78125 C 5.203125 -0.421875 5.171875 -0.3125 4.421875 -0.3125 L 4.171875 -0.3125 L 4.171875 0 C 4.53125 -0.03125 5.265625 -0.03125 5.640625 -0.03125 C 6.015625 -0.03125 6.75 -0.03125 7.109375 0 Z M 7.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.984375 -1.859375 L 3.734375 -1.859375 C 3.640625 -0.6875 3.4375 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.875 -3.984375 C 3.953125 -4.09375 3.953125 -4.109375 3.953125 -4.140625 C 3.953125 -4.28125 3.875 -4.28125 3.703125 -4.28125 L 0.53125 -4.28125 L 0.421875 -2.671875 L 0.671875 -2.671875 C 0.71875 -3.6875 0.90625 -4.0625 2 -4.0625 L 3.140625 -4.0625 L 0.359375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.8125 0 Z M 3.984375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.671875 -1.140625 L 3.671875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.484375 C 2.90625 -4.640625 2.90625 -4.6875 2.75 -4.6875 C 2.671875 -4.6875 2.640625 -4.6875 2.578125 -4.59375 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.3125 -1.140625 L 2.3125 -0.5625 C 2.3125 -0.328125 2.3125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.65625 0 L 3.65625 -0.25 L 3.46875 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.5625 L 2.90625 -1.140625 Z M 2.359375 -1.390625 L 0.53125 -1.390625 L 2.359375 -3.9375 Z M 2.359375 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 3.578125 -1.421875 C 3.578125 -2.296875 2.875 -2.953125 2.0625 -2.953125 C 1.5 -2.953125 1.203125 -2.59375 1.046875 -2.28125 C 1.046875 -2.84375 1.09375 -3.359375 1.359375 -3.78125 C 1.59375 -4.15625 1.96875 -4.421875 2.40625 -4.421875 C 2.625 -4.421875 2.90625 -4.359375 3.03125 -4.171875 C 2.859375 -4.15625 2.71875 -4.046875 2.71875 -3.84375 C 2.71875 -3.671875 2.84375 -3.515625 3.046875 -3.515625 C 3.25 -3.515625 3.375 -3.65625 3.375 -3.859375 C 3.375 -4.25 3.09375 -4.609375 2.40625 -4.609375 C 1.390625 -4.609375 0.375 -3.703125 0.375 -2.203125 C 0.375 -0.40625 1.21875 0.140625 1.984375 0.140625 C 2.84375 0.140625 3.578125 -0.5 3.578125 -1.421875 Z M 2.90625 -1.421875 C 2.90625 -1.015625 2.90625 -0.734375 2.71875 -0.453125 C 2.546875 -0.21875 2.328125 -0.078125 1.984375 -0.078125 C 1.640625 -0.078125 1.375 -0.28125 1.21875 -0.59375 C 1.125 -0.796875 1.0625 -1.140625 1.0625 -1.5625 C 1.0625 -2.234375 1.46875 -2.765625 2.015625 -2.765625 C 2.34375 -2.765625 2.5625 -2.640625 2.734375 -2.375 C 2.90625 -2.109375 2.90625 -1.828125 2.90625 -1.421875 Z M 2.90625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.578125 -1.171875 C 3.578125 -1.640625 3.296875 -2.015625 2.90625 -2.265625 L 2.46875 -2.515625 C 3.015625 -2.78125 3.359375 -3.09375 3.359375 -3.578125 C 3.359375 -4.25 2.65625 -4.609375 1.984375 -4.609375 C 1.21875 -4.609375 0.59375 -4.109375 0.59375 -3.453125 C 0.59375 -3.125 0.75 -2.890625 0.875 -2.75 C 1 -2.609375 1.046875 -2.578125 1.453125 -2.34375 C 1.0625 -2.171875 0.375 -1.796875 0.375 -1.0625 C 0.375 -0.296875 1.171875 0.140625 1.96875 0.140625 C 2.84375 0.140625 3.578125 -0.421875 3.578125 -1.171875 Z M 2.984375 -3.578125 C 2.984375 -2.96875 2.25 -2.65625 2.25 -2.65625 C 2.25 -2.65625 2.21875 -2.65625 2.171875 -2.6875 L 1.328125 -3.171875 C 1.15625 -3.28125 0.953125 -3.46875 0.953125 -3.71875 C 0.953125 -4.15625 1.46875 -4.421875 1.96875 -4.421875 C 2.515625 -4.421875 2.984375 -4.078125 2.984375 -3.578125 Z M 3.15625 -0.9375 C 3.15625 -0.40625 2.578125 -0.078125 1.984375 -0.078125 C 1.34375 -0.078125 0.796875 -0.5 0.796875 -1.0625 C 0.796875 -1.578125 1.171875 -1.96875 1.671875 -2.203125 C 2.0625 -1.984375 2.078125 -1.984375 2.625 -1.65625 C 2.8125 -1.546875 3.15625 -1.34375 3.15625 -0.9375 Z M 3.15625 -0.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 0 -8.71875 L -0.3125 -8.71875 L -0.3125 -8.484375 C -0.3125 -7.71875 -0.421875 -7.703125 -0.78125 -7.703125 L -6 -7.703125 C -6.359375 -7.703125 -6.46875 -7.71875 -6.46875 -8.484375 L -6.46875 -8.71875 L -6.78125 -8.71875 L -6.78125 -7.046875 C -6.78125 -6.78125 -6.765625 -6.78125 -6.59375 -6.71875 L -1 -4.546875 L -6.5625 -2.390625 C -6.78125 -2.296875 -6.78125 -2.265625 -6.78125 -2.046875 L -6.78125 -0.359375 L -6.46875 -0.359375 L -6.46875 -0.609375 C -6.46875 -1.375 -6.359375 -1.390625 -6 -1.390625 L -1.046875 -1.390625 C -0.78125 -1.390625 -0.3125 -1.390625 -0.3125 -0.359375 L 0 -0.359375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.78125 -1.671875 -1.046875 -1.671875 L -6.390625 -1.671875 L -0.21875 -4.0625 C -0.09375 -4.125 0 -4.171875 0 -4.265625 C 0 -4.375 -0.078125 -4.40625 -0.1875 -4.4375 L -6.46875 -6.890625 L -0.78125 -6.890625 C -0.421875 -6.890625 -0.3125 -6.875 -0.3125 -6.109375 L -0.3125 -5.875 L 0 -5.875 C -0.03125 -6.234375 -0.03125 -6.921875 -0.03125 -7.296875 C -0.03125 -7.6875 -0.03125 -8.359375 0 -8.71875 Z M 0 -8.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M -0.890625 -4.796875 L -1.4375 -4.796875 L -1.4375 -4.546875 L -0.890625 -4.546875 C -0.3125 -4.546875 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.734375 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.90625 -3.46875 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.109375 C -4.4375 -1.296875 -3.984375 -0.609375 -3.328125 -0.609375 C -3.03125 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.0625 -1.515625 -3.3125 -1.515625 C -3.4375 -1.515625 -3.765625 -1.46875 -3.765625 -1.015625 C -4.125 -1.28125 -4.234375 -1.765625 -4.234375 -2.078125 C -4.234375 -2.5625 -3.84375 -3.140625 -2.953125 -3.140625 L -2.59375 -3.140625 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.25 0.0625 -3.515625 0.0625 -3.984375 C 0.0625 -4.1875 -0.078125 -4.796875 -0.890625 -4.796875 Z M -1.390625 -3.140625 C -0.453125 -3.140625 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.328125 -1.5 -2.375 -3.140625 Z M -1.390625 -3.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M -4.015625 -4.8125 C -4.171875 -4.8125 -4.5 -4.6875 -4.5 -4.3125 C -4.5 -4.109375 -4.4375 -3.671875 -4.03125 -3.25 C -4.359375 -2.84375 -4.390625 -2.421875 -4.390625 -2.203125 C -4.390625 -1.28125 -3.703125 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.921875 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.890625 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.03125 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.328125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.59375 -1.046875 -1.78125 -1.21875 C -1.515625 -1.609375 -1.484375 -2.015625 -1.484375 -2.203125 C -1.484375 -3.125 -2.15625 -3.8125 -2.921875 -3.8125 C -3.296875 -3.8125 -3.65625 -3.65625 -3.890625 -3.40625 C -4.234375 -3.765625 -4.28125 -4.125 -4.28125 -4.296875 C -4.28125 -4.296875 -4.28125 -4.359375 -4.265625 -4.390625 C -4.234375 -4.28125 -4.125 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.53125 C -3.703125 -4.625 -3.78125 -4.8125 -4.015625 -4.8125 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.0625 -2.109375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.703125 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.515625 -1.34375 -3.765625 -1.5 C -3.875 -1.578125 -4.15625 -1.8125 -4.15625 -2.203125 C -4.15625 -3.0625 -3.171875 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.484375 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.390625 -1.75 L -4.28125 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -6 -1.90625 C -6.265625 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -6 -0.84375 C -5.71875 -0.84375 -5.46875 -1.078125 -5.46875 -1.375 C -5.46875 -1.703125 -5.75 -1.90625 -6 -1.90625 Z M -6 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M -1.234375 -3.296875 L -1.796875 -3.296875 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.140625 L -4.28125 -3.140625 L -4.28125 -1.71875 L -6.109375 -1.71875 L -6.109375 -1.46875 C -5.28125 -1.453125 -4.234375 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.296875 -1.234375 -3.296875 Z M -1.234375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.609375 -0.375 -4.53125 -0.859375 -4.53125 L -4.390625 -4.53125 L -4.28125 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.765625 -3.90625 -3.84375 -3.40625 -3.84375 L -1.640625 -3.84375 C -0.78125 -3.84375 -0.109375 -3.375 -0.109375 -2.65625 C -0.109375 -1.8125 -0.578125 -1.78125 -1.09375 -1.78125 L -4.390625 -1.78125 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.0625 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.59375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.875 L 0.109375 -3.875 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 0 -5.234375 L -0.3125 -5.234375 C -0.3125 -4.53125 -0.375 -4.453125 -0.859375 -4.453125 L -6.890625 -4.453125 L -6.78125 -3.03125 L -6.46875 -3.03125 C -6.46875 -3.71875 -6.40625 -3.796875 -5.90625 -3.796875 L -3.765625 -3.796875 C -4.125 -3.515625 -4.390625 -3.078125 -4.390625 -2.546875 C -4.390625 -1.375 -3.40625 -0.34375 -2.140625 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.515625 -0.546875 -3.765625 L 0.109375 -3.765625 Z M -1.171875 -3.765625 C -0.984375 -3.765625 -0.96875 -3.765625 -0.796875 -3.65625 C -0.328125 -3.359375 -0.109375 -2.921875 -0.109375 -2.484375 C -0.109375 -2.046875 -0.359375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.484375 -1.15625 -3.078125 -1.1875 -3.53125 -1.46875 C -3.84375 -1.671875 -4.171875 -2.046875 -4.171875 -2.59375 C -4.171875 -2.9375 -4.015625 -3.359375 -3.578125 -3.65625 C -3.40625 -3.765625 -3.390625 -3.765625 -3.203125 -3.765625 Z M -1.171875 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M -1.1875 -4.125 C -1.28125 -4.125 -1.296875 -4.03125 -1.296875 -3.984375 C -1.296875 -3.90625 -1.234375 -3.875 -1.15625 -3.859375 C -0.140625 -3.515625 -0.140625 -2.625 -0.140625 -2.515625 C -0.140625 -2.03125 -0.4375 -1.625 -0.796875 -1.40625 C -1.28125 -1.09375 -1.9375 -1.09375 -2.296875 -1.09375 L -2.296875 -3.875 C -2.296875 -4.09375 -2.296875 -4.125 -2.5 -4.125 C -3.484375 -4.125 -4.4375 -3.578125 -4.4375 -2.34375 C -4.4375 -1.1875 -3.421875 -0.28125 -2.1875 -0.28125 C -0.859375 -0.28125 0.109375 -1.3125 0.109375 -2.453125 C 0.109375 -3.671875 -0.984375 -4.125 -1.1875 -4.125 Z M -2.5 -3.46875 L -2.5 -1.109375 C -3.984375 -1.171875 -4.234375 -2 -4.234375 -2.34375 C -4.234375 -3.359375 -2.890625 -3.46875 -2.5 -3.46875 Z M -2.5 -3.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 2.484375 -2.53125 L 2.078125 -2.53125 L 2.078125 -1.5625 L -7.046875 -1.5625 L -7.046875 -2.53125 L -7.4375 -2.53125 L -7.4375 -1.171875 L 2.484375 -1.171875 Z M 2.484375 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 0 -8.0625 L -0.3125 -8.0625 C -0.3125 -7.546875 -0.3125 -7.296875 -0.609375 -7.296875 L -2.5 -7.296875 C -3.359375 -7.296875 -3.65625 -7.296875 -4.015625 -6.984375 C -4.1875 -6.84375 -4.390625 -6.515625 -4.390625 -5.9375 C -4.390625 -5.109375 -3.796875 -4.671875 -3.40625 -4.5 C -4.28125 -4.359375 -4.390625 -3.625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 L 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.640625 -0.3125 -4.53125 -0.75 -4.53125 L -2.578125 -4.53125 C -3.609375 -4.53125 -4.171875 -5.234375 -4.171875 -5.875 C -4.171875 -6.5 -3.625 -6.609375 -3.0625 -6.609375 L -0.75 -6.609375 C -0.3125 -6.609375 -0.3125 -6.5 -0.3125 -5.828125 L 0 -5.828125 L -0.03125 -6.953125 Z M 0 -8.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M -7.25 -4.390625 C -7.359375 -4.390625 -7.4375 -4.3125 -7.4375 -4.203125 C -7.4375 -4.0625 -7.34375 -4.015625 -7.25 -3.984375 L 2.109375 -0.609375 C 2.234375 -0.5625 2.28125 -0.5625 2.28125 -0.5625 C 2.390625 -0.5625 2.484375 -0.640625 2.484375 -0.75 C 2.484375 -0.890625 2.375 -0.9375 2.28125 -0.96875 L -7.0625 -4.34375 C -7.1875 -4.390625 -7.25 -4.390625 -7.25 -4.390625 Z M -7.25 -4.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M -6.46875 -7.109375 L -6.78125 -7.109375 L -6.75 -5.9375 L -6.78125 -4.78125 L -6.46875 -4.78125 C -6.46875 -5.796875 -6 -5.796875 -5.734375 -5.796875 L -1.5 -5.796875 L -6.640625 -2.296875 C -6.765625 -2.21875 -6.78125 -2.203125 -6.78125 -2.015625 L -6.78125 -0.328125 L -6.46875 -0.328125 L -6.46875 -0.609375 C -6.46875 -0.765625 -6.453125 -0.96875 -6.453125 -1.109375 C -6.421875 -1.34375 -6.40625 -1.34375 -6.21875 -1.34375 L -1.046875 -1.34375 C -0.78125 -1.34375 -0.3125 -1.34375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.484375 L 0 -2.65625 L -0.3125 -2.65625 C -0.3125 -1.625 -0.78125 -1.625 -1.046875 -1.625 L -6.203125 -1.625 C -6.15625 -1.671875 -6.140625 -1.6875 -6.078125 -1.71875 L -0.125 -5.78125 C -0.015625 -5.859375 0 -5.875 0 -5.9375 C 0 -6.078125 -0.0625 -6.078125 -0.265625 -6.078125 L -5.734375 -6.078125 C -6 -6.078125 -6.46875 -6.078125 -6.46875 -7.109375 Z M -6.46875 -7.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 2.484375 -1.578125 L -7.4375 -1.578125 L -7.4375 -0.21875 L -7.046875 -0.21875 L -7.046875 -1.1875 L 2.078125 -1.1875 L 2.078125 -0.21875 L 2.484375 -0.21875 Z M 2.484375 -1.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M -4.9375 -6.1875 C -5.90625 -6.1875 -6.78125 -5.203125 -6.78125 -3.84375 L -6.78125 -0.34375 L -6.46875 -0.34375 L -6.46875 -0.578125 C -6.46875 -1.34375 -6.359375 -1.375 -6 -1.375 L -0.78125 -1.375 C -0.421875 -1.375 -0.3125 -1.34375 -0.3125 -0.578125 L -0.3125 -0.34375 L 0 -0.34375 C -0.03125 -0.6875 -0.03125 -1.421875 -0.03125 -1.8125 C -0.03125 -2.1875 -0.03125 -2.921875 0 -3.28125 L -0.3125 -3.28125 L -0.3125 -3.03125 C -0.3125 -2.265625 -0.421875 -2.25 -0.78125 -2.25 L -3.140625 -2.25 L -3.140625 -3.921875 C -3.140625 -5.125 -3.9375 -6.1875 -4.9375 -6.1875 Z M -4.9375 -5.171875 C -4.46875 -5.171875 -3.390625 -5.171875 -3.390625 -3.59375 L -3.390625 -2.21875 L -6.078125 -2.21875 C -6.40625 -2.21875 -6.46875 -2.25 -6.46875 -2.703125 L -6.46875 -3.59375 C -6.46875 -5.171875 -5.421875 -5.171875 -4.9375 -5.171875 Z M -4.9375 -5.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.34375 -3.796875 -1.921875 -3.4375 -1.75 L -6.890625 -1.75 L -6.78125 -0.3125 L -6.46875 -0.3125 C -6.46875 -1.015625 -6.40625 -1.09375 -5.90625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M -1.265625 -3.578125 C -1.796875 -3.578125 -2.09375 -3.28125 -2.21875 -3.15625 C -2.53125 -2.828125 -2.609375 -2.4375 -2.6875 -2.03125 C -2.796875 -1.46875 -2.921875 -0.796875 -3.5 -0.796875 C -3.84375 -0.796875 -4.25 -1.0625 -4.25 -1.921875 C -4.25 -3 -3.359375 -3.0625 -3.0625 -3.078125 C -2.96875 -3.078125 -2.96875 -3.1875 -2.96875 -3.1875 C -2.96875 -3.328125 -3.015625 -3.328125 -3.203125 -3.328125 L -4.203125 -3.328125 C -4.375 -3.328125 -4.4375 -3.328125 -4.4375 -3.21875 C -4.4375 -3.171875 -4.4375 -3.140625 -4.328125 -3.015625 C -4.28125 -2.984375 -4.203125 -2.890625 -4.171875 -2.84375 C -4.4375 -2.46875 -4.4375 -2.0625 -4.4375 -1.921875 C -4.4375 -0.703125 -3.78125 -0.328125 -3.21875 -0.328125 C -2.875 -0.328125 -2.59375 -0.484375 -2.375 -0.75 C -2.125 -1.078125 -2.0625 -1.34375 -1.921875 -2.0625 C -1.890625 -2.28125 -1.71875 -3.09375 -1.015625 -3.09375 C -0.5 -3.09375 -0.109375 -2.75 -0.109375 -1.96875 C -0.109375 -1.140625 -0.671875 -0.78125 -1.515625 -0.59375 C -1.640625 -0.5625 -1.6875 -0.5625 -1.6875 -0.453125 C -1.6875 -0.328125 -1.625 -0.328125 -1.4375 -0.328125 L -0.125 -0.328125 C 0.046875 -0.328125 0.109375 -0.328125 0.109375 -0.4375 C 0.109375 -0.484375 0.09375 -0.5 -0.09375 -0.6875 C -0.109375 -0.703125 -0.125 -0.703125 -0.3125 -0.890625 C 0.09375 -1.3125 0.109375 -1.765625 0.109375 -1.96875 C 0.109375 -3.109375 -0.5625 -3.578125 -1.265625 -3.578125 Z M -1.265625 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.671875 6.703125 -2.671875 6.5625 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 6.046875 -4.515625 L 5.78125 -6.75 L 0.328125 -6.75 L 0.328125 -6.4375 L 0.5625 -6.4375 C 1.328125 -6.4375 1.34375 -6.328125 1.34375 -5.96875 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.828125 -0.03125 C 2.25 -0.03125 3.140625 -0.03125 3.5 0 L 3.5 -0.3125 L 3.171875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.21875 L 3.078125 -3.21875 C 4.03125 -3.21875 4.140625 -2.90625 4.140625 -2.0625 L 4.390625 -2.0625 L 4.390625 -4.6875 L 4.140625 -4.6875 C 4.140625 -3.859375 4.03125 -3.53125 3.078125 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.046875 C 2.234375 -6.375 2.25 -6.4375 2.71875 -6.4375 L 3.90625 -6.4375 C 5.390625 -6.4375 5.640625 -5.890625 5.796875 -4.515625 Z M 6.046875 -4.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.71875 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.953125 -4.140625 2.765625 -4.03125 2.765625 -3.765625 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.46875 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.90625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.515625 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.125 -0.984375 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.359375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph5-4">
<path style="stroke:none;" d="M 5.234375 1.921875 L 5.234375 1.625 C 4.5625 1.625 4.453125 1.625 4.453125 1.171875 L 4.453125 -4.390625 L 4.234375 -4.390625 L 3.859375 -3.484375 C 3.734375 -3.765625 3.328125 -4.390625 2.53125 -4.390625 C 1.375 -4.390625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.140625 0.109375 3.546875 -0.3125 3.765625 -0.609375 L 3.765625 1.171875 C 3.765625 1.625 3.65625 1.625 3 1.625 L 3 1.921875 L 4.109375 1.890625 Z M 3.796875 -1.34375 C 3.796875 -1.03125 3.625 -0.75 3.40625 -0.515625 C 3.28125 -0.375 2.953125 -0.109375 2.484375 -0.109375 C 1.765625 -0.109375 1.15625 -0.984375 1.15625 -2.140625 C 1.15625 -3.3125 1.859375 -4.140625 2.59375 -4.140625 C 3.390625 -4.140625 3.796875 -3.28125 3.796875 -2.75 Z M 3.796875 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-5">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.90625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-6">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.359375 4.53125 -3.65625 4.234375 -4.015625 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.453125 -4.390625 2 -3.953125 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.609375 2.484375 -4.171875 3.109375 -4.171875 C 3.734375 -4.171875 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-7">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.90625 -1.28125 3.875 -1.234375 3.859375 -1.1875 C 3.578125 -0.265625 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.28125 -2.921875 3.546875 -2.921875 C 3.8125 -2.921875 4.015625 -3.078125 4.015625 -3.390625 C 4.015625 -4.0625 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-8">
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.25 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.734375 -3.953125 3.90625 -3.796875 3.90625 -3.546875 C 3.90625 -3.4375 3.890625 -3.421875 3.84375 -3.296875 L 2.84375 -0.859375 L 1.734375 -3.53125 C 1.703125 -3.625 1.671875 -3.671875 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.25 0.1875 -4.28125 L 0.1875 -3.96875 C 0.671875 -3.96875 0.859375 -3.96875 0.984375 -3.625 L 2.484375 0 L 2.234375 0.578125 C 2.015625 1.125 1.734375 1.8125 1.09375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.015625 1.375 1.015625 1.21875 C 1.015625 0.96875 0.828125 0.796875 0.609375 0.796875 C 0.40625 0.796875 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.09375 2.03125 C 1.71875 2.03125 2.140625 1.46875 2.375 0.90625 L 4.125 -3.328125 C 4.375 -3.953125 4.875 -3.96875 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.078125 L 1.5625 2.078125 L 1.5625 -7.046875 L 2.53125 -7.046875 L 2.53125 -7.4375 L 1.171875 -7.4375 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-10">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.4375 L 0.21875 -7.4375 L 0.21875 -7.046875 L 1.1875 -7.046875 L 1.1875 2.078125 L 0.21875 2.078125 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43.519531 7.886719 L 234 7.886719 L 234 85.578125 L 43.519531 85.578125 Z M 43.519531 7.886719 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 43.519531 92.644531 L 241.28125 92.644531 L 241.28125 149.144531 L 43.519531 149.144531 Z M 43.519531 92.644531 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 85.578125 L 241.28125 85.578125 L 241.28125 7.886719 L 43.519531 7.886719 Z M 43.519531 85.578125 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 67.041076 L -49.609619 144.996426 M -34.676244 67.041076 L -34.676244 144.996426 M -25.939632 67.041076 L -25.939632 144.996426 M -19.74287 67.041076 L -19.74287 144.996426 M -14.933618 67.041076 L -14.933618 144.996426 M -11.006258 67.041076 L -11.006258 144.996426 M -7.682504 67.041076 L -7.682504 144.996426 M -4.805576 67.041076 L -4.805576 144.996426 M -2.269646 67.041076 L -2.269646 144.996426 M -0.000243561 67.041076 L -0.000243561 144.996426 M 14.933131 67.041076 L 14.933131 144.996426 M 23.669743 67.041076 L 23.669743 144.996426 M 29.866505 67.041076 L 29.866505 144.996426 M 34.675757 67.041076 L 34.675757 144.996426 M 38.603117 67.041076 L 38.603117 144.996426 M 41.922951 67.041076 L 41.922951 144.996426 M 44.799879 67.041076 L 44.799879 144.996426 M 47.339729 67.041076 L 47.339729 144.996426 M 49.609131 67.041076 L 49.609131 144.996426 M 64.542506 67.041076 L 64.542506 144.996426 M 73.275198 67.041076 L 73.275198 144.996426 M 79.47588 67.041076 L 79.47588 144.996426 M 84.281213 67.041076 L 84.281213 144.996426 M 88.212492 67.041076 L 88.212492 144.996426 M 91.532326 67.041076 L 91.532326 144.996426 M 94.409254 67.041076 L 94.409254 144.996426 M 96.945184 67.041076 L 96.945184 144.996426 M 99.214587 67.041076 L 99.214587 144.996426 M 114.147961 67.041076 L 114.147961 144.996426 M 122.884573 67.041076 L 122.884573 144.996426 M 129.081336 67.041076 L 129.081336 144.996426 M 133.890588 67.041076 L 133.890588 144.996426 M 137.817947 67.041076 L 137.817947 144.996426 M 141.137782 67.041076 L 141.137782 144.996426 M 144.01471 67.041076 L 144.01471 144.996426 M 146.554559 67.041076 L 146.554559 144.996426 " transform="matrix(0.996614,0,0,-0.996614,92.96118,152.392212)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 67.041076 L -49.609619 144.996426 M -0.000243561 67.041076 L -0.000243561 144.996426 M 49.609131 67.041076 L 49.609131 144.996426 M 99.214587 67.041076 L 99.214587 144.996426 M 148.823962 67.041076 L 148.823962 144.996426 " transform="matrix(0.996614,0,0,-0.996614,92.96118,152.392212)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 72.497049 L 148.823962 72.497049 M -49.609619 108.748697 L 148.823962 108.748697 M -49.609619 144.996426 L 148.823962 144.996426 " transform="matrix(0.996614,0,0,-0.996614,92.96118,152.392212)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 67.041076 L -49.609619 69.87489 M -34.676244 67.041076 L -34.676244 69.87489 M -25.939632 67.041076 L -25.939632 69.87489 M -19.74287 67.041076 L -19.74287 69.87489 M -14.933618 67.041076 L -14.933618 69.87489 M -11.006258 67.041076 L -11.006258 69.87489 M -7.682504 67.041076 L -7.682504 69.87489 M -4.805576 67.041076 L -4.805576 69.87489 M -2.269646 67.041076 L -2.269646 69.87489 M -0.000243561 67.041076 L -0.000243561 69.87489 M 14.933131 67.041076 L 14.933131 69.87489 M 23.669743 67.041076 L 23.669743 69.87489 M 29.866505 67.041076 L 29.866505 69.87489 M 34.675757 67.041076 L 34.675757 69.87489 M 38.603117 67.041076 L 38.603117 69.87489 M 41.922951 67.041076 L 41.922951 69.87489 M 44.799879 67.041076 L 44.799879 69.87489 M 47.339729 67.041076 L 47.339729 69.87489 M 49.609131 67.041076 L 49.609131 69.87489 M 64.542506 67.041076 L 64.542506 69.87489 M 73.275198 67.041076 L 73.275198 69.87489 M 79.47588 67.041076 L 79.47588 69.87489 M 84.281213 67.041076 L 84.281213 69.87489 M 88.212492 67.041076 L 88.212492 69.87489 M 91.532326 67.041076 L 91.532326 69.87489 M 94.409254 67.041076 L 94.409254 69.87489 M 96.945184 67.041076 L 96.945184 69.87489 M 99.214587 67.041076 L 99.214587 69.87489 M 114.147961 67.041076 L 114.147961 69.87489 M 122.884573 67.041076 L 122.884573 69.87489 M 129.081336 67.041076 L 129.081336 69.87489 M 133.890588 67.041076 L 133.890588 69.87489 M 137.817947 67.041076 L 137.817947 69.87489 M 141.137782 67.041076 L 141.137782 69.87489 M 144.01471 67.041076 L 144.01471 69.87489 M 146.554559 67.041076 L 146.554559 69.87489 " transform="matrix(0.996614,0,0,-0.996614,92.96118,152.392212)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 67.041076 L -49.609619 71.293756 M -0.000243561 67.041076 L -0.000243561 71.293756 M 49.609131 67.041076 L 49.609131 71.293756 M 99.214587 67.041076 L 99.214587 71.293756 M 148.823962 67.041076 L 148.823962 71.293756 " transform="matrix(0.996614,0,0,-0.996614,92.96118,152.392212)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 72.497049 L -45.360858 72.497049 M -49.609619 108.748697 L -45.360858 108.748697 M -49.609619 144.996426 L -45.360858 144.996426 " transform="matrix(0.996614,0,0,-0.996614,92.96118,152.392212)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 67.041076 L 148.823962 67.041076 " transform="matrix(0.996614,0,0,-0.996614,92.96118,152.392212)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 67.041076 L -49.609619 144.996426 " transform="matrix(0.996614,0,0,-0.996614,92.96118,152.392212)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.331939" y="84.180948"/>
<use xlink:href="#glyph0-2" x="30.296373" y="84.180948"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="35.261206" y="80.578188"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.331939" y="48.054681"/>
<use xlink:href="#glyph0-2" x="30.296373" y="48.054681"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="35.261206" y="44.451921"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.331939" y="11.928414"/>
<use xlink:href="#glyph0-2" x="30.296373" y="11.928414"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="35.261206" y="8.325653"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 138.439068 L -42.260517 133.222185 L -32.128556 125.90052 L -19.613526 116.736681 L -9.881356 109.493406 L -3.128021 104.347075 L 1.838012 100.443233 L 5.808486 97.19395 L 8.987218 94.462044 L 11.766158 91.937873 L 14.149227 89.621436 L 16.136424 87.54017 L 17.927645 85.505939 L 19.515051 83.518742 L 20.90648 81.594257 L 22.293991 79.438521 L 23.485525 77.365094 L 25.076851 74.29219 L 26.068489 72.422578 L 26.664257 71.544606 L 27.060128 71.160493 L 27.260024 71.046827 L 27.459919 70.984114 L 27.655895 70.972356 L 27.855791 71.011551 L 28.251662 71.231044 L 28.651454 71.59164 L 29.443197 72.544084 L 31.434313 75.048657 L 32.425952 76.103008 L 33.617486 77.184796 L 34.809021 78.101964 L 36.000555 78.897627 L 37.391985 79.708968 L 38.979391 80.532067 L 41.166484 81.56682 L 45.732725 83.706879 L 47.719922 84.737713 L 49.707119 85.874374 L 51.694317 87.124701 L 53.681514 88.484775 L 56.064582 90.252479 L 58.843522 92.443491 L 62.618021 95.567349 L 77.712096 108.215642 L 83.273896 112.660379 L 89.231567 117.293253 L 96.384693 122.71787 L 105.920887 129.820041 L 121.014962 140.920124 L 126.772738 145.133609 " transform="matrix(0.996614,0,0,-0.996614,92.96118,152.392212)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="11.251774" y="84.793866"/>
<use xlink:href="#glyph2-2" x="11.251774" y="75.692072"/>
<use xlink:href="#glyph2-3" x="11.251774" y="70.727638"/>
<use xlink:href="#glyph2-4" x="11.251774" y="65.763204"/>
<use xlink:href="#glyph2-5" x="11.251774" y="60.247717"/>
<use xlink:href="#glyph2-6" x="11.251774" y="57.489478"/>
<use xlink:href="#glyph2-7" x="11.251774" y="53.628141"/>
<use xlink:href="#glyph2-8" x="11.251774" y="48.112654"/>
<use xlink:href="#glyph2-9" x="11.251774" y="42.597168"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-10" x="11.251774" y="34.877473"/>
<use xlink:href="#glyph2-11" x="11.251774" y="32.119233"/>
<use xlink:href="#glyph2-12" x="11.251774" y="23.845507"/>
<use xlink:href="#glyph2-13" x="11.251774" y="18.881073"/>
<use xlink:href="#glyph2-14" x="11.251774" y="11.434422"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 149.144531 L 241.28125 149.144531 L 241.28125 92.644531 L 43.519531 92.644531 Z M 43.519531 149.144531 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.001286 L -49.609619 56.690663 M -34.676244 -0.001286 L -34.676244 56.690663 M -25.939632 -0.001286 L -25.939632 56.690663 M -19.74287 -0.001286 L -19.74287 56.690663 M -14.933618 -0.001286 L -14.933618 56.690663 M -11.006258 -0.001286 L -11.006258 56.690663 M -7.682504 -0.001286 L -7.682504 56.690663 M -4.805576 -0.001286 L -4.805576 56.690663 M -2.269646 -0.001286 L -2.269646 56.690663 M -0.000243561 -0.001286 L -0.000243561 56.690663 M 14.933131 -0.001286 L 14.933131 56.690663 M 23.669743 -0.001286 L 23.669743 56.690663 M 29.866505 -0.001286 L 29.866505 56.690663 M 34.675757 -0.001286 L 34.675757 56.690663 M 38.603117 -0.001286 L 38.603117 56.690663 M 41.922951 -0.001286 L 41.922951 56.690663 M 44.799879 -0.001286 L 44.799879 56.690663 M 47.339729 -0.001286 L 47.339729 56.690663 M 49.609131 -0.001286 L 49.609131 56.690663 M 64.542506 -0.001286 L 64.542506 56.690663 M 73.275198 -0.001286 L 73.275198 56.690663 M 79.47588 -0.001286 L 79.47588 56.690663 M 84.281213 -0.001286 L 84.281213 56.690663 M 88.212492 -0.001286 L 88.212492 56.690663 M 91.532326 -0.001286 L 91.532326 56.690663 M 94.409254 -0.001286 L 94.409254 56.690663 M 96.945184 -0.001286 L 96.945184 56.690663 M 99.214587 -0.001286 L 99.214587 56.690663 M 114.147961 -0.001286 L 114.147961 56.690663 M 122.884573 -0.001286 L 122.884573 56.690663 M 129.081336 -0.001286 L 129.081336 56.690663 M 133.890588 -0.001286 L 133.890588 56.690663 M 137.817947 -0.001286 L 137.817947 56.690663 M 141.137782 -0.001286 L 141.137782 56.690663 M 144.01471 -0.001286 L 144.01471 56.690663 M 146.554559 -0.001286 L 146.554559 56.690663 " transform="matrix(0.996614,0,0,-0.996614,92.96118,149.14325)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.001286 L -49.609619 56.690663 M -0.000243561 -0.001286 L -0.000243561 56.690663 M 49.609131 -0.001286 L 49.609131 56.690663 M 99.214587 -0.001286 L 99.214587 56.690663 M 148.823962 -0.001286 L 148.823962 56.690663 " transform="matrix(0.996614,0,0,-0.996614,92.96118,149.14325)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.001286 L 148.823962 -0.001286 M -49.609619 14.171701 L 148.823962 14.171701 M -49.609619 28.344689 L 148.823962 28.344689 M -49.609619 42.517676 L 148.823962 42.517676 M -49.609619 56.690663 L 148.823962 56.690663 " transform="matrix(0.996614,0,0,-0.996614,92.96118,149.14325)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.001286 L -49.609619 2.836447 M -34.676244 -0.001286 L -34.676244 2.836447 M -25.939632 -0.001286 L -25.939632 2.836447 M -19.74287 -0.001286 L -19.74287 2.836447 M -14.933618 -0.001286 L -14.933618 2.836447 M -11.006258 -0.001286 L -11.006258 2.836447 M -7.682504 -0.001286 L -7.682504 2.836447 M -4.805576 -0.001286 L -4.805576 2.836447 M -2.269646 -0.001286 L -2.269646 2.836447 M -0.000243561 -0.001286 L -0.000243561 2.836447 M 14.933131 -0.001286 L 14.933131 2.836447 M 23.669743 -0.001286 L 23.669743 2.836447 M 29.866505 -0.001286 L 29.866505 2.836447 M 34.675757 -0.001286 L 34.675757 2.836447 M 38.603117 -0.001286 L 38.603117 2.836447 M 41.922951 -0.001286 L 41.922951 2.836447 M 44.799879 -0.001286 L 44.799879 2.836447 M 47.339729 -0.001286 L 47.339729 2.836447 M 49.609131 -0.001286 L 49.609131 2.836447 M 64.542506 -0.001286 L 64.542506 2.836447 M 73.275198 -0.001286 L 73.275198 2.836447 M 79.47588 -0.001286 L 79.47588 2.836447 M 84.281213 -0.001286 L 84.281213 2.836447 M 88.212492 -0.001286 L 88.212492 2.836447 M 91.532326 -0.001286 L 91.532326 2.836447 M 94.409254 -0.001286 L 94.409254 2.836447 M 96.945184 -0.001286 L 96.945184 2.836447 M 99.214587 -0.001286 L 99.214587 2.836447 M 114.147961 -0.001286 L 114.147961 2.836447 M 122.884573 -0.001286 L 122.884573 2.836447 M 129.081336 -0.001286 L 129.081336 2.836447 M 133.890588 -0.001286 L 133.890588 2.836447 M 137.817947 -0.001286 L 137.817947 2.836447 M 141.137782 -0.001286 L 141.137782 2.836447 M 144.01471 -0.001286 L 144.01471 2.836447 M 146.554559 -0.001286 L 146.554559 2.836447 " transform="matrix(0.996614,0,0,-0.996614,92.96118,149.14325)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.001286 L -49.609619 4.251394 M -0.000243561 -0.001286 L -0.000243561 4.251394 M 49.609131 -0.001286 L 49.609131 4.251394 M 99.214587 -0.001286 L 99.214587 4.251394 M 148.823962 -0.001286 L 148.823962 4.251394 " transform="matrix(0.996614,0,0,-0.996614,92.96118,149.14325)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.001286 L -45.360858 -0.001286 M -49.609619 14.171701 L -45.360858 14.171701 M -49.609619 28.344689 L -45.360858 28.344689 M -49.609619 42.517676 L -45.360858 42.517676 M -49.609619 56.690663 L -45.360858 56.690663 " transform="matrix(0.996614,0,0,-0.996614,92.96118,149.14325)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.001286 L 148.823962 -0.001286 " transform="matrix(0.996614,0,0,-0.996614,92.96118,149.14325)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.001286 L -49.609619 56.690663 " transform="matrix(0.996614,0,0,-0.996614,92.96118,149.14325)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="33.227117" y="161.030863"/>
<use xlink:href="#glyph0-2" x="38.191551" y="161.030863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="43.156384" y="157.428103"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="49.3623" y="157.428103"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="85.769612" y="161.030863"/>
<use xlink:href="#glyph0-2" x="90.734047" y="161.030863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="95.698879" y="157.428103"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="135.209648" y="161.030863"/>
<use xlink:href="#glyph0-2" x="140.174082" y="161.030863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="145.138915" y="157.428103"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="184.649684" y="161.030863"/>
<use xlink:href="#glyph0-2" x="189.614118" y="161.030863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="194.578951" y="157.428103"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="234.08972" y="161.030863"/>
<use xlink:href="#glyph0-2" x="239.054154" y="161.030863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="244.018987" y="157.428103"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="17.098909" y="151.856033"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="24.821673" y="151.856033"/>
<use xlink:href="#glyph0-3" x="29.786107" y="151.856033"/>
<use xlink:href="#glyph0-2" x="34.750541" y="151.856033"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="22.064041" y="137.731021"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="29.786804" y="137.731021"/>
<use xlink:href="#glyph0-2" x="34.751239" y="137.731021"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="34.75094" y="124.019603"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="29.786804" y="109.89459"/>
<use xlink:href="#glyph0-2" x="34.751239" y="109.89459"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="24.821673" y="95.769578"/>
<use xlink:href="#glyph0-3" x="29.786107" y="95.769578"/>
<use xlink:href="#glyph0-2" x="34.750541" y="95.769578"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 3.87904 L -47.822317 3.616432 L -46.031096 3.373421 L -44.243795 3.150009 L -42.656389 2.97363 L -41.068983 2.80901 L -39.477657 2.660069 L -37.890251 2.526805 L -36.298926 2.4053 L -34.915335 2.307312 L -33.519986 2.221082 L -32.128556 2.142692 L -30.737126 2.07606 L -29.545591 2.025106 L -28.354057 1.978072 L -27.162523 1.938877 L -26.170884 1.907521 L -25.175326 1.884004 L -24.183687 1.864406 L -23.388024 1.848728 L -22.596281 1.836969 L -21.800618 1.82913 L -21.204851 1.825211 L -20.613004 1.821291 L -19.813421 1.821291 L -19.41755 1.817372 L -19.017759 1.821291 L -18.226015 1.821291 L -17.826224 1.825211 L -16.63469 1.83305 L -16.038923 1.840889 L -15.24718 1.852647 L -14.451517 1.868325 L -13.655854 1.887923 L -12.664215 1.91144 L -11.668657 1.942796 L -10.677018 1.974152 L -9.485484 2.021187 L -8.29395 2.07606 L -7.102415 2.134853 L -5.9148 2.201485 L -4.519451 2.287714 L -3.128021 2.385702 L -1.736591 2.495449 L -0.349081 2.616954 L 1.042349 2.750218 L 2.433779 2.89524 L 3.825209 3.05986 L 5.212719 3.236238 L 6.604149 3.432214 L 7.995579 3.651707 L 9.383089 3.890798 L 10.774519 4.161245 L 12.16203 4.459129 L 13.553459 4.792288 L 14.744994 5.117608 L 15.940448 5.478204 L 17.131982 5.893673 L 18.123621 6.289545 L 19.119179 6.74029 L 20.110818 7.269425 L 20.90648 7.763285 L 21.698224 8.347293 L 22.493886 9.044968 L 23.289549 9.911182 L 23.885316 10.706845 L 24.481083 11.678886 L 25.076851 12.878259 L 25.672618 14.375516 L 26.268385 16.221611 L 27.060128 19.180849 L 28.451558 24.538834 L 29.247221 26.937581 L 29.842988 28.352528 L 30.638651 29.853704 L 31.434313 31.03348 L 32.226057 32.001601 L 33.221615 33.016757 L 34.413149 34.05543 L 35.80066 35.133299 L 37.787857 36.544326 L 45.536749 41.949345 L 51.294525 46.049164 L 53.481618 47.487628 L 55.26892 48.577255 L 57.056221 49.576733 L 58.643627 50.380235 L 60.234952 51.109265 L 61.626382 51.681516 L 63.013893 52.194973 L 64.401403 52.653557 L 65.796752 53.065106 L 67.188182 53.425702 L 68.379717 53.700069 L 69.571251 53.943079 L 70.762785 54.158653 L 71.95432 54.34679 L 73.145854 54.51141 L 74.337388 54.656432 L 75.528923 54.777937 L 76.520561 54.864166 L 77.5122 54.942557 L 78.503839 55.005269 L 79.503317 55.060142 L 80.29506 55.095418 L 81.090723 55.126774 L 81.886385 55.150291 L 82.678129 55.169889 L 83.273896 55.181648 L 84.46543 55.197326 L 84.865221 55.197326 L 85.261093 55.201245 L 85.85686 55.201245 L 86.252732 55.197326 L 86.652523 55.197326 L 87.048394 55.193406 L 88.835696 55.169889 L 89.631359 55.150291 L 90.423102 55.130694 L 91.41866 55.099338 L 92.410299 55.064062 L 93.401938 55.024867 L 94.597391 54.969993 L 95.788926 54.907281 L 97.180356 54.824971 L 98.567866 54.734822 L 99.959296 54.636834 L 101.550621 54.50749 L 103.138027 54.370307 L 104.729353 54.217445 L 106.316759 54.048906 L 107.904165 53.864689 L 109.491571 53.664793 L 111.082896 53.449219 L 112.670302 53.214048 L 114.461523 52.924004 L 116.248824 52.606522 L 118.036126 52.257685 L 119.823427 51.877492 L 121.410833 51.505137 L 123.002159 51.105346 L 124.589565 50.66636 L 126.18089 50.192098 L 127.768296 49.674721 L 129.355702 49.10639 L 130.947027 48.487106 L 132.534433 47.805109 L 134.125759 47.056481 L 135.713165 46.229462 L 137.300571 45.312294 L 138.891896 44.297138 L 140.479302 43.168316 L 142.070628 41.921909 L 143.654114 40.550076 L 145.445335 38.868602 L 147.632428 36.657992 L 148.823962 35.415504 " transform="matrix(0.996614,0,0,-0.996614,92.96118,149.14325)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="109.910597" y="175.59339"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="115.568067" y="175.59339"/>
<use xlink:href="#glyph5-3" x="119.457204" y="175.59339"/>
<use xlink:href="#glyph5-4" x="123.870586" y="175.59339"/>
<use xlink:href="#glyph5-5" x="129.111043" y="175.59339"/>
<use xlink:href="#glyph5-3" x="134.626529" y="175.59339"/>
<use xlink:href="#glyph5-6" x="139.039911" y="175.59339"/>
<use xlink:href="#glyph5-7" x="144.555398" y="175.59339"/>
<use xlink:href="#glyph5-8" x="148.96878" y="175.59339"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-9" x="157.51555" y="175.59339"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="160.273498" y="175.59339"/>
<use xlink:href="#glyph0-6" x="167.720149" y="175.59339"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-10" x="172.133207" y="175.59339"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-15" x="11.251774" y="145.5375"/>
<use xlink:href="#glyph2-16" x="11.251774" y="138.780905"/>
<use xlink:href="#glyph2-2" x="11.251774" y="133.265418"/>
<use xlink:href="#glyph2-17" x="11.251774" y="128.300984"/>
<use xlink:href="#glyph2-9" x="11.251774" y="124.384045"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-10" x="11.251774" y="116.66435"/>
<use xlink:href="#glyph2-8" x="11.251774" y="113.906111"/>
<use xlink:href="#glyph2-9" x="11.251774" y="108.390624"/>
<use xlink:href="#glyph2-3" x="11.251774" y="103.977242"/>
<use xlink:href="#glyph2-14" x="11.251774" y="99.012808"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 60 KiB

269
tikz/figs/bode_Kfb.tex Normal file
View File

@ -0,0 +1,269 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\setlength\fwidth{7cm}
\setlength\fheight{5cm}
\begin{tikzpicture}
\begin{axis}[%
width=\fwidth,
height=0.55\fheight,
at={(0,0.45\fheight)},
xmode=log,
xmin=0.1,
xmax=1000,
xminorticks=true,
xticklabels={{}},
xminorticks=true,
ymode=log,
ymin=5e3,
ymax=1e8,
yminorticks=true,
ylabel={Magnitude [m/N]},
xminorgrids,
yminorgrids
]
\addplot [color=mycolor1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 43470401.5635197\\
0.140652724210524 22406118.4606333\\
0.225088005209546 8841324.97190729\\
0.402350554886929 2759551.18650976\\
0.632121847581245 1099567.22973382\\
0.864842327573171 571911.118634823\\
1.08902296226373 348238.834272102\\
1.30953502048267 230413.727914817\\
1.5176833902834 162916.926170144\\
1.72678090388436 118180.38299581\\
1.92879150802078 88053.4489201859\\
2.11507282486879 67600.1593337435\\
2.29805998875885 52196.4252310799\\
2.47396410088682 40551.3529146903\\
2.63889081445751 31757.3998192352\\
2.81481236050758 24156.5912162984\\
2.97490754721444 18564.407716775\\
3.20262069365765 12562.3365624369\\
3.35371015200293 9903.39866696113\\
3.44776405473447 8860.70330148828\\
3.51192753045073 8439.59373188045\\
3.54445567397044 8315.55083857103\\
3.57728509936788 8248.9891824612\\
3.61041859717334 8238.41528485595\\
3.64385898376354 8281.29862424784\\
3.71167181947577 8513.11679296013\\
3.78074666359936 8910.71745272145\\
3.92277675892772 10060.0006461556\\
4.3016357581068 13826.7614234338\\
4.50457325175946 15807.7747001244\\
4.76077523022638 18134.5901302594\\
5.03154894503805 20378.4927614313\\
5.31772317785097 22542.0240862418\\
5.67222897164455 24991.3110735361\\
6.10640754223204 27751.7418918669\\
6.75818116816111 31647.5291959361\\
8.35452805838285 41529.1212967548\\
9.1614024571385 47350.5265741091\\
10.0462042134682 54704.5281630713\\
11.0164594963366 64124.7677611584\\
12.0804213467733 76239.9049999386\\
13.4936714058831 95386.2088374544\\
15.3527502878042 126058.172628886\\
18.292045048463 187487.904152082\\
36.8609536217215 934555.32079059\\
47.7176094893875 1644338.09622994\\
62.9214610961035 2961671.49590373\\
87.6885609458744 5900456.23627333\\
136.500780654601 14541991.6515201\\
275.067600790807 59592410.0067978\\
359.381366380463 101766885.625809\\
};
\end{axis}
\begin{axis}[%
width=\fwidth,
height=0.4\fheight,
at={(0,0)},
xmode=log,
xmin=0.1,
xmax=1000,
xminorticks=true,
xlabel={Frequency [$\si{\hertz}$]},
ymin=-180,
ymax=180,
ytick={-180, -90, 0, 90, 180},
ylabel={Phase [deg]},
xminorgrids
]
\addplot [color=mycolor1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 -155.364714507098\\
0.108651577465251 -157.046895384675\\
0.118051652856881 -158.584357803454\\
0.128264983052803 -159.984829386242\\
0.138082976521811 -161.120662469234\\
0.148652484499784 -162.158997873773\\
0.160031031373875 -163.104451315672\\
0.17228054471314 -163.961327712226\\
0.185467692308466 -164.73360707904\\
0.19783188827842 -165.342829955295\\
0.211020342856859 -165.892308734626\\
0.22508800520954 -166.384071523065\\
0.240093487686069 -166.81994455208\\
0.253749037973356 -167.1503027674\\
0.268181260945295 -167.4416997254\\
0.283434330615137 -167.69493021744\\
0.296805860866562 -167.877298293101\\
0.310808217386903 -168.033977785229\\
0.325471160553176 -168.165253579362\\
0.337698031082518 -168.252140784466\\
0.350384224529072 -168.323012215744\\
0.363546996129332 -168.377939090849\\
0.373742574239103 -168.408700768469\\
0.384224084605498 -168.430533609922\\
0.391374560198028 -168.440131065105\\
0.398658107358057 -168.445762067993\\
0.406077202570047 -168.447424767234\\
0.413634368406335 -168.445115830121\\
0.421332174384734 -168.438830428563\\
0.429173237842218 -168.428562223998\\
0.43716022482485 -168.414303351192\\
0.44942026621191 -168.385411529502\\
0.462024137175122 -168.347480797508\\
0.474981480322836 -168.300464719448\\
0.492824957004062 -168.223548151042\\
0.511338753841437 -168.130228710593\\
0.530548052536955 -168.020325903023\\
0.555577622239876 -167.859305809794\\
0.58178800743451 -167.671571713614\\
0.609234915240079 -167.456573441619\\
0.643885742724037 -167.161691937189\\
0.680507369673503 -166.825379829582\\
0.719211887222132 -166.446184720641\\
0.760117761795532 -166.022438813388\\
0.81079098067315 -165.469202597187\\
0.864842327573189 -164.849226494558\\
0.922497005259214 -164.158439265126\\
0.983995229627797 -163.392091955358\\
1.04959323055824 -162.544626583723\\
1.11956431948387 -161.609503572351\\
1.1942000281335 -160.578971747741\\
1.27381132318649 -159.443756915773\\
1.3587299019027 -158.192632667642\\
1.44930957412626 -156.81181708356\\
1.54592773641949 -155.284105754867\\
1.64898694447104 -153.587594567159\\
1.75891659032778 -151.693744713082\\
1.87617469143913 -149.564356623681\\
1.98288394912704 -147.512246613038\\
2.0956623994805 -145.202606833263\\
2.21485523372639 -142.570787084104\\
2.31934505927442 -140.064916106496\\
2.4287643824604 -137.191964459757\\
2.54334576130472 -133.836807389325\\
2.63889081445755 -130.691255387186\\
2.73802517792786 -126.994823196645\\
2.84088369018327 -122.552004496845\\
2.94760625512479 -117.067590923778\\
3.03027108286649 -112.006977633487\\
3.11525422355555 -105.839500800734\\
3.20262069365769 -98.2098344235929\\
3.29243733300778 -88.7057129662501\\
3.38477285594596 -76.9948766579058\\
3.51192753045066 -58.191856460893\\
3.74605003274907 -24.1759283952212\\
3.8867766908927 -8.9549654600952\\
3.99578030189527 0.05424674730898\\
4.14588849683285 9.57226472391096\\
4.30163575810668 17.0676193959614\\
4.46323392671051 23.2117407770243\\
4.6737951079925 29.6565710826308\\
4.93962174387827 36.2665264048853\\
5.26892142135084 43.0942325055928\\
5.7777901179705 52.0572530148357\\
8.27785696619849 86.3727118716517\\
10.8151870255226 112.406946070662\\
11.9695570235905 121.552177865682\\
13.0051125217337 128.478501914037\\
14.1302599059955 134.819669591624\\
15.2118551798608 139.932375678172\\
16.3762407452172 144.544746230039\\
17.4679621512724 148.176911238822\\
18.6324631193151 151.445726911439\\
19.8745954958102 154.36855666213\\
21.1995345753606 156.965517430503\\
22.6128006633721 159.258251071286\\
23.8989256623109 160.998181225102\\
25.2582002696278 162.544964165632\\
26.6947849403426 163.912362292937\\
28.2130767593954 165.113720376764\\
29.8177229001969 166.161840342236\\
31.5136348486643 167.068888278142\\
33.3060034362469 167.846326749679\\
34.8772747481423 168.402936323835\\
36.5226736430817 168.882777608427\\
38.2456972246693 169.291252815606\\
40.0500075787373 169.633378481628\\
41.5545533471895 169.862433154403\\
43.1156199031825 170.054192980089\\
44.7353305449843 170.210701908133\\
46.4158883361268 170.333854209\\
47.7176094893859 170.40538524839\\
49.0558370636517 170.459824579316\\
50.4315948717143 170.497813484418\\
51.3701354335138 170.514297645932\\
52.3261423948667 170.523904524208\\
53.2999408084406 170.526793188252\\
53.7936150398065 170.525765744081\\
54.794723369002 170.518858182568\\
55.8144624945484 170.505596032206\\
56.8531791387359 170.486111558014\\
58.4476113163379 170.445489432615\\
60.0867589171979 170.391538567918\\
61.7718759733854 170.324616137437\\
64.0924401935642 170.215762940957\\
66.50018030431 170.085099181676\\
69.6374473062844 169.891975079658\\
72.9227205872842 169.666607449389\\
76.3629826128223 169.409719163214\\
80.7062014114933 169.060571856472\\
85.2964449974123 168.66733699213\\
90.9827289445557 168.153086563827\\
97.0480887738009 167.578826478813\\
103.51779556302 166.943723901156\\
111.441525146678 166.141606661108\\
119.971773543585 165.255344346467\\
129.154966501489 164.281229865536\\
139.041083409004 163.21473404092\\
149.683929307729 162.050505533379\\
161.141427725301 160.782352536145\\
173.475935923388 159.403205311421\\
186.754584276109 157.905057879654\\
202.911801804663 156.066120624088\\
220.466873523944 154.050554173503\\
239.540735872084 151.841722750434\\
260.264788196906 149.420577135854\\
280.186655645918 147.072566796613\\
301.63343472593 144.521878314074\\
324.721849207315 141.74828535307\\
349.577557436321 138.728468220433\\
376.335836228661 135.435365683924\\
405.142317111462 131.837387817798\\
436.153778920815 127.897493655173\\
469.539001068009 123.572179690684\\
505.479682119114 118.810514287571\\
544.1714286866 113.553525472907\\
585.82482001525 107.734558232872\\
630.666554056761 101.281715619792\\
678.940681269615 94.1241711336394\\
730.909932860277 86.2047189454912\\
786.8571506937 77.500553662828\\
854.93270662683 66.8230752479042\\
946.184819472219 52.7908656572718\\
1000 44.8958338224281\\
};
\end{axis}
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,325 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="253.14pt" height="178.4pt" viewBox="0 0 253.14 178.4" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.34375 C 2.921875 -6.59375 2.921875 -6.609375 2.6875 -6.609375 C 2.078125 -5.96875 1.203125 -5.96875 0.890625 -5.96875 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.921875 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.703125 -6.453125 2.890625 -6.609375 2.484375 -6.609375 C 1.890625 -6.609375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.4375 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.296875 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.921875 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.296875 C 1.203125 -3.921875 1.203125 -4.578125 1.296875 -5.125 C 1.484375 -6.296875 2.21875 -6.390625 2.46875 -6.390625 C 2.796875 -6.390625 3.453125 -6.21875 3.640625 -5.234375 C 3.734375 -4.671875 3.734375 -3.921875 3.734375 -3.296875 Z M 3.734375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.453125 -1.71875 L 4.203125 -1.71875 C 4.15625 -1.421875 4.09375 -0.984375 3.984375 -0.84375 C 3.921875 -0.765625 3.265625 -0.765625 3.046875 -0.765625 L 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.453125 -3.6875 4.453125 -4.6875 C 4.453125 -5.8125 3.5625 -6.609375 2.34375 -6.609375 C 1.234375 -6.609375 0.5 -5.6875 0.5 -4.8125 C 0.5 -4.25 0.984375 -4.25 1.015625 -4.25 C 1.1875 -4.25 1.53125 -4.375 1.53125 -4.78125 C 1.53125 -5.046875 1.359375 -5.296875 1.015625 -5.296875 C 0.9375 -5.296875 0.90625 -5.296875 0.890625 -5.28125 C 1.109375 -5.9375 1.640625 -6.296875 2.21875 -6.296875 C 3.125 -6.296875 3.546875 -5.5 3.546875 -4.6875 C 3.546875 -3.890625 3.0625 -3.109375 2.515625 -2.484375 L 0.609375 -0.359375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.171875 0 Z M 4.453125 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.8125 -6.390625 L 2.40625 -6.390625 C 1.1875 -6.390625 1.171875 -6.515625 1.125 -6.703125 L 0.890625 -6.703125 L 0.5625 -4.65625 L 0.796875 -4.65625 C 0.828125 -4.828125 0.921875 -5.453125 1.046875 -5.5625 C 1.125 -5.625 1.890625 -5.625 2.03125 -5.625 L 4.078125 -5.625 L 2.96875 -4.0625 C 2.078125 -2.71875 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.203125 0.21875 C 2.65625 0.21875 2.65625 -0.234375 2.65625 -0.328125 L 2.65625 -0.828125 C 2.65625 -1.375 2.6875 -1.921875 2.765625 -2.453125 C 2.8125 -2.6875 2.953125 -3.546875 3.390625 -4.15625 L 4.71875 -6.046875 C 4.8125 -6.15625 4.8125 -6.1875 4.8125 -6.390625 Z M 4.8125 -6.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.53125 -1.671875 C 4.53125 -2.03125 4.421875 -2.46875 4.046875 -2.890625 C 3.859375 -3.09375 3.703125 -3.1875 3.0625 -3.59375 C 3.78125 -3.953125 4.265625 -4.46875 4.265625 -5.125 C 4.265625 -6.046875 3.390625 -6.609375 2.484375 -6.609375 C 1.484375 -6.609375 0.6875 -5.875 0.6875 -4.953125 C 0.6875 -4.765625 0.703125 -4.328125 1.125 -3.859375 C 1.234375 -3.734375 1.59375 -3.5 1.84375 -3.328125 C 1.265625 -3.03125 0.421875 -2.484375 0.421875 -1.5 C 0.421875 -0.453125 1.421875 0.21875 2.46875 0.21875 C 3.59375 0.21875 4.53125 -0.609375 4.53125 -1.671875 Z M 3.828125 -5.125 C 3.828125 -4.5625 3.4375 -4.09375 2.84375 -3.734375 L 1.625 -4.53125 C 1.15625 -4.828125 1.125 -5.171875 1.125 -5.34375 C 1.125 -5.9375 1.765625 -6.359375 2.46875 -6.359375 C 3.1875 -6.359375 3.828125 -5.84375 3.828125 -5.125 Z M 4.03125 -1.3125 C 4.03125 -0.578125 3.296875 -0.0625 2.484375 -0.0625 C 1.625 -0.0625 0.90625 -0.671875 0.90625 -1.5 C 0.90625 -2.078125 1.234375 -2.703125 2.078125 -3.171875 L 3.296875 -2.40625 C 3.578125 -2.21875 4.03125 -1.921875 4.03125 -1.3125 Z M 4.03125 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.53125 -3.265625 C 4.53125 -5.9375 3.390625 -6.609375 2.515625 -6.609375 C 1.96875 -6.609375 1.484375 -6.421875 1.046875 -5.984375 C 0.640625 -5.53125 0.421875 -5.125 0.421875 -4.375 C 0.421875 -3.140625 1.296875 -2.15625 2.40625 -2.15625 C 3 -2.15625 3.40625 -2.578125 3.640625 -3.15625 L 3.640625 -2.84375 C 3.640625 -0.515625 2.609375 -0.0625 2.03125 -0.0625 C 1.859375 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.234375 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.328125 0.21875 4.53125 -1.125 4.53125 -3.265625 Z M 3.625 -4.171875 C 3.625 -3.359375 3.28125 -2.390625 2.40625 -2.390625 C 2.25 -2.390625 1.796875 -2.390625 1.484375 -3.015625 C 1.3125 -3.390625 1.3125 -3.875 1.3125 -4.359375 C 1.3125 -4.90625 1.3125 -5.375 1.515625 -5.734375 C 1.78125 -6.234375 2.15625 -6.359375 2.515625 -6.359375 C 2.96875 -6.359375 3.296875 -6.015625 3.46875 -5.578125 C 3.578125 -5.265625 3.625 -4.640625 3.625 -4.171875 Z M 3.625 -4.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 7.109375 0 L 7.109375 -0.3125 L 6.859375 -0.3125 C 6.109375 -0.3125 6.078125 -0.421875 6.078125 -0.78125 L 6.078125 -6 C 6.078125 -6.359375 6.109375 -6.46875 6.859375 -6.46875 L 7.109375 -6.46875 L 7.109375 -6.78125 C 6.75 -6.75 6.015625 -6.75 5.640625 -6.75 C 5.265625 -6.75 4.53125 -6.75 4.171875 -6.78125 L 4.171875 -6.46875 L 4.421875 -6.46875 C 5.171875 -6.46875 5.203125 -6.359375 5.203125 -6 L 5.203125 -3.6875 L 2.234375 -3.6875 L 2.234375 -6 C 2.234375 -6.359375 2.25 -6.46875 3.015625 -6.46875 L 3.25 -6.46875 L 3.25 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.34375 -6.359375 1.34375 -6 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.375 L 5.203125 -3.375 L 5.203125 -0.78125 C 5.203125 -0.421875 5.171875 -0.3125 4.421875 -0.3125 L 4.171875 -0.3125 L 4.171875 0 C 4.53125 -0.03125 5.265625 -0.03125 5.640625 -0.03125 C 6.015625 -0.03125 6.75 -0.03125 7.109375 0 Z M 7.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 3.984375 -1.859375 L 3.734375 -1.859375 C 3.640625 -0.6875 3.4375 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.875 -3.984375 C 3.953125 -4.09375 3.953125 -4.109375 3.953125 -4.140625 C 3.953125 -4.28125 3.875 -4.28125 3.703125 -4.28125 L 0.53125 -4.28125 L 0.421875 -2.671875 L 0.671875 -2.671875 C 0.71875 -3.6875 0.90625 -4.0625 2 -4.0625 L 3.140625 -4.0625 L 0.359375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.8125 0 Z M 3.984375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 0 -8.71875 L -0.3125 -8.71875 L -0.3125 -8.484375 C -0.3125 -7.71875 -0.421875 -7.703125 -0.78125 -7.703125 L -6 -7.703125 C -6.359375 -7.703125 -6.46875 -7.71875 -6.46875 -8.484375 L -6.46875 -8.71875 L -6.78125 -8.71875 L -6.78125 -7.046875 C -6.78125 -6.78125 -6.765625 -6.78125 -6.59375 -6.71875 L -1 -4.546875 L -6.5625 -2.390625 C -6.78125 -2.296875 -6.78125 -2.265625 -6.78125 -2.046875 L -6.78125 -0.359375 L -6.46875 -0.359375 L -6.46875 -0.609375 C -6.46875 -1.375 -6.359375 -1.390625 -6 -1.390625 L -1.046875 -1.390625 C -0.78125 -1.390625 -0.3125 -1.390625 -0.3125 -0.359375 L 0 -0.359375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.78125 -1.671875 -1.046875 -1.671875 L -6.390625 -1.671875 L -0.21875 -4.0625 C -0.09375 -4.125 0 -4.171875 0 -4.265625 C 0 -4.375 -0.078125 -4.40625 -0.1875 -4.4375 L -6.46875 -6.890625 L -0.78125 -6.890625 C -0.421875 -6.890625 -0.3125 -6.875 -0.3125 -6.109375 L -0.3125 -5.875 L 0 -5.875 C -0.03125 -6.234375 -0.03125 -6.921875 -0.03125 -7.296875 C -0.03125 -7.6875 -0.03125 -8.359375 0 -8.71875 Z M 0 -8.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M -0.890625 -4.796875 L -1.4375 -4.796875 L -1.4375 -4.546875 L -0.890625 -4.546875 C -0.3125 -4.546875 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.734375 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.90625 -3.46875 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.109375 C -4.4375 -1.296875 -3.984375 -0.609375 -3.328125 -0.609375 C -3.03125 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.0625 -1.515625 -3.3125 -1.515625 C -3.4375 -1.515625 -3.765625 -1.46875 -3.765625 -1.015625 C -4.125 -1.28125 -4.234375 -1.765625 -4.234375 -2.078125 C -4.234375 -2.5625 -3.84375 -3.140625 -2.953125 -3.140625 L -2.59375 -3.140625 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.25 0.0625 -3.515625 0.0625 -3.984375 C 0.0625 -4.1875 -0.078125 -4.796875 -0.890625 -4.796875 Z M -1.390625 -3.140625 C -0.453125 -3.140625 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.328125 -1.5 -2.375 -3.140625 Z M -1.390625 -3.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M -4.015625 -4.8125 C -4.171875 -4.8125 -4.5 -4.6875 -4.5 -4.3125 C -4.5 -4.109375 -4.4375 -3.671875 -4.03125 -3.25 C -4.359375 -2.84375 -4.390625 -2.421875 -4.390625 -2.203125 C -4.390625 -1.28125 -3.703125 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.921875 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.890625 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.03125 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.328125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.59375 -1.046875 -1.78125 -1.21875 C -1.515625 -1.609375 -1.484375 -2.015625 -1.484375 -2.203125 C -1.484375 -3.125 -2.15625 -3.8125 -2.921875 -3.8125 C -3.296875 -3.8125 -3.65625 -3.65625 -3.890625 -3.40625 C -4.234375 -3.765625 -4.28125 -4.125 -4.28125 -4.296875 C -4.28125 -4.296875 -4.28125 -4.359375 -4.265625 -4.390625 C -4.234375 -4.28125 -4.125 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.53125 C -3.703125 -4.625 -3.78125 -4.8125 -4.015625 -4.8125 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.0625 -2.109375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.703125 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.515625 -1.34375 -3.765625 -1.5 C -3.875 -1.578125 -4.15625 -1.8125 -4.15625 -2.203125 C -4.15625 -3.0625 -3.171875 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.484375 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.390625 -1.75 L -4.28125 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -6 -1.90625 C -6.265625 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -6 -0.84375 C -5.71875 -0.84375 -5.46875 -1.078125 -5.46875 -1.375 C -5.46875 -1.703125 -5.75 -1.90625 -6 -1.90625 Z M -6 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M -1.234375 -3.296875 L -1.796875 -3.296875 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.140625 L -4.28125 -3.140625 L -4.28125 -1.71875 L -6.109375 -1.71875 L -6.109375 -1.46875 C -5.28125 -1.453125 -4.234375 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.296875 -1.234375 -3.296875 Z M -1.234375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.609375 -0.375 -4.53125 -0.859375 -4.53125 L -4.390625 -4.53125 L -4.28125 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.765625 -3.90625 -3.84375 -3.40625 -3.84375 L -1.640625 -3.84375 C -0.78125 -3.84375 -0.109375 -3.375 -0.109375 -2.65625 C -0.109375 -1.8125 -0.578125 -1.78125 -1.09375 -1.78125 L -4.390625 -1.78125 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.0625 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.59375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.875 L 0.109375 -3.875 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 0 -5.234375 L -0.3125 -5.234375 C -0.3125 -4.53125 -0.375 -4.453125 -0.859375 -4.453125 L -6.890625 -4.453125 L -6.78125 -3.03125 L -6.46875 -3.03125 C -6.46875 -3.71875 -6.40625 -3.796875 -5.90625 -3.796875 L -3.765625 -3.796875 C -4.125 -3.515625 -4.390625 -3.078125 -4.390625 -2.546875 C -4.390625 -1.375 -3.40625 -0.34375 -2.140625 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.515625 -0.546875 -3.765625 L 0.109375 -3.765625 Z M -1.171875 -3.765625 C -0.984375 -3.765625 -0.96875 -3.765625 -0.796875 -3.65625 C -0.328125 -3.359375 -0.109375 -2.921875 -0.109375 -2.484375 C -0.109375 -2.046875 -0.359375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.484375 -1.15625 -3.078125 -1.1875 -3.53125 -1.46875 C -3.84375 -1.671875 -4.171875 -2.046875 -4.171875 -2.59375 C -4.171875 -2.9375 -4.015625 -3.359375 -3.578125 -3.65625 C -3.40625 -3.765625 -3.390625 -3.765625 -3.203125 -3.765625 Z M -1.171875 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M -1.1875 -4.125 C -1.28125 -4.125 -1.296875 -4.03125 -1.296875 -3.984375 C -1.296875 -3.90625 -1.234375 -3.875 -1.15625 -3.859375 C -0.140625 -3.515625 -0.140625 -2.625 -0.140625 -2.515625 C -0.140625 -2.03125 -0.4375 -1.625 -0.796875 -1.40625 C -1.28125 -1.09375 -1.9375 -1.09375 -2.296875 -1.09375 L -2.296875 -3.875 C -2.296875 -4.09375 -2.296875 -4.125 -2.5 -4.125 C -3.484375 -4.125 -4.4375 -3.578125 -4.4375 -2.34375 C -4.4375 -1.1875 -3.421875 -0.28125 -2.1875 -0.28125 C -0.859375 -0.28125 0.109375 -1.3125 0.109375 -2.453125 C 0.109375 -3.671875 -0.984375 -4.125 -1.1875 -4.125 Z M -2.5 -3.46875 L -2.5 -1.109375 C -3.984375 -1.171875 -4.234375 -2 -4.234375 -2.34375 C -4.234375 -3.359375 -2.890625 -3.46875 -2.5 -3.46875 Z M -2.5 -3.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.484375 -2.53125 L 2.078125 -2.53125 L 2.078125 -1.5625 L -7.046875 -1.5625 L -7.046875 -2.53125 L -7.4375 -2.53125 L -7.4375 -1.171875 L 2.484375 -1.171875 Z M 2.484375 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 0 -8.0625 L -0.3125 -8.0625 C -0.3125 -7.546875 -0.3125 -7.296875 -0.609375 -7.296875 L -2.5 -7.296875 C -3.359375 -7.296875 -3.65625 -7.296875 -4.015625 -6.984375 C -4.1875 -6.84375 -4.390625 -6.515625 -4.390625 -5.9375 C -4.390625 -5.109375 -3.796875 -4.671875 -3.40625 -4.5 C -4.28125 -4.359375 -4.390625 -3.625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 L 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.640625 -0.3125 -4.53125 -0.75 -4.53125 L -2.578125 -4.53125 C -3.609375 -4.53125 -4.171875 -5.234375 -4.171875 -5.875 C -4.171875 -6.5 -3.625 -6.609375 -3.0625 -6.609375 L -0.75 -6.609375 C -0.3125 -6.609375 -0.3125 -6.5 -0.3125 -5.828125 L 0 -5.828125 L -0.03125 -6.953125 Z M 0 -8.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M -7.25 -4.390625 C -7.359375 -4.390625 -7.4375 -4.3125 -7.4375 -4.203125 C -7.4375 -4.0625 -7.34375 -4.015625 -7.25 -3.984375 L 2.109375 -0.609375 C 2.234375 -0.5625 2.28125 -0.5625 2.28125 -0.5625 C 2.390625 -0.5625 2.484375 -0.640625 2.484375 -0.75 C 2.484375 -0.890625 2.375 -0.9375 2.28125 -0.96875 L -7.0625 -4.34375 C -7.1875 -4.390625 -7.25 -4.390625 -7.25 -4.390625 Z M -7.25 -4.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M -6.46875 -7.109375 L -6.78125 -7.109375 L -6.75 -5.9375 L -6.78125 -4.78125 L -6.46875 -4.78125 C -6.46875 -5.796875 -6 -5.796875 -5.734375 -5.796875 L -1.5 -5.796875 L -6.640625 -2.296875 C -6.765625 -2.21875 -6.78125 -2.203125 -6.78125 -2.015625 L -6.78125 -0.328125 L -6.46875 -0.328125 L -6.46875 -0.609375 C -6.46875 -0.765625 -6.453125 -0.96875 -6.453125 -1.109375 C -6.421875 -1.34375 -6.40625 -1.34375 -6.21875 -1.34375 L -1.046875 -1.34375 C -0.78125 -1.34375 -0.3125 -1.34375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.484375 L 0 -2.65625 L -0.3125 -2.65625 C -0.3125 -1.625 -0.78125 -1.625 -1.046875 -1.625 L -6.203125 -1.625 C -6.15625 -1.671875 -6.140625 -1.6875 -6.078125 -1.71875 L -0.125 -5.78125 C -0.015625 -5.859375 0 -5.875 0 -5.9375 C 0 -6.078125 -0.0625 -6.078125 -0.265625 -6.078125 L -5.734375 -6.078125 C -6 -6.078125 -6.46875 -6.078125 -6.46875 -7.109375 Z M -6.46875 -7.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 2.484375 -1.578125 L -7.4375 -1.578125 L -7.4375 -0.21875 L -7.046875 -0.21875 L -7.046875 -1.1875 L 2.078125 -1.1875 L 2.078125 -0.21875 L 2.484375 -0.21875 Z M 2.484375 -1.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M -4.9375 -6.1875 C -5.90625 -6.1875 -6.78125 -5.203125 -6.78125 -3.84375 L -6.78125 -0.34375 L -6.46875 -0.34375 L -6.46875 -0.578125 C -6.46875 -1.34375 -6.359375 -1.375 -6 -1.375 L -0.78125 -1.375 C -0.421875 -1.375 -0.3125 -1.34375 -0.3125 -0.578125 L -0.3125 -0.34375 L 0 -0.34375 C -0.03125 -0.6875 -0.03125 -1.421875 -0.03125 -1.8125 C -0.03125 -2.1875 -0.03125 -2.921875 0 -3.28125 L -0.3125 -3.28125 L -0.3125 -3.03125 C -0.3125 -2.265625 -0.421875 -2.25 -0.78125 -2.25 L -3.140625 -2.25 L -3.140625 -3.921875 C -3.140625 -5.125 -3.9375 -6.1875 -4.9375 -6.1875 Z M -4.9375 -5.171875 C -4.46875 -5.171875 -3.390625 -5.171875 -3.390625 -3.59375 L -3.390625 -2.21875 L -6.078125 -2.21875 C -6.40625 -2.21875 -6.46875 -2.25 -6.46875 -2.703125 L -6.46875 -3.59375 C -6.46875 -5.171875 -5.421875 -5.171875 -4.9375 -5.171875 Z M -4.9375 -5.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-16">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.34375 -3.796875 -1.921875 -3.4375 -1.75 L -6.890625 -1.75 L -6.78125 -0.3125 L -6.46875 -0.3125 C -6.46875 -1.015625 -6.40625 -1.09375 -5.90625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-17">
<path style="stroke:none;" d="M -1.265625 -3.578125 C -1.796875 -3.578125 -2.09375 -3.28125 -2.21875 -3.15625 C -2.53125 -2.828125 -2.609375 -2.4375 -2.6875 -2.03125 C -2.796875 -1.46875 -2.921875 -0.796875 -3.5 -0.796875 C -3.84375 -0.796875 -4.25 -1.0625 -4.25 -1.921875 C -4.25 -3 -3.359375 -3.0625 -3.0625 -3.078125 C -2.96875 -3.078125 -2.96875 -3.1875 -2.96875 -3.1875 C -2.96875 -3.328125 -3.015625 -3.328125 -3.203125 -3.328125 L -4.203125 -3.328125 C -4.375 -3.328125 -4.4375 -3.328125 -4.4375 -3.21875 C -4.4375 -3.171875 -4.4375 -3.140625 -4.328125 -3.015625 C -4.28125 -2.984375 -4.203125 -2.890625 -4.171875 -2.84375 C -4.4375 -2.46875 -4.4375 -2.0625 -4.4375 -1.921875 C -4.4375 -0.703125 -3.78125 -0.328125 -3.21875 -0.328125 C -2.875 -0.328125 -2.59375 -0.484375 -2.375 -0.75 C -2.125 -1.078125 -2.0625 -1.34375 -1.921875 -2.0625 C -1.890625 -2.28125 -1.71875 -3.09375 -1.015625 -3.09375 C -0.5 -3.09375 -0.109375 -2.75 -0.109375 -1.96875 C -0.109375 -1.140625 -0.671875 -0.78125 -1.515625 -0.59375 C -1.640625 -0.5625 -1.6875 -0.5625 -1.6875 -0.453125 C -1.6875 -0.328125 -1.625 -0.328125 -1.4375 -0.328125 L -0.125 -0.328125 C 0.046875 -0.328125 0.109375 -0.328125 0.109375 -0.4375 C 0.109375 -0.484375 0.09375 -0.5 -0.09375 -0.6875 C -0.109375 -0.703125 -0.125 -0.703125 -0.3125 -0.890625 C 0.09375 -1.3125 0.109375 -1.765625 0.109375 -1.96875 C 0.109375 -3.109375 -0.5625 -3.578125 -1.265625 -3.578125 Z M -1.265625 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.671875 6.703125 -2.671875 6.5625 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 6.046875 -4.515625 L 5.78125 -6.75 L 0.328125 -6.75 L 0.328125 -6.4375 L 0.5625 -6.4375 C 1.328125 -6.4375 1.34375 -6.328125 1.34375 -5.96875 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.828125 -0.03125 C 2.25 -0.03125 3.140625 -0.03125 3.5 0 L 3.5 -0.3125 L 3.171875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.21875 L 3.078125 -3.21875 C 4.03125 -3.21875 4.140625 -2.90625 4.140625 -2.0625 L 4.390625 -2.0625 L 4.390625 -4.6875 L 4.140625 -4.6875 C 4.140625 -3.859375 4.03125 -3.53125 3.078125 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.046875 C 2.234375 -6.375 2.25 -6.4375 2.71875 -6.4375 L 3.90625 -6.4375 C 5.390625 -6.4375 5.640625 -5.890625 5.796875 -4.515625 Z M 6.046875 -4.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.71875 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.953125 -4.140625 2.765625 -4.03125 2.765625 -3.765625 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.46875 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.90625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.515625 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.125 -0.984375 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.359375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph5-4">
<path style="stroke:none;" d="M 5.234375 1.921875 L 5.234375 1.625 C 4.5625 1.625 4.453125 1.625 4.453125 1.171875 L 4.453125 -4.390625 L 4.234375 -4.390625 L 3.859375 -3.484375 C 3.734375 -3.765625 3.328125 -4.390625 2.53125 -4.390625 C 1.375 -4.390625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.140625 0.109375 3.546875 -0.3125 3.765625 -0.609375 L 3.765625 1.171875 C 3.765625 1.625 3.65625 1.625 3 1.625 L 3 1.921875 L 4.109375 1.890625 Z M 3.796875 -1.34375 C 3.796875 -1.03125 3.625 -0.75 3.40625 -0.515625 C 3.28125 -0.375 2.953125 -0.109375 2.484375 -0.109375 C 1.765625 -0.109375 1.15625 -0.984375 1.15625 -2.140625 C 1.15625 -3.3125 1.859375 -4.140625 2.59375 -4.140625 C 3.390625 -4.140625 3.796875 -3.28125 3.796875 -2.75 Z M 3.796875 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-5">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.90625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-6">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.359375 4.53125 -3.65625 4.234375 -4.015625 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.453125 -4.390625 2 -3.953125 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.609375 2.484375 -4.171875 3.109375 -4.171875 C 3.734375 -4.171875 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-7">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.90625 -1.28125 3.875 -1.234375 3.859375 -1.1875 C 3.578125 -0.265625 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.28125 -2.921875 3.546875 -2.921875 C 3.8125 -2.921875 4.015625 -3.078125 4.015625 -3.390625 C 4.015625 -4.0625 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-8">
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.25 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.734375 -3.953125 3.90625 -3.796875 3.90625 -3.546875 C 3.90625 -3.4375 3.890625 -3.421875 3.84375 -3.296875 L 2.84375 -0.859375 L 1.734375 -3.53125 C 1.703125 -3.625 1.671875 -3.671875 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.25 0.1875 -4.28125 L 0.1875 -3.96875 C 0.671875 -3.96875 0.859375 -3.96875 0.984375 -3.625 L 2.484375 0 L 2.234375 0.578125 C 2.015625 1.125 1.734375 1.8125 1.09375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.015625 1.375 1.015625 1.21875 C 1.015625 0.96875 0.828125 0.796875 0.609375 0.796875 C 0.40625 0.796875 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.09375 2.03125 C 1.71875 2.03125 2.140625 1.46875 2.375 0.90625 L 4.125 -3.328125 C 4.375 -3.953125 4.875 -3.96875 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.078125 L 1.5625 2.078125 L 1.5625 -7.046875 L 2.53125 -7.046875 L 2.53125 -7.4375 L 1.171875 -7.4375 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-10">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.4375 L 0.21875 -7.4375 L 0.21875 -7.046875 L 1.1875 -7.046875 L 1.1875 2.078125 L 0.21875 2.078125 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43.519531 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 43.519531 81.496094 Z M 43.519531 3.804688 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 43.519531 102 L 241.28125 102 L 241.28125 144 L 43.519531 144 Z M 43.519531 102 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 81.496094 L 241.28125 81.496094 L 241.28125 3.804688 L 43.519531 3.804688 Z M 43.519531 81.496094 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 38.978429 M -34.676244 -38.976921 L -34.676244 38.978429 M -25.939632 -38.976921 L -25.939632 38.978429 M -19.74287 -38.976921 L -19.74287 38.978429 M -14.933618 -38.976921 L -14.933618 38.978429 M -11.006258 -38.976921 L -11.006258 38.978429 M -7.682504 -38.976921 L -7.682504 38.978429 M -4.805576 -38.976921 L -4.805576 38.978429 M -2.269646 -38.976921 L -2.269646 38.978429 M -0.000243561 -38.976921 L -0.000243561 38.978429 M 14.933131 -38.976921 L 14.933131 38.978429 M 23.669743 -38.976921 L 23.669743 38.978429 M 29.866505 -38.976921 L 29.866505 38.978429 M 34.675757 -38.976921 L 34.675757 38.978429 M 38.603117 -38.976921 L 38.603117 38.978429 M 41.922951 -38.976921 L 41.922951 38.978429 M 44.799879 -38.976921 L 44.799879 38.978429 M 47.339729 -38.976921 L 47.339729 38.978429 M 49.609131 -38.976921 L 49.609131 38.978429 M 64.542506 -38.976921 L 64.542506 38.978429 M 73.275198 -38.976921 L 73.275198 38.978429 M 79.47588 -38.976921 L 79.47588 38.978429 M 84.281213 -38.976921 L 84.281213 38.978429 M 88.212492 -38.976921 L 88.212492 38.978429 M 91.532326 -38.976921 L 91.532326 38.978429 M 94.409254 -38.976921 L 94.409254 38.978429 M 96.945184 -38.976921 L 96.945184 38.978429 M 99.214587 -38.976921 L 99.214587 38.978429 M 114.147961 -38.976921 L 114.147961 38.978429 M 122.884573 -38.976921 L 122.884573 38.978429 M 129.081336 -38.976921 L 129.081336 38.978429 M 133.890588 -38.976921 L 133.890588 38.978429 M 137.817947 -38.976921 L 137.817947 38.978429 M 141.137782 -38.976921 L 141.137782 38.978429 M 144.01471 -38.976921 L 144.01471 38.978429 M 146.554559 -38.976921 L 146.554559 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 38.978429 M -0.000243561 -38.976921 L -0.000243561 38.978429 M 49.609131 -38.976921 L 49.609131 38.978429 M 99.214587 -38.976921 L 99.214587 38.978429 M 148.823962 -38.976921 L 148.823962 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L 148.823962 -38.976921 M -49.609619 -35.065239 L 148.823962 -35.065239 M -49.609619 -32.776239 L 148.823962 -32.776239 M -49.609619 -31.153557 L 148.823962 -31.153557 M -49.609619 -29.895391 L 148.823962 -29.895391 M -49.609619 -28.868477 L 148.823962 -28.868477 M -49.609619 -27.998343 L 148.823962 -27.998343 M -49.609619 -27.241876 L 148.823962 -27.241876 M -49.609619 -26.579477 L 148.823962 -26.579477 M -49.609619 -25.98371 L 148.823962 -25.98371 M -49.609619 -22.072028 L 148.823962 -22.072028 M -49.609619 -19.786947 L 148.823962 -19.786947 M -49.609619 -18.164265 L 148.823962 -18.164265 M -49.609619 -16.90218 L 148.823962 -16.90218 M -49.609619 -15.875265 L 148.823962 -15.875265 M -49.609619 -15.005132 L 148.823962 -15.005132 M -49.609619 -14.252584 L 148.823962 -14.252584 M -49.609619 -13.586265 L 148.823962 -13.586265 M -49.609619 -12.990498 L 148.823962 -12.990498 M -49.609619 -9.082736 L 148.823962 -9.082736 M -49.609619 -6.793736 L 148.823962 -6.793736 M -49.609619 -5.171054 L 148.823962 -5.171054 M -49.609619 -3.912888 L 148.823962 -3.912888 M -49.609619 -2.882054 L 148.823962 -2.882054 M -49.609619 -2.01192 L 148.823962 -2.01192 M -49.609619 -1.259372 L 148.823962 -1.259372 M -49.609619 -0.593054 L 148.823962 -0.593054 M -49.609619 -0.00120602 L 148.823962 -0.00120602 M -49.609619 3.910476 L 148.823962 3.910476 M -49.609619 6.199476 L 148.823962 6.199476 M -49.609619 7.822158 L 148.823962 7.822158 M -49.609619 9.080324 L 148.823962 9.080324 M -49.609619 10.111158 L 148.823962 10.111158 M -49.609619 10.981291 L 148.823962 10.981291 M -49.609619 11.733839 L 148.823962 11.733839 M -49.609619 12.396238 L 148.823962 12.396238 M -49.609619 12.992005 L 148.823962 12.992005 M -49.609619 16.903687 L 148.823962 16.903687 M -49.609619 19.192687 L 148.823962 19.192687 M -49.609619 20.815369 L 148.823962 20.815369 M -49.609619 22.073535 L 148.823962 22.073535 M -49.609619 23.10045 L 148.823962 23.10045 M -49.609619 23.970583 L 148.823962 23.970583 M -49.609619 24.727051 L 148.823962 24.727051 M -49.609619 25.38945 L 148.823962 25.38945 M -49.609619 25.985217 L 148.823962 25.985217 M -49.609619 29.896899 L 148.823962 29.896899 M -49.609619 32.181979 L 148.823962 32.181979 M -49.609619 33.808581 L 148.823962 33.808581 M -49.609619 35.066747 L 148.823962 35.066747 M -49.609619 36.093661 L 148.823962 36.093661 M -49.609619 36.963795 L 148.823962 36.963795 M -49.609619 37.716343 L 148.823962 37.716343 M -49.609619 38.382661 L 148.823962 38.382661 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L 148.823962 -38.976921 M -49.609619 -25.98371 L 148.823962 -25.98371 M -49.609619 -12.990498 L 148.823962 -12.990498 M -49.609619 -0.00120602 L 148.823962 -0.00120602 M -49.609619 12.992005 L 148.823962 12.992005 M -49.609619 25.985217 L 148.823962 25.985217 M -49.609619 38.978429 L 148.823962 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 -36.143107 M -34.676244 -38.976921 L -34.676244 -36.143107 M -25.939632 -38.976921 L -25.939632 -36.143107 M -19.74287 -38.976921 L -19.74287 -36.143107 M -14.933618 -38.976921 L -14.933618 -36.143107 M -11.006258 -38.976921 L -11.006258 -36.143107 M -7.682504 -38.976921 L -7.682504 -36.143107 M -4.805576 -38.976921 L -4.805576 -36.143107 M -2.269646 -38.976921 L -2.269646 -36.143107 M -0.000243561 -38.976921 L -0.000243561 -36.143107 M 14.933131 -38.976921 L 14.933131 -36.143107 M 23.669743 -38.976921 L 23.669743 -36.143107 M 29.866505 -38.976921 L 29.866505 -36.143107 M 34.675757 -38.976921 L 34.675757 -36.143107 M 38.603117 -38.976921 L 38.603117 -36.143107 M 41.922951 -38.976921 L 41.922951 -36.143107 M 44.799879 -38.976921 L 44.799879 -36.143107 M 47.339729 -38.976921 L 47.339729 -36.143107 M 49.609131 -38.976921 L 49.609131 -36.143107 M 64.542506 -38.976921 L 64.542506 -36.143107 M 73.275198 -38.976921 L 73.275198 -36.143107 M 79.47588 -38.976921 L 79.47588 -36.143107 M 84.281213 -38.976921 L 84.281213 -36.143107 M 88.212492 -38.976921 L 88.212492 -36.143107 M 91.532326 -38.976921 L 91.532326 -36.143107 M 94.409254 -38.976921 L 94.409254 -36.143107 M 96.945184 -38.976921 L 96.945184 -36.143107 M 99.214587 -38.976921 L 99.214587 -36.143107 M 114.147961 -38.976921 L 114.147961 -36.143107 M 122.884573 -38.976921 L 122.884573 -36.143107 M 129.081336 -38.976921 L 129.081336 -36.143107 M 133.890588 -38.976921 L 133.890588 -36.143107 M 137.817947 -38.976921 L 137.817947 -36.143107 M 141.137782 -38.976921 L 141.137782 -36.143107 M 144.01471 -38.976921 L 144.01471 -36.143107 M 146.554559 -38.976921 L 146.554559 -36.143107 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 -34.724241 M -0.000243561 -38.976921 L -0.000243561 -34.724241 M 49.609131 -38.976921 L 49.609131 -34.724241 M 99.214587 -38.976921 L 99.214587 -34.724241 M 148.823962 -38.976921 L 148.823962 -34.724241 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -46.775805 -38.976921 M -49.609619 -35.065239 L -46.775805 -35.065239 M -49.609619 -32.776239 L -46.775805 -32.776239 M -49.609619 -31.153557 L -46.775805 -31.153557 M -49.609619 -29.895391 L -46.775805 -29.895391 M -49.609619 -28.868477 L -46.775805 -28.868477 M -49.609619 -27.998343 L -46.775805 -27.998343 M -49.609619 -27.241876 L -46.775805 -27.241876 M -49.609619 -26.579477 L -46.775805 -26.579477 M -49.609619 -25.98371 L -46.775805 -25.98371 M -49.609619 -22.072028 L -46.775805 -22.072028 M -49.609619 -19.786947 L -46.775805 -19.786947 M -49.609619 -18.164265 L -46.775805 -18.164265 M -49.609619 -16.90218 L -46.775805 -16.90218 M -49.609619 -15.875265 L -46.775805 -15.875265 M -49.609619 -15.005132 L -46.775805 -15.005132 M -49.609619 -14.252584 L -46.775805 -14.252584 M -49.609619 -13.586265 L -46.775805 -13.586265 M -49.609619 -12.990498 L -46.775805 -12.990498 M -49.609619 -9.082736 L -46.775805 -9.082736 M -49.609619 -6.793736 L -46.775805 -6.793736 M -49.609619 -5.171054 L -46.775805 -5.171054 M -49.609619 -3.912888 L -46.775805 -3.912888 M -49.609619 -2.882054 L -46.775805 -2.882054 M -49.609619 -2.01192 L -46.775805 -2.01192 M -49.609619 -1.259372 L -46.775805 -1.259372 M -49.609619 -0.593054 L -46.775805 -0.593054 M -49.609619 -0.00120602 L -46.775805 -0.00120602 M -49.609619 3.910476 L -46.775805 3.910476 M -49.609619 6.199476 L -46.775805 6.199476 M -49.609619 7.822158 L -46.775805 7.822158 M -49.609619 9.080324 L -46.775805 9.080324 M -49.609619 10.111158 L -46.775805 10.111158 M -49.609619 10.981291 L -46.775805 10.981291 M -49.609619 11.733839 L -46.775805 11.733839 M -49.609619 12.396238 L -46.775805 12.396238 M -49.609619 12.992005 L -46.775805 12.992005 M -49.609619 16.903687 L -46.775805 16.903687 M -49.609619 19.192687 L -46.775805 19.192687 M -49.609619 20.815369 L -46.775805 20.815369 M -49.609619 22.073535 L -46.775805 22.073535 M -49.609619 23.10045 L -46.775805 23.10045 M -49.609619 23.970583 L -46.775805 23.970583 M -49.609619 24.727051 L -46.775805 24.727051 M -49.609619 25.38945 L -46.775805 25.38945 M -49.609619 25.985217 L -46.775805 25.985217 M -49.609619 29.896899 L -46.775805 29.896899 M -49.609619 32.181979 L -46.775805 32.181979 M -49.609619 33.808581 L -46.775805 33.808581 M -49.609619 35.066747 L -46.775805 35.066747 M -49.609619 36.093661 L -46.775805 36.093661 M -49.609619 36.963795 L -46.775805 36.963795 M -49.609619 37.716343 L -46.775805 37.716343 M -49.609619 38.382661 L -46.775805 38.382661 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -45.360858 -38.976921 M -49.609619 -25.98371 L -45.360858 -25.98371 M -49.609619 -12.990498 L -45.360858 -12.990498 M -49.609619 -0.00120602 L -45.360858 -0.00120602 M -49.609619 12.992005 L -45.360858 12.992005 M -49.609619 25.985217 L -45.360858 25.985217 M -49.609619 38.978429 L -45.360858 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L 148.823962 -38.976921 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.127019" y="72.589432"/>
<use xlink:href="#glyph0-2" x="24.091453" y="72.589432"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.056286" y="68.986671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.262203" y="68.986671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.331939" y="46.692412"/>
<use xlink:href="#glyph0-2" x="30.296373" y="46.692412"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="35.261206" y="43.089652"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.331939" y="20.795393"/>
<use xlink:href="#glyph0-2" x="30.296373" y="20.795393"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.261206" y="17.192633"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 47.272135 L -42.060621 43.438843 L -30.737126 37.586999 L 2.033988 20.611554 L 9.582985 16.809619 L 15.34468 13.991483 L 20.110818 11.741678 L 24.281188 9.84855 L 28.251662 8.123961 L 32.030081 6.563991 L 35.80066 5.078493 L 39.775054 3.589075 L 44.145319 2.021267 L 50.502782 -0.185424 L 58.247755 -2.882054 L 62.618021 -4.473379 L 66.588496 -5.990234 L 70.362994 -7.503169 L 74.137493 -9.090575 L 78.107967 -10.834762 L 82.482153 -12.837637 L 87.644161 -15.283418 L 94.797287 -18.763952 L 107.112421 -24.764739 L 112.074535 -27.092934 L 116.048929 -28.876316 L 119.427556 -30.3187 L 122.406392 -31.518073 L 125.185332 -32.568505 L 127.768296 -33.473914 L 130.151365 -34.249979 L 132.534433 -34.967251 L 135.117398 -35.680604 L 138.296129 -36.499784 L 142.070628 -37.471825 L 143.85401 -37.993121 L 145.249359 -38.451705 L 146.636869 -38.973002 L 148.028299 -39.576608 L 148.823962 -39.960721 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="11.252771" y="80.712834"/>
<use xlink:href="#glyph3-2" x="11.252771" y="71.61104"/>
<use xlink:href="#glyph3-3" x="11.252771" y="66.646606"/>
<use xlink:href="#glyph3-4" x="11.252771" y="61.682172"/>
<use xlink:href="#glyph3-5" x="11.252771" y="56.166685"/>
<use xlink:href="#glyph3-6" x="11.252771" y="53.408446"/>
<use xlink:href="#glyph3-7" x="11.252771" y="49.547109"/>
<use xlink:href="#glyph3-8" x="11.252771" y="44.031622"/>
<use xlink:href="#glyph3-9" x="11.252771" y="38.516136"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="11.252771" y="30.796441"/>
<use xlink:href="#glyph3-11" x="11.252771" y="28.038201"/>
<use xlink:href="#glyph3-12" x="11.252771" y="19.764475"/>
<use xlink:href="#glyph3-13" x="11.252771" y="14.800041"/>
<use xlink:href="#glyph3-14" x="11.252771" y="7.35339"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 145.058594 L 241.28125 145.058594 L 241.28125 88.558594 L 43.519531 88.558594 Z M 43.519531 145.058594 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.0016362 L -49.609619 56.693585 M -34.676244 0.0016362 L -34.676244 56.693585 M -25.939632 0.0016362 L -25.939632 56.693585 M -19.74287 0.0016362 L -19.74287 56.693585 M -14.933618 0.0016362 L -14.933618 56.693585 M -11.006258 0.0016362 L -11.006258 56.693585 M -7.682504 0.0016362 L -7.682504 56.693585 M -4.805576 0.0016362 L -4.805576 56.693585 M -2.269646 0.0016362 L -2.269646 56.693585 M -0.000243561 0.0016362 L -0.000243561 56.693585 M 14.933131 0.0016362 L 14.933131 56.693585 M 23.669743 0.0016362 L 23.669743 56.693585 M 29.866505 0.0016362 L 29.866505 56.693585 M 34.675757 0.0016362 L 34.675757 56.693585 M 38.603117 0.0016362 L 38.603117 56.693585 M 41.922951 0.0016362 L 41.922951 56.693585 M 44.799879 0.0016362 L 44.799879 56.693585 M 47.339729 0.0016362 L 47.339729 56.693585 M 49.609131 0.0016362 L 49.609131 56.693585 M 64.542506 0.0016362 L 64.542506 56.693585 M 73.275198 0.0016362 L 73.275198 56.693585 M 79.47588 0.0016362 L 79.47588 56.693585 M 84.281213 0.0016362 L 84.281213 56.693585 M 88.212492 0.0016362 L 88.212492 56.693585 M 91.532326 0.0016362 L 91.532326 56.693585 M 94.409254 0.0016362 L 94.409254 56.693585 M 96.945184 0.0016362 L 96.945184 56.693585 M 99.214587 0.0016362 L 99.214587 56.693585 M 114.147961 0.0016362 L 114.147961 56.693585 M 122.884573 0.0016362 L 122.884573 56.693585 M 129.081336 0.0016362 L 129.081336 56.693585 M 133.890588 0.0016362 L 133.890588 56.693585 M 137.817947 0.0016362 L 137.817947 56.693585 M 141.137782 0.0016362 L 141.137782 56.693585 M 144.01471 0.0016362 L 144.01471 56.693585 M 146.554559 0.0016362 L 146.554559 56.693585 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.060224)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.0016362 L -49.609619 56.693585 M -0.000243561 0.0016362 L -0.000243561 56.693585 M 49.609131 0.0016362 L 49.609131 56.693585 M 99.214587 0.0016362 L 99.214587 56.693585 M 148.823962 0.0016362 L 148.823962 56.693585 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.060224)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.0016362 L 148.823962 0.0016362 M -49.609619 18.897646 L 148.823962 18.897646 M -49.609619 37.793656 L 148.823962 37.793656 M -49.609619 56.693585 L 148.823962 56.693585 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.060224)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.0016362 L -49.609619 2.83545 M -34.676244 0.0016362 L -34.676244 2.83545 M -25.939632 0.0016362 L -25.939632 2.83545 M -19.74287 0.0016362 L -19.74287 2.83545 M -14.933618 0.0016362 L -14.933618 2.83545 M -11.006258 0.0016362 L -11.006258 2.83545 M -7.682504 0.0016362 L -7.682504 2.83545 M -4.805576 0.0016362 L -4.805576 2.83545 M -2.269646 0.0016362 L -2.269646 2.83545 M -0.000243561 0.0016362 L -0.000243561 2.83545 M 14.933131 0.0016362 L 14.933131 2.83545 M 23.669743 0.0016362 L 23.669743 2.83545 M 29.866505 0.0016362 L 29.866505 2.83545 M 34.675757 0.0016362 L 34.675757 2.83545 M 38.603117 0.0016362 L 38.603117 2.83545 M 41.922951 0.0016362 L 41.922951 2.83545 M 44.799879 0.0016362 L 44.799879 2.83545 M 47.339729 0.0016362 L 47.339729 2.83545 M 49.609131 0.0016362 L 49.609131 2.83545 M 64.542506 0.0016362 L 64.542506 2.83545 M 73.275198 0.0016362 L 73.275198 2.83545 M 79.47588 0.0016362 L 79.47588 2.83545 M 84.281213 0.0016362 L 84.281213 2.83545 M 88.212492 0.0016362 L 88.212492 2.83545 M 91.532326 0.0016362 L 91.532326 2.83545 M 94.409254 0.0016362 L 94.409254 2.83545 M 96.945184 0.0016362 L 96.945184 2.83545 M 99.214587 0.0016362 L 99.214587 2.83545 M 114.147961 0.0016362 L 114.147961 2.83545 M 122.884573 0.0016362 L 122.884573 2.83545 M 129.081336 0.0016362 L 129.081336 2.83545 M 133.890588 0.0016362 L 133.890588 2.83545 M 137.817947 0.0016362 L 137.817947 2.83545 M 141.137782 0.0016362 L 141.137782 2.83545 M 144.01471 0.0016362 L 144.01471 2.83545 M 146.554559 0.0016362 L 146.554559 2.83545 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.060224)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.0016362 L -49.609619 4.250397 M -0.000243561 0.0016362 L -0.000243561 4.250397 M 49.609131 0.0016362 L 49.609131 4.250397 M 99.214587 0.0016362 L 99.214587 4.250397 M 148.823962 0.0016362 L 148.823962 4.250397 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.060224)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.0016362 L -45.360858 0.0016362 M -49.609619 18.897646 L -45.360858 18.897646 M -49.609619 37.793656 L -45.360858 37.793656 M -49.609619 56.693585 L -45.360858 56.693585 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.060224)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.0016362 L 148.823962 0.0016362 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.060224)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.0016362 L -49.609619 56.693585 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.060224)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="33.227117" y="156.947838"/>
<use xlink:href="#glyph0-2" x="38.191551" y="156.947838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="43.156384" y="153.345078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="49.3623" y="153.345078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="85.769612" y="156.947838"/>
<use xlink:href="#glyph0-2" x="90.734047" y="156.947838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="95.698879" y="153.345078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="135.209648" y="156.947838"/>
<use xlink:href="#glyph0-2" x="140.174082" y="156.947838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="145.138915" y="153.345078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="184.649684" y="156.947838"/>
<use xlink:href="#glyph0-2" x="189.614118" y="156.947838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="194.578951" y="153.345078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="234.08972" y="156.947838"/>
<use xlink:href="#glyph0-2" x="239.054154" y="156.947838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="244.018987" y="153.345078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="17.098909" y="147.773008"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="24.821673" y="147.773008"/>
<use xlink:href="#glyph0-4" x="29.786107" y="147.773008"/>
<use xlink:href="#glyph0-2" x="34.750541" y="147.773008"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="17.098909" y="128.93999"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="24.821673" y="128.93999"/>
<use xlink:href="#glyph0-5" x="29.786107" y="128.93999"/>
<use xlink:href="#glyph0-2" x="34.750541" y="128.93999"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="22.064041" y="110.105976"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="29.786804" y="110.105976"/>
<use xlink:href="#glyph0-2" x="34.751239" y="110.105976"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="34.75094" y="91.686552"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 23.993023 L -47.822317 23.632427 L -46.031096 23.303187 L -44.243795 23.001384 L -42.456493 22.727018 L -40.673111 22.476169 L -39.081786 22.272353 L -37.49046 22.088136 L -35.906974 21.919597 L -34.315648 21.766735 L -32.724323 21.629552 L -31.332893 21.523725 L -29.945383 21.425737 L -28.553953 21.339508 L -27.162523 21.261117 L -25.970989 21.202324 L -24.779454 21.151371 L -23.58792 21.108256 L -22.596281 21.0769 L -21.604642 21.049463 L -20.613004 21.025946 L -19.813421 21.010268 L -19.017759 20.998509 L -18.421991 20.99067 L -17.230457 20.982831 L -16.834585 20.978912 L -14.847388 20.978912 L -14.451517 20.982831 L -13.85575 20.986751 L -12.664215 21.002429 L -11.868553 21.014187 L -11.076809 21.029865 L -10.281147 21.049463 L -9.285588 21.0769 L -8.29395 21.108256 L -7.302311 21.143531 L -6.110777 21.190566 L -4.919242 21.249359 L -3.723788 21.312071 L -2.336278 21.390461 L -0.944848 21.48061 L 0.446582 21.582518 L 2.033988 21.707942 L 3.625313 21.849045 L 5.212719 22.001907 L 7.000021 22.190044 L 8.787322 22.393859 L 10.574624 22.617271 L 12.561821 22.883799 L 14.545098 23.173843 L 16.732191 23.510922 L 19.119179 23.906794 L 21.898119 24.396734 L 25.472722 25.055213 L 32.226057 26.30554 L 34.609125 26.71709 L 36.596322 27.038491 L 38.383624 27.301099 L 39.97103 27.512753 L 41.36246 27.681292 L 42.553994 27.806717 L 43.745528 27.920383 L 44.737167 28.002693 L 45.732725 28.073244 L 46.728284 28.132037 L 47.520027 28.167313 L 48.31569 28.198669 L 48.911457 28.218267 L 49.507224 28.230025 L 49.907015 28.237864 L 50.698758 28.245703 L 51.494421 28.245703 L 51.890293 28.241784 L 52.290084 28.237864 L 52.685955 28.230025 L 53.281722 28.218267 L 53.87749 28.198669 L 54.473257 28.175152 L 55.26892 28.139876 L 56.064582 28.096761 L 57.056221 28.03013 L 58.04786 27.955659 L 59.239394 27.853751 L 60.430928 27.736166 L 61.822358 27.583304 L 63.409764 27.387328 L 65.200985 27.148237 L 67.188182 26.858193 L 69.767227 26.458402 L 78.90363 25.023857 L 81.090723 24.714215 L 83.07792 24.455527 L 84.865221 24.239953 L 86.452627 24.067494 L 88.040033 23.910713 L 89.431463 23.789208 L 90.822893 23.683381 L 92.014427 23.604991 L 93.205962 23.534439 L 94.1976 23.483485 L 95.193159 23.440371 L 95.988821 23.412934 L 96.780564 23.389417 L 97.576227 23.373739 L 98.171994 23.36198 L 98.767762 23.354141 L 99.167553 23.350222 L 99.563424 23.346302 L 100.754959 23.346302 L 101.15083 23.350222 L 101.550621 23.354141 L 102.742156 23.369819 L 103.337923 23.381578 L 104.129666 23.405095 L 104.925329 23.428612 L 105.720991 23.459968 L 106.71263 23.503083 L 107.708189 23.554037 L 108.899723 23.620669 L 110.091257 23.699059 L 111.478768 23.797047 L 113.066173 23.926391 L 114.857395 24.079253 L 117.240463 24.302665 L 121.810624 24.729893 L 123.39803 24.863157 L 124.589565 24.949386 L 125.585123 25.012099 L 126.376866 25.051294 L 126.972633 25.074811 L 127.568401 25.094408 L 127.964272 25.106167 L 128.364063 25.110087 L 128.759935 25.114006 L 129.355702 25.114006 L 129.555598 25.110087 L 129.951469 25.102248 L 130.35126 25.090489 L 130.747132 25.074811 L 131.342899 25.043455 L 131.938666 25.00426 L 132.534433 24.949386 L 133.130201 24.882754 L 133.925863 24.773008 L 134.721526 24.639744 L 135.513269 24.479044 L 136.308932 24.283068 L 137.104595 24.059655 L 138.096233 23.726496 L 139.091792 23.330624 L 140.08343 22.87204 L 141.075069 22.342905 L 142.070628 21.739299 L 143.258242 20.920119 L 144.453696 19.991192 L 145.845126 18.78398 L 147.432532 17.267125 L 148.823962 15.863937 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.060224)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="109.910597" y="171.510365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="115.568067" y="171.510365"/>
<use xlink:href="#glyph5-3" x="119.457204" y="171.510365"/>
<use xlink:href="#glyph5-4" x="123.870586" y="171.510365"/>
<use xlink:href="#glyph5-5" x="129.111043" y="171.510365"/>
<use xlink:href="#glyph5-3" x="134.626529" y="171.510365"/>
<use xlink:href="#glyph5-6" x="139.039911" y="171.510365"/>
<use xlink:href="#glyph5-7" x="144.555398" y="171.510365"/>
<use xlink:href="#glyph5-8" x="148.96878" y="171.510365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-9" x="157.51555" y="171.510365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="160.273498" y="171.510365"/>
<use xlink:href="#glyph0-8" x="167.720149" y="171.510365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-10" x="172.133207" y="171.510365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-15" x="11.251774" y="141.454474"/>
<use xlink:href="#glyph3-16" x="11.251774" y="134.697879"/>
<use xlink:href="#glyph3-2" x="11.251774" y="129.182393"/>
<use xlink:href="#glyph3-17" x="11.251774" y="124.217959"/>
<use xlink:href="#glyph3-9" x="11.251774" y="120.30102"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="11.251774" y="112.581325"/>
<use xlink:href="#glyph3-8" x="11.251774" y="109.823086"/>
<use xlink:href="#glyph3-9" x="11.251774" y="104.307599"/>
<use xlink:href="#glyph3-3" x="11.251774" y="99.894217"/>
<use xlink:href="#glyph3-14" x="11.251774" y="94.929783"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 64 KiB

View File

@ -0,0 +1,269 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\setlength\fwidth{7cm}
\setlength\fheight{5cm}
\begin{tikzpicture}
\begin{axis}[%
width=\fwidth,
height=0.55\fheight,
at={(0,0.45\fheight)},
xmode=log,
xmin=0.1,
xmax=1000,
xminorticks=true,
xticklabels={{}},
xminorticks=true,
ymode=log,
ymin=1e-3,
ymax=1e3,
ytick={1e-3, 1e-2, 1e-1, 1, 1e1, 1e2, 1e3},
yticklabels={{}, {$10^{-2}$}, {}, {$10^0$}, {}, {$10^2$}, {}},
yminorticks=true,
ylabel={Magnitude [m/N]},
xminorgrids,
yminorgrids
]
\addplot [color=mycolor1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 4351.30066559668\\
0.14195547660501 2204.82467106182\\
0.240093487686065 781.88410115415\\
1.0991097009295 38.5863311084398\\
1.56024641436637 19.6731219991235\\
2.03849339825246 11.9393739233154\\
2.54334576130465 8.01104989711584\\
3.08666494333727 5.72825533399503\\
3.71167181947577 4.22049551615354\\
4.4222739805059 3.20087649062788\\
5.26892142135068 2.46007717667909\\
6.33580499265825 1.88932769380087\\
7.76050333513357 1.4309193418116\\
10.423606739764 0.967981782735701\\
14.9339321612425 0.599939394601807\\
18.2920450484629 0.452552135718153\\
21.9959306803007 0.345922383404315\\
26.2070669648385 0.264570646408659\\
31.2244282309286 0.199717761793566\\
37.5469422407334 0.146549459045651\\
45.9899209052244 0.102803892538117\\
58.4476113163363 0.0666234955958302\\
81.4537176628074 0.0359602867197856\\
144.264395121816 0.0124164368593772\\
181.659978837533 0.00821726848185247\\
218.443607114943 0.00598932500171654\\
255.509709035251 0.00463926584634863\\
293.404970921579 0.0037505100182471\\
333.828586473176 0.00311412685513269\\
376.335836228653 0.00265201416353158\\
420.362168384471 0.00231155104488257\\
469.539001068006 0.00203594091453817\\
529.326605836056 0.00179358854065749\\
613.462171799251 0.00155164432840315\\
730.909932860291 0.00130568441470115\\
794.145171902934 0.00119085081149171\\
847.08682665574 0.00109793515647738\\
903.557834613893 0.00100057295410498\\
963.793479961579 0.000899050671300346\\
1000 0.000839826664244425\\
};
\end{axis}
\begin{axis}[%
width=\fwidth,
height=0.4\fheight,
at={(0,0)},
xmode=log,
xmin=0.1,
xmax=1000,
xminorticks=true,
xlabel={Frequency [$\si{\hertz}$]},
ymin=-270,
ymax=0,
ytick={-270, -180, -90, 0},
ylabel={Phase [deg]},
xminorgrids
]
\addplot [color=mycolor1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 -155.730410010604\\
0.108651577465251 -157.444329842179\\
0.118051652856881 -159.016305563146\\
0.128264983052803 -160.454312864014\\
0.139361927422416 -161.766002170186\\
0.151418932530433 -162.958631144936\\
0.163009236097978 -163.924315989144\\
0.175486714964814 -164.805798805554\\
0.188919277620761 -165.607251881691\\
0.2033800305847 -166.332537314949\\
0.218947676285658 -166.985205158253\\
0.233543813990654 -167.499274260959\\
0.24911300260678 -167.962206209181\\
0.265720110532445 -168.375798945693\\
0.283434330615137 -168.74167489725\\
0.299554933435982 -169.018407931952\\
0.316592411198347 -169.261965935831\\
0.334598912055007 -169.473073387997\\
0.350384224529072 -169.624669444468\\
0.366914237840248 -169.75449639023\\
0.384224084605498 -169.862835751751\\
0.398658107358057 -169.934199655476\\
0.413634368406335 -169.992071969196\\
0.425234633452872 -170.026676678307\\
0.43716022482485 -170.053774811373\\
0.44942026621191 -170.073393329798\\
0.457784053837654 -170.082328116866\\
0.466303492974262 -170.087953921985\\
0.474981480322836 -170.090275173747\\
0.48382096649261 -170.089295371996\\
0.492824957004062 -170.085017096763\\
0.501996513311016 -170.077442017453\\
0.511338753841437 -170.066570902318\\
0.525679112201842 -170.044083651815\\
0.540421642070586 -170.01417571457\\
0.555577622239876 -169.976838587048\\
0.576448828292606 -169.915476501316\\
0.598104096238105 -169.840841797148\\
0.620572880677654 -169.752879660892\\
0.649849535446982 -169.624081686899\\
0.680507369673503 -169.474196167453\\
0.712611543011191 -169.303038112888\\
0.753142016597439 -169.069270441224\\
0.795977700231485 -168.804157497829\\
0.841249704973636 -168.507248325863\\
0.897331581458357 -168.120016590165\\
0.95715215389917 -167.688024548217\\
1.02096066230607 -167.21042358717\\
1.0991097009295 -166.60765156004\\
1.18324062745835 -165.942960546518\\
1.27381132318649 -165.215223922646\\
1.38401609657311 -164.319998682273\\
1.50375532129977 -163.342883605381\\
1.63385387780984 -162.28359595955\\
1.79165032736394 -161.010952285749\\
1.96468664618042 -159.639931573803\\
2.17438947560012 -158.02352460103\\
2.4287643824604 -156.141688970368\\
2.76338529005317 -153.813804956048\\
3.26222200971169 -150.675040793428\\
4.46323392671051 -144.712585392441\\
4.98537346387382 -142.750788899754\\
5.46685729972028 -141.230345647877\\
5.93982669392029 -139.974898128475\\
6.39448842855712 -138.964276398578\\
6.82077673286572 -138.170971035104\\
7.20871503378203 -137.564197358623\\
7.61871770232323 -137.029112413269\\
7.97814457207674 -136.640412323733\\
8.35452805838285 -136.305498337816\\
8.74866812047975 -136.025757499902\\
9.07732652520994 -135.842444893024\\
9.41833153464815 -135.695597729428\\
9.68246611930323 -135.609591102768\\
9.95400828762154 -135.544372724393\\
10.1392540755881 -135.512471769439\\
10.3279473191894 -135.489842692645\\
10.5201521761614 -135.476485339516\\
10.6175918348298 -135.47328149161\\
10.7159339982264 -135.472392170035\\
10.8151870255226 -135.473815278185\\
10.9153593533136 -135.477548257956\\
11.118496048193 -135.491931293482\\
11.3254131515284 -135.515511589385\\
11.5361810173649 -135.548252090693\\
11.8597101233768 -135.614439075708\\
12.192312516491 -135.700954071076\\
12.5342426546138 -135.807579299964\\
13.0051125217337 -135.980583697503\\
13.4936714058834 -136.188179011162\\
14.1302599059955 -136.49506046189\\
14.7968806268638 -136.852863183877\\
15.638467583022 -137.346459227106\\
16.5279206146492 -137.906215148844\\
17.629753752872 -138.636698197218\\
18.9792164283904 -139.56365114987\\
20.6212180399915 -140.707979086463\\
22.6128006633721 -142.081517225486\\
25.4921465445141 -143.980581035505\\
38.9574561577541 -150.818491561461\\
43.1156199031825 -152.292378930197\\
47.2796959160026 -153.530759774255\\
51.3701354335138 -154.550448738739\\
55.302242561928 -155.37441864889\\
59.5353313081449 -156.11600451482\\
63.5042516859595 -156.694462104983\\
67.7377599751758 -157.205218929792\\
71.5904108596503 -157.588047492811\\
75.6621850048106 -157.919442390876\\
79.2316862486613 -158.155977357457\\
82.9695852083464 -158.356297712351\\
86.0864769614942 -158.490412787294\\
89.3204599858103 -158.601273293247\\
92.6759330114683 -158.688893907112\\
95.2750047242714 -158.739383322341\\
97.9469667069515 -158.776853269827\\
99.7697764236289 -158.794618722137\\
101.626508939302 -158.806628236826\\
103.51779556302 -158.812897379575\\
105.444279352618 -158.813443658655\\
107.406615333344 -158.808286577014\\
109.405470720574 -158.797447692839\\
111.441525146678 -158.780950688716\\
114.566872863485 -158.745653454244\\
117.779870119709 -158.697781347301\\
121.082975023208 -158.637443831784\\
125.631660247414 -158.537817197554\\
130.351224468151 -158.416579908374\\
135.248087041786 -158.274111715337\\
141.628661629916 -158.066837891998\\
148.310251433614 -157.828056926875\\
156.74554102056 -157.501564384406\\
165.660595894989 -157.133726658968\\
176.704352608899 -156.656116134062\\
190.230118866895 -156.053077922383\\
206.688024962902 -155.313799873592\\
230.867799418716 -154.258437163579\\
285.40097698292 -152.21981175333\\
307.246884270909 -151.589904612471\\
324.721849207315 -151.176005010836\\
340.041193270368 -150.882498192212\\
352.81541153808 -150.688877511189\\
362.710025233077 -150.57150370737\\
372.882130718292 -150.480909180991\\
379.82153061908 -150.436755399541\\
386.890073932801 -150.406593243892\\
394.090164040346 -150.391310985555\\
397.740302405804 -150.389535648406\\
401.424249049931 -150.391827114438\\
405.142317111462 -150.398305018997\\
408.894822629482 -150.409090963391\\
416.504424854512 -150.444083317905\\
424.255643071768 -150.497817003391\\
432.151112778964 -150.571337440438\\
444.2706749607 -150.721086698389\\
456.730127016882 -150.921572700448\\
469.539001068009 -151.176749890355\\
482.707096560317 -151.490746493983\\
500.840798984813 -152.008364864025\\
519.655724382751 -152.64888225052\\
539.177464038763 -153.423469450032\\
559.432570616944 -154.343745369635\\
580.448594276896 -155.421679482729\\
607.832312829711 -157.009344358197\\
636.507908129576 -158.885996498353\\
666.5363268125 -161.074189606786\\
697.981390783064 -163.593949108199\\
730.909932860277 -166.460804534995\\
772.48114514036 -170.37056544538\\
816.416760492152 -174.787371383423\\
870.843149769058 -180.536564323253\\
937.50150151455 -187.757089622514\\
1000 -194.454742635627\\
};
\end{axis}
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,501 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="253.14pt" height="178.4pt" viewBox="0 0 253.14 178.4" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.34375 C 2.921875 -6.59375 2.921875 -6.609375 2.6875 -6.609375 C 2.078125 -5.96875 1.203125 -5.96875 0.890625 -5.96875 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.921875 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.703125 -6.453125 2.890625 -6.609375 2.484375 -6.609375 C 1.890625 -6.609375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.4375 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.296875 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.921875 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.296875 C 1.203125 -3.921875 1.203125 -4.578125 1.296875 -5.125 C 1.484375 -6.296875 2.21875 -6.390625 2.46875 -6.390625 C 2.796875 -6.390625 3.453125 -6.21875 3.640625 -5.234375 C 3.734375 -4.671875 3.734375 -3.921875 3.734375 -3.296875 Z M 3.734375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.453125 -1.71875 L 4.203125 -1.71875 C 4.15625 -1.421875 4.09375 -0.984375 3.984375 -0.84375 C 3.921875 -0.765625 3.265625 -0.765625 3.046875 -0.765625 L 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.453125 -3.6875 4.453125 -4.6875 C 4.453125 -5.8125 3.5625 -6.609375 2.34375 -6.609375 C 1.234375 -6.609375 0.5 -5.6875 0.5 -4.8125 C 0.5 -4.25 0.984375 -4.25 1.015625 -4.25 C 1.1875 -4.25 1.53125 -4.375 1.53125 -4.78125 C 1.53125 -5.046875 1.359375 -5.296875 1.015625 -5.296875 C 0.9375 -5.296875 0.90625 -5.296875 0.890625 -5.28125 C 1.109375 -5.9375 1.640625 -6.296875 2.21875 -6.296875 C 3.125 -6.296875 3.546875 -5.5 3.546875 -4.6875 C 3.546875 -3.890625 3.0625 -3.109375 2.515625 -2.484375 L 0.609375 -0.359375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.171875 0 Z M 4.453125 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.8125 -6.390625 L 2.40625 -6.390625 C 1.1875 -6.390625 1.171875 -6.515625 1.125 -6.703125 L 0.890625 -6.703125 L 0.5625 -4.65625 L 0.796875 -4.65625 C 0.828125 -4.828125 0.921875 -5.453125 1.046875 -5.5625 C 1.125 -5.625 1.890625 -5.625 2.03125 -5.625 L 4.078125 -5.625 L 2.96875 -4.0625 C 2.078125 -2.71875 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.203125 0.21875 C 2.65625 0.21875 2.65625 -0.234375 2.65625 -0.328125 L 2.65625 -0.828125 C 2.65625 -1.375 2.6875 -1.921875 2.765625 -2.453125 C 2.8125 -2.6875 2.953125 -3.546875 3.390625 -4.15625 L 4.71875 -6.046875 C 4.8125 -6.15625 4.8125 -6.1875 4.8125 -6.390625 Z M 4.8125 -6.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.53125 -1.671875 C 4.53125 -2.03125 4.421875 -2.46875 4.046875 -2.890625 C 3.859375 -3.09375 3.703125 -3.1875 3.0625 -3.59375 C 3.78125 -3.953125 4.265625 -4.46875 4.265625 -5.125 C 4.265625 -6.046875 3.390625 -6.609375 2.484375 -6.609375 C 1.484375 -6.609375 0.6875 -5.875 0.6875 -4.953125 C 0.6875 -4.765625 0.703125 -4.328125 1.125 -3.859375 C 1.234375 -3.734375 1.59375 -3.5 1.84375 -3.328125 C 1.265625 -3.03125 0.421875 -2.484375 0.421875 -1.5 C 0.421875 -0.453125 1.421875 0.21875 2.46875 0.21875 C 3.59375 0.21875 4.53125 -0.609375 4.53125 -1.671875 Z M 3.828125 -5.125 C 3.828125 -4.5625 3.4375 -4.09375 2.84375 -3.734375 L 1.625 -4.53125 C 1.15625 -4.828125 1.125 -5.171875 1.125 -5.34375 C 1.125 -5.9375 1.765625 -6.359375 2.46875 -6.359375 C 3.1875 -6.359375 3.828125 -5.84375 3.828125 -5.125 Z M 4.03125 -1.3125 C 4.03125 -0.578125 3.296875 -0.0625 2.484375 -0.0625 C 1.625 -0.0625 0.90625 -0.671875 0.90625 -1.5 C 0.90625 -2.078125 1.234375 -2.703125 2.078125 -3.171875 L 3.296875 -2.40625 C 3.578125 -2.21875 4.03125 -1.921875 4.03125 -1.3125 Z M 4.03125 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.53125 -3.265625 C 4.53125 -5.9375 3.390625 -6.609375 2.515625 -6.609375 C 1.96875 -6.609375 1.484375 -6.421875 1.046875 -5.984375 C 0.640625 -5.53125 0.421875 -5.125 0.421875 -4.375 C 0.421875 -3.140625 1.296875 -2.15625 2.40625 -2.15625 C 3 -2.15625 3.40625 -2.578125 3.640625 -3.15625 L 3.640625 -2.84375 C 3.640625 -0.515625 2.609375 -0.0625 2.03125 -0.0625 C 1.859375 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.234375 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.328125 0.21875 4.53125 -1.125 4.53125 -3.265625 Z M 3.625 -4.171875 C 3.625 -3.359375 3.28125 -2.390625 2.40625 -2.390625 C 2.25 -2.390625 1.796875 -2.390625 1.484375 -3.015625 C 1.3125 -3.390625 1.3125 -3.875 1.3125 -4.359375 C 1.3125 -4.90625 1.3125 -5.375 1.515625 -5.734375 C 1.78125 -6.234375 2.15625 -6.359375 2.515625 -6.359375 C 2.96875 -6.359375 3.296875 -6.015625 3.46875 -5.578125 C 3.578125 -5.265625 3.625 -4.640625 3.625 -4.171875 Z M 3.625 -4.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 0 -8.71875 L -0.3125 -8.71875 L -0.3125 -8.484375 C -0.3125 -7.71875 -0.421875 -7.703125 -0.78125 -7.703125 L -6 -7.703125 C -6.359375 -7.703125 -6.46875 -7.71875 -6.46875 -8.484375 L -6.46875 -8.71875 L -6.78125 -8.71875 L -6.78125 -7.046875 C -6.78125 -6.78125 -6.765625 -6.78125 -6.59375 -6.71875 L -1 -4.546875 L -6.5625 -2.390625 C -6.78125 -2.296875 -6.78125 -2.265625 -6.78125 -2.046875 L -6.78125 -0.359375 L -6.46875 -0.359375 L -6.46875 -0.609375 C -6.46875 -1.375 -6.359375 -1.390625 -6 -1.390625 L -1.046875 -1.390625 C -0.78125 -1.390625 -0.3125 -1.390625 -0.3125 -0.359375 L 0 -0.359375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.78125 -1.671875 -1.046875 -1.671875 L -6.390625 -1.671875 L -0.21875 -4.0625 C -0.09375 -4.125 0 -4.171875 0 -4.265625 C 0 -4.375 -0.078125 -4.40625 -0.1875 -4.4375 L -6.46875 -6.890625 L -0.78125 -6.890625 C -0.421875 -6.890625 -0.3125 -6.875 -0.3125 -6.109375 L -0.3125 -5.875 L 0 -5.875 C -0.03125 -6.234375 -0.03125 -6.921875 -0.03125 -7.296875 C -0.03125 -7.6875 -0.03125 -8.359375 0 -8.71875 Z M 0 -8.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M -0.890625 -4.796875 L -1.4375 -4.796875 L -1.4375 -4.546875 L -0.890625 -4.546875 C -0.3125 -4.546875 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.734375 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.90625 -3.46875 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.109375 C -4.4375 -1.296875 -3.984375 -0.609375 -3.328125 -0.609375 C -3.03125 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.0625 -1.515625 -3.3125 -1.515625 C -3.4375 -1.515625 -3.765625 -1.46875 -3.765625 -1.015625 C -4.125 -1.28125 -4.234375 -1.765625 -4.234375 -2.078125 C -4.234375 -2.5625 -3.84375 -3.140625 -2.953125 -3.140625 L -2.59375 -3.140625 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.25 0.0625 -3.515625 0.0625 -3.984375 C 0.0625 -4.1875 -0.078125 -4.796875 -0.890625 -4.796875 Z M -1.390625 -3.140625 C -0.453125 -3.140625 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.328125 -1.5 -2.375 -3.140625 Z M -1.390625 -3.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M -4.015625 -4.8125 C -4.171875 -4.8125 -4.5 -4.6875 -4.5 -4.3125 C -4.5 -4.109375 -4.4375 -3.671875 -4.03125 -3.25 C -4.359375 -2.84375 -4.390625 -2.421875 -4.390625 -2.203125 C -4.390625 -1.28125 -3.703125 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.921875 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.890625 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.03125 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.328125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.59375 -1.046875 -1.78125 -1.21875 C -1.515625 -1.609375 -1.484375 -2.015625 -1.484375 -2.203125 C -1.484375 -3.125 -2.15625 -3.8125 -2.921875 -3.8125 C -3.296875 -3.8125 -3.65625 -3.65625 -3.890625 -3.40625 C -4.234375 -3.765625 -4.28125 -4.125 -4.28125 -4.296875 C -4.28125 -4.296875 -4.28125 -4.359375 -4.265625 -4.390625 C -4.234375 -4.28125 -4.125 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.53125 C -3.703125 -4.625 -3.78125 -4.8125 -4.015625 -4.8125 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.0625 -2.109375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.703125 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.515625 -1.34375 -3.765625 -1.5 C -3.875 -1.578125 -4.15625 -1.8125 -4.15625 -2.203125 C -4.15625 -3.0625 -3.171875 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.484375 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.390625 -1.75 L -4.28125 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -6 -1.90625 C -6.265625 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -6 -0.84375 C -5.71875 -0.84375 -5.46875 -1.078125 -5.46875 -1.375 C -5.46875 -1.703125 -5.75 -1.90625 -6 -1.90625 Z M -6 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M -1.234375 -3.296875 L -1.796875 -3.296875 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.140625 L -4.28125 -3.140625 L -4.28125 -1.71875 L -6.109375 -1.71875 L -6.109375 -1.46875 C -5.28125 -1.453125 -4.234375 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.296875 -1.234375 -3.296875 Z M -1.234375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.609375 -0.375 -4.53125 -0.859375 -4.53125 L -4.390625 -4.53125 L -4.28125 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.765625 -3.90625 -3.84375 -3.40625 -3.84375 L -1.640625 -3.84375 C -0.78125 -3.84375 -0.109375 -3.375 -0.109375 -2.65625 C -0.109375 -1.8125 -0.578125 -1.78125 -1.09375 -1.78125 L -4.390625 -1.78125 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.0625 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.59375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.875 L 0.109375 -3.875 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 0 -5.234375 L -0.3125 -5.234375 C -0.3125 -4.53125 -0.375 -4.453125 -0.859375 -4.453125 L -6.890625 -4.453125 L -6.78125 -3.03125 L -6.46875 -3.03125 C -6.46875 -3.71875 -6.40625 -3.796875 -5.90625 -3.796875 L -3.765625 -3.796875 C -4.125 -3.515625 -4.390625 -3.078125 -4.390625 -2.546875 C -4.390625 -1.375 -3.40625 -0.34375 -2.140625 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.515625 -0.546875 -3.765625 L 0.109375 -3.765625 Z M -1.171875 -3.765625 C -0.984375 -3.765625 -0.96875 -3.765625 -0.796875 -3.65625 C -0.328125 -3.359375 -0.109375 -2.921875 -0.109375 -2.484375 C -0.109375 -2.046875 -0.359375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.484375 -1.15625 -3.078125 -1.1875 -3.53125 -1.46875 C -3.84375 -1.671875 -4.171875 -2.046875 -4.171875 -2.59375 C -4.171875 -2.9375 -4.015625 -3.359375 -3.578125 -3.65625 C -3.40625 -3.765625 -3.390625 -3.765625 -3.203125 -3.765625 Z M -1.171875 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M -1.1875 -4.125 C -1.28125 -4.125 -1.296875 -4.03125 -1.296875 -3.984375 C -1.296875 -3.90625 -1.234375 -3.875 -1.15625 -3.859375 C -0.140625 -3.515625 -0.140625 -2.625 -0.140625 -2.515625 C -0.140625 -2.03125 -0.4375 -1.625 -0.796875 -1.40625 C -1.28125 -1.09375 -1.9375 -1.09375 -2.296875 -1.09375 L -2.296875 -3.875 C -2.296875 -4.09375 -2.296875 -4.125 -2.5 -4.125 C -3.484375 -4.125 -4.4375 -3.578125 -4.4375 -2.34375 C -4.4375 -1.1875 -3.421875 -0.28125 -2.1875 -0.28125 C -0.859375 -0.28125 0.109375 -1.3125 0.109375 -2.453125 C 0.109375 -3.671875 -0.984375 -4.125 -1.1875 -4.125 Z M -2.5 -3.46875 L -2.5 -1.109375 C -3.984375 -1.171875 -4.234375 -2 -4.234375 -2.34375 C -4.234375 -3.359375 -2.890625 -3.46875 -2.5 -3.46875 Z M -2.5 -3.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.484375 -2.53125 L 2.078125 -2.53125 L 2.078125 -1.5625 L -7.046875 -1.5625 L -7.046875 -2.53125 L -7.4375 -2.53125 L -7.4375 -1.171875 L 2.484375 -1.171875 Z M 2.484375 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 0 -8.0625 L -0.3125 -8.0625 C -0.3125 -7.546875 -0.3125 -7.296875 -0.609375 -7.296875 L -2.5 -7.296875 C -3.359375 -7.296875 -3.65625 -7.296875 -4.015625 -6.984375 C -4.1875 -6.84375 -4.390625 -6.515625 -4.390625 -5.9375 C -4.390625 -5.109375 -3.796875 -4.671875 -3.40625 -4.5 C -4.28125 -4.359375 -4.390625 -3.625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 L 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.640625 -0.3125 -4.53125 -0.75 -4.53125 L -2.578125 -4.53125 C -3.609375 -4.53125 -4.171875 -5.234375 -4.171875 -5.875 C -4.171875 -6.5 -3.625 -6.609375 -3.0625 -6.609375 L -0.75 -6.609375 C -0.3125 -6.609375 -0.3125 -6.5 -0.3125 -5.828125 L 0 -5.828125 L -0.03125 -6.953125 Z M 0 -8.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M -7.25 -4.390625 C -7.359375 -4.390625 -7.4375 -4.3125 -7.4375 -4.203125 C -7.4375 -4.0625 -7.34375 -4.015625 -7.25 -3.984375 L 2.109375 -0.609375 C 2.234375 -0.5625 2.28125 -0.5625 2.28125 -0.5625 C 2.390625 -0.5625 2.484375 -0.640625 2.484375 -0.75 C 2.484375 -0.890625 2.375 -0.9375 2.28125 -0.96875 L -7.0625 -4.34375 C -7.1875 -4.390625 -7.25 -4.390625 -7.25 -4.390625 Z M -7.25 -4.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M -6.46875 -7.109375 L -6.78125 -7.109375 L -6.75 -5.9375 L -6.78125 -4.78125 L -6.46875 -4.78125 C -6.46875 -5.796875 -6 -5.796875 -5.734375 -5.796875 L -1.5 -5.796875 L -6.640625 -2.296875 C -6.765625 -2.21875 -6.78125 -2.203125 -6.78125 -2.015625 L -6.78125 -0.328125 L -6.46875 -0.328125 L -6.46875 -0.609375 C -6.46875 -0.765625 -6.453125 -0.96875 -6.453125 -1.109375 C -6.421875 -1.34375 -6.40625 -1.34375 -6.21875 -1.34375 L -1.046875 -1.34375 C -0.78125 -1.34375 -0.3125 -1.34375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.484375 L 0 -2.65625 L -0.3125 -2.65625 C -0.3125 -1.625 -0.78125 -1.625 -1.046875 -1.625 L -6.203125 -1.625 C -6.15625 -1.671875 -6.140625 -1.6875 -6.078125 -1.71875 L -0.125 -5.78125 C -0.015625 -5.859375 0 -5.875 0 -5.9375 C 0 -6.078125 -0.0625 -6.078125 -0.265625 -6.078125 L -5.734375 -6.078125 C -6 -6.078125 -6.46875 -6.078125 -6.46875 -7.109375 Z M -6.46875 -7.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 2.484375 -1.578125 L -7.4375 -1.578125 L -7.4375 -0.21875 L -7.046875 -0.21875 L -7.046875 -1.1875 L 2.078125 -1.1875 L 2.078125 -0.21875 L 2.484375 -0.21875 Z M 2.484375 -1.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M -4.9375 -6.1875 C -5.90625 -6.1875 -6.78125 -5.203125 -6.78125 -3.84375 L -6.78125 -0.34375 L -6.46875 -0.34375 L -6.46875 -0.578125 C -6.46875 -1.34375 -6.359375 -1.375 -6 -1.375 L -0.78125 -1.375 C -0.421875 -1.375 -0.3125 -1.34375 -0.3125 -0.578125 L -0.3125 -0.34375 L 0 -0.34375 C -0.03125 -0.6875 -0.03125 -1.421875 -0.03125 -1.8125 C -0.03125 -2.1875 -0.03125 -2.921875 0 -3.28125 L -0.3125 -3.28125 L -0.3125 -3.03125 C -0.3125 -2.265625 -0.421875 -2.25 -0.78125 -2.25 L -3.140625 -2.25 L -3.140625 -3.921875 C -3.140625 -5.125 -3.9375 -6.1875 -4.9375 -6.1875 Z M -4.9375 -5.171875 C -4.46875 -5.171875 -3.390625 -5.171875 -3.390625 -3.59375 L -3.390625 -2.21875 L -6.078125 -2.21875 C -6.40625 -2.21875 -6.46875 -2.25 -6.46875 -2.703125 L -6.46875 -3.59375 C -6.46875 -5.171875 -5.421875 -5.171875 -4.9375 -5.171875 Z M -4.9375 -5.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-16">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.34375 -3.796875 -1.921875 -3.4375 -1.75 L -6.890625 -1.75 L -6.78125 -0.3125 L -6.46875 -0.3125 C -6.46875 -1.015625 -6.40625 -1.09375 -5.90625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-17">
<path style="stroke:none;" d="M -1.265625 -3.578125 C -1.796875 -3.578125 -2.09375 -3.28125 -2.21875 -3.15625 C -2.53125 -2.828125 -2.609375 -2.4375 -2.6875 -2.03125 C -2.796875 -1.46875 -2.921875 -0.796875 -3.5 -0.796875 C -3.84375 -0.796875 -4.25 -1.0625 -4.25 -1.921875 C -4.25 -3 -3.359375 -3.0625 -3.0625 -3.078125 C -2.96875 -3.078125 -2.96875 -3.1875 -2.96875 -3.1875 C -2.96875 -3.328125 -3.015625 -3.328125 -3.203125 -3.328125 L -4.203125 -3.328125 C -4.375 -3.328125 -4.4375 -3.328125 -4.4375 -3.21875 C -4.4375 -3.171875 -4.4375 -3.140625 -4.328125 -3.015625 C -4.28125 -2.984375 -4.203125 -2.890625 -4.171875 -2.84375 C -4.4375 -2.46875 -4.4375 -2.0625 -4.4375 -1.921875 C -4.4375 -0.703125 -3.78125 -0.328125 -3.21875 -0.328125 C -2.875 -0.328125 -2.59375 -0.484375 -2.375 -0.75 C -2.125 -1.078125 -2.0625 -1.34375 -1.921875 -2.0625 C -1.890625 -2.28125 -1.71875 -3.09375 -1.015625 -3.09375 C -0.5 -3.09375 -0.109375 -2.75 -0.109375 -1.96875 C -0.109375 -1.140625 -0.671875 -0.78125 -1.515625 -0.59375 C -1.640625 -0.5625 -1.6875 -0.5625 -1.6875 -0.453125 C -1.6875 -0.328125 -1.625 -0.328125 -1.4375 -0.328125 L -0.125 -0.328125 C 0.046875 -0.328125 0.109375 -0.328125 0.109375 -0.4375 C 0.109375 -0.484375 0.09375 -0.5 -0.09375 -0.6875 C -0.109375 -0.703125 -0.125 -0.703125 -0.3125 -0.890625 C 0.09375 -1.3125 0.109375 -1.765625 0.109375 -1.96875 C 0.109375 -3.109375 -0.5625 -3.578125 -1.265625 -3.578125 Z M -1.265625 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.671875 6.703125 -2.671875 6.5625 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 6.046875 -4.515625 L 5.78125 -6.75 L 0.328125 -6.75 L 0.328125 -6.4375 L 0.5625 -6.4375 C 1.328125 -6.4375 1.34375 -6.328125 1.34375 -5.96875 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.828125 -0.03125 C 2.25 -0.03125 3.140625 -0.03125 3.5 0 L 3.5 -0.3125 L 3.171875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.21875 L 3.078125 -3.21875 C 4.03125 -3.21875 4.140625 -2.90625 4.140625 -2.0625 L 4.390625 -2.0625 L 4.390625 -4.6875 L 4.140625 -4.6875 C 4.140625 -3.859375 4.03125 -3.53125 3.078125 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.046875 C 2.234375 -6.375 2.25 -6.4375 2.71875 -6.4375 L 3.90625 -6.4375 C 5.390625 -6.4375 5.640625 -5.890625 5.796875 -4.515625 Z M 6.046875 -4.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.71875 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.953125 -4.140625 2.765625 -4.03125 2.765625 -3.765625 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.46875 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.90625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.515625 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.125 -0.984375 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.359375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph5-4">
<path style="stroke:none;" d="M 5.234375 1.921875 L 5.234375 1.625 C 4.5625 1.625 4.453125 1.625 4.453125 1.171875 L 4.453125 -4.390625 L 4.234375 -4.390625 L 3.859375 -3.484375 C 3.734375 -3.765625 3.328125 -4.390625 2.53125 -4.390625 C 1.375 -4.390625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.140625 0.109375 3.546875 -0.3125 3.765625 -0.609375 L 3.765625 1.171875 C 3.765625 1.625 3.65625 1.625 3 1.625 L 3 1.921875 L 4.109375 1.890625 Z M 3.796875 -1.34375 C 3.796875 -1.03125 3.625 -0.75 3.40625 -0.515625 C 3.28125 -0.375 2.953125 -0.109375 2.484375 -0.109375 C 1.765625 -0.109375 1.15625 -0.984375 1.15625 -2.140625 C 1.15625 -3.3125 1.859375 -4.140625 2.59375 -4.140625 C 3.390625 -4.140625 3.796875 -3.28125 3.796875 -2.75 Z M 3.796875 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-5">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.90625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-6">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.359375 4.53125 -3.65625 4.234375 -4.015625 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.453125 -4.390625 2 -3.953125 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.609375 2.484375 -4.171875 3.109375 -4.171875 C 3.734375 -4.171875 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-7">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.90625 -1.28125 3.875 -1.234375 3.859375 -1.1875 C 3.578125 -0.265625 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.28125 -2.921875 3.546875 -2.921875 C 3.8125 -2.921875 4.015625 -3.078125 4.015625 -3.390625 C 4.015625 -4.0625 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-8">
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.25 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.734375 -3.953125 3.90625 -3.796875 3.90625 -3.546875 C 3.90625 -3.4375 3.890625 -3.421875 3.84375 -3.296875 L 2.84375 -0.859375 L 1.734375 -3.53125 C 1.703125 -3.625 1.671875 -3.671875 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.25 0.1875 -4.28125 L 0.1875 -3.96875 C 0.671875 -3.96875 0.859375 -3.96875 0.984375 -3.625 L 2.484375 0 L 2.234375 0.578125 C 2.015625 1.125 1.734375 1.8125 1.09375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.015625 1.375 1.015625 1.21875 C 1.015625 0.96875 0.828125 0.796875 0.609375 0.796875 C 0.40625 0.796875 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.09375 2.03125 C 1.71875 2.03125 2.140625 1.46875 2.375 0.90625 L 4.125 -3.328125 C 4.375 -3.953125 4.875 -3.96875 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.078125 L 1.5625 2.078125 L 1.5625 -7.046875 L 2.53125 -7.046875 L 2.53125 -7.4375 L 1.171875 -7.4375 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-10">
<path style="stroke:none;" d="M 7.109375 0 L 7.109375 -0.3125 L 6.859375 -0.3125 C 6.109375 -0.3125 6.078125 -0.421875 6.078125 -0.78125 L 6.078125 -6 C 6.078125 -6.359375 6.109375 -6.46875 6.859375 -6.46875 L 7.109375 -6.46875 L 7.109375 -6.78125 C 6.75 -6.75 6.015625 -6.75 5.640625 -6.75 C 5.265625 -6.75 4.53125 -6.75 4.171875 -6.78125 L 4.171875 -6.46875 L 4.421875 -6.46875 C 5.171875 -6.46875 5.203125 -6.359375 5.203125 -6 L 5.203125 -3.6875 L 2.234375 -3.6875 L 2.234375 -6 C 2.234375 -6.359375 2.25 -6.46875 3.015625 -6.46875 L 3.25 -6.46875 L 3.25 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.34375 -6.359375 1.34375 -6 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.375 L 5.203125 -3.375 L 5.203125 -0.78125 C 5.203125 -0.421875 5.171875 -0.3125 4.421875 -0.3125 L 4.171875 -0.3125 L 4.171875 0 C 4.53125 -0.03125 5.265625 -0.03125 5.640625 -0.03125 C 6.015625 -0.03125 6.75 -0.03125 7.109375 0 Z M 7.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-11">
<path style="stroke:none;" d="M 3.984375 -1.859375 L 3.734375 -1.859375 C 3.640625 -0.6875 3.4375 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.875 -3.984375 C 3.953125 -4.09375 3.953125 -4.109375 3.953125 -4.140625 C 3.953125 -4.28125 3.875 -4.28125 3.703125 -4.28125 L 0.53125 -4.28125 L 0.421875 -2.671875 L 0.671875 -2.671875 C 0.71875 -3.6875 0.90625 -4.0625 2 -4.0625 L 3.140625 -4.0625 L 0.359375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.8125 0 Z M 3.984375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-12">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.4375 L 0.21875 -7.4375 L 0.21875 -7.046875 L 1.1875 -7.046875 L 1.1875 2.078125 L 0.21875 2.078125 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 46 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 46 81.496094 Z M 46 3.804688 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 45 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 45 81.496094 Z M 45 3.804688 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 46 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 46 81.496094 Z M 46 3.804688 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 45 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 45 81.496094 Z M 45 3.804688 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 44 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 44 81.496094 Z M 44 3.804688 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 46 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 46 81.496094 Z M 46 3.804688 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 44 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 44 81.496094 Z M 44 3.804688 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 46 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 46 81.496094 Z M 46 3.804688 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 45 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 45 81.496094 Z M 45 3.804688 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 44 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 44 81.496094 Z M 44 3.804688 "/>
</clipPath>
<clipPath id="clip11">
<path d="M 45 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 45 81.496094 Z M 45 3.804688 "/>
</clipPath>
<clipPath id="clip12">
<path d="M 44 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 44 81.496094 Z M 44 3.804688 "/>
</clipPath>
<clipPath id="clip13">
<path d="M 45 3.804688 L 241.28125 3.804688 L 241.28125 81.496094 L 45 81.496094 Z M 45 3.804688 "/>
</clipPath>
<clipPath id="clip14">
<path d="M 43.519531 95 L 241.28125 95 L 241.28125 139 L 43.519531 139 Z M 43.519531 95 "/>
</clipPath>
<clipPath id="clip15">
<path d="M 43.519531 96 L 241.28125 96 L 241.28125 139 L 43.519531 139 Z M 43.519531 96 "/>
</clipPath>
<clipPath id="clip16">
<path d="M 43.519531 97 L 241.28125 97 L 241.28125 139 L 43.519531 139 Z M 43.519531 97 "/>
</clipPath>
<clipPath id="clip17">
<path d="M 43.519531 97 L 241.28125 97 L 241.28125 140 L 43.519531 140 Z M 43.519531 97 "/>
</clipPath>
<clipPath id="clip18">
<path d="M 43.519531 96 L 241.28125 96 L 241.28125 139 L 43.519531 139 Z M 43.519531 96 "/>
</clipPath>
<clipPath id="clip19">
<path d="M 43.519531 103 L 241.28125 103 L 241.28125 145.0625 L 43.519531 145.0625 Z M 43.519531 103 "/>
</clipPath>
<clipPath id="clip20">
<path d="M 43.519531 98 L 241.28125 98 L 241.28125 140 L 43.519531 140 Z M 43.519531 98 "/>
</clipPath>
<clipPath id="clip21">
<path d="M 43.519531 104 L 237 104 L 237 145.0625 L 43.519531 145.0625 Z M 43.519531 104 "/>
</clipPath>
<clipPath id="clip22">
<path d="M 43.519531 96 L 241.28125 96 L 241.28125 139 L 43.519531 139 Z M 43.519531 96 "/>
</clipPath>
<clipPath id="clip23">
<path d="M 43.519531 104 L 236 104 L 236 145.0625 L 43.519531 145.0625 Z M 43.519531 104 "/>
</clipPath>
<clipPath id="clip24">
<path d="M 43.519531 96 L 241.28125 96 L 241.28125 139 L 43.519531 139 Z M 43.519531 96 "/>
</clipPath>
<clipPath id="clip25">
<path d="M 43.519531 103 L 241.28125 103 L 241.28125 145.0625 L 43.519531 145.0625 Z M 43.519531 103 "/>
</clipPath>
<clipPath id="clip26">
<path d="M 43.519531 96 L 241.28125 96 L 241.28125 139 L 43.519531 139 Z M 43.519531 96 "/>
</clipPath>
<clipPath id="clip27">
<path d="M 43.519531 104 L 236 104 L 236 145.0625 L 43.519531 145.0625 Z M 43.519531 104 "/>
</clipPath>
<clipPath id="clip28">
<path d="M 43.519531 103 L 241.28125 103 L 241.28125 145.0625 L 43.519531 145.0625 Z M 43.519531 103 "/>
</clipPath>
<clipPath id="clip29">
<path d="M 43.519531 104 L 236 104 L 236 145.0625 L 43.519531 145.0625 Z M 43.519531 104 "/>
</clipPath>
<clipPath id="clip30">
<path d="M 43.519531 102 L 241.28125 102 L 241.28125 144 L 43.519531 144 Z M 43.519531 102 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 81.496094 L 241.28125 81.496094 L 241.28125 3.804688 L 43.519531 3.804688 Z M 43.519531 81.496094 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 38.978429 M -34.676244 -38.976921 L -34.676244 38.978429 M -25.939632 -38.976921 L -25.939632 38.978429 M -19.74287 -38.976921 L -19.74287 38.978429 M -14.933618 -38.976921 L -14.933618 38.978429 M -11.006258 -38.976921 L -11.006258 38.978429 M -7.682504 -38.976921 L -7.682504 38.978429 M -4.805576 -38.976921 L -4.805576 38.978429 M -2.269646 -38.976921 L -2.269646 38.978429 M -0.000243561 -38.976921 L -0.000243561 38.978429 M 14.933131 -38.976921 L 14.933131 38.978429 M 23.669743 -38.976921 L 23.669743 38.978429 M 29.866505 -38.976921 L 29.866505 38.978429 M 34.675757 -38.976921 L 34.675757 38.978429 M 38.603117 -38.976921 L 38.603117 38.978429 M 41.922951 -38.976921 L 41.922951 38.978429 M 44.799879 -38.976921 L 44.799879 38.978429 M 47.339729 -38.976921 L 47.339729 38.978429 M 49.609131 -38.976921 L 49.609131 38.978429 M 64.542506 -38.976921 L 64.542506 38.978429 M 73.275198 -38.976921 L 73.275198 38.978429 M 79.47588 -38.976921 L 79.47588 38.978429 M 84.281213 -38.976921 L 84.281213 38.978429 M 88.212492 -38.976921 L 88.212492 38.978429 M 91.532326 -38.976921 L 91.532326 38.978429 M 94.409254 -38.976921 L 94.409254 38.978429 M 96.945184 -38.976921 L 96.945184 38.978429 M 99.214587 -38.976921 L 99.214587 38.978429 M 114.147961 -38.976921 L 114.147961 38.978429 M 122.884573 -38.976921 L 122.884573 38.978429 M 129.081336 -38.976921 L 129.081336 38.978429 M 133.890588 -38.976921 L 133.890588 38.978429 M 137.817947 -38.976921 L 137.817947 38.978429 M 141.137782 -38.976921 L 141.137782 38.978429 M 144.01471 -38.976921 L 144.01471 38.978429 M 146.554559 -38.976921 L 146.554559 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 38.978429 M -0.000243561 -38.976921 L -0.000243561 38.978429 M 49.609131 -38.976921 L 49.609131 38.978429 M 99.214587 -38.976921 L 99.214587 38.978429 M 148.823962 -38.976921 L 148.823962 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L 148.823962 -38.976921 M -49.609619 -35.065239 L 148.823962 -35.065239 M -49.609619 -32.776239 L 148.823962 -32.776239 M -49.609619 -31.153557 L 148.823962 -31.153557 M -49.609619 -29.895391 L 148.823962 -29.895391 M -49.609619 -28.868477 L 148.823962 -28.868477 M -49.609619 -27.998343 L 148.823962 -27.998343 M -49.609619 -27.241876 L 148.823962 -27.241876 M -49.609619 -26.579477 L 148.823962 -26.579477 M -49.609619 -25.98371 L 148.823962 -25.98371 M -49.609619 -22.072028 L 148.823962 -22.072028 M -49.609619 -19.786947 L 148.823962 -19.786947 M -49.609619 -18.164265 L 148.823962 -18.164265 M -49.609619 -16.90218 L 148.823962 -16.90218 M -49.609619 -15.875265 L 148.823962 -15.875265 M -49.609619 -15.005132 L 148.823962 -15.005132 M -49.609619 -14.252584 L 148.823962 -14.252584 M -49.609619 -13.586265 L 148.823962 -13.586265 M -49.609619 -12.990498 L 148.823962 -12.990498 M -49.609619 -9.082736 L 148.823962 -9.082736 M -49.609619 -6.793736 L 148.823962 -6.793736 M -49.609619 -5.171054 L 148.823962 -5.171054 M -49.609619 -3.912888 L 148.823962 -3.912888 M -49.609619 -2.882054 L 148.823962 -2.882054 M -49.609619 -2.01192 L 148.823962 -2.01192 M -49.609619 -1.259372 L 148.823962 -1.259372 M -49.609619 -0.593054 L 148.823962 -0.593054 M -49.609619 -0.00120602 L 148.823962 -0.00120602 M -49.609619 3.910476 L 148.823962 3.910476 M -49.609619 6.199476 L 148.823962 6.199476 M -49.609619 7.822158 L 148.823962 7.822158 M -49.609619 9.080324 L 148.823962 9.080324 M -49.609619 10.111158 L 148.823962 10.111158 M -49.609619 10.981291 L 148.823962 10.981291 M -49.609619 11.733839 L 148.823962 11.733839 M -49.609619 12.396238 L 148.823962 12.396238 M -49.609619 12.992005 L 148.823962 12.992005 M -49.609619 16.903687 L 148.823962 16.903687 M -49.609619 19.192687 L 148.823962 19.192687 M -49.609619 20.815369 L 148.823962 20.815369 M -49.609619 22.073535 L 148.823962 22.073535 M -49.609619 23.10045 L 148.823962 23.10045 M -49.609619 23.970583 L 148.823962 23.970583 M -49.609619 24.727051 L 148.823962 24.727051 M -49.609619 25.38945 L 148.823962 25.38945 M -49.609619 25.985217 L 148.823962 25.985217 M -49.609619 29.896899 L 148.823962 29.896899 M -49.609619 32.181979 L 148.823962 32.181979 M -49.609619 33.808581 L 148.823962 33.808581 M -49.609619 35.066747 L 148.823962 35.066747 M -49.609619 36.093661 L 148.823962 36.093661 M -49.609619 36.963795 L 148.823962 36.963795 M -49.609619 37.716343 L 148.823962 37.716343 M -49.609619 38.382661 L 148.823962 38.382661 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L 148.823962 -38.976921 M -49.609619 -25.98371 L 148.823962 -25.98371 M -49.609619 -12.990498 L 148.823962 -12.990498 M -49.609619 -0.00120602 L 148.823962 -0.00120602 M -49.609619 12.992005 L 148.823962 12.992005 M -49.609619 25.985217 L 148.823962 25.985217 M -49.609619 38.978429 L 148.823962 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 -36.143107 M -34.676244 -38.976921 L -34.676244 -36.143107 M -25.939632 -38.976921 L -25.939632 -36.143107 M -19.74287 -38.976921 L -19.74287 -36.143107 M -14.933618 -38.976921 L -14.933618 -36.143107 M -11.006258 -38.976921 L -11.006258 -36.143107 M -7.682504 -38.976921 L -7.682504 -36.143107 M -4.805576 -38.976921 L -4.805576 -36.143107 M -2.269646 -38.976921 L -2.269646 -36.143107 M -0.000243561 -38.976921 L -0.000243561 -36.143107 M 14.933131 -38.976921 L 14.933131 -36.143107 M 23.669743 -38.976921 L 23.669743 -36.143107 M 29.866505 -38.976921 L 29.866505 -36.143107 M 34.675757 -38.976921 L 34.675757 -36.143107 M 38.603117 -38.976921 L 38.603117 -36.143107 M 41.922951 -38.976921 L 41.922951 -36.143107 M 44.799879 -38.976921 L 44.799879 -36.143107 M 47.339729 -38.976921 L 47.339729 -36.143107 M 49.609131 -38.976921 L 49.609131 -36.143107 M 64.542506 -38.976921 L 64.542506 -36.143107 M 73.275198 -38.976921 L 73.275198 -36.143107 M 79.47588 -38.976921 L 79.47588 -36.143107 M 84.281213 -38.976921 L 84.281213 -36.143107 M 88.212492 -38.976921 L 88.212492 -36.143107 M 91.532326 -38.976921 L 91.532326 -36.143107 M 94.409254 -38.976921 L 94.409254 -36.143107 M 96.945184 -38.976921 L 96.945184 -36.143107 M 99.214587 -38.976921 L 99.214587 -36.143107 M 114.147961 -38.976921 L 114.147961 -36.143107 M 122.884573 -38.976921 L 122.884573 -36.143107 M 129.081336 -38.976921 L 129.081336 -36.143107 M 133.890588 -38.976921 L 133.890588 -36.143107 M 137.817947 -38.976921 L 137.817947 -36.143107 M 141.137782 -38.976921 L 141.137782 -36.143107 M 144.01471 -38.976921 L 144.01471 -36.143107 M 146.554559 -38.976921 L 146.554559 -36.143107 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 -34.724241 M -0.000243561 -38.976921 L -0.000243561 -34.724241 M 49.609131 -38.976921 L 49.609131 -34.724241 M 99.214587 -38.976921 L 99.214587 -34.724241 M 148.823962 -38.976921 L 148.823962 -34.724241 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -46.775805 -38.976921 M -49.609619 -35.065239 L -46.775805 -35.065239 M -49.609619 -32.776239 L -46.775805 -32.776239 M -49.609619 -31.153557 L -46.775805 -31.153557 M -49.609619 -29.895391 L -46.775805 -29.895391 M -49.609619 -28.868477 L -46.775805 -28.868477 M -49.609619 -27.998343 L -46.775805 -27.998343 M -49.609619 -27.241876 L -46.775805 -27.241876 M -49.609619 -26.579477 L -46.775805 -26.579477 M -49.609619 -25.98371 L -46.775805 -25.98371 M -49.609619 -22.072028 L -46.775805 -22.072028 M -49.609619 -19.786947 L -46.775805 -19.786947 M -49.609619 -18.164265 L -46.775805 -18.164265 M -49.609619 -16.90218 L -46.775805 -16.90218 M -49.609619 -15.875265 L -46.775805 -15.875265 M -49.609619 -15.005132 L -46.775805 -15.005132 M -49.609619 -14.252584 L -46.775805 -14.252584 M -49.609619 -13.586265 L -46.775805 -13.586265 M -49.609619 -12.990498 L -46.775805 -12.990498 M -49.609619 -9.082736 L -46.775805 -9.082736 M -49.609619 -6.793736 L -46.775805 -6.793736 M -49.609619 -5.171054 L -46.775805 -5.171054 M -49.609619 -3.912888 L -46.775805 -3.912888 M -49.609619 -2.882054 L -46.775805 -2.882054 M -49.609619 -2.01192 L -46.775805 -2.01192 M -49.609619 -1.259372 L -46.775805 -1.259372 M -49.609619 -0.593054 L -46.775805 -0.593054 M -49.609619 -0.00120602 L -46.775805 -0.00120602 M -49.609619 3.910476 L -46.775805 3.910476 M -49.609619 6.199476 L -46.775805 6.199476 M -49.609619 7.822158 L -46.775805 7.822158 M -49.609619 9.080324 L -46.775805 9.080324 M -49.609619 10.111158 L -46.775805 10.111158 M -49.609619 10.981291 L -46.775805 10.981291 M -49.609619 11.733839 L -46.775805 11.733839 M -49.609619 12.396238 L -46.775805 12.396238 M -49.609619 12.992005 L -46.775805 12.992005 M -49.609619 16.903687 L -46.775805 16.903687 M -49.609619 19.192687 L -46.775805 19.192687 M -49.609619 20.815369 L -46.775805 20.815369 M -49.609619 22.073535 L -46.775805 22.073535 M -49.609619 23.10045 L -46.775805 23.10045 M -49.609619 23.970583 L -46.775805 23.970583 M -49.609619 24.727051 L -46.775805 24.727051 M -49.609619 25.38945 L -46.775805 25.38945 M -49.609619 25.985217 L -46.775805 25.985217 M -49.609619 29.896899 L -46.775805 29.896899 M -49.609619 32.181979 L -46.775805 32.181979 M -49.609619 33.808581 L -46.775805 33.808581 M -49.609619 35.066747 L -46.775805 35.066747 M -49.609619 36.093661 L -46.775805 36.093661 M -49.609619 36.963795 L -46.775805 36.963795 M -49.609619 37.716343 L -46.775805 37.716343 M -49.609619 38.382661 L -46.775805 38.382661 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -45.360858 -38.976921 M -49.609619 -25.98371 L -45.360858 -25.98371 M -49.609619 -12.990498 L -45.360858 -12.990498 M -49.609619 -0.00120602 L -45.360858 -0.00120602 M -49.609619 12.992005 L -45.360858 12.992005 M -49.609619 25.985217 L -45.360858 25.985217 M -49.609619 38.978429 L -45.360858 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L 148.823962 -38.976921 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -38.976921 L -49.609619 38.978429 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.127019" y="72.589432"/>
<use xlink:href="#glyph0-2" x="24.091453" y="72.589432"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.056286" y="68.986671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.262203" y="68.986671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.331939" y="46.692412"/>
<use xlink:href="#glyph0-2" x="30.296373" y="46.692412"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="35.261206" y="43.089652"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.331939" y="20.795393"/>
<use xlink:href="#glyph0-2" x="30.296373" y="20.795393"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.261206" y="17.192633"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.724323 39.076417 L 3.825209 20.160809 L 10.774519 16.684194 L 16.136424 14.077713 L 20.706585 11.937654 L 24.876955 10.064123 L 28.651454 8.441442 L 32.425952 6.897151 L 36.000555 5.505721 L 39.775054 4.106452 L 43.945424 2.632712 L 49.111352 0.872847 L 65.200985 -4.55177 L 71.354633 -6.727104 L 85.261093 -11.673539 L 89.631359 -13.143359 L 93.797809 -14.479916 L 97.776123 -15.694967 L 101.746597 -16.851226 L 105.720991 -17.948692 L 109.691466 -18.991284 L 113.66586 -19.979004 L 117.240463 -20.813862 L 120.61909 -21.554651 L 123.793902 -22.205291 L 126.972633 -22.801059 L 129.951469 -23.314516 L 133.130201 -23.812295 L 141.470941 -25.08222 L 143.062266 -25.391862 L 144.453696 -25.717182 L 145.645231 -26.050341 L 146.836765 -26.438374 L 148.028299 -26.893038 L 148.823962 -27.234037 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.724323 39.033302 L -14.251621 29.465751 L 0.646477 21.783491 L 8.591346 17.769901 L 14.545098 14.842019 L 19.515051 12.486387 L 23.685421 10.58542 L 27.655895 8.852992 L 31.434313 7.285183 L 35.008916 5.870236 L 38.779495 4.45137 L 42.75389 3.024664 L 47.520027 1.378465 L 65.992728 -4.920205 L 71.554529 -6.930919 L 87.444266 -12.72789 L 91.614636 -14.154596 L 95.58903 -15.444118 L 99.363529 -16.608216 L 103.138027 -17.71744 L 106.912526 -18.767872 L 110.687024 -19.76343 L 114.461523 -20.700195 L 118.036126 -21.535053 L 121.410833 -22.271923 L 124.589565 -22.910805 L 127.568401 -23.463458 L 130.547236 -23.969076 L 133.725968 -24.462935 L 141.075069 -25.576079 L 142.662475 -25.873963 L 144.057825 -26.183605 L 145.249359 -26.501086 L 146.440893 -26.865602 L 147.632428 -27.300669 L 148.823962 -27.802367 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.924218 39.056819 L 4.22108 19.835489 L 11.170391 16.358874 L 16.536215 13.756312 L 21.102457 11.620173 L 25.272827 9.750562 L 29.047325 8.1318 L 32.821824 6.591428 L 36.596322 5.125527 L 40.570716 3.659626 L 44.940982 2.115335 L 51.098549 0.0105525 L 59.835161 -2.980042 L 64.605218 -4.681114 L 68.975484 -6.303795 L 73.741621 -8.14989 L 79.899188 -10.611349 L 88.6358 -14.103642 L 93.006066 -15.777277 L 96.780564 -17.153029 L 100.359087 -18.387678 L 103.733794 -19.485144 L 107.112421 -20.523817 L 110.487129 -21.499778 L 113.66586 -22.362072 L 116.844592 -23.169494 L 120.023323 -23.922042 L 123.002159 -24.572682 L 125.980995 -25.172369 L 128.95983 -25.721102 L 131.938666 -26.218881 L 135.513269 -26.767614 L 140.283326 -27.492725 L 142.070628 -27.814126 L 143.458138 -28.10417 L 144.849568 -28.449088 L 146.041102 -28.801845 L 147.232636 -29.213395 L 148.42809 -29.691576 L 148.823962 -29.867955 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.124114 39.041141 L 4.420976 19.615996 L 11.370286 16.1433 L 16.732191 13.544658 L 21.302352 11.408519 L 25.472722 9.542827 L 29.247221 7.927985 L 33.021719 6.387613 L 36.796218 4.925632 L 40.766692 3.455811 L 45.336854 1.837049 L 52.685955 -0.687122 L 59.239394 -2.964364 L 63.805636 -4.614482 L 67.979926 -6.194049 L 72.150296 -7.840248 L 76.720457 -9.717698 L 83.07792 -12.410409 L 91.41866 -15.937978 L 95.788926 -17.705682 L 99.563424 -19.159824 L 102.938132 -20.394473 L 106.116863 -21.488019 L 109.295594 -22.514934 L 112.27443 -23.416423 L 115.253266 -24.26304 L 118.236021 -25.046944 L 121.014962 -25.725021 L 123.793902 -26.352144 L 126.576762 -26.928314 L 129.355702 -27.45353 L 132.138562 -27.931711 L 135.513269 -28.460847 L 140.479302 -29.236912 L 142.266604 -29.566152 L 143.654114 -29.867955 L 145.049463 -30.224631 L 146.240998 -30.585227 L 147.432532 -31.008535 L 148.624066 -31.502395 L 148.823962 -31.592544 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.528347 39.04898 L 3.625313 20.341107 L 10.574624 16.856653 L 16.136424 14.152184 L 20.706585 12.012125 L 24.876955 10.134675 L 28.651454 8.515913 L 32.226057 7.050012 L 35.80066 5.658582 L 39.575158 4.255394 L 43.745528 2.777734 L 48.911457 1.017869 L 62.418125 -3.548372 L 67.384158 -5.316076 L 72.746063 -7.295434 L 88.6358 -13.209991 L 92.80617 -14.660214 L 96.584588 -15.906622 L 100.359087 -17.086397 L 104.129666 -18.203461 L 107.904165 -19.261731 L 111.678663 -20.25729 L 115.253266 -21.147021 L 118.631893 -21.934845 L 121.810624 -22.62468 L 124.985436 -23.263562 L 127.964272 -23.812295 L 130.947027 -24.313994 L 134.325654 -24.83529 L 140.679198 -25.791653 L 142.466499 -26.120893 L 143.85401 -26.426615 L 145.049463 -26.732338 L 146.240998 -27.089014 L 147.432532 -27.512323 L 148.624066 -28.002263 L 148.823962 -28.088492 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.719881 39.056819 L 5.212719 18.92224 L 11.966053 15.555372 L 17.327958 12.968488 L 21.898119 10.844108 L 25.872513 9.072485 L 29.643092 7.465481 L 33.417591 5.932948 L 37.192089 4.470967 L 41.166484 3.005066 L 45.932621 1.319672 L 61.226591 -4.038312 L 65.200985 -5.53165 L 68.975484 -7.021068 L 72.746063 -8.581037 L 76.520561 -10.215477 L 80.690932 -12.104686 L 85.460988 -14.342733 L 91.218764 -17.137351 L 99.76332 -21.378273 L 111.082896 -26.987107 L 116.644696 -29.656301 L 121.014962 -31.678773 L 124.78946 -33.348489 L 128.364063 -34.857505 L 131.74269 -36.20582 L 135.317293 -37.558055 L 139.287768 -39.012197 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.124114 39.009785 L 4.021185 19.784535 L 10.970495 16.304001 L 16.536215 13.603451 L 21.102457 11.463392 L 25.272827 9.593781 L 29.047325 7.971099 L 32.821824 6.430728 L 36.596322 4.960907 L 40.570716 3.487168 L 45.136958 1.864486 L 52.290084 -0.596973 L 59.043418 -2.944766 L 63.409764 -4.528253 L 67.384158 -6.029429 L 71.354633 -7.601157 L 75.728818 -9.404136 L 80.890827 -11.610827 L 95.193159 -17.776233 L 99.167553 -19.387156 L 102.742156 -20.762908 L 105.920887 -21.915247 L 109.095699 -23.000954 L 112.074535 -23.953398 L 115.05729 -24.843129 L 117.83623 -25.615275 L 120.61909 -26.328627 L 123.39803 -26.987107 L 126.18089 -27.590713 L 128.95983 -28.135526 L 131.74269 -28.633306 L 134.917502 -29.150682 L 140.875174 -30.099206 L 142.662475 -30.444124 L 144.057825 -30.761605 L 145.249359 -31.079087 L 146.440893 -31.455361 L 147.632428 -31.890427 L 148.823962 -32.396046 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.315648 38.994107 L 5.808486 18.252002 L 12.361925 14.994881 L 17.527854 12.505985 L 22.098015 10.385524 L 26.068489 8.62174 L 29.842988 7.018656 L 33.617486 5.493962 L 37.391985 4.047659 L 41.36246 2.589597 L 45.932621 0.986513 L 53.281722 -1.514141 L 60.430928 -3.967761 L 65.396961 -5.739385 L 70.167018 -7.511008 L 75.728818 -9.651066 L 88.239929 -14.491674 L 92.410299 -16.020288 L 96.184797 -17.333327 L 99.76332 -18.517022 L 103.337923 -19.634086 L 106.912526 -20.684517 L 110.487129 -21.680076 L 113.865756 -22.561968 L 117.240463 -23.388987 L 120.419195 -24.114098 L 123.597926 -24.784336 L 126.576762 -25.364425 L 129.555598 -25.893561 L 132.534433 -26.375662 L 136.508828 -26.967509 L 140.08343 -27.512323 L 141.870732 -27.825884 L 143.458138 -28.155124 L 144.849568 -28.496122 L 146.041102 -28.84496 L 147.232636 -29.256509 L 148.42809 -29.734691 L 148.823962 -29.911069 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.724323 39.056819 L 4.021185 20.043223 L 10.970495 16.562689 L 16.336319 13.960127 L 20.90648 11.820069 L 25.076851 9.942618 L 28.84743 8.323856 L 32.625848 6.779565 L 36.400346 5.309745 L 40.170925 3.914395 L 44.541191 2.366185 L 50.302887 0.398585 L 61.426487 -3.383752 L 66.588496 -5.218088 L 71.95432 -7.193527 L 89.431463 -13.699931 L 93.401938 -15.071764 L 97.180356 -16.310332 L 100.954854 -17.482269 L 104.729353 -18.591493 L 108.499932 -19.641925 L 112.074535 -20.57869 L 115.653057 -21.460583 L 119.027765 -22.244487 L 122.206496 -22.926483 L 125.185332 -23.52225 L 128.164168 -24.067064 L 131.146923 -24.564843 L 134.52163 -25.08222 L 140.479302 -25.97979 L 142.266604 -26.301191 L 143.654114 -26.599074 L 144.849568 -26.896958 L 146.041102 -27.245795 L 147.232636 -27.657345 L 148.42809 -28.135526 L 148.823962 -28.307985 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.511624 39.076417 L -9.881356 26.275262 L 2.033988 20.141211 L 9.582985 16.343196 L 15.34468 13.52506 L 20.110818 11.275255 L 24.281188 9.386046 L 28.251662 7.665377 L 32.030081 6.109327 L 35.80066 4.627748 L 39.575158 3.216721 L 43.745528 1.731222 L 49.111352 -0.110953 L 61.626382 -4.38323 L 66.588496 -6.162693 L 71.554529 -8.012707 L 78.307863 -10.59959 L 86.252732 -13.633299 L 90.622997 -15.232464 L 94.597391 -16.616055 L 98.37189 -17.862462 L 101.946493 -18.983445 L 105.521096 -20.041716 L 109.095699 -21.041194 L 112.670302 -21.985798 L 116.048929 -22.820656 L 119.427556 -23.60456 L 122.602368 -24.286557 L 125.585123 -24.878405 L 128.560039 -25.423218 L 131.542795 -25.917078 L 134.917502 -26.430535 L 140.283326 -27.237956 L 142.070628 -27.555437 L 143.458138 -27.845482 L 144.849568 -28.1904 L 146.041102 -28.539237 L 147.232636 -28.950787 L 148.42809 -29.428968 L 148.823962 -29.601427 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.511624 39.013704 L 6.008382 18.071704 L 12.561821 14.814583 L 17.727749 12.329606 L 22.098015 10.307134 L 26.068489 8.543349 L 29.842988 6.944185 L 33.417591 5.497882 L 37.192089 4.047659 L 41.166484 2.593517 L 45.536749 1.060984 L 51.694317 -1.024201 L 61.226591 -4.249967 L 66.588496 -6.139176 L 72.150296 -8.161648 L 87.24829 -13.699931 L 91.41866 -15.138395 L 95.393054 -16.439676 L 99.167553 -17.615533 L 102.938132 -18.732596 L 106.71263 -19.790867 L 110.487129 -20.790344 L 114.261627 -21.734949 L 117.83623 -22.577646 L 121.214857 -23.314516 L 124.389669 -23.961237 L 127.368505 -24.517809 L 130.35126 -25.023427 L 133.529992 -25.521206 L 141.274965 -26.697062 L 142.862371 -27.006704 L 144.253801 -27.324186 L 145.445335 -27.645586 L 146.636869 -28.02578 L 147.828404 -28.468686 L 148.823962 -28.891994 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.724323 39.017624 L 4.021185 20.004028 L 10.970495 16.527413 L 16.336319 13.920932 L 20.90648 11.780874 L 25.076851 9.907343 L 28.84743 8.284661 L 32.625848 6.74037 L 36.400346 5.274469 L 40.170925 3.8752 L 44.541191 2.326989 L 50.302887 0.35939 L 61.026696 -3.293604 L 65.992728 -5.061307 L 70.958761 -6.891724 L 77.712096 -9.45901 L 85.85686 -12.547592 L 90.227126 -14.134998 L 94.1976 -15.51075 L 97.976018 -16.753238 L 101.550621 -17.866382 L 105.125224 -18.924653 L 108.699827 -19.920211 L 112.27443 -20.864815 L 115.849033 -21.750627 L 119.22766 -22.534531 L 122.406392 -23.216528 L 125.385227 -23.812295 L 128.364063 -24.357108 L 131.342899 -24.850968 L 134.721526 -25.368345 L 140.479302 -26.234559 L 142.266604 -26.559879 L 143.654114 -26.857763 L 144.849568 -27.155646 L 146.041102 -27.504484 L 147.232636 -27.912114 L 148.42809 -28.394215 L 148.823962 -28.566674 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.724323 39.021543 L 4.021185 20.004028 L 10.970495 16.523494 L 16.336319 13.920932 L 20.90648 11.776954 L 25.076851 9.903423 L 28.84743 8.280741 L 32.625848 6.732531 L 36.400346 5.26663 L 40.370821 3.79289 L 44.737167 2.244679 L 50.698758 0.206529 L 60.234952 -3.054513 L 65.200985 -4.822217 L 69.967123 -6.589921 L 75.528923 -8.729979 L 88.239929 -13.645058 L 92.410299 -15.173671 L 96.184797 -16.486711 L 99.76332 -17.666486 L 103.337923 -18.78355 L 106.912526 -19.837901 L 110.487129 -20.82954 L 113.865756 -21.707512 L 117.240463 -22.534531 L 120.419195 -23.259643 L 123.597926 -23.9338 L 126.576762 -24.50997 L 129.555598 -25.039105 L 132.534433 -25.525126 L 136.508828 -26.116973 L 140.08343 -26.657867 L 141.870732 -26.971429 L 143.458138 -27.300669 L 144.849568 -27.645586 L 146.041102 -27.994424 L 147.232636 -28.405973 L 148.42809 -28.884155 L 148.823962 -29.060533 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.915857 39.068577 L 6.008382 18.4323 L 12.561821 15.175179 L 17.727749 12.690202 L 22.293991 10.573661 L 26.268385 8.809877 L 30.042884 7.210712 L 33.817382 5.686019 L 37.587961 4.235796 L 41.762251 2.707183 L 46.728284 0.955157 L 60.430928 -3.826658 L 64.605218 -5.374869 L 68.379717 -6.844689 L 72.150296 -8.385061 L 76.12469 -10.082214 L 80.494955 -12.030215 L 85.656964 -14.413284 L 94.1976 -18.45431 L 101.550621 -21.899569 L 106.116863 -23.957317 L 109.891362 -25.583918 L 113.066173 -26.88128 L 116.048929 -28.02578 L 118.827869 -29.021338 L 121.410833 -29.883633 L 123.793902 -30.616583 L 126.18089 -31.29466 L 128.560039 -31.910025 L 130.947027 -32.470516 L 133.330096 -32.980054 L 136.308932 -33.564063 L 141.470941 -34.555702 L 143.062266 -34.912378 L 144.453696 -35.272974 L 145.645231 -35.62965 L 146.836765 -36.0412 L 148.028299 -36.519381 L 148.823962 -36.872138 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.519986 38.998026 L 1.042349 21.066218 L 8.787322 17.154537 L 14.744994 14.226655 L 19.515051 11.965091 L 23.885316 9.973974 L 27.855791 8.241546 L 31.630289 6.669818 L 35.404788 5.1804 L 39.379182 3.683144 L 43.745528 2.107496 L 49.707119 0.0379892 L 58.247755 -2.936927 L 62.618021 -4.532172 L 66.39252 -5.970636 L 70.167018 -7.483571 L 73.937597 -9.067058 L 77.908072 -10.815164 L 82.282257 -12.821959 L 87.24829 -15.18151 L 93.401938 -18.199541 L 104.529457 -23.753502 L 113.066173 -27.982665 L 118.631893 -30.651859 L 123.198135 -32.7684 L 127.368505 -34.622333 L 131.342899 -36.307727 L 136.308932 -38.33412 L 137.896338 -38.980841 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.32009 39.068577 L 0.246686 21.724698 L 8.191555 17.730706 L 14.345203 14.716595 L 19.315155 12.368802 L 23.685421 10.377685 L 27.655895 8.653096 L 31.434313 7.085288 L 35.204892 5.59587 L 38.979391 4.173084 L 43.149761 2.675827 L 48.31569 0.888525 L 61.226591 -3.544453 L 65.796752 -5.198491 L 70.362994 -6.91916 L 75.528923 -8.937713 L 90.622997 -14.895385 L 94.597391 -16.357366 L 98.171994 -17.611613 L 101.746597 -18.799228 L 105.125224 -19.853579 L 108.499932 -20.849137 L 111.874639 -21.785903 L 115.253266 -22.663875 L 118.431997 -23.436021 L 121.610729 -24.153293 L 124.589565 -24.772578 L 127.568401 -25.340908 L 130.547236 -25.858285 L 133.725968 -26.359984 L 141.274965 -27.524081 L 142.862371 -27.833723 L 144.253801 -28.155124 L 145.445335 -28.476525 L 146.636869 -28.856718 L 147.828404 -29.299624 L 148.823962 -29.722932 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.511624 39.056819 L 4.021185 19.098619 L 10.970495 15.622004 L 16.336319 13.015523 L 20.90648 10.875464 L 25.076851 9.001933 L 28.84743 7.379252 L 32.625848 5.83888 L 36.400346 4.36906 L 40.170925 2.97371 L 44.541191 1.4255 L 50.102991 -0.471549 L 61.626382 -4.38715 L 66.788391 -6.221486 L 72.150296 -8.193005 L 88.6358 -14.319216 L 92.606275 -15.694967 L 96.384693 -16.941375 L 100.159191 -18.121151 L 103.93369 -19.238214 L 107.708189 -20.296485 L 111.478768 -21.292043 L 115.05729 -22.185694 L 118.431997 -22.973518 L 121.610729 -23.667273 L 124.78946 -24.306155 L 127.768296 -24.858807 L 130.747132 -25.364425 L 134.125759 -25.885722 L 140.875174 -26.904797 L 142.466499 -27.202681 L 143.85401 -27.504484 L 145.049463 -27.810206 L 146.240998 -28.170802 L 147.432532 -28.590191 L 148.624066 -29.080131 L 148.823962 -29.17028 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip11)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.915857 39.041141 L 5.412615 18.702747 L 11.966053 15.437786 L 17.327958 12.846983 L 21.898119 10.722603 L 25.872513 8.954899 L 29.643092 7.343976 L 33.417591 5.815363 L 37.192089 4.353382 L 41.166484 2.8914 L 45.932621 1.202087 L 61.626382 -4.285242 L 65.596857 -5.77858 L 69.371355 -7.260159 L 73.145854 -8.812289 L 77.312305 -10.607429 L 82.082361 -12.739649 L 88.439824 -15.667531 L 98.767762 -20.433668 L 103.337923 -22.452221 L 107.112421 -24.043547 L 110.287233 -25.309552 L 113.266069 -26.430535 L 116.048929 -27.410415 L 118.631893 -28.257032 L 121.214857 -29.044855 L 123.597926 -29.711174 L 125.980995 -30.326539 L 128.364063 -30.88703 L 130.747132 -31.400487 L 133.330096 -31.902186 L 136.508828 -32.466597 L 140.875174 -33.238743 L 142.662475 -33.607178 L 144.057825 -33.936417 L 145.445335 -34.328369 L 146.636869 -34.720321 L 147.828404 -35.178905 L 148.823962 -35.610053 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.124114 39.029382 L -2.73215 22.986784 L 5.412615 18.808574 L 11.766158 15.629843 L 16.932086 13.129189 L 21.502248 10.99305 L 25.672618 9.127358 L 29.443197 7.512515 L 33.221615 5.976063 L 36.996113 4.514082 L 40.966588 3.044262 L 45.732725 1.354948 L 61.822358 -4.289162 L 65.796752 -5.786419 L 69.571251 -7.279756 L 73.34183 -8.847565 L 77.312305 -10.572154 L 81.68649 -12.551512 L 86.852418 -14.965937 L 94.993263 -18.873699 L 103.337923 -22.848093 L 108.10406 -25.039105 L 111.874639 -26.693143 L 115.253266 -28.100251 L 118.236021 -29.268268 L 121.014962 -30.287343 L 123.597926 -31.165316 L 125.980995 -31.913945 L 128.364063 -32.599861 L 130.747132 -33.223064 L 133.130201 -33.795315 L 135.713165 -34.359726 L 142.662475 -35.841304 L 144.253801 -36.256774 L 145.645231 -36.684001 L 146.836765 -37.10731 L 148.028299 -37.59333 L 148.823962 -37.957846 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip12)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.511624 39.029382 L 5.212719 18.506771 L 11.966053 15.143822 L 17.327958 12.556939 L 21.898119 10.436478 L 25.872513 8.668774 L 29.643092 7.06177 L 33.417591 5.537077 L 37.192089 4.082935 L 41.166484 2.628792 L 45.732725 1.025708 L 52.48606 -1.267211 L 60.630824 -4.046152 L 65.596857 -5.806016 L 70.56289 -7.632513 L 76.916433 -10.043018 L 85.85686 -13.429484 L 90.227126 -15.012971 L 94.1976 -16.388723 L 97.976018 -17.631211 L 101.550621 -18.744355 L 105.125224 -19.798706 L 108.699827 -20.798183 L 112.27443 -21.738868 L 115.849033 -22.62468 L 119.22766 -23.404665 L 122.406392 -24.090581 L 125.385227 -24.682429 L 128.364063 -25.227242 L 131.342899 -25.725021 L 134.721526 -26.242398 L 140.479302 -27.108612 L 142.266604 -27.433932 L 143.654114 -27.727896 L 144.849568 -28.02578 L 146.041102 -28.374617 L 147.232636 -28.786167 L 148.42809 -29.264348 L 148.823962 -29.440727 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g clip-path="url(#clip13)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.519986 39.033302 L 5.012824 19.098619 L 11.766158 15.731751 L 17.131982 13.137028 L 21.698224 11.008728 L 25.872513 9.150875 L 29.643092 7.539952 L 33.417591 6.007419 L 37.192089 4.549358 L 41.166484 3.083457 L 45.932621 1.394143 L 61.426487 -4.034393 L 65.396961 -5.52773 L 69.17146 -7.017148 L 72.945958 -8.581037 L 76.916433 -10.305626 L 81.090723 -12.190916 L 85.85686 -14.428962 L 92.014427 -17.403878 L 109.295594 -25.799492 L 113.66586 -27.818045 L 117.440359 -29.479922 L 120.61909 -30.80864 L 123.597926 -31.976657 L 126.18089 -32.925181 L 128.759935 -33.803154 L 131.146923 -34.555702 L 133.529992 -35.249457 L 136.308932 -35.994166 L 143.258242 -37.812823 L 144.849568 -38.314522 L 146.240998 -38.816221 L 146.836765 -39.055311 " transform="matrix(0.996614,0,0,-0.996614,92.96118,42.651142)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="11.252771" y="80.712834"/>
<use xlink:href="#glyph3-2" x="11.252771" y="71.61104"/>
<use xlink:href="#glyph3-3" x="11.252771" y="66.646606"/>
<use xlink:href="#glyph3-4" x="11.252771" y="61.682172"/>
<use xlink:href="#glyph3-5" x="11.252771" y="56.166685"/>
<use xlink:href="#glyph3-6" x="11.252771" y="53.408446"/>
<use xlink:href="#glyph3-7" x="11.252771" y="49.547109"/>
<use xlink:href="#glyph3-8" x="11.252771" y="44.031622"/>
<use xlink:href="#glyph3-9" x="11.252771" y="38.516136"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="11.252771" y="30.796441"/>
<use xlink:href="#glyph3-11" x="11.252771" y="28.038201"/>
<use xlink:href="#glyph3-12" x="11.252771" y="19.764475"/>
<use xlink:href="#glyph3-13" x="11.252771" y="14.800041"/>
<use xlink:href="#glyph3-14" x="11.252771" y="7.35339"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 145.0625 L 241.28125 145.0625 L 241.28125 88.5625 L 43.519531 88.5625 Z M 43.519531 145.0625 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.121717 L -49.609619 56.813666 M -34.676244 0.121717 L -34.676244 56.813666 M -25.939632 0.121717 L -25.939632 56.813666 M -19.74287 0.121717 L -19.74287 56.813666 M -14.933618 0.121717 L -14.933618 56.813666 M -11.006258 0.121717 L -11.006258 56.813666 M -7.682504 0.121717 L -7.682504 56.813666 M -4.805576 0.121717 L -4.805576 56.813666 M -2.269646 0.121717 L -2.269646 56.813666 M -0.000243561 0.121717 L -0.000243561 56.813666 M 14.933131 0.121717 L 14.933131 56.813666 M 23.669743 0.121717 L 23.669743 56.813666 M 29.866505 0.121717 L 29.866505 56.813666 M 34.675757 0.121717 L 34.675757 56.813666 M 38.603117 0.121717 L 38.603117 56.813666 M 41.922951 0.121717 L 41.922951 56.813666 M 44.799879 0.121717 L 44.799879 56.813666 M 47.339729 0.121717 L 47.339729 56.813666 M 49.609131 0.121717 L 49.609131 56.813666 M 64.542506 0.121717 L 64.542506 56.813666 M 73.275198 0.121717 L 73.275198 56.813666 M 79.47588 0.121717 L 79.47588 56.813666 M 84.281213 0.121717 L 84.281213 56.813666 M 88.212492 0.121717 L 88.212492 56.813666 M 91.532326 0.121717 L 91.532326 56.813666 M 94.409254 0.121717 L 94.409254 56.813666 M 96.945184 0.121717 L 96.945184 56.813666 M 99.214587 0.121717 L 99.214587 56.813666 M 114.147961 0.121717 L 114.147961 56.813666 M 122.884573 0.121717 L 122.884573 56.813666 M 129.081336 0.121717 L 129.081336 56.813666 M 133.890588 0.121717 L 133.890588 56.813666 M 137.817947 0.121717 L 137.817947 56.813666 M 141.137782 0.121717 L 141.137782 56.813666 M 144.01471 0.121717 L 144.01471 56.813666 M 146.554559 0.121717 L 146.554559 56.813666 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.121717 L -49.609619 56.813666 M -0.000243561 0.121717 L -0.000243561 56.813666 M 49.609131 0.121717 L 49.609131 56.813666 M 99.214587 0.121717 L 99.214587 56.813666 M 148.823962 0.121717 L 148.823962 56.813666 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.121717 L 148.823962 0.121717 M -49.609619 19.021646 L 148.823962 19.021646 M -49.609619 37.917656 L 148.823962 37.917656 M -49.609619 56.813666 L 148.823962 56.813666 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.121717 L -49.609619 2.95945 M -34.676244 0.121717 L -34.676244 2.95945 M -25.939632 0.121717 L -25.939632 2.95945 M -19.74287 0.121717 L -19.74287 2.95945 M -14.933618 0.121717 L -14.933618 2.95945 M -11.006258 0.121717 L -11.006258 2.95945 M -7.682504 0.121717 L -7.682504 2.95945 M -4.805576 0.121717 L -4.805576 2.95945 M -2.269646 0.121717 L -2.269646 2.95945 M -0.000243561 0.121717 L -0.000243561 2.95945 M 14.933131 0.121717 L 14.933131 2.95945 M 23.669743 0.121717 L 23.669743 2.95945 M 29.866505 0.121717 L 29.866505 2.95945 M 34.675757 0.121717 L 34.675757 2.95945 M 38.603117 0.121717 L 38.603117 2.95945 M 41.922951 0.121717 L 41.922951 2.95945 M 44.799879 0.121717 L 44.799879 2.95945 M 47.339729 0.121717 L 47.339729 2.95945 M 49.609131 0.121717 L 49.609131 2.95945 M 64.542506 0.121717 L 64.542506 2.95945 M 73.275198 0.121717 L 73.275198 2.95945 M 79.47588 0.121717 L 79.47588 2.95945 M 84.281213 0.121717 L 84.281213 2.95945 M 88.212492 0.121717 L 88.212492 2.95945 M 91.532326 0.121717 L 91.532326 2.95945 M 94.409254 0.121717 L 94.409254 2.95945 M 96.945184 0.121717 L 96.945184 2.95945 M 99.214587 0.121717 L 99.214587 2.95945 M 114.147961 0.121717 L 114.147961 2.95945 M 122.884573 0.121717 L 122.884573 2.95945 M 129.081336 0.121717 L 129.081336 2.95945 M 133.890588 0.121717 L 133.890588 2.95945 M 137.817947 0.121717 L 137.817947 2.95945 M 141.137782 0.121717 L 141.137782 2.95945 M 144.01471 0.121717 L 144.01471 2.95945 M 146.554559 0.121717 L 146.554559 2.95945 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.121717 L -49.609619 4.374397 M -0.000243561 0.121717 L -0.000243561 4.374397 M 49.609131 0.121717 L 49.609131 4.374397 M 99.214587 0.121717 L 99.214587 4.374397 M 148.823962 0.121717 L 148.823962 4.374397 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.121717 L -45.360858 0.121717 M -49.609619 19.021646 L -45.360858 19.021646 M -49.609619 37.917656 L -45.360858 37.917656 M -49.609619 56.813666 L -45.360858 56.813666 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.121717 L 148.823962 0.121717 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 0.121717 L -49.609619 56.813666 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="33.227117" y="156.948835"/>
<use xlink:href="#glyph0-2" x="38.191551" y="156.948835"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="43.156384" y="153.346075"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="49.3623" y="153.346075"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="85.769612" y="156.948835"/>
<use xlink:href="#glyph0-2" x="90.734047" y="156.948835"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="95.698879" y="153.346075"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="135.209648" y="156.948835"/>
<use xlink:href="#glyph0-2" x="140.174082" y="156.948835"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="145.138915" y="153.346075"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="184.649684" y="156.948835"/>
<use xlink:href="#glyph0-2" x="189.614118" y="156.948835"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="194.578951" y="153.346075"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="234.08972" y="156.948835"/>
<use xlink:href="#glyph0-2" x="239.054154" y="156.948835"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="244.018987" y="153.346075"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="17.098909" y="147.773008"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="24.821673" y="147.773008"/>
<use xlink:href="#glyph0-4" x="29.786107" y="147.773008"/>
<use xlink:href="#glyph0-2" x="34.750541" y="147.773008"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="17.098909" y="128.93999"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="24.821673" y="128.93999"/>
<use xlink:href="#glyph0-5" x="29.786107" y="128.93999"/>
<use xlink:href="#glyph0-2" x="34.750541" y="128.93999"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="22.064041" y="110.106972"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="29.786804" y="110.106972"/>
<use xlink:href="#glyph0-2" x="34.751239" y="110.106972"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="34.75094" y="91.686552"/>
</g>
<g clip-path="url(#clip14)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.14054 L -47.822317 23.779944 L -46.031096 23.454624 L -44.243795 23.152821 L -42.456493 22.882374 L -40.869087 22.658961 L -39.281681 22.459066 L -37.690356 22.274848 L -36.10295 22.106309 L -34.511624 21.953448 L -32.924218 21.820184 L -31.532789 21.714357 L -30.141359 21.616369 L -28.753848 21.534059 L -27.562314 21.467427 L -26.37078 21.412554 L -25.175326 21.3616 L -24.183687 21.326324 L -23.192048 21.294968 L -22.200409 21.267531 L -21.404747 21.251853 L -20.613004 21.236175 L -19.813421 21.224417 L -19.217654 21.216578 L -18.02612 21.208739 L -16.038923 21.208739 L -15.643051 21.212658 L -15.047284 21.216578 L -13.85575 21.232256 L -13.060087 21.244014 L -12.268344 21.259692 L -11.472681 21.27929 L -10.481042 21.306727 L -9.485484 21.342002 L -8.493845 21.377278 L -7.302311 21.428232 L -6.110777 21.487025 L -4.919242 21.553657 L -3.527812 21.635966 L -2.136382 21.733954 L -0.744953 21.839782 L 0.646477 21.953448 L 2.233883 22.09847 L 3.825209 22.25917 L 5.412615 22.435549 L 7.199916 22.651122 L 8.987218 22.882374 L 10.774519 23.137143 L 12.761716 23.438946 L 14.744994 23.768186 L 16.932086 24.156218 L 19.119179 24.567768 L 21.698224 25.089064 L 24.680979 25.720107 L 28.651454 26.59808 L 34.609125 27.915039 L 37.391985 28.499047 L 39.775054 28.96547 L 41.762251 29.326066 L 43.545633 29.627869 L 45.336854 29.902236 L 46.92426 30.125649 L 48.515585 30.329464 L 49.907015 30.490164 L 51.294525 30.631267 L 52.685955 30.760611 L 54.077385 30.874277 L 55.26892 30.960506 L 56.460454 31.038897 L 57.651988 31.105529 L 58.843522 31.164322 L 60.035057 31.219195 L 61.426487 31.274068 L 62.813997 31.321102 L 64.605218 31.379895 L 68.775588 31.509239 L 70.167018 31.560193 L 71.554529 31.615066 L 72.746063 31.66602 L 73.937597 31.724813 L 75.133051 31.791445 L 76.520561 31.877674 L 77.908072 31.975662 L 79.299502 32.085409 L 80.890827 32.222592 L 82.482153 32.371534 L 84.269454 32.551832 L 86.252732 32.771325 L 88.835696 33.069209 L 93.006066 33.578746 L 97.180356 34.080445 L 99.76332 34.374409 L 101.946493 34.605661 L 103.93369 34.797717 L 105.720991 34.958418 L 107.308397 35.083842 L 108.699827 35.18183 L 109.891362 35.260221 L 111.082896 35.326853 L 112.074535 35.373887 L 113.066173 35.417002 L 113.865756 35.444438 L 114.657499 35.464036 L 115.253266 35.479714 L 115.849033 35.487553 L 116.248824 35.495392 L 116.644696 35.495392 L 117.044487 35.499312 L 117.636335 35.499312 L 118.036126 35.495392 L 118.827869 35.487553 L 119.22766 35.479714 L 119.823427 35.464036 L 120.419195 35.444438 L 121.014962 35.420921 L 121.810624 35.381726 L 122.602368 35.330772 L 123.39803 35.271979 L 124.193693 35.201428 L 124.985436 35.123038 L 125.980995 35.001532 L 126.972633 34.864349 L 127.964272 34.699729 L 128.95983 34.515512 L 129.951469 34.299938 L 130.947027 34.056928 L 131.938666 33.778642 L 133.130201 33.398448 L 134.325654 32.959462 L 135.513269 32.461683 L 136.704804 31.889433 L 137.896338 31.238792 L 139.091792 30.501923 L 140.283326 29.670984 L 141.470941 28.745977 L 142.862371 27.530926 L 144.253801 26.178691 L 145.845126 24.4737 L 147.828404 22.157263 L 148.823962 20.95005 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip15)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.273804 L -47.822317 23.921047 L -46.031096 23.595727 L -44.243795 23.297843 L -42.456493 23.027396 L -40.673111 22.780467 L -39.081786 22.580571 L -37.49046 22.396353 L -35.906974 22.227814 L -34.315648 22.074953 L -32.724323 21.93777 L -31.136917 21.816264 L -29.745487 21.718276 L -28.354057 21.632047 L -26.966547 21.557576 L -25.775012 21.498783 L -24.583478 21.447829 L -23.388024 21.404715 L -22.396386 21.373359 L -21.404747 21.345922 L -20.613004 21.326324 L -19.813421 21.314566 L -19.017759 21.302807 L -17.826224 21.287129 L -17.230457 21.28321 L -15.24718 21.28321 L -14.847388 21.287129 L -13.655854 21.294968 L -13.060087 21.302807 L -12.268344 21.318485 L -10.677018 21.349841 L -9.68538 21.377278 L -8.689821 21.412554 L -7.698182 21.447829 L -6.510568 21.498783 L -5.315114 21.557576 L -4.123579 21.624208 L -2.73215 21.710437 L -1.34072 21.804506 L 0.0507102 21.914252 L 1.438221 22.027919 L 3.029546 22.17686 L 4.616952 22.337561 L 6.204358 22.513939 L 7.995579 22.733432 L 9.78288 22.968604 L 11.570182 23.223372 L 13.553459 23.529095 L 15.540656 23.858335 L 17.727749 24.250287 L 20.110818 24.701032 L 22.693782 25.222328 L 25.872513 25.896486 L 36.796218 28.240359 L 39.179287 28.702862 L 41.166484 29.063458 L 42.953785 29.357422 L 44.737167 29.631789 L 46.328493 29.851282 L 47.919818 30.047258 L 49.311248 30.204039 L 50.698758 30.341222 L 52.090188 30.462727 L 53.281722 30.556796 L 54.473257 30.635186 L 55.664791 30.705738 L 56.856325 30.76453 L 57.847964 30.807645 L 58.843522 30.84684 L 59.835161 30.878197 L 60.83072 30.909553 L 61.822358 30.93307 L 63.013893 30.956587 L 64.401403 30.984024 L 68.775588 31.062414 L 69.967123 31.089851 L 70.958761 31.113368 L 71.95432 31.144724 L 72.945958 31.17608 L 73.937597 31.215275 L 74.933155 31.25839 L 76.12469 31.317183 L 77.312305 31.387734 L 78.503839 31.462205 L 79.699293 31.552354 L 81.090723 31.662101 L 82.482153 31.787525 L 84.069558 31.944306 L 85.85686 32.136363 L 87.844057 32.367614 L 90.227126 32.661579 L 93.797809 33.128001 L 98.567866 33.743366 L 101.15083 34.056928 L 103.337923 34.307777 L 105.125224 34.495914 L 106.912526 34.668373 L 108.499932 34.805556 L 109.891362 34.911383 L 111.082896 34.993693 L 112.27443 35.068164 L 113.266069 35.119118 L 114.261627 35.162233 L 115.05729 35.189669 L 115.849033 35.213187 L 116.4448 35.228865 L 117.044487 35.236704 L 117.83623 35.244543 L 118.631893 35.244543 L 119.027765 35.240623 L 119.427556 35.236704 L 119.823427 35.232784 L 120.419195 35.217106 L 121.014962 35.197508 L 121.610729 35.173991 L 122.206496 35.146555 L 123.002159 35.09952 L 123.793902 35.044647 L 124.589565 34.974096 L 125.385227 34.895705 L 126.376866 34.7742 L 127.368505 34.633097 L 128.364063 34.468478 L 129.355702 34.280341 L 130.35126 34.060847 L 131.342899 33.809998 L 132.338457 33.523873 L 133.330096 33.202472 L 134.52163 32.759567 L 135.713165 32.253948 L 136.904699 31.677779 L 138.096233 31.019299 L 139.287768 30.270671 L 140.479302 29.431893 L 141.670836 28.491208 L 143.062266 27.264398 L 144.453696 25.896486 L 146.041102 24.179735 L 148.028299 21.85154 L 148.823962 20.887338 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip16)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.128782 L -47.822317 23.772105 L -46.031096 23.442866 L -44.243795 23.141062 L -42.456493 22.866696 L -40.673111 22.619766 L -39.081786 22.419871 L -37.49046 22.235653 L -35.906974 22.067114 L -34.315648 21.918172 L -32.724323 21.784908 L -31.332893 21.675162 L -29.945383 21.581093 L -28.553953 21.498783 L -27.362418 21.432151 L -26.170884 21.377278 L -24.97935 21.326324 L -23.787815 21.28321 L -22.796177 21.251853 L -21.800618 21.224417 L -21.008875 21.208739 L -20.213212 21.193061 L -19.41755 21.181302 L -18.821783 21.177383 L -18.226015 21.169543 L -17.630248 21.165624 L -15.643051 21.165624 L -15.24718 21.169543 L -14.647493 21.173463 L -14.055645 21.181302 L -13.455959 21.189141 L -12.664215 21.2009 L -11.868553 21.216578 L -11.076809 21.236175 L -10.081251 21.263612 L -9.089612 21.294968 L -8.094054 21.330244 L -6.906439 21.381198 L -5.714905 21.436071 L -4.519451 21.498783 L -3.128021 21.585013 L -1.736591 21.675162 L -0.349081 21.780989 L 1.242245 21.910333 L 2.82965 22.055355 L 4.420976 22.212136 L 6.008382 22.384595 L 7.795683 22.596249 L 9.582985 22.823581 L 11.370286 23.074431 L 13.353564 23.372314 L 15.34468 23.689795 L 17.527854 24.066069 L 19.910922 24.505056 L 22.493886 25.006754 L 25.672618 25.657395 L 35.204892 27.624994 L 37.587961 28.075739 L 39.575158 28.424577 L 41.36246 28.710702 L 42.953785 28.945873 L 44.541191 29.161446 L 45.932621 29.326066 L 47.324051 29.475008 L 48.515585 29.584755 L 49.707119 29.682743 L 50.698758 29.757214 L 51.694317 29.816006 L 52.685955 29.87088 L 53.481618 29.906155 L 54.277281 29.933592 L 55.069024 29.957109 L 55.664791 29.972787 L 56.260558 29.984546 L 56.856325 29.992385 L 57.452093 29.996304 L 57.847964 30.000224 L 59.043418 30.000224 L 59.43929 29.996304 L 59.835161 29.996304 L 61.026696 29.980626 L 61.822358 29.968868 L 62.618021 29.95319 L 63.60966 29.929673 L 64.801194 29.894397 L 66.588496 29.843443 L 69.571251 29.753294 L 70.762785 29.721938 L 71.754424 29.698421 L 72.550087 29.686662 L 73.34183 29.670984 L 73.937597 29.667065 L 74.533364 29.659226 L 76.12469 29.659226 L 76.520561 29.663145 L 76.916433 29.663145 L 77.312305 29.670984 L 77.908072 29.678823 L 78.503839 29.690582 L 79.099606 29.70626 L 79.899188 29.729777 L 80.690932 29.761133 L 81.486594 29.796409 L 82.482153 29.851282 L 83.473791 29.910075 L 84.46543 29.980626 L 85.656964 30.078614 L 86.852418 30.188361 L 88.239929 30.329464 L 89.631359 30.486244 L 91.218764 30.682221 L 93.006066 30.921311 L 95.193159 31.234873 L 97.976018 31.658181 L 105.32512 32.787003 L 107.508293 33.096645 L 109.491571 33.355334 L 111.082896 33.543471 L 112.474326 33.696332 L 113.865756 33.829596 L 115.05729 33.931503 L 116.048929 34.005974 L 117.044487 34.068686 L 117.83623 34.111801 L 118.631893 34.147077 L 119.823427 34.186272 L 120.219299 34.194111 L 120.61909 34.198031 L 121.014962 34.20195 L 121.810624 34.20195 L 122.206496 34.198031 L 122.602368 34.190192 L 123.002159 34.182353 L 123.597926 34.162755 L 124.193693 34.135318 L 124.78946 34.103962 L 125.385227 34.064767 L 126.18089 33.998135 L 126.972633 33.915825 L 127.768296 33.821757 L 128.560039 33.708091 L 129.555598 33.543471 L 130.547236 33.347495 L 131.542795 33.120162 L 132.534433 32.853635 L 133.529992 32.551832 L 134.52163 32.202995 L 135.513269 31.811042 L 136.704804 31.274068 L 137.896338 30.654784 L 139.091792 29.94927 L 140.283326 29.149688 L 141.470941 28.248198 L 142.662475 27.244801 L 144.057825 25.9396 L 145.645231 24.285563 L 147.432532 22.255251 L 148.823962 20.597293 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip17)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.124862 L -47.822317 23.768186 L -46.031096 23.438946 L -44.243795 23.137143 L -42.456493 22.862776 L -40.673111 22.611927 L -39.081786 22.412032 L -37.49046 22.227814 L -35.906974 22.059275 L -34.315648 21.910333 L -32.724323 21.77315 L -31.332893 21.667323 L -29.945383 21.569335 L -28.553953 21.487025 L -27.162523 21.408634 L -25.970989 21.353761 L -24.779454 21.302807 L -23.58792 21.259692 L -21.604642 21.204819 L -20.80898 21.189141 L -20.017236 21.173463 L -19.217654 21.161704 L -18.621887 21.153865 L -17.430353 21.146026 L -17.034481 21.146026 L -16.63469 21.142107 L -16.238818 21.142107 L -15.842947 21.146026 L -15.443156 21.146026 L -15.047284 21.149946 L -13.85575 21.157785 L -13.259982 21.165624 L -12.46432 21.177383 L -11.668657 21.193061 L -10.876914 21.212658 L -9.881356 21.240095 L -8.889717 21.271451 L -7.898078 21.306727 L -6.706544 21.35768 L -5.515009 21.412554 L -4.319556 21.475266 L -2.932045 21.557576 L -1.540615 21.647725 L -0.149185 21.749633 L 1.438221 21.878977 L 3.029546 22.020079 L 4.616952 22.17686 L 6.204358 22.3454 L 7.995579 22.553134 L 9.78288 22.780467 L 11.570182 23.023477 L 13.553459 23.317441 L 15.540656 23.631003 L 17.727749 23.999438 L 20.110818 24.430585 L 22.889758 24.95972 L 26.468281 25.669153 L 33.417591 27.060583 L 36.000555 27.542684 L 38.187648 27.922878 L 39.97103 28.209003 L 41.562355 28.440255 L 43.149761 28.651909 L 44.541191 28.816529 L 45.932621 28.961551 L 47.124155 29.071297 L 48.31569 29.165366 L 49.311248 29.231998 L 50.302887 29.286871 L 51.098549 29.326066 L 51.890293 29.357422 L 52.685955 29.38094 L 53.281722 29.396618 L 53.87749 29.408376 L 54.473257 29.416215 L 54.873048 29.420135 L 56.260558 29.420135 L 56.660349 29.416215 L 57.056221 29.412296 L 58.247755 29.388779 L 59.043418 29.369181 L 59.835161 29.345664 L 60.83072 29.306469 L 61.822358 29.267273 L 63.013893 29.208481 L 64.401403 29.13401 L 66.39252 29.016424 L 71.354633 28.718541 L 72.945958 28.636231 L 74.137493 28.581357 L 75.133051 28.538243 L 76.12469 28.506886 L 76.916433 28.483369 L 77.712096 28.467691 L 78.307863 28.455933 L 78.90363 28.448094 L 79.299502 28.448094 L 79.699293 28.444174 L 80.099084 28.444174 L 80.494955 28.448094 L 80.890827 28.448094 L 81.290618 28.452013 L 81.68649 28.459852 L 82.282257 28.471611 L 83.473791 28.502967 L 84.269454 28.534323 L 85.065117 28.569599 L 85.85686 28.612714 L 86.852418 28.675426 L 87.844057 28.749897 L 89.035591 28.851804 L 90.227126 28.96547 L 91.614636 29.114412 L 93.006066 29.282952 L 94.597391 29.490686 L 96.384693 29.749375 L 98.37189 30.059017 L 100.954854 30.486244 L 110.091257 32.022697 L 112.074535 32.316661 L 113.66586 32.536154 L 115.05729 32.708613 L 116.4448 32.861474 L 117.636335 32.97514 L 118.631893 33.06137 L 119.623532 33.128001 L 120.419195 33.175036 L 121.214857 33.210311 L 121.810624 33.233829 L 122.406392 33.245587 L 122.802263 33.253426 L 123.198135 33.257346 L 123.793902 33.257346 L 123.993798 33.253426 L 124.389669 33.249507 L 124.78946 33.237748 L 125.185332 33.22599 L 125.781099 33.202472 L 126.376866 33.167197 L 126.972633 33.128001 L 127.568401 33.073128 L 128.364063 32.990818 L 129.159726 32.888911 L 129.951469 32.771325 L 130.747132 32.630222 L 131.74269 32.422488 L 132.734329 32.175558 L 133.725968 31.889433 L 134.721526 31.560193 L 135.713165 31.18 L 136.704804 30.748852 L 137.896338 30.160924 L 139.091792 29.478928 L 140.283326 28.702862 L 141.470941 27.82489 L 142.662475 26.84501 L 144.057825 25.563326 L 145.445335 24.148379 L 147.232636 22.161182 L 148.823962 20.291571 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip18)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.136621 L -47.822317 23.779944 L -46.031096 23.450705 L -44.243795 23.148901 L -42.456493 22.878455 L -40.869087 22.655042 L -39.281681 22.451227 L -37.690356 22.267009 L -36.10295 22.09847 L -34.511624 21.949528 L -32.924218 21.812345 L -31.532789 21.706518 L -30.141359 21.60853 L -28.753848 21.52622 L -27.562314 21.459588 L -26.37078 21.404715 L -25.175326 21.353761 L -23.983791 21.310646 L -22.992153 21.27929 L -22.000514 21.251853 L -21.204851 21.236175 L -20.413108 21.220497 L -19.613526 21.208739 L -19.017759 21.204819 L -18.421991 21.19698 L -17.826224 21.193061 L -16.238818 21.193061 L -15.842947 21.19698 L -15.443156 21.19698 L -14.847388 21.2009 L -13.655854 21.216578 L -12.860191 21.228336 L -12.068448 21.247934 L -11.272785 21.267531 L -10.281147 21.294968 L -9.285588 21.326324 L -8.29395 21.36552 L -7.102415 21.416473 L -5.9148 21.475266 L -4.719347 21.537978 L -3.327917 21.624208 L -1.936487 21.718276 L -0.545057 21.824103 L 1.042349 21.957367 L 2.629755 22.102389 L 4.22108 22.267009 L 5.808486 22.443388 L 7.595788 22.658961 L 9.383089 22.890213 L 11.170391 23.144982 L 13.157588 23.450705 L 15.144785 23.779944 L 17.327958 24.167977 L 19.714946 24.618722 L 22.293991 25.136099 L 25.472722 25.806337 L 31.434313 27.111537 L 35.008916 27.875844 L 37.587961 28.39322 L 39.775054 28.80477 L 41.762251 29.145768 L 43.545633 29.431893 L 45.136958 29.659226 L 46.728284 29.863041 L 48.115794 30.027661 L 49.507224 30.168763 L 50.698758 30.27851 L 51.890293 30.372578 L 53.081827 30.458808 L 54.077385 30.517601 L 55.069024 30.568554 L 56.064582 30.615589 L 57.056221 30.650864 L 58.04786 30.682221 L 58.843522 30.705738 L 59.635266 30.721416 L 62.022254 30.756691 L 62.813997 30.760611 L 63.60966 30.76845 L 64.401403 30.76845 L 65.396961 30.772369 L 67.384158 30.780209 L 68.975484 30.788048 L 69.571251 30.791967 L 70.167018 30.799806 L 70.958761 30.807645 L 71.754424 30.819404 L 72.550087 30.835082 L 73.34183 30.854679 L 74.137493 30.874277 L 74.933155 30.897794 L 75.924794 30.936989 L 76.916433 30.980104 L 77.908072 31.031058 L 78.90363 31.085931 L 80.099084 31.164322 L 81.290618 31.250551 L 82.678129 31.368137 L 84.069558 31.497481 L 85.656964 31.658181 L 87.444266 31.858077 L 89.431463 32.101087 L 91.814532 32.40681 L 95.58903 32.920267 L 100.159191 33.535632 L 102.742156 33.860952 L 104.925329 34.11964 L 106.71263 34.311697 L 108.303956 34.468478 L 109.691466 34.593902 L 111.082896 34.703649 L 112.27443 34.789878 L 113.465965 34.864349 L 114.461523 34.915303 L 115.253266 34.950579 L 116.048929 34.978015 L 116.644696 34.997613 L 117.83623 35.02113 L 118.236021 35.02505 L 118.631893 35.028969 L 119.427556 35.028969 L 120.219299 35.02113 L 120.61909 35.013291 L 121.214857 34.997613 L 121.810624 34.978015 L 122.406392 34.950579 L 123.002159 34.919223 L 123.793902 34.868269 L 124.589565 34.805556 L 125.385227 34.731086 L 126.18089 34.644856 L 127.168609 34.515512 L 128.164168 34.362651 L 129.159726 34.182353 L 130.151365 33.974618 L 131.146923 33.735527 L 132.138562 33.46508 L 133.130201 33.155438 L 134.125759 32.806601 L 135.317293 32.328419 L 136.508828 31.779686 L 137.700362 31.152563 L 138.891896 30.44313 L 140.08343 29.639628 L 141.274965 28.738138 L 142.466499 27.734741 L 143.85401 26.42954 L 145.445335 24.775503 L 147.232636 22.741271 L 148.823962 20.832465 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip19)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.113104 L -47.822317 23.752508 L -46.031096 23.423268 L -44.243795 23.121465 L -42.456493 22.843179 L -40.673111 22.59233 L -39.081786 22.392434 L -37.49046 22.204297 L -35.906974 22.035758 L -34.315648 21.882896 L -32.724323 21.745713 L -31.332893 21.635966 L -29.945383 21.541898 L -28.553953 21.451749 L -27.162523 21.373359 L -25.970989 21.314566 L -24.779454 21.263612 L -23.58792 21.220497 L -21.604642 21.157785 L -20.613004 21.138187 L -19.813421 21.122509 L -19.017759 21.106831 L -18.226015 21.098992 L -17.630248 21.091153 L -17.034481 21.087234 L -14.647493 21.087234 L -14.055645 21.091153 L -13.455959 21.098992 L -12.860191 21.102912 L -12.068448 21.11467 L -11.272785 21.130348 L -10.481042 21.146026 L -9.485484 21.173463 L -8.493845 21.2009 L -7.498287 21.236175 L -6.306753 21.28321 L -5.119138 21.334163 L -3.923684 21.396876 L -2.532254 21.471347 L -1.140824 21.561496 L 0.246686 21.655564 L 1.838012 21.780989 L 3.425418 21.914252 L 5.012824 22.063194 L 6.604149 22.223895 L 8.391451 22.419871 L 10.178752 22.635444 L 12.16203 22.894133 L 14.149227 23.172419 L 16.336319 23.501658 L 18.719388 23.881852 L 21.302352 24.324758 L 24.680979 24.924444 L 32.030081 26.249242 L 34.413149 26.645114 L 36.400346 26.950837 L 37.987752 27.178169 L 39.575158 27.378064 L 40.966588 27.538765 L 42.158122 27.65635 L 43.349657 27.762177 L 44.337376 27.836648 L 45.336854 27.899361 L 46.132516 27.938556 L 46.92426 27.973832 L 47.520027 27.993429 L 48.115794 28.009107 L 48.715481 28.020866 L 49.507224 28.028705 L 50.302887 28.028705 L 50.698758 28.024785 L 51.098549 28.016946 L 51.494421 28.009107 L 52.090188 27.993429 L 52.685955 27.973832 L 53.281722 27.950314 L 54.077385 27.911119 L 54.873048 27.864085 L 55.864687 27.793534 L 56.856325 27.707304 L 57.847964 27.613236 L 59.043418 27.483892 L 60.234952 27.342789 L 61.626382 27.154652 L 63.209869 26.919481 L 65.00109 26.625516 L 66.988287 26.276679 L 69.17146 25.86121 L 71.95432 25.308557 L 76.916433 24.281643 L 81.886385 23.266487 L 85.261093 22.604088 L 88.239929 22.051436 L 91.218764 21.5223 L 94.397496 20.985326 L 97.776123 20.444432 L 102.342365 19.734999 L 108.303956 18.809992 L 111.082896 18.355328 L 113.465965 17.939858 L 115.453162 17.567504 L 117.440359 17.167713 L 119.22766 16.771841 L 120.815066 16.391648 L 122.406392 15.976178 L 123.993798 15.517594 L 125.585123 15.015896 L 126.972633 14.525956 L 128.364063 13.992901 L 129.755493 13.401053 L 131.146923 12.746493 L 132.534433 12.017462 L 133.925863 11.213961 L 135.317293 10.312471 L 136.704804 9.312993 L 138.096233 8.19593 L 139.487663 6.953441 L 140.875174 5.57377 L 142.266604 4.045157 L 143.85401 2.120672 L 145.445335 0.00805057 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip20)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.089586 L -47.822317 23.73291 L -46.031096 23.40367 L -44.243795 23.105787 L -42.456493 22.83142 L -40.673111 22.58449 L -39.081786 22.384595 L -37.49046 22.200377 L -35.906974 22.035758 L -34.315648 21.886816 L -32.724323 21.753552 L -31.332893 21.647725 L -29.945383 21.549737 L -28.553953 21.467427 L -27.162523 21.392956 L -25.970989 21.334163 L -24.779454 21.287129 L -23.58792 21.244014 L -22.596281 21.212658 L -21.604642 21.189141 L -20.80898 21.169543 L -20.017236 21.157785 L -19.217654 21.146026 L -18.621887 21.138187 L -17.430353 21.130348 L -17.034481 21.130348 L -16.63469 21.126429 L -16.238818 21.126429 L -15.842947 21.130348 L -15.443156 21.130348 L -15.047284 21.134268 L -13.85575 21.142107 L -13.259982 21.149946 L -12.46432 21.161704 L -11.668657 21.177383 L -10.876914 21.19698 L -9.881356 21.224417 L -8.889717 21.255773 L -7.898078 21.291049 L -6.706544 21.338083 L -5.515009 21.396876 L -4.319556 21.459588 L -2.932045 21.537978 L -1.540615 21.632047 L -0.149185 21.733954 L 1.438221 21.859379 L 3.029546 22.000482 L 4.616952 22.157263 L 6.204358 22.325802 L 7.995579 22.529617 L 9.78288 22.75303 L 11.570182 22.99604 L 13.553459 23.286085 L 15.540656 23.599646 L 17.727749 23.964162 L 20.110818 24.39139 L 22.889758 24.912686 L 26.468281 25.6182 L 33.221615 26.954756 L 35.80066 27.429018 L 37.787857 27.770017 L 39.575158 28.056142 L 41.166484 28.283474 L 42.75389 28.495128 L 44.145319 28.655828 L 45.336854 28.781253 L 46.528388 28.890999 L 47.719922 28.985068 L 48.715481 29.0517 L 49.707119 29.106573 L 50.502782 29.145768 L 51.294525 29.177125 L 52.090188 29.200642 L 53.281722 29.224159 L 53.681514 29.228078 L 54.077385 29.231998 L 55.26892 29.231998 L 55.664791 29.228078 L 56.064582 29.224159 L 56.660349 29.21632 L 57.252197 29.200642 L 57.847964 29.184964 L 58.643627 29.161446 L 59.43929 29.13009 L 60.430928 29.086976 L 61.426487 29.036022 L 62.618021 28.96547 L 64.005531 28.875321 L 65.796752 28.753816 L 68.775588 28.530404 L 71.554529 28.326588 L 73.34183 28.205083 L 74.73326 28.118854 L 75.924794 28.056142 L 76.916433 28.009107 L 77.908072 27.969912 L 78.703734 27.946395 L 79.503317 27.926797 L 80.099084 27.915039 L 80.690932 27.90328 L 81.090723 27.899361 L 81.486594 27.899361 L 81.886385 27.895441 L 82.282257 27.895441 L 82.678129 27.899361 L 83.07792 27.90328 L 83.473791 27.9072 L 84.069558 27.918958 L 85.261093 27.950314 L 86.056756 27.981671 L 86.852418 28.016946 L 87.644161 28.060061 L 88.6358 28.122773 L 89.631359 28.197244 L 90.822893 28.299152 L 92.014427 28.412818 L 93.401938 28.565679 L 94.797287 28.734219 L 96.384693 28.949792 L 98.171994 29.2124 L 100.159191 29.525962 L 102.54226 29.929673 L 106.912526 30.697899 L 110.287233 31.281907 L 112.474326 31.634664 L 114.261627 31.901191 L 115.849033 32.116765 L 117.240463 32.285305 L 118.431997 32.410729 L 119.427556 32.500878 L 120.419195 32.579269 L 121.214857 32.630222 L 122.0066 32.673337 L 122.602368 32.696854 L 123.198135 32.712532 L 123.597926 32.720371 L 123.993798 32.72821 L 124.78946 32.72821 L 124.985436 32.724291 L 125.385227 32.716452 L 125.781099 32.708613 L 126.18089 32.692935 L 126.772738 32.665498 L 127.368505 32.626303 L 127.964272 32.579269 L 128.560039 32.524395 L 129.355702 32.430327 L 130.151365 32.32058 L 130.947027 32.187316 L 131.74269 32.030536 L 132.734329 31.799284 L 133.725968 31.528837 L 134.721526 31.215275 L 135.713165 30.85076 L 136.704804 30.431371 L 137.700362 29.957109 L 138.891896 29.310388 L 140.08343 28.565679 L 141.274965 27.719063 L 142.466499 26.766619 L 143.85401 25.524131 L 145.249359 24.14054 L 146.836765 22.412032 L 148.823962 20.107353 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip21)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.097426 L -47.822317 23.73291 L -46.031096 23.40367 L -44.243795 23.097948 L -42.456493 22.819662 L -40.673111 22.568812 L -39.081786 22.364997 L -37.49046 22.17686 L -35.906974 22.004401 L -34.315648 21.85154 L -32.724323 21.710437 L -31.136917 21.585013 L -29.745487 21.487025 L -28.354057 21.396876 L -26.966547 21.318485 L -25.775012 21.259692 L -24.583478 21.204819 L -23.388024 21.157785 L -22.200409 21.11859 L -21.204851 21.087234 L -20.213212 21.063716 L -18.621887 21.03236 L -17.826224 21.024521 L -17.230457 21.016682 L -16.038923 21.008843 L -15.643051 21.004924 L -14.451517 21.004924 L -14.055645 21.008843 L -13.655854 21.008843 L -12.46432 21.016682 L -11.868553 21.024521 L -11.076809 21.03628 L -9.485484 21.067636 L -8.493845 21.091153 L -7.498287 21.11859 L -6.510568 21.153865 L -5.315114 21.19698 L -2.932045 21.306727 L -1.540615 21.381198 L -0.149185 21.467427 L 1.242245 21.561496 L 2.82965 21.675162 L 4.420976 21.804506 L 6.008382 21.945609 L 7.795683 22.118068 L 9.582985 22.310124 L 11.370286 22.51002 L 13.353564 22.756949 L 15.540656 23.043074 L 17.927645 23.376234 L 20.706585 23.791703 L 24.481083 24.379631 L 29.443197 25.151777 L 31.830185 25.500614 L 33.617486 25.739705 L 35.204892 25.935681 L 36.596322 26.088542 L 37.787857 26.206128 L 38.979391 26.308035 L 39.97103 26.382506 L 40.966588 26.445218 L 41.762251 26.484414 L 42.553994 26.519689 L 43.149761 26.539287 L 43.745528 26.551046 L 44.145319 26.558885 L 44.541191 26.562804 L 45.536749 26.562804 L 45.932621 26.558885 L 46.328493 26.551046 L 46.728284 26.543207 L 47.324051 26.523609 L 47.919818 26.500092 L 48.515585 26.472655 L 49.311248 26.425621 L 50.102991 26.366828 L 50.898654 26.296277 L 51.890293 26.198289 L 52.885851 26.080703 L 53.87749 25.947439 L 55.069024 25.767141 L 56.260558 25.559407 L 57.651988 25.292879 L 59.043418 24.991076 L 60.630824 24.614802 L 62.21823 24.195414 L 64.005531 23.681956 L 65.796752 23.125384 L 67.783949 22.462985 L 69.967123 21.683001 L 72.350191 20.777591 L 75.133051 19.664447 L 78.503839 18.25342 L 83.273896 16.191752 L 91.41866 12.660264 L 94.993263 11.178685 L 98.171994 9.924438 L 100.954854 8.881846 L 103.537818 7.968597 L 106.116863 7.106303 L 108.699827 6.291042 L 111.478768 5.460104 L 114.657499 4.562534 L 124.389669 1.850225 L 126.376866 1.234861 L 128.164168 0.631254 L 129.555598 0.121717 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip22)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.132701 L -47.822317 23.776025 L -46.031096 23.446785 L -44.243795 23.144982 L -42.456493 22.874535 L -40.869087 22.651122 L -39.281681 22.447307 L -37.690356 22.26309 L -36.10295 22.09455 L -34.511624 21.941689 L -32.924218 21.808425 L -31.532789 21.698679 L -30.141359 21.60461 L -28.753848 21.518381 L -27.562314 21.451749 L -26.37078 21.396876 L -25.175326 21.345922 L -23.983791 21.302807 L -22.992153 21.271451 L -22.000514 21.244014 L -21.204851 21.228336 L -20.413108 21.212658 L -19.613526 21.2009 L -19.017759 21.193061 L -17.826224 21.185222 L -17.430353 21.181302 L -16.238818 21.181302 L -15.842947 21.185222 L -15.443156 21.185222 L -14.847388 21.189141 L -13.655854 21.204819 L -12.860191 21.216578 L -12.068448 21.232256 L -11.272785 21.251853 L -10.281147 21.27929 L -9.285588 21.310646 L -8.29395 21.345922 L -7.102415 21.396876 L -5.9148 21.455668 L -4.719347 21.518381 L -3.327917 21.60461 L -1.936487 21.698679 L -0.545057 21.800586 L 0.842453 21.914252 L 2.433779 22.059275 L 4.021185 22.216056 L 5.61251 22.388514 L 7.399812 22.600169 L 9.187113 22.827501 L 10.970495 23.07835 L 12.957692 23.376234 L 14.948809 23.697634 L 17.131982 24.077828 L 19.515051 24.524653 L 22.098015 25.034191 L 25.076851 25.653475 L 29.842988 26.68039 L 34.213254 27.613236 L 36.996113 28.173727 L 39.179287 28.589196 L 41.166484 28.938034 L 42.953785 29.224159 L 44.541191 29.45933 L 46.132516 29.670984 L 47.520027 29.839524 L 48.911457 29.988465 L 50.302887 30.121729 L 51.494421 30.223637 L 52.685955 30.309866 L 53.87749 30.388256 L 54.873048 30.44313 L 55.864687 30.490164 L 56.856325 30.529359 L 57.847964 30.564635 L 58.843522 30.592072 L 59.635266 30.60775 L 61.226591 30.639106 L 62.022254 30.646945 L 62.813997 30.654784 L 63.60966 30.662623 L 64.605218 30.670462 L 65.992728 30.678301 L 67.384158 30.68614 L 68.179821 30.69006 L 68.975484 30.697899 L 69.767227 30.705738 L 70.56289 30.713577 L 71.354633 30.725335 L 72.150296 30.741013 L 73.741621 30.780209 L 74.533364 30.807645 L 75.528923 30.842921 L 76.520561 30.886036 L 77.5122 30.93307 L 78.503839 30.987943 L 79.699293 31.066334 L 80.890827 31.152563 L 82.082361 31.250551 L 83.473791 31.375976 L 85.065117 31.536676 L 86.652523 31.709135 L 88.439824 31.920789 L 90.622997 32.199075 L 93.601833 32.598866 L 100.954854 33.598344 L 103.337923 33.900147 L 105.32512 34.131399 L 107.112421 34.323455 L 108.699827 34.476317 L 110.091257 34.601741 L 111.478768 34.711488 L 112.670302 34.789878 L 113.66586 34.852591 L 114.657499 34.903544 L 115.453162 34.93882 L 116.248824 34.966257 L 117.440359 34.997613 L 118.036126 35.005452 L 118.827869 35.013291 L 119.22766 35.013291 L 119.427556 35.009371 L 119.823427 35.009371 L 120.219299 35.001532 L 120.61909 34.997613 L 121.014962 34.985854 L 121.610729 34.970176 L 122.206496 34.946659 L 122.802263 34.915303 L 123.597926 34.868269 L 124.389669 34.809476 L 125.185332 34.738925 L 125.980995 34.652695 L 126.772738 34.554707 L 127.768296 34.413604 L 128.759935 34.245065 L 129.755493 34.049089 L 130.747132 33.825676 L 131.74269 33.566988 L 132.734329 33.273024 L 133.725968 32.939864 L 134.917502 32.4852 L 136.109036 31.959984 L 137.300571 31.364217 L 138.492105 30.682221 L 139.683639 29.910075 L 140.875174 29.043861 L 142.070628 28.07182 L 143.458138 26.809734 L 144.849568 25.410465 L 146.440893 23.658439 L 148.624066 21.067636 L 148.823962 20.824626 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip23)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.097426 L -47.822317 23.73291 L -46.031096 23.40367 L -44.243795 23.097948 L -42.456493 22.819662 L -40.673111 22.568812 L -39.081786 22.361078 L -37.49046 22.17686 L -35.906974 22.004401 L -34.315648 21.847621 L -32.724323 21.706518 L -31.136917 21.581093 L -29.745487 21.483105 L -28.354057 21.392956 L -26.966547 21.314566 L -25.575117 21.244014 L -24.383583 21.193061 L -23.192048 21.146026 L -22.000514 21.106831 L -21.008875 21.079394 L -20.017236 21.055877 L -19.217654 21.040199 L -18.421991 21.028441 L -17.630248 21.016682 L -17.034481 21.008843 L -15.842947 21.001004 L -13.85575 21.001004 L -13.455959 21.004924 L -12.860191 21.008843 L -12.268344 21.012763 L -11.668657 21.020602 L -10.876914 21.03236 L -9.285588 21.063716 L -7.302311 21.11859 L -6.306753 21.153865 L -5.119138 21.2009 L -3.923684 21.251853 L -2.73215 21.310646 L -1.34072 21.385117 L 0.0507102 21.471347 L 1.438221 21.561496 L 3.029546 21.679081 L 4.616952 21.812345 L 6.204358 21.953448 L 7.995579 22.125907 L 9.78288 22.314044 L 11.766158 22.541376 L 13.753355 22.788306 L 15.940448 23.074431 L 18.323516 23.411509 L 21.102457 23.826979 L 25.472722 24.505056 L 29.443197 25.112581 L 31.830185 25.45358 L 33.617486 25.69267 L 35.204892 25.884727 L 36.596322 26.033669 L 37.787857 26.147335 L 38.979391 26.249242 L 39.97103 26.319794 L 40.766692 26.366828 L 41.562355 26.406023 L 42.354098 26.441299 L 42.953785 26.456977 L 43.545633 26.472655 L 43.945424 26.476575 L 44.337376 26.480494 L 44.541191 26.484414 L 45.136958 26.484414 L 45.336854 26.480494 L 45.732725 26.476575 L 46.132516 26.468736 L 46.528388 26.460897 L 47.124155 26.441299 L 47.719922 26.417782 L 48.31569 26.390345 L 49.111352 26.339391 L 49.907015 26.280599 L 50.698758 26.210047 L 51.694317 26.10814 L 52.685955 25.990554 L 53.681514 25.85729 L 54.873048 25.673073 L 56.064582 25.465338 L 57.452093 25.190972 L 58.843522 24.889169 L 60.430928 24.505056 L 62.022254 24.077828 L 63.805636 23.560451 L 65.596857 22.99604 L 67.584054 22.317963 L 69.767227 21.52622 L 72.150296 20.605132 L 74.933155 19.47631 L 78.307863 18.041766 L 83.473791 15.772363 L 90.227126 12.817045 L 93.797809 11.319788 L 96.780564 10.128253 L 99.563424 9.073902 L 102.146388 8.148895 L 104.729353 7.274842 L 107.308397 6.455662 L 109.891362 5.683517 L 112.670302 4.895693 L 116.048929 3.982445 L 122.802263 2.167707 L 124.985436 1.532744 L 126.972633 0.91346 L 128.759935 0.302015 L 129.355702 0.0825215 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.097426 L -47.822317 23.73683 L -46.031096 23.40367 L -44.243795 23.097948 L -42.456493 22.823581 L -40.673111 22.568812 L -39.081786 22.364997 L -37.49046 22.17686 L -35.906974 22.004401 L -34.315648 21.847621 L -32.724323 21.710437 L -31.136917 21.581093 L -29.745487 21.483105 L -28.354057 21.392956 L -26.966547 21.314566 L -25.575117 21.244014 L -24.383583 21.193061 L -23.192048 21.146026 L -22.000514 21.106831 L -21.008875 21.075475 L -20.017236 21.051958 L -19.217654 21.03628 L -18.421991 21.020602 L -17.630248 21.012763 L -17.034481 21.004924 L -15.842947 20.997085 L -15.443156 20.993165 L -13.85575 20.993165 L -13.455959 20.997085 L -12.860191 21.001004 L -12.268344 21.004924 L -11.668657 21.012763 L -10.876914 21.024521 L -10.081251 21.03628 L -9.285588 21.051958 L -8.29395 21.075475 L -7.302311 21.106831 L -6.306753 21.138187 L -5.119138 21.181302 L -3.923684 21.232256 L -2.73215 21.291049 L -1.34072 21.36552 L 0.0507102 21.447829 L 1.438221 21.537978 L 3.029546 21.651645 L 4.616952 21.780989 L 6.204358 21.918172 L 7.995579 22.090631 L 9.78288 22.274848 L 11.766158 22.498261 L 13.753355 22.737352 L 15.940448 23.019557 L 18.323516 23.348797 L 21.102457 23.756427 L 26.068489 24.508975 L 29.443197 25.006754 L 31.630289 25.312477 L 33.417591 25.539809 L 35.008916 25.724027 L 36.400346 25.869049 L 37.587961 25.974876 L 38.583519 26.057186 L 39.575158 26.123818 L 40.370821 26.170852 L 41.166484 26.206128 L 41.762251 26.229645 L 42.354098 26.249242 L 42.953785 26.261001 L 43.349657 26.26884 L 43.745528 26.27276 L 44.541191 26.27276 L 44.940982 26.26884 L 45.732725 26.253162 L 46.328493 26.237484 L 46.92426 26.213967 L 47.520027 26.18653 L 48.31569 26.139496 L 49.111352 26.080703 L 49.907015 26.014071 L 50.898654 25.912164 L 51.890293 25.794578 L 52.885851 25.661314 L 54.077385 25.477097 L 55.26892 25.265443 L 56.460454 25.034191 L 57.847964 24.732388 L 59.239394 24.395309 L 60.83072 23.97592 L 62.418125 23.517336 L 64.205427 22.952925 L 66.192624 22.274848 L 68.379717 21.475266 L 70.762785 20.54242 L 73.541726 19.386162 L 76.916433 17.920261 L 82.282257 15.505836 L 88.040033 12.93463 L 91.41866 11.488327 L 94.397496 10.277195 L 97.180356 9.203246 L 99.76332 8.2704 L 102.146388 7.45906 L 104.529457 6.694753 L 106.912526 5.977481 L 109.491571 5.24453 L 112.27443 4.503741 L 115.653057 3.645366 L 122.206496 1.999167 L 124.389669 1.4034 L 126.376866 0.823311 L 128.164168 0.251061 L 128.560039 0.117797 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip24)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.136621 L -47.822317 23.776025 L -46.031096 23.450705 L -44.243795 23.148901 L -42.456493 22.874535 L -40.869087 22.655042 L -39.281681 22.451227 L -37.690356 22.267009 L -36.10295 22.09847 L -34.511624 21.945609 L -32.924218 21.808425 L -31.532789 21.702598 L -30.141359 21.60853 L -28.753848 21.5223 L -27.562314 21.455668 L -26.37078 21.396876 L -25.175326 21.345922 L -23.983791 21.302807 L -22.992153 21.271451 L -22.000514 21.247934 L -21.204851 21.228336 L -20.413108 21.212658 L -19.613526 21.2009 L -19.017759 21.19698 L -18.421991 21.189141 L -17.826224 21.185222 L -15.842947 21.185222 L -15.443156 21.189141 L -14.251621 21.19698 L -13.655854 21.204819 L -12.860191 21.216578 L -12.068448 21.232256 L -11.272785 21.251853 L -10.281147 21.27929 L -9.285588 21.310646 L -8.29395 21.345922 L -7.102415 21.396876 L -5.9148 21.455668 L -4.719347 21.518381 L -3.327917 21.600691 L -1.936487 21.694759 L -0.545057 21.796667 L 0.842453 21.910333 L 2.433779 22.055355 L 4.021185 22.212136 L 5.61251 22.380675 L 7.399812 22.59233 L 9.187113 22.819662 L 10.970495 23.070511 L 12.957692 23.364475 L 14.948809 23.685876 L 17.131982 24.066069 L 19.515051 24.505056 L 22.098015 25.014593 L 25.076851 25.629958 L 30.042884 26.696068 L 34.213254 27.57796 L 36.996113 28.134532 L 39.179287 28.542162 L 41.166484 28.88708 L 42.953785 29.169285 L 44.541191 29.400537 L 46.132516 29.608272 L 47.520027 29.772892 L 48.911457 29.917914 L 50.102991 30.03158 L 51.294525 30.129568 L 52.48606 30.211878 L 53.481618 30.27459 L 54.473257 30.329464 L 55.464896 30.376498 L 56.460454 30.415693 L 57.252197 30.44313 L 58.843522 30.482325 L 59.635266 30.498003 L 60.430928 30.509762 L 61.026696 30.513681 L 61.626382 30.52152 L 62.21823 30.52544 L 62.813997 30.529359 L 64.005531 30.529359 L 64.801194 30.533279 L 68.575693 30.533279 L 70.958761 30.548957 L 72.150296 30.564635 L 72.945958 30.576393 L 73.741621 30.592072 L 74.533364 30.615589 L 75.329027 30.639106 L 76.12469 30.666542 L 77.116329 30.709657 L 78.107967 30.756691 L 79.099606 30.811565 L 80.29506 30.889955 L 81.486594 30.976185 L 82.678129 31.074173 L 84.069558 31.203517 L 85.460988 31.34462 L 87.048394 31.517078 L 88.835696 31.732652 L 91.022788 32.014858 L 93.797809 32.395051 L 101.946493 33.527793 L 104.329562 33.829596 L 106.316759 34.060847 L 108.10406 34.252904 L 109.691466 34.405765 L 111.082896 34.52727 L 112.27443 34.621339 L 113.465965 34.699729 L 114.461523 34.758522 L 115.453162 34.809476 L 116.248824 34.840832 L 117.044487 34.868269 L 117.636335 34.880027 L 118.236021 34.891786 L 119.027765 34.899625 L 119.823427 34.899625 L 120.219299 34.895705 L 120.61909 34.891786 L 121.014962 34.883947 L 121.610729 34.868269 L 122.206496 34.848671 L 122.802263 34.821234 L 123.39803 34.789878 L 124.193693 34.735005 L 124.985436 34.668373 L 125.781099 34.593902 L 126.576762 34.499834 L 127.568401 34.36657 L 128.560039 34.20587 L 129.555598 34.021652 L 130.547236 33.806079 L 131.542795 33.555229 L 132.534433 33.273024 L 133.529992 32.951623 L 134.721526 32.508717 L 135.91306 31.999179 L 137.104595 31.41909 L 138.296129 30.752772 L 139.487663 30.000224 L 140.679198 29.149688 L 141.870732 28.201164 L 143.258242 26.962595 L 144.653592 25.582924 L 146.240998 23.850496 L 148.42809 21.27929 L 148.823962 20.797189 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.132701 L -47.822317 23.772105 L -46.031096 23.442866 L -44.243795 23.144982 L -42.456493 22.870616 L -40.869087 22.647203 L -39.281681 22.443388 L -37.690356 22.25917 L -36.10295 22.090631 L -34.511624 21.93777 L -32.924218 21.800586 L -31.532789 21.694759 L -30.141359 21.596771 L -28.753848 21.510542 L -27.362418 21.436071 L -26.170884 21.377278 L -24.97935 21.330244 L -23.787815 21.287129 L -22.796177 21.255773 L -21.800618 21.228336 L -21.008875 21.212658 L -20.213212 21.19698 L -19.41755 21.185222 L -18.821783 21.181302 L -18.226015 21.173463 L -17.630248 21.173463 L -17.230457 21.169543 L -16.038923 21.169543 L -15.643051 21.173463 L -15.24718 21.173463 L -14.647493 21.177383 L -14.055645 21.185222 L -13.455959 21.193061 L -12.664215 21.204819 L -11.868553 21.220497 L -11.076809 21.240095 L -10.081251 21.267531 L -9.089612 21.298888 L -8.094054 21.338083 L -6.906439 21.389037 L -5.714905 21.44391 L -4.519451 21.510542 L -3.128021 21.592852 L -1.736591 21.68692 L -0.349081 21.788828 L 1.242245 21.922091 L 2.82965 22.067114 L 4.420976 22.223895 L 6.008382 22.400273 L 7.795683 22.611927 L 9.582985 22.843179 L 11.370286 23.090109 L 13.353564 23.391912 L 15.34468 23.713312 L 17.527854 24.093506 L 19.910922 24.536412 L 22.493886 25.04203 L 25.672618 25.69659 L 35.80066 27.809212 L 38.187648 28.263876 L 40.170925 28.612714 L 41.958227 28.902758 L 43.545633 29.137929 L 45.136958 29.349583 L 46.528388 29.518123 L 47.919818 29.670984 L 49.111352 29.78465 L 50.302887 29.886558 L 51.494421 29.972787 L 52.48606 30.0355 L 53.481618 30.090373 L 54.473257 30.137407 L 55.26892 30.168763 L 56.064582 30.1962 L 56.856325 30.215798 L 57.651988 30.231476 L 58.247755 30.243234 L 59.43929 30.258912 L 60.035057 30.258912 L 60.430928 30.262832 L 62.022254 30.262832 L 62.618021 30.258912 L 63.209869 30.254993 L 64.005531 30.247154 L 65.00109 30.239315 L 66.988287 30.215798 L 68.179821 30.204039 L 69.17146 30.1962 L 70.362994 30.188361 L 70.762785 30.188361 L 71.158657 30.184441 L 71.554529 30.184441 L 71.95432 30.188361 L 72.746063 30.188361 L 73.145854 30.19228 L 74.933155 30.215798 L 75.528923 30.231476 L 76.324585 30.251073 L 77.116329 30.27459 L 77.908072 30.305947 L 78.90363 30.349061 L 79.899188 30.400015 L 80.890827 30.458808 L 82.082361 30.541118 L 83.273896 30.635186 L 84.46543 30.741013 L 85.85686 30.878197 L 87.444266 31.050655 L 89.035591 31.242712 L 91.022788 31.497481 L 93.401938 31.826721 L 96.780564 32.32058 L 102.146388 33.100565 L 104.529457 33.429805 L 106.516654 33.680654 L 108.303956 33.892308 L 109.891362 34.064767 L 111.278872 34.198031 L 112.670302 34.319536 L 113.865756 34.409685 L 114.857395 34.476317 L 115.849033 34.535109 L 116.644696 34.570385 L 117.440359 34.601741 L 118.036126 34.621339 L 118.631893 34.637017 L 119.027765 34.644856 L 119.427556 34.648776 L 119.823427 34.652695 L 120.419195 34.652695 L 120.61909 34.648776 L 121.014962 34.648776 L 121.410833 34.640937 L 121.810624 34.633097 L 122.406392 34.617419 L 123.002159 34.593902 L 123.597926 34.562546 L 124.193693 34.52727 L 124.985436 34.468478 L 125.781099 34.397926 L 126.576762 34.315616 L 127.368505 34.213709 L 128.364063 34.068686 L 129.355702 33.892308 L 130.35126 33.692412 L 131.342899 33.457241 L 132.338457 33.186794 L 133.330096 32.881072 L 134.325654 32.532234 L 135.513269 32.050133 L 136.704804 31.5014 L 137.896338 30.870357 L 139.091792 30.153085 L 140.283326 29.341744 L 141.470941 28.432416 L 142.862371 27.240881 L 144.253801 25.904325 L 145.845126 24.218931 L 147.828404 21.922091 L 148.823962 20.726638 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip25)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.136621 L -47.822317 23.776025 L -46.031096 23.446785 L -44.243795 23.141062 L -42.456493 22.866696 L -40.673111 22.611927 L -39.081786 22.408112 L -37.49046 22.219975 L -35.906974 22.051436 L -34.315648 21.898574 L -32.724323 21.757472 L -31.332893 21.647725 L -29.945383 21.549737 L -28.553953 21.459588 L -27.162523 21.381198 L -25.970989 21.322405 L -24.779454 21.267531 L -23.58792 21.220497 L -21.604642 21.157785 L -20.613004 21.134268 L -19.813421 21.11859 L -19.017759 21.106831 L -18.226015 21.095073 L -17.630248 21.087234 L -16.438714 21.079394 L -14.451517 21.079394 L -14.055645 21.083314 L -13.455959 21.087234 L -12.860191 21.095073 L -12.268344 21.098992 L -9.881356 21.146026 L -8.889717 21.173463 L -7.898078 21.204819 L -6.906439 21.240095 L -5.714905 21.287129 L -4.519451 21.342002 L -3.327917 21.400795 L -1.936487 21.483105 L -0.545057 21.569335 L 0.842453 21.667323 L 2.433779 21.792747 L 4.021185 21.929931 L 5.61251 22.078872 L 7.399812 22.26309 L 9.187113 22.462985 L 10.970495 22.678559 L 12.957692 22.937247 L 14.948809 23.219453 L 17.131982 23.544773 L 19.515051 23.924967 L 22.293991 24.395309 L 26.664257 25.159616 L 31.034522 25.920003 L 33.417591 26.308035 L 35.404788 26.609838 L 37.192089 26.856768 L 38.779495 27.056664 L 40.170925 27.209525 L 41.36246 27.323191 L 42.553994 27.425099 L 43.545633 27.49565 L 44.337376 27.542684 L 45.136958 27.58188 L 45.932621 27.613236 L 46.528388 27.632833 L 47.124155 27.648511 L 47.520027 27.652431 L 47.919818 27.66027 L 48.911457 27.66027 L 49.311248 27.65635 L 49.707119 27.652431 L 50.102991 27.644592 L 50.698758 27.628914 L 51.294525 27.609316 L 51.890293 27.585799 L 52.685955 27.542684 L 53.481618 27.491731 L 54.277281 27.432938 L 55.26892 27.350628 L 56.260558 27.24872 L 57.452093 27.115457 L 58.643627 26.958676 L 60.035057 26.75878 L 61.426487 26.535367 L 63.013893 26.253162 L 64.801194 25.904325 L 66.788391 25.481016 L 68.975484 24.983237 L 71.354633 24.403148 L 74.337388 23.642761 L 78.307863 22.580571 L 84.269454 20.946131 L 91.41866 18.947175 L 96.184797 17.575343 L 99.959296 16.446521 L 103.337923 15.396089 L 106.516654 14.361336 L 109.691466 13.279548 L 112.870197 12.138968 L 115.849033 11.017985 L 118.827869 9.838209 L 121.610729 8.68195 L 124.193693 7.54137 L 126.576762 6.420387 L 128.759935 5.315082 L 130.747132 4.233294 L 132.534433 3.178943 L 134.325654 2.030523 L 135.91306 0.90954 L 137.104595 0.000211533 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 23.866174 L -47.822317 23.517336 L -46.031096 23.195936 L -44.243795 22.905891 L -42.656389 22.67072 L -41.068983 22.451227 L -39.477657 22.255251 L -37.890251 22.074953 L -36.298926 21.914252 L -34.715439 21.765311 L -33.124114 21.635966 L -31.732684 21.530139 L -30.341254 21.436071 L -28.949824 21.353761 L -27.562314 21.28321 L -26.37078 21.228336 L -25.175326 21.177383 L -23.983791 21.138187 L -22.992153 21.106831 L -21.008875 21.059797 L -19.41755 21.03628 L -18.821783 21.028441 L -17.630248 21.020602 L -15.24718 21.020602 L -14.647493 21.028441 L -14.055645 21.03236 L -13.455959 21.040199 L -12.664215 21.051958 L -11.868553 21.067636 L -11.076809 21.083314 L -10.081251 21.106831 L -9.089612 21.138187 L -8.094054 21.173463 L -6.906439 21.216578 L -5.714905 21.271451 L -4.519451 21.330244 L -3.128021 21.408634 L -1.736591 21.494864 L -0.349081 21.588932 L 1.242245 21.710437 L 2.82965 21.843701 L 4.420976 21.988723 L 6.008382 22.149424 L 7.795683 22.3454 L 9.582985 22.557054 L 11.370286 22.784386 L 13.353564 23.058753 L 15.540656 23.380153 L 17.727749 23.728991 L 20.310713 24.164057 L 23.289549 24.689273 L 29.047325 25.747544 L 32.226057 26.315874 L 34.609125 26.715665 L 36.596322 27.025308 L 38.187648 27.25264 L 39.775054 27.456455 L 41.166484 27.617155 L 42.354098 27.734741 L 43.545633 27.840568 L 44.541191 27.918958 L 45.536749 27.981671 L 46.328493 28.024785 L 47.124155 28.060061 L 47.719922 28.079659 L 48.31569 28.095337 L 48.911457 28.107095 L 49.311248 28.114934 L 49.707119 28.114934 L 49.907015 28.118854 L 50.502782 28.118854 L 51.294525 28.111015 L 51.694317 28.103176 L 52.885851 28.07182 L 53.481618 28.048303 L 54.277281 28.009107 L 55.069024 27.965993 L 55.864687 27.911119 L 56.856325 27.832729 L 57.847964 27.746499 L 59.043418 27.624994 L 60.234952 27.487811 L 61.626382 27.311433 L 63.209869 27.08802 L 65.00109 26.809734 L 66.988287 26.476575 L 69.371355 26.049347 L 72.550087 25.44966 L 81.090723 23.81522 L 83.869663 23.317441 L 86.452627 22.882374 L 88.835696 22.502181 L 91.218764 22.149424 L 93.401938 21.843701 L 95.58903 21.561496 L 97.976018 21.267531 L 100.359087 20.997085 L 102.938132 20.722718 L 105.720991 20.440513 L 110.091257 20.021124 L 113.66586 19.668367 L 115.849033 19.441035 L 117.83623 19.217622 L 119.427556 19.021646 L 121.014962 18.809992 L 122.406392 18.602257 L 123.793902 18.374925 L 125.185332 18.124076 L 126.576762 17.837951 L 127.964272 17.52047 L 129.159726 17.210827 L 130.35126 16.869829 L 131.542795 16.485716 L 132.734329 16.058488 L 133.925863 15.580307 L 135.117398 15.043332 L 136.308932 14.443646 L 137.500466 13.769488 L 138.692001 13.01694 L 139.883535 12.178163 L 141.274965 11.076777 L 142.662475 9.846048 L 144.057825 8.474216 L 145.645231 6.753546 L 147.632428 4.413592 L 148.823962 2.947691 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip26)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.156218 L -47.822317 23.799542 L -46.031096 23.474222 L -44.243795 23.176338 L -42.456493 22.905891 L -40.869087 22.686398 L -39.281681 22.482583 L -37.690356 22.302285 L -36.10295 22.137665 L -34.511624 21.988723 L -33.124114 21.871138 L -31.732684 21.765311 L -30.341254 21.671242 L -28.949824 21.585013 L -27.75829 21.5223 L -26.566756 21.467427 L -25.375221 21.416473 L -24.383583 21.381198 L -23.388024 21.353761 L -22.396386 21.326324 L -21.604642 21.310646 L -20.80898 21.294968 L -20.017236 21.28321 L -19.41755 21.27929 L -18.226015 21.271451 L -17.826224 21.267531 L -17.034481 21.267531 L -16.63469 21.271451 L -16.238818 21.271451 L -15.842947 21.275371 L -15.24718 21.27929 L -14.647493 21.287129 L -14.055645 21.294968 L -13.259982 21.306727 L -12.46432 21.322405 L -11.668657 21.342002 L -10.677018 21.369439 L -9.68538 21.404715 L -8.689821 21.43999 L -7.498287 21.490944 L -6.306753 21.545817 L -5.119138 21.60853 L -3.723788 21.69084 L -2.336278 21.784908 L -0.944848 21.882896 L 0.646477 22.01224 L 2.233883 22.149424 L 3.825209 22.302285 L 5.61251 22.490422 L 7.399812 22.694237 L 9.187113 22.91765 L 10.970495 23.156741 L 12.957692 23.442866 L 14.948809 23.752508 L 17.131982 24.117023 L 19.515051 24.544251 L 22.098015 25.034191 L 25.272827 25.665234 L 36.000555 27.836648 L 38.187648 28.23252 L 40.170925 28.569599 L 41.958227 28.843965 L 43.545633 29.067378 L 45.136958 29.271193 L 46.528388 29.427974 L 47.919818 29.565157 L 49.111352 29.670984 L 50.302887 29.761133 L 51.294525 29.823845 L 52.290084 29.882638 L 53.281722 29.929673 L 54.077385 29.961029 L 54.873048 29.984546 L 55.664791 30.004143 L 56.856325 30.027661 L 57.452093 30.0355 L 57.847964 30.0355 L 58.247755 30.039419 L 59.835161 30.039419 L 60.234952 30.0355 L 60.83072 30.027661 L 61.426487 30.023741 L 62.21823 30.011982 L 63.013893 29.996304 L 64.005531 29.976707 L 65.396961 29.945351 L 69.371355 29.847363 L 70.362994 29.827765 L 71.95432 29.804248 L 72.550087 29.800328 L 73.145854 29.792489 L 75.133051 29.792489 L 75.924794 29.800328 L 76.520561 29.808167 L 77.116329 29.819926 L 77.712096 29.835604 L 78.503839 29.855202 L 79.299502 29.882638 L 80.099084 29.917914 L 81.090723 29.964948 L 82.082361 30.023741 L 83.07792 30.090373 L 84.269454 30.180522 L 85.460988 30.286349 L 86.852418 30.423532 L 88.239929 30.572474 L 89.831254 30.760611 L 91.614636 30.995782 L 93.601833 31.270149 L 96.184797 31.654262 L 105.521096 33.065289 L 107.708189 33.359253 L 109.491571 33.582666 L 111.082896 33.759044 L 112.474326 33.904067 L 113.865756 34.029491 L 115.05729 34.12356 L 116.048929 34.190192 L 117.044487 34.248984 L 117.83623 34.28426 L 118.631893 34.315616 L 119.823427 34.346972 L 120.219299 34.350892 L 120.61909 34.354812 L 121.410833 34.354812 L 121.810624 34.350892 L 122.602368 34.335214 L 123.198135 34.315616 L 123.793902 34.292099 L 124.389669 34.260743 L 124.985436 34.221548 L 125.781099 34.158835 L 126.576762 34.080445 L 127.368505 33.990296 L 128.164168 33.884469 L 129.159726 33.723769 L 130.151365 33.535632 L 131.146923 33.316138 L 132.138562 33.06137 L 133.130201 32.771325 L 134.125759 32.438166 L 135.117398 32.057972 L 136.308932 31.540596 L 137.500466 30.948748 L 138.692001 30.266751 L 139.883535 29.494606 L 141.075069 28.624472 L 142.266604 27.652431 L 143.654114 26.386426 L 145.049463 24.979318 L 146.636869 23.227292 L 148.823962 20.640408 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip27)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 23.999438 L -47.822317 23.638842 L -46.031096 23.309602 L -44.243795 23.007799 L -42.456493 22.733432 L -40.673111 22.482583 L -39.081786 22.282687 L -37.49046 22.09847 L -35.906974 21.929931 L -34.315648 21.777069 L -32.724323 21.639886 L -31.332893 21.534059 L -29.945383 21.436071 L -28.553953 21.345922 L -27.162523 21.271451 L -25.970989 21.208739 L -24.779454 21.157785 L -23.58792 21.110751 L -22.396386 21.071555 L -21.404747 21.044119 L -20.413108 21.020602 L -19.613526 21.004924 L -18.821783 20.989246 L -18.02612 20.977487 L -17.430353 20.973567 L -16.834585 20.965728 L -16.238818 20.965728 L -15.842947 20.961809 L -14.251621 20.961809 L -13.85575 20.965728 L -12.664215 20.973567 L -12.068448 20.981406 L -11.272785 20.993165 L -10.481042 21.004924 L -9.68538 21.020602 L -8.689821 21.044119 L -6.706544 21.106831 L -5.515009 21.149946 L -4.319556 21.2009 L -3.128021 21.255773 L -1.736591 21.330244 L -0.349081 21.412554 L 1.042349 21.502703 L 2.629755 21.616369 L 4.22108 21.745713 L 5.808486 21.882896 L 7.595788 22.051436 L 9.383089 22.235653 L 11.170391 22.435549 L 13.157588 22.674639 L 15.34468 22.952925 L 17.727749 23.282165 L 20.506689 23.689795 L 24.281188 24.262045 L 29.047325 24.987157 L 31.434313 25.328155 L 33.221615 25.563326 L 34.809021 25.751463 L 36.200451 25.904325 L 37.391985 26.017991 L 38.583519 26.115979 L 39.575158 26.19045 L 40.570716 26.249242 L 41.36246 26.288438 L 42.158122 26.315874 L 42.75389 26.335472 L 43.349657 26.34723 L 43.745528 26.35115 L 44.145319 26.35507 L 44.737167 26.35507 L 44.940982 26.35115 L 45.732725 26.343311 L 46.132516 26.331552 L 46.728284 26.315874 L 47.324051 26.292357 L 47.919818 26.261001 L 48.715481 26.210047 L 49.507224 26.151254 L 50.302887 26.084623 L 51.294525 25.978796 L 52.290084 25.86121 L 53.281722 25.724027 L 54.473257 25.539809 L 55.664791 25.328155 L 57.056221 25.053789 L 58.447651 24.748066 L 59.835161 24.407068 L 61.426487 23.983759 L 63.209869 23.458544 L 65.00109 22.890213 L 66.988287 22.208216 L 69.17146 21.400795 L 71.554529 20.467949 L 74.337388 19.31953 L 77.712096 17.857548 L 83.273896 15.376492 L 89.035591 12.828803 L 92.606275 11.311949 L 95.58903 10.112575 L 98.37189 9.054305 L 100.954854 8.129298 L 103.537818 7.263084 L 105.920887 6.506616 L 108.499932 5.73839 L 111.082896 5.017198 L 114.061732 4.221535 L 119.027765 2.951611 L 122.406392 2.069719 L 124.589565 1.462193 L 126.576762 0.866426 L 128.364063 0.282417 L 128.95983 0.0746824 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip28)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.109184 L -47.822317 23.748588 L -46.031096 23.415429 L -44.243795 23.113626 L -42.456493 22.839259 L -40.673111 22.58449 L -39.081786 22.384595 L -37.49046 22.196458 L -35.906974 22.027919 L -34.315648 21.875057 L -32.724323 21.733954 L -31.332893 21.624208 L -29.945383 21.52622 L -28.553953 21.43999 L -27.162523 21.3616 L -25.970989 21.302807 L -24.779454 21.247934 L -23.58792 21.204819 L -22.596281 21.169543 L -21.604642 21.142107 L -20.613004 21.11859 L -19.813421 21.102912 L -19.017759 21.087234 L -18.226015 21.075475 L -16.438714 21.063716 L -16.038923 21.063716 L -15.643051 21.059797 L -15.24718 21.059797 L -14.847388 21.063716 L -14.451517 21.063716 L -14.055645 21.067636 L -13.455959 21.071555 L -12.860191 21.075475 L -12.268344 21.083314 L -11.472681 21.095073 L -10.677018 21.110751 L -9.881356 21.130348 L -7.898078 21.185222 L -6.906439 21.220497 L -5.714905 21.271451 L -4.519451 21.322405 L -3.327917 21.385117 L -1.936487 21.463508 L -0.545057 21.553657 L 0.842453 21.651645 L 2.433779 21.77315 L 4.021185 21.910333 L 5.61251 22.055355 L 7.399812 22.239573 L 9.187113 22.439468 L 10.970495 22.655042 L 12.957692 22.909811 L 14.948809 23.188097 L 17.131982 23.513417 L 19.515051 23.889691 L 22.493886 24.38747 L 27.260024 25.218408 L 31.034522 25.86121 L 33.417591 26.245323 L 35.404788 26.539287 L 36.996113 26.754861 L 38.383624 26.92732 L 39.775054 27.0841 L 40.966588 27.197766 L 42.158122 27.299674 L 43.149761 27.370225 L 43.945424 27.41726 L 44.737167 27.460374 L 45.536749 27.491731 L 46.132516 27.511328 L 46.728284 27.523087 L 47.124155 27.530926 L 47.520027 27.534845 L 47.919818 27.538765 L 48.31569 27.538765 L 48.515585 27.534845 L 48.911457 27.534845 L 49.311248 27.527006 L 49.707119 27.519167 L 50.302887 27.503489 L 50.898654 27.483892 L 51.494421 27.460374 L 52.290084 27.41726 L 53.081827 27.366306 L 53.87749 27.307513 L 54.873048 27.217364 L 55.864687 27.115457 L 57.056221 26.978273 L 58.247755 26.821492 L 59.635266 26.613758 L 61.026696 26.382506 L 62.618021 26.088542 L 64.205427 25.771061 L 65.992728 25.379109 L 67.979926 24.916605 L 70.167018 24.367872 L 72.746063 23.681956 L 75.924794 22.796145 L 79.899188 21.643805 L 84.865221 20.158307 L 90.227126 18.508189 L 94.797287 17.061886 L 98.967657 15.690053 L 102.938132 14.333899 L 106.912526 12.922872 L 111.082896 11.38642 L 115.453162 9.720623 L 119.427556 8.152815 L 122.802263 6.757465 L 125.585123 5.546333 L 127.964272 4.437109 L 129.951469 3.44547 L 131.74269 2.485188 L 133.529992 1.434756 L 135.117398 0.415681 L 135.713165 0.0119701 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 23.772105 L -47.822317 23.391912 L -46.031096 23.039155 L -44.243795 22.713835 L -42.456493 22.415951 L -40.673111 22.141585 L -38.88189 21.894655 L -37.294484 21.694759 L -35.703159 21.514461 L -34.115753 21.349841 L -32.724323 21.220497 L -31.332893 21.102912 L -29.945383 21.001004 L -28.753848 20.922614 L -27.562314 20.852062 L -26.37078 20.793269 L -25.375221 20.746235 L -24.383583 20.70704 L -23.388024 20.675684 L -22.396386 20.648247 L -21.604642 20.632569 L -20.80898 20.616891 L -20.213212 20.609052 L -19.613526 20.601213 L -19.017759 20.597293 L -18.621887 20.593374 L -17.034481 20.593374 L -16.63469 20.597293 L -16.238818 20.601213 L -15.643051 20.605132 L -14.451517 20.620811 L -12.860191 20.652167 L -11.868553 20.679603 L -10.876914 20.71096 L -9.881356 20.746235 L -8.689821 20.793269 L -7.498287 20.844223 L -6.306753 20.906936 L -4.919242 20.985326 L -3.527812 21.071555 L -1.936487 21.181302 L -0.349081 21.302807 L 1.242245 21.436071 L 2.82965 21.581093 L 4.616952 21.757472 L 6.404253 21.949528 L 8.191555 22.157263 L 10.178752 22.408112 L 12.16203 22.678559 L 14.345203 22.99604 L 16.536215 23.333119 L 19.119179 23.756427 L 22.098015 24.277723 L 26.468281 25.065547 L 30.838546 25.849451 L 33.417591 26.284518 L 35.404788 26.59808 L 37.192089 26.852849 L 38.779495 27.060583 L 40.170925 27.221284 L 41.36246 27.342789 L 42.553994 27.448616 L 43.545633 27.523087 L 44.541191 27.585799 L 45.336854 27.628914 L 46.132516 27.664189 L 46.728284 27.683787 L 47.324051 27.699465 L 47.919818 27.711224 L 48.31569 27.715143 L 49.311248 27.715143 L 50.102991 27.707304 L 50.502782 27.699465 L 51.098549 27.683787 L 51.694317 27.664189 L 52.290084 27.640672 L 53.081827 27.597558 L 53.87749 27.550523 L 54.673152 27.491731 L 55.664791 27.409421 L 56.660349 27.311433 L 57.847964 27.178169 L 59.043418 27.025308 L 60.430928 26.829332 L 61.822358 26.609838 L 63.409764 26.331552 L 65.200985 25.994474 L 67.188182 25.582924 L 69.371355 25.100823 L 71.95432 24.497217 L 75.133051 23.717232 L 80.099084 22.455146 L 94.597391 18.712004 L 98.967657 17.547906 L 102.54226 16.556267 L 105.720991 15.631261 L 108.499932 14.776805 L 111.278872 13.875315 L 113.865756 12.989504 L 116.4448 12.052738 L 118.827869 11.13557 L 121.214857 10.159609 L 123.39803 9.207166 L 125.585123 8.188091 L 127.568401 7.196452 L 129.555598 6.130342 L 131.342899 5.091669 L 133.130201 3.962847 L 134.721526 2.87322 L 136.308932 1.685605 L 137.896338 0.380405 L 138.296129 0.0354872 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip29)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 24.105265 L -47.822317 23.744669 L -46.031096 23.411509 L -44.243795 23.109706 L -42.456493 22.83142 L -40.673111 22.580571 L -39.081786 22.376756 L -37.49046 22.188619 L -35.906974 22.020079 L -34.315648 21.867218 L -32.724323 21.726115 L -31.136917 21.600691 L -29.745487 21.502703 L -28.354057 21.416473 L -26.966547 21.338083 L -25.775012 21.27929 L -24.583478 21.224417 L -23.388024 21.177383 L -22.200409 21.138187 L -21.204851 21.110751 L -20.213212 21.087234 L -18.621887 21.055877 L -17.826224 21.044119 L -17.230457 21.040199 L -16.63469 21.03236 L -16.038923 21.03236 L -15.643051 21.028441 L -14.055645 21.028441 L -13.655854 21.03236 L -12.46432 21.040199 L -11.868553 21.048038 L -11.076809 21.059797 L -10.281147 21.071555 L -9.485484 21.087234 L -8.493845 21.110751 L -7.498287 21.142107 L -6.510568 21.173463 L -5.315114 21.216578 L -4.123579 21.267531 L -2.932045 21.322405 L -1.540615 21.396876 L -0.149185 21.479186 L 1.242245 21.569335 L 2.82965 21.68692 L 4.420976 21.812345 L 6.008382 21.949528 L 7.795683 22.121987 L 9.582985 22.306205 L 11.370286 22.5061 L 13.353564 22.745191 L 15.540656 23.027396 L 17.927645 23.356636 L 20.706585 23.764266 L 24.680979 24.371792 L 29.247221 25.069467 L 31.630289 25.410465 L 33.417591 25.645636 L 35.008916 25.837693 L 36.400346 25.986635 L 37.587961 26.100301 L 38.779495 26.202208 L 39.775054 26.27276 L 40.766692 26.331552 L 41.562355 26.370748 L 42.354098 26.402104 L 42.953785 26.417782 L 43.545633 26.42954 L 43.945424 26.43346 L 44.337376 26.437379 L 45.136958 26.437379 L 45.536749 26.43346 L 46.328493 26.417782 L 46.92426 26.398184 L 47.520027 26.374667 L 48.115794 26.34723 L 48.911457 26.296277 L 49.707119 26.237484 L 50.502782 26.170852 L 51.494421 26.068944 L 52.48606 25.951359 L 53.481618 25.814176 L 54.673152 25.629958 L 55.864687 25.422224 L 57.252197 25.151777 L 58.643627 24.846054 L 60.035057 24.508975 L 61.626382 24.089586 L 63.409764 23.57221 L 65.200985 23.007799 L 67.188182 22.333641 L 69.371355 21.541898 L 71.754424 20.620811 L 74.533364 19.48415 L 77.908072 18.041766 L 83.07792 15.760605 L 89.631359 12.875837 L 93.205962 11.370741 L 96.184797 10.171368 L 98.967657 9.113097 L 101.550621 8.188091 L 104.129666 7.314037 L 106.71263 6.490938 L 109.295594 5.718792 L 112.074535 4.934888 L 115.253266 4.080433 L 123.198135 1.97565 L 125.385227 1.340688 L 127.168609 0.780196 L 128.759935 0.239302 L 129.159726 0.09428 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g clip-path="url(#clip30)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 24.117023 L -47.822317 23.756427 L -46.031096 23.427187 L -44.243795 23.125384 L -42.456493 22.851018 L -40.673111 22.600169 L -39.081786 22.396353 L -37.49046 22.212136 L -35.906974 22.043597 L -34.315648 21.890735 L -32.724323 21.753552 L -31.332893 21.643805 L -29.945383 21.549737 L -28.553953 21.463508 L -27.162523 21.385117 L -25.970989 21.326324 L -24.779454 21.275371 L -23.58792 21.232256 L -22.596281 21.2009 L -21.604642 21.173463 L -20.613004 21.149946 L -19.813421 21.134268 L -19.017759 21.122509 L -18.421991 21.11467 L -17.230457 21.106831 L -16.834585 21.102912 L -14.847388 21.102912 L -14.451517 21.106831 L -13.85575 21.110751 L -12.664215 21.126429 L -11.868553 21.138187 L -11.076809 21.153865 L -10.281147 21.173463 L -9.285588 21.2009 L -8.29395 21.232256 L -7.302311 21.267531 L -6.110777 21.314566 L -4.919242 21.373359 L -3.723788 21.432151 L -2.336278 21.514461 L -0.944848 21.60461 L 0.446582 21.706518 L 2.033988 21.831942 L 3.625313 21.973045 L 5.212719 22.125907 L 6.804045 22.290526 L 8.591346 22.494342 L 10.374728 22.713835 L 12.361925 22.980362 L 14.345203 23.266487 L 16.536215 23.603566 L 18.919283 23.995518 L 21.502248 24.446263 L 24.876955 25.065547 L 32.625848 26.500092 L 35.008916 26.907722 L 36.996113 27.221284 L 38.779495 27.479972 L 40.370821 27.687707 L 41.762251 27.848407 L 42.953785 27.969912 L 44.145319 28.075739 L 45.136958 28.15413 L 46.132516 28.220761 L 46.92426 28.263876 L 47.719922 28.299152 L 48.515585 28.330508 L 49.111352 28.346186 L 49.707119 28.357945 L 50.102991 28.365784 L 50.502782 28.369703 L 51.494421 28.369703 L 51.890293 28.365784 L 52.290084 28.361864 L 52.685955 28.354025 L 53.281722 28.342267 L 53.87749 28.322669 L 54.473257 28.299152 L 55.26892 28.263876 L 56.064582 28.220761 L 57.056221 28.15413 L 58.04786 28.079659 L 59.239394 27.977751 L 60.430928 27.860166 L 61.822358 27.707304 L 63.409764 27.511328 L 65.200985 27.272237 L 67.188182 26.982193 L 69.767227 26.582402 L 78.90363 25.147857 L 81.090723 24.838215 L 83.07792 24.579527 L 84.865221 24.363953 L 86.452627 24.191494 L 88.040033 24.034713 L 89.431463 23.913208 L 90.622997 23.823059 L 91.814532 23.740749 L 93.006066 23.666278 L 93.997705 23.615324 L 94.993263 23.57221 L 95.788926 23.544773 L 96.584588 23.521256 L 97.376332 23.501658 L 97.976018 23.4899 L 98.567866 23.478141 L 99.167553 23.474222 L 99.563424 23.470302 L 100.754959 23.470302 L 101.15083 23.474222 L 101.550621 23.478141 L 101.946493 23.482061 L 102.54226 23.4899 L 103.138027 23.501658 L 103.93369 23.521256 L 104.729353 23.544773 L 105.521096 23.576129 L 106.516654 23.615324 L 107.508293 23.666278 L 108.699827 23.73291 L 109.891362 23.807381 L 111.278872 23.909289 L 112.870197 24.030794 L 114.657499 24.187575 L 116.844592 24.38747 L 122.0066 24.869571 L 123.39803 24.987157 L 124.589565 25.073386 L 125.585123 25.136099 L 126.376866 25.175294 L 126.972633 25.198811 L 127.568401 25.218408 L 127.964272 25.230167 L 128.364063 25.234087 L 128.759935 25.238006 L 129.355702 25.238006 L 129.555598 25.234087 L 129.951469 25.226248 L 130.35126 25.214489 L 130.747132 25.198811 L 131.342899 25.167455 L 131.938666 25.12826 L 132.534433 25.073386 L 133.130201 25.006754 L 133.925863 24.897008 L 134.721526 24.763744 L 135.513269 24.603044 L 136.308932 24.407068 L 137.104595 24.179735 L 138.096233 23.846576 L 139.091792 23.454624 L 140.08343 22.99604 L 141.075069 22.466905 L 142.070628 21.863299 L 143.258242 21.044119 L 144.453696 20.115192 L 145.845126 18.90798 L 147.432532 17.391125 L 148.823962 15.984017 " transform="matrix(0.996614,0,0,-0.996614,92.96118,145.183805)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="109.910597" y="171.510365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="115.568067" y="171.510365"/>
<use xlink:href="#glyph5-3" x="119.457204" y="171.510365"/>
<use xlink:href="#glyph5-4" x="123.870586" y="171.510365"/>
<use xlink:href="#glyph5-5" x="129.111043" y="171.510365"/>
<use xlink:href="#glyph5-3" x="134.626529" y="171.510365"/>
<use xlink:href="#glyph5-6" x="139.039911" y="171.510365"/>
<use xlink:href="#glyph5-7" x="144.555398" y="171.510365"/>
<use xlink:href="#glyph5-8" x="148.96878" y="171.510365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-9" x="157.51555" y="171.510365"/>
<use xlink:href="#glyph5-10" x="160.273789" y="171.510365"/>
<use xlink:href="#glyph5-11" x="167.720441" y="171.510365"/>
<use xlink:href="#glyph5-12" x="172.133823" y="171.510365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-15" x="11.252771" y="141.454474"/>
<use xlink:href="#glyph3-16" x="11.252771" y="134.697879"/>
<use xlink:href="#glyph3-2" x="11.252771" y="129.182393"/>
<use xlink:href="#glyph3-17" x="11.252771" y="124.217959"/>
<use xlink:href="#glyph3-9" x="11.252771" y="120.30102"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="11.252771" y="112.581325"/>
<use xlink:href="#glyph3-8" x="11.252771" y="109.823086"/>
<use xlink:href="#glyph3-9" x="11.252771" y="104.307599"/>
<use xlink:href="#glyph3-3" x="11.252771" y="99.894217"/>
<use xlink:href="#glyph3-14" x="11.252771" y="94.929783"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 152 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,352 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="253.13pt" height="177.65pt" viewBox="0 0 253.13 177.65" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.34375 C 2.921875 -6.59375 2.921875 -6.609375 2.6875 -6.609375 C 2.078125 -5.96875 1.203125 -5.96875 0.890625 -5.96875 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.921875 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.703125 -6.453125 2.890625 -6.609375 2.484375 -6.609375 C 1.890625 -6.609375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.4375 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.296875 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.921875 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.296875 C 1.203125 -3.921875 1.203125 -4.578125 1.296875 -5.125 C 1.484375 -6.296875 2.21875 -6.390625 2.46875 -6.390625 C 2.796875 -6.390625 3.453125 -6.21875 3.640625 -5.234375 C 3.734375 -4.671875 3.734375 -3.921875 3.734375 -3.296875 Z M 3.734375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.53125 -1.671875 C 4.53125 -2.03125 4.421875 -2.46875 4.046875 -2.890625 C 3.859375 -3.09375 3.703125 -3.1875 3.0625 -3.59375 C 3.78125 -3.953125 4.265625 -4.46875 4.265625 -5.125 C 4.265625 -6.046875 3.390625 -6.609375 2.484375 -6.609375 C 1.484375 -6.609375 0.6875 -5.875 0.6875 -4.953125 C 0.6875 -4.765625 0.703125 -4.328125 1.125 -3.859375 C 1.234375 -3.734375 1.59375 -3.5 1.84375 -3.328125 C 1.265625 -3.03125 0.421875 -2.484375 0.421875 -1.5 C 0.421875 -0.453125 1.421875 0.21875 2.46875 0.21875 C 3.59375 0.21875 4.53125 -0.609375 4.53125 -1.671875 Z M 3.828125 -5.125 C 3.828125 -4.5625 3.4375 -4.09375 2.84375 -3.734375 L 1.625 -4.53125 C 1.15625 -4.828125 1.125 -5.171875 1.125 -5.34375 C 1.125 -5.9375 1.765625 -6.359375 2.46875 -6.359375 C 3.1875 -6.359375 3.828125 -5.84375 3.828125 -5.125 Z M 4.03125 -1.3125 C 4.03125 -0.578125 3.296875 -0.0625 2.484375 -0.0625 C 1.625 -0.0625 0.90625 -0.671875 0.90625 -1.5 C 0.90625 -2.078125 1.234375 -2.703125 2.078125 -3.171875 L 3.296875 -2.40625 C 3.578125 -2.21875 4.03125 -1.921875 4.03125 -1.3125 Z M 4.03125 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.53125 -3.265625 C 4.53125 -5.9375 3.390625 -6.609375 2.515625 -6.609375 C 1.96875 -6.609375 1.484375 -6.421875 1.046875 -5.984375 C 0.640625 -5.53125 0.421875 -5.125 0.421875 -4.375 C 0.421875 -3.140625 1.296875 -2.15625 2.40625 -2.15625 C 3 -2.15625 3.40625 -2.578125 3.640625 -3.15625 L 3.640625 -2.84375 C 3.640625 -0.515625 2.609375 -0.0625 2.03125 -0.0625 C 1.859375 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.234375 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.328125 0.21875 4.53125 -1.125 4.53125 -3.265625 Z M 3.625 -4.171875 C 3.625 -3.359375 3.28125 -2.390625 2.40625 -2.390625 C 2.25 -2.390625 1.796875 -2.390625 1.484375 -3.015625 C 1.3125 -3.390625 1.3125 -3.875 1.3125 -4.359375 C 1.3125 -4.90625 1.3125 -5.375 1.515625 -5.734375 C 1.78125 -6.234375 2.15625 -6.359375 2.515625 -6.359375 C 2.96875 -6.359375 3.296875 -6.015625 3.46875 -5.578125 C 3.578125 -5.265625 3.625 -4.640625 3.625 -4.171875 Z M 3.625 -4.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 7.109375 0 L 7.109375 -0.3125 L 6.859375 -0.3125 C 6.109375 -0.3125 6.078125 -0.421875 6.078125 -0.78125 L 6.078125 -6 C 6.078125 -6.359375 6.109375 -6.46875 6.859375 -6.46875 L 7.109375 -6.46875 L 7.109375 -6.78125 C 6.75 -6.75 6.015625 -6.75 5.640625 -6.75 C 5.265625 -6.75 4.53125 -6.75 4.171875 -6.78125 L 4.171875 -6.46875 L 4.421875 -6.46875 C 5.171875 -6.46875 5.203125 -6.359375 5.203125 -6 L 5.203125 -3.6875 L 2.234375 -3.6875 L 2.234375 -6 C 2.234375 -6.359375 2.25 -6.46875 3.015625 -6.46875 L 3.25 -6.46875 L 3.25 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.34375 -6.359375 1.34375 -6 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.375 L 5.203125 -3.375 L 5.203125 -0.78125 C 5.203125 -0.421875 5.171875 -0.3125 4.421875 -0.3125 L 4.171875 -0.3125 L 4.171875 0 C 4.53125 -0.03125 5.265625 -0.03125 5.640625 -0.03125 C 6.015625 -0.03125 6.75 -0.03125 7.109375 0 Z M 7.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.984375 -1.859375 L 3.734375 -1.859375 C 3.640625 -0.6875 3.4375 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.875 -3.984375 C 3.953125 -4.09375 3.953125 -4.109375 3.953125 -4.140625 C 3.953125 -4.28125 3.875 -4.28125 3.703125 -4.28125 L 0.53125 -4.28125 L 0.421875 -2.671875 L 0.671875 -2.671875 C 0.71875 -3.6875 0.90625 -4.0625 2 -4.0625 L 3.140625 -4.0625 L 0.359375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.8125 0 Z M 3.984375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.578125 -1.421875 C 3.578125 -2.296875 2.875 -2.953125 2.0625 -2.953125 C 1.5 -2.953125 1.203125 -2.59375 1.046875 -2.28125 C 1.046875 -2.84375 1.09375 -3.359375 1.359375 -3.78125 C 1.59375 -4.15625 1.96875 -4.421875 2.40625 -4.421875 C 2.625 -4.421875 2.90625 -4.359375 3.03125 -4.171875 C 2.859375 -4.15625 2.71875 -4.046875 2.71875 -3.84375 C 2.71875 -3.671875 2.84375 -3.515625 3.046875 -3.515625 C 3.25 -3.515625 3.375 -3.65625 3.375 -3.859375 C 3.375 -4.25 3.09375 -4.609375 2.40625 -4.609375 C 1.390625 -4.609375 0.375 -3.703125 0.375 -2.203125 C 0.375 -0.40625 1.21875 0.140625 1.984375 0.140625 C 2.84375 0.140625 3.578125 -0.5 3.578125 -1.421875 Z M 2.90625 -1.421875 C 2.90625 -1.015625 2.90625 -0.734375 2.71875 -0.453125 C 2.546875 -0.21875 2.328125 -0.078125 1.984375 -0.078125 C 1.640625 -0.078125 1.375 -0.28125 1.21875 -0.59375 C 1.125 -0.796875 1.0625 -1.140625 1.0625 -1.5625 C 1.0625 -2.234375 1.46875 -2.765625 2.015625 -2.765625 C 2.34375 -2.765625 2.5625 -2.640625 2.734375 -2.375 C 2.90625 -2.109375 2.90625 -1.828125 2.90625 -1.421875 Z M 2.90625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.515625 -1.390625 C 3.515625 -2.1875 2.90625 -2.90625 2.046875 -2.90625 C 1.75 -2.90625 1.390625 -2.828125 1.078125 -2.5625 L 1.078125 -3.875 C 1.4375 -3.796875 1.640625 -3.796875 1.75 -3.796875 C 2.671875 -3.796875 3.21875 -4.421875 3.21875 -4.515625 C 3.21875 -4.59375 3.15625 -4.609375 3.125 -4.609375 C 3.125 -4.609375 3.09375 -4.609375 3.078125 -4.59375 C 2.90625 -4.53125 2.53125 -4.390625 2.015625 -4.390625 C 1.828125 -4.390625 1.453125 -4.40625 1.015625 -4.578125 C 0.9375 -4.609375 0.921875 -4.609375 0.921875 -4.609375 C 0.828125 -4.609375 0.828125 -4.546875 0.828125 -4.421875 L 0.828125 -2.375 C 0.828125 -2.265625 0.828125 -2.171875 0.9375 -2.171875 C 1 -2.171875 1.015625 -2.1875 1.078125 -2.28125 C 1.375 -2.65625 1.796875 -2.71875 2.046875 -2.71875 C 2.46875 -2.71875 2.65625 -2.375 2.6875 -2.328125 C 2.8125 -2.09375 2.84375 -1.828125 2.84375 -1.421875 C 2.84375 -1.21875 2.84375 -0.8125 2.640625 -0.5 C 2.46875 -0.25 2.171875 -0.078125 1.828125 -0.078125 C 1.375 -0.078125 0.90625 -0.328125 0.734375 -0.796875 C 1 -0.765625 1.140625 -0.953125 1.140625 -1.140625 C 1.140625 -1.4375 0.875 -1.484375 0.78125 -1.484375 C 0.78125 -1.484375 0.4375 -1.484375 0.4375 -1.109375 C 0.4375 -0.484375 1.015625 0.140625 1.84375 0.140625 C 2.734375 0.140625 3.515625 -0.515625 3.515625 -1.390625 Z M 3.515625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.671875 -1.140625 L 3.671875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.484375 C 2.90625 -4.640625 2.90625 -4.6875 2.75 -4.6875 C 2.671875 -4.6875 2.640625 -4.6875 2.578125 -4.59375 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.3125 -1.140625 L 2.3125 -0.5625 C 2.3125 -0.328125 2.3125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.65625 0 L 3.65625 -0.25 L 3.46875 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.5625 L 2.90625 -1.140625 Z M 2.359375 -1.390625 L 0.53125 -1.390625 L 2.359375 -3.9375 Z M 2.359375 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 0 -8.71875 L -0.3125 -8.71875 L -0.3125 -8.484375 C -0.3125 -7.71875 -0.421875 -7.703125 -0.78125 -7.703125 L -6 -7.703125 C -6.359375 -7.703125 -6.46875 -7.71875 -6.46875 -8.484375 L -6.46875 -8.71875 L -6.78125 -8.71875 L -6.78125 -7.046875 C -6.78125 -6.78125 -6.765625 -6.78125 -6.59375 -6.71875 L -1 -4.546875 L -6.5625 -2.390625 C -6.78125 -2.296875 -6.78125 -2.265625 -6.78125 -2.046875 L -6.78125 -0.359375 L -6.46875 -0.359375 L -6.46875 -0.609375 C -6.46875 -1.375 -6.359375 -1.390625 -6 -1.390625 L -1.046875 -1.390625 C -0.78125 -1.390625 -0.3125 -1.390625 -0.3125 -0.359375 L 0 -0.359375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.78125 -1.671875 -1.046875 -1.671875 L -6.390625 -1.671875 L -0.21875 -4.0625 C -0.09375 -4.125 0 -4.171875 0 -4.265625 C 0 -4.375 -0.078125 -4.40625 -0.1875 -4.4375 L -6.46875 -6.890625 L -0.78125 -6.890625 C -0.421875 -6.890625 -0.3125 -6.875 -0.3125 -6.109375 L -0.3125 -5.875 L 0 -5.875 C -0.03125 -6.234375 -0.03125 -6.921875 -0.03125 -7.296875 C -0.03125 -7.6875 -0.03125 -8.359375 0 -8.71875 Z M 0 -8.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M -0.890625 -4.796875 L -1.4375 -4.796875 L -1.4375 -4.546875 L -0.890625 -4.546875 C -0.3125 -4.546875 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.734375 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.90625 -3.46875 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.109375 C -4.4375 -1.296875 -3.984375 -0.609375 -3.328125 -0.609375 C -3.03125 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.0625 -1.515625 -3.3125 -1.515625 C -3.4375 -1.515625 -3.765625 -1.46875 -3.765625 -1.015625 C -4.125 -1.28125 -4.234375 -1.765625 -4.234375 -2.078125 C -4.234375 -2.5625 -3.84375 -3.140625 -2.953125 -3.140625 L -2.59375 -3.140625 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.25 0.0625 -3.515625 0.0625 -3.984375 C 0.0625 -4.1875 -0.078125 -4.796875 -0.890625 -4.796875 Z M -1.390625 -3.140625 C -0.453125 -3.140625 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.328125 -1.5 -2.375 -3.140625 Z M -1.390625 -3.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M -4.015625 -4.8125 C -4.171875 -4.8125 -4.5 -4.6875 -4.5 -4.3125 C -4.5 -4.109375 -4.4375 -3.671875 -4.03125 -3.25 C -4.359375 -2.84375 -4.390625 -2.421875 -4.390625 -2.203125 C -4.390625 -1.28125 -3.703125 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.921875 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.890625 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.03125 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.328125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.59375 -1.046875 -1.78125 -1.21875 C -1.515625 -1.609375 -1.484375 -2.015625 -1.484375 -2.203125 C -1.484375 -3.125 -2.15625 -3.8125 -2.921875 -3.8125 C -3.296875 -3.8125 -3.65625 -3.65625 -3.890625 -3.40625 C -4.234375 -3.765625 -4.28125 -4.125 -4.28125 -4.296875 C -4.28125 -4.296875 -4.28125 -4.359375 -4.265625 -4.390625 C -4.234375 -4.28125 -4.125 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.53125 C -3.703125 -4.625 -3.78125 -4.8125 -4.015625 -4.8125 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.0625 -2.109375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.703125 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.515625 -1.34375 -3.765625 -1.5 C -3.875 -1.578125 -4.15625 -1.8125 -4.15625 -2.203125 C -4.15625 -3.0625 -3.171875 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.484375 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.390625 -1.75 L -4.28125 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -6 -1.90625 C -6.265625 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -6 -0.84375 C -5.71875 -0.84375 -5.46875 -1.078125 -5.46875 -1.375 C -5.46875 -1.703125 -5.75 -1.90625 -6 -1.90625 Z M -6 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M -1.234375 -3.296875 L -1.796875 -3.296875 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.140625 L -4.28125 -3.140625 L -4.28125 -1.71875 L -6.109375 -1.71875 L -6.109375 -1.46875 C -5.28125 -1.453125 -4.234375 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.296875 -1.234375 -3.296875 Z M -1.234375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.609375 -0.375 -4.53125 -0.859375 -4.53125 L -4.390625 -4.53125 L -4.28125 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.765625 -3.90625 -3.84375 -3.40625 -3.84375 L -1.640625 -3.84375 C -0.78125 -3.84375 -0.109375 -3.375 -0.109375 -2.65625 C -0.109375 -1.8125 -0.578125 -1.78125 -1.09375 -1.78125 L -4.390625 -1.78125 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.0625 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.59375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.875 L 0.109375 -3.875 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 0 -5.234375 L -0.3125 -5.234375 C -0.3125 -4.53125 -0.375 -4.453125 -0.859375 -4.453125 L -6.890625 -4.453125 L -6.78125 -3.03125 L -6.46875 -3.03125 C -6.46875 -3.71875 -6.40625 -3.796875 -5.90625 -3.796875 L -3.765625 -3.796875 C -4.125 -3.515625 -4.390625 -3.078125 -4.390625 -2.546875 C -4.390625 -1.375 -3.40625 -0.34375 -2.140625 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.515625 -0.546875 -3.765625 L 0.109375 -3.765625 Z M -1.171875 -3.765625 C -0.984375 -3.765625 -0.96875 -3.765625 -0.796875 -3.65625 C -0.328125 -3.359375 -0.109375 -2.921875 -0.109375 -2.484375 C -0.109375 -2.046875 -0.359375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.484375 -1.15625 -3.078125 -1.1875 -3.53125 -1.46875 C -3.84375 -1.671875 -4.171875 -2.046875 -4.171875 -2.59375 C -4.171875 -2.9375 -4.015625 -3.359375 -3.578125 -3.65625 C -3.40625 -3.765625 -3.390625 -3.765625 -3.203125 -3.765625 Z M -1.171875 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M -1.1875 -4.125 C -1.28125 -4.125 -1.296875 -4.03125 -1.296875 -3.984375 C -1.296875 -3.90625 -1.234375 -3.875 -1.15625 -3.859375 C -0.140625 -3.515625 -0.140625 -2.625 -0.140625 -2.515625 C -0.140625 -2.03125 -0.4375 -1.625 -0.796875 -1.40625 C -1.28125 -1.09375 -1.9375 -1.09375 -2.296875 -1.09375 L -2.296875 -3.875 C -2.296875 -4.09375 -2.296875 -4.125 -2.5 -4.125 C -3.484375 -4.125 -4.4375 -3.578125 -4.4375 -2.34375 C -4.4375 -1.1875 -3.421875 -0.28125 -2.1875 -0.28125 C -0.859375 -0.28125 0.109375 -1.3125 0.109375 -2.453125 C 0.109375 -3.671875 -0.984375 -4.125 -1.1875 -4.125 Z M -2.5 -3.46875 L -2.5 -1.109375 C -3.984375 -1.171875 -4.234375 -2 -4.234375 -2.34375 C -4.234375 -3.359375 -2.890625 -3.46875 -2.5 -3.46875 Z M -2.5 -3.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.484375 -2.53125 L 2.078125 -2.53125 L 2.078125 -1.5625 L -7.046875 -1.5625 L -7.046875 -2.53125 L -7.4375 -2.53125 L -7.4375 -1.171875 L 2.484375 -1.171875 Z M 2.484375 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 2.484375 -1.578125 L -7.4375 -1.578125 L -7.4375 -0.21875 L -7.046875 -0.21875 L -7.046875 -1.1875 L 2.078125 -1.1875 L 2.078125 -0.21875 L 2.484375 -0.21875 Z M 2.484375 -1.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M -4.9375 -6.1875 C -5.90625 -6.1875 -6.78125 -5.203125 -6.78125 -3.84375 L -6.78125 -0.34375 L -6.46875 -0.34375 L -6.46875 -0.578125 C -6.46875 -1.34375 -6.359375 -1.375 -6 -1.375 L -0.78125 -1.375 C -0.421875 -1.375 -0.3125 -1.34375 -0.3125 -0.578125 L -0.3125 -0.34375 L 0 -0.34375 C -0.03125 -0.6875 -0.03125 -1.421875 -0.03125 -1.8125 C -0.03125 -2.1875 -0.03125 -2.921875 0 -3.28125 L -0.3125 -3.28125 L -0.3125 -3.03125 C -0.3125 -2.265625 -0.421875 -2.25 -0.78125 -2.25 L -3.140625 -2.25 L -3.140625 -3.921875 C -3.140625 -5.125 -3.9375 -6.1875 -4.9375 -6.1875 Z M -4.9375 -5.171875 C -4.46875 -5.171875 -3.390625 -5.171875 -3.390625 -3.59375 L -3.390625 -2.21875 L -6.078125 -2.21875 C -6.40625 -2.21875 -6.46875 -2.25 -6.46875 -2.703125 L -6.46875 -3.59375 C -6.46875 -5.171875 -5.421875 -5.171875 -4.9375 -5.171875 Z M -4.9375 -5.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.34375 -3.796875 -1.921875 -3.4375 -1.75 L -6.890625 -1.75 L -6.78125 -0.3125 L -6.46875 -0.3125 C -6.46875 -1.015625 -6.40625 -1.09375 -5.90625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M -1.265625 -3.578125 C -1.796875 -3.578125 -2.09375 -3.28125 -2.21875 -3.15625 C -2.53125 -2.828125 -2.609375 -2.4375 -2.6875 -2.03125 C -2.796875 -1.46875 -2.921875 -0.796875 -3.5 -0.796875 C -3.84375 -0.796875 -4.25 -1.0625 -4.25 -1.921875 C -4.25 -3 -3.359375 -3.0625 -3.0625 -3.078125 C -2.96875 -3.078125 -2.96875 -3.1875 -2.96875 -3.1875 C -2.96875 -3.328125 -3.015625 -3.328125 -3.203125 -3.328125 L -4.203125 -3.328125 C -4.375 -3.328125 -4.4375 -3.328125 -4.4375 -3.21875 C -4.4375 -3.171875 -4.4375 -3.140625 -4.328125 -3.015625 C -4.28125 -2.984375 -4.203125 -2.890625 -4.171875 -2.84375 C -4.4375 -2.46875 -4.4375 -2.0625 -4.4375 -1.921875 C -4.4375 -0.703125 -3.78125 -0.328125 -3.21875 -0.328125 C -2.875 -0.328125 -2.59375 -0.484375 -2.375 -0.75 C -2.125 -1.078125 -2.0625 -1.34375 -1.921875 -2.0625 C -1.890625 -2.28125 -1.71875 -3.09375 -1.015625 -3.09375 C -0.5 -3.09375 -0.109375 -2.75 -0.109375 -1.96875 C -0.109375 -1.140625 -0.671875 -0.78125 -1.515625 -0.59375 C -1.640625 -0.5625 -1.6875 -0.5625 -1.6875 -0.453125 C -1.6875 -0.328125 -1.625 -0.328125 -1.4375 -0.328125 L -0.125 -0.328125 C 0.046875 -0.328125 0.109375 -0.328125 0.109375 -0.4375 C 0.109375 -0.484375 0.09375 -0.5 -0.09375 -0.6875 C -0.109375 -0.703125 -0.125 -0.703125 -0.3125 -0.890625 C 0.09375 -1.3125 0.109375 -1.765625 0.109375 -1.96875 C 0.109375 -3.109375 -0.5625 -3.578125 -1.265625 -3.578125 Z M -1.265625 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -8.0625 L -0.3125 -8.0625 C -0.3125 -7.546875 -0.3125 -7.296875 -0.609375 -7.296875 L -2.5 -7.296875 C -3.359375 -7.296875 -3.65625 -7.296875 -4.015625 -6.984375 C -4.1875 -6.84375 -4.390625 -6.515625 -4.390625 -5.9375 C -4.390625 -5.109375 -3.796875 -4.671875 -3.40625 -4.5 C -4.28125 -4.359375 -4.390625 -3.625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 L 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.640625 -0.3125 -4.53125 -0.75 -4.53125 L -2.578125 -4.53125 C -3.609375 -4.53125 -4.171875 -5.234375 -4.171875 -5.875 C -4.171875 -6.5 -3.625 -6.609375 -3.0625 -6.609375 L -0.75 -6.609375 C -0.3125 -6.609375 -0.3125 -6.5 -0.3125 -5.828125 L 0 -5.828125 L -0.03125 -6.953125 Z M 0 -8.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -6.46875 -7.109375 L -6.78125 -7.109375 L -6.75 -5.9375 L -6.78125 -4.78125 L -6.46875 -4.78125 C -6.46875 -5.796875 -6 -5.796875 -5.734375 -5.796875 L -1.5 -5.796875 L -6.640625 -2.296875 C -6.765625 -2.21875 -6.78125 -2.203125 -6.78125 -2.015625 L -6.78125 -0.328125 L -6.46875 -0.328125 L -6.46875 -0.609375 C -6.46875 -0.765625 -6.453125 -0.96875 -6.453125 -1.109375 C -6.421875 -1.34375 -6.40625 -1.34375 -6.21875 -1.34375 L -1.046875 -1.34375 C -0.78125 -1.34375 -0.3125 -1.34375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.484375 L 0 -2.65625 L -0.3125 -2.65625 C -0.3125 -1.625 -0.78125 -1.625 -1.046875 -1.625 L -6.203125 -1.625 C -6.15625 -1.671875 -6.140625 -1.6875 -6.078125 -1.71875 L -0.125 -5.78125 C -0.015625 -5.859375 0 -5.875 0 -5.9375 C 0 -6.078125 -0.0625 -6.078125 -0.265625 -6.078125 L -5.734375 -6.078125 C -6 -6.078125 -6.46875 -6.078125 -6.46875 -7.109375 Z M -6.46875 -7.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M -7.25 -4.40625 C -7.359375 -4.40625 -7.4375 -4.3125 -7.4375 -4.203125 C -7.4375 -4.140625 -7.40625 -4.0625 -7.359375 -4.03125 L 2.109375 -0.59375 C 2.234375 -0.546875 2.28125 -0.546875 2.28125 -0.546875 C 2.390625 -0.546875 2.484375 -0.640625 2.484375 -0.75 C 2.484375 -0.875 2.40625 -0.90625 2.25 -0.96875 L -7.0625 -4.359375 C -7.1875 -4.40625 -7.25 -4.40625 -7.25 -4.40625 Z M -7.25 -4.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.671875 6.703125 -2.671875 6.5625 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 6.046875 -4.515625 L 5.78125 -6.75 L 0.328125 -6.75 L 0.328125 -6.4375 L 0.5625 -6.4375 C 1.328125 -6.4375 1.34375 -6.328125 1.34375 -5.96875 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.828125 -0.03125 C 2.25 -0.03125 3.140625 -0.03125 3.5 0 L 3.5 -0.3125 L 3.171875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.21875 L 3.078125 -3.21875 C 4.03125 -3.21875 4.140625 -2.90625 4.140625 -2.0625 L 4.390625 -2.0625 L 4.390625 -4.6875 L 4.140625 -4.6875 C 4.140625 -3.859375 4.03125 -3.53125 3.078125 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.046875 C 2.234375 -6.375 2.25 -6.4375 2.71875 -6.4375 L 3.90625 -6.4375 C 5.390625 -6.4375 5.640625 -5.890625 5.796875 -4.515625 Z M 6.046875 -4.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-2">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.71875 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.953125 -4.140625 2.765625 -4.03125 2.765625 -3.765625 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.46875 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph7-3">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.90625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.515625 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.125 -0.984375 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.359375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph7-4">
<path style="stroke:none;" d="M 5.234375 1.921875 L 5.234375 1.625 C 4.5625 1.625 4.453125 1.625 4.453125 1.171875 L 4.453125 -4.390625 L 4.234375 -4.390625 L 3.859375 -3.484375 C 3.734375 -3.765625 3.328125 -4.390625 2.53125 -4.390625 C 1.375 -4.390625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.140625 0.109375 3.546875 -0.3125 3.765625 -0.609375 L 3.765625 1.171875 C 3.765625 1.625 3.65625 1.625 3 1.625 L 3 1.921875 L 4.109375 1.890625 Z M 3.796875 -1.34375 C 3.796875 -1.03125 3.625 -0.75 3.40625 -0.515625 C 3.28125 -0.375 2.953125 -0.109375 2.484375 -0.109375 C 1.765625 -0.109375 1.15625 -0.984375 1.15625 -2.140625 C 1.15625 -3.3125 1.859375 -4.140625 2.59375 -4.140625 C 3.390625 -4.140625 3.796875 -3.28125 3.796875 -2.75 Z M 3.796875 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-5">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.90625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph7-6">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.359375 4.53125 -3.65625 4.234375 -4.015625 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.453125 -4.390625 2 -3.953125 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.609375 2.484375 -4.171875 3.109375 -4.171875 C 3.734375 -4.171875 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph7-7">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.90625 -1.28125 3.875 -1.234375 3.859375 -1.1875 C 3.578125 -0.265625 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.28125 -2.921875 3.546875 -2.921875 C 3.8125 -2.921875 4.015625 -3.078125 4.015625 -3.390625 C 4.015625 -4.0625 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-8">
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.25 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.734375 -3.953125 3.90625 -3.796875 3.90625 -3.546875 C 3.90625 -3.4375 3.890625 -3.421875 3.84375 -3.296875 L 2.84375 -0.859375 L 1.734375 -3.53125 C 1.703125 -3.625 1.671875 -3.671875 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.25 0.1875 -4.28125 L 0.1875 -3.96875 C 0.671875 -3.96875 0.859375 -3.96875 0.984375 -3.625 L 2.484375 0 L 2.234375 0.578125 C 2.015625 1.125 1.734375 1.8125 1.09375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.015625 1.375 1.015625 1.21875 C 1.015625 0.96875 0.828125 0.796875 0.609375 0.796875 C 0.40625 0.796875 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.09375 2.03125 C 1.71875 2.03125 2.140625 1.46875 2.375 0.90625 L 4.125 -3.328125 C 4.375 -3.953125 4.875 -3.96875 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.078125 L 1.5625 2.078125 L 1.5625 -7.046875 L 2.53125 -7.046875 L 2.53125 -7.4375 L 1.171875 -7.4375 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-10">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.4375 L 0.21875 -7.4375 L 0.21875 -7.046875 L 1.1875 -7.046875 L 1.1875 2.078125 L 0.21875 2.078125 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43.519531 10.25 L 241.269531 10.25 L 241.269531 73.8125 L 43.519531 73.8125 Z M 43.519531 10.25 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 43.519531 98 L 241.269531 98 L 241.269531 144.433594 L 43.519531 144.433594 Z M 43.519531 98 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 73.8125 L 241.269531 73.8125 L 241.269531 10.25 L 43.519531 10.25 Z M 43.519531 73.8125 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -115.508903 L -66.142893 -51.72794 M -46.230941 -115.508903 L -46.230941 -51.72794 M -34.585585 -115.508903 L -34.585585 -51.72794 M -26.322908 -115.508903 L -26.322908 -51.72794 M -19.910319 -115.508903 L -19.910319 -51.72794 M -14.673632 -115.508903 L -14.673632 -51.72794 M -10.244399 -115.508903 L -10.244399 -51.72794 M -6.410956 -115.508903 L -6.410956 -51.72794 M -3.028276 -115.508903 L -3.028276 -51.72794 M 0.00163331 -115.508903 L 0.00163331 -51.72794 M 19.909666 -115.508903 L 19.909666 -51.72794 M 31.558942 -115.508903 L 31.558942 -51.72794 M 39.821618 -115.508903 L 39.821618 -51.72794 M 46.230288 -115.508903 L 46.230288 -51.72794 M 51.470894 -115.508903 L 51.470894 -51.72794 M 55.896208 -115.508903 L 55.896208 -51.72794 M 59.733571 -115.508903 L 59.733571 -51.72794 M 63.116251 -115.508903 L 63.116251 -51.72794 M 66.14224 -115.508903 L 66.14224 -51.72794 M 86.054193 -115.508903 L 86.054193 -51.72794 M 97.703469 -115.508903 L 97.703469 -51.72794 M 105.966145 -115.508903 L 105.966145 -51.72794 M 112.374815 -115.508903 L 112.374815 -51.72794 M 117.611502 -115.508903 L 117.611502 -51.72794 M 122.040735 -115.508903 L 122.040735 -51.72794 M 125.878097 -115.508903 L 125.878097 -51.72794 M 129.260778 -115.508903 L 129.260778 -51.72794 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -115.508903 L -66.142893 -51.72794 M 0.00163331 -115.508903 L 0.00163331 -51.72794 M 66.14224 -115.508903 L 66.14224 -51.72794 M 132.286767 -115.508903 L 132.286767 -51.72794 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -115.504983 L 132.286767 -115.504983 M -66.142893 -112.471154 L 132.286767 -112.471154 M -66.142893 -110.315332 L 132.286767 -110.315332 M -66.142893 -108.64555 L 132.286767 -108.64555 M -66.142893 -107.281503 L 132.286767 -107.281503 M -66.142893 -106.125199 L 132.286767 -106.125199 M -66.142893 -105.125682 L 132.286767 -105.125682 M -66.142893 -104.243755 L 132.286767 -104.243755 M -66.142893 -103.4559 L 132.286767 -103.4559 M -66.142893 -98.26233 L 132.286767 -98.26233 M -66.142893 -95.228501 L 132.286767 -95.228501 M -66.142893 -93.072679 L 132.286767 -93.072679 M -66.142893 -91.402897 L 132.286767 -91.402897 M -66.142893 -90.03885 L 132.286767 -90.03885 M -66.142893 -88.882546 L 132.286767 -88.882546 M -66.142893 -87.883028 L 132.286767 -87.883028 M -66.142893 -87.001101 L 132.286767 -87.001101 M -66.142893 -86.213247 L 132.286767 -86.213247 M -66.142893 -81.023596 L 132.286767 -81.023596 M -66.142893 -77.985847 L 132.286767 -77.985847 M -66.142893 -75.830026 L 132.286767 -75.830026 M -66.142893 -74.160244 L 132.286767 -74.160244 M -66.142893 -72.796197 L 132.286767 -72.796197 M -66.142893 -71.639893 L 132.286767 -71.639893 M -66.142893 -70.640375 L 132.286767 -70.640375 M -66.142893 -69.758448 L 132.286767 -69.758448 M -66.142893 -68.970593 L 132.286767 -68.970593 M -66.142893 -63.780943 L 132.286767 -63.780943 M -66.142893 -60.743194 L 132.286767 -60.743194 M -66.142893 -58.587373 L 132.286767 -58.587373 M -66.142893 -56.917591 L 132.286767 -56.917591 M -66.142893 -55.553544 L 132.286767 -55.553544 M -66.142893 -54.397239 L 132.286767 -54.397239 M -66.142893 -53.397722 L 132.286767 -53.397722 M -66.142893 -52.515795 L 132.286767 -52.515795 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -103.4559 L 132.286767 -103.4559 M -66.142893 -86.213247 L 132.286767 -86.213247 M -66.142893 -68.970593 L 132.286767 -68.970593 M -66.142893 -51.72794 L 132.286767 -51.72794 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -115.508903 L -66.142893 -112.671057 M -46.230941 -115.508903 L -46.230941 -112.671057 M -34.585585 -115.508903 L -34.585585 -112.671057 M -26.322908 -115.508903 L -26.322908 -112.671057 M -19.910319 -115.508903 L -19.910319 -112.671057 M -14.673632 -115.508903 L -14.673632 -112.671057 M -10.244399 -115.508903 L -10.244399 -112.671057 M -6.410956 -115.508903 L -6.410956 -112.671057 M -3.028276 -115.508903 L -3.028276 -112.671057 M 0.00163331 -115.508903 L 0.00163331 -112.671057 M 19.909666 -115.508903 L 19.909666 -112.671057 M 31.558942 -115.508903 L 31.558942 -112.671057 M 39.821618 -115.508903 L 39.821618 -112.671057 M 46.230288 -115.508903 L 46.230288 -112.671057 M 51.470894 -115.508903 L 51.470894 -112.671057 M 55.896208 -115.508903 L 55.896208 -112.671057 M 59.733571 -115.508903 L 59.733571 -112.671057 M 63.116251 -115.508903 L 63.116251 -112.671057 M 66.14224 -115.508903 L 66.14224 -112.671057 M 86.054193 -115.508903 L 86.054193 -112.671057 M 97.703469 -115.508903 L 97.703469 -112.671057 M 105.966145 -115.508903 L 105.966145 -112.671057 M 112.374815 -115.508903 L 112.374815 -112.671057 M 117.611502 -115.508903 L 117.611502 -112.671057 M 122.040735 -115.508903 L 122.040735 -112.671057 M 125.878097 -115.508903 L 125.878097 -112.671057 M 129.260778 -115.508903 L 129.260778 -112.671057 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -115.508903 L -66.142893 -111.256054 M 0.00163331 -115.508903 L 0.00163331 -111.256054 M 66.14224 -115.508903 L 66.14224 -111.256054 M 132.286767 -115.508903 L 132.286767 -111.256054 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -115.504983 L -63.312888 -115.504983 M -66.142893 -112.471154 L -63.312888 -112.471154 M -66.142893 -110.315332 L -63.312888 -110.315332 M -66.142893 -108.64555 L -63.312888 -108.64555 M -66.142893 -107.281503 L -63.312888 -107.281503 M -66.142893 -106.125199 L -63.312888 -106.125199 M -66.142893 -105.125682 L -63.312888 -105.125682 M -66.142893 -104.243755 L -63.312888 -104.243755 M -66.142893 -103.4559 L -63.312888 -103.4559 M -66.142893 -98.26233 L -63.312888 -98.26233 M -66.142893 -95.228501 L -63.312888 -95.228501 M -66.142893 -93.072679 L -63.312888 -93.072679 M -66.142893 -91.402897 L -63.312888 -91.402897 M -66.142893 -90.03885 L -63.312888 -90.03885 M -66.142893 -88.882546 L -63.312888 -88.882546 M -66.142893 -87.883028 L -63.312888 -87.883028 M -66.142893 -87.001101 L -63.312888 -87.001101 M -66.142893 -86.213247 L -63.312888 -86.213247 M -66.142893 -81.023596 L -63.312888 -81.023596 M -66.142893 -77.985847 L -63.312888 -77.985847 M -66.142893 -75.830026 L -63.312888 -75.830026 M -66.142893 -74.160244 L -63.312888 -74.160244 M -66.142893 -72.796197 L -63.312888 -72.796197 M -66.142893 -71.639893 L -63.312888 -71.639893 M -66.142893 -70.640375 L -63.312888 -70.640375 M -66.142893 -69.758448 L -63.312888 -69.758448 M -66.142893 -68.970593 L -63.312888 -68.970593 M -66.142893 -63.780943 L -63.312888 -63.780943 M -66.142893 -60.743194 L -63.312888 -60.743194 M -66.142893 -58.587373 L -63.312888 -58.587373 M -66.142893 -56.917591 L -63.312888 -56.917591 M -66.142893 -55.553544 L -63.312888 -55.553544 M -66.142893 -54.397239 L -63.312888 -54.397239 M -66.142893 -53.397722 L -63.312888 -53.397722 M -66.142893 -52.515795 L -63.312888 -52.515795 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -103.4559 L -61.901804 -103.4559 M -66.142893 -86.213247 L -61.901804 -86.213247 M -66.142893 -68.970593 L -61.901804 -68.970593 M -66.142893 -51.72794 L -61.901804 -51.72794 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -115.508903 L 132.286767 -115.508903 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -115.508903 L -66.142893 -51.72794 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.125267" y="65.839999"/>
<use xlink:href="#glyph0-2" x="24.089505" y="65.839999"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.054142" y="62.236384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.259813" y="62.236384"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.125267" y="48.657056"/>
<use xlink:href="#glyph0-2" x="24.089505" y="48.657056"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.054142" y="45.053441"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="35.259813" y="45.053441"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.125267" y="31.474113"/>
<use xlink:href="#glyph0-2" x="24.089505" y="31.474113"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.054142" y="27.870499"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="35.259813" y="27.870499"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.125267" y="14.290174"/>
<use xlink:href="#glyph0-2" x="24.089505" y="14.290174"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.054142" y="10.686559"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="35.259813" y="10.686559"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 -68.962754 L -37.341117 -68.927477 L -24.033818 -68.860842 L -15.296861 -68.76677 L -8.743163 -68.64918 L -3.577031 -68.508072 L 0.793408 -68.335606 L 4.568055 -68.135702 L 7.746912 -67.912281 L 10.525962 -67.669261 L 13.105109 -67.387044 L 15.292288 -67.093069 L 17.275644 -66.775575 L 19.266839 -66.391447 L 21.054211 -65.979881 L 22.64168 -65.548717 L 24.233068 -65.039159 L 25.620633 -64.517842 L 27.012118 -63.902453 L 28.403603 -63.181232 L 29.791168 -62.322823 L 31.182653 -61.307627 L 32.574138 -60.135644 L 34.757397 -58.238521 L 35.353188 -57.885751 L 35.749075 -57.748562 L 36.148882 -57.705446 L 36.348786 -57.728964 L 36.744673 -57.854393 L 37.14448 -58.093493 L 37.736351 -58.634409 L 38.528125 -59.594729 L 40.519321 -62.393378 L 42.506596 -65.035239 L 44.293968 -67.128346 L 46.08134 -68.994111 L 48.068616 -70.863797 L 50.251875 -72.729562 L 52.831022 -74.744276 L 55.613992 -76.755069 L 58.788929 -78.899132 L 62.567496 -81.294054 L 66.937935 -83.931995 L 72.300051 -87.028539 L 78.853749 -90.681677 L 87.394722 -95.310814 L 99.510439 -101.750841 L 119.571339 -112.27909 L 132.286767 -118.91902 " transform="matrix(0.996575,0,0,-0.996575,109.435872,-41.300762)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="11.252326" y="80.126895"/>
<use xlink:href="#glyph3-2" x="11.252326" y="71.025461"/>
<use xlink:href="#glyph3-3" x="11.252326" y="66.061223"/>
<use xlink:href="#glyph3-4" x="11.252326" y="61.096985"/>
<use xlink:href="#glyph3-5" x="11.252326" y="55.581716"/>
<use xlink:href="#glyph3-6" x="11.252326" y="52.823586"/>
<use xlink:href="#glyph3-7" x="11.252326" y="48.962401"/>
<use xlink:href="#glyph3-8" x="11.252326" y="43.447133"/>
<use xlink:href="#glyph3-9" x="11.252326" y="37.931864"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="11.252326" y="30.212474"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.252326" y="27.449944"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.252326" y="19.102634"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.252326" y="14.138695"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="11.252326" y="6.692288"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 144.433594 L 241.269531 144.433594 L 241.269531 80.875 L 43.519531 80.875 Z M 43.519531 144.433594 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 0.000281229 L -66.142893 63.777324 M -46.230941 0.000281229 L -46.230941 63.777324 M -34.585585 0.000281229 L -34.585585 63.777324 M -26.322908 0.000281229 L -26.322908 63.777324 M -19.910319 0.000281229 L -19.910319 63.777324 M -14.673632 0.000281229 L -14.673632 63.777324 M -10.244399 0.000281229 L -10.244399 63.777324 M -6.410956 0.000281229 L -6.410956 63.777324 M -3.028276 0.000281229 L -3.028276 63.777324 M 0.00163331 0.000281229 L 0.00163331 63.777324 M 19.909666 0.000281229 L 19.909666 63.777324 M 31.558942 0.000281229 L 31.558942 63.777324 M 39.821618 0.000281229 L 39.821618 63.777324 M 46.230288 0.000281229 L 46.230288 63.777324 M 51.470894 0.000281229 L 51.470894 63.777324 M 55.896208 0.000281229 L 55.896208 63.777324 M 59.733571 0.000281229 L 59.733571 63.777324 M 63.116251 0.000281229 L 63.116251 63.777324 M 66.14224 0.000281229 L 66.14224 63.777324 M 86.054193 0.000281229 L 86.054193 63.777324 M 97.703469 0.000281229 L 97.703469 63.777324 M 105.966145 0.000281229 L 105.966145 63.777324 M 112.374815 0.000281229 L 112.374815 63.777324 M 117.611502 0.000281229 L 117.611502 63.777324 M 122.040735 0.000281229 L 122.040735 63.777324 M 125.878097 0.000281229 L 125.878097 63.777324 M 129.260778 0.000281229 L 129.260778 63.777324 " transform="matrix(0.996575,0,0,-0.996575,109.435872,144.433874)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 0.000281229 L -66.142893 63.777324 M 0.00163331 0.000281229 L 0.00163331 63.777324 M 66.14224 0.000281229 L 66.14224 63.777324 M 132.286767 0.000281229 L 132.286767 63.777324 " transform="matrix(0.996575,0,0,-0.996575,109.435872,144.433874)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 0.000281229 L 132.286767 0.000281229 M -66.142893 15.945522 L 132.286767 15.945522 M -66.142893 31.890762 L 132.286767 31.890762 M -66.142893 47.836003 L 132.286767 47.836003 M -66.142893 63.777324 L 132.286767 63.777324 " transform="matrix(0.996575,0,0,-0.996575,109.435872,144.433874)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 0.000281229 L -66.142893 2.834207 M -46.230941 0.000281229 L -46.230941 2.834207 M -34.585585 0.000281229 L -34.585585 2.834207 M -26.322908 0.000281229 L -26.322908 2.834207 M -19.910319 0.000281229 L -19.910319 2.834207 M -14.673632 0.000281229 L -14.673632 2.834207 M -10.244399 0.000281229 L -10.244399 2.834207 M -6.410956 0.000281229 L -6.410956 2.834207 M -3.028276 0.000281229 L -3.028276 2.834207 M 0.00163331 0.000281229 L 0.00163331 2.834207 M 19.909666 0.000281229 L 19.909666 2.834207 M 31.558942 0.000281229 L 31.558942 2.834207 M 39.821618 0.000281229 L 39.821618 2.834207 M 46.230288 0.000281229 L 46.230288 2.834207 M 51.470894 0.000281229 L 51.470894 2.834207 M 55.896208 0.000281229 L 55.896208 2.834207 M 59.733571 0.000281229 L 59.733571 2.834207 M 63.116251 0.000281229 L 63.116251 2.834207 M 66.14224 0.000281229 L 66.14224 2.834207 M 86.054193 0.000281229 L 86.054193 2.834207 M 97.703469 0.000281229 L 97.703469 2.834207 M 105.966145 0.000281229 L 105.966145 2.834207 M 112.374815 0.000281229 L 112.374815 2.834207 M 117.611502 0.000281229 L 117.611502 2.834207 M 122.040735 0.000281229 L 122.040735 2.834207 M 125.878097 0.000281229 L 125.878097 2.834207 M 129.260778 0.000281229 L 129.260778 2.834207 " transform="matrix(0.996575,0,0,-0.996575,109.435872,144.433874)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 0.000281229 L -66.142893 4.253129 M 0.00163331 0.000281229 L 0.00163331 4.253129 M 66.14224 0.000281229 L 66.14224 4.253129 M 132.286767 0.000281229 L 132.286767 4.253129 " transform="matrix(0.996575,0,0,-0.996575,109.435872,144.433874)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 0.000281229 L -61.901804 0.000281229 M -66.142893 15.945522 L -61.901804 15.945522 M -66.142893 31.890762 L -61.901804 31.890762 M -66.142893 47.836003 L -61.901804 47.836003 M -66.142893 63.777324 L -61.901804 63.777324 " transform="matrix(0.996575,0,0,-0.996575,109.435872,144.433874)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 0.000281229 L 132.286767 0.000281229 " transform="matrix(0.996575,0,0,-0.996575,109.435872,144.433874)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 0.000281229 L -66.142893 63.777324 " transform="matrix(0.996575,0,0,-0.996575,109.435872,144.433874)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="33.224807" y="156.321018"/>
<use xlink:href="#glyph0-2" x="38.189045" y="156.321018"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="43.153682" y="152.7184"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="49.359353" y="152.7184"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="102.244589" y="156.321018"/>
<use xlink:href="#glyph0-2" x="107.208827" y="156.321018"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="112.173463" y="152.7184"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="168.161036" y="156.321018"/>
<use xlink:href="#glyph0-2" x="173.125274" y="156.321018"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="178.08991" y="152.7184"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="234.077483" y="156.321018"/>
<use xlink:href="#glyph0-2" x="239.041721" y="156.321018"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="244.006358" y="152.7184"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="17.098234" y="147.146551"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="24.820692" y="147.146551"/>
<use xlink:href="#glyph0-3" x="29.78493" y="147.146551"/>
<use xlink:href="#glyph0-2" x="34.749168" y="147.146551"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="22.06317" y="131.256165"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="29.785628" y="131.256165"/>
<use xlink:href="#glyph0-2" x="34.749866" y="131.256165"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="34.749567" y="115.779359"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="29.784631" y="99.88997"/>
<use xlink:href="#glyph0-2" x="34.748869" y="99.88997"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="24.820692" y="83.999585"/>
<use xlink:href="#glyph0-3" x="29.78493" y="83.999585"/>
<use xlink:href="#glyph0-2" x="34.749168" y="83.999585"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -66.142893 31.824128 L -63.16394 31.820208 L -60.38489 31.812369 L -57.60192 31.80453 L -54.82287 31.79669 L -52.239804 31.784931 L -49.660657 31.777092 L -41.911459 31.741815 L -39.528296 31.726136 L -37.145133 31.714377 L -32.378807 31.68302 L -27.612482 31.643823 L -25.225399 31.620305 L -22.842236 31.596787 L -20.459074 31.569349 L -18.275814 31.545831 L -16.092555 31.514474 L -13.905376 31.483116 L -11.722117 31.451759 L -9.534938 31.412562 L -7.355598 31.373365 L -5.364403 31.330249 L -3.377127 31.287132 L -1.389852 31.236177 L 0.597424 31.181301 L 2.58078 31.118586 L 4.368152 31.059791 L 6.155524 30.993157 L 7.942896 30.918683 L 9.734188 30.83245 L 11.321657 30.750137 L 12.909125 30.656065 L 14.496594 30.550233 L 16.084063 30.424804 L 17.475547 30.303294 L 18.867032 30.166105 L 20.258517 30.001479 L 21.450099 29.840772 L 22.64168 29.656547 L 23.833261 29.437045 L 25.024843 29.178347 L 26.02044 28.923568 L 27.012118 28.617833 L 28.007716 28.253303 L 28.999394 27.80646 L 29.991072 27.249866 L 30.786766 26.693272 L 31.57854 26.007329 L 32.374235 25.14892 L 33.169929 24.055331 L 33.961703 22.663846 L 34.757397 20.899992 L 35.749075 18.160139 L 38.332142 10.587325 L 39.123916 8.905784 L 39.92353 7.584854 L 40.719224 6.54614 L 41.510999 5.726927 L 42.506596 4.927314 L 43.498274 4.308005 L 44.493872 3.818045 L 45.48555 3.418238 L 46.477228 3.092905 L 47.668809 2.767572 L 48.86039 2.497115 L 50.051972 2.273693 L 51.243553 2.081629 L 52.635038 1.889565 L 54.026523 1.728858 L 55.414088 1.58775 L 57.001557 1.450561 L 58.592945 1.329051 L 60.184333 1.22322 L 61.771802 1.129148 L 63.559174 1.038995 L 65.346546 0.956682 L 67.133918 0.882208 L 68.92129 0.815574 L 70.908566 0.752859 L 72.895842 0.694064 L 74.883117 0.639188 L 76.866473 0.592152 L 79.053652 0.541196 L 81.236911 0.49808 L 83.420171 0.458883 L 85.60735 0.423606 L 87.790609 0.392249 L 89.977788 0.360891 L 92.360951 0.329534 L 94.744114 0.302096 L 99.510439 0.25506 L 104.276765 0.215863 L 106.663847 0.200185 L 109.04701 0.180586 L 111.630076 0.164908 L 114.209223 0.153149 L 116.792289 0.13747 L 119.375356 0.125711 L 121.954502 0.117871 L 124.533649 0.106112 L 127.320538 0.0943534 L 130.099588 0.0865141 L 132.286767 0.0825944 " transform="matrix(0.996575,0,0,-0.996575,109.435872,144.433874)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="109.905259" y="170.882969"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-2" x="115.562505" y="170.882969"/>
<use xlink:href="#glyph7-3" x="119.451489" y="170.882969"/>
<use xlink:href="#glyph7-4" x="123.864696" y="170.882969"/>
<use xlink:href="#glyph7-5" x="129.104946" y="170.882969"/>
<use xlink:href="#glyph7-3" x="134.620215" y="170.882969"/>
<use xlink:href="#glyph7-6" x="139.033422" y="170.882969"/>
<use xlink:href="#glyph7-7" x="144.548691" y="170.882969"/>
<use xlink:href="#glyph7-8" x="148.961898" y="170.882969"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-9" x="157.508331" y="170.882969"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="160.26617" y="170.882969"/>
<use xlink:href="#glyph0-6" x="167.712527" y="170.882969"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-10" x="172.12541" y="170.882969"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-12" x="11.25133" y="137.296405"/>
<use xlink:href="#glyph3-13" x="11.25133" y="130.540077"/>
<use xlink:href="#glyph3-2" x="11.25133" y="125.024809"/>
<use xlink:href="#glyph3-14" x="11.25133" y="120.060571"/>
<use xlink:href="#glyph3-9" x="11.25133" y="116.143787"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="11.25133" y="108.424397"/>
<use xlink:href="#glyph3-8" x="11.25133" y="105.666266"/>
<use xlink:href="#glyph3-9" x="11.25133" y="100.150998"/>
<use xlink:href="#glyph3-3" x="11.25133" y="95.73779"/>
<use xlink:href="#glyph3-11" x="11.25133" y="90.773552"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 62 KiB

View File

@ -0,0 +1,212 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\setlength\fwidth{7cm}
\setlength\fheight{5cm}
\begin{tikzpicture}
\begin{axis}[%
width=\fwidth,
height=0.45\fheight,
at={(0,0.55\fheight)},
xmode=log,
xmin=0.1,
xmax=100,
xtick={0.1,1,10,100},
xticklabels={{}},
xminorticks=true,
ymode=log,
ymin=2e-07,
ymax=0.001,
yminorticks=true,
ylabel={Magnitude [$\si{\meter/\newton}$]},
xminorgrids,
yminorgrids
]
\addplot [color=mycolor1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 0.000100077040681054\\
0.272543253128103 0.000100575030023101\\
0.43314832233764 0.000101464934759738\\
0.587176639073325 0.000102724574034075\\
0.737679760252773 0.000104367175122706\\
0.882969995549408 0.000106373827767982\\
1.02804473209331 0.000108834566992957\\
1.1723818032866 0.000111792586344107\\
1.30953502048267 0.000115140426960708\\
1.44264395121816 0.000118966190620297\\
1.57833140565212 0.00012354732835445\\
1.70306502925285 0.00012847169721901\\
1.82499324481615 0.000134067470279222\\
1.95565071586595 0.000141092091396706\\
2.08122156998634 0.000149060642425566\\
2.19959306803007 0.000157914155457765\\
2.32469705998565 0.000169028899516352\\
2.43998629725955 0.000181271551082471\\
2.56099310025846 0.000196738235618899\\
2.68800102153761 0.000216674296189979\\
2.82130767593947 0.000242927525096564\\
2.96122543798804 0.000278143152215355\\
3.10808217386906 0.000325419446839597\\
3.35371015200293 0.000419096223177928\\
3.42400613797143 0.000439341276461064\\
3.47168681892656 0.000447567844417553\\
3.52003147279668 0.000449984807083431\\
3.54445567397044 0.000448731850351484\\
3.59381366380463 0.000441170960941456\\
3.64385898376355 0.000427344400826069\\
3.72023668141307 0.00039763388652928\\
3.824569722467 0.000349750691805404\\
4.09838367175726 0.000240611931259811\\
4.39180089259609 0.000169131547428242\\
4.67379510799246 0.000127877923720101\\
4.97389595879007 9.967307801278e-05\\
5.32999408084409 7.76763468688566e-05\\
5.75121707184161 6.05462047310449e-05\\
6.29214610961035 4.62441646969631e-05\\
6.9317172761554 3.53667028681261e-05\\
7.74263682681128 2.65611239929399e-05\\
8.8296999554941 1.9284460658412e-05\\
10.2804473209331 1.35628028157818e-05\\
12.3906215694792 8.96920494033127e-06\\
15.5665435927106 5.5069217658656e-06\\
20.9566239948044 2.96718273940607e-06\\
31.9524750575921 1.25569563497959e-06\\
64.2403365939419 3.07819423434704e-07\\
100 1.26808063706741e-07\\
};
\end{axis}
\begin{axis}[%
width=\fwidth,
height=0.45\fheight,
at={(0,0.05\fheight)},
xmode=log,
xmin=0.1,
xmax=100,
xminorticks=true,
xlabel={Frequency [$\si{\hertz}$]},
ymin=-180,
ymax=180,
ytick={-180, -90, 0, 90, 180},
ylabel={Phase [deg]},
xminorgrids
]
\addplot [color=mycolor1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 -0.360279720677909\\
0.110928986489522 -0.399726239508823\\
0.122204468663152 -0.440446767977335\\
0.13462605792989 -0.485336746925839\\
0.148310251433614 -0.534830252917459\\
0.162259528707813 -0.585330760453786\\
0.177520801171768 -0.640642308219981\\
0.194217468148908 -0.701236456999254\\
0.212484535249894 -0.767635080810521\\
0.232469705998571 -0.840416979069801\\
0.252582002696278 -0.91382126433902\\
0.274434330322828 -0.9937740634835\\
0.298177229001969 -1.0808986125088\\
0.323974262952812 -1.17588848183723\\
0.352003147279672 -1.27951850633903\\
0.382456972246693 -1.39265813896972\\
0.415545533471895 -1.51628791363001\\
0.451496777203605 -1.65151992855328\\
0.490558370636517 -1.79962357173105\\
0.529326605836072 -1.94793502196421\\
0.571158647812626 -2.10957933285724\\
0.616296625513279 -2.28604784742126\\
0.6650018030431 -2.47907386285402\\
0.717556091893683 -2.69068950564727\\
0.774263682681121 -2.92329985625085\\
0.829695852083464 -3.15539135978239\\
0.889096598952924 -3.40978953925455\\
0.952750047242714 -3.68959754515299\\
1.02096066230607 -3.9985784472124\\
1.09405470720574 -4.34134801105651\\
1.16430313292089 -4.68343908636479\\
1.23906215694794 -5.06271309073682\\
1.31862140139471 -5.48563013111718\\
1.40328908478584 -5.96033793666024\\
1.48310251433614 -6.43414310335521\\
1.5674554102056 -6.96642431057373\\
1.65660595894989 -7.56917034593727\\
1.75082703173578 -8.25798483497323\\
1.83765620038813 -8.94739205623571\\
1.92879150802077 -9.73672637995722\\
2.02444650997683 -10.6502453305039\\
2.11020342856859 -11.5566518641599\\
2.19959306803003 -12.6059438949727\\
2.29276931286572 -13.8354493380888\\
2.38989256623109 -15.2964499277763\\
2.47396410088675 -16.7419892536468\\
2.56099310025844 -18.455940403627\\
2.65108360190857 -20.5188442655184\\
2.74434330322828 -23.0448181567426\\
2.84088369018327 -26.1991511292148\\
2.92055551218269 -29.3354738213304\\
3.00246170908546 -33.2060093347327\\
3.08666494333735 -38.0554185709144\\
3.17322963473503 -44.2102992203773\\
3.26222200971169 -52.0707471833003\\
3.35371015200292 -62.0209044940134\\
3.47168681892662 -77.4986746832345\\
3.7982153061908 -120.230303267244\\
3.90473523688559 -129.722782020331\\
4.01424249049931 -137.194379975395\\
4.1268208457029 -143.04709416857\\
4.24255643071768 -147.66917780573\\
4.39180089259608 -152.179051563568\\
4.54629546953248 -155.675990585521\\
4.70622484984116 -158.450422486142\\
4.8717802187946 -160.697705094482\\
5.04315948717143 -162.551498658356\\
5.25679112201842 -164.386209456898\\
5.4794723369002 -165.899912200972\\
5.71158647812626 -167.169971678082\\
5.95353313081449 -168.251091455024\\
6.24878807200671 -169.325881490414\\
6.55868565957134 -170.242767336282\\
6.88395206964551 -171.034789262572\\
7.2754835291961 -171.818109931866\\
7.68928372075853 -172.497125933675\\
8.12661920009201 -173.091900053792\\
8.58882855954615 -173.617602567035\\
9.14031074875622 -174.1408898981\\
9.72720319245064 -174.604302165229\\
10.351779556302 -175.017743351308\\
11.0164594963369 -175.388976689248\\
11.8051652856881 -175.759420020454\\
12.6503372039588 -176.09209734734\\
13.556017853294 -176.392392885436\\
14.5265392594678 -176.66465781875\\
15.674554102056 -176.936002663135\\
16.9132951702966 -177.18161128073\\
18.2499324481618 -177.404677801875\\
19.6922025547921 -177.6078573887\\
21.2484535249894 -177.793380869149\\
22.9276931286572 -177.96314114721\\
24.911300260678 -178.132254818644\\
27.0665207003317 -178.286340385618\\
29.4082017058709 -178.426951191446\\
31.9524750575915 -178.555433956644\\
34.7168681892662 -178.672965021387\\
37.7204249341695 -178.780578807612\\
40.9838367175735 -178.879190388815\\
44.5295850994262 -178.96961355724\\
48.717802187946 -179.05917305424\\
53.2999408084406 -179.140800582232\\
58.313051135262 -179.215233540711\\
63.7976680860626 -179.283132632794\\
69.7981390783064 -179.345091670682\\
76.3629826128223 -179.40164575426\\
84.1249704973636 -179.457058846282\\
92.6759330114683 -179.507307463976\\
100 -179.543486140468\\
};
\end{axis}
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -0,0 +1,470 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="253.14pt" height="177.65pt" viewBox="0 0 253.14 177.65" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.34375 C 2.921875 -6.59375 2.921875 -6.609375 2.6875 -6.609375 C 2.078125 -5.96875 1.203125 -5.96875 0.890625 -5.96875 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.921875 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.703125 -6.453125 2.890625 -6.609375 2.484375 -6.609375 C 1.890625 -6.609375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.4375 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.296875 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.921875 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.296875 C 1.203125 -3.921875 1.203125 -4.578125 1.296875 -5.125 C 1.484375 -6.296875 2.21875 -6.390625 2.46875 -6.390625 C 2.796875 -6.390625 3.453125 -6.21875 3.640625 -5.234375 C 3.734375 -4.671875 3.734375 -3.921875 3.734375 -3.296875 Z M 3.734375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.53125 -1.703125 C 4.53125 -2.515625 3.90625 -3.28125 2.875 -3.5 C 3.6875 -3.765625 4.265625 -4.453125 4.265625 -5.234375 C 4.265625 -6.046875 3.390625 -6.609375 2.4375 -6.609375 C 1.4375 -6.609375 0.6875 -6.015625 0.6875 -5.265625 C 0.6875 -4.9375 0.90625 -4.75 1.1875 -4.75 C 1.5 -4.75 1.703125 -4.953125 1.703125 -5.25 C 1.703125 -5.75 1.234375 -5.75 1.078125 -5.75 C 1.390625 -6.234375 2.046875 -6.359375 2.40625 -6.359375 C 2.8125 -6.359375 3.359375 -6.140625 3.359375 -5.25 C 3.359375 -5.125 3.328125 -4.546875 3.078125 -4.125 C 2.78125 -3.640625 2.4375 -3.609375 2.1875 -3.609375 C 2.109375 -3.59375 1.875 -3.578125 1.8125 -3.578125 C 1.71875 -3.5625 1.65625 -3.546875 1.65625 -3.453125 C 1.65625 -3.34375 1.71875 -3.34375 1.890625 -3.34375 L 2.328125 -3.34375 C 3.140625 -3.34375 3.515625 -2.671875 3.515625 -1.703125 C 3.515625 -0.34375 2.828125 -0.0625 2.390625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.96875 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.421875 0.21875 C 3.625 0.21875 4.53125 -0.6875 4.53125 -1.703125 Z M 4.53125 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.53125 -1.671875 C 4.53125 -2.03125 4.421875 -2.46875 4.046875 -2.890625 C 3.859375 -3.09375 3.703125 -3.1875 3.0625 -3.59375 C 3.78125 -3.953125 4.265625 -4.46875 4.265625 -5.125 C 4.265625 -6.046875 3.390625 -6.609375 2.484375 -6.609375 C 1.484375 -6.609375 0.6875 -5.875 0.6875 -4.953125 C 0.6875 -4.765625 0.703125 -4.328125 1.125 -3.859375 C 1.234375 -3.734375 1.59375 -3.5 1.84375 -3.328125 C 1.265625 -3.03125 0.421875 -2.484375 0.421875 -1.5 C 0.421875 -0.453125 1.421875 0.21875 2.46875 0.21875 C 3.59375 0.21875 4.53125 -0.609375 4.53125 -1.671875 Z M 3.828125 -5.125 C 3.828125 -4.5625 3.4375 -4.09375 2.84375 -3.734375 L 1.625 -4.53125 C 1.15625 -4.828125 1.125 -5.171875 1.125 -5.34375 C 1.125 -5.9375 1.765625 -6.359375 2.46875 -6.359375 C 3.1875 -6.359375 3.828125 -5.84375 3.828125 -5.125 Z M 4.03125 -1.3125 C 4.03125 -0.578125 3.296875 -0.0625 2.484375 -0.0625 C 1.625 -0.0625 0.90625 -0.671875 0.90625 -1.5 C 0.90625 -2.078125 1.234375 -2.703125 2.078125 -3.171875 L 3.296875 -2.40625 C 3.578125 -2.21875 4.03125 -1.921875 4.03125 -1.3125 Z M 4.03125 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.453125 -1.71875 L 4.203125 -1.71875 C 4.15625 -1.421875 4.09375 -0.984375 3.984375 -0.84375 C 3.921875 -0.765625 3.265625 -0.765625 3.046875 -0.765625 L 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.453125 -3.6875 4.453125 -4.6875 C 4.453125 -5.8125 3.5625 -6.609375 2.34375 -6.609375 C 1.234375 -6.609375 0.5 -5.6875 0.5 -4.8125 C 0.5 -4.25 0.984375 -4.25 1.015625 -4.25 C 1.1875 -4.25 1.53125 -4.375 1.53125 -4.78125 C 1.53125 -5.046875 1.359375 -5.296875 1.015625 -5.296875 C 0.9375 -5.296875 0.90625 -5.296875 0.890625 -5.28125 C 1.109375 -5.9375 1.640625 -6.296875 2.21875 -6.296875 C 3.125 -6.296875 3.546875 -5.5 3.546875 -4.6875 C 3.546875 -3.890625 3.0625 -3.109375 2.515625 -2.484375 L 0.609375 -0.359375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.171875 0 Z M 4.453125 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.8125 -6.390625 L 2.40625 -6.390625 C 1.1875 -6.390625 1.171875 -6.515625 1.125 -6.703125 L 0.890625 -6.703125 L 0.5625 -4.65625 L 0.796875 -4.65625 C 0.828125 -4.828125 0.921875 -5.453125 1.046875 -5.5625 C 1.125 -5.625 1.890625 -5.625 2.03125 -5.625 L 4.078125 -5.625 L 2.96875 -4.0625 C 2.078125 -2.71875 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.203125 0.21875 C 2.65625 0.21875 2.65625 -0.234375 2.65625 -0.328125 L 2.65625 -0.828125 C 2.65625 -1.375 2.6875 -1.921875 2.765625 -2.453125 C 2.8125 -2.6875 2.953125 -3.546875 3.390625 -4.15625 L 4.71875 -6.046875 C 4.8125 -6.15625 4.8125 -6.1875 4.8125 -6.390625 Z M 4.8125 -6.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.53125 -3.265625 C 4.53125 -5.9375 3.390625 -6.609375 2.515625 -6.609375 C 1.96875 -6.609375 1.484375 -6.421875 1.046875 -5.984375 C 0.640625 -5.53125 0.421875 -5.125 0.421875 -4.375 C 0.421875 -3.140625 1.296875 -2.15625 2.40625 -2.15625 C 3 -2.15625 3.40625 -2.578125 3.640625 -3.15625 L 3.640625 -2.84375 C 3.640625 -0.515625 2.609375 -0.0625 2.03125 -0.0625 C 1.859375 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.234375 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.328125 0.21875 4.53125 -1.125 4.53125 -3.265625 Z M 3.625 -4.171875 C 3.625 -3.359375 3.28125 -2.390625 2.40625 -2.390625 C 2.25 -2.390625 1.796875 -2.390625 1.484375 -3.015625 C 1.3125 -3.390625 1.3125 -3.875 1.3125 -4.359375 C 1.3125 -4.90625 1.3125 -5.375 1.515625 -5.734375 C 1.78125 -6.234375 2.15625 -6.359375 2.515625 -6.359375 C 2.96875 -6.359375 3.296875 -6.015625 3.46875 -5.578125 C 3.578125 -5.265625 3.625 -4.640625 3.625 -4.171875 Z M 3.625 -4.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 7.109375 0 L 7.109375 -0.3125 L 6.859375 -0.3125 C 6.109375 -0.3125 6.078125 -0.421875 6.078125 -0.78125 L 6.078125 -6 C 6.078125 -6.359375 6.109375 -6.46875 6.859375 -6.46875 L 7.109375 -6.46875 L 7.109375 -6.78125 C 6.75 -6.75 6.015625 -6.75 5.640625 -6.75 C 5.265625 -6.75 4.53125 -6.75 4.171875 -6.78125 L 4.171875 -6.46875 L 4.421875 -6.46875 C 5.171875 -6.46875 5.203125 -6.359375 5.203125 -6 L 5.203125 -3.6875 L 2.234375 -3.6875 L 2.234375 -6 C 2.234375 -6.359375 2.25 -6.46875 3.015625 -6.46875 L 3.25 -6.46875 L 3.25 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.34375 -6.359375 1.34375 -6 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.375 L 5.203125 -3.375 L 5.203125 -0.78125 C 5.203125 -0.421875 5.171875 -0.3125 4.421875 -0.3125 L 4.171875 -0.3125 L 4.171875 0 C 4.53125 -0.03125 5.265625 -0.03125 5.640625 -0.03125 C 6.015625 -0.03125 6.75 -0.03125 7.109375 0 Z M 7.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 3.984375 -1.859375 L 3.734375 -1.859375 C 3.640625 -0.6875 3.4375 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.875 -3.984375 C 3.953125 -4.09375 3.953125 -4.109375 3.953125 -4.140625 C 3.953125 -4.28125 3.875 -4.28125 3.703125 -4.28125 L 0.53125 -4.28125 L 0.421875 -2.671875 L 0.671875 -2.671875 C 0.71875 -3.6875 0.90625 -4.0625 2 -4.0625 L 3.140625 -4.0625 L 0.359375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.8125 0 Z M 3.984375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.578125 -2.28125 C 3.578125 -4.015625 2.8125 -4.609375 2 -4.609375 C 1.765625 -4.609375 1.28125 -4.578125 0.890625 -4.1875 C 0.65625 -3.96875 0.375 -3.6875 0.375 -3.0625 C 0.375 -2.1875 1.078125 -1.53125 1.890625 -1.53125 C 2.453125 -1.53125 2.75 -1.890625 2.90625 -2.21875 L 2.90625 -2.078125 C 2.90625 -0.34375 2.046875 -0.078125 1.640625 -0.078125 C 1.484375 -0.078125 1.109375 -0.09375 0.921875 -0.3125 C 1.203125 -0.34375 1.234375 -0.578125 1.234375 -0.640625 C 1.234375 -0.8125 1.109375 -0.96875 0.90625 -0.96875 C 0.703125 -0.96875 0.5625 -0.828125 0.5625 -0.625 C 0.5625 -0.15625 0.96875 0.140625 1.640625 0.140625 C 2.640625 0.140625 3.578125 -0.796875 3.578125 -2.28125 Z M 2.890625 -2.984375 C 2.890625 -2.09375 2.359375 -1.71875 1.921875 -1.71875 C 1.65625 -1.71875 1.390625 -1.8125 1.203125 -2.140625 C 1.046875 -2.390625 1.046875 -2.6875 1.046875 -3.0625 C 1.046875 -3.46875 1.046875 -3.75 1.25 -4.03125 C 1.40625 -4.265625 1.640625 -4.421875 2 -4.421875 C 2.359375 -4.421875 2.5625 -4.1875 2.671875 -4.015625 C 2.859375 -3.71875 2.890625 -3.234375 2.890625 -2.984375 Z M 2.890625 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.578125 -1.421875 C 3.578125 -2.296875 2.875 -2.953125 2.0625 -2.953125 C 1.5 -2.953125 1.203125 -2.59375 1.046875 -2.28125 C 1.046875 -2.84375 1.09375 -3.359375 1.359375 -3.78125 C 1.59375 -4.15625 1.96875 -4.421875 2.40625 -4.421875 C 2.625 -4.421875 2.90625 -4.359375 3.03125 -4.171875 C 2.859375 -4.15625 2.71875 -4.046875 2.71875 -3.84375 C 2.71875 -3.671875 2.84375 -3.515625 3.046875 -3.515625 C 3.25 -3.515625 3.375 -3.65625 3.375 -3.859375 C 3.375 -4.25 3.09375 -4.609375 2.40625 -4.609375 C 1.390625 -4.609375 0.375 -3.703125 0.375 -2.203125 C 0.375 -0.40625 1.21875 0.140625 1.984375 0.140625 C 2.84375 0.140625 3.578125 -0.5 3.578125 -1.421875 Z M 2.90625 -1.421875 C 2.90625 -1.015625 2.90625 -0.734375 2.71875 -0.453125 C 2.546875 -0.21875 2.328125 -0.078125 1.984375 -0.078125 C 1.640625 -0.078125 1.375 -0.28125 1.21875 -0.59375 C 1.125 -0.796875 1.0625 -1.140625 1.0625 -1.5625 C 1.0625 -2.234375 1.46875 -2.765625 2.015625 -2.765625 C 2.34375 -2.765625 2.5625 -2.640625 2.734375 -2.375 C 2.90625 -2.109375 2.90625 -1.828125 2.90625 -1.421875 Z M 2.90625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 0 -8.71875 L -0.3125 -8.71875 L -0.3125 -8.484375 C -0.3125 -7.71875 -0.421875 -7.703125 -0.78125 -7.703125 L -6 -7.703125 C -6.359375 -7.703125 -6.46875 -7.71875 -6.46875 -8.484375 L -6.46875 -8.71875 L -6.78125 -8.71875 L -6.78125 -7.046875 C -6.78125 -6.78125 -6.765625 -6.78125 -6.59375 -6.71875 L -1 -4.546875 L -6.5625 -2.390625 C -6.78125 -2.296875 -6.78125 -2.265625 -6.78125 -2.046875 L -6.78125 -0.359375 L -6.46875 -0.359375 L -6.46875 -0.609375 C -6.46875 -1.375 -6.359375 -1.390625 -6 -1.390625 L -1.046875 -1.390625 C -0.78125 -1.390625 -0.3125 -1.390625 -0.3125 -0.359375 L 0 -0.359375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.78125 -1.671875 -1.046875 -1.671875 L -6.390625 -1.671875 L -0.21875 -4.0625 C -0.09375 -4.125 0 -4.171875 0 -4.265625 C 0 -4.375 -0.078125 -4.40625 -0.1875 -4.4375 L -6.46875 -6.890625 L -0.78125 -6.890625 C -0.421875 -6.890625 -0.3125 -6.875 -0.3125 -6.109375 L -0.3125 -5.875 L 0 -5.875 C -0.03125 -6.234375 -0.03125 -6.921875 -0.03125 -7.296875 C -0.03125 -7.6875 -0.03125 -8.359375 0 -8.71875 Z M 0 -8.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M -0.890625 -4.796875 L -1.4375 -4.796875 L -1.4375 -4.546875 L -0.890625 -4.546875 C -0.3125 -4.546875 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.734375 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.90625 -3.46875 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.109375 C -4.4375 -1.296875 -3.984375 -0.609375 -3.328125 -0.609375 C -3.03125 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.0625 -1.515625 -3.3125 -1.515625 C -3.4375 -1.515625 -3.765625 -1.46875 -3.765625 -1.015625 C -4.125 -1.28125 -4.234375 -1.765625 -4.234375 -2.078125 C -4.234375 -2.5625 -3.84375 -3.140625 -2.953125 -3.140625 L -2.59375 -3.140625 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.25 0.0625 -3.515625 0.0625 -3.984375 C 0.0625 -4.1875 -0.078125 -4.796875 -0.890625 -4.796875 Z M -1.390625 -3.140625 C -0.453125 -3.140625 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.328125 -1.5 -2.375 -3.140625 Z M -1.390625 -3.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M -4.015625 -4.8125 C -4.171875 -4.8125 -4.5 -4.6875 -4.5 -4.3125 C -4.5 -4.109375 -4.4375 -3.671875 -4.03125 -3.25 C -4.359375 -2.84375 -4.390625 -2.421875 -4.390625 -2.203125 C -4.390625 -1.28125 -3.703125 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.921875 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.890625 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.03125 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.328125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.59375 -1.046875 -1.78125 -1.21875 C -1.515625 -1.609375 -1.484375 -2.015625 -1.484375 -2.203125 C -1.484375 -3.125 -2.15625 -3.8125 -2.921875 -3.8125 C -3.296875 -3.8125 -3.65625 -3.65625 -3.890625 -3.40625 C -4.234375 -3.765625 -4.28125 -4.125 -4.28125 -4.296875 C -4.28125 -4.296875 -4.28125 -4.359375 -4.265625 -4.390625 C -4.234375 -4.28125 -4.125 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.53125 C -3.703125 -4.625 -3.78125 -4.8125 -4.015625 -4.8125 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.0625 -2.109375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.703125 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.515625 -1.34375 -3.765625 -1.5 C -3.875 -1.578125 -4.15625 -1.8125 -4.15625 -2.203125 C -4.15625 -3.0625 -3.171875 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.484375 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.390625 -1.75 L -4.28125 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -6 -1.90625 C -6.265625 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -6 -0.84375 C -5.71875 -0.84375 -5.46875 -1.078125 -5.46875 -1.375 C -5.46875 -1.703125 -5.75 -1.90625 -6 -1.90625 Z M -6 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M -1.234375 -3.296875 L -1.796875 -3.296875 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.140625 L -4.28125 -3.140625 L -4.28125 -1.71875 L -6.109375 -1.71875 L -6.109375 -1.46875 C -5.28125 -1.453125 -4.234375 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.296875 -1.234375 -3.296875 Z M -1.234375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.609375 -0.375 -4.53125 -0.859375 -4.53125 L -4.390625 -4.53125 L -4.28125 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.765625 -3.90625 -3.84375 -3.40625 -3.84375 L -1.640625 -3.84375 C -0.78125 -3.84375 -0.109375 -3.375 -0.109375 -2.65625 C -0.109375 -1.8125 -0.578125 -1.78125 -1.09375 -1.78125 L -4.390625 -1.78125 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.0625 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.59375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.875 L 0.109375 -3.875 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 0 -5.234375 L -0.3125 -5.234375 C -0.3125 -4.53125 -0.375 -4.453125 -0.859375 -4.453125 L -6.890625 -4.453125 L -6.78125 -3.03125 L -6.46875 -3.03125 C -6.46875 -3.71875 -6.40625 -3.796875 -5.90625 -3.796875 L -3.765625 -3.796875 C -4.125 -3.515625 -4.390625 -3.078125 -4.390625 -2.546875 C -4.390625 -1.375 -3.40625 -0.34375 -2.140625 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.515625 -0.546875 -3.765625 L 0.109375 -3.765625 Z M -1.171875 -3.765625 C -0.984375 -3.765625 -0.96875 -3.765625 -0.796875 -3.65625 C -0.328125 -3.359375 -0.109375 -2.921875 -0.109375 -2.484375 C -0.109375 -2.046875 -0.359375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.484375 -1.15625 -3.078125 -1.1875 -3.53125 -1.46875 C -3.84375 -1.671875 -4.171875 -2.046875 -4.171875 -2.59375 C -4.171875 -2.9375 -4.015625 -3.359375 -3.578125 -3.65625 C -3.40625 -3.765625 -3.390625 -3.765625 -3.203125 -3.765625 Z M -1.171875 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M -1.1875 -4.125 C -1.28125 -4.125 -1.296875 -4.03125 -1.296875 -3.984375 C -1.296875 -3.90625 -1.234375 -3.875 -1.15625 -3.859375 C -0.140625 -3.515625 -0.140625 -2.625 -0.140625 -2.515625 C -0.140625 -2.03125 -0.4375 -1.625 -0.796875 -1.40625 C -1.28125 -1.09375 -1.9375 -1.09375 -2.296875 -1.09375 L -2.296875 -3.875 C -2.296875 -4.09375 -2.296875 -4.125 -2.5 -4.125 C -3.484375 -4.125 -4.4375 -3.578125 -4.4375 -2.34375 C -4.4375 -1.1875 -3.421875 -0.28125 -2.1875 -0.28125 C -0.859375 -0.28125 0.109375 -1.3125 0.109375 -2.453125 C 0.109375 -3.671875 -0.984375 -4.125 -1.1875 -4.125 Z M -2.5 -3.46875 L -2.5 -1.109375 C -3.984375 -1.171875 -4.234375 -2 -4.234375 -2.34375 C -4.234375 -3.359375 -2.890625 -3.46875 -2.5 -3.46875 Z M -2.5 -3.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.484375 -2.53125 L 2.078125 -2.53125 L 2.078125 -1.5625 L -7.046875 -1.5625 L -7.046875 -2.53125 L -7.4375 -2.53125 L -7.4375 -1.171875 L 2.484375 -1.171875 Z M 2.484375 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 2.484375 -1.578125 L -7.4375 -1.578125 L -7.4375 -0.21875 L -7.046875 -0.21875 L -7.046875 -1.1875 L 2.078125 -1.1875 L 2.078125 -0.21875 L 2.484375 -0.21875 Z M 2.484375 -1.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M -4.9375 -6.1875 C -5.90625 -6.1875 -6.78125 -5.203125 -6.78125 -3.84375 L -6.78125 -0.34375 L -6.46875 -0.34375 L -6.46875 -0.578125 C -6.46875 -1.34375 -6.359375 -1.375 -6 -1.375 L -0.78125 -1.375 C -0.421875 -1.375 -0.3125 -1.34375 -0.3125 -0.578125 L -0.3125 -0.34375 L 0 -0.34375 C -0.03125 -0.6875 -0.03125 -1.421875 -0.03125 -1.8125 C -0.03125 -2.1875 -0.03125 -2.921875 0 -3.28125 L -0.3125 -3.28125 L -0.3125 -3.03125 C -0.3125 -2.265625 -0.421875 -2.25 -0.78125 -2.25 L -3.140625 -2.25 L -3.140625 -3.921875 C -3.140625 -5.125 -3.9375 -6.1875 -4.9375 -6.1875 Z M -4.9375 -5.171875 C -4.46875 -5.171875 -3.390625 -5.171875 -3.390625 -3.59375 L -3.390625 -2.21875 L -6.078125 -2.21875 C -6.40625 -2.21875 -6.46875 -2.25 -6.46875 -2.703125 L -6.46875 -3.59375 C -6.46875 -5.171875 -5.421875 -5.171875 -4.9375 -5.171875 Z M -4.9375 -5.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.53125 L -2.5 -4.53125 C -3.359375 -4.53125 -3.65625 -4.53125 -4.015625 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.34375 -3.796875 -1.921875 -3.4375 -1.75 L -6.890625 -1.75 L -6.78125 -0.3125 L -6.46875 -0.3125 C -6.46875 -1.015625 -6.40625 -1.09375 -5.90625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M -1.265625 -3.578125 C -1.796875 -3.578125 -2.09375 -3.28125 -2.21875 -3.15625 C -2.53125 -2.828125 -2.609375 -2.4375 -2.6875 -2.03125 C -2.796875 -1.46875 -2.921875 -0.796875 -3.5 -0.796875 C -3.84375 -0.796875 -4.25 -1.0625 -4.25 -1.921875 C -4.25 -3 -3.359375 -3.0625 -3.0625 -3.078125 C -2.96875 -3.078125 -2.96875 -3.1875 -2.96875 -3.1875 C -2.96875 -3.328125 -3.015625 -3.328125 -3.203125 -3.328125 L -4.203125 -3.328125 C -4.375 -3.328125 -4.4375 -3.328125 -4.4375 -3.21875 C -4.4375 -3.171875 -4.4375 -3.140625 -4.328125 -3.015625 C -4.28125 -2.984375 -4.203125 -2.890625 -4.171875 -2.84375 C -4.4375 -2.46875 -4.4375 -2.0625 -4.4375 -1.921875 C -4.4375 -0.703125 -3.78125 -0.328125 -3.21875 -0.328125 C -2.875 -0.328125 -2.59375 -0.484375 -2.375 -0.75 C -2.125 -1.078125 -2.0625 -1.34375 -1.921875 -2.0625 C -1.890625 -2.28125 -1.71875 -3.09375 -1.015625 -3.09375 C -0.5 -3.09375 -0.109375 -2.75 -0.109375 -1.96875 C -0.109375 -1.140625 -0.671875 -0.78125 -1.515625 -0.59375 C -1.640625 -0.5625 -1.6875 -0.5625 -1.6875 -0.453125 C -1.6875 -0.328125 -1.625 -0.328125 -1.4375 -0.328125 L -0.125 -0.328125 C 0.046875 -0.328125 0.109375 -0.328125 0.109375 -0.4375 C 0.109375 -0.484375 0.09375 -0.5 -0.09375 -0.6875 C -0.109375 -0.703125 -0.125 -0.703125 -0.3125 -0.890625 C 0.09375 -1.3125 0.109375 -1.765625 0.109375 -1.96875 C 0.109375 -3.109375 -0.5625 -3.578125 -1.265625 -3.578125 Z M -1.265625 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -8.0625 L -0.3125 -8.0625 C -0.3125 -7.546875 -0.3125 -7.296875 -0.609375 -7.296875 L -2.5 -7.296875 C -3.359375 -7.296875 -3.65625 -7.296875 -4.015625 -6.984375 C -4.1875 -6.84375 -4.390625 -6.515625 -4.390625 -5.9375 C -4.390625 -5.109375 -3.796875 -4.671875 -3.40625 -4.5 C -4.28125 -4.359375 -4.390625 -3.625 -4.390625 -3.1875 C -4.390625 -2.453125 -3.953125 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.609375 -1.78125 -4.171875 -2.484375 -4.171875 -3.109375 C -4.171875 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 L 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.640625 -0.3125 -4.53125 -0.75 -4.53125 L -2.578125 -4.53125 C -3.609375 -4.53125 -4.171875 -5.234375 -4.171875 -5.875 C -4.171875 -6.5 -3.625 -6.609375 -3.0625 -6.609375 L -0.75 -6.609375 C -0.3125 -6.609375 -0.3125 -6.5 -0.3125 -5.828125 L 0 -5.828125 L -0.03125 -6.953125 Z M 0 -8.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -6.46875 -7.109375 L -6.78125 -7.109375 L -6.75 -5.9375 L -6.78125 -4.78125 L -6.46875 -4.78125 C -6.46875 -5.796875 -6 -5.796875 -5.734375 -5.796875 L -1.5 -5.796875 L -6.640625 -2.296875 C -6.765625 -2.21875 -6.78125 -2.203125 -6.78125 -2.015625 L -6.78125 -0.328125 L -6.46875 -0.328125 L -6.46875 -0.609375 C -6.46875 -0.765625 -6.453125 -0.96875 -6.453125 -1.109375 C -6.421875 -1.34375 -6.40625 -1.34375 -6.21875 -1.34375 L -1.046875 -1.34375 C -0.78125 -1.34375 -0.3125 -1.34375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.484375 L 0 -2.65625 L -0.3125 -2.65625 C -0.3125 -1.625 -0.78125 -1.625 -1.046875 -1.625 L -6.203125 -1.625 C -6.15625 -1.671875 -6.140625 -1.6875 -6.078125 -1.71875 L -0.125 -5.78125 C -0.015625 -5.859375 0 -5.875 0 -5.9375 C 0 -6.078125 -0.0625 -6.078125 -0.265625 -6.078125 L -5.734375 -6.078125 C -6 -6.078125 -6.46875 -6.078125 -6.46875 -7.109375 Z M -6.46875 -7.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M -7.25 -4.40625 C -7.359375 -4.40625 -7.4375 -4.3125 -7.4375 -4.203125 C -7.4375 -4.140625 -7.40625 -4.0625 -7.359375 -4.03125 L 2.109375 -0.59375 C 2.234375 -0.546875 2.28125 -0.546875 2.28125 -0.546875 C 2.390625 -0.546875 2.484375 -0.640625 2.484375 -0.75 C 2.484375 -0.875 2.40625 -0.90625 2.25 -0.96875 L -7.0625 -4.359375 C -7.1875 -4.40625 -7.25 -4.40625 -7.25 -4.40625 Z M -7.25 -4.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.671875 6.703125 -2.671875 6.5625 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 6.046875 -4.515625 L 5.78125 -6.75 L 0.328125 -6.75 L 0.328125 -6.4375 L 0.5625 -6.4375 C 1.328125 -6.4375 1.34375 -6.328125 1.34375 -5.96875 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.828125 -0.03125 C 2.25 -0.03125 3.140625 -0.03125 3.5 0 L 3.5 -0.3125 L 3.171875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.21875 L 3.078125 -3.21875 C 4.03125 -3.21875 4.140625 -2.90625 4.140625 -2.0625 L 4.390625 -2.0625 L 4.390625 -4.6875 L 4.140625 -4.6875 C 4.140625 -3.859375 4.03125 -3.53125 3.078125 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.046875 C 2.234375 -6.375 2.25 -6.4375 2.71875 -6.4375 L 3.90625 -6.4375 C 5.390625 -6.4375 5.640625 -5.890625 5.796875 -4.515625 Z M 6.046875 -4.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-2">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.71875 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.953125 -4.140625 2.765625 -4.03125 2.765625 -3.765625 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.46875 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph7-3">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.90625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.515625 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.125 -0.984375 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.359375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph7-4">
<path style="stroke:none;" d="M 5.234375 1.921875 L 5.234375 1.625 C 4.5625 1.625 4.453125 1.625 4.453125 1.171875 L 4.453125 -4.390625 L 4.234375 -4.390625 L 3.859375 -3.484375 C 3.734375 -3.765625 3.328125 -4.390625 2.53125 -4.390625 C 1.375 -4.390625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.140625 0.109375 3.546875 -0.3125 3.765625 -0.609375 L 3.765625 1.171875 C 3.765625 1.625 3.65625 1.625 3 1.625 L 3 1.921875 L 4.109375 1.890625 Z M 3.796875 -1.34375 C 3.796875 -1.03125 3.625 -0.75 3.40625 -0.515625 C 3.28125 -0.375 2.953125 -0.109375 2.484375 -0.109375 C 1.765625 -0.109375 1.15625 -0.984375 1.15625 -2.140625 C 1.15625 -3.3125 1.859375 -4.140625 2.59375 -4.140625 C 3.390625 -4.140625 3.796875 -3.28125 3.796875 -2.75 Z M 3.796875 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-5">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.90625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph7-6">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.359375 4.53125 -3.65625 4.234375 -4.015625 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.453125 -4.390625 2 -3.953125 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.609375 2.484375 -4.171875 3.109375 -4.171875 C 3.734375 -4.171875 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph7-7">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.90625 -1.28125 3.875 -1.234375 3.859375 -1.1875 C 3.578125 -0.265625 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.28125 -2.921875 3.546875 -2.921875 C 3.8125 -2.921875 4.015625 -3.078125 4.015625 -3.390625 C 4.015625 -4.0625 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-8">
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.25 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.734375 -3.953125 3.90625 -3.796875 3.90625 -3.546875 C 3.90625 -3.4375 3.890625 -3.421875 3.84375 -3.296875 L 2.84375 -0.859375 L 1.734375 -3.53125 C 1.703125 -3.625 1.671875 -3.671875 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.25 0.1875 -4.28125 L 0.1875 -3.96875 C 0.671875 -3.96875 0.859375 -3.96875 0.984375 -3.625 L 2.484375 0 L 2.234375 0.578125 C 2.015625 1.125 1.734375 1.8125 1.09375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.015625 1.375 1.015625 1.21875 C 1.015625 0.96875 0.828125 0.796875 0.609375 0.796875 C 0.40625 0.796875 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.09375 2.03125 C 1.71875 2.03125 2.140625 1.46875 2.375 0.90625 L 4.125 -3.328125 C 4.375 -3.953125 4.875 -3.96875 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.078125 L 1.5625 2.078125 L 1.5625 -7.046875 L 2.53125 -7.046875 L 2.53125 -7.4375 L 1.171875 -7.4375 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-10">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.4375 L 0.21875 -7.4375 L 0.21875 -7.046875 L 1.1875 -7.046875 L 1.1875 2.078125 L 0.21875 2.078125 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43.519531 10.246094 L 241.28125 10.246094 L 241.28125 73.808594 L 43.519531 73.808594 Z M 43.519531 10.246094 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 123 L 43.519531 123 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 48 80.871094 L 241.28125 80.871094 L 241.28125 123 L 48 123 Z M 48 80.871094 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 124 L 43.519531 124 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 123 L 43.519531 123 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 142 L 43.519531 142 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 124 L 43.519531 124 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 144.4375 L 43.519531 144.4375 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 123 L 43.519531 123 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 144.4375 L 43.519531 144.4375 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip11">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 123 L 43.519531 123 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip12">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 144.4375 L 43.519531 144.4375 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip13">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 136 L 43.519531 136 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip14">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 124 L 43.519531 124 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip15">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 144.4375 L 43.519531 144.4375 Z M 43.519531 80.871094 "/>
</clipPath>
<clipPath id="clip16">
<path d="M 43.519531 80.871094 L 241.28125 80.871094 L 241.28125 126 L 43.519531 126 Z M 43.519531 80.871094 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 73.808594 L 241.28125 73.808594 L 241.28125 10.246094 L 43.519531 10.246094 Z M 43.519531 73.808594 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -95.668578 L -49.609619 -31.890135 M -34.676244 -95.668578 L -34.676244 -31.890135 M -25.939632 -95.668578 L -25.939632 -31.890135 M -19.74287 -95.668578 L -19.74287 -31.890135 M -14.933618 -95.668578 L -14.933618 -31.890135 M -11.006258 -95.668578 L -11.006258 -31.890135 M -7.682504 -95.668578 L -7.682504 -31.890135 M -4.805576 -95.668578 L -4.805576 -31.890135 M -2.269646 -95.668578 L -2.269646 -31.890135 M -0.000243561 -95.668578 L -0.000243561 -31.890135 M 14.933131 -95.668578 L 14.933131 -31.890135 M 23.669743 -95.668578 L 23.669743 -31.890135 M 29.866505 -95.668578 L 29.866505 -31.890135 M 34.675757 -95.668578 L 34.675757 -31.890135 M 38.603117 -95.668578 L 38.603117 -31.890135 M 41.922951 -95.668578 L 41.922951 -31.890135 M 44.799879 -95.668578 L 44.799879 -31.890135 M 47.339729 -95.668578 L 47.339729 -31.890135 M 49.609131 -95.668578 L 49.609131 -31.890135 M 64.542506 -95.668578 L 64.542506 -31.890135 M 73.275198 -95.668578 L 73.275198 -31.890135 M 79.47588 -95.668578 L 79.47588 -31.890135 M 84.281213 -95.668578 L 84.281213 -31.890135 M 88.212492 -95.668578 L 88.212492 -31.890135 M 91.532326 -95.668578 L 91.532326 -31.890135 M 94.409254 -95.668578 L 94.409254 -31.890135 M 96.945184 -95.668578 L 96.945184 -31.890135 M 99.214587 -95.668578 L 99.214587 -31.890135 M 114.147961 -95.668578 L 114.147961 -31.890135 M 122.884573 -95.668578 L 122.884573 -31.890135 M 129.081336 -95.668578 L 129.081336 -31.890135 M 133.890588 -95.668578 L 133.890588 -31.890135 M 137.817947 -95.668578 L 137.817947 -31.890135 M 141.137782 -95.668578 L 141.137782 -31.890135 M 144.01471 -95.668578 L 144.01471 -31.890135 M 146.554559 -95.668578 L 146.554559 -31.890135 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -95.668578 L -49.609619 -31.890135 M -0.000243561 -95.668578 L -0.000243561 -31.890135 M 49.609131 -95.668578 L 49.609131 -31.890135 M 99.214587 -95.668578 L 99.214587 -31.890135 M 148.823962 -95.668578 L 148.823962 -31.890135 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -95.668578 L 148.823962 -95.668578 M -49.609619 -63.779357 L 148.823962 -63.779357 M -49.609619 -31.890135 L 148.823962 -31.890135 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -95.668578 L -49.609619 -92.834765 M -34.676244 -95.668578 L -34.676244 -92.834765 M -25.939632 -95.668578 L -25.939632 -92.834765 M -19.74287 -95.668578 L -19.74287 -92.834765 M -14.933618 -95.668578 L -14.933618 -92.834765 M -11.006258 -95.668578 L -11.006258 -92.834765 M -7.682504 -95.668578 L -7.682504 -92.834765 M -4.805576 -95.668578 L -4.805576 -92.834765 M -2.269646 -95.668578 L -2.269646 -92.834765 M -0.000243561 -95.668578 L -0.000243561 -92.834765 M 14.933131 -95.668578 L 14.933131 -92.834765 M 23.669743 -95.668578 L 23.669743 -92.834765 M 29.866505 -95.668578 L 29.866505 -92.834765 M 34.675757 -95.668578 L 34.675757 -92.834765 M 38.603117 -95.668578 L 38.603117 -92.834765 M 41.922951 -95.668578 L 41.922951 -92.834765 M 44.799879 -95.668578 L 44.799879 -92.834765 M 47.339729 -95.668578 L 47.339729 -92.834765 M 49.609131 -95.668578 L 49.609131 -92.834765 M 64.542506 -95.668578 L 64.542506 -92.834765 M 73.275198 -95.668578 L 73.275198 -92.834765 M 79.47588 -95.668578 L 79.47588 -92.834765 M 84.281213 -95.668578 L 84.281213 -92.834765 M 88.212492 -95.668578 L 88.212492 -92.834765 M 91.532326 -95.668578 L 91.532326 -92.834765 M 94.409254 -95.668578 L 94.409254 -92.834765 M 96.945184 -95.668578 L 96.945184 -92.834765 M 99.214587 -95.668578 L 99.214587 -92.834765 M 114.147961 -95.668578 L 114.147961 -92.834765 M 122.884573 -95.668578 L 122.884573 -92.834765 M 129.081336 -95.668578 L 129.081336 -92.834765 M 133.890588 -95.668578 L 133.890588 -92.834765 M 137.817947 -95.668578 L 137.817947 -92.834765 M 141.137782 -95.668578 L 141.137782 -92.834765 M 144.01471 -95.668578 L 144.01471 -92.834765 M 146.554559 -95.668578 L 146.554559 -92.834765 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -95.668578 L -49.609619 -91.415898 M -0.000243561 -95.668578 L -0.000243561 -91.415898 M 49.609131 -95.668578 L 49.609131 -91.415898 M 99.214587 -95.668578 L 99.214587 -91.415898 M 148.823962 -95.668578 L 148.823962 -91.415898 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -95.668578 L -45.360858 -95.668578 M -49.609619 -63.779357 L -45.360858 -63.779357 M -49.609619 -31.890135 L -45.360858 -31.890135 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -95.668578 L 148.823962 -95.668578 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -95.668578 L -49.609619 -31.890135 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.127019" y="77.851281"/>
<use xlink:href="#glyph0-2" x="24.091453" y="77.851281"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.056286" y="74.247524"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.262203" y="74.247524"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.127019" y="46.069255"/>
<use xlink:href="#glyph0-2" x="24.091453" y="46.069255"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.056286" y="42.465499"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="35.262203" y="42.465499"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.127019" y="14.287229"/>
<use xlink:href="#glyph0-2" x="24.091453" y="14.287229"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.056286" y="10.683473"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="35.262203" y="10.683473"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.143602 L -25.775012 -42.116165 L -15.643051 -42.061292 L -8.889717 -41.986821 L -3.923684 -41.892752 L 0.0507102 -41.775167 L 3.225522 -41.637984 L 6.008382 -41.477283 L 8.391451 -41.296985 L 10.574624 -41.085331 L 12.361925 -40.869758 L 14.149227 -40.599311 L 15.740552 -40.305347 L 17.131982 -39.991785 L 18.523412 -39.611591 L 19.714946 -39.21572 L 20.90648 -38.741458 L 22.098015 -38.169208 L 23.289549 -37.471533 L 24.481083 -36.644514 L 26.068489 -35.511773 L 26.664257 -35.241326 L 27.060128 -35.182533 L 27.260024 -35.194291 L 27.459919 -35.237406 L 27.855791 -35.417704 L 28.451558 -35.884127 L 29.247221 -36.730744 L 32.030081 -39.842843 L 33.617486 -41.332261 L 35.204892 -42.637461 L 36.996113 -43.946581 L 38.979391 -45.255701 L 41.36246 -46.686326 L 44.145319 -48.222779 L 47.324051 -49.857219 L 51.098549 -51.683715 L 55.464896 -53.69051 L 60.430928 -55.865844 L 65.596857 -58.033339 L 70.56289 -60.024456 L 75.133051 -61.768643 L 79.503317 -63.352129 L 83.473791 -64.708283 L 87.444266 -65.989966 L 91.41866 -67.193259 L 95.58903 -68.388713 L 100.359087 -69.678236 L 106.516654 -71.2774 L 119.427556 -74.601154 L 124.193693 -75.906354 L 128.364063 -77.117486 L 132.338457 -78.336457 L 136.308932 -79.629899 L 140.479302 -81.068363 L 144.849568 -82.659688 L 148.823962 -84.164784 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.221992 L -27.958186 -42.143602 L -15.443156 -42.065211 L -8.493845 -41.982901 L -3.527812 -41.880994 L 0.446582 -41.759489 L 3.625313 -41.618386 L 6.404253 -41.449847 L 8.787322 -41.26171 L 10.774519 -41.065734 L 12.561821 -40.842321 L 14.149227 -40.599311 L 15.740552 -40.305347 L 17.131982 -39.991785 L 18.523412 -39.611591 L 19.714946 -39.219639 L 20.90648 -38.745377 L 22.098015 -38.173127 L 23.289549 -37.475452 L 24.481083 -36.652353 L 26.068489 -35.519612 L 26.664257 -35.249165 L 27.060128 -35.190372 L 27.260024 -35.20213 L 27.459919 -35.245245 L 27.855791 -35.425543 L 28.451558 -35.895886 L 29.247221 -36.742502 L 32.030081 -39.854602 L 33.617486 -41.34402 L 35.204892 -42.64922 L 36.996113 -43.962259 L 38.979391 -45.271379 L 41.36246 -46.705924 L 44.145319 -48.246296 L 47.324051 -49.884655 L 51.098549 -51.715072 L 55.464896 -53.729705 L 60.630824 -56.003027 L 65.992728 -58.27243 L 71.158657 -60.361535 L 75.924794 -62.207629 L 80.29506 -63.810713 L 84.46543 -65.260936 L 88.439824 -66.566136 L 92.410299 -67.792946 L 96.584588 -69.007997 L 101.350726 -70.321037 L 107.308397 -71.888845 L 120.61909 -75.36938 L 125.385227 -76.698097 L 129.555598 -77.932746 L 133.529992 -79.175234 L 137.500466 -80.492193 L 141.670836 -81.958094 L 146.240998 -83.643488 L 148.823962 -84.631207 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.245509 L -25.775012 -42.214153 L -15.443156 -42.163199 L -8.689821 -42.084809 L -3.723788 -41.99074 L 0.246686 -41.869235 L 3.425418 -41.732052 L 6.204358 -41.567432 L 8.591346 -41.387134 L 10.574624 -41.191158 L 12.361925 -40.975585 L 14.149227 -40.709057 L 15.740552 -40.411174 L 17.131982 -40.097612 L 18.523412 -39.721338 L 19.714946 -39.325466 L 20.90648 -38.851204 L 22.098015 -38.278954 L 23.289549 -37.585199 L 24.481083 -36.75818 L 26.068489 -35.625439 L 26.664257 -35.358911 L 27.060128 -35.296199 L 27.260024 -35.311877 L 27.459919 -35.354992 L 27.855791 -35.53529 L 28.451558 -36.001713 L 29.247221 -36.852249 L 32.030081 -39.964348 L 33.617486 -41.453766 L 35.204892 -42.762886 L 36.996113 -44.072006 L 38.979391 -45.385045 L 41.36246 -46.82351 L 44.145319 -48.363881 L 47.324051 -50.006161 L 51.098549 -51.848335 L 55.664791 -53.964877 L 61.226591 -56.438094 L 67.584054 -59.162161 L 73.937597 -61.79216 L 79.699293 -64.085079 L 84.665326 -65.974288 L 89.231567 -67.624407 L 93.401938 -69.055032 L 97.576227 -70.403347 L 101.946493 -71.739903 L 106.71263 -73.119575 L 113.266069 -74.938232 L 123.002159 -77.642702 L 127.768296 -79.038051 L 132.138562 -80.394205 L 136.308932 -81.762118 L 140.479302 -83.212341 L 145.049463 -84.882057 L 148.823962 -86.320521 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.339578 L -25.775012 -42.312141 L -15.443156 -42.257268 L -8.689821 -42.182797 L -3.723788 -42.084809 L 0.246686 -41.963304 L 3.425418 -41.83004 L 6.204358 -41.66542 L 8.591346 -41.481203 L 10.574624 -41.289146 L 12.361925 -41.073573 L 14.149227 -40.803126 L 15.740552 -40.509162 L 17.131982 -40.1956 L 18.523412 -39.815406 L 19.714946 -39.423454 L 20.90648 -38.949192 L 22.098015 -38.376942 L 23.289549 -37.683187 L 24.481083 -36.856168 L 26.068489 -35.727346 L 26.664257 -35.456899 L 27.060128 -35.398106 L 27.260024 -35.409865 L 27.459919 -35.45298 L 27.855791 -35.637197 L 28.451558 -36.10362 L 29.247221 -36.950237 L 32.030081 -40.066256 L 33.617486 -41.555674 L 35.204892 -42.864794 L 36.996113 -44.177833 L 39.179287 -45.616297 L 41.562355 -47.046922 L 44.337376 -48.583374 L 47.719922 -50.327561 L 51.694317 -52.259885 L 56.660349 -54.560644 L 62.618021 -57.218079 L 69.767227 -60.310581 L 76.916433 -63.305095 L 83.273896 -65.88022 L 88.6358 -67.965405 L 93.401938 -69.729189 L 97.776123 -71.269561 L 102.146388 -72.723703 L 106.71263 -74.166087 L 111.874639 -75.718217 L 129.755493 -81.005651 L 134.125759 -82.416678 L 138.492105 -83.906096 L 142.862371 -85.477824 L 147.632428 -87.269045 L 148.823962 -87.731548 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.080889 L -25.775012 -42.049533 L -15.643051 -41.99858 L -8.889717 -41.924109 L -3.923684 -41.83004 L 0.0507102 -41.712454 L 3.225522 -41.575271 L 6.008382 -41.41849 L 8.391451 -41.238192 L 10.574624 -41.026538 L 12.361925 -40.807045 L 14.149227 -40.540518 L 15.740552 -40.242634 L 17.131982 -39.929073 L 18.523412 -39.548879 L 19.714946 -39.156927 L 20.90648 -38.682665 L 22.098015 -38.106495 L 23.289549 -37.41274 L 24.481083 -36.585721 L 26.068489 -35.45298 L 26.664257 -35.182533 L 27.060128 -35.12374 L 27.260024 -35.135499 L 27.459919 -35.178613 L 27.855791 -35.358911 L 28.451558 -35.825334 L 29.247221 -36.671951 L 32.030081 -39.78405 L 33.617486 -41.273468 L 35.204892 -42.578669 L 36.996113 -43.883869 L 38.979391 -45.192989 L 41.36246 -46.623614 L 44.145319 -48.160066 L 47.324051 -49.794506 L 51.098549 -51.621003 L 55.664791 -53.721866 L 60.83072 -55.995188 L 66.588496 -58.43313 L 72.150296 -60.690774 L 77.116329 -62.619179 L 81.68649 -64.304572 L 85.85686 -65.758715 L 89.831254 -67.067835 L 93.997705 -68.365196 L 98.37189 -69.64296 L 103.138027 -70.959919 L 109.491571 -72.645313 L 120.61909 -75.588873 L 125.385227 -76.92543 L 129.555598 -78.160079 L 133.529992 -79.406486 L 137.500466 -80.727365 L 141.670836 -82.189346 L 146.240998 -83.878659 L 148.823962 -84.866379 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.578669 L -25.775012 -42.551232 L -15.443156 -42.496359 L -8.689821 -42.421888 L -3.723788 -42.3239 L 0.246686 -42.206314 L 3.425418 -42.069131 L 6.204358 -41.904511 L 8.591346 -41.724213 L 10.574624 -41.528237 L 12.361925 -41.312663 L 14.149227 -41.042216 L 15.740552 -40.748252 L 17.131982 -40.43861 L 18.523412 -40.058417 L 19.714946 -39.662545 L 20.90648 -39.192203 L 22.098015 -38.619953 L 23.289549 -37.922278 L 24.481083 -37.099178 L 26.068489 -35.966437 L 26.664257 -35.69991 L 27.060128 -35.637197 L 27.260024 -35.652875 L 27.459919 -35.69599 L 27.855791 -35.876288 L 28.451558 -36.34663 L 29.247221 -37.193247 L 32.030081 -40.309266 L 33.617486 -41.802603 L 35.204892 -43.111723 L 36.996113 -44.424763 L 39.179287 -45.867147 L 41.562355 -47.297772 L 44.337376 -48.838143 L 47.719922 -50.58233 L 51.694317 -52.522493 L 56.660349 -54.83893 L 63.209869 -57.794248 L 72.746063 -61.980297 L 95.788926 -71.963316 L 108.10406 -77.364416 L 116.048929 -80.939019 L 122.406392 -83.898257 L 128.164168 -86.681117 L 133.925863 -89.569804 L 140.679198 -93.073855 L 148.823962 -97.365731 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.363095 L -27.75829 -42.343497 L -16.834585 -42.296463 L -9.68538 -42.225912 L -4.519451 -42.131843 L -0.545057 -42.022097 L 2.82965 -41.884913 L 5.61251 -41.732052 L 7.995579 -41.563513 L 10.178752 -41.359698 L 12.16203 -41.128446 L 13.949331 -40.865838 L 15.540656 -40.579713 L 16.932086 -40.27399 L 18.323516 -39.905555 L 19.515051 -39.525362 L 20.706585 -39.066778 L 21.898119 -38.510206 L 23.089654 -37.836048 L 24.281188 -37.032547 L 26.268385 -35.648956 L 26.664257 -35.488255 L 27.060128 -35.425543 L 27.260024 -35.441221 L 27.459919 -35.484336 L 27.855791 -35.664634 L 28.451558 -36.134976 L 29.247221 -36.981593 L 32.030081 -40.093692 L 33.617486 -41.58703 L 35.204892 -42.89615 L 36.996113 -44.209189 L 39.179287 -45.647653 L 41.562355 -47.078278 L 44.337376 -48.61865 L 47.719922 -50.358917 L 51.694317 -52.295161 L 56.660349 -54.599839 L 62.813997 -57.351343 L 70.362994 -60.624142 L 78.107967 -63.889103 L 84.865221 -66.644526 L 90.622997 -68.90609 L 95.58903 -70.767862 L 100.159191 -72.394463 L 104.729353 -73.938755 L 109.491571 -75.463448 L 115.05729 -77.16452 L 128.95983 -81.378005 L 133.725968 -82.918377 L 138.096233 -84.411714 L 142.662475 -86.053994 L 147.632428 -87.927524 L 148.823962 -88.390028 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.880472 L -25.775012 -42.853035 L -15.443156 -42.802081 L -8.689821 -42.723691 L -3.723788 -42.625703 L 0.246686 -42.508117 L 3.425418 -42.370934 L 6.204358 -42.206314 L 8.591346 -42.026016 L 10.574624 -41.83004 L 12.361925 -41.614466 L 14.149227 -41.34402 L 15.740552 -41.050055 L 17.131982 -40.736494 L 18.523412 -40.3563 L 19.714946 -39.964348 L 20.90648 -39.494006 L 22.098015 -38.917836 L 23.289549 -38.224081 L 24.481083 -37.397062 L 26.068489 -36.264321 L 26.664257 -35.997793 L 27.060128 -35.935081 L 27.260024 -35.950759 L 27.459919 -35.993874 L 27.855791 -36.174172 L 28.451558 -36.640595 L 29.247221 -37.491131 L 32.030081 -40.60323 L 33.617486 -42.092648 L 35.204892 -43.401768 L 36.996113 -44.714807 L 38.979391 -46.027847 L 41.36246 -47.462392 L 44.145319 -49.006683 L 47.324051 -50.648962 L 51.098549 -52.487217 L 55.664791 -54.603758 L 61.026696 -56.986827 L 66.988287 -59.538435 L 72.746063 -61.909745 L 78.107967 -64.026287 L 82.878024 -65.817508 L 87.24829 -67.377477 L 91.41866 -68.780665 L 95.58903 -70.101544 L 99.959296 -71.410664 L 104.729353 -72.758979 L 111.082896 -74.479649 L 121.810624 -77.380094 L 126.576762 -78.744087 L 130.747132 -80.006173 L 134.917502 -81.342729 L 139.091792 -82.761596 L 143.458138 -84.329404 L 148.228195 -86.124545 L 148.823962 -86.355797 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.15536 L -25.775012 -42.127924 L -15.443156 -42.07697 L -8.689821 -41.99858 L -3.723788 -41.900591 L 0.246686 -41.783006 L 3.425418 -41.645823 L 6.204358 -41.481203 L 8.591346 -41.300905 L 10.574624 -41.104929 L 12.361925 -40.889355 L 14.149227 -40.618908 L 15.740552 -40.324944 L 17.131982 -40.011382 L 18.523412 -39.631189 L 19.714946 -39.239237 L 20.90648 -38.764975 L 22.098015 -38.192725 L 23.289549 -37.49897 L 24.481083 -36.671951 L 26.068489 -35.539209 L 26.664257 -35.272682 L 27.060128 -35.209969 L 27.260024 -35.221728 L 27.459919 -35.268762 L 27.855791 -35.44906 L 28.451558 -35.915483 L 29.247221 -36.7621 L 32.030081 -39.874199 L 33.617486 -41.367537 L 35.204892 -42.672737 L 36.996113 -43.985777 L 38.979391 -45.294897 L 41.36246 -46.733361 L 44.145319 -48.273732 L 47.324051 -49.912092 L 51.098549 -51.746428 L 55.664791 -53.859049 L 60.83072 -56.140211 L 66.39252 -58.503682 L 71.754424 -60.690774 L 76.720457 -62.630937 L 81.290618 -64.32809 L 85.460988 -65.79399 L 89.431463 -67.110949 L 93.401938 -68.357357 L 97.576227 -69.588087 L 102.342365 -70.920724 L 108.303956 -72.512049 L 121.410833 -75.988664 L 126.18089 -77.33306 L 130.35126 -78.583387 L 134.325654 -79.845473 L 138.492105 -81.248661 L 142.862371 -82.804711 L 147.632428 -84.588093 L 148.823962 -85.046677 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.900069 L -25.775012 -42.872633 L -15.443156 -42.817759 L -8.689821 -42.743288 L -3.723788 -42.6453 L 0.246686 -42.523795 L 3.425418 -42.386612 L 6.204358 -42.225912 L 8.591346 -42.041694 L 10.574624 -41.849638 L 12.361925 -41.630145 L 14.149227 -41.363617 L 15.740552 -41.069653 L 17.131982 -40.756091 L 18.523412 -40.375898 L 19.714946 -39.980026 L 20.90648 -39.509684 L 22.098015 -38.937434 L 23.289549 -38.239759 L 24.481083 -37.41666 L 26.068489 -36.283918 L 26.664257 -36.013471 L 27.060128 -35.954678 L 27.260024 -35.966437 L 27.459919 -36.009552 L 27.855791 -36.193769 L 28.451558 -36.660192 L 29.247221 -37.506809 L 32.030081 -40.618908 L 33.617486 -42.112246 L 35.204892 -43.417446 L 36.996113 -44.730486 L 38.979391 -46.039605 L 41.36246 -47.47807 L 44.145319 -49.018441 L 47.324051 -50.660721 L 51.098549 -52.498976 L 55.664791 -54.611597 L 61.026696 -56.986827 L 66.788391 -59.444367 L 72.350191 -61.725528 L 77.5122 -63.75192 L 82.082361 -65.460831 L 86.452627 -67.009042 L 90.622997 -68.400472 L 94.797287 -69.713511 L 98.967657 -70.95208 L 103.733794 -72.292556 L 109.891362 -73.946594 L 121.410833 -77.031257 L 126.18089 -78.383491 L 130.35126 -79.637738 L 134.52163 -80.966455 L 138.692001 -82.373563 L 143.062266 -83.933533 L 147.828404 -85.720834 L 148.823962 -86.104947 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.954943 L -26.170884 -42.923586 L -15.842947 -42.872633 L -9.089612 -42.798162 L -4.123579 -42.704093 L -0.149185 -42.590427 L 3.225522 -42.449324 L 6.008382 -42.288624 L 8.391451 -42.108326 L 10.574624 -41.896672 L 12.361925 -41.681098 L 14.149227 -41.410651 L 15.740552 -41.116687 L 17.131982 -40.803126 L 18.523412 -40.422932 L 19.714946 -40.03098 L 20.90648 -39.556718 L 22.098015 -38.984468 L 23.289549 -38.286793 L 24.481083 -37.463694 L 26.068489 -36.330952 L 26.664257 -36.060505 L 27.060128 -36.001713 L 27.260024 -36.013471 L 27.459919 -36.056586 L 27.855791 -36.236884 L 28.451558 -36.707226 L 29.247221 -37.553843 L 32.030081 -40.665942 L 33.617486 -42.15536 L 35.204892 -43.46448 L 36.996113 -44.7736 L 38.979391 -46.08272 L 41.36246 -47.517265 L 44.145319 -49.057636 L 47.324051 -50.695996 L 51.098549 -52.530332 L 55.464896 -54.544966 L 60.630824 -56.822207 L 65.992728 -59.09161 L 71.354633 -61.266944 L 76.12469 -63.113038 L 80.494955 -64.723961 L 84.665326 -66.178103 L 88.6358 -67.483304 L 92.606275 -68.714033 L 96.780564 -69.929085 L 101.550621 -71.249963 L 107.508293 -72.821691 L 120.815066 -76.310065 L 125.585123 -77.646621 L 129.755493 -78.88127 L 133.725968 -80.131598 L 137.700362 -81.452476 L 141.870732 -82.918377 L 146.440893 -84.60769 L 148.823962 -85.520939 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.190636 L -25.970989 -42.163199 L -15.643051 -42.108326 L -8.889717 -42.033855 L -3.923684 -41.935867 L 0.0507102 -41.818282 L 3.225522 -41.685018 L 6.008382 -41.524317 L 8.391451 -41.347939 L 10.574624 -41.136285 L 12.361925 -40.916792 L 14.149227 -40.650264 L 15.740552 -40.3563 L 17.131982 -40.042739 L 18.523412 -39.662545 L 19.714946 -39.270593 L 20.90648 -38.796331 L 22.098015 -38.224081 L 23.289549 -37.526406 L 24.481083 -36.703307 L 26.068489 -35.570565 L 26.664257 -35.300118 L 27.060128 -35.241326 L 27.260024 -35.253084 L 27.459919 -35.296199 L 27.855791 -35.476497 L 28.451558 -35.946839 L 29.247221 -36.793456 L 32.030081 -39.905555 L 33.617486 -41.394973 L 35.204892 -42.704093 L 36.996113 -44.013213 L 38.979391 -45.326253 L 41.36246 -46.764717 L 44.145319 -48.305088 L 47.324051 -49.943448 L 51.098549 -51.781703 L 55.664791 -53.894325 L 61.026696 -56.269555 L 66.788391 -58.719255 L 72.350191 -60.988658 L 77.312305 -62.928821 L 81.886385 -64.629893 L 86.056756 -66.103633 L 90.227126 -67.491143 L 94.397496 -68.800263 L 98.567866 -70.030992 L 103.337923 -71.363629 L 109.491571 -73.013748 L 121.214857 -76.133686 L 125.980995 -77.482001 L 130.151365 -78.732329 L 134.125759 -79.990495 L 138.296129 -81.389764 L 142.662475 -82.941894 L 147.432532 -84.721356 L 148.823962 -85.254411 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.186717 L -25.775012 -42.15928 L -15.443156 -42.104407 L -8.689821 -42.029936 L -3.723788 -41.931948 L 0.246686 -41.814362 L 3.425418 -41.677179 L 6.204358 -41.512559 L 8.591346 -41.332261 L 10.574624 -41.136285 L 12.361925 -40.920711 L 14.149227 -40.650264 L 15.740552 -40.3563 L 17.131982 -40.046658 L 18.523412 -39.666465 L 19.714946 -39.270593 L 20.90648 -38.800251 L 22.098015 -38.224081 L 23.289549 -37.530326 L 24.481083 -36.703307 L 26.068489 -35.574485 L 26.664257 -35.304038 L 27.060128 -35.245245 L 27.260024 -35.257004 L 27.459919 -35.300118 L 27.855791 -35.484336 L 28.451558 -35.950759 L 29.247221 -36.797375 L 32.030081 -39.909475 L 33.617486 -41.402812 L 35.204892 -42.711932 L 36.996113 -44.021052 L 38.979391 -45.334092 L 41.36246 -46.772556 L 44.145319 -48.316847 L 47.324051 -49.959126 L 51.098549 -51.797382 L 55.664791 -53.913923 L 61.026696 -56.296991 L 66.988287 -58.8486 L 72.746063 -61.21991 L 78.107967 -63.336451 L 82.878024 -65.127672 L 87.24829 -66.683722 L 91.41866 -68.08691 L 95.58903 -69.407789 L 99.959296 -70.712989 L 104.729353 -72.061304 L 111.082896 -73.781974 L 121.810624 -76.682419 L 126.576762 -78.046412 L 130.747132 -79.308498 L 134.917502 -80.648974 L 139.091792 -82.063921 L 143.458138 -83.63173 L 148.228195 -85.42687 L 148.823962 -85.658122 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.660979 L -24.583478 -42.621783 L -14.647493 -42.56299 L -8.094054 -42.4846 L -3.327917 -42.386612 L 0.446582 -42.269026 L 3.625313 -42.131843 L 6.404253 -41.963304 L 8.787322 -41.779086 L 10.774519 -41.579191 L 12.561821 -41.355778 L 14.149227 -41.116687 L 15.740552 -40.822723 L 17.131982 -40.509162 L 18.523412 -40.128968 L 19.714946 -39.737016 L 20.90648 -39.262754 L 22.098015 -38.690504 L 23.289549 -37.996749 L 24.481083 -37.16973 L 26.068489 -36.040908 L 26.664257 -35.770461 L 27.060128 -35.711668 L 27.260024 -35.723427 L 27.459919 -35.770461 L 27.855791 -35.950759 L 28.451558 -36.417182 L 29.247221 -37.263798 L 32.030081 -40.379817 L 33.617486 -41.873155 L 35.204892 -43.182275 L 36.996113 -44.495314 L 39.179287 -45.937698 L 41.562355 -47.368323 L 44.337376 -48.908695 L 47.719922 -50.652881 L 51.694317 -52.593044 L 56.660349 -54.905562 L 63.209869 -57.853041 L 72.150296 -61.764723 L 83.869663 -66.797388 L 94.797287 -71.394986 L 102.938132 -74.734417 L 109.491571 -77.33306 L 115.653057 -79.684772 L 122.406392 -82.173668 L 139.487663 -88.421384 L 145.645231 -90.792694 L 148.823962 -92.05086 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.500278 L -35.507183 -42.531634 L -22.992153 -42.515956 L -14.055645 -42.461083 L -7.898078 -42.386612 L -3.128021 -42.288624 L 0.646477 -42.171038 L 3.825209 -42.026016 L 6.604149 -41.857477 L 8.987218 -41.66542 L 10.970495 -41.465525 L 12.761716 -41.238192 L 14.345203 -40.991263 L 15.940448 -40.68946 L 17.327958 -40.368059 L 18.719388 -39.976107 L 19.910922 -39.572396 L 21.102457 -39.082456 L 22.293991 -38.494528 L 23.485525 -37.777256 L 24.876955 -36.785617 L 26.068489 -35.946839 L 26.664257 -35.680312 L 27.060128 -35.6176 L 27.260024 -35.633278 L 27.459919 -35.676392 L 27.855791 -35.85669 L 28.451558 -36.327033 L 29.247221 -37.173649 L 32.030081 -40.289668 L 33.617486 -41.783006 L 35.204892 -43.092126 L 36.996113 -44.405165 L 39.179287 -45.847549 L 41.562355 -47.278174 L 44.337376 -48.818546 L 47.719922 -50.562732 L 51.694317 -52.502895 L 56.660349 -54.819332 L 63.209869 -57.774651 L 72.746063 -61.960699 L 110.687024 -78.528514 L 117.440359 -81.624935 L 123.002159 -84.270612 L 127.964272 -86.73599 L 132.734329 -89.205288 L 137.500466 -91.788252 L 142.466499 -94.594629 L 148.028299 -97.85959 L 148.823962 -98.337772 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.40229 L -27.362418 -42.374854 L -17.230457 -42.31998 L -10.281147 -42.24159 L -5.119138 -42.143602 L -0.944848 -42.022097 L 2.433779 -41.884913 L 5.412615 -41.716374 L 7.795683 -41.543915 L 9.978856 -41.3401 L 11.966053 -41.108848 L 13.753355 -40.84624 L 15.34468 -40.564035 L 16.732191 -40.266151 L 18.123621 -39.901636 L 19.315155 -39.529281 L 20.506689 -39.082456 L 21.698224 -38.545482 L 22.889758 -37.890922 L 24.081292 -37.107018 L 26.268385 -35.574485 L 26.664257 -35.413785 L 27.060128 -35.354992 L 27.260024 -35.36675 L 27.459919 -35.409865 L 27.855791 -35.590163 L 28.451558 -36.056586 L 29.247221 -36.903202 L 32.030081 -40.015302 L 33.617486 -41.508639 L 35.204892 -42.81384 L 36.996113 -44.126879 L 38.979391 -45.439919 L 41.36246 -46.874463 L 44.145319 -48.418755 L 47.324051 -50.061034 L 51.098549 -51.903209 L 55.664791 -54.023669 L 61.226591 -56.504726 L 67.384158 -59.146483 L 73.541726 -61.698091 L 79.099606 -63.91262 L 84.069558 -65.79791 L 88.439824 -67.369638 L 92.606275 -68.796343 L 96.780564 -70.136819 L 101.15083 -71.465537 L 105.920887 -72.837369 L 112.27443 -74.585476 L 122.602368 -77.427128 L 127.368505 -78.810719 L 131.74269 -80.155115 L 135.91306 -81.515188 L 140.08343 -82.953653 L 144.453696 -84.541058 L 148.823962 -86.202935 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.89615 L -30.141359 -42.903989 L -18.621887 -42.864794 L -11.076809 -42.802081 L -5.515009 -42.711932 L -1.34072 -42.606105 L 2.233883 -42.472842 L 5.212719 -42.316061 L 7.795683 -42.135763 L 9.978856 -41.939787 L 11.966053 -41.712454 L 13.753355 -41.453766 L 15.34468 -41.17548 L 16.732191 -40.877597 L 18.123621 -40.52092 L 19.315155 -40.148566 L 20.506689 -39.70566 L 21.698224 -39.168685 L 22.889758 -38.514125 L 24.081292 -37.730221 L 26.268385 -36.201608 L 26.664257 -36.040908 L 27.060128 -35.982115 L 27.260024 -35.993874 L 27.459919 -36.036988 L 27.855791 -36.217286 L 28.451558 -36.687629 L 29.247221 -37.534245 L 32.030081 -40.646345 L 33.617486 -42.135763 L 35.204892 -43.444883 L 36.996113 -44.754003 L 38.979391 -46.067042 L 41.36246 -47.501587 L 44.145319 -49.041958 L 47.324051 -50.680318 L 51.098549 -52.514654 L 55.664791 -54.623356 L 60.83072 -56.904517 L 66.39252 -59.264069 L 71.754424 -61.451161 L 76.720457 -63.383485 L 81.290618 -65.072799 L 85.460988 -66.53478 L 89.431463 -67.847819 L 93.401938 -69.086388 L 97.576227 -70.313198 L 102.342365 -71.637996 L 108.499932 -73.276356 L 121.014962 -76.584431 L 125.781099 -77.924907 L 129.951469 -79.167395 L 133.925863 -80.421642 L 137.896338 -81.74644 L 142.070628 -83.21626 L 146.636869 -84.913413 L 148.823962 -85.748271 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.676657 L -25.775012 -42.64922 L -15.443156 -42.594347 L -8.689821 -42.519876 L -3.723788 -42.421888 L 0.246686 -42.300383 L 3.425418 -42.167119 L 6.204358 -42.002499 L 8.591346 -41.818282 L 10.574624 -41.626225 L 12.361925 -41.410651 L 14.149227 -41.140204 L 15.740552 -40.84624 L 17.131982 -40.532679 L 18.523412 -40.156405 L 19.714946 -39.760533 L 20.90648 -39.290191 L 22.098015 -38.717941 L 23.289549 -38.020266 L 24.481083 -37.197166 L 26.068489 -36.064425 L 26.664257 -35.797898 L 27.060128 -35.735185 L 27.260024 -35.750863 L 27.459919 -35.793978 L 27.855791 -35.974276 L 28.451558 -36.444619 L 29.247221 -37.291235 L 32.030081 -40.403335 L 33.617486 -41.896672 L 35.204892 -43.205792 L 36.996113 -44.518831 L 39.179287 -45.961215 L 41.562355 -47.39184 L 44.337376 -48.932212 L 47.719922 -50.676399 L 51.694317 -52.616561 L 56.660349 -54.929079 L 63.013893 -57.786409 L 71.554529 -61.517793 L 81.886385 -65.935093 L 91.022788 -69.756626 L 98.171994 -72.657071 L 104.129666 -74.981347 L 109.491571 -76.992061 L 114.857395 -78.916546 L 121.214857 -81.107558 L 134.52163 -85.665961 L 139.883535 -87.602204 L 145.249359 -89.624677 L 148.823962 -91.020026 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.24159 L -36.898613 -42.308222 L -16.834585 -42.425807 L -10.677018 -42.40621 L -5.714905 -42.351336 L -1.540615 -42.261187 L 1.838012 -42.147521 L 4.816848 -42.002499 L 7.399812 -41.83396 L 9.582985 -41.649742 L 11.570182 -41.434169 L 13.353564 -41.191158 L 14.948809 -40.924631 L 16.336319 -40.646345 L 17.727749 -40.309266 L 18.919283 -39.960429 L 20.110818 -39.54104 L 21.302352 -39.039341 L 22.493886 -38.427896 L 23.685421 -37.691026 L 25.272827 -36.534767 L 26.068489 -35.993874 L 26.664257 -35.727346 L 27.060128 -35.664634 L 27.260024 -35.680312 L 27.459919 -35.723427 L 27.855791 -35.903725 L 28.451558 -36.374067 L 29.247221 -37.220684 L 32.030081 -40.336703 L 33.617486 -41.83004 L 35.204892 -43.13916 L 36.996113 -44.4522 L 39.179287 -45.894583 L 41.562355 -47.325208 L 44.337376 -48.86558 L 47.719922 -50.609767 L 51.694317 -52.54993 L 56.660349 -54.866366 L 63.209869 -57.813846 L 72.350191 -61.819596 L 85.460988 -67.459787 L 98.567866 -73.013748 L 107.904165 -76.882315 L 115.653057 -80.002253 L 123.39803 -83.028123 L 144.653592 -91.259117 L 148.823962 -92.940592 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 -42.939264 L -26.766651 -42.907908 L -16.438714 -42.856955 L -9.485484 -42.782484 L -4.319556 -42.684496 L -0.349081 -42.56691 L 3.029546 -42.429727 L 5.808486 -42.272946 L 8.191555 -42.096568 L 10.374728 -41.888833 L 12.361925 -41.649742 L 14.149227 -41.379295 L 15.740552 -41.085331 L 17.131982 -40.771769 L 18.523412 -40.391576 L 19.714946 -39.999624 L 20.90648 -39.525362 L 22.098015 -38.953112 L 23.289549 -38.255437 L 24.481083 -37.432338 L 26.068489 -36.299596 L 26.664257 -36.029149 L 27.060128 -35.970356 L 27.260024 -35.982115 L 27.459919 -36.02523 L 27.855791 -36.209447 L 28.451558 -36.67587 L 29.247221 -37.522487 L 32.030081 -40.634586 L 33.617486 -42.124004 L 35.204892 -43.433124 L 36.996113 -44.742244 L 38.979391 -46.055284 L 41.36246 -47.493748 L 44.145319 -49.034119 L 47.324051 -50.672479 L 51.098549 -52.510734 L 55.664791 -54.623356 L 61.026696 -56.994666 L 66.788391 -59.444367 L 72.350191 -61.713769 L 77.312305 -63.653932 L 81.886385 -65.355004 L 86.056756 -66.824824 L 90.227126 -68.212335 L 94.397496 -69.517535 L 98.567866 -70.748265 L 103.337923 -72.080902 L 109.491571 -73.727101 L 121.214857 -76.850959 L 125.980995 -78.199274 L 130.151365 -79.445681 L 134.125759 -80.703848 L 138.296129 -82.103117 L 142.662475 -83.655247 L 147.432532 -85.434709 L 148.823962 -85.971684 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -42.515956 L -25.775012 -42.48852 L -15.443156 -42.433646 L -8.689821 -42.359175 L -3.723788 -42.261187 L 0.246686 -42.143602 L 3.425418 -42.006419 L 6.204358 -41.841799 L 8.591346 -41.661501 L 10.574624 -41.465525 L 12.361925 -41.249951 L 14.149227 -40.983424 L 15.740552 -40.68946 L 17.131982 -40.375898 L 18.523412 -39.995704 L 19.714946 -39.603752 L 20.90648 -39.12949 L 22.098015 -38.55724 L 23.289549 -37.859566 L 24.481083 -37.036466 L 26.068489 -35.903725 L 26.664257 -35.637197 L 27.060128 -35.574485 L 27.260024 -35.590163 L 27.459919 -35.633278 L 27.855791 -35.813576 L 28.451558 -36.283918 L 29.247221 -37.130535 L 32.030081 -40.246554 L 33.617486 -41.739891 L 35.204892 -43.049011 L 36.996113 -44.362051 L 39.179287 -45.804434 L 41.562355 -47.235059 L 44.337376 -48.771511 L 47.719922 -50.519618 L 51.694317 -52.459781 L 56.660349 -54.776217 L 63.209869 -57.727617 L 72.550087 -61.823516 L 88.439824 -68.686597 L 132.338457 -87.512055 L 148.823962 -94.578951 " transform="matrix(0.996614,0,0,-0.996614,92.96118,-21.536067)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="11.252771" y="80.126551"/>
<use xlink:href="#glyph3-2" x="11.252771" y="71.024758"/>
<use xlink:href="#glyph3-3" x="11.252771" y="66.060324"/>
<use xlink:href="#glyph3-4" x="11.252771" y="61.09589"/>
<use xlink:href="#glyph3-5" x="11.252771" y="55.580403"/>
<use xlink:href="#glyph3-6" x="11.252771" y="52.822163"/>
<use xlink:href="#glyph3-7" x="11.252771" y="48.960827"/>
<use xlink:href="#glyph3-8" x="11.252771" y="43.44534"/>
<use xlink:href="#glyph3-9" x="11.252771" y="37.929854"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="11.252771" y="30.210159"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.252771" y="27.44752"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.252771" y="19.099879"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.252771" y="14.135744"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="11.252771" y="6.689043"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.519531 144.4375 L 241.28125 144.4375 L 241.28125 80.871094 L 43.519531 80.871094 Z M 43.519531 144.4375 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.00143399 L -49.609619 63.780928 M -34.676244 -0.00143399 L -34.676244 63.780928 M -25.939632 -0.00143399 L -25.939632 63.780928 M -19.74287 -0.00143399 L -19.74287 63.780928 M -14.933618 -0.00143399 L -14.933618 63.780928 M -11.006258 -0.00143399 L -11.006258 63.780928 M -7.682504 -0.00143399 L -7.682504 63.780928 M -4.805576 -0.00143399 L -4.805576 63.780928 M -2.269646 -0.00143399 L -2.269646 63.780928 M -0.000243561 -0.00143399 L -0.000243561 63.780928 M 14.933131 -0.00143399 L 14.933131 63.780928 M 23.669743 -0.00143399 L 23.669743 63.780928 M 29.866505 -0.00143399 L 29.866505 63.780928 M 34.675757 -0.00143399 L 34.675757 63.780928 M 38.603117 -0.00143399 L 38.603117 63.780928 M 41.922951 -0.00143399 L 41.922951 63.780928 M 44.799879 -0.00143399 L 44.799879 63.780928 M 47.339729 -0.00143399 L 47.339729 63.780928 M 49.609131 -0.00143399 L 49.609131 63.780928 M 64.542506 -0.00143399 L 64.542506 63.780928 M 73.275198 -0.00143399 L 73.275198 63.780928 M 79.47588 -0.00143399 L 79.47588 63.780928 M 84.281213 -0.00143399 L 84.281213 63.780928 M 88.212492 -0.00143399 L 88.212492 63.780928 M 91.532326 -0.00143399 L 91.532326 63.780928 M 94.409254 -0.00143399 L 94.409254 63.780928 M 96.945184 -0.00143399 L 96.945184 63.780928 M 99.214587 -0.00143399 L 99.214587 63.780928 M 114.147961 -0.00143399 L 114.147961 63.780928 M 122.884573 -0.00143399 L 122.884573 63.780928 M 129.081336 -0.00143399 L 129.081336 63.780928 M 133.890588 -0.00143399 L 133.890588 63.780928 M 137.817947 -0.00143399 L 137.817947 63.780928 M 141.137782 -0.00143399 L 141.137782 63.780928 M 144.01471 -0.00143399 L 144.01471 63.780928 M 146.554559 -0.00143399 L 146.554559 63.780928 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.00143399 L -49.609619 63.780928 M -0.000243561 -0.00143399 L -0.000243561 63.780928 M 49.609131 -0.00143399 L 49.609131 63.780928 M 99.214587 -0.00143399 L 99.214587 63.780928 M 148.823962 -0.00143399 L 148.823962 63.780928 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.00143399 L 148.823962 -0.00143399 M -49.609619 18.463429 L 148.823962 18.463429 M -49.609619 33.569262 L 148.823962 33.569262 M -49.609619 48.675095 L 148.823962 48.675095 M -49.609619 63.780928 L 148.823962 63.780928 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.00143399 L -49.609619 2.836299 M -34.676244 -0.00143399 L -34.676244 2.836299 M -25.939632 -0.00143399 L -25.939632 2.836299 M -19.74287 -0.00143399 L -19.74287 2.836299 M -14.933618 -0.00143399 L -14.933618 2.836299 M -11.006258 -0.00143399 L -11.006258 2.836299 M -7.682504 -0.00143399 L -7.682504 2.836299 M -4.805576 -0.00143399 L -4.805576 2.836299 M -2.269646 -0.00143399 L -2.269646 2.836299 M -0.000243561 -0.00143399 L -0.000243561 2.836299 M 14.933131 -0.00143399 L 14.933131 2.836299 M 23.669743 -0.00143399 L 23.669743 2.836299 M 29.866505 -0.00143399 L 29.866505 2.836299 M 34.675757 -0.00143399 L 34.675757 2.836299 M 38.603117 -0.00143399 L 38.603117 2.836299 M 41.922951 -0.00143399 L 41.922951 2.836299 M 44.799879 -0.00143399 L 44.799879 2.836299 M 47.339729 -0.00143399 L 47.339729 2.836299 M 49.609131 -0.00143399 L 49.609131 2.836299 M 64.542506 -0.00143399 L 64.542506 2.836299 M 73.275198 -0.00143399 L 73.275198 2.836299 M 79.47588 -0.00143399 L 79.47588 2.836299 M 84.281213 -0.00143399 L 84.281213 2.836299 M 88.212492 -0.00143399 L 88.212492 2.836299 M 91.532326 -0.00143399 L 91.532326 2.836299 M 94.409254 -0.00143399 L 94.409254 2.836299 M 96.945184 -0.00143399 L 96.945184 2.836299 M 99.214587 -0.00143399 L 99.214587 2.836299 M 114.147961 -0.00143399 L 114.147961 2.836299 M 122.884573 -0.00143399 L 122.884573 2.836299 M 129.081336 -0.00143399 L 129.081336 2.836299 M 133.890588 -0.00143399 L 133.890588 2.836299 M 137.817947 -0.00143399 L 137.817947 2.836299 M 141.137782 -0.00143399 L 141.137782 2.836299 M 144.01471 -0.00143399 L 144.01471 2.836299 M 146.554559 -0.00143399 L 146.554559 2.836299 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.00143399 L -49.609619 4.251246 M -0.000243561 -0.00143399 L -0.000243561 4.251246 M 49.609131 -0.00143399 L 49.609131 4.251246 M 99.214587 -0.00143399 L 99.214587 4.251246 M 148.823962 -0.00143399 L 148.823962 4.251246 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.00143399 L -45.360858 -0.00143399 M -49.609619 18.463429 L -45.360858 18.463429 M -49.609619 33.569262 L -45.360858 33.569262 M -49.609619 48.675095 L -45.360858 48.675095 M -49.609619 63.780928 L -45.360858 63.780928 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.00143399 L 148.823962 -0.00143399 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 -0.00143399 L -49.609619 63.780928 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="33.227117" y="156.323685"/>
<use xlink:href="#glyph0-2" x="38.191551" y="156.323685"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="43.156384" y="152.720924"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="49.3623" y="152.720924"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="85.769612" y="156.323685"/>
<use xlink:href="#glyph0-2" x="90.734047" y="156.323685"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="95.698879" y="152.720924"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="135.209648" y="156.323685"/>
<use xlink:href="#glyph0-2" x="140.174082" y="156.323685"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="145.138915" y="152.720924"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="184.649684" y="156.323685"/>
<use xlink:href="#glyph0-2" x="189.614118" y="156.323685"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="194.578951" y="152.720924"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="234.08972" y="156.323685"/>
<use xlink:href="#glyph0-2" x="239.054154" y="156.323685"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="244.018987" y="152.720924"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="17.098909" y="147.148855"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="24.821673" y="147.148855"/>
<use xlink:href="#glyph0-4" x="29.786107" y="147.148855"/>
<use xlink:href="#glyph0-2" x="34.750541" y="147.148855"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="17.098909" y="128.748367"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="24.821673" y="128.748367"/>
<use xlink:href="#glyph0-6" x="29.786107" y="128.748367"/>
<use xlink:href="#glyph0-2" x="34.750541" y="128.748367"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="17.098909" y="113.693513"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="24.821673" y="113.693513"/>
<use xlink:href="#glyph0-4" x="29.786107" y="113.693513"/>
<use xlink:href="#glyph0-2" x="34.750541" y="113.693513"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="22.064041" y="98.63866"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="29.786804" y="98.63866"/>
<use xlink:href="#glyph0-2" x="34.751239" y="98.63866"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="34.75094" y="83.997401"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.737814 L -46.826759 63.733894 L -44.047819 63.726055 L -38.88189 63.710377 L -34.115753 63.694699 L -31.92866 63.68294 L -29.745487 63.675101 L -27.562314 63.663343 L -25.375221 63.651584 L -23.192048 63.635906 L -17.230457 63.588872 L -15.24718 63.565355 L -13.259982 63.545757 L -11.272785 63.52224 L -7.698182 63.467367 L -5.9148 63.43993 L -4.123579 63.404654 L -2.336278 63.365459 L -0.744953 63.326264 L 0.842453 63.283149 L 2.433779 63.232195 L 4.021185 63.177322 L 5.412615 63.122449 L 6.804045 63.059736 L 8.191555 62.985266 L 9.582985 62.899036 L 10.774519 62.816726 L 11.966053 62.718738 L 13.157588 62.601153 L 14.345203 62.467889 L 15.34468 62.334625 L 16.336319 62.173925 L 17.327958 61.985788 L 18.323516 61.758456 L 19.315155 61.472331 L 20.110818 61.194045 L 20.90648 60.853046 L 21.698224 60.425818 L 22.493886 59.884925 L 23.289549 59.175491 L 24.081292 58.223048 L 24.680979 57.286282 L 25.272827 56.082989 L 25.872513 54.550457 L 26.664257 51.936136 L 28.84743 43.97559 L 29.643092 42.031507 L 30.438755 40.632238 L 31.234418 39.621002 L 32.030081 38.876293 L 32.821824 38.307962 L 33.617486 37.872896 L 34.413149 37.527978 L 35.404788 37.190899 L 36.400346 36.932211 L 37.391985 36.728396 L 38.383624 36.567695 L 39.379182 36.438351 L 40.370821 36.336444 L 41.36246 36.258053 L 42.158122 36.207099 L 42.953785 36.167904 L 43.745528 36.136548 L 44.541191 36.11695 L 45.136958 36.101272 L 45.732725 36.093433 L 46.132516 36.089514 L 47.324051 36.089514 L 48.115794 36.097353 L 48.715481 36.105192 L 49.311248 36.113031 L 50.102991 36.132628 L 50.898654 36.156146 L 51.890293 36.191421 L 53.081827 36.242375 L 54.277281 36.305087 L 55.664791 36.383478 L 57.056221 36.477546 L 58.643627 36.599051 L 60.234952 36.736235 L 62.022254 36.904774 L 64.005531 37.112509 L 65.992728 37.34376 L 68.179821 37.622046 L 70.56289 37.955206 L 73.145854 38.339319 L 76.12469 38.8175 L 80.099084 39.491658 L 87.844057 40.812536 L 90.622997 41.251523 L 93.006066 41.592521 L 94.993263 41.855129 L 96.780564 42.062863 L 98.37189 42.231403 L 99.959296 42.376425 L 101.350726 42.486172 L 102.54226 42.568482 L 103.733794 42.635113 L 104.729353 42.682148 L 105.720991 42.717423 L 106.516654 42.740941 L 107.308397 42.756619 L 107.904165 42.764458 L 108.303956 42.768377 L 108.699827 42.772297 L 109.691466 42.772297 L 110.091257 42.768377 L 110.487129 42.764458 L 111.678663 42.740941 L 112.474326 42.717423 L 113.266069 42.689987 L 114.261627 42.642953 L 115.253266 42.588079 L 116.4448 42.513608 L 117.636335 42.423459 L 119.027765 42.301954 L 120.419195 42.164771 L 122.0066 41.988393 L 123.793902 41.76498 L 125.781099 41.490613 L 127.964272 41.161374 L 130.547236 40.741985 L 133.725968 40.185413 L 140.08343 39.033074 L 144.453696 38.260928 L 147.632428 37.731793 L 148.823962 37.543656 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -30.54115 63.780928 L -28.553953 63.76525 L -26.37078 63.745653 L -24.183687 63.726055 L -21.800618 63.702538 L -17.034481 63.647665 L -14.847388 63.616308 L -12.664215 63.584952 L -10.481042 63.549677 L -8.493845 63.514401 L -6.510568 63.475206 L -4.519451 63.432091 L -2.73215 63.388976 L -0.944848 63.341942 L 0.842453 63.287069 L 2.433779 63.236115 L 4.021185 63.173403 L 5.61251 63.102851 L 7.000021 63.036219 L 8.391451 62.957829 L 9.78288 62.86768 L 10.970495 62.777531 L 12.16203 62.671704 L 13.353564 62.550199 L 14.545098 62.409096 L 15.540656 62.267993 L 16.536215 62.099454 L 17.527854 61.899558 L 18.523412 61.660468 L 19.515051 61.362584 L 20.310713 61.0647 L 21.102457 60.704104 L 21.898119 60.24944 L 22.693782 59.665431 L 23.485525 58.901125 L 24.081292 58.160335 L 24.680979 57.21965 L 25.272827 56.016358 L 25.872513 54.483825 L 26.664257 51.865585 L 28.84743 43.897199 L 29.643092 41.949197 L 30.438755 40.549928 L 31.234418 39.534773 L 32.030081 38.786144 L 32.821824 38.217814 L 33.617486 37.778827 L 34.413149 37.42999 L 35.404788 37.088992 L 36.400346 36.826384 L 37.391985 36.618649 L 38.383624 36.454029 L 39.379182 36.320765 L 40.370821 36.214938 L 41.36246 36.128709 L 42.354098 36.065997 L 43.149761 36.022882 L 43.945424 35.991526 L 44.737167 35.964089 L 45.536749 35.944491 L 46.728284 35.928813 L 48.31569 35.928813 L 48.715481 35.932733 L 49.907015 35.948411 L 50.698758 35.964089 L 51.494421 35.983687 L 52.48606 36.018962 L 53.481618 36.054238 L 54.673152 36.109111 L 56.064582 36.183582 L 57.452093 36.265892 L 59.043418 36.375639 L 60.630824 36.497144 L 62.418125 36.653925 L 64.205427 36.826384 L 66.192624 37.038038 L 68.179821 37.273209 L 70.362994 37.551495 L 72.746063 37.880735 L 75.329027 38.264848 L 78.503839 38.774385 L 82.878024 39.507336 L 89.035591 40.53817 L 92.014427 41.004593 L 94.397496 41.345591 L 96.384693 41.60036 L 98.171994 41.808095 L 99.76332 41.972714 L 101.350726 42.117737 L 102.742156 42.223564 L 103.93369 42.301954 L 105.125224 42.368586 L 106.116863 42.411701 L 107.112421 42.446976 L 107.904165 42.466574 L 108.499932 42.478333 L 109.095699 42.486172 L 109.491571 42.490091 L 110.687024 42.490091 L 111.478768 42.482252 L 112.074535 42.474413 L 112.670302 42.462655 L 113.465965 42.439137 L 114.261627 42.407781 L 115.253266 42.364667 L 116.248824 42.309793 L 117.440359 42.231403 L 118.631893 42.141254 L 120.023323 42.019749 L 121.610729 41.862968 L 123.198135 41.68267 L 124.985436 41.455338 L 126.972633 41.177052 L 129.355702 40.816456 L 132.138562 40.357872 L 135.91306 39.703312 L 144.653592 38.16686 L 147.828404 37.649483 L 148.823962 37.492702 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.729975 L -46.826759 63.726055 L -44.243795 63.718216 L -41.66475 63.710377 L -39.281681 63.702538 L -36.898613 63.690779 L -34.715439 63.68294 L -30.341254 63.659423 L -28.158081 63.643745 L -25.970989 63.631986 L -23.787815 63.616308 L -21.800618 63.596711 L -19.813421 63.581033 L -17.826224 63.561435 L -15.842947 63.537918 L -13.85575 63.514401 L -11.868553 63.486964 L -10.081251 63.459528 L -8.29395 63.428171 L -6.510568 63.392896 L -4.719347 63.35762 L -2.932045 63.314505 L -1.140824 63.267471 L 0.446582 63.220437 L 2.033988 63.165564 L 3.625313 63.106771 L 5.212719 63.036219 L 6.604149 62.969587 L 7.995579 62.891197 L 9.383089 62.801048 L 10.774519 62.695221 L 11.966053 62.593313 L 13.157588 62.471808 L 14.345203 62.326786 L 15.540656 62.158247 L 16.536215 61.989707 L 17.527854 61.785892 L 18.523412 61.538962 L 19.515051 61.237159 L 20.310713 60.939276 L 21.102457 60.570841 L 21.898119 60.112257 L 22.693782 59.528248 L 23.485525 58.760022 L 24.081292 58.015313 L 24.680979 57.070709 L 25.272827 55.863496 L 25.872513 54.327044 L 26.664257 51.700965 L 28.84743 43.716901 L 29.643092 41.76498 L 30.438755 40.357872 L 31.234418 39.338796 L 32.030081 38.582329 L 32.821824 38.010079 L 33.617486 37.559334 L 34.413149 37.206577 L 35.404788 36.85382 L 36.400346 36.579454 L 37.391985 36.359961 L 38.383624 36.183582 L 39.379182 36.03856 L 40.370821 35.920974 L 41.36246 35.822986 L 42.354098 35.744596 L 43.349657 35.677964 L 44.337376 35.62701 L 45.336854 35.583896 L 46.328493 35.54862 L 47.124155 35.529022 L 47.919818 35.513344 L 48.515585 35.505505 L 49.707119 35.497666 L 51.294525 35.497666 L 51.890293 35.501586 L 52.48606 35.509425 L 54.077385 35.532942 L 55.069024 35.556459 L 56.064582 35.583896 L 57.252197 35.623091 L 58.447651 35.666205 L 59.835161 35.728918 L 61.226591 35.79555 L 62.813997 35.885699 L 64.401403 35.987606 L 66.192624 36.113031 L 67.979926 36.250214 L 69.967123 36.422673 L 71.95432 36.61081 L 74.137493 36.838142 L 76.324585 37.088992 L 78.703734 37.379036 L 81.290618 37.723954 L 84.269454 38.147262 L 88.239929 38.743029 L 95.58903 39.848334 L 98.171994 40.20893 L 100.359087 40.487216 L 102.342365 40.710629 L 103.93369 40.871329 L 105.521096 41.012432 L 106.912526 41.118259 L 108.10406 41.196649 L 109.295594 41.259362 L 110.287233 41.302476 L 111.082896 41.329913 L 111.874639 41.349511 L 112.474326 41.361269 L 113.066173 41.369108 L 113.465965 41.373028 L 114.261627 41.373028 L 114.657499 41.369108 L 115.05729 41.369108 L 115.453162 41.361269 L 116.048929 41.35343 L 116.644696 41.337752 L 117.440359 41.314235 L 118.236021 41.282879 L 119.22766 41.235845 L 120.219299 41.177052 L 121.410833 41.098661 L 122.602368 41.004593 L 123.993798 40.879168 L 125.585123 40.718468 L 127.368505 40.510733 L 129.355702 40.255964 L 131.542795 39.950242 L 134.325654 39.534773 L 138.296129 38.90373 L 145.249359 37.794505 L 148.624066 37.288887 L 148.823962 37.26145 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.726055 L -47.026654 63.722135 L -44.44369 63.714296 L -42.060621 63.706457 L -39.677553 63.694699 L -37.294484 63.68686 L -35.111311 63.675101 L -30.737126 63.651584 L -28.553953 63.639826 L -26.37078 63.624147 L -24.383583 63.608469 L -22.396386 63.588872 L -20.413108 63.573194 L -18.421991 63.549677 L -16.438714 63.526159 L -14.451517 63.502642 L -12.46432 63.475206 L -10.481042 63.44385 L -8.689821 63.412493 L -6.906439 63.377218 L -5.119138 63.338022 L -3.327917 63.294908 L -1.540615 63.243954 L 0.0507102 63.19692 L 1.638116 63.142046 L 3.225522 63.079334 L 4.816848 63.012702 L 6.204358 62.942151 L 7.595788 62.86376 L 8.987218 62.773611 L 10.374728 62.671704 L 11.570182 62.565877 L 12.761716 62.448291 L 13.949331 62.311108 L 15.144785 62.146488 L 16.136424 61.981868 L 17.131982 61.789812 L 18.123621 61.56248 L 19.119179 61.280274 L 20.110818 60.927517 L 20.90648 60.57476 L 21.698224 60.139693 L 22.493886 59.587041 L 23.289549 58.865849 L 24.081292 57.905567 L 24.680979 56.957043 L 25.272827 55.74983 L 25.872513 54.205539 L 26.664257 51.57946 L 28.84743 43.583638 L 29.643092 41.623877 L 30.438755 40.21285 L 31.234418 39.185935 L 32.030081 38.425548 L 32.821824 37.845459 L 33.617486 37.390795 L 34.609125 36.951808 L 35.604684 36.61081 L 36.596322 36.340363 L 37.587961 36.12087 L 38.583519 35.940572 L 39.575158 35.79163 L 40.766692 35.646608 L 41.958227 35.529022 L 43.149761 35.431034 L 44.337376 35.352644 L 45.536749 35.289931 L 46.528388 35.246817 L 47.520027 35.207622 L 48.515585 35.180185 L 49.507224 35.156668 L 51.098549 35.133151 L 52.885851 35.121392 L 54.077385 35.121392 L 54.473257 35.125312 L 55.069024 35.125312 L 55.664791 35.133151 L 56.460454 35.14099 L 57.252197 35.152748 L 58.247755 35.172346 L 59.239394 35.191943 L 60.430928 35.2233 L 61.626382 35.262495 L 63.013893 35.309529 L 64.401403 35.368322 L 65.992728 35.442793 L 67.584054 35.525103 L 69.371355 35.63093 L 71.158657 35.748515 L 72.945958 35.87786 L 74.933155 36.03856 L 76.916433 36.214938 L 79.099606 36.426592 L 81.290618 36.657844 L 83.673687 36.928291 L 86.252732 37.245772 L 89.231567 37.637724 L 93.401938 38.213894 L 99.563424 39.06443 L 102.146388 39.39367 L 104.329562 39.648439 L 106.116863 39.836576 L 107.708189 39.985517 L 109.095699 40.099184 L 110.487129 40.197172 L 111.678663 40.263803 L 112.670302 40.314757 L 113.66586 40.350033 L 114.461523 40.37355 L 115.253266 40.393148 L 115.849033 40.400987 L 116.248824 40.404906 L 116.644696 40.408826 L 117.240463 40.408826 L 117.636335 40.404906 L 118.036126 40.404906 L 118.431997 40.397067 L 119.027765 40.389228 L 119.623532 40.37355 L 120.419195 40.350033 L 121.214857 40.318677 L 122.206496 40.275562 L 123.198135 40.216769 L 124.389669 40.138379 L 125.781099 40.032552 L 127.168609 39.907127 L 128.759935 39.746427 L 130.547236 39.546531 L 132.734329 39.280004 L 135.317293 38.935086 L 138.891896 38.425548 L 146.836765 37.288887 L 148.823962 37.01844 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.737814 L -46.826759 63.729975 L -44.243795 63.722135 L -41.66475 63.714296 L -39.281681 63.710377 L -36.898613 63.698618 L -34.511624 63.690779 L -32.328451 63.679021 L -30.141359 63.671182 L -27.958186 63.659423 L -25.775012 63.643745 L -23.58792 63.628067 L -21.604642 63.616308 L -19.613526 63.596711 L -17.630248 63.581033 L -15.643051 63.557516 L -13.655854 63.537918 L -11.668657 63.510481 L -9.881356 63.486964 L -8.094054 63.459528 L -6.306753 63.428171 L -4.519451 63.392896 L -2.73215 63.353701 L -1.140824 63.314505 L 2.033988 63.220437 L 3.625313 63.165564 L 5.012824 63.106771 L 6.404253 63.044058 L 7.795683 62.973507 L 9.187113 62.887278 L 10.574624 62.793209 L 11.766158 62.695221 L 12.957692 62.581555 L 14.149227 62.448291 L 15.34468 62.287591 L 16.336319 62.126891 L 17.327958 61.934834 L 18.323516 61.703582 L 19.315155 61.421377 L 20.110818 61.139171 L 20.90648 60.798173 L 21.698224 60.367026 L 22.493886 59.822212 L 23.289549 59.112779 L 24.081292 58.160335 L 24.680979 57.21965 L 25.272827 56.016358 L 25.872513 54.483825 L 26.664257 51.865585 L 28.84743 43.897199 L 29.643092 41.949197 L 30.438755 40.549928 L 31.234418 39.534773 L 32.030081 38.786144 L 32.821824 38.217814 L 33.617486 37.778827 L 34.413149 37.42999 L 35.404788 37.088992 L 36.400346 36.822464 L 37.391985 36.614729 L 38.383624 36.44619 L 39.379182 36.312926 L 40.370821 36.207099 L 41.36246 36.11695 L 42.354098 36.050318 L 43.349657 35.995445 L 44.145319 35.964089 L 44.940982 35.936652 L 45.732725 35.917055 L 46.328493 35.905296 L 46.92426 35.897457 L 47.520027 35.893538 L 49.111352 35.893538 L 49.507224 35.897457 L 50.698758 35.913135 L 51.494421 35.928813 L 52.290084 35.948411 L 53.281722 35.979767 L 54.277281 36.015043 L 55.464896 36.062077 L 56.856325 36.132628 L 58.247755 36.211019 L 59.835161 36.312926 L 61.426487 36.426592 L 63.209869 36.571615 L 65.00109 36.732315 L 66.988287 36.932211 L 68.975484 37.147784 L 71.158657 37.410392 L 73.541726 37.723954 L 76.12469 38.092389 L 79.099606 38.543134 L 82.878024 39.154579 L 91.41866 40.546009 L 93.997705 40.930122 L 96.184797 41.228006 L 98.171994 41.471016 L 99.959296 41.666992 L 101.550621 41.819853 L 102.938132 41.937439 L 104.329562 42.035427 L 105.521096 42.105978 L 106.516654 42.156932 L 107.508293 42.196127 L 108.303956 42.219644 L 109.095699 42.239242 L 110.287233 42.25492 L 111.678663 42.25492 L 112.074535 42.251 L 112.670302 42.243161 L 113.266069 42.231403 L 114.857395 42.184369 L 115.849033 42.141254 L 116.844592 42.086381 L 118.036126 42.01191 L 119.22766 41.92568 L 120.61909 41.804175 L 122.0066 41.666992 L 123.597926 41.494533 L 125.385227 41.27112 L 127.368505 41.000673 L 129.555598 40.675353 L 132.138562 40.263803 L 135.713165 39.656278 L 145.249359 38.013998 L 148.42809 37.50838 L 148.823962 37.449587 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.718216 L -47.026654 63.710377 L -44.643586 63.702538 L -42.260517 63.690779 L -39.877448 63.68294 L -37.690356 63.671182 L -35.507183 63.659423 L -33.32009 63.647665 L -31.136917 63.631986 L -28.949824 63.616308 L -26.766651 63.596711 L -24.779454 63.581033 L -22.796177 63.561435 L -18.821783 63.514401 L -14.847388 63.459528 L -12.860191 63.424252 L -10.876914 63.388976 L -8.889717 63.349781 L -7.102415 63.310586 L -3.527812 63.216517 L -1.736591 63.157724 L 0.0507102 63.098932 L 1.638116 63.036219 L 3.225522 62.965668 L 4.816848 62.887278 L 6.404253 62.797129 L 7.795683 62.710899 L 9.187113 62.608992 L 10.574624 62.495325 L 11.966053 62.358142 L 13.157588 62.224879 L 14.345203 62.068098 L 15.540656 61.88388 L 16.536215 61.699663 L 17.527854 61.484089 L 18.523412 61.221481 L 19.515051 60.904 L 20.310713 60.594358 L 21.102457 60.214164 L 21.898119 59.743822 L 22.693782 59.144135 L 23.485525 58.360231 L 24.281188 57.313719 L 24.876955 56.275046 L 25.472722 54.954167 L 26.268385 52.64165 L 27.260024 48.929864 L 28.451558 44.438093 L 29.247221 42.145173 L 30.042884 40.467618 L 30.838546 39.252567 L 31.630289 38.354997 L 32.425952 37.67692 L 33.221615 37.147784 L 34.213254 36.634327 L 35.204892 36.234536 L 36.200451 35.917055 L 37.192089 35.654447 L 38.383624 35.395759 L 39.575158 35.180185 L 40.766692 34.999887 L 42.158122 34.819589 L 43.545633 34.666728 L 44.940982 34.533464 L 46.528388 34.4002 L 48.31569 34.266937 L 50.102991 34.149351 L 52.090188 34.031765 L 54.277281 33.91418 L 56.856325 33.784835 L 60.035057 33.635894 L 65.396961 33.400722 L 70.362994 33.17731 L 73.541726 33.028368 L 76.324585 32.887265 L 78.90363 32.746162 L 81.486594 32.593301 L 83.869663 32.44044 L 86.252732 32.27582 L 88.439824 32.107281 L 90.622997 31.926983 L 92.80617 31.731007 L 94.993263 31.515433 L 97.180356 31.284181 L 99.363529 31.025493 L 101.550621 30.747207 L 103.733794 30.437565 L 105.920887 30.104405 L 108.10406 29.73989 L 110.287233 29.340099 L 112.474326 28.905032 L 114.857395 28.391575 L 117.240463 27.831083 L 119.623532 27.223558 L 122.206496 26.514124 L 124.78946 25.749818 L 127.568401 24.864006 L 130.547236 23.856689 L 133.925863 22.645557 L 138.096233 21.06991 L 144.057825 18.733876 L 148.823962 16.852506 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.698618 L -47.026654 63.694699 L -44.643586 63.690779 L -42.456493 63.68294 L -40.27332 63.679021 L -38.090147 63.671182 L -36.10295 63.663343 L -34.115753 63.651584 L -32.128556 63.643745 L -30.141359 63.631986 L -28.158081 63.620228 L -26.170884 63.608469 L -24.183687 63.592791 L -22.200409 63.577113 L -18.226015 63.537918 L -16.238818 63.514401 L -14.251621 63.486964 L -12.268344 63.459528 L -10.481042 63.428171 L -8.689821 63.396815 L -6.906439 63.36154 L -5.119138 63.322344 L -3.327917 63.27923 L -1.540615 63.228276 L 0.0507102 63.181242 L 1.638116 63.126368 L 3.225522 63.063656 L 4.816848 62.993105 L 6.204358 62.922553 L 7.595788 62.844163 L 8.987218 62.754014 L 10.374728 62.648187 L 11.570182 62.546279 L 12.761716 62.424774 L 13.949331 62.287591 L 15.144785 62.119051 L 16.136424 61.958351 L 17.131982 61.762375 L 18.123621 61.531123 L 19.119179 61.248918 L 20.110818 60.896161 L 20.90648 60.543404 L 21.698224 60.108337 L 22.493886 59.551765 L 23.289549 58.830573 L 24.081292 57.866371 L 24.680979 56.921767 L 25.272827 55.710635 L 25.872513 54.166344 L 26.664257 51.536345 L 28.84743 43.536603 L 29.643092 41.576843 L 30.438755 40.161896 L 31.234418 39.134981 L 32.030081 38.374594 L 32.821824 37.790586 L 33.617486 37.335921 L 34.609125 36.893015 L 35.604684 36.548098 L 36.596322 36.273731 L 37.587961 36.054238 L 38.583519 35.870021 L 39.575158 35.721079 L 40.766692 35.568217 L 41.958227 35.446712 L 43.149761 35.344805 L 44.337376 35.262495 L 45.536749 35.191943 L 46.728284 35.133151 L 47.919818 35.090036 L 48.911457 35.05868 L 49.907015 35.031243 L 50.898654 35.011645 L 51.694317 34.999887 L 52.48606 34.988128 L 53.081827 34.984209 L 53.681514 34.980289 L 54.277281 34.97637 L 55.464896 34.97637 L 55.864687 34.980289 L 56.460454 34.980289 L 57.056221 34.988128 L 57.847964 34.995967 L 58.643627 35.003806 L 59.635266 35.019485 L 60.630824 35.039082 L 61.822358 35.066519 L 63.013893 35.097875 L 64.401403 35.14099 L 65.796752 35.191943 L 67.384158 35.258575 L 68.975484 35.329127 L 70.56289 35.415356 L 72.350191 35.517264 L 74.137493 35.634849 L 76.12469 35.775952 L 78.107967 35.932733 L 80.29506 36.12087 L 82.482153 36.328604 L 84.865221 36.575534 L 87.444266 36.865579 L 90.227126 37.198738 L 93.797809 37.653403 L 102.742156 38.805742 L 105.125224 39.080108 L 107.112421 39.287843 L 108.899723 39.452463 L 110.487129 39.581807 L 111.874639 39.679795 L 113.066173 39.746427 L 114.061732 39.793461 L 115.05729 39.832656 L 115.849033 39.856173 L 116.644696 39.875771 L 117.240463 39.88361 L 117.83623 39.887529 L 118.236021 39.891449 L 119.027765 39.891449 L 119.427556 39.887529 L 119.823427 39.88361 L 120.419195 39.875771 L 121.014962 39.860093 L 121.810624 39.836576 L 122.602368 39.809139 L 123.597926 39.766024 L 124.589565 39.711151 L 125.781099 39.63668 L 127.168609 39.530853 L 128.560039 39.413267 L 130.151365 39.260406 L 131.938666 39.06835 L 134.125759 38.813581 L 136.704804 38.484341 L 140.679198 37.951286 L 147.03666 37.10075 L 148.823962 36.869498 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.702538 L -47.22655 63.694699 L -44.839562 63.68686 L -40.473216 63.663343 L -38.286123 63.651584 L -36.10295 63.635906 L -33.915857 63.624147 L -31.732684 63.60455 L -29.545591 63.584952 L -27.562314 63.569274 L -25.575117 63.545757 L -23.58792 63.526159 L -21.604642 63.498723 L -19.613526 63.471286 L -17.630248 63.43993 L -15.643051 63.408574 L -11.668657 63.330183 L -9.68538 63.283149 L -7.698182 63.232195 L -5.9148 63.181242 L -4.123579 63.122449 L -2.336278 63.059736 L -0.545057 62.993105 L 1.242245 62.914714 L 2.82965 62.836324 L 4.420976 62.750094 L 6.008382 62.648187 L 7.595788 62.53844 L 8.987218 62.424774 L 10.374728 62.299349 L 11.766158 62.154327 L 12.957692 62.009305 L 14.149227 61.844685 L 15.34468 61.648709 L 16.536215 61.417457 L 17.527854 61.190125 L 18.523412 60.915759 L 19.515051 60.582599 L 20.506689 60.16713 L 21.302352 59.75558 L 22.098015 59.242123 L 22.889758 58.591483 L 23.685421 57.737027 L 24.281188 56.910008 L 24.876955 55.863496 L 25.472722 54.530859 L 26.268385 52.198744 L 27.260024 48.46736 L 28.451558 43.952072 L 29.247221 41.639555 L 30.042884 39.938483 L 30.838546 38.703834 L 31.630289 37.786666 L 32.425952 37.088992 L 33.221615 36.536339 L 34.213254 35.995445 L 35.204892 35.568217 L 36.200451 35.215461 L 37.391985 34.866623 L 38.583519 34.572659 L 39.97103 34.282615 L 41.562355 33.99649 L 43.349657 33.710365 L 45.336854 33.428159 L 47.919818 33.09108 L 52.48606 32.526669 L 56.856325 31.977936 L 60.035057 31.554628 L 62.813997 31.154837 L 65.396961 30.758965 L 67.979926 30.331738 L 70.56289 29.869234 L 73.145854 29.371455 L 75.728818 28.834481 L 78.503839 28.211277 L 81.290618 27.544958 L 84.269454 26.784571 L 87.644161 25.875242 L 91.814532 24.687628 L 97.776123 22.927763 L 114.657499 17.918615 L 135.91306 11.686577 L 139.683639 10.663582 L 142.862371 9.856161 L 145.845126 9.146728 L 148.624066 8.535282 L 148.823962 8.492168 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.733894 L -46.826759 63.726055 L -44.243795 63.722135 L -41.66475 63.714296 L -39.281681 63.706457 L -36.898613 63.694699 L -34.511624 63.68686 L -32.328451 63.675101 L -30.141359 63.663343 L -25.775012 63.639826 L -23.58792 63.624147 L -21.604642 63.608469 L -19.613526 63.588872 L -17.630248 63.569274 L -15.643051 63.549677 L -13.655854 63.526159 L -11.668657 63.498723 L -9.881356 63.475206 L -6.306753 63.412493 L -4.519451 63.377218 L -2.73215 63.334103 L -1.140824 63.294908 L 0.446582 63.251793 L 2.033988 63.200839 L 3.625313 63.142046 L 5.212719 63.075415 L 6.604149 63.008783 L 7.995579 62.934312 L 9.383089 62.848082 L 10.774519 62.746175 L 11.966053 62.644267 L 13.157588 62.526682 L 14.345203 62.385579 L 15.540656 62.217039 L 16.536215 62.05242 L 17.527854 61.852524 L 18.523412 61.609514 L 19.515051 61.31163 L 20.310713 61.013747 L 21.102457 60.649231 L 21.898119 60.194567 L 22.693782 59.614478 L 23.485525 58.846252 L 24.081292 58.105462 L 24.680979 57.164777 L 25.272827 55.961484 L 25.872513 54.425032 L 26.664257 51.806792 L 28.84743 43.830567 L 29.643092 41.886485 L 30.438755 40.483297 L 31.234418 39.468141 L 32.030081 38.715593 L 32.821824 38.147262 L 33.617486 37.704356 L 34.413149 37.355519 L 35.404788 37.010601 L 36.400346 36.744074 L 37.391985 36.53242 L 38.383624 36.36388 L 39.379182 36.226697 L 40.370821 36.11695 L 41.36246 36.030721 L 42.354098 35.96017 L 43.349657 35.905296 L 44.145319 35.870021 L 44.940982 35.842584 L 45.732725 35.822986 L 46.328493 35.811228 L 46.92426 35.803389 L 47.520027 35.799469 L 47.919818 35.79555 L 48.715481 35.79555 L 49.507224 35.803389 L 50.102991 35.807308 L 50.698758 35.819067 L 51.494421 35.834745 L 52.290084 35.854342 L 53.281722 35.881779 L 54.277281 35.920974 L 55.464896 35.968009 L 56.856325 36.03856 L 58.247755 36.11695 L 59.835161 36.222777 L 61.426487 36.340363 L 63.209869 36.485385 L 65.00109 36.650005 L 66.988287 36.85382 L 68.975484 37.073313 L 71.158657 37.339841 L 73.541726 37.657322 L 76.12469 38.029677 L 79.099606 38.48826 L 82.878024 39.103625 L 91.218764 40.475458 L 93.997705 40.890927 L 96.184797 41.19273 L 98.171994 41.43966 L 99.959296 41.635636 L 101.550621 41.792416 L 102.938132 41.910002 L 104.329562 42.01191 L 105.521096 42.082461 L 106.516654 42.133415 L 107.508293 42.17261 L 108.303956 42.196127 L 109.095699 42.215725 L 109.691466 42.227483 L 110.287233 42.231403 L 110.687024 42.235322 L 111.678663 42.235322 L 112.074535 42.231403 L 112.474326 42.227483 L 113.066173 42.215725 L 113.66586 42.203966 L 114.461523 42.180449 L 115.253266 42.149093 L 116.248824 42.102059 L 117.240463 42.047185 L 118.431997 41.968795 L 119.623532 41.878646 L 121.014962 41.753221 L 122.602368 41.592521 L 124.193693 41.412223 L 125.980995 41.184891 L 127.964272 40.906605 L 130.35126 40.546009 L 133.130201 40.091344 L 137.300571 39.374072 L 144.253801 38.174699 L 147.632428 37.629885 L 148.823962 37.445668 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.702538 L -47.22655 63.694699 L -44.839562 63.68686 L -40.473216 63.663343 L -38.286123 63.651584 L -36.10295 63.635906 L -33.915857 63.620228 L -31.732684 63.60455 L -29.545591 63.584952 L -27.562314 63.565355 L -25.575117 63.545757 L -23.58792 63.52224 L -21.604642 63.494803 L -19.613526 63.467367 L -17.630248 63.43601 L -15.643051 63.404654 L -13.655854 63.365459 L -11.668657 63.322344 L -9.68538 63.27923 L -7.698182 63.224356 L -5.9148 63.173403 L -4.123579 63.118529 L -2.336278 63.055817 L -0.545057 62.985266 L 1.242245 62.906875 L 2.82965 62.824565 L 4.420976 62.738336 L 6.008382 62.640348 L 7.595788 62.526682 L 8.987218 62.413016 L 10.374728 62.287591 L 11.766158 62.138649 L 13.157588 61.97011 L 14.345203 61.797651 L 15.540656 61.597755 L 16.732191 61.358664 L 17.727749 61.119574 L 18.719388 60.833449 L 19.714946 60.488531 L 20.506689 60.147532 L 21.302352 59.735983 L 22.098015 59.222526 L 22.889758 58.567966 L 23.685421 57.71351 L 24.281188 56.882572 L 24.876955 55.83606 L 25.472722 54.503423 L 26.268385 52.171308 L 27.260024 48.436004 L 28.451558 43.920716 L 29.247221 41.608199 L 30.042884 39.907127 L 30.838546 38.672478 L 31.630289 37.751391 L 32.425952 37.049796 L 33.221615 36.501063 L 34.213254 35.95625 L 35.204892 35.525103 L 36.200451 35.172346 L 37.391985 34.819589 L 38.583519 34.525625 L 39.97103 34.231661 L 41.562355 33.941616 L 43.349657 33.651572 L 45.336854 33.365447 L 47.919818 33.016609 L 53.281722 32.334613 L 57.252197 31.817236 L 60.234952 31.401767 L 63.013893 30.986298 L 65.596857 30.570828 L 68.179821 30.124003 L 70.762785 29.641902 L 73.34183 29.124525 L 76.12469 28.524839 L 78.90363 27.878118 L 81.886385 27.141248 L 85.261093 26.251516 L 89.231567 25.150131 L 94.597391 23.598001 L 112.474326 18.381119 L 126.772738 14.234266 L 134.125759 12.117724 L 138.296129 10.973224 L 141.670836 10.099171 L 144.653592 9.377979 L 147.432532 8.750856 L 148.823962 8.456892 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.706457 L -47.22655 63.694699 L -44.839562 63.68686 L -40.473216 63.663343 L -38.286123 63.651584 L -36.10295 63.635906 L -33.915857 63.620228 L -31.92866 63.60455 L -29.945383 63.588872 L -25.970989 63.549677 L -23.983791 63.526159 L -20.017236 63.471286 L -18.02612 63.43993 L -16.038923 63.404654 L -14.055645 63.365459 L -12.068448 63.326264 L -10.081251 63.27923 L -8.094054 63.224356 L -6.306753 63.173403 L -4.519451 63.118529 L -2.73215 63.051897 L -0.944848 62.981346 L 0.842453 62.902956 L 2.629755 62.816726 L 4.22108 62.726577 L 5.808486 62.62467 L 7.399812 62.514923 L 8.787322 62.401257 L 10.178752 62.271913 L 11.570182 62.126891 L 12.957692 61.958351 L 14.149227 61.789812 L 15.34468 61.589916 L 16.536215 61.354745 L 17.527854 61.123493 L 18.523412 60.845207 L 19.515051 60.512048 L 20.506689 60.092659 L 21.302352 59.67719 L 22.098015 59.159813 L 22.889758 58.505253 L 23.685421 57.646878 L 24.281188 56.819859 L 24.876955 55.769428 L 25.472722 54.432871 L 26.268385 52.100756 L 27.260024 48.361533 L 28.451558 43.838406 L 29.247221 41.52197 L 30.042884 39.820898 L 30.838546 38.582329 L 31.630289 37.661242 L 32.425952 36.955728 L 33.221615 36.399156 L 34.213254 35.850423 L 35.204892 35.415356 L 36.200451 35.05476 L 37.391985 34.698084 L 38.583519 34.396281 L 39.97103 34.094478 L 41.562355 33.792675 L 43.349657 33.490871 L 45.536749 33.161632 L 48.515585 32.738323 L 56.856325 31.578145 L 59.835161 31.13132 L 62.618021 30.680575 L 65.396961 30.198474 L 67.979926 29.716373 L 70.762785 29.155881 L 73.541726 28.556195 L 76.520561 27.86244 L 79.699293 27.078535 L 83.273896 26.13785 L 87.644161 24.934557 L 95.58903 22.672994 L 103.537818 20.438867 L 112.870197 17.8755 L 122.406392 15.241582 L 136.704804 11.259349 L 140.479302 10.283389 L 143.654114 9.511243 L 146.440893 8.8802 L 148.823962 8.374582 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip11)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.733894 L -46.826759 63.729975 L -44.243795 63.722135 L -41.66475 63.714296 L -36.898613 63.698618 L -34.511624 63.68686 L -32.328451 63.679021 L -30.141359 63.667262 L -27.958186 63.655504 L -25.775012 63.639826 L -23.787815 63.628067 L -21.800618 63.612389 L -17.826224 63.573194 L -15.842947 63.553596 L -13.85575 63.530079 L -11.868553 63.502642 L -8.29395 63.447769 L -6.510568 63.416413 L -4.719347 63.381137 L -2.932045 63.338022 L -1.34072 63.298827 L 0.246686 63.251793 L 1.838012 63.200839 L 3.425418 63.145966 L 5.012824 63.079334 L 6.404253 63.012702 L 7.795683 62.938231 L 9.187113 62.852002 L 10.574624 62.754014 L 11.766158 62.656026 L 12.957692 62.53844 L 14.149227 62.401257 L 15.34468 62.240557 L 16.336319 62.075937 L 17.327958 61.88388 L 18.323516 61.648709 L 19.315155 61.362584 L 20.110818 61.080378 L 20.90648 60.735461 L 21.698224 60.304313 L 22.493886 59.7595 L 23.289549 59.046147 L 24.081292 58.089784 L 24.680979 57.14518 L 25.272827 55.941887 L 25.872513 54.405434 L 26.664257 51.787195 L 28.84743 43.81097 L 29.643092 41.862968 L 30.438755 40.459779 L 31.234418 39.440704 L 32.030081 38.688156 L 32.821824 38.119825 L 33.617486 37.67692 L 34.413149 37.324163 L 35.404788 36.979245 L 36.400346 36.712718 L 37.391985 36.497144 L 38.383624 36.328604 L 39.379182 36.191421 L 40.370821 36.081675 L 41.36246 35.991526 L 42.354098 35.917055 L 43.349657 35.862182 L 44.337376 35.815147 L 45.136958 35.787711 L 45.932621 35.768113 L 46.528388 35.756354 L 47.124155 35.748515 L 47.719922 35.744596 L 48.115794 35.740676 L 49.311248 35.740676 L 49.707119 35.744596 L 50.898654 35.760274 L 51.694317 35.772033 L 52.48606 35.79163 L 53.481618 35.819067 L 54.473257 35.854342 L 55.664791 35.901377 L 56.856325 35.96017 L 58.247755 36.03464 L 59.835161 36.132628 L 61.426487 36.242375 L 63.209869 36.383478 L 65.00109 36.540259 L 66.988287 36.732315 L 68.975484 36.947889 L 71.158657 37.202658 L 73.541726 37.50838 L 76.12469 37.868976 L 78.90363 38.284445 L 82.282257 38.82142 L 93.401938 40.62048 L 95.788926 40.957559 L 97.776123 41.216247 L 99.563424 41.423982 L 101.15083 41.592521 L 102.742156 41.737543 L 104.129666 41.84337 L 105.32512 41.92568 L 106.516654 41.992312 L 107.508293 42.035427 L 108.499932 42.070702 L 109.295594 42.0903 L 109.891362 42.102059 L 110.487129 42.109898 L 110.883 42.113817 L 112.074535 42.113817 L 112.474326 42.109898 L 112.870197 42.105978 L 113.465965 42.098139 L 114.061732 42.082461 L 114.857395 42.058944 L 115.653057 42.031507 L 116.644696 41.984473 L 117.636335 41.9296 L 118.827869 41.851209 L 120.023323 41.757141 L 121.410833 41.635636 L 123.002159 41.474935 L 124.589565 41.290718 L 126.376866 41.063386 L 128.364063 40.789019 L 130.747132 40.428423 L 133.725968 39.942403 L 138.296129 39.158499 L 144.253801 38.143343 L 147.632428 37.602449 L 148.823962 37.422151 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.733894 L -46.826759 63.726055 L -44.243795 63.718216 L -41.66475 63.710377 L -39.281681 63.702538 L -36.898613 63.690779 L -34.511624 63.68294 L -32.328451 63.671182 L -30.141359 63.659423 L -27.958186 63.647665 L -25.775012 63.631986 L -23.58792 63.616308 L -21.604642 63.60063 L -19.613526 63.581033 L -17.630248 63.561435 L -13.655854 63.514401 L -11.668657 63.486964 L -9.881356 63.459528 L -6.306753 63.396815 L -2.73215 63.318425 L -1.140824 63.27531 L 0.446582 63.228276 L 2.033988 63.177322 L 3.625313 63.11461 L 5.212719 63.047978 L 6.604149 62.981346 L 7.995579 62.902956 L 9.383089 62.812807 L 10.774519 62.710899 L 11.966053 62.608992 L 13.157588 62.487486 L 14.345203 62.346384 L 15.540656 62.177844 L 16.536215 62.009305 L 17.527854 61.80549 L 18.523412 61.56248 L 19.515051 61.260676 L 20.310713 60.962793 L 21.102457 60.594358 L 21.898119 60.139693 L 22.693782 59.555685 L 23.485525 58.787459 L 24.081292 58.04275 L 24.680979 57.102065 L 25.272827 55.894852 L 25.872513 54.3584 L 26.664257 51.736241 L 28.84743 43.756096 L 29.643092 41.804175 L 30.438755 40.400987 L 31.234418 39.381911 L 32.030081 38.629363 L 32.821824 38.057113 L 33.617486 37.610288 L 34.413149 37.257531 L 35.404788 36.908694 L 36.400346 36.638247 L 37.391985 36.422673 L 38.383624 36.250214 L 39.379182 36.109111 L 40.370821 35.991526 L 41.36246 35.901377 L 42.354098 35.822986 L 43.349657 35.764193 L 44.337376 35.717159 L 45.136958 35.685803 L 45.932621 35.662286 L 46.728284 35.642688 L 47.324051 35.63093 L 47.919818 35.623091 L 48.515585 35.619171 L 50.102991 35.619171 L 50.502782 35.623091 L 51.098549 35.62701 L 51.694317 35.634849 L 52.48606 35.650527 L 53.281722 35.666205 L 54.277281 35.693642 L 55.26892 35.724998 L 56.460454 35.772033 L 57.651988 35.822986 L 59.043418 35.893538 L 60.430928 35.975848 L 62.022254 36.077755 L 63.60966 36.195341 L 65.396961 36.340363 L 67.188182 36.501063 L 69.17146 36.697039 L 71.158657 36.912613 L 73.34183 37.171301 L 75.728818 37.477024 L 78.307863 37.83762 L 81.290618 38.284445 L 85.065117 38.880213 L 93.401938 40.20893 L 95.988821 40.585204 L 98.171994 40.875249 L 100.159191 41.114339 L 101.946493 41.306396 L 103.537818 41.451418 L 104.925329 41.565084 L 106.116863 41.643475 L 107.308397 41.714026 L 108.303956 41.76106 L 109.295594 41.796336 L 110.091257 41.819853 L 110.687024 41.831612 L 111.278872 41.839451 L 111.678663 41.84337 L 112.074535 41.84729 L 112.670302 41.84729 L 113.066173 41.84337 L 113.465965 41.84337 L 113.865756 41.835531 L 114.461523 41.827692 L 115.05729 41.812014 L 115.849033 41.788497 L 116.644696 41.757141 L 117.636335 41.710107 L 118.631893 41.655233 L 119.823427 41.576843 L 121.014962 41.482774 L 122.406392 41.35735 L 123.993798 41.19273 L 125.781099 40.988915 L 127.768296 40.730226 L 129.951469 40.420584 L 132.534433 40.024713 L 135.91306 39.47206 L 146.240998 37.75923 L 148.823962 37.367277 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip12)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.737814 L -47.422526 63.729975 L -45.239353 63.722135 L -43.05226 63.710377 L -40.869087 63.702538 L -38.685914 63.690779 L -36.498821 63.679021 L -34.315648 63.663343 L -32.128556 63.647665 L -29.945383 63.631986 L -27.75829 63.612389 L -25.575117 63.588872 L -23.388024 63.569274 L -21.204851 63.541838 L -19.217654 63.51832 L -17.230457 63.486964 L -15.24718 63.459528 L -13.259982 63.424252 L -9.285588 63.345861 L -7.302311 63.298827 L -5.515009 63.251793 L -3.723788 63.200839 L -1.936487 63.142046 L -0.149185 63.079334 L 1.438221 63.016622 L 3.029546 62.94607 L 4.616952 62.86376 L 6.204358 62.773611 L 7.595788 62.683462 L 8.987218 62.581555 L 10.374728 62.463969 L 11.766158 62.330706 L 12.957692 62.197442 L 14.149227 62.040661 L 15.34468 61.856444 L 16.536215 61.63695 L 17.527854 61.417457 L 18.523412 61.154849 L 19.515051 60.833449 L 20.310713 60.519887 L 21.102457 60.135774 L 21.898119 59.661512 L 22.693782 59.061825 L 23.485525 58.274002 L 24.281188 57.21965 L 24.876955 56.184897 L 25.472722 54.860099 L 26.268385 52.539743 L 27.260024 48.824037 L 28.451558 44.328346 L 29.247221 42.031507 L 30.042884 40.346113 L 30.838546 39.127142 L 31.630289 38.225653 L 32.425952 37.543656 L 33.221615 37.010601 L 34.213254 36.489305 L 35.204892 36.081675 L 36.200451 35.756354 L 37.192089 35.485908 L 38.383624 35.215461 L 39.575158 34.992048 L 40.966588 34.772555 L 42.354098 34.584418 L 43.945424 34.396281 L 45.536749 34.231661 L 47.324051 34.067041 L 49.311248 33.902421 L 51.694317 33.722123 L 54.673152 33.514389 L 66.39252 32.706967 L 69.17146 32.491394 L 71.754424 32.279739 L 74.137493 32.068085 L 76.520561 31.836834 L 78.90363 31.585984 L 81.090723 31.339054 L 83.273896 31.068608 L 85.460988 30.770724 L 87.644161 30.449323 L 89.831254 30.100486 L 92.014427 29.720292 L 94.1976 29.304823 L 96.384693 28.854078 L 98.567866 28.364138 L 100.954854 27.78013 L 103.337923 27.149087 L 105.720991 26.46709 L 108.303956 25.663588 L 110.883 24.805213 L 113.66586 23.813575 L 116.844592 22.606362 L 120.61909 21.089508 L 125.781099 18.925932 L 133.925863 15.515949 L 137.700362 14.022611 L 140.875174 12.838916 L 143.85401 11.808082 L 146.636869 10.914431 L 148.823962 10.263791 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip13)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.52224 L -46.826759 63.526159 L -42.656389 63.530079 L -40.673111 63.530079 L -38.88189 63.533998 L -35.906974 63.533998 L -34.511624 63.530079 L -33.124114 63.530079 L -28.949824 63.51832 L -27.562314 63.514401 L -24.779454 63.498723 L -23.192048 63.486964 L -21.604642 63.479125 L -20.017236 63.463447 L -18.421991 63.447769 L -16.834585 63.432091 L -15.24718 63.412493 L -13.455959 63.388976 L -11.668657 63.36154 L -8.094054 63.298827 L -6.306753 63.259632 L -4.519451 63.216517 L -2.73215 63.165564 L -1.140824 63.118529 L 0.446582 63.063656 L 2.033988 63.000944 L 3.625313 62.934312 L 5.212719 62.855921 L 6.604149 62.777531 L 7.995579 62.687382 L 9.383089 62.589394 L 10.774519 62.471808 L 11.966053 62.358142 L 13.157588 62.224879 L 14.345203 62.068098 L 15.540656 61.88388 L 16.536215 61.703582 L 17.527854 61.488009 L 18.523412 61.22932 L 19.515051 60.911839 L 20.310713 60.602197 L 21.102457 60.225923 L 21.898119 59.75558 L 22.693782 59.155894 L 23.485525 58.375909 L 24.281188 57.325478 L 24.876955 56.290724 L 25.472722 54.969845 L 26.268385 52.657328 L 27.260024 48.945542 L 28.451558 44.46161 L 29.247221 42.16869 L 30.042884 40.491136 L 30.838546 39.276084 L 31.630289 38.378514 L 32.425952 37.704356 L 33.221615 37.175221 L 34.213254 36.665683 L 35.204892 36.265892 L 36.200451 35.948411 L 37.192089 35.689723 L 38.383624 35.431034 L 39.575158 35.21938 L 40.766692 35.043002 L 42.158122 34.866623 L 43.545633 34.717681 L 44.940982 34.588337 L 46.528388 34.458993 L 48.115794 34.345327 L 49.907015 34.231661 L 51.694317 34.129753 L 53.681514 34.027846 L 55.864687 33.929858 L 58.447651 33.816192 L 61.426487 33.698606 L 65.596857 33.541825 L 73.34183 33.2557 L 76.720457 33.118517 L 79.503317 33.000931 L 82.082361 32.883346 L 84.665326 32.754001 L 87.048394 32.628577 L 89.431463 32.487474 L 91.814532 32.338532 L 93.997705 32.185671 L 96.184797 32.021051 L 98.37189 31.844673 L 100.555063 31.648697 L 102.742156 31.437042 L 104.925329 31.205791 L 107.112421 30.951022 L 109.491571 30.653138 L 111.874639 30.327818 L 114.261627 29.975061 L 116.844592 29.559592 L 119.427556 29.112767 L 122.206496 28.59539 L 125.385227 27.964347 L 129.159726 27.172604 L 142.862371 24.248641 L 145.845126 23.680311 L 148.42809 23.221727 L 148.823962 23.155095 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip14)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.753492 L -46.430887 63.749572 L -43.452051 63.741733 L -40.673111 63.737814 L -38.090147 63.729975 L -35.507183 63.726055 L -33.124114 63.718216 L -30.937021 63.710377 L -28.753848 63.702538 L -26.766651 63.694699 L -24.779454 63.68294 L -22.796177 63.675101 L -21.008875 63.663343 L -19.217654 63.651584 L -17.430353 63.635906 L -15.643051 63.624147 L -13.85575 63.60455 L -12.268344 63.588872 L -10.677018 63.569274 L -9.089612 63.545757 L -7.498287 63.52224 L -5.9148 63.494803 L -4.319556 63.463447 L -2.73215 63.428171 L -1.140824 63.385057 L 0.446582 63.341942 L 2.033988 63.287069 L 3.425418 63.236115 L 4.816848 63.177322 L 6.204358 63.11069 L 7.595788 63.0323 L 8.987218 62.94607 L 10.374728 62.840243 L 11.570182 62.738336 L 12.761716 62.62075 L 13.949331 62.483567 L 15.144785 62.322867 L 16.136424 62.158247 L 17.131982 61.97011 L 18.123621 61.738858 L 19.119179 61.456652 L 20.110818 61.107815 L 20.90648 60.755058 L 21.698224 60.323911 L 22.493886 59.771258 L 23.289549 59.050067 L 24.081292 58.089784 L 24.680979 57.14518 L 25.272827 55.937967 L 25.872513 54.397595 L 26.664257 51.771517 L 28.84743 43.783533 L 29.643092 41.827692 L 30.438755 40.416665 L 31.234418 39.39367 L 32.030081 38.637202 L 32.821824 38.061033 L 33.617486 37.610288 L 34.413149 37.253611 L 35.404788 36.900855 L 36.400346 36.626488 L 37.391985 36.403075 L 38.383624 36.222777 L 39.379182 36.077755 L 40.370821 35.95625 L 41.36246 35.858262 L 42.354098 35.775952 L 43.349657 35.70932 L 44.337376 35.654447 L 45.336854 35.611332 L 46.328493 35.579976 L 47.124155 35.556459 L 47.919818 35.540781 L 49.111352 35.525103 L 49.707119 35.525103 L 50.102991 35.521183 L 50.898654 35.521183 L 51.294525 35.525103 L 51.694317 35.525103 L 52.885851 35.540781 L 53.681514 35.552539 L 54.473257 35.568217 L 55.464896 35.595654 L 56.460454 35.623091 L 57.651988 35.666205 L 58.843522 35.717159 L 60.234952 35.783791 L 61.626382 35.858262 L 63.209869 35.95233 L 64.801194 36.062077 L 66.588496 36.19926 L 68.379717 36.352122 L 70.362994 36.536339 L 72.350191 36.740154 L 74.533364 36.987084 L 76.916433 37.281048 L 79.503317 37.622046 L 82.282257 38.021837 L 85.656964 38.531375 L 96.184797 40.150137 L 98.567866 40.475458 L 100.555063 40.722387 L 102.342365 40.922283 L 103.93369 41.075144 L 105.32512 41.196649 L 106.71263 41.298557 L 107.904165 41.373028 L 108.899723 41.423982 L 109.891362 41.463177 L 110.687024 41.490613 L 111.478768 41.510211 L 112.074535 41.52197 L 112.670302 41.529809 L 113.066173 41.529809 L 113.465965 41.533728 L 113.66586 41.533728 L 114.061732 41.529809 L 114.461523 41.525889 L 114.857395 41.52197 L 115.453162 41.514131 L 116.048929 41.498452 L 116.844592 41.474935 L 117.636335 41.447499 L 118.631893 41.400464 L 119.623532 41.341672 L 120.815066 41.263281 L 122.0066 41.169213 L 123.39803 41.047708 L 124.985436 40.883088 L 126.772738 40.679273 L 128.759935 40.424504 L 130.947027 40.118781 L 133.529992 39.730749 L 137.104595 39.154579 L 145.645231 37.774908 L 148.823962 37.300646 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip15)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.628067 L -45.039457 63.612389 L -42.260517 63.60455 L -39.877448 63.592791 L -37.690356 63.584952 L -35.703159 63.577113 L -33.719881 63.565355 L -31.92866 63.553596 L -30.141359 63.541838 L -24.779454 63.494803 L -22.992153 63.475206 L -17.630248 63.404654 L -14.055645 63.341942 L -12.268344 63.306666 L -10.481042 63.267471 L -8.689821 63.224356 L -6.906439 63.177322 L -5.119138 63.122449 L -3.327917 63.063656 L -1.540615 62.997024 L 0.246686 62.922553 L 2.033988 62.840243 L 3.625313 62.757933 L 5.212719 62.663865 L 6.804045 62.558038 L 8.391451 62.436533 L 9.78288 62.315028 L 11.170391 62.177844 L 12.561821 62.017144 L 13.753355 61.856444 L 14.948809 61.668307 L 16.136424 61.448813 L 17.131982 61.23324 L 18.123621 60.978471 L 19.119179 60.668829 L 20.110818 60.288635 L 20.90648 59.912361 L 21.698224 59.453777 L 22.493886 58.873688 L 23.289549 58.128979 L 24.081292 57.137341 L 24.680979 56.169219 L 25.272827 54.938489 L 25.872513 53.374601 L 26.664257 50.713246 L 28.84743 42.627274 L 29.643092 40.636158 L 30.438755 39.185935 L 31.234418 38.119825 L 32.030081 37.320243 L 32.821824 36.697039 L 33.817382 36.093433 L 34.809021 35.619171 L 35.80066 35.235058 L 36.996113 34.854865 L 38.187648 34.541303 L 39.575158 34.227741 L 41.166484 33.922019 L 42.953785 33.616296 L 44.940982 33.314493 L 47.520027 32.953897 L 52.885851 32.240544 L 56.856325 31.695731 L 59.835161 31.260664 L 62.618021 30.829517 L 65.200985 30.39445 L 67.783949 29.931947 L 70.362994 29.430248 L 73.145854 28.854078 L 75.924794 28.230874 L 78.90363 27.517522 L 82.082361 26.7101 L 85.85686 25.691025 L 90.622997 24.350549 L 110.687024 18.631968 L 123.39803 15.057365 L 135.317293 11.690497 L 139.287768 10.632226 L 142.662475 9.785609 L 145.645231 9.087935 L 148.42809 8.488248 L 148.823962 8.405938 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.714296 L -47.22655 63.706457 L -44.839562 63.698618 L -42.456493 63.68686 L -40.27332 63.679021 L -35.906974 63.655504 L -31.532789 63.624147 L -29.349615 63.608469 L -27.162523 63.588872 L -25.175326 63.569274 L -23.192048 63.549677 L -19.217654 63.502642 L -17.230457 63.475206 L -15.24718 63.44385 L -13.259982 63.412493 L -11.272785 63.373298 L -9.285588 63.330183 L -7.498287 63.290988 L -5.714905 63.243954 L -3.923684 63.193 L -2.136382 63.134207 L -0.349081 63.071495 L 1.438221 63.000944 L 3.029546 62.930392 L 4.616952 62.848082 L 6.204358 62.757933 L 7.595788 62.667784 L 8.987218 62.561957 L 10.374728 62.444372 L 11.766158 62.311108 L 12.957692 62.173925 L 14.149227 62.017144 L 15.34468 61.832926 L 16.536215 61.613433 L 17.527854 61.39394 L 18.523412 61.127413 L 19.515051 60.806012 L 20.310713 60.49245 L 21.102457 60.108337 L 21.898119 59.630156 L 22.693782 59.02655 L 23.485525 58.242645 L 24.281188 57.188294 L 24.876955 56.149621 L 25.472722 54.824823 L 26.268385 52.504467 L 27.260024 48.784842 L 28.451558 44.289151 L 29.247221 41.988393 L 30.042884 40.302999 L 30.838546 39.080108 L 31.630289 38.178618 L 32.425952 37.492702 L 33.221615 36.959647 L 34.213254 36.438351 L 35.204892 36.026801 L 36.200451 35.697562 L 37.192089 35.427115 L 38.383624 35.152748 L 39.575158 34.925416 L 40.966588 34.698084 L 42.354098 34.506027 L 43.945424 34.313971 L 45.732725 34.125834 L 47.719922 33.937697 L 49.907015 33.74956 L 52.685955 33.530067 L 57.056221 33.204746 L 62.418125 32.801036 L 65.596857 32.550186 L 68.379717 32.311096 L 70.958761 32.072005 L 73.34183 31.836834 L 75.728818 31.578145 L 78.107967 31.299859 L 80.29506 31.021573 L 82.482153 30.715851 L 84.665326 30.386611 L 86.852418 30.029935 L 89.035591 29.641902 L 91.218764 29.218594 L 93.601833 28.716895 L 95.988821 28.172082 L 98.37189 27.580234 L 100.754959 26.937433 L 103.337923 26.188804 L 106.116863 25.31867 L 109.095699 24.319193 L 112.27443 23.182532 L 115.849033 21.830297 L 120.419195 20.023398 L 133.725968 14.708528 L 137.300571 13.38373 L 140.479302 12.274505 L 143.458138 11.310303 L 146.240998 10.471526 L 148.823962 9.754253 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.447769 L -46.230992 63.400735 L -40.473216 63.322344 L -36.298926 63.267471 L -33.519986 63.232195 L -31.136917 63.204759 L -27.162523 63.165564 L -25.175326 63.149885 L -23.192048 63.134207 L -20.80898 63.118529 L -15.047284 63.083254 L -13.259982 63.067576 L -11.668657 63.055817 L -10.281147 63.040139 L -7.498287 63.008783 L -6.110777 62.985266 L -4.719347 62.961748 L -3.327917 62.934312 L -1.936487 62.902956 L -0.545057 62.86768 L 0.842453 62.828485 L 2.233883 62.78145 L 3.625313 62.726577 L 5.012824 62.667784 L 6.404253 62.597233 L 7.795683 62.514923 L 9.187113 62.420855 L 10.574624 62.315028 L 11.766158 62.205281 L 12.957692 62.075937 L 14.149227 61.930914 L 15.34468 61.754536 L 16.336319 61.578158 L 17.327958 61.374343 L 18.323516 61.123493 L 19.315155 60.82169 L 20.310713 60.441497 L 21.102457 60.065223 L 21.898119 59.59488 L 22.693782 58.995193 L 23.485525 58.215209 L 24.281188 57.164777 L 24.876955 56.130024 L 25.472722 54.809145 L 26.268385 52.492708 L 27.260024 48.780922 L 28.451558 44.289151 L 29.247221 41.996232 L 30.042884 40.314757 L 30.838546 39.099706 L 31.630289 38.202135 L 32.425952 37.520139 L 33.221615 36.991003 L 34.213254 36.473627 L 35.204892 36.073836 L 36.200451 35.748515 L 37.192089 35.481988 L 38.383624 35.21938 L 39.575158 34.999887 L 40.766692 34.81175 L 42.158122 34.623613 L 43.545633 34.462913 L 45.136958 34.302212 L 46.92426 34.141512 L 48.911457 33.980812 L 51.098549 33.820111 L 53.681514 33.647652 L 57.252197 33.42424 L 65.200985 32.93038 L 68.379717 32.714806 L 71.158657 32.514911 L 73.741621 32.315015 L 76.12469 32.11512 L 78.503839 31.895626 L 80.890827 31.660455 L 83.07792 31.421364 L 85.261093 31.162676 L 87.444266 30.880471 L 89.631359 30.574748 L 91.814532 30.237669 L 93.997705 29.873154 L 96.184797 29.473363 L 98.37189 29.034376 L 100.555063 28.560114 L 102.742156 28.042737 L 105.125224 27.431292 L 107.508293 26.761054 L 109.891362 26.039862 L 112.474326 25.197165 L 115.253266 24.213366 L 118.236021 23.088463 L 121.610729 21.728389 L 125.781099 19.960686 L 137.700362 14.845711 L 141.075069 13.513074 L 144.057825 12.411688 L 146.836765 11.459245 L 148.823962 10.828202 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609619 63.710377 L -47.22655 63.702538 L -44.839562 63.694699 L -42.656389 63.68294 L -40.473216 63.675101 L -38.286123 63.663343 L -36.10295 63.647665 L -33.915857 63.635906 L -31.92866 63.620228 L -29.945383 63.60455 L -23.983791 63.545757 L -22.000514 63.52224 L -20.017236 63.494803 L -18.02612 63.463447 L -16.038923 63.432091 L -14.055645 63.396815 L -12.068448 63.353701 L -10.281147 63.314505 L -6.706544 63.220437 L -4.919242 63.165564 L -3.128021 63.102851 L -1.34072 63.036219 L 0.446582 62.957829 L 2.233883 62.871599 L 3.825209 62.78929 L 5.412615 62.691302 L 7.000021 62.581555 L 8.591346 62.46005 L 9.978856 62.334625 L 11.370286 62.193522 L 12.761716 62.028902 L 13.949331 61.864283 L 15.144785 61.672226 L 16.336319 61.444894 L 17.327958 61.221481 L 18.323516 60.954954 L 19.315155 60.633553 L 20.310713 60.237681 L 21.102457 59.845729 L 21.898119 59.355789 L 22.693782 58.744344 L 23.485525 57.944762 L 24.281188 56.878652 L 24.876955 55.83214 L 25.472722 54.495583 L 26.268385 52.163469 L 27.260024 48.428165 L 28.451558 43.908958 L 29.247221 41.59644 L 30.042884 39.895368 L 30.838546 38.6568 L 31.630289 37.739632 L 32.425952 37.034118 L 33.221615 36.485385 L 34.213254 35.936652 L 35.204892 35.505505 L 36.200451 35.152748 L 37.391985 34.796072 L 38.583519 34.502108 L 39.97103 34.204224 L 41.562355 33.91026 L 43.349657 33.620216 L 45.536749 33.298815 L 48.31569 32.922541 L 58.447651 31.582065 L 61.426487 31.146998 L 64.205427 30.708012 L 66.788391 30.272945 L 69.371355 29.798683 L 71.95432 29.293065 L 74.533364 28.748251 L 77.312305 28.117208 L 80.29506 27.396017 L 83.473791 26.576837 L 87.24829 25.549922 L 92.014427 24.193768 L 116.248824 17.209182 L 127.368505 14.006933 L 134.52163 11.968783 L 138.692001 10.836041 L 142.070628 9.973746 L 145.049463 9.260394 L 147.828404 8.645029 L 148.823962 8.433375 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g clip-path="url(#clip16)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609619 63.722135 L -47.026654 63.714296 L -44.643586 63.706457 L -42.260517 63.694699 L -39.877448 63.68686 L -37.690356 63.675101 L -35.507183 63.663343 L -33.32009 63.651584 L -31.136917 63.639826 L -28.949824 63.624147 L -26.766651 63.60455 L -24.779454 63.588872 L -22.796177 63.569274 L -20.80898 63.549677 L -18.821783 63.526159 L -14.847388 63.471286 L -12.860191 63.43993 L -10.876914 63.404654 L -8.889717 63.365459 L -7.102415 63.330183 L -5.315114 63.287069 L -3.527812 63.236115 L -1.736591 63.185161 L 0.0507102 63.122449 L 1.638116 63.063656 L 3.225522 62.997024 L 4.816848 62.922553 L 6.404253 62.836324 L 7.795683 62.750094 L 9.187113 62.652106 L 10.574624 62.53844 L 11.966053 62.405176 L 13.157588 62.271913 L 14.345203 62.119051 L 15.540656 61.938754 L 16.536215 61.758456 L 17.527854 61.542882 L 18.523412 61.288113 L 19.515051 60.970632 L 20.310713 60.66099 L 21.102457 60.284716 L 21.898119 59.818293 L 22.693782 59.218606 L 23.485525 58.438621 L 24.081292 57.686073 L 24.680979 56.73363 L 25.272827 55.518578 L 25.872513 53.970368 L 26.664257 51.33253 L 28.84743 43.309271 L 29.643092 41.341672 L 30.438755 39.918886 L 31.234418 38.884132 L 32.030081 38.108067 L 32.821824 37.516219 L 33.617486 37.049796 L 34.609125 36.595132 L 35.604684 36.238455 L 36.596322 35.948411 L 37.587961 35.71324 L 38.779495 35.478068 L 39.97103 35.286012 L 41.166484 35.121392 L 42.354098 34.984209 L 43.745528 34.847026 L 45.136958 34.72944 L 46.528388 34.627532 L 48.115794 34.525625 L 49.707119 34.439395 L 51.294525 34.361005 L 52.885851 34.294373 L 54.673152 34.223822 L 56.460454 34.165029 L 58.247755 34.110156 L 60.035057 34.063121 L 61.822358 34.020007 L 63.805636 33.976892 L 65.796752 33.941616 L 67.783949 33.906341 L 69.767227 33.874984 L 73.741621 33.820111 L 75.728818 33.800514 L 77.908072 33.776996 L 80.099084 33.757399 L 82.282257 33.737801 L 84.46543 33.722123 L 86.652523 33.706445 L 88.835696 33.694686 L 91.022788 33.682928 L 93.401938 33.671169 L 95.788926 33.659411 L 98.171994 33.647652 L 100.555063 33.639813 L 105.720991 33.624135 L 108.499932 33.620216 L 111.278872 33.612377 L 114.261627 33.608457 L 117.440359 33.600618 L 120.815066 33.596698 L 124.389669 33.592779 L 128.164168 33.588859 L 132.338457 33.58494 L 136.904699 33.58102 L 142.070628 33.58102 L 147.828404 33.577101 L 148.823962 33.577101 " transform="matrix(0.996614,0,0,-0.996614,92.96118,144.436071)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="109.910597" y="170.886211"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-2" x="115.568067" y="170.886211"/>
<use xlink:href="#glyph7-3" x="119.457204" y="170.886211"/>
<use xlink:href="#glyph7-4" x="123.870586" y="170.886211"/>
<use xlink:href="#glyph7-5" x="129.111043" y="170.886211"/>
<use xlink:href="#glyph7-3" x="134.626529" y="170.886211"/>
<use xlink:href="#glyph7-6" x="139.039911" y="170.886211"/>
<use xlink:href="#glyph7-7" x="144.555398" y="170.886211"/>
<use xlink:href="#glyph7-8" x="148.96878" y="170.886211"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-9" x="157.51555" y="170.886211"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="160.273498" y="170.886211"/>
<use xlink:href="#glyph0-9" x="167.720149" y="170.886211"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-10" x="172.133207" y="170.886211"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-12" x="11.252771" y="137.297324"/>
<use xlink:href="#glyph3-13" x="11.252771" y="130.540729"/>
<use xlink:href="#glyph3-2" x="11.252771" y="125.025242"/>
<use xlink:href="#glyph3-14" x="11.252771" y="120.060808"/>
<use xlink:href="#glyph3-9" x="11.252771" y="116.143869"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="11.252771" y="108.424174"/>
<use xlink:href="#glyph3-8" x="11.252771" y="105.665935"/>
<use xlink:href="#glyph3-9" x="11.252771" y="100.150448"/>
<use xlink:href="#glyph3-3" x="11.252771" y="95.737066"/>
<use xlink:href="#glyph3-11" x="11.252771" y="90.772632"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 146 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,184 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="184.41pt" height="180.72pt" viewBox="0 0 184.41 180.72" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.5 -5.28125 C 7.5 -6.046875 6.84375 -6.78125 5.53125 -6.78125 L 2.3125 -6.78125 C 2.125 -6.78125 2.015625 -6.78125 2.015625 -6.59375 C 2.015625 -6.484375 2.109375 -6.484375 2.3125 -6.484375 C 2.4375 -6.484375 2.609375 -6.46875 2.734375 -6.453125 C 2.890625 -6.4375 2.953125 -6.40625 2.953125 -6.296875 C 2.953125 -6.265625 2.9375 -6.234375 2.90625 -6.109375 L 1.578125 -0.78125 C 1.484375 -0.390625 1.453125 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.515625 0 0.546875 0 L 1.8125 -0.03125 L 2.4375 -0.015625 C 2.65625 -0.015625 2.875 0 3.09375 0 C 3.15625 0 3.296875 0 3.296875 -0.203125 C 3.296875 -0.3125 3.203125 -0.3125 3.015625 -0.3125 C 2.640625 -0.3125 2.359375 -0.3125 2.359375 -0.484375 C 2.359375 -0.546875 2.390625 -0.59375 2.390625 -0.65625 L 3.015625 -3.140625 L 4.703125 -3.140625 C 6.109375 -3.140625 7.5 -4.171875 7.5 -5.28125 Z M 6.5625 -5.53125 C 6.5625 -5.140625 6.375 -4.28125 5.984375 -3.921875 C 5.484375 -3.484375 4.890625 -3.40625 4.453125 -3.40625 L 3.046875 -3.40625 L 3.734375 -6.109375 C 3.8125 -6.453125 3.828125 -6.484375 4.265625 -6.484375 L 5.21875 -6.484375 C 6.046875 -6.484375 6.5625 -6.21875 6.5625 -5.53125 Z M 6.5625 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 6.859375 -3.703125 C 6.859375 -4.25 6.59375 -4.390625 6.421875 -4.390625 C 6.1875 -4.390625 5.9375 -4.140625 5.9375 -3.921875 C 5.9375 -3.78125 6 -3.734375 6.078125 -3.640625 C 6.1875 -3.53125 6.4375 -3.28125 6.4375 -2.796875 C 6.4375 -2.46875 6.15625 -1.484375 5.890625 -0.984375 C 5.640625 -0.453125 5.28125 -0.109375 4.796875 -0.109375 C 4.328125 -0.109375 4.0625 -0.40625 4.0625 -0.96875 C 4.0625 -1.25 4.140625 -1.5625 4.171875 -1.703125 L 4.59375 -3.375 C 4.640625 -3.59375 4.734375 -3.953125 4.734375 -4.015625 C 4.734375 -4.1875 4.59375 -4.28125 4.453125 -4.28125 C 4.328125 -4.28125 4.15625 -4.203125 4.078125 -4 C 4.046875 -3.9375 3.59375 -2.03125 3.515625 -1.78125 C 3.453125 -1.484375 3.421875 -1.296875 3.421875 -1.125 C 3.421875 -1.015625 3.421875 -1 3.4375 -0.9375 C 3.203125 -0.421875 2.90625 -0.109375 2.53125 -0.109375 C 1.734375 -0.109375 1.734375 -0.84375 1.734375 -1.015625 C 1.734375 -1.328125 1.78125 -1.71875 2.25 -2.9375 C 2.359375 -3.234375 2.421875 -3.375 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.390625 1.59375 -4.390625 C 0.65625 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.859375 1.21875 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.15625 C 1.203125 -1.984375 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.75 0.109375 2.5 0.109375 C 2.65625 0.109375 3.125 0.109375 3.53125 -0.59375 C 3.78125 0.046875 4.46875 0.109375 4.765625 0.109375 C 5.515625 0.109375 5.953125 -0.515625 6.21875 -1.109375 C 6.546875 -1.890625 6.859375 -3.21875 6.859375 -3.703125 Z M 6.859375 -3.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 7.140625 -0.203125 C 7.140625 -0.3125 7.046875 -0.3125 6.859375 -0.3125 C 6.484375 -0.3125 6.21875 -0.3125 6.21875 -0.484375 C 6.21875 -0.546875 6.234375 -0.59375 6.234375 -0.65625 L 7.578125 -6.015625 C 7.671875 -6.375 7.6875 -6.484375 8.421875 -6.484375 C 8.671875 -6.484375 8.75 -6.484375 8.75 -6.671875 C 8.75 -6.78125 8.640625 -6.78125 8.609375 -6.78125 L 7.34375 -6.75 L 6.0625 -6.78125 C 5.984375 -6.78125 5.875 -6.78125 5.875 -6.59375 C 5.875 -6.484375 5.96875 -6.484375 6.15625 -6.484375 C 6.15625 -6.484375 6.359375 -6.484375 6.53125 -6.453125 C 6.703125 -6.4375 6.796875 -6.421875 6.796875 -6.296875 C 6.796875 -6.265625 6.78125 -6.234375 6.75 -6.109375 L 6.15625 -3.6875 L 3.125 -3.6875 L 3.71875 -6.015625 C 3.8125 -6.375 3.828125 -6.484375 4.546875 -6.484375 C 4.8125 -6.484375 4.890625 -6.484375 4.890625 -6.671875 C 4.890625 -6.78125 4.78125 -6.78125 4.75 -6.78125 L 3.484375 -6.75 L 2.203125 -6.78125 C 2.109375 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.28125 -6.484375 2.5 -6.484375 2.65625 -6.453125 C 2.84375 -6.4375 2.9375 -6.421875 2.9375 -6.296875 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.109375 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.15625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.1875 -0.3125 2.984375 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.078125 -3.375 L 5.390625 -0.640625 C 5.296875 -0.3125 5.109375 -0.3125 4.484375 -0.3125 C 4.34375 -0.3125 4.25 -0.3125 4.25 -0.109375 C 4.25 0 4.390625 0 4.390625 0 L 5.65625 -0.03125 L 6.296875 -0.015625 C 6.515625 -0.015625 6.734375 0 6.9375 0 C 7.015625 0 7.140625 0 7.140625 -0.203125 Z M 7.140625 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.328125 -1.421875 C 4.328125 -1.46875 4.28125 -1.515625 4.203125 -1.515625 C 4.109375 -1.515625 4.09375 -1.453125 4.0625 -1.390625 C 3.828125 -0.75 3.203125 -0.5625 2.875 -0.5625 C 2.671875 -0.5625 2.5 -0.609375 2.28125 -0.6875 C 1.953125 -0.8125 1.796875 -0.859375 1.59375 -0.859375 C 1.59375 -0.859375 1.40625 -0.859375 1.328125 -0.828125 C 1.859375 -1.40625 2.140625 -1.65625 2.5 -1.953125 C 2.5 -1.953125 3.125 -2.5 3.484375 -2.859375 C 4.421875 -3.78125 4.640625 -4.25 4.640625 -4.296875 C 4.640625 -4.390625 4.53125 -4.390625 4.53125 -4.390625 C 4.46875 -4.390625 4.4375 -4.375 4.375 -4.28125 C 4.078125 -3.8125 3.875 -3.640625 3.640625 -3.640625 C 3.40625 -3.640625 3.28125 -3.796875 3.125 -3.96875 C 2.9375 -4.1875 2.765625 -4.390625 2.4375 -4.390625 C 1.703125 -4.390625 1.25 -3.46875 1.25 -3.265625 C 1.25 -3.203125 1.265625 -3.15625 1.359375 -3.15625 C 1.453125 -3.15625 1.46875 -3.203125 1.484375 -3.265625 C 1.671875 -3.71875 2.25 -3.734375 2.328125 -3.734375 C 2.546875 -3.734375 2.734375 -3.65625 2.96875 -3.578125 C 3.359375 -3.421875 3.46875 -3.421875 3.734375 -3.421875 C 3.375 -3 2.53125 -2.28125 2.34375 -2.125 L 1.453125 -1.296875 C 0.78125 -0.625 0.421875 -0.0625 0.421875 0.015625 C 0.421875 0.109375 0.546875 0.109375 0.546875 0.109375 C 0.625 0.109375 0.640625 0.09375 0.703125 -0.015625 C 0.9375 -0.375 1.234375 -0.640625 1.546875 -0.640625 C 1.78125 -0.640625 1.875 -0.546875 2.125 -0.265625 C 2.296875 -0.046875 2.46875 0.109375 2.765625 0.109375 C 3.75 0.109375 4.328125 -1.15625 4.328125 -1.421875 Z M 4.328125 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 8.09375 -2.984375 C 8.09375 -3.203125 7.890625 -3.203125 7.71875 -3.203125 L 4.53125 -3.203125 L 4.53125 -6.390625 C 4.53125 -6.5625 4.53125 -6.765625 4.328125 -6.765625 C 4.109375 -6.765625 4.109375 -6.578125 4.109375 -6.390625 L 4.109375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.109375 -2.78125 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.78125 L 7.71875 -2.78125 C 7.875 -2.78125 8.09375 -2.78125 8.09375 -2.984375 Z M 8.09375 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.6875 6.703125 -2.6875 6.5625 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 5.09375 23.4375 L 5.09375 22.890625 L 3.03125 22.890625 L 3.03125 0.15625 L 5.09375 0.15625 L 5.09375 -0.390625 L 2.484375 -0.390625 L 2.484375 23.4375 Z M 5.09375 23.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 2.75 23.4375 L 2.75 -0.390625 L 0.140625 -0.390625 L 0.140625 0.15625 L 2.203125 0.15625 L 2.203125 22.890625 L 0.140625 22.890625 L 0.140625 23.4375 Z M 2.75 23.4375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43 36 L 183.820312 36 L 183.820312 165 L 43 165 Z M 43 36 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 162 67 L 183.820312 67 L 183.820312 99 L 162 99 Z M 162 67 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 162 44 L 183.820312 44 L 183.820312 76 L 162 76 Z M 162 44 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 162 21 L 183.820312 21 L 183.820312 54 L 162 54 Z M 162 21 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -70.867419 -56.691963 L 70.865845 -56.691963 L 70.865845 56.693081 L -70.867419 56.693081 Z M -70.867419 -56.691963 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="88.033347" y="10.743724"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.347433 -19.941947 L 51.025226 -19.941947 L 51.025226 -2.934583 L 28.347433 -2.934583 Z M 28.347433 -19.941947 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="125.687875" y="84.355212"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="132.79713" y="85.844447"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.347433 2.935701 L 51.025226 2.935701 L 51.025226 19.943066 L 28.347433 19.943066 Z M 28.347433 2.935701 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="125.687875" y="61.550174"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="132.79713" y="63.039409"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.347433 25.809431 L 51.025226 25.809431 L 51.025226 42.820715 L 28.347433 42.820715 Z M 28.347433 25.809431 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="125.687875" y="38.746133"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="132.79713" y="40.235368"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.842388 34.317032 C 10.842388 38.165242 7.719146 41.288484 3.867017 41.288484 C 0.0148879 41.288484 -3.108354 38.165242 -3.108354 34.317032 C -3.108354 30.464903 0.0148879 27.341662 3.867017 27.341662 C 7.719146 27.341662 10.842388 30.464903 10.842388 34.317032 Z M 10.842388 34.317032 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="91.441941" y="40.25989"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="86.054677" y="52.084458"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -20.115719 34.317032 C -20.115719 38.165242 -23.238961 41.288484 -27.091089 41.288484 C -30.9393 41.288484 -34.062541 38.165242 -34.062541 34.317032 C -34.062541 30.464903 -30.9393 27.341662 -27.091089 27.341662 C -23.238961 27.341662 -20.115719 30.464903 -20.115719 34.317032 Z M -20.115719 34.317032 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="60.584666" y="40.25989"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="55.197402" y="52.084458"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -14.954728 -108.086338 L 14.953154 -108.086338 L 14.953154 -77.531862 L -14.954728 -77.531862 Z M -14.954728 -108.086338 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="80.314044" y="152.552023"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="85.555275" y="160.496605"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="93.809865" y="161.985841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="85.555275" y="172.413479"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="93.809865" y="173.902714"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="98.26561" y="152.552023"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -91.209638 34.317032 L -38.69842 34.317032 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054352 0.00162231 L 1.610492 1.682765 L 3.08786 0.00162231 L 1.610492 -1.683439 Z M 6.054352 0.00162231 " transform="matrix(0.996811,0,0,-0.996811,50.507925,37.35318)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="4.800641" y="33.546768"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.867017 -11.438265 L 3.867017 22.709702 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053625 -0.000486837 L 1.609765 1.684575 L 3.087133 -0.000486837 L 1.609765 -1.68163 Z M 6.053625 -0.000486837 " transform="matrix(0,-0.996811,-0.996811,0,95.76514,51.753069)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 97.75 82.960938 C 97.75 81.863281 96.863281 80.976562 95.765625 80.976562 C 94.667969 80.976562 93.777344 81.863281 93.777344 82.960938 C 93.777344 84.058594 94.667969 84.949219 95.765625 84.949219 C 96.863281 84.949219 97.75 84.058594 97.75 82.960938 Z M 97.75 82.960938 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -27.091089 11.439384 L -27.091089 22.709702 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053625 0.00157942 L 1.609765 1.682722 L 3.087133 0.00157942 L 1.609765 -1.683482 Z M 6.053625 0.00157942 " transform="matrix(0,-0.996811,-0.996811,0,64.907824,51.753069)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 66.894531 60.15625 C 66.894531 59.058594 66.003906 58.171875 64.90625 58.171875 C 63.8125 58.171875 62.921875 59.058594 62.921875 60.15625 C 62.921875 61.253906 63.8125 62.144531 64.90625 62.144531 C 66.003906 62.144531 66.894531 61.253906 66.894531 60.15625 Z M 66.894531 60.15625 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -48.236652 34.317032 L -48.236652 -45.750819 L 91.208064 -45.750819 L 91.208064 -92.807141 L 20.086713 -92.807141 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054929 -0.00143927 L 1.60715 1.683622 L 3.088437 -0.00143927 L 1.60715 -1.682582 Z M 6.054929 -0.00143927 " transform="matrix(-0.996811,0,0,0.996811,114.762181,164.071747)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 45.8125 37.351562 C 45.8125 36.257812 44.925781 35.367188 43.828125 35.367188 C 42.730469 35.367188 41.839844 36.257812 41.839844 37.351562 C 41.839844 38.449219 42.730469 39.339844 43.828125 39.339844 C 44.925781 39.339844 45.8125 38.449219 45.8125 37.351562 Z M 45.8125 37.351562 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -15.452409 -86.497957 L -79.868782 -86.497957 L -79.868782 -11.438265 L 23.213874 -11.438265 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054566 0.000795006 L 1.606787 1.681938 L 3.088074 0.000795006 L 1.606787 -1.684266 Z M 6.054566 0.000795006 " transform="matrix(0.996811,0,0,-0.996811,112.222556,82.96173)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -15.452409 -99.116324 L -91.209638 -99.116324 L -91.209638 11.439384 L 23.213874 11.439384 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054566 0.000323656 L 1.606787 1.681466 L 3.088074 0.000323656 L 1.606787 -1.684738 Z M 6.054566 0.000323656 " transform="matrix(0.996811,0,0,-0.996811,112.222556,60.156573)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -20.115719 34.317032 L -7.740314 34.317032 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052479 0.00162231 L 1.60862 1.682765 L 3.085987 0.00162231 L 1.60862 -1.683439 Z M 6.052479 0.00162231 " transform="matrix(0.996811,0,0,-0.996811,81.365261,37.35318)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.842388 34.317032 L 23.213874 34.317032 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054566 0.00162231 L 1.606787 1.682765 L 3.088074 0.00162231 L 1.606787 -1.683439 Z M 6.054566 0.00162231 " transform="matrix(0.996811,0,0,-0.996811,112.222556,37.35318)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 51.522907 -11.438265 L 86.576104 -11.438265 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 181.414062 82.960938 L 176.984375 81.285156 L 178.457031 82.960938 L 176.984375 84.640625 Z M 181.414062 82.960938 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053717 0.000795006 L 1.609858 1.681938 L 3.087225 0.000795006 L 1.609858 -1.684266 Z M 6.053717 0.000795006 " transform="matrix(0.996811,0,0,-0.996811,175.379652,82.96173)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="169.948269" y="77.665614"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="174.566493" y="79.15485"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 51.522907 11.439384 L 86.576104 11.439384 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 181.414062 60.15625 L 176.984375 58.480469 L 178.457031 60.15625 L 176.984375 61.835938 Z M 181.414062 60.15625 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053717 0.000323656 L 1.609858 1.681466 L 3.087225 0.000323656 L 1.609858 -1.684738 Z M 6.053717 0.000323656 " transform="matrix(0.996811,0,0,-0.996811,175.379652,60.156573)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="169.948269" y="54.860577"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="174.566493" y="56.349812"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 51.522907 34.317032 L 86.576104 34.317032 " transform="matrix(0.996811,0,0,-0.996811,91.910941,71.559151)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 181.414062 37.351562 L 176.984375 35.675781 L 178.457031 37.351562 L 176.984375 39.03125 Z M 181.414062 37.351562 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053717 0.00162231 L 1.609858 1.682765 L 3.087225 0.00162231 L 1.609858 -1.683439 Z M 6.053717 0.00162231 " transform="matrix(0.996811,0,0,-0.996811,175.379652,37.35318)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="169.948269" y="32.056536"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="174.566493" y="33.545771"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -0,0 +1,283 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="252.56pt" height="154.11pt" viewBox="0 0 252.56 154.11" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.828125 -0.3125 C 2.9375 -0.3125 2.90625 -0.421875 2.90625 -0.78125 L 2.90625 -6.34375 C 2.90625 -6.578125 2.90625 -6.59375 2.6875 -6.59375 C 2.078125 -5.96875 1.203125 -5.96875 0.875 -5.96875 L 0.875 -5.65625 C 1.078125 -5.65625 1.671875 -5.65625 2.171875 -5.90625 L 2.171875 -0.78125 C 2.171875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.28125 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.9375 -0.03125 3.796875 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.5 -4.75 4.15625 -5.484375 C 3.703125 -6.4375 2.890625 -6.59375 2.484375 -6.59375 C 1.875 -6.59375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.734375 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.421875 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.75 0.015625 4.1875 -0.9375 C 4.5 -1.609375 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.28125 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.90625 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.28125 C 1.203125 -3.921875 1.203125 -4.578125 1.28125 -5.109375 C 1.46875 -6.296875 2.21875 -6.375 2.46875 -6.375 C 2.796875 -6.375 3.453125 -6.203125 3.640625 -5.21875 C 3.734375 -4.671875 3.734375 -3.90625 3.734375 -3.28125 Z M 3.734375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.4375 -1.734375 C 5.4375 -1.90625 5.28125 -1.90625 5.1875 -1.90625 L 1 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.5625 0.921875 -1.5625 1 -1.5625 L 5.1875 -1.5625 C 5.265625 -1.5625 5.4375 -1.5625 5.4375 -1.734375 Z M 5.4375 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.40625 C 2.328125 -4.59375 2.3125 -4.609375 2.109375 -4.609375 C 1.671875 -4.171875 1.046875 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.578125 -2.21875 C 3.578125 -2.96875 3.484375 -3.53125 3.171875 -4.015625 C 2.953125 -4.328125 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.578125 0.140625 3.578125 -1.71875 3.578125 -2.21875 Z M 2.953125 -2.296875 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 0.984375 -1.21875 0.984375 -1.796875 0.984375 -2.296875 C 0.984375 -2.8125 0.984375 -3.34375 1.09375 -3.71875 C 1.234375 -4.265625 1.6875 -4.40625 1.96875 -4.40625 C 2.34375 -4.40625 2.703125 -4.1875 2.828125 -3.78125 C 2.9375 -3.40625 2.953125 -2.90625 2.953125 -2.296875 Z M 2.953125 -2.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.25 -1.109375 3.171875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.421875 2.515625 -1.75 C 3.03125 -2.171875 3.5 -2.59375 3.5 -3.25 C 3.5 -4.09375 2.765625 -4.609375 1.875 -4.609375 C 1.015625 -4.609375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3.015625 0.734375 -2.96875 0.8125 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.46875 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.203125 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.65625 2.40625 -2.171875 2.171875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.5 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.125 -2.28125 2.359375 -2.4375 C 3.09375 -2.703125 3.34375 -3.21875 3.34375 -3.65625 C 3.34375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.171875 -4.609375 0.59375 -4.234375 0.59375 -3.671875 C 0.59375 -3.4375 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.296875 -3.46875 1.296875 -3.65625 C 1.296875 -3.859375 1.171875 -4.015625 0.953125 -4.03125 C 1.1875 -4.328125 1.671875 -4.40625 1.921875 -4.40625 C 2.234375 -4.40625 2.671875 -4.25 2.671875 -3.65625 C 2.671875 -3.359375 2.578125 -3.03125 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.625 -2.53125 C 1.453125 -2.515625 1.4375 -2.515625 1.40625 -2.5 C 1.40625 -2.5 1.34375 -2.484375 1.34375 -2.421875 C 1.34375 -2.3125 1.40625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.4375 -2.3125 2.828125 -1.9375 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.046875 -4.5 L 5.765625 -6.734375 L 0.328125 -6.734375 L 0.328125 -6.421875 L 0.5625 -6.421875 C 1.328125 -6.421875 1.34375 -6.3125 1.34375 -5.96875 L 1.34375 -0.765625 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.828125 -0.03125 C 2.234375 -0.03125 3.140625 -0.03125 3.5 0 L 3.5 -0.3125 L 3.171875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.21875 L 3.078125 -3.21875 C 4.03125 -3.21875 4.125 -2.90625 4.125 -2.0625 L 4.375 -2.0625 L 4.375 -4.6875 L 4.125 -4.6875 C 4.125 -3.859375 4.03125 -3.53125 3.078125 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.03125 C 2.234375 -6.359375 2.25 -6.421875 2.71875 -6.421875 L 3.90625 -6.421875 C 5.390625 -6.421875 5.640625 -5.875 5.796875 -4.5 Z M 6.046875 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.375 2.875 -4.375 C 2.15625 -4.375 1.796875 -3.71875 1.65625 -3.28125 L 1.65625 -4.375 L 0.28125 -4.265625 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.890625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.796875 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.765625 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.15625 2.875 -4.15625 C 2.9375 -4.15625 2.96875 -4.15625 2.984375 -4.15625 C 2.953125 -4.140625 2.75 -4.015625 2.75 -3.765625 C 2.75 -3.484375 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.453125 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.890625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.5 -0.140625 2.609375 -0.140625 2.515625 -0.140625 C 2.015625 -0.140625 1.625 -0.4375 1.390625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.28125 L 3.859375 -2.28125 C 4.078125 -2.28125 4.109375 -2.28125 4.109375 -2.5 C 4.109375 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.171875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.109375 -0.984375 4.109375 -1.171875 Z M 3.453125 -2.5 L 1.109375 -2.5 C 1.171875 -3.96875 2 -4.21875 2.34375 -4.21875 C 3.359375 -4.21875 3.453125 -2.875 3.453125 -2.5 Z M 3.453125 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 5.21875 1.921875 L 5.21875 1.609375 C 4.5625 1.609375 4.453125 1.609375 4.453125 1.171875 L 4.453125 -4.375 L 4.234375 -4.375 L 3.859375 -3.484375 C 3.71875 -3.75 3.3125 -4.375 2.53125 -4.375 C 1.375 -4.375 0.34375 -3.421875 0.34375 -2.125 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.140625 0.109375 3.546875 -0.3125 3.765625 -0.609375 L 3.765625 1.171875 C 3.765625 1.609375 3.65625 1.609375 2.984375 1.609375 L 2.984375 1.921875 L 4.09375 1.890625 Z M 3.796875 -1.34375 C 3.796875 -1.03125 3.609375 -0.75 3.390625 -0.515625 C 3.265625 -0.375 2.953125 -0.109375 2.484375 -0.109375 C 1.765625 -0.109375 1.15625 -0.984375 1.15625 -2.125 C 1.15625 -3.3125 1.859375 -4.125 2.578125 -4.125 C 3.375 -4.125 3.796875 -3.265625 3.796875 -2.75 Z M 3.796875 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.375 L 3.078125 -4.265625 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.890625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.640625 -0.109375 C 1.8125 -0.109375 1.765625 -0.578125 1.765625 -1.09375 L 1.765625 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.046875 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.78125 -0.3125 4.53125 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.34375 4.53125 -3.65625 4.21875 -4.015625 C 4.078125 -4.1875 3.75 -4.375 3.1875 -4.375 C 2.453125 -4.375 1.984375 -3.953125 1.71875 -3.34375 L 1.71875 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.890625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -2.578125 C 1.765625 -3.609375 2.484375 -4.15625 3.109375 -4.15625 C 3.734375 -4.15625 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.1875 -0.03125 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.890625 -1.28125 3.875 -1.234375 3.859375 -1.171875 C 3.5625 -0.25 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.1875 2.5 -4.1875 C 2.578125 -4.1875 3.203125 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.265625 -2.90625 3.546875 -2.90625 C 3.796875 -2.90625 4 -3.078125 4 -3.375 C 4 -4.046875 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.109375 -1.078125 4.109375 -1.171875 Z M 4.109375 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 5.03125 -3.96875 L 5.03125 -4.265625 C 4.796875 -4.25 4.515625 -4.234375 4.296875 -4.234375 L 3.421875 -4.265625 L 3.421875 -3.96875 C 3.734375 -3.953125 3.890625 -3.78125 3.890625 -3.53125 C 3.890625 -3.4375 3.890625 -3.421875 3.828125 -3.296875 L 2.828125 -0.859375 L 1.734375 -3.53125 C 1.6875 -3.625 1.671875 -3.671875 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.265625 L 1.15625 -4.234375 C 0.875 -4.234375 0.484375 -4.25 0.1875 -4.265625 L 0.1875 -3.96875 C 0.65625 -3.96875 0.859375 -3.96875 0.984375 -3.609375 L 2.484375 0 L 2.234375 0.578125 C 2.015625 1.125 1.734375 1.8125 1.09375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.015625 1.375 1.015625 1.21875 C 1.015625 0.953125 0.828125 0.796875 0.609375 0.796875 C 0.40625 0.796875 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.09375 2.03125 C 1.71875 2.03125 2.125 1.46875 2.375 0.90625 L 4.109375 -3.328125 C 4.375 -3.953125 4.875 -3.96875 5.03125 -3.96875 Z M 5.03125 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.078125 L 1.5625 2.078125 L 1.5625 -7.03125 L 2.53125 -7.03125 L 2.53125 -7.4375 L 1.171875 -7.4375 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 7.09375 0 L 7.09375 -0.3125 L 6.859375 -0.3125 C 6.09375 -0.3125 6.078125 -0.421875 6.078125 -0.765625 L 6.078125 -6 C 6.078125 -6.34375 6.09375 -6.453125 6.859375 -6.453125 L 7.09375 -6.453125 L 7.09375 -6.765625 C 6.75 -6.734375 6.015625 -6.734375 5.640625 -6.734375 C 5.265625 -6.734375 4.515625 -6.734375 4.171875 -6.765625 L 4.171875 -6.453125 L 4.40625 -6.453125 C 5.171875 -6.453125 5.1875 -6.34375 5.1875 -6 L 5.1875 -3.671875 L 2.234375 -3.671875 L 2.234375 -6 C 2.234375 -6.34375 2.25 -6.453125 3.015625 -6.453125 L 3.25 -6.453125 L 3.25 -6.765625 C 2.90625 -6.734375 2.171875 -6.734375 1.796875 -6.734375 C 1.421875 -6.734375 0.671875 -6.734375 0.328125 -6.765625 L 0.328125 -6.453125 L 0.5625 -6.453125 C 1.328125 -6.453125 1.34375 -6.34375 1.34375 -6 L 1.34375 -0.765625 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.765625 L 2.234375 -3.375 L 5.1875 -3.375 L 5.1875 -0.765625 C 5.1875 -0.421875 5.171875 -0.3125 4.40625 -0.3125 L 4.171875 -0.3125 L 4.171875 0 C 4.515625 -0.03125 5.25 -0.03125 5.625 -0.03125 C 6 -0.03125 6.75 -0.03125 7.09375 0 Z M 7.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 3.96875 -1.859375 L 3.71875 -1.859375 C 3.640625 -0.6875 3.421875 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.859375 -3.96875 C 3.953125 -4.078125 3.953125 -4.09375 3.953125 -4.140625 C 3.953125 -4.265625 3.875 -4.265625 3.6875 -4.265625 L 0.53125 -4.265625 L 0.421875 -2.671875 L 0.65625 -2.671875 C 0.71875 -3.6875 0.90625 -4.046875 2 -4.046875 L 3.125 -4.046875 L 0.359375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.796875 0 Z M 3.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.4375 L 0.21875 -7.4375 L 0.21875 -7.03125 L 1.171875 -7.03125 L 1.171875 2.078125 L 0.21875 2.078125 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -8.703125 L -0.3125 -8.703125 L -0.3125 -8.46875 C -0.3125 -7.703125 -0.421875 -7.6875 -0.765625 -7.6875 L -6 -7.6875 C -6.34375 -7.6875 -6.453125 -7.703125 -6.453125 -8.46875 L -6.453125 -8.703125 L -6.765625 -8.703125 L -6.765625 -7.03125 C -6.765625 -6.78125 -6.75 -6.78125 -6.578125 -6.703125 L -1 -4.53125 L -6.546875 -2.390625 C -6.765625 -2.296875 -6.765625 -2.265625 -6.765625 -2.046875 L -6.765625 -0.359375 L -6.453125 -0.359375 L -6.453125 -0.609375 C -6.453125 -1.359375 -6.34375 -1.390625 -6 -1.390625 L -1.046875 -1.390625 C -0.765625 -1.390625 -0.3125 -1.390625 -0.3125 -0.359375 L 0 -0.359375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.765625 -1.671875 -1.046875 -1.671875 L -6.375 -1.671875 L -0.21875 -4.0625 C -0.09375 -4.109375 0 -4.15625 0 -4.265625 C 0 -4.375 -0.078125 -4.390625 -0.1875 -4.4375 L -6.453125 -6.875 L -6.453125 -6.890625 L -0.765625 -6.890625 C -0.421875 -6.890625 -0.3125 -6.859375 -0.3125 -6.109375 L -0.3125 -5.859375 L 0 -5.859375 C -0.03125 -6.234375 -0.03125 -6.90625 -0.03125 -7.296875 C -0.03125 -7.671875 -0.03125 -8.34375 0 -8.703125 Z M 0 -8.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -0.875 -4.78125 L -1.4375 -4.78125 L -1.4375 -4.53125 L -0.875 -4.53125 C -0.3125 -4.53125 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.71875 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.890625 -3.453125 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.09375 C -4.4375 -1.28125 -3.96875 -0.609375 -3.3125 -0.609375 C -3.015625 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.046875 -1.515625 -3.3125 -1.515625 C -3.421875 -1.515625 -3.75 -1.46875 -3.765625 -1.015625 C -4.109375 -1.28125 -4.21875 -1.765625 -4.21875 -2.078125 C -4.21875 -2.5625 -3.828125 -3.125 -2.953125 -3.125 L -2.578125 -3.125 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.234375 0.0625 -3.5 0.0625 -3.96875 C 0.0625 -4.1875 -0.078125 -4.78125 -0.875 -4.78125 Z M -1.390625 -3.125 C -0.453125 -3.125 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.3125 -1.5 -2.375 -3.125 Z M -1.390625 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M -4 -4.796875 C -4.171875 -4.796875 -4.484375 -4.6875 -4.484375 -4.296875 C -4.484375 -4.09375 -4.421875 -3.671875 -4.015625 -3.25 C -4.34375 -2.828125 -4.375 -2.421875 -4.375 -2.203125 C -4.375 -1.28125 -3.6875 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.90625 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.875 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.015625 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.3125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.578125 -1.046875 -1.78125 -1.21875 C -1.5 -1.609375 -1.46875 -2.015625 -1.46875 -2.203125 C -1.46875 -3.125 -2.15625 -3.796875 -2.921875 -3.796875 C -3.28125 -3.796875 -3.65625 -3.640625 -3.890625 -3.390625 C -4.21875 -3.75 -4.265625 -4.109375 -4.265625 -4.296875 C -4.265625 -4.296875 -4.265625 -4.359375 -4.265625 -4.390625 C -4.21875 -4.28125 -4.109375 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.515625 C -3.703125 -4.609375 -3.78125 -4.796875 -4 -4.796875 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.046875 -2.09375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.6875 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.5 -1.34375 -3.75 -1.5 C -3.875 -1.578125 -4.15625 -1.796875 -4.15625 -2.203125 C -4.15625 -3.0625 -3.15625 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.46875 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.78125 -0.3125 -4.53125 -0.609375 -4.53125 L -2.5 -4.53125 C -3.34375 -4.53125 -3.65625 -4.53125 -4.015625 -4.21875 C -4.1875 -4.078125 -4.375 -3.75 -4.375 -3.1875 C -4.375 -2.453125 -3.953125 -1.984375 -3.34375 -1.71875 L -4.375 -1.71875 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.890625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.875 -0.3125 -1.765625 -0.75 -1.765625 L -2.578125 -1.765625 C -3.609375 -1.765625 -4.15625 -2.484375 -4.15625 -3.109375 C -4.15625 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.1875 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.375 -1.75 L -4.265625 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -5.984375 -1.90625 C -6.25 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -5.984375 -0.84375 C -5.71875 -0.84375 -5.453125 -1.0625 -5.453125 -1.359375 C -5.453125 -1.703125 -5.734375 -1.90625 -5.984375 -1.90625 Z M -5.984375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M -1.234375 -3.28125 L -1.796875 -3.28125 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.125 L -4.265625 -3.125 L -4.265625 -1.71875 L -6.09375 -1.71875 L -6.09375 -1.46875 C -5.28125 -1.453125 -4.21875 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.28125 -1.234375 -3.28125 Z M -1.234375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.609375 -0.375 -4.53125 -0.859375 -4.53125 L -4.375 -4.53125 L -4.265625 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.765625 -3.890625 -3.84375 -3.40625 -3.84375 L -1.640625 -3.84375 C -0.78125 -3.84375 -0.109375 -3.375 -0.109375 -2.640625 C -0.109375 -1.8125 -0.578125 -1.765625 -1.09375 -1.765625 L -4.375 -1.765625 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.046875 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.59375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.875 L 0.109375 -3.875 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 0 -5.21875 L -0.3125 -5.21875 C -0.3125 -4.53125 -0.375 -4.453125 -0.859375 -4.453125 L -6.875 -4.453125 L -6.765625 -3.015625 L -6.453125 -3.015625 C -6.453125 -3.71875 -6.390625 -3.796875 -5.90625 -3.796875 L -3.765625 -3.796875 C -4.125 -3.5 -4.375 -3.078125 -4.375 -2.546875 C -4.375 -1.375 -3.40625 -0.34375 -2.125 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.515625 -0.546875 -3.765625 L 0.109375 -3.765625 Z M -1.171875 -3.765625 C -0.984375 -3.765625 -0.96875 -3.765625 -0.796875 -3.65625 C -0.328125 -3.359375 -0.109375 -2.90625 -0.109375 -2.484375 C -0.109375 -2.046875 -0.359375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.484375 -1.15625 -3.078125 -1.171875 -3.53125 -1.46875 C -3.828125 -1.671875 -4.15625 -2.046875 -4.15625 -2.578125 C -4.15625 -2.9375 -4.015625 -3.34375 -3.5625 -3.65625 C -3.390625 -3.765625 -3.375 -3.765625 -3.203125 -3.765625 Z M -1.171875 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M -1.171875 -4.109375 C -1.28125 -4.109375 -1.296875 -4.03125 -1.296875 -3.984375 C -1.296875 -3.890625 -1.234375 -3.875 -1.15625 -3.859375 C -0.140625 -3.5 -0.140625 -2.609375 -0.140625 -2.515625 C -0.140625 -2.015625 -0.4375 -1.625 -0.796875 -1.390625 C -1.28125 -1.09375 -1.9375 -1.09375 -2.28125 -1.09375 L -2.28125 -3.859375 C -2.28125 -4.078125 -2.28125 -4.109375 -2.5 -4.109375 C -3.484375 -4.109375 -4.4375 -3.578125 -4.4375 -2.34375 C -4.4375 -1.1875 -3.421875 -0.28125 -2.171875 -0.28125 C -0.859375 -0.28125 0.109375 -1.3125 0.109375 -2.453125 C 0.109375 -3.671875 -0.984375 -4.109375 -1.171875 -4.109375 Z M -2.5 -3.453125 L -2.5 -1.109375 C -3.96875 -1.171875 -4.21875 -2 -4.21875 -2.34375 C -4.21875 -3.359375 -2.875 -3.453125 -2.5 -3.453125 Z M -2.5 -3.453125 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43.347656 7.828125 L 240.640625 7.828125 L 240.640625 107 L 43.347656 107 Z M 43.347656 7.828125 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 43.347656 7.828125 L 240.640625 7.828125 L 240.640625 104 L 43.347656 104 Z M 43.347656 7.828125 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 225 91 L 240.640625 91 L 240.640625 93 L 225 93 Z M 225 91 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 211 71 L 240.640625 71 L 240.640625 107 L 211 107 Z M 211 71 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 43.347656 50 L 122 50 L 122 120.5625 L 43.347656 120.5625 Z M 43.347656 50 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 43.347656 48 L 116 48 L 116 120.5625 L 43.347656 120.5625 Z M 43.347656 48 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 43.347656 17 L 240.640625 17 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 17 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 45 17 L 240.640625 17 L 240.640625 120.5625 L 45 120.5625 Z M 45 17 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.347656 120.5625 L 240.640625 120.5625 L 240.640625 7.828125 L 43.347656 7.828125 Z M 43.347656 120.5625 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 M -34.674883 -85.03976 L -34.674883 28.345667 M -25.937212 -85.03976 L -25.937212 28.345667 M -19.74148 -85.03976 L -19.74148 28.345667 M -14.932618 -85.03976 L -14.932618 28.345667 M -11.003809 -85.03976 L -11.003809 28.345667 M -7.683965 -85.03976 L -7.683965 28.345667 M -4.808077 -85.03976 L -4.808077 28.345667 M -2.270067 -85.03976 L -2.270067 28.345667 M 0.000784861 -85.03976 L 0.000784861 28.345667 M 14.934188 -85.03976 L 14.934188 28.345667 M 23.66793 -85.03976 L 23.66793 28.345667 M 29.867591 -85.03976 L 29.867591 28.345667 M 34.672524 -85.03976 L 34.672524 28.345667 M 38.601333 -85.03976 L 38.601333 28.345667 M 41.925105 -85.03976 L 41.925105 28.345667 M 44.800994 -85.03976 L 44.800994 28.345667 M 47.339004 -85.03976 L 47.339004 28.345667 M 49.609856 -85.03976 L 49.609856 28.345667 M 64.543259 -85.03976 L 64.543259 28.345667 M 73.277001 -85.03976 L 73.277001 28.345667 M 79.476661 -85.03976 L 79.476661 28.345667 M 84.281595 -85.03976 L 84.281595 28.345667 M 88.210404 -85.03976 L 88.210404 28.345667 M 91.530247 -85.03976 L 91.530247 28.345667 M 94.410064 -85.03976 L 94.410064 28.345667 M 96.944146 -85.03976 L 96.944146 28.345667 M 99.214998 -85.03976 L 99.214998 28.345667 M 114.148401 -85.03976 L 114.148401 28.345667 M 122.886072 -85.03976 L 122.886072 28.345667 M 129.081803 -85.03976 L 129.081803 28.345667 M 133.890666 -85.03976 L 133.890666 28.345667 M 137.819475 -85.03976 L 137.819475 28.345667 M 141.139318 -85.03976 L 141.139318 28.345667 M 144.015206 -85.03976 L 144.015206 28.345667 M 146.553217 -85.03976 L 146.553217 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 M 0.000784861 -85.03976 L 0.000784861 28.345667 M 49.609856 -85.03976 L 49.609856 28.345667 M 99.214998 -85.03976 L 99.214998 28.345667 M 148.824069 -85.03976 L 148.824069 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 M -49.608286 -76.506387 L 148.824069 -76.506387 M -49.608286 -71.5168 L 148.824069 -71.5168 M -49.608286 -67.973014 L 148.824069 -67.973014 M -49.608286 -65.226776 L 148.824069 -65.226776 M -49.608286 -62.983426 L 148.824069 -62.983426 M -49.608286 -61.085812 L 148.824069 -61.085812 M -49.608286 -59.439641 L 148.824069 -59.439641 M -49.608286 -57.98991 L 148.824069 -57.98991 M -49.608286 -56.693403 L 148.824069 -56.693403 M -49.608286 -48.16003 L 148.824069 -48.16003 M -49.608286 -43.170443 L 148.824069 -43.170443 M -49.608286 -39.626657 L 148.824069 -39.626657 M -49.608286 -36.88042 L 148.824069 -36.88042 M -49.608286 -34.63707 L 148.824069 -34.63707 M -49.608286 -32.739455 L 148.824069 -32.739455 M -49.608286 -31.093284 L 148.824069 -31.093284 M -49.608286 -29.643554 L 148.824069 -29.643554 M -49.608286 -28.347047 L 148.824069 -28.347047 M -49.608286 -19.813673 L 148.824069 -19.813673 M -49.608286 -14.820157 L 148.824069 -14.820157 M -49.608286 -11.2803 L 148.824069 -11.2803 M -49.608286 -8.534063 L 148.824069 -8.534063 M -49.608286 -6.286784 L 148.824069 -6.286784 M -49.608286 -4.389169 L 148.824069 -4.389169 M -49.608286 -2.746927 L 148.824069 -2.746927 M -49.608286 -1.297197 L 148.824069 -1.297197 M -49.608286 -0.000689872 L 148.824069 -0.000689872 M -49.608286 8.532683 L 148.824069 8.532683 M -49.608286 13.526199 L 148.824069 13.526199 M -49.608286 17.066056 L 148.824069 17.066056 M -49.608286 19.812294 L 148.824069 19.812294 M -49.608286 22.059572 L 148.824069 22.059572 M -49.608286 23.957187 L 148.824069 23.957187 M -49.608286 25.599429 L 148.824069 25.599429 M -49.608286 27.04916 L 148.824069 27.04916 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 M -49.608286 -56.693403 L 148.824069 -56.693403 M -49.608286 -28.347047 L 148.824069 -28.347047 M -49.608286 -0.000689872 L 148.824069 -0.000689872 M -49.608286 28.345667 L 148.824069 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 -82.207089 M -34.674883 -85.03976 L -34.674883 -82.207089 M -25.937212 -85.03976 L -25.937212 -82.207089 M -19.74148 -85.03976 L -19.74148 -82.207089 M -14.932618 -85.03976 L -14.932618 -82.207089 M -11.003809 -85.03976 L -11.003809 -82.207089 M -7.683965 -85.03976 L -7.683965 -82.207089 M -4.808077 -85.03976 L -4.808077 -82.207089 M -2.270067 -85.03976 L -2.270067 -82.207089 M 0.000784861 -85.03976 L 0.000784861 -82.207089 M 14.934188 -85.03976 L 14.934188 -82.207089 M 23.66793 -85.03976 L 23.66793 -82.207089 M 29.867591 -85.03976 L 29.867591 -82.207089 M 34.672524 -85.03976 L 34.672524 -82.207089 M 38.601333 -85.03976 L 38.601333 -82.207089 M 41.925105 -85.03976 L 41.925105 -82.207089 M 44.800994 -85.03976 L 44.800994 -82.207089 M 47.339004 -85.03976 L 47.339004 -82.207089 M 49.609856 -85.03976 L 49.609856 -82.207089 M 64.543259 -85.03976 L 64.543259 -82.207089 M 73.277001 -85.03976 L 73.277001 -82.207089 M 79.476661 -85.03976 L 79.476661 -82.207089 M 84.281595 -85.03976 L 84.281595 -82.207089 M 88.210404 -85.03976 L 88.210404 -82.207089 M 91.530247 -85.03976 L 91.530247 -82.207089 M 94.410064 -85.03976 L 94.410064 -82.207089 M 96.944146 -85.03976 L 96.944146 -82.207089 M 99.214998 -85.03976 L 99.214998 -82.207089 M 114.148401 -85.03976 L 114.148401 -82.207089 M 122.886072 -85.03976 L 122.886072 -82.207089 M 129.081803 -85.03976 L 129.081803 -82.207089 M 133.890666 -85.03976 L 133.890666 -82.207089 M 137.819475 -85.03976 L 137.819475 -82.207089 M 141.139318 -85.03976 L 141.139318 -82.207089 M 144.015206 -85.03976 L 144.015206 -82.207089 M 146.553217 -85.03976 L 146.553217 -82.207089 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 -80.788789 M 0.000784861 -85.03976 L 0.000784861 -80.788789 M 49.609856 -85.03976 L 49.609856 -80.788789 M 99.214998 -85.03976 L 99.214998 -80.788789 M 148.824069 -85.03976 L 148.824069 -80.788789 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -46.775615 -85.03976 M -49.608286 -76.506387 L -46.775615 -76.506387 M -49.608286 -71.5168 L -46.775615 -71.5168 M -49.608286 -67.973014 L -46.775615 -67.973014 M -49.608286 -65.226776 L -46.775615 -65.226776 M -49.608286 -62.983426 L -46.775615 -62.983426 M -49.608286 -61.085812 L -46.775615 -61.085812 M -49.608286 -59.439641 L -46.775615 -59.439641 M -49.608286 -57.98991 L -46.775615 -57.98991 M -49.608286 -56.693403 L -46.775615 -56.693403 M -49.608286 -48.16003 L -46.775615 -48.16003 M -49.608286 -43.170443 L -46.775615 -43.170443 M -49.608286 -39.626657 L -46.775615 -39.626657 M -49.608286 -36.88042 L -46.775615 -36.88042 M -49.608286 -34.63707 L -46.775615 -34.63707 M -49.608286 -32.739455 L -46.775615 -32.739455 M -49.608286 -31.093284 L -46.775615 -31.093284 M -49.608286 -29.643554 L -46.775615 -29.643554 M -49.608286 -28.347047 L -46.775615 -28.347047 M -49.608286 -19.813673 L -46.775615 -19.813673 M -49.608286 -14.820157 L -46.775615 -14.820157 M -49.608286 -11.2803 L -46.775615 -11.2803 M -49.608286 -8.534063 L -46.775615 -8.534063 M -49.608286 -6.286784 L -46.775615 -6.286784 M -49.608286 -4.389169 L -46.775615 -4.389169 M -49.608286 -2.746927 L -46.775615 -2.746927 M -49.608286 -1.297197 L -46.775615 -1.297197 M -49.608286 -0.000689872 L -46.775615 -0.000689872 M -49.608286 8.532683 L -46.775615 8.532683 M -49.608286 13.526199 L -46.775615 13.526199 M -49.608286 17.066056 L -46.775615 17.066056 M -49.608286 19.812294 L -46.775615 19.812294 M -49.608286 22.059572 L -46.775615 22.059572 M -49.608286 23.957187 L -46.775615 23.957187 M -49.608286 25.599429 L -46.775615 25.599429 M -49.608286 27.04916 L -46.775615 27.04916 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -45.361243 -85.03976 M -49.608286 -56.693403 L -45.361243 -56.693403 M -49.608286 -28.347047 L -45.361243 -28.347047 M -49.608286 -0.000689872 L -45.361243 -0.000689872 M -49.608286 28.345667 L -45.361243 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="33.078249" y="132.423243"/>
<use xlink:href="#glyph0-2" x="38.030947" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="42.984042" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="49.174293" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="85.496528" y="132.423243"/>
<use xlink:href="#glyph0-2" x="90.449226" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="95.402322" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="134.819683" y="132.423243"/>
<use xlink:href="#glyph0-2" x="139.77238" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="144.725476" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="184.142837" y="132.423243"/>
<use xlink:href="#glyph0-2" x="189.095534" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="194.04863" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="233.465991" y="132.423243"/>
<use xlink:href="#glyph0-2" x="238.418688" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="243.371784" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="124.595449"/>
<use xlink:href="#glyph0-2" x="23.964184" y="124.595449"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="121.001206"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="35.10753" y="121.001206"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="96.411216"/>
<use xlink:href="#glyph0-2" x="23.964184" y="96.411216"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="92.816973"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="35.10753" y="92.816973"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="68.226983"/>
<use xlink:href="#glyph0-2" x="23.964184" y="68.226983"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="64.63274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.10753" y="64.63274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.201737" y="40.042749"/>
<use xlink:href="#glyph0-2" x="30.154434" y="40.042749"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="35.10753" y="36.448506"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.201737" y="11.858516"/>
<use xlink:href="#glyph0-2" x="30.154434" y="11.858516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.10753" y="8.264273"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 19.211186 L -16.834162 19.160111 L -5.314894 19.057962 L 2.035908 18.908668 L 7.595173 18.712227 L 12.164377 18.460783 L 15.939963 18.166123 L 19.31481 17.820388 L 22.493216 17.403934 L 25.471253 16.912833 L 28.25285 16.366728 L 30.838006 15.769549 L 33.419234 15.078079 L 36.000461 14.288388 L 38.581689 13.404406 L 41.363286 12.343628 L 44.144882 11.1807 L 47.12292 9.817404 L 50.301326 8.249809 L 53.680102 6.470058 L 57.451758 4.356359 L 61.427713 2.003003 L 65.796549 -0.715733 L 70.365753 -3.69377 L 75.131399 -6.931109 L 80.097413 -10.451322 L 85.063428 -14.109043 L 90.225883 -18.065354 L 95.789076 -22.477406 L 102.145889 -27.67522 L 117.043933 -39.940962 L 120.815589 -42.852209 L 123.993996 -45.170207 L 126.775593 -47.067821 L 129.35682 -48.698277 L 131.741607 -50.085147 L 134.126394 -51.346294 L 136.310812 -52.391357 L 138.491301 -53.330343 L 140.679648 -54.16325 L 142.860137 -54.894009 L 145.248852 -55.585479 L 147.629711 -56.1748 L 148.824069 -56.430173 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 19.211186 L -45.345528 26.569845 M -43.939015 19.203328 L -39.676257 26.558059 M -38.269743 19.191542 L -34.006986 26.550201 M -32.600472 19.183684 L -28.337714 26.542344 M -26.931201 19.175827 L -22.668443 26.534486 M -21.261929 19.167969 L -16.999172 26.522699 M -15.592658 19.148325 L -11.274897 26.475554 M -9.923387 19.097251 L -5.605626 26.424479 M -4.254115 19.03439 L 0.146151 26.314473 M 1.411227 18.920454 L 5.815422 26.196608 M 7.080499 18.727942 L 11.590771 25.937307 M 12.737984 18.413638 L 17.546846 25.430491 M 18.387611 17.914679 L 23.369341 24.809739 M 24.005808 17.156419 L 29.392205 23.733245 M 29.565072 16.06421 L 35.371852 22.275657 M 35.037903 14.583049 L 41.257208 20.381971 M 40.388941 12.716865 L 46.981482 18.087547 M 45.610328 10.508874 L 52.536818 15.443458 M 50.709922 8.033724 L 57.903571 12.571499 M 55.695581 5.338562 L 63.007094 9.683824 M 60.598734 2.490175 L 68.012397 6.66257 M 65.427241 -0.487862 L 72.927337 3.519523 M 70.181099 -3.571977 L 77.763701 0.278256 M 74.887813 -6.766099 L 82.545061 -3.065161 M 79.51595 -10.038797 L 87.239988 -6.487153 M 84.081226 -13.390071 L 91.875983 -9.983793 M 88.595427 -16.812063 L 96.445187 -13.551152 M 93.050696 -20.304775 L 100.959389 -17.177443 M 97.474535 -23.856418 L 105.430374 -20.84695 M 101.882659 -27.459136 L 109.834568 -24.453597 M 106.239708 -31.046138 L 114.203404 -28.064172 M 110.624259 -34.656714 L 118.587955 -31.674748 M 115.00881 -38.267289 L 122.972506 -35.281394 M 119.432649 -41.787502 L 127.298124 -38.554092 M 123.997925 -45.170207 L 131.773038 -41.724641 M 128.712495 -48.29361 L 136.240093 -44.337299 M 133.64708 -51.09485 L 140.848586 -46.57672 M 138.793819 -53.444278 L 145.386361 -48.077525 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.53933 -4.393098 L 84.281595 -4.393098 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.53933 -4.393098 L 68.790301 2.973419 M 70.208601 -4.393098 L 74.459572 2.973419 M 75.877872 -4.393098 L 80.128844 2.973419 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281595 -28.347047 L 133.890666 -28.347047 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281595 -28.347047 L 88.532566 -20.98053 M 89.950866 -28.347047 L 94.201837 -20.98053 M 95.620138 -28.347047 L 99.871109 -20.98053 M 101.289409 -28.347047 L 105.54038 -20.98053 M 106.95868 -28.347047 L 111.209651 -20.98053 M 112.627952 -28.347047 L 116.878923 -20.98053 M 118.297223 -28.347047 L 122.548194 -20.98053 M 123.966494 -28.347047 L 128.217466 -20.98053 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.890666 -56.693403 L 148.824069 -56.693403 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.890666 -56.693403 L 138.141637 -49.330815 M 139.559937 -56.693403 L 143.810908 -49.330815 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.283954 -141.736402 L 14.930259 -28.347047 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.283954 -141.736402 L -87.026263 -133.686273 M -80.539799 -137.457929 L -83.282108 -129.4078 M -76.799573 -133.179456 L -79.541881 -125.133255 M -73.055418 -128.904912 L -75.797727 -120.854783 M -69.315192 -124.626439 L -72.0575 -116.57631 M -65.571037 -120.347966 L -68.313345 -112.301765 M -61.826882 -116.073422 L -64.569191 -108.023292 M -58.086656 -111.794949 L -60.828964 -103.744819 M -54.342501 -107.516476 L -57.084809 -99.470275 M -50.598346 -103.241932 L -53.340654 -95.191802 M -46.85812 -98.963459 L -49.600428 -90.913329 M -43.113965 -94.684986 L -45.856273 -86.638785 M -39.36981 -90.410442 L -42.112118 -82.360312 M -35.629584 -86.131969 L -38.371892 -78.081839 M -31.885429 -81.857425 L -34.627737 -73.807295 M -28.141274 -77.578952 L -30.883582 -69.528822 M -24.401048 -73.300479 L -27.143356 -65.250349 M -20.656893 -69.025935 L -23.399201 -60.975805 M -16.912738 -64.747462 L -19.655046 -56.697332 M -13.172512 -60.468989 L -15.91482 -52.418859 M -9.428357 -56.194445 L -12.170665 -48.144315 M -5.684202 -51.915972 L -8.42651 -43.865842 M -1.943976 -47.637499 L -4.686284 -39.587369 M 1.800179 -43.362954 L -0.942129 -35.312825 M 5.540406 -39.084481 L 2.798097 -31.034352 M 9.28456 -34.806009 L 6.542252 -26.755879 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -17.230971 0.0543135 L -5.711703 0.156462 L 1.639098 0.301828 L 7.198363 0.49434 L 11.967937 0.749713 L 16.136403 1.060089 L 19.911989 1.433325 L 23.487205 1.877281 L 27.26279 2.4391 L 32.028436 3.248435 L 36.79801 4.042055 L 39.178868 4.344573 L 40.966476 4.489939 L 42.553715 4.533156 L 43.944513 4.489939 L 45.335312 4.35243 L 46.529669 4.15599 L 47.720099 3.880973 L 48.910528 3.515594 L 50.301326 2.985205 L 51.692124 2.333023 L 53.082923 1.566905 L 54.67409 0.56113 L 56.45777 -0.715733 L 58.445747 -2.287257 L 60.630165 -4.177014 L 63.211392 -6.56573 L 66.393728 -9.689133 L 70.365753 -13.779023 L 75.528208 -19.291142 L 82.87901 -27.3452 L 103.933497 -50.529102 L 109.296322 -56.194445 L 113.665157 -60.63007 L 117.440743 -64.279933 L 120.619149 -67.187252 L 123.597186 -69.744907 L 126.178414 -71.81146 L 128.759641 -73.72479 L 131.144428 -75.343459 L 133.328846 -76.698899 L 135.513264 -77.932545 L 137.697682 -79.03654 L 139.882099 -80.018742 L 142.070446 -80.890938 L 144.254864 -81.649198 L 146.439282 -82.309238 L 148.824069 -82.92999 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -33.519813 -85.149767 L -15.246923 -64.362438 L 19.118369 -25.274718 L 27.26279 -16.210956 L 32.228805 -10.863847 L 35.804021 -7.19041 L 38.581689 -4.510963 L 40.766107 -2.566202 L 42.754084 -0.95539 L 44.541692 0.337188 L 46.13286 1.339034 L 47.523658 2.089436 L 48.910528 2.721975 L 50.301326 3.236649 L 51.692124 3.625601 L 53.082923 3.908475 L 54.473721 4.0892 L 55.86452 4.179563 L 57.451758 4.191349 L 59.239366 4.108844 L 61.227344 3.928119 L 63.804642 3.598099 L 68.177407 2.930202 L 74.13741 2.042291 L 78.109436 1.539403 L 81.885021 1.15438 L 85.857047 0.832218 L 90.225883 0.572916 L 95.191897 0.368618 L 101.35227 0.207537 L 109.296322 0.0975304 L 121.015959 0.0268118 L 143.854125 -0.00461868 L 148.824069 -0.00854749 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="109.580442" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="115.224536" y="146.951342"/>
<use xlink:href="#glyph3-3" x="119.104479" y="146.951342"/>
<use xlink:href="#glyph3-4" x="123.507427" y="146.951342"/>
<use xlink:href="#glyph3-5" x="128.735495" y="146.951342"/>
<use xlink:href="#glyph3-3" x="134.237942" y="146.951342"/>
<use xlink:href="#glyph3-6" x="138.640891" y="146.951342"/>
<use xlink:href="#glyph3-7" x="144.143338" y="146.951342"/>
<use xlink:href="#glyph3-8" x="148.546286" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-9" x="157.062945" y="146.951342"/>
<use xlink:href="#glyph3-10" x="159.814664" y="146.951342"/>
<use xlink:href="#glyph3-11" x="167.24371" y="146.951342"/>
<use xlink:href="#glyph3-12" x="171.646659" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.127019" y="87.445991"/>
<use xlink:href="#glyph4-2" x="11.127019" y="78.365715"/>
<use xlink:href="#glyph4-3" x="11.127019" y="73.413017"/>
<use xlink:href="#glyph4-4" x="11.127019" y="68.46032"/>
<use xlink:href="#glyph4-5" x="11.127019" y="62.957873"/>
<use xlink:href="#glyph4-6" x="11.127019" y="60.206154"/>
<use xlink:href="#glyph4-7" x="11.127019" y="56.353945"/>
<use xlink:href="#glyph4-8" x="11.127019" y="50.851498"/>
<use xlink:href="#glyph4-9" x="11.127019" y="45.349051"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -0,0 +1,198 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\setlength\fwidth{7cm}
\setlength\fheight{4cm}
\begin{tikzpicture}
\begin{axis}[%
name=axis,
width=\fwidth,
height=\fheight,
at={(0, 0)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
every x tick/.append style={black},
xmode=log,
xmin=0.1,
xmax=1000,
xminorticks=true,
xlabel={Frequency [Hz]},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
every y tick/.append style={black},
ymode=log,
ymin=0.001,
ymax=10,
yminorticks=true,
ylabel={Magnitude},
axis background/.style={fill=white},
xmajorgrids,
xminorgrids,
ymajorgrids,
yminorgrids
]
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
0.1 4.7609074288834\\
0.457784053837662 4.74112847250108\\
0.781435060784454 4.70208061093208\\
1.0991097009295 4.64559165613624\\
1.42283045721435 4.57144906349989\\
1.75891659032773 4.47927616460061\\
2.09566239948043 4.37423445322045\\
2.45126006203334 4.25274519592358\\
2.8408836901833 4.11095719445138\\
3.26222200971167 3.95170788088451\\
3.71167181947577 3.77948905141281\\
4.18428850790158 3.59988757314696\\
4.71708469091702 3.40317136463527\\
5.31772317785097 3.19223684289429\\
5.99484250318941 2.97087790006113\\
6.82077673286568 2.72585419958062\\
7.76050333513357 2.47949503869403\\
8.9114823228402 2.2201435349723\\
10.3279473191895 1.95491825546796\\
12.0804213467733 1.69160934903556\\
14.3932264471941 1.42447068049222\\
17.3076553419573 1.17667603248786\\
21.1995345753607 0.943491337665097\\
26.2070669648385 0.740920673515988\\
32.6974974451177 0.569453372601831\\
41.1731993116168 0.427919272009563\\
51.8459354389291 0.317863515154134\\
65.8898955079995 0.230558428152838\\
85.2964449974102 0.1611173349527\\
114.566872863487 0.105607825522203\\
228.74908173557 0.0390036255196556\\
272.543253128103 0.0307810979565345\\
315.863540826782 0.025500739341156\\
359.381366380463 0.0218605610825003\\
405.142317111465 0.0191453206052172\\
452.538627817017 0.0171066280251345\\
505.479682119124 0.0154393411147139\\
559.432570616938 0.0141825204910006\\
619.144175597784 0.0131421696026314\\
685.229159528406 0.012282656024432\\
758.367791499719 0.0115737646620205\\
847.08682665574 0.0109423524789141\\
946.1848194722 0.0104322816237634\\
1000 0.0102154679782451\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
20 0.7\\
50 0.7\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
50 0.1\\
500 0.1\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
500 0.01\\
1000 0.01\\
};
\addplot [color=S, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
0.02 1e-05\\
2 0.1\\
};
\addplot [color=T, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 1.00020952606124\\
0.449420266211914 1.00439444056532\\
0.76715811767793 1.01272784524132\\
1.07902879151618 1.02491454851703\\
1.39683511798874 1.04114413762629\\
1.74277467840892 1.06277127886704\\
2.1150728248688 1.09005589290585\\
2.52000499376409 1.12358430111627\\
2.97490754721444 1.1647515613402\\
3.54445567397044 1.21915995877579\\
4.4222739805059 1.30220386269588\\
5.51749237612913 1.38869606135927\\
6.16296625513294 1.42329223210868\\
6.69616005485322 1.44002371458486\\
7.20871503378214 1.4451033802025\\
7.68928372075831 1.43993984995528\\
8.2018894992022 1.42428828042971\\
8.66837993001978 1.40175058285261\\
9.16140245713852 1.37050262756076\\
9.68246611930312 1.33069793321537\\
10.3279473191895 1.27424467776163\\
11.0164594963366 1.20854214707295\\
11.7508713090481 1.13570495506675\\
12.650337203959 1.04677883765563\\
13.7447909267754 0.943679050123237\\
15.0722530931076 0.830394240297457\\
16.6810053720006 0.712414936441653\\
18.8050405512858 0.586622272210216\\
21.7940698430296 0.455264142531017\\
26.2070669648385 0.326579283518924\\
33.3060034362459 0.208672671063449\\
46.8458011587305 0.108471783502643\\
124.478714618791 0.0164997756678873\\
159.662602210143 0.0104152887225431\\
195.565071586595 0.0072640647690405\\
233.006141069692 0.00540031929981286\\
270.042071883777 0.00426457540484721\\
310.092663593193 0.00346444056474815\\
349.577557436328 0.0029289521926441\\
394.090164040345 0.00250741699876454\\
440.193518520887 0.00219836200013106\\
487.178021879463 0.00196912938874112\\
539.17746403875 0.00178183136845956\\
596.727119597332 0.00162874587725399\\
660.419396233031 0.00150356016008975\\
730.909932860291 0.00140111130596261\\
808.924348680594 0.00131717393449145\\
895.26571259964 0.00124828640279652\\
1000 0.00118697716847575\\
};
\addplot [color=S, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.211020342856859 0.000991355164946403\\
0.492824957004051 0.00536343282029864\\
2.42876438246045 0.128327524780232\\
3.54445567397044 0.267992154829373\\
4.4632339267104 0.413805848676621\\
5.26892142135068 0.557587736797486\\
5.99484250318941 0.693160496305138\\
6.63470812109235 0.81193792953703\\
7.27548352919623 0.925424392834698\\
7.90492762269643 1.02770565894096\\
8.51000724712225 1.11478829979149\\
9.07732652521023 1.18510732855918\\
9.68246611930312 1.24761337860369\\
10.3279473191895 1.30053311262914\\
11.0164594963366 1.34273501848344\\
11.7508713090481 1.37382109949711\\
12.534242654614 1.39409360664554\\
13.3698374182495 1.4044213762404\\
14.3932264471941 1.40566001105301\\
15.6384675830225 1.39616695613207\\
17.1488196987054 1.37570643727067\\
19.3324228755505 1.33943394453979\\
23.6796006783308 1.26895368211008\\
31.2244282309286 1.18029446890997\\
37.5469422407334 1.13328156575089\\
44.7353305449847 1.09818850827496\\
53.793615039807 1.07013138018377\\
65.8898955079995 1.04777741305257\\
82.9695852083491 1.03046080493667\\
110.418805085416 1.01711094138512\\
159.662602210143 1.00783805748313\\
275.067600790807 1.00210387254234\\
794.145171902934 0.999522245381891\\
1000 0.999396233385764\\
};
\end{axis}
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,366 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="252.56pt" height="154.11pt" viewBox="0 0 252.56 154.11" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.828125 -0.3125 C 2.9375 -0.3125 2.90625 -0.421875 2.90625 -0.78125 L 2.90625 -6.34375 C 2.90625 -6.578125 2.90625 -6.59375 2.6875 -6.59375 C 2.078125 -5.96875 1.203125 -5.96875 0.875 -5.96875 L 0.875 -5.65625 C 1.078125 -5.65625 1.671875 -5.65625 2.171875 -5.90625 L 2.171875 -0.78125 C 2.171875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.28125 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.9375 -0.03125 3.796875 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.5 -4.75 4.15625 -5.484375 C 3.703125 -6.4375 2.890625 -6.59375 2.484375 -6.59375 C 1.875 -6.59375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.734375 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.421875 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.75 0.015625 4.1875 -0.9375 C 4.5 -1.609375 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.28125 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.90625 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.28125 C 1.203125 -3.921875 1.203125 -4.578125 1.28125 -5.109375 C 1.46875 -6.296875 2.21875 -6.375 2.46875 -6.375 C 2.796875 -6.375 3.453125 -6.203125 3.640625 -5.21875 C 3.734375 -4.671875 3.734375 -3.90625 3.734375 -3.28125 Z M 3.734375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.4375 -1.734375 C 5.4375 -1.90625 5.28125 -1.90625 5.1875 -1.90625 L 1 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.5625 0.921875 -1.5625 1 -1.5625 L 5.1875 -1.5625 C 5.265625 -1.5625 5.4375 -1.5625 5.4375 -1.734375 Z M 5.4375 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.40625 C 2.328125 -4.59375 2.3125 -4.609375 2.109375 -4.609375 C 1.671875 -4.171875 1.046875 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.578125 -2.21875 C 3.578125 -2.96875 3.484375 -3.53125 3.171875 -4.015625 C 2.953125 -4.328125 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.578125 0.140625 3.578125 -1.71875 3.578125 -2.21875 Z M 2.953125 -2.296875 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 0.984375 -1.21875 0.984375 -1.796875 0.984375 -2.296875 C 0.984375 -2.8125 0.984375 -3.34375 1.09375 -3.71875 C 1.234375 -4.265625 1.6875 -4.40625 1.96875 -4.40625 C 2.34375 -4.40625 2.703125 -4.1875 2.828125 -3.78125 C 2.9375 -3.40625 2.953125 -2.90625 2.953125 -2.296875 Z M 2.953125 -2.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.25 -1.109375 3.171875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.421875 2.515625 -1.75 C 3.03125 -2.171875 3.5 -2.59375 3.5 -3.25 C 3.5 -4.09375 2.765625 -4.609375 1.875 -4.609375 C 1.015625 -4.609375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3.015625 0.734375 -2.96875 0.8125 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.46875 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.203125 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.65625 2.40625 -2.171875 2.171875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.5 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.125 -2.28125 2.359375 -2.4375 C 3.09375 -2.703125 3.34375 -3.21875 3.34375 -3.65625 C 3.34375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.171875 -4.609375 0.59375 -4.234375 0.59375 -3.671875 C 0.59375 -3.4375 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.296875 -3.46875 1.296875 -3.65625 C 1.296875 -3.859375 1.171875 -4.015625 0.953125 -4.03125 C 1.1875 -4.328125 1.671875 -4.40625 1.921875 -4.40625 C 2.234375 -4.40625 2.671875 -4.25 2.671875 -3.65625 C 2.671875 -3.359375 2.578125 -3.03125 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.625 -2.53125 C 1.453125 -2.515625 1.4375 -2.515625 1.40625 -2.5 C 1.40625 -2.5 1.34375 -2.484375 1.34375 -2.421875 C 1.34375 -2.3125 1.40625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.4375 -2.3125 2.828125 -1.9375 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.046875 -4.5 L 5.765625 -6.734375 L 0.328125 -6.734375 L 0.328125 -6.421875 L 0.5625 -6.421875 C 1.328125 -6.421875 1.34375 -6.3125 1.34375 -5.96875 L 1.34375 -0.765625 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.828125 -0.03125 C 2.234375 -0.03125 3.140625 -0.03125 3.5 0 L 3.5 -0.3125 L 3.171875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.21875 L 3.078125 -3.21875 C 4.03125 -3.21875 4.125 -2.90625 4.125 -2.0625 L 4.375 -2.0625 L 4.375 -4.6875 L 4.125 -4.6875 C 4.125 -3.859375 4.03125 -3.53125 3.078125 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.03125 C 2.234375 -6.359375 2.25 -6.421875 2.71875 -6.421875 L 3.90625 -6.421875 C 5.390625 -6.421875 5.640625 -5.875 5.796875 -4.5 Z M 6.046875 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.375 2.875 -4.375 C 2.15625 -4.375 1.796875 -3.71875 1.65625 -3.28125 L 1.65625 -4.375 L 0.28125 -4.265625 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.890625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.796875 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.765625 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.15625 2.875 -4.15625 C 2.9375 -4.15625 2.96875 -4.15625 2.984375 -4.15625 C 2.953125 -4.140625 2.75 -4.015625 2.75 -3.765625 C 2.75 -3.484375 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.453125 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.890625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.5 -0.140625 2.609375 -0.140625 2.515625 -0.140625 C 2.015625 -0.140625 1.625 -0.4375 1.390625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.28125 L 3.859375 -2.28125 C 4.078125 -2.28125 4.109375 -2.28125 4.109375 -2.5 C 4.109375 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.171875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.109375 -0.984375 4.109375 -1.171875 Z M 3.453125 -2.5 L 1.109375 -2.5 C 1.171875 -3.96875 2 -4.21875 2.34375 -4.21875 C 3.359375 -4.21875 3.453125 -2.875 3.453125 -2.5 Z M 3.453125 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 5.21875 1.921875 L 5.21875 1.609375 C 4.5625 1.609375 4.453125 1.609375 4.453125 1.171875 L 4.453125 -4.375 L 4.234375 -4.375 L 3.859375 -3.484375 C 3.71875 -3.75 3.3125 -4.375 2.53125 -4.375 C 1.375 -4.375 0.34375 -3.421875 0.34375 -2.125 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.140625 0.109375 3.546875 -0.3125 3.765625 -0.609375 L 3.765625 1.171875 C 3.765625 1.609375 3.65625 1.609375 2.984375 1.609375 L 2.984375 1.921875 L 4.09375 1.890625 Z M 3.796875 -1.34375 C 3.796875 -1.03125 3.609375 -0.75 3.390625 -0.515625 C 3.265625 -0.375 2.953125 -0.109375 2.484375 -0.109375 C 1.765625 -0.109375 1.15625 -0.984375 1.15625 -2.125 C 1.15625 -3.3125 1.859375 -4.125 2.578125 -4.125 C 3.375 -4.125 3.796875 -3.265625 3.796875 -2.75 Z M 3.796875 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.375 L 3.078125 -4.265625 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.890625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.640625 -0.109375 C 1.8125 -0.109375 1.765625 -0.578125 1.765625 -1.09375 L 1.765625 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.046875 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.78125 -0.3125 4.53125 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.34375 4.53125 -3.65625 4.21875 -4.015625 C 4.078125 -4.1875 3.75 -4.375 3.1875 -4.375 C 2.453125 -4.375 1.984375 -3.953125 1.71875 -3.34375 L 1.71875 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.890625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -2.578125 C 1.765625 -3.609375 2.484375 -4.15625 3.109375 -4.15625 C 3.734375 -4.15625 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.1875 -0.03125 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.890625 -1.28125 3.875 -1.234375 3.859375 -1.171875 C 3.5625 -0.25 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.1875 2.5 -4.1875 C 2.578125 -4.1875 3.203125 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.265625 -2.90625 3.546875 -2.90625 C 3.796875 -2.90625 4 -3.078125 4 -3.375 C 4 -4.046875 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.109375 -1.078125 4.109375 -1.171875 Z M 4.109375 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 5.03125 -3.96875 L 5.03125 -4.265625 C 4.796875 -4.25 4.515625 -4.234375 4.296875 -4.234375 L 3.421875 -4.265625 L 3.421875 -3.96875 C 3.734375 -3.953125 3.890625 -3.78125 3.890625 -3.53125 C 3.890625 -3.4375 3.890625 -3.421875 3.828125 -3.296875 L 2.828125 -0.859375 L 1.734375 -3.53125 C 1.6875 -3.625 1.671875 -3.671875 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.265625 L 1.15625 -4.234375 C 0.875 -4.234375 0.484375 -4.25 0.1875 -4.265625 L 0.1875 -3.96875 C 0.65625 -3.96875 0.859375 -3.96875 0.984375 -3.609375 L 2.484375 0 L 2.234375 0.578125 C 2.015625 1.125 1.734375 1.8125 1.09375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.015625 1.375 1.015625 1.21875 C 1.015625 0.953125 0.828125 0.796875 0.609375 0.796875 C 0.40625 0.796875 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.09375 2.03125 C 1.71875 2.03125 2.125 1.46875 2.375 0.90625 L 4.109375 -3.328125 C 4.375 -3.953125 4.875 -3.96875 5.03125 -3.96875 Z M 5.03125 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.078125 L 1.5625 2.078125 L 1.5625 -7.03125 L 2.53125 -7.03125 L 2.53125 -7.4375 L 1.171875 -7.4375 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 7.09375 0 L 7.09375 -0.3125 L 6.859375 -0.3125 C 6.09375 -0.3125 6.078125 -0.421875 6.078125 -0.765625 L 6.078125 -6 C 6.078125 -6.34375 6.09375 -6.453125 6.859375 -6.453125 L 7.09375 -6.453125 L 7.09375 -6.765625 C 6.75 -6.734375 6.015625 -6.734375 5.640625 -6.734375 C 5.265625 -6.734375 4.515625 -6.734375 4.171875 -6.765625 L 4.171875 -6.453125 L 4.40625 -6.453125 C 5.171875 -6.453125 5.1875 -6.34375 5.1875 -6 L 5.1875 -3.671875 L 2.234375 -3.671875 L 2.234375 -6 C 2.234375 -6.34375 2.25 -6.453125 3.015625 -6.453125 L 3.25 -6.453125 L 3.25 -6.765625 C 2.90625 -6.734375 2.171875 -6.734375 1.796875 -6.734375 C 1.421875 -6.734375 0.671875 -6.734375 0.328125 -6.765625 L 0.328125 -6.453125 L 0.5625 -6.453125 C 1.328125 -6.453125 1.34375 -6.34375 1.34375 -6 L 1.34375 -0.765625 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.765625 L 2.234375 -3.375 L 5.1875 -3.375 L 5.1875 -0.765625 C 5.1875 -0.421875 5.171875 -0.3125 4.40625 -0.3125 L 4.171875 -0.3125 L 4.171875 0 C 4.515625 -0.03125 5.25 -0.03125 5.625 -0.03125 C 6 -0.03125 6.75 -0.03125 7.09375 0 Z M 7.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 3.96875 -1.859375 L 3.71875 -1.859375 C 3.640625 -0.6875 3.421875 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.859375 -3.96875 C 3.953125 -4.078125 3.953125 -4.09375 3.953125 -4.140625 C 3.953125 -4.265625 3.875 -4.265625 3.6875 -4.265625 L 0.53125 -4.265625 L 0.421875 -2.671875 L 0.65625 -2.671875 C 0.71875 -3.6875 0.90625 -4.046875 2 -4.046875 L 3.125 -4.046875 L 0.359375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.796875 0 Z M 3.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.4375 L 0.21875 -7.4375 L 0.21875 -7.03125 L 1.171875 -7.03125 L 1.171875 2.078125 L 0.21875 2.078125 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -8.703125 L -0.3125 -8.703125 L -0.3125 -8.46875 C -0.3125 -7.703125 -0.421875 -7.6875 -0.765625 -7.6875 L -6 -7.6875 C -6.34375 -7.6875 -6.453125 -7.703125 -6.453125 -8.46875 L -6.453125 -8.703125 L -6.765625 -8.703125 L -6.765625 -7.03125 C -6.765625 -6.78125 -6.75 -6.78125 -6.578125 -6.703125 L -1 -4.53125 L -6.546875 -2.390625 C -6.765625 -2.296875 -6.765625 -2.265625 -6.765625 -2.046875 L -6.765625 -0.359375 L -6.453125 -0.359375 L -6.453125 -0.609375 C -6.453125 -1.359375 -6.34375 -1.390625 -6 -1.390625 L -1.046875 -1.390625 C -0.765625 -1.390625 -0.3125 -1.390625 -0.3125 -0.359375 L 0 -0.359375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.765625 -1.671875 -1.046875 -1.671875 L -6.375 -1.671875 L -0.21875 -4.0625 C -0.09375 -4.109375 0 -4.15625 0 -4.265625 C 0 -4.375 -0.078125 -4.390625 -0.1875 -4.4375 L -6.453125 -6.875 L -6.453125 -6.890625 L -0.765625 -6.890625 C -0.421875 -6.890625 -0.3125 -6.859375 -0.3125 -6.109375 L -0.3125 -5.859375 L 0 -5.859375 C -0.03125 -6.234375 -0.03125 -6.90625 -0.03125 -7.296875 C -0.03125 -7.671875 -0.03125 -8.34375 0 -8.703125 Z M 0 -8.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -0.875 -4.78125 L -1.4375 -4.78125 L -1.4375 -4.53125 L -0.875 -4.53125 C -0.3125 -4.53125 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.71875 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.890625 -3.453125 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.09375 C -4.4375 -1.28125 -3.96875 -0.609375 -3.3125 -0.609375 C -3.015625 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.046875 -1.515625 -3.3125 -1.515625 C -3.421875 -1.515625 -3.75 -1.46875 -3.765625 -1.015625 C -4.109375 -1.28125 -4.21875 -1.765625 -4.21875 -2.078125 C -4.21875 -2.5625 -3.828125 -3.125 -2.953125 -3.125 L -2.578125 -3.125 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.234375 0.0625 -3.5 0.0625 -3.96875 C 0.0625 -4.1875 -0.078125 -4.78125 -0.875 -4.78125 Z M -1.390625 -3.125 C -0.453125 -3.125 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.3125 -1.5 -2.375 -3.125 Z M -1.390625 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M -4 -4.796875 C -4.171875 -4.796875 -4.484375 -4.6875 -4.484375 -4.296875 C -4.484375 -4.09375 -4.421875 -3.671875 -4.015625 -3.25 C -4.34375 -2.828125 -4.375 -2.421875 -4.375 -2.203125 C -4.375 -1.28125 -3.6875 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.90625 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.875 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.015625 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.3125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.578125 -1.046875 -1.78125 -1.21875 C -1.5 -1.609375 -1.46875 -2.015625 -1.46875 -2.203125 C -1.46875 -3.125 -2.15625 -3.796875 -2.921875 -3.796875 C -3.28125 -3.796875 -3.65625 -3.640625 -3.890625 -3.390625 C -4.21875 -3.75 -4.265625 -4.109375 -4.265625 -4.296875 C -4.265625 -4.296875 -4.265625 -4.359375 -4.265625 -4.390625 C -4.21875 -4.28125 -4.109375 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.515625 C -3.703125 -4.609375 -3.78125 -4.796875 -4 -4.796875 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.046875 -2.09375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.6875 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.5 -1.34375 -3.75 -1.5 C -3.875 -1.578125 -4.15625 -1.796875 -4.15625 -2.203125 C -4.15625 -3.0625 -3.15625 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.46875 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.78125 -0.3125 -4.53125 -0.609375 -4.53125 L -2.5 -4.53125 C -3.34375 -4.53125 -3.65625 -4.53125 -4.015625 -4.21875 C -4.1875 -4.078125 -4.375 -3.75 -4.375 -3.1875 C -4.375 -2.453125 -3.953125 -1.984375 -3.34375 -1.71875 L -4.375 -1.71875 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.890625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.875 -0.3125 -1.765625 -0.75 -1.765625 L -2.578125 -1.765625 C -3.609375 -1.765625 -4.15625 -2.484375 -4.15625 -3.109375 C -4.15625 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.1875 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.375 -1.75 L -4.265625 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -5.984375 -1.90625 C -6.25 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -5.984375 -0.84375 C -5.71875 -0.84375 -5.453125 -1.0625 -5.453125 -1.359375 C -5.453125 -1.703125 -5.734375 -1.90625 -5.984375 -1.90625 Z M -5.984375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M -1.234375 -3.28125 L -1.796875 -3.28125 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.125 L -4.265625 -3.125 L -4.265625 -1.71875 L -6.09375 -1.71875 L -6.09375 -1.46875 C -5.28125 -1.453125 -4.21875 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.28125 -1.234375 -3.28125 Z M -1.234375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.609375 -0.375 -4.53125 -0.859375 -4.53125 L -4.375 -4.53125 L -4.265625 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.765625 -3.890625 -3.84375 -3.40625 -3.84375 L -1.640625 -3.84375 C -0.78125 -3.84375 -0.109375 -3.375 -0.109375 -2.640625 C -0.109375 -1.8125 -0.578125 -1.765625 -1.09375 -1.765625 L -4.375 -1.765625 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.046875 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.59375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.875 L 0.109375 -3.875 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 0 -5.21875 L -0.3125 -5.21875 C -0.3125 -4.53125 -0.375 -4.453125 -0.859375 -4.453125 L -6.875 -4.453125 L -6.765625 -3.015625 L -6.453125 -3.015625 C -6.453125 -3.71875 -6.390625 -3.796875 -5.90625 -3.796875 L -3.765625 -3.796875 C -4.125 -3.5 -4.375 -3.078125 -4.375 -2.546875 C -4.375 -1.375 -3.40625 -0.34375 -2.125 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.515625 -0.546875 -3.765625 L 0.109375 -3.765625 Z M -1.171875 -3.765625 C -0.984375 -3.765625 -0.96875 -3.765625 -0.796875 -3.65625 C -0.328125 -3.359375 -0.109375 -2.90625 -0.109375 -2.484375 C -0.109375 -2.046875 -0.359375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.484375 -1.15625 -3.078125 -1.171875 -3.53125 -1.46875 C -3.828125 -1.671875 -4.15625 -2.046875 -4.15625 -2.578125 C -4.15625 -2.9375 -4.015625 -3.34375 -3.5625 -3.65625 C -3.390625 -3.765625 -3.375 -3.765625 -3.203125 -3.765625 Z M -1.171875 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M -1.171875 -4.109375 C -1.28125 -4.109375 -1.296875 -4.03125 -1.296875 -3.984375 C -1.296875 -3.890625 -1.234375 -3.875 -1.15625 -3.859375 C -0.140625 -3.5 -0.140625 -2.609375 -0.140625 -2.515625 C -0.140625 -2.015625 -0.4375 -1.625 -0.796875 -1.390625 C -1.28125 -1.09375 -1.9375 -1.09375 -2.28125 -1.09375 L -2.28125 -3.859375 C -2.28125 -4.078125 -2.28125 -4.109375 -2.5 -4.109375 C -3.484375 -4.109375 -4.4375 -3.578125 -4.4375 -2.34375 C -4.4375 -1.1875 -3.421875 -0.28125 -2.171875 -0.28125 C -0.859375 -0.28125 0.109375 -1.3125 0.109375 -2.453125 C 0.109375 -3.671875 -0.984375 -4.109375 -1.171875 -4.109375 Z M -2.5 -3.453125 L -2.5 -1.109375 C -3.96875 -1.171875 -4.21875 -2 -4.21875 -2.34375 C -4.21875 -3.359375 -2.875 -3.453125 -2.5 -3.453125 Z M -2.5 -3.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 5.8125 -2.890625 C 5.8125 -3.5 5.453125 -3.5 5.421875 -3.5 C 5.234375 -3.5 5 -3.296875 5 -3.09375 C 5 -2.984375 5.046875 -2.921875 5.109375 -2.875 C 5.203125 -2.796875 5.4375 -2.59375 5.4375 -2.203125 C 5.4375 -1.984375 5.21875 -1.234375 4.984375 -0.8125 C 4.765625 -0.421875 4.5 -0.140625 4.109375 -0.140625 C 3.765625 -0.140625 3.5 -0.328125 3.5 -0.828125 C 3.5 -1.03125 3.546875 -1.265625 3.65625 -1.703125 L 3.875 -2.59375 C 3.921875 -2.78125 4.015625 -3.125 4.015625 -3.171875 C 4.015625 -3.359375 3.859375 -3.421875 3.765625 -3.421875 C 3.484375 -3.421875 3.4375 -3.21875 3.34375 -2.859375 L 3.09375 -1.84375 C 3.015625 -1.53125 2.921875 -1.171875 2.921875 -0.9375 C 2.921875 -0.890625 2.9375 -0.828125 2.9375 -0.796875 C 2.9375 -0.796875 2.71875 -0.140625 2.1875 -0.140625 C 1.875 -0.140625 1.515625 -0.265625 1.515625 -0.859375 C 1.515625 -1.25 1.703125 -1.765625 1.953125 -2.40625 C 2.03125 -2.609375 2.0625 -2.671875 2.0625 -2.8125 C 2.0625 -3.25 1.71875 -3.5 1.34375 -3.5 C 0.5625 -3.5 0.234375 -2.375 0.234375 -2.28125 C 0.234375 -2.203125 0.296875 -2.171875 0.359375 -2.171875 C 0.453125 -2.171875 0.46875 -2.21875 0.484375 -2.3125 C 0.703125 -3 1.03125 -3.265625 1.328125 -3.265625 C 1.4375 -3.265625 1.515625 -3.1875 1.515625 -3.015625 C 1.515625 -2.84375 1.453125 -2.65625 1.390625 -2.515625 C 1.078125 -1.734375 0.9375 -1.3125 0.9375 -0.953125 C 0.9375 -0.15625 1.609375 0.078125 2.15625 0.078125 C 2.296875 0.078125 2.703125 0.078125 3.03125 -0.4375 C 3.25 -0.015625 3.75 0.078125 4.09375 0.078125 C 4.796875 0.078125 5.140625 -0.59375 5.28125 -0.859375 C 5.53125 -1.375 5.8125 -2.421875 5.8125 -2.890625 Z M 5.8125 -2.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 7.25 -5.296875 C 7.25 -5.296875 7.25 -5.40625 7.125 -5.40625 C 6.96875 -5.40625 6.78125 -5.390625 6.625 -5.390625 L 6.125 -5.390625 C 5.375 -5.390625 5.171875 -5.40625 5.109375 -5.40625 C 5.078125 -5.40625 4.953125 -5.40625 4.953125 -5.265625 C 4.953125 -5.15625 5.046875 -5.15625 5.1875 -5.15625 C 5.4375 -5.15625 5.671875 -5.15625 5.671875 -5.015625 C 5.671875 -4.984375 5.671875 -4.984375 5.640625 -4.875 L 5.171875 -2.953125 L 2.609375 -2.953125 L 3.078125 -4.796875 C 3.140625 -5.078125 3.15625 -5.15625 3.734375 -5.15625 C 3.890625 -5.15625 4 -5.15625 4 -5.296875 C 4 -5.296875 3.984375 -5.40625 3.859375 -5.40625 C 3.703125 -5.40625 3.515625 -5.390625 3.359375 -5.390625 L 2.875 -5.390625 C 2.109375 -5.390625 1.90625 -5.40625 1.84375 -5.40625 C 1.8125 -5.40625 1.6875 -5.40625 1.6875 -5.265625 C 1.6875 -5.15625 1.796875 -5.15625 1.921875 -5.15625 C 2.171875 -5.15625 2.40625 -5.15625 2.40625 -5.015625 C 2.40625 -4.984375 2.40625 -4.984375 2.375 -4.875 L 1.3125 -0.625 C 1.25 -0.328125 1.234375 -0.265625 0.640625 -0.265625 C 0.484375 -0.265625 0.390625 -0.265625 0.390625 -0.109375 C 0.390625 -0.078125 0.421875 0 0.515625 0 C 0.671875 0 0.859375 -0.015625 1.015625 -0.03125 L 1.515625 -0.03125 C 2.28125 -0.03125 2.484375 0 2.546875 0 C 2.59375 0 2.703125 0 2.703125 -0.15625 C 2.703125 -0.265625 2.59375 -0.265625 2.46875 -0.265625 C 2.4375 -0.265625 2.296875 -0.265625 2.15625 -0.28125 C 2 -0.296875 1.984375 -0.3125 1.984375 -0.390625 C 1.984375 -0.421875 2 -0.46875 2 -0.515625 L 2.546875 -2.6875 L 5.09375 -2.6875 L 4.546875 -0.515625 C 4.46875 -0.265625 4.328125 -0.265625 3.859375 -0.265625 C 3.765625 -0.265625 3.65625 -0.265625 3.65625 -0.109375 C 3.65625 -0.078125 3.6875 0 3.78125 0 C 3.9375 0 4.125 -0.015625 4.28125 -0.03125 L 4.78125 -0.03125 C 5.546875 -0.03125 5.75 0 5.8125 0 C 5.859375 0 5.96875 0 5.96875 -0.15625 C 5.96875 -0.265625 5.859375 -0.265625 5.734375 -0.265625 C 5.703125 -0.265625 5.5625 -0.265625 5.421875 -0.28125 C 5.265625 -0.296875 5.25 -0.3125 5.25 -0.390625 C 5.25 -0.421875 5.265625 -0.46875 5.265625 -0.515625 L 6.328125 -4.765625 C 6.40625 -5.078125 6.421875 -5.15625 6.984375 -5.15625 C 7.15625 -5.15625 7.25 -5.15625 7.25 -5.296875 Z M 7.25 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 4.546875 -1.484375 C 4.546875 -1.546875 4.5 -1.578125 4.4375 -1.578125 C 4.359375 -1.578125 4.34375 -1.546875 4.3125 -1.46875 C 4.046875 -0.796875 3.75 -0.234375 2.6875 -0.234375 L 1.953125 -0.234375 C 1.84375 -0.234375 1.828125 -0.234375 1.75 -0.25 L 2.578125 -3.5625 C 2.625 -3.765625 2.640625 -3.8125 3.234375 -3.8125 C 3.390625 -3.8125 3.453125 -3.8125 3.453125 -3.96875 C 3.453125 -3.984375 3.4375 -4.0625 3.359375 -4.0625 C 3.21875 -4.0625 3.0625 -4.03125 2.921875 -4.03125 L 2.015625 -4.03125 C 1.875 -4.03125 1.71875 -4.0625 1.578125 -4.0625 C 1.546875 -4.0625 1.453125 -4.0625 1.453125 -3.90625 C 1.453125 -3.8125 1.53125 -3.8125 1.640625 -3.8125 C 1.75 -3.8125 1.90625 -3.8125 2.03125 -3.78125 C 2.03125 -3.71875 2.03125 -3.6875 2 -3.59375 L 1.21875 -0.5 C 1.171875 -0.28125 1.15625 -0.234375 0.71875 -0.234375 C 0.578125 -0.234375 0.5 -0.234375 0.5 -0.09375 C 0.5 0 0.578125 0 0.6875 0 L 3.828125 0 C 3.984375 0 3.984375 0 4.03125 -0.125 C 4.09375 -0.265625 4.546875 -1.453125 4.546875 -1.484375 Z M 4.546875 -1.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 5.046875 -0.15625 C 5.015625 -0.234375 4.96875 -0.234375 4.828125 -0.234375 C 4.765625 -0.234375 4.671875 -0.25 4.609375 -0.25 C 4.5 -0.265625 4.453125 -0.265625 4.453125 -0.328125 C 4.453125 -0.34375 4.46875 -0.375 4.484375 -0.4375 L 5.265625 -3.578125 C 5.3125 -3.765625 5.328125 -3.8125 5.796875 -3.8125 C 5.90625 -3.8125 5.984375 -3.8125 5.984375 -3.953125 C 5.984375 -4.015625 5.953125 -4.0625 5.890625 -4.0625 C 5.765625 -4.0625 5.625 -4.03125 5.5 -4.03125 L 4.6875 -4.03125 C 4.546875 -4.03125 4.40625 -4.0625 4.28125 -4.0625 C 4.234375 -4.0625 4.140625 -4.0625 4.140625 -3.90625 C 4.140625 -3.8125 4.234375 -3.8125 4.328125 -3.8125 C 4.4375 -3.8125 4.59375 -3.8125 4.71875 -3.78125 C 4.71875 -3.71875 4.71875 -3.6875 4.6875 -3.59375 L 4.34375 -2.234375 L 2.25 -2.234375 L 2.578125 -3.578125 C 2.625 -3.765625 2.640625 -3.8125 3.125 -3.8125 C 3.21875 -3.8125 3.3125 -3.8125 3.3125 -3.953125 C 3.3125 -4.015625 3.265625 -4.0625 3.203125 -4.0625 C 3.078125 -4.0625 2.9375 -4.03125 2.8125 -4.03125 L 2 -4.03125 C 1.875 -4.03125 1.71875 -4.0625 1.59375 -4.0625 C 1.5625 -4.0625 1.453125 -4.0625 1.453125 -3.90625 C 1.453125 -3.8125 1.546875 -3.8125 1.65625 -3.8125 C 1.75 -3.8125 1.90625 -3.8125 2.03125 -3.78125 C 2.03125 -3.71875 2.03125 -3.6875 2 -3.59375 L 1.234375 -0.5 C 1.171875 -0.28125 1.15625 -0.234375 0.71875 -0.234375 C 0.59375 -0.234375 0.578125 -0.234375 0.546875 -0.21875 C 0.515625 -0.203125 0.5 -0.125 0.5 -0.078125 C 0.5 -0.0625 0.515625 0 0.609375 0 C 0.734375 0 0.875 -0.015625 1 -0.015625 L 1.40625 -0.03125 L 1.8125 -0.015625 C 1.9375 -0.015625 2.09375 0 2.21875 0 C 2.25 0 2.296875 0 2.328125 -0.046875 C 2.328125 -0.0625 2.359375 -0.125 2.359375 -0.15625 C 2.34375 -0.234375 2.28125 -0.234375 2.15625 -0.234375 C 2.078125 -0.234375 1.984375 -0.25 1.921875 -0.25 C 1.8125 -0.265625 1.78125 -0.265625 1.78125 -0.328125 C 1.78125 -0.34375 1.78125 -0.375 1.796875 -0.4375 L 2.1875 -1.984375 L 4.28125 -1.984375 L 3.890625 -0.390625 C 3.84375 -0.28125 3.828125 -0.25 3.359375 -0.234375 C 3.265625 -0.234375 3.25 -0.234375 3.234375 -0.21875 C 3.203125 -0.1875 3.1875 -0.109375 3.1875 -0.078125 C 3.1875 -0.0625 3.1875 0 3.296875 0 C 3.421875 0 3.5625 -0.015625 3.6875 -0.015625 L 4.078125 -0.03125 L 4.5 -0.015625 C 4.625 -0.015625 4.78125 0 4.90625 0 C 4.9375 0 4.984375 0 5 -0.046875 C 5.015625 -0.0625 5.046875 -0.125 5.046875 -0.15625 Z M 5.046875 -0.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 4.96875 -1.484375 C 4.96875 -1.640625 4.828125 -1.640625 4.734375 -1.640625 L 0.96875 -1.640625 C 0.890625 -1.640625 0.75 -1.640625 0.75 -1.484375 C 0.75 -1.328125 0.890625 -1.328125 0.96875 -1.328125 L 4.734375 -1.328125 C 4.828125 -1.328125 4.96875 -1.328125 4.96875 -1.484375 Z M 4.96875 -1.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 3 0 L 3 -0.234375 L 2.75 -0.234375 C 2.125 -0.234375 2.125 -0.3125 2.125 -0.5 L 2.125 -3.765625 C 2.125 -3.953125 2.109375 -3.953125 1.9375 -3.953125 C 1.53125 -3.5625 0.9375 -3.5625 0.71875 -3.5625 L 0.71875 -3.34375 C 0.875 -3.34375 1.265625 -3.34375 1.625 -3.5 L 1.625 -0.5 C 1.625 -0.3125 1.625 -0.234375 1.015625 -0.234375 L 0.75 -0.234375 L 0.75 0 C 1.078125 -0.03125 1.546875 -0.03125 1.875 -0.03125 C 2.203125 -0.03125 2.671875 -0.03125 3 0 Z M 3 0 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43.347656 7.828125 L 240.640625 7.828125 L 240.640625 107 L 43.347656 107 Z M 43.347656 7.828125 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 43.347656 7.828125 L 240.640625 7.828125 L 240.640625 104 L 43.347656 104 Z M 43.347656 7.828125 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 225 91 L 240.640625 91 L 240.640625 93 L 225 93 Z M 225 91 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 211 71 L 240.640625 71 L 240.640625 107 L 211 107 Z M 211 71 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 43.347656 50 L 122 50 L 122 120.5625 L 43.347656 120.5625 Z M 43.347656 50 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 43.347656 48 L 116 48 L 116 120.5625 L 43.347656 120.5625 Z M 43.347656 48 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 43.347656 17 L 240.640625 17 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 17 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 45 17 L 240.640625 17 L 240.640625 120.5625 L 45 120.5625 Z M 45 17 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 43.347656 7.828125 L 240.640625 7.828125 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 7.828125 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 44 7.828125 L 172 7.828125 L 172 120.5625 L 44 120.5625 Z M 44 7.828125 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.347656 120.5625 L 240.640625 120.5625 L 240.640625 7.828125 L 43.347656 7.828125 Z M 43.347656 120.5625 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 M -34.674883 -85.03976 L -34.674883 28.345667 M -25.937212 -85.03976 L -25.937212 28.345667 M -19.74148 -85.03976 L -19.74148 28.345667 M -14.932618 -85.03976 L -14.932618 28.345667 M -11.003809 -85.03976 L -11.003809 28.345667 M -7.683965 -85.03976 L -7.683965 28.345667 M -4.808077 -85.03976 L -4.808077 28.345667 M -2.270067 -85.03976 L -2.270067 28.345667 M 0.000784861 -85.03976 L 0.000784861 28.345667 M 14.934188 -85.03976 L 14.934188 28.345667 M 23.66793 -85.03976 L 23.66793 28.345667 M 29.867591 -85.03976 L 29.867591 28.345667 M 34.672524 -85.03976 L 34.672524 28.345667 M 38.601333 -85.03976 L 38.601333 28.345667 M 41.925105 -85.03976 L 41.925105 28.345667 M 44.800994 -85.03976 L 44.800994 28.345667 M 47.339004 -85.03976 L 47.339004 28.345667 M 49.609856 -85.03976 L 49.609856 28.345667 M 64.543259 -85.03976 L 64.543259 28.345667 M 73.277001 -85.03976 L 73.277001 28.345667 M 79.476661 -85.03976 L 79.476661 28.345667 M 84.281595 -85.03976 L 84.281595 28.345667 M 88.210404 -85.03976 L 88.210404 28.345667 M 91.530247 -85.03976 L 91.530247 28.345667 M 94.410064 -85.03976 L 94.410064 28.345667 M 96.944146 -85.03976 L 96.944146 28.345667 M 99.214998 -85.03976 L 99.214998 28.345667 M 114.148401 -85.03976 L 114.148401 28.345667 M 122.886072 -85.03976 L 122.886072 28.345667 M 129.081803 -85.03976 L 129.081803 28.345667 M 133.890666 -85.03976 L 133.890666 28.345667 M 137.819475 -85.03976 L 137.819475 28.345667 M 141.139318 -85.03976 L 141.139318 28.345667 M 144.015206 -85.03976 L 144.015206 28.345667 M 146.553217 -85.03976 L 146.553217 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 M 0.000784861 -85.03976 L 0.000784861 28.345667 M 49.609856 -85.03976 L 49.609856 28.345667 M 99.214998 -85.03976 L 99.214998 28.345667 M 148.824069 -85.03976 L 148.824069 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 M -49.608286 -76.506387 L 148.824069 -76.506387 M -49.608286 -71.5168 L 148.824069 -71.5168 M -49.608286 -67.973014 L 148.824069 -67.973014 M -49.608286 -65.226776 L 148.824069 -65.226776 M -49.608286 -62.983426 L 148.824069 -62.983426 M -49.608286 -61.085812 L 148.824069 -61.085812 M -49.608286 -59.439641 L 148.824069 -59.439641 M -49.608286 -57.98991 L 148.824069 -57.98991 M -49.608286 -56.693403 L 148.824069 -56.693403 M -49.608286 -48.16003 L 148.824069 -48.16003 M -49.608286 -43.170443 L 148.824069 -43.170443 M -49.608286 -39.626657 L 148.824069 -39.626657 M -49.608286 -36.88042 L 148.824069 -36.88042 M -49.608286 -34.63707 L 148.824069 -34.63707 M -49.608286 -32.739455 L 148.824069 -32.739455 M -49.608286 -31.093284 L 148.824069 -31.093284 M -49.608286 -29.643554 L 148.824069 -29.643554 M -49.608286 -28.347047 L 148.824069 -28.347047 M -49.608286 -19.813673 L 148.824069 -19.813673 M -49.608286 -14.820157 L 148.824069 -14.820157 M -49.608286 -11.2803 L 148.824069 -11.2803 M -49.608286 -8.534063 L 148.824069 -8.534063 M -49.608286 -6.286784 L 148.824069 -6.286784 M -49.608286 -4.389169 L 148.824069 -4.389169 M -49.608286 -2.746927 L 148.824069 -2.746927 M -49.608286 -1.297197 L 148.824069 -1.297197 M -49.608286 -0.000689872 L 148.824069 -0.000689872 M -49.608286 8.532683 L 148.824069 8.532683 M -49.608286 13.526199 L 148.824069 13.526199 M -49.608286 17.066056 L 148.824069 17.066056 M -49.608286 19.812294 L 148.824069 19.812294 M -49.608286 22.059572 L 148.824069 22.059572 M -49.608286 23.957187 L 148.824069 23.957187 M -49.608286 25.599429 L 148.824069 25.599429 M -49.608286 27.04916 L 148.824069 27.04916 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 M -49.608286 -56.693403 L 148.824069 -56.693403 M -49.608286 -28.347047 L 148.824069 -28.347047 M -49.608286 -0.000689872 L 148.824069 -0.000689872 M -49.608286 28.345667 L 148.824069 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 -82.207089 M -34.674883 -85.03976 L -34.674883 -82.207089 M -25.937212 -85.03976 L -25.937212 -82.207089 M -19.74148 -85.03976 L -19.74148 -82.207089 M -14.932618 -85.03976 L -14.932618 -82.207089 M -11.003809 -85.03976 L -11.003809 -82.207089 M -7.683965 -85.03976 L -7.683965 -82.207089 M -4.808077 -85.03976 L -4.808077 -82.207089 M -2.270067 -85.03976 L -2.270067 -82.207089 M 0.000784861 -85.03976 L 0.000784861 -82.207089 M 14.934188 -85.03976 L 14.934188 -82.207089 M 23.66793 -85.03976 L 23.66793 -82.207089 M 29.867591 -85.03976 L 29.867591 -82.207089 M 34.672524 -85.03976 L 34.672524 -82.207089 M 38.601333 -85.03976 L 38.601333 -82.207089 M 41.925105 -85.03976 L 41.925105 -82.207089 M 44.800994 -85.03976 L 44.800994 -82.207089 M 47.339004 -85.03976 L 47.339004 -82.207089 M 49.609856 -85.03976 L 49.609856 -82.207089 M 64.543259 -85.03976 L 64.543259 -82.207089 M 73.277001 -85.03976 L 73.277001 -82.207089 M 79.476661 -85.03976 L 79.476661 -82.207089 M 84.281595 -85.03976 L 84.281595 -82.207089 M 88.210404 -85.03976 L 88.210404 -82.207089 M 91.530247 -85.03976 L 91.530247 -82.207089 M 94.410064 -85.03976 L 94.410064 -82.207089 M 96.944146 -85.03976 L 96.944146 -82.207089 M 99.214998 -85.03976 L 99.214998 -82.207089 M 114.148401 -85.03976 L 114.148401 -82.207089 M 122.886072 -85.03976 L 122.886072 -82.207089 M 129.081803 -85.03976 L 129.081803 -82.207089 M 133.890666 -85.03976 L 133.890666 -82.207089 M 137.819475 -85.03976 L 137.819475 -82.207089 M 141.139318 -85.03976 L 141.139318 -82.207089 M 144.015206 -85.03976 L 144.015206 -82.207089 M 146.553217 -85.03976 L 146.553217 -82.207089 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 -80.788789 M 0.000784861 -85.03976 L 0.000784861 -80.788789 M 49.609856 -85.03976 L 49.609856 -80.788789 M 99.214998 -85.03976 L 99.214998 -80.788789 M 148.824069 -85.03976 L 148.824069 -80.788789 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -46.775615 -85.03976 M -49.608286 -76.506387 L -46.775615 -76.506387 M -49.608286 -71.5168 L -46.775615 -71.5168 M -49.608286 -67.973014 L -46.775615 -67.973014 M -49.608286 -65.226776 L -46.775615 -65.226776 M -49.608286 -62.983426 L -46.775615 -62.983426 M -49.608286 -61.085812 L -46.775615 -61.085812 M -49.608286 -59.439641 L -46.775615 -59.439641 M -49.608286 -57.98991 L -46.775615 -57.98991 M -49.608286 -56.693403 L -46.775615 -56.693403 M -49.608286 -48.16003 L -46.775615 -48.16003 M -49.608286 -43.170443 L -46.775615 -43.170443 M -49.608286 -39.626657 L -46.775615 -39.626657 M -49.608286 -36.88042 L -46.775615 -36.88042 M -49.608286 -34.63707 L -46.775615 -34.63707 M -49.608286 -32.739455 L -46.775615 -32.739455 M -49.608286 -31.093284 L -46.775615 -31.093284 M -49.608286 -29.643554 L -46.775615 -29.643554 M -49.608286 -28.347047 L -46.775615 -28.347047 M -49.608286 -19.813673 L -46.775615 -19.813673 M -49.608286 -14.820157 L -46.775615 -14.820157 M -49.608286 -11.2803 L -46.775615 -11.2803 M -49.608286 -8.534063 L -46.775615 -8.534063 M -49.608286 -6.286784 L -46.775615 -6.286784 M -49.608286 -4.389169 L -46.775615 -4.389169 M -49.608286 -2.746927 L -46.775615 -2.746927 M -49.608286 -1.297197 L -46.775615 -1.297197 M -49.608286 -0.000689872 L -46.775615 -0.000689872 M -49.608286 8.532683 L -46.775615 8.532683 M -49.608286 13.526199 L -46.775615 13.526199 M -49.608286 17.066056 L -46.775615 17.066056 M -49.608286 19.812294 L -46.775615 19.812294 M -49.608286 22.059572 L -46.775615 22.059572 M -49.608286 23.957187 L -46.775615 23.957187 M -49.608286 25.599429 L -46.775615 25.599429 M -49.608286 27.04916 L -46.775615 27.04916 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -45.361243 -85.03976 M -49.608286 -56.693403 L -45.361243 -56.693403 M -49.608286 -28.347047 L -45.361243 -28.347047 M -49.608286 -0.000689872 L -45.361243 -0.000689872 M -49.608286 28.345667 L -45.361243 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="33.078249" y="132.423243"/>
<use xlink:href="#glyph0-2" x="38.030947" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="42.984042" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="49.174293" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="85.496528" y="132.423243"/>
<use xlink:href="#glyph0-2" x="90.449226" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="95.402322" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="134.819683" y="132.423243"/>
<use xlink:href="#glyph0-2" x="139.77238" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="144.725476" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="184.142837" y="132.423243"/>
<use xlink:href="#glyph0-2" x="189.095534" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="194.04863" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="233.465991" y="132.423243"/>
<use xlink:href="#glyph0-2" x="238.418688" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="243.371784" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="124.595449"/>
<use xlink:href="#glyph0-2" x="23.964184" y="124.595449"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="121.001206"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="35.10753" y="121.001206"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="96.411216"/>
<use xlink:href="#glyph0-2" x="23.964184" y="96.411216"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="92.816973"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="35.10753" y="92.816973"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="68.226983"/>
<use xlink:href="#glyph0-2" x="23.964184" y="68.226983"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="64.63274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.10753" y="64.63274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.201737" y="40.042749"/>
<use xlink:href="#glyph0-2" x="30.154434" y="40.042749"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="35.10753" y="36.448506"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.201737" y="11.858516"/>
<use xlink:href="#glyph0-2" x="30.154434" y="11.858516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.10753" y="8.264273"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 19.211186 L -16.834162 19.160111 L -5.314894 19.057962 L 2.035908 18.908668 L 7.595173 18.712227 L 12.164377 18.460783 L 15.939963 18.166123 L 19.31481 17.820388 L 22.493216 17.403934 L 25.471253 16.912833 L 28.25285 16.366728 L 30.838006 15.769549 L 33.419234 15.078079 L 36.000461 14.288388 L 38.581689 13.404406 L 41.363286 12.343628 L 44.144882 11.1807 L 47.12292 9.817404 L 50.301326 8.249809 L 53.680102 6.470058 L 57.451758 4.356359 L 61.427713 2.003003 L 65.796549 -0.715733 L 70.365753 -3.69377 L 75.131399 -6.931109 L 80.097413 -10.451322 L 85.063428 -14.109043 L 90.225883 -18.065354 L 95.789076 -22.477406 L 102.145889 -27.67522 L 117.043933 -39.940962 L 120.815589 -42.852209 L 123.993996 -45.170207 L 126.775593 -47.067821 L 129.35682 -48.698277 L 131.741607 -50.085147 L 134.126394 -51.346294 L 136.310812 -52.391357 L 138.491301 -53.330343 L 140.679648 -54.16325 L 142.860137 -54.894009 L 145.248852 -55.585479 L 147.629711 -56.1748 L 148.824069 -56.430173 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 19.211186 L -45.345528 26.569845 M -43.939015 19.203328 L -39.676257 26.558059 M -38.269743 19.191542 L -34.006986 26.550201 M -32.600472 19.183684 L -28.337714 26.542344 M -26.931201 19.175827 L -22.668443 26.534486 M -21.261929 19.167969 L -16.999172 26.522699 M -15.592658 19.148325 L -11.274897 26.475554 M -9.923387 19.097251 L -5.605626 26.424479 M -4.254115 19.03439 L 0.146151 26.314473 M 1.411227 18.920454 L 5.815422 26.196608 M 7.080499 18.727942 L 11.590771 25.937307 M 12.737984 18.413638 L 17.546846 25.430491 M 18.387611 17.914679 L 23.369341 24.809739 M 24.005808 17.156419 L 29.392205 23.733245 M 29.565072 16.06421 L 35.371852 22.275657 M 35.037903 14.583049 L 41.257208 20.381971 M 40.388941 12.716865 L 46.981482 18.087547 M 45.610328 10.508874 L 52.536818 15.443458 M 50.709922 8.033724 L 57.903571 12.571499 M 55.695581 5.338562 L 63.007094 9.683824 M 60.598734 2.490175 L 68.012397 6.66257 M 65.427241 -0.487862 L 72.927337 3.519523 M 70.181099 -3.571977 L 77.763701 0.278256 M 74.887813 -6.766099 L 82.545061 -3.065161 M 79.51595 -10.038797 L 87.239988 -6.487153 M 84.081226 -13.390071 L 91.875983 -9.983793 M 88.595427 -16.812063 L 96.445187 -13.551152 M 93.050696 -20.304775 L 100.959389 -17.177443 M 97.474535 -23.856418 L 105.430374 -20.84695 M 101.882659 -27.459136 L 109.834568 -24.453597 M 106.239708 -31.046138 L 114.203404 -28.064172 M 110.624259 -34.656714 L 118.587955 -31.674748 M 115.00881 -38.267289 L 122.972506 -35.281394 M 119.432649 -41.787502 L 127.298124 -38.554092 M 123.997925 -45.170207 L 131.773038 -41.724641 M 128.712495 -48.29361 L 136.240093 -44.337299 M 133.64708 -51.09485 L 140.848586 -46.57672 M 138.793819 -53.444278 L 145.386361 -48.077525 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.53933 -4.393098 L 84.281595 -4.393098 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.53933 -4.393098 L 68.790301 2.973419 M 70.208601 -4.393098 L 74.459572 2.973419 M 75.877872 -4.393098 L 80.128844 2.973419 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281595 -28.347047 L 133.890666 -28.347047 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281595 -28.347047 L 88.532566 -20.98053 M 89.950866 -28.347047 L 94.201837 -20.98053 M 95.620138 -28.347047 L 99.871109 -20.98053 M 101.289409 -28.347047 L 105.54038 -20.98053 M 106.95868 -28.347047 L 111.209651 -20.98053 M 112.627952 -28.347047 L 116.878923 -20.98053 M 118.297223 -28.347047 L 122.548194 -20.98053 M 123.966494 -28.347047 L 128.217466 -20.98053 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.890666 -56.693403 L 148.824069 -56.693403 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.890666 -56.693403 L 138.141637 -49.330815 M 139.559937 -56.693403 L 143.810908 -49.330815 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.283954 -141.736402 L 14.930259 -28.347047 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.283954 -141.736402 L -87.026263 -133.686273 M -80.539799 -137.457929 L -83.282108 -129.4078 M -76.799573 -133.179456 L -79.541881 -125.133255 M -73.055418 -128.904912 L -75.797727 -120.854783 M -69.315192 -124.626439 L -72.0575 -116.57631 M -65.571037 -120.347966 L -68.313345 -112.301765 M -61.826882 -116.073422 L -64.569191 -108.023292 M -58.086656 -111.794949 L -60.828964 -103.744819 M -54.342501 -107.516476 L -57.084809 -99.470275 M -50.598346 -103.241932 L -53.340654 -95.191802 M -46.85812 -98.963459 L -49.600428 -90.913329 M -43.113965 -94.684986 L -45.856273 -86.638785 M -39.36981 -90.410442 L -42.112118 -82.360312 M -35.629584 -86.131969 L -38.371892 -78.081839 M -31.885429 -81.857425 L -34.627737 -73.807295 M -28.141274 -77.578952 L -30.883582 -69.528822 M -24.401048 -73.300479 L -27.143356 -65.250349 M -20.656893 -69.025935 L -23.399201 -60.975805 M -16.912738 -64.747462 L -19.655046 -56.697332 M -13.172512 -60.468989 L -15.91482 -52.418859 M -9.428357 -56.194445 L -12.170665 -48.144315 M -5.684202 -51.915972 L -8.42651 -43.865842 M -1.943976 -47.637499 L -4.686284 -39.587369 M 1.800179 -43.362954 L -0.942129 -35.312825 M 5.540406 -39.084481 L 2.798097 -31.034352 M 9.28456 -34.806009 L 6.542252 -26.755879 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -17.230971 0.0543135 L -5.711703 0.156462 L 1.639098 0.301828 L 7.198363 0.49434 L 11.967937 0.749713 L 16.136403 1.060089 L 19.911989 1.433325 L 23.487205 1.877281 L 27.26279 2.4391 L 32.028436 3.248435 L 36.79801 4.042055 L 39.178868 4.344573 L 40.966476 4.489939 L 42.553715 4.533156 L 43.944513 4.489939 L 45.335312 4.35243 L 46.529669 4.15599 L 47.720099 3.880973 L 48.910528 3.515594 L 50.301326 2.985205 L 51.692124 2.333023 L 53.082923 1.566905 L 54.67409 0.56113 L 56.45777 -0.715733 L 58.445747 -2.287257 L 60.630165 -4.177014 L 63.211392 -6.56573 L 66.393728 -9.689133 L 70.365753 -13.779023 L 75.528208 -19.291142 L 82.87901 -27.3452 L 103.933497 -50.529102 L 109.296322 -56.194445 L 113.665157 -60.63007 L 117.440743 -64.279933 L 120.619149 -67.187252 L 123.597186 -69.744907 L 126.178414 -71.81146 L 128.759641 -73.72479 L 131.144428 -75.343459 L 133.328846 -76.698899 L 135.513264 -77.932545 L 137.697682 -79.03654 L 139.882099 -80.018742 L 142.070446 -80.890938 L 144.254864 -81.649198 L 146.439282 -82.309238 L 148.824069 -82.92999 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -33.519813 -85.149767 L -15.246923 -64.362438 L 19.118369 -25.274718 L 27.26279 -16.210956 L 32.228805 -10.863847 L 35.804021 -7.19041 L 38.581689 -4.510963 L 40.766107 -2.566202 L 42.754084 -0.95539 L 44.541692 0.337188 L 46.13286 1.339034 L 47.523658 2.089436 L 48.910528 2.721975 L 50.301326 3.236649 L 51.692124 3.625601 L 53.082923 3.908475 L 54.473721 4.0892 L 55.86452 4.179563 L 57.451758 4.191349 L 59.239366 4.108844 L 61.227344 3.928119 L 63.804642 3.598099 L 68.177407 2.930202 L 74.13741 2.042291 L 78.109436 1.539403 L 81.885021 1.15438 L 85.857047 0.832218 L 90.225883 0.572916 L 95.191897 0.368618 L 101.35227 0.207537 L 109.296322 0.0975304 L 121.015959 0.0268118 L 143.854125 -0.00461868 L 148.824069 -0.00854749 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -49.608286 19.211186 L -15.840173 19.160111 L -4.320905 19.057962 L 3.029897 18.908668 L 8.392721 18.720085 L 12.761556 18.480428 L 16.533213 18.181838 L 19.715548 17.847889 L 22.693585 17.443222 L 25.274813 17.003195 L 27.6596 16.516023 L 30.044387 15.926702 L 32.228805 15.298092 L 34.413223 14.567334 L 36.59764 13.726569 L 38.782058 12.767939 L 40.966476 11.687517 L 43.150894 10.485301 L 45.335312 9.153435 L 47.523658 7.695847 L 49.904516 5.9711 L 52.489673 3.951692 L 55.267341 1.614051 L 58.245378 -1.053611 L 61.624154 -4.25559 L 65.399739 -8.011531 L 69.968944 -12.745746 L 75.528208 -18.705749 L 83.27582 -27.207692 L 103.139878 -49.102944 L 108.699143 -55.000087 L 113.067978 -59.463214 L 116.843564 -63.13665 L 120.222339 -66.252195 L 123.200376 -68.833423 L 125.981973 -71.072844 L 128.559272 -72.994032 L 130.947988 -74.624487 L 133.132406 -75.987784 L 135.316823 -77.22143 L 137.501241 -78.333283 L 139.685659 -79.323343 L 141.870077 -80.19161 L 144.054494 -80.94987 L 146.242841 -81.605981 L 148.623699 -82.214946 L 148.824069 -82.262092 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -34.313433 -85.169411 L -17.230971 -65.745379 L 35.206842 -5.842829 L 65.19937 28.436029 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="109.580442" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="115.224536" y="146.951342"/>
<use xlink:href="#glyph3-3" x="119.104479" y="146.951342"/>
<use xlink:href="#glyph3-4" x="123.507427" y="146.951342"/>
<use xlink:href="#glyph3-5" x="128.735495" y="146.951342"/>
<use xlink:href="#glyph3-3" x="134.237942" y="146.951342"/>
<use xlink:href="#glyph3-6" x="138.640891" y="146.951342"/>
<use xlink:href="#glyph3-7" x="144.143338" y="146.951342"/>
<use xlink:href="#glyph3-8" x="148.546286" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-9" x="157.062945" y="146.951342"/>
<use xlink:href="#glyph3-10" x="159.814664" y="146.951342"/>
<use xlink:href="#glyph3-11" x="167.24371" y="146.951342"/>
<use xlink:href="#glyph3-12" x="171.646659" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.127019" y="87.445991"/>
<use xlink:href="#glyph4-2" x="11.127019" y="78.365715"/>
<use xlink:href="#glyph4-3" x="11.127019" y="73.413017"/>
<use xlink:href="#glyph4-4" x="11.127019" y="68.46032"/>
<use xlink:href="#glyph4-5" x="11.127019" y="62.957873"/>
<use xlink:href="#glyph4-6" x="11.127019" y="60.206154"/>
<use xlink:href="#glyph4-7" x="11.127019" y="56.353945"/>
<use xlink:href="#glyph4-8" x="11.127019" y="50.851498"/>
<use xlink:href="#glyph4-9" x="11.127019" y="45.349051"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.575191 58.280192 L 193.449339 58.280192 L 193.449339 108.407866 L 142.575191 108.407866 Z M 142.575191 58.280192 " transform="matrix(0.994258,0,0,-0.994258,43.348935,120.562739)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -0.00195498 0.0000210564 L 17.009788 0.0000210564 " transform="matrix(0.994258,0,0,-0.994258,188.572256,20.796896)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="207.959294" y="23.367053"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="214.001401" y="24.699359"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="219.526493" y="20.570205"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-1" x="225.249442" y="20.570205"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -0.00195498 0.0000725375 L 17.009788 0.0000725375 " transform="matrix(0.994258,0,0,-0.994258,188.572256,32.871166)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="207.959294" y="35.441323"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="214.001401" y="36.773629"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="220.885643" y="32.645469"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-1" x="226.608593" y="32.645469"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00195498 0.0000894085 L 17.009788 0.0000894085 " transform="matrix(0.994258,0,0,-0.994258,188.572256,44.339933)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="207.959294" y="46.304587"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="214.875353" y="47.636892"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00195498 0.0000716696 L 17.009788 0.0000716696 " transform="matrix(0.994258,0,0,-0.994258,188.572256,55.203196)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="207.959294" y="57.16785"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="214.875353" y="58.499162"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 63 KiB

View File

@ -0,0 +1,270 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\setlength\fwidth{7cm}
\setlength\fheight{4cm}
\begin{tikzpicture}
\begin{axis}[%
name=axis,
width=\fwidth,
height=\fheight,
at={(0, 0)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
every x tick/.append style={black},
xmode=log,
xmin=0.1,
xmax=1000,
xminorticks=true,
xlabel={Frequency [Hz]},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
every y tick/.append style={black},
ymode=log,
ymin=0.001,
ymax=10,
yminorticks=true,
ylabel={Magnitude},
axis background/.style={fill=white},
xmajorgrids,
xminorgrids,
ymajorgrids,
yminorgrids
]
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
0.1 4.7609074288834\\
0.457784053837662 4.74112847250108\\
0.781435060784454 4.70208061093208\\
1.0991097009295 4.64559165613624\\
1.42283045721435 4.57144906349989\\
1.75891659032773 4.47927616460061\\
2.09566239948043 4.37423445322045\\
2.45126006203334 4.25274519592358\\
2.8408836901833 4.11095719445138\\
3.26222200971167 3.95170788088451\\
3.71167181947577 3.77948905141281\\
4.18428850790158 3.59988757314696\\
4.71708469091702 3.40317136463527\\
5.31772317785097 3.19223684289429\\
5.99484250318941 2.97087790006113\\
6.82077673286568 2.72585419958062\\
7.76050333513357 2.47949503869403\\
8.9114823228402 2.2201435349723\\
10.3279473191895 1.95491825546796\\
12.0804213467733 1.69160934903556\\
14.3932264471941 1.42447068049222\\
17.3076553419573 1.17667603248786\\
21.1995345753607 0.943491337665097\\
26.2070669648385 0.740920673515988\\
32.6974974451177 0.569453372601831\\
41.1731993116168 0.427919272009563\\
51.8459354389291 0.317863515154134\\
65.8898955079995 0.230558428152838\\
85.2964449974102 0.1611173349527\\
114.566872863487 0.105607825522203\\
228.74908173557 0.0390036255196556\\
272.543253128103 0.0307810979565345\\
315.863540826782 0.025500739341156\\
359.381366380463 0.0218605610825003\\
405.142317111465 0.0191453206052172\\
452.538627817017 0.0171066280251345\\
505.479682119124 0.0154393411147139\\
559.432570616938 0.0141825204910006\\
619.144175597784 0.0131421696026314\\
685.229159528406 0.012282656024432\\
758.367791499719 0.0115737646620205\\
847.08682665574 0.0109423524789141\\
946.1848194722 0.0104322816237634\\
1000 0.0102154679782451\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
20 0.7\\
50 0.7\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
50 0.1\\
500 0.1\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
500 0.01\\
1000 0.01\\
};
\addplot [color=S, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
0.02 1e-05\\
2 0.1\\
};
\addplot [color=T, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 1.00020952606124\\
0.449420266211914 1.00439444056532\\
0.76715811767793 1.01272784524132\\
1.07902879151618 1.02491454851703\\
1.39683511798874 1.04114413762629\\
1.74277467840892 1.06277127886704\\
2.1150728248688 1.09005589290585\\
2.52000499376409 1.12358430111627\\
2.97490754721444 1.1647515613402\\
3.54445567397044 1.21915995877579\\
4.4222739805059 1.30220386269588\\
5.51749237612913 1.38869606135927\\
6.16296625513294 1.42329223210868\\
6.69616005485322 1.44002371458486\\
7.20871503378214 1.4451033802025\\
7.68928372075831 1.43993984995528\\
8.2018894992022 1.42428828042971\\
8.66837993001978 1.40175058285261\\
9.16140245713852 1.37050262756076\\
9.68246611930312 1.33069793321537\\
10.3279473191895 1.27424467776163\\
11.0164594963366 1.20854214707295\\
11.7508713090481 1.13570495506675\\
12.650337203959 1.04677883765563\\
13.7447909267754 0.943679050123237\\
15.0722530931076 0.830394240297457\\
16.6810053720006 0.712414936441653\\
18.8050405512858 0.586622272210216\\
21.7940698430296 0.455264142531017\\
26.2070669648385 0.326579283518924\\
33.3060034362459 0.208672671063449\\
46.8458011587305 0.108471783502643\\
124.478714618791 0.0164997756678873\\
159.662602210143 0.0104152887225431\\
195.565071586595 0.0072640647690405\\
233.006141069692 0.00540031929981286\\
270.042071883777 0.00426457540484721\\
310.092663593193 0.00346444056474815\\
349.577557436328 0.0029289521926441\\
394.090164040345 0.00250741699876454\\
440.193518520887 0.00219836200013106\\
487.178021879463 0.00196912938874112\\
539.17746403875 0.00178183136845956\\
596.727119597332 0.00162874587725399\\
660.419396233031 0.00150356016008975\\
730.909932860291 0.00140111130596261\\
808.924348680594 0.00131717393449145\\
895.26571259964 0.00124828640279652\\
1000 0.00118697716847575\\
};
\addplot [color=S, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.211020342856859 0.000991355164946403\\
0.492824957004051 0.00536343282029864\\
2.42876438246045 0.128327524780232\\
3.54445567397044 0.267992154829373\\
4.4632339267104 0.413805848676621\\
5.26892142135068 0.557587736797486\\
5.99484250318941 0.693160496305138\\
6.63470812109235 0.81193792953703\\
7.27548352919623 0.925424392834698\\
7.90492762269643 1.02770565894096\\
8.51000724712225 1.11478829979149\\
9.07732652521023 1.18510732855918\\
9.68246611930312 1.24761337860369\\
10.3279473191895 1.30053311262914\\
11.0164594963366 1.34273501848344\\
11.7508713090481 1.37382109949711\\
12.534242654614 1.39409360664554\\
13.3698374182495 1.4044213762404\\
14.3932264471941 1.40566001105301\\
15.6384675830225 1.39616695613207\\
17.1488196987054 1.37570643727067\\
19.3324228755505 1.33943394453979\\
23.6796006783308 1.26895368211008\\
31.2244282309286 1.18029446890997\\
37.5469422407334 1.13328156575089\\
44.7353305449847 1.09818850827496\\
53.793615039807 1.07013138018377\\
65.8898955079995 1.04777741305257\\
82.9695852083491 1.03046080493667\\
110.418805085416 1.01711094138512\\
159.662602210143 1.00783805748313\\
275.067600790807 1.00210387254234\\
794.145171902934 0.999522245381891\\
1000 0.999396233385764\\
};
\addplot [color=T, dashed, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 4.76100991590828\\
0.479380849508911 4.74142527327249\\
0.818300681586739 4.70271823354146\\
1.15096220088503 4.64622189875955\\
1.47628147190939 4.57452203442608\\
1.80824493487795 4.48620448383121\\
2.15443469003188 4.37981637168679\\
2.49687842888433 4.26245362773302\\
2.86719649749377 4.1246194153153\\
3.23228397818138 3.98033166957675\\
3.61041859717334 3.82486484671119\\
4.03278998219371 3.64713653765075\\
4.4632339267104 3.4647619825248\\
4.93962174387832 3.26480194796314\\
5.46685729972018 3.04925839907739\\
6.05036787939122 2.82113529913371\\
6.69616005485322 2.58433297473304\\
7.41088151564157 2.34341563310535\\
8.2018894992022 2.10327517992625\\
9.07732652521023 1.86874101690569\\
10.1392540755882 1.62441576093477\\
11.4303112911448 1.37851305256105\\
13.0051125217341 1.14008905236091\\
14.9339321612425 0.917854238055838\\
17.4679621512725 0.707763275334409\\
20.8122156998634 0.521723677525708\\
25.7282596744793 0.355127638575637\\
33.3060034362459 0.218852355295698\\
47.7176094893875 0.109683242413354\\
119.971773543588 0.0185302783860461\\
155.307057393346 0.011476348897964\\
190.230118866894 0.00798799480050497\\
226.649807927369 0.00592480300553732\\
265.108360190854 0.00460058967167214\\
304.42722120643 0.00373107031932976\\
346.369417737173 0.00310997571143914\\
390.473523688556 0.00266040632221317\\
436.153778920801 0.0023309089597649\\
482.707096560318 0.00208663214807546\\
534.229329953835 0.00188718187213126\\
591.250841383188 0.00172433492968875\\
654.358601888324 0.00159137569438841\\
724.202233460732 0.00148282003877247\\
801.50069615654 0.00139418971090831\\
887.04968896544 0.0013218279786433\\
990.82280990038 0.00125794881012626\\
1000 0.00125323629492883\\
};
\addplot [color=S, dashed, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.203380030584698 0.000989777819887578\\
0.449420266211914 0.0047942767347441\\
5.12518692705333 0.622210572704616\\
20.6212180399914 10.0725642635729\\
};
\end{axis}
\begin{customlegend}[legend cell align=left, %<= to align cells
legend entries={ % <= in the following there are the entries
${w_L}^{-1}$,
${w_H}^{-1}$,
$H_L$,
$H_H$
},
legend style={at={(axis.north east)}, anchor=north east, outer sep=5pt, font=\footnotesize}]
\addlegendimage{dashed, S}
\addlegendimage{dashed, T}
\addlegendimage{S}
\addlegendimage{T}
\end{customlegend}
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -0,0 +1,114 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="172.796pt" height="54.393pt" viewBox="0 0 172.796 54.393" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.109375 -2.578125 C 7.109375 -2.65625 7.0625 -2.6875 6.984375 -2.6875 C 6.75 -2.6875 6.171875 -2.65625 5.9375 -2.65625 L 4.5625 -2.6875 C 4.46875 -2.6875 4.359375 -2.6875 4.359375 -2.5 C 4.359375 -2.390625 4.4375 -2.390625 4.65625 -2.390625 C 4.65625 -2.390625 4.953125 -2.390625 5.171875 -2.359375 C 5.4375 -2.34375 5.484375 -2.3125 5.484375 -2.171875 C 5.484375 -2.09375 5.375 -1.640625 5.28125 -1.28125 C 5 -0.203125 3.71875 -0.09375 3.375 -0.09375 C 2.421875 -0.09375 1.390625 -0.65625 1.390625 -2.15625 C 1.390625 -2.46875 1.484375 -4.09375 2.53125 -5.375 C 3.0625 -6.046875 4.015625 -6.640625 4.984375 -6.640625 C 6 -6.640625 6.578125 -5.890625 6.578125 -4.75 C 6.578125 -4.34375 6.546875 -4.34375 6.546875 -4.234375 C 6.546875 -4.140625 6.65625 -4.140625 6.6875 -4.140625 C 6.828125 -4.140625 6.828125 -4.15625 6.875 -4.34375 L 7.5 -6.859375 C 7.5 -6.875 7.46875 -6.953125 7.390625 -6.953125 C 7.359375 -6.953125 7.34375 -6.9375 7.234375 -6.828125 L 6.546875 -6.078125 C 6.453125 -6.21875 6 -6.953125 4.90625 -6.953125 C 2.71875 -6.953125 0.5 -4.765625 0.5 -2.484375 C 0.5 -0.921875 1.59375 0.21875 3.1875 0.21875 C 3.625 0.21875 4.0625 0.125 4.421875 -0.015625 C 4.90625 -0.21875 5.09375 -0.421875 5.28125 -0.625 C 5.359375 -0.375 5.625 -0.015625 5.71875 -0.015625 C 5.765625 -0.015625 5.78125 -0.046875 5.78125 -0.046875 C 5.8125 -0.0625 5.90625 -0.4375 5.953125 -0.65625 L 6.140625 -1.40625 C 6.1875 -1.578125 6.234375 -1.75 6.265625 -1.90625 C 6.375 -2.359375 6.390625 -2.375 6.953125 -2.390625 C 7 -2.390625 7.109375 -2.390625 7.109375 -2.578125 Z M 7.109375 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 6.8125 -3.671875 C 6.8125 -4.203125 6.546875 -4.359375 6.375 -4.359375 C 6.125 -4.359375 5.890625 -4.09375 5.890625 -3.890625 C 5.890625 -3.75 5.9375 -3.703125 6.03125 -3.625 C 6.140625 -3.515625 6.390625 -3.25 6.390625 -2.78125 C 6.390625 -2.4375 6.109375 -1.484375 5.84375 -0.96875 C 5.59375 -0.453125 5.25 -0.109375 4.765625 -0.109375 C 4.296875 -0.109375 4.03125 -0.40625 4.03125 -0.96875 C 4.03125 -1.25 4.09375 -1.546875 4.140625 -1.6875 L 4.5625 -3.34375 C 4.609375 -3.5625 4.703125 -3.921875 4.703125 -3.984375 C 4.703125 -4.15625 4.5625 -4.25 4.421875 -4.25 C 4.296875 -4.25 4.125 -4.171875 4.046875 -3.96875 C 4.015625 -3.90625 3.5625 -2.015625 3.484375 -1.765625 C 3.421875 -1.46875 3.40625 -1.296875 3.40625 -1.109375 C 3.40625 -1 3.40625 -0.984375 3.40625 -0.9375 C 3.1875 -0.421875 2.890625 -0.109375 2.5 -0.109375 C 1.71875 -0.109375 1.71875 -0.84375 1.71875 -1 C 1.71875 -1.328125 1.765625 -1.703125 2.234375 -2.921875 C 2.34375 -3.21875 2.390625 -3.359375 2.390625 -3.546875 C 2.390625 -4 2.078125 -4.359375 1.59375 -4.359375 C 0.65625 -4.359375 0.28125 -2.921875 0.28125 -2.84375 C 0.28125 -2.734375 0.40625 -2.734375 0.40625 -2.734375 C 0.5 -2.734375 0.515625 -2.765625 0.5625 -2.921875 C 0.828125 -3.828125 1.21875 -4.140625 1.5625 -4.140625 C 1.640625 -4.140625 1.796875 -4.125 1.796875 -3.8125 C 1.796875 -3.5625 1.703125 -3.296875 1.625 -3.125 C 1.1875 -1.96875 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.734375 0.109375 2.46875 0.109375 C 2.640625 0.109375 3.109375 0.109375 3.5 -0.578125 C 3.75 0.046875 4.4375 0.109375 4.734375 0.109375 C 5.46875 0.109375 5.90625 -0.515625 6.15625 -1.109375 C 6.5 -1.875 6.8125 -3.1875 6.8125 -3.671875 Z M 6.8125 -3.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 2.515625 -4.71875 C 2.578125 -4.875 2.578125 -4.953125 2.578125 -5 C 2.578125 -5.296875 2.3125 -5.515625 2.03125 -5.515625 C 1.640625 -5.515625 1.546875 -5.1875 1.515625 -5.0625 L 0.3125 -0.765625 C 0.3125 -0.71875 0.28125 -0.671875 0.28125 -0.625 C 0.28125 -0.515625 0.546875 -0.4375 0.625 -0.4375 C 0.625 -0.4375 0.6875 -0.4375 0.75 -0.578125 Z M 2.515625 -4.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 8.015625 -2.96875 C 8.015625 -3.1875 7.828125 -3.1875 7.65625 -3.1875 L 4.5 -3.1875 L 4.5 -6.34375 C 4.5 -6.515625 4.5 -6.71875 4.296875 -6.71875 C 4.078125 -6.71875 4.078125 -6.515625 4.078125 -6.34375 L 4.078125 -3.1875 L 0.921875 -3.1875 C 0.75 -3.1875 0.546875 -3.1875 0.546875 -2.984375 C 0.546875 -2.765625 0.734375 -2.765625 0.921875 -2.765625 L 4.078125 -2.765625 L 4.078125 0.390625 C 4.078125 0.5625 4.078125 0.765625 4.28125 0.765625 C 4.5 0.765625 4.5 0.578125 4.5 0.390625 L 4.5 -2.765625 L 7.65625 -2.765625 C 7.828125 -2.765625 8.015625 -2.765625 8.015625 -2.96875 Z M 8.015625 -2.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 7.734375 -0.078125 C 7.734375 -0.078125 7.734375 -0.109375 7.6875 -0.203125 L 4.359375 -6.875 C 4.28125 -7.015625 4.265625 -7.0625 4.09375 -7.0625 C 3.9375 -7.0625 3.921875 -7.015625 3.84375 -6.875 L 0.515625 -0.203125 C 0.46875 -0.109375 0.46875 -0.078125 0.46875 -0.078125 C 0.46875 0 0.515625 0 0.6875 0 L 7.515625 0 C 7.6875 0 7.734375 0 7.734375 -0.078125 Z M 6.4375 -0.75 L 1.125 -0.75 L 3.78125 -6.078125 Z M 6.4375 -0.75 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 3.6875 -4.609375 C 3.6875 -4.671875 3.640625 -4.703125 3.578125 -4.703125 C 3.4375 -4.703125 3.265625 -4.6875 3.125 -4.6875 L 2.65625 -4.671875 L 2.171875 -4.6875 C 2.03125 -4.6875 1.859375 -4.703125 1.703125 -4.703125 C 1.65625 -4.703125 1.5625 -4.703125 1.5625 -4.546875 C 1.5625 -4.453125 1.640625 -4.453125 1.78125 -4.453125 C 1.78125 -4.453125 1.921875 -4.453125 2.046875 -4.4375 C 2.1875 -4.4375 2.234375 -4.421875 2.234375 -4.34375 C 2.234375 -4.3125 2.21875 -4.265625 2.203125 -4.203125 L 1.28125 -0.546875 C 1.234375 -0.3125 1.21875 -0.25 0.703125 -0.25 C 0.515625 -0.25 0.4375 -0.25 0.4375 -0.09375 C 0.4375 -0.09375 0.4375 0 0.546875 0 C 0.765625 0 1.28125 -0.03125 1.484375 -0.03125 L 1.953125 -0.015625 C 2.109375 -0.015625 2.28125 0 2.4375 0 C 2.46875 0 2.578125 0 2.578125 -0.15625 C 2.578125 -0.25 2.5 -0.25 2.359375 -0.25 C 2.359375 -0.25 2.203125 -0.25 2.0625 -0.265625 C 1.90625 -0.28125 1.90625 -0.296875 1.90625 -0.359375 C 1.90625 -0.359375 1.90625 -0.40625 1.921875 -0.515625 L 2.84375 -4.15625 C 2.90625 -4.390625 2.921875 -4.453125 3.4375 -4.453125 C 3.609375 -4.453125 3.6875 -4.453125 3.6875 -4.609375 Z M 3.6875 -4.609375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 12 0 L 161 0 L 161 53.792969 L 12 53.792969 Z M 12 0 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 85 17 L 128 17 L 128 53.792969 L 85 53.792969 Z M 85 17 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 80 22 L 113 22 L 113 53.792969 L 80 53.792969 Z M 80 22 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 110 22 L 144 22 L 144 53.792969 L 110 53.792969 Z M 110 22 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 151 22 L 171.742188 22 L 171.742188 53.792969 L 151 53.792969 Z M 151 22 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 12.746094 52.804688 L 159.847656 52.804688 L 159.847656 0.988281 L 12.746094 0.988281 Z M 12.746094 52.804688 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -130.926826 -14.978963 L 17.816319 -14.978963 L 17.816319 37.41569 L -130.926826 37.41569 Z M -130.926826 -14.978963 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="146.105691" y="11.003209"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="153.852243" y="11.003209"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.337464 -8.505172 L 11.338579 -8.505172 L 11.338579 8.502847 L -11.337464 8.502847 Z M -11.337464 -8.505172 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="138.355183" y="41.35747"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 113.699219 37.992188 C 113.699219 34.183594 110.613281 31.09375 106.804688 31.09375 C 102.996094 31.09375 99.90625 34.183594 99.90625 37.992188 C 99.90625 41.800781 102.996094 44.886719 106.804688 44.886719 C 110.613281 44.886719 113.699219 41.800781 113.699219 37.992188 Z M 113.699219 37.992188 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -28.847113 -0.00116224 C -28.847113 3.849934 -31.967488 6.974259 -35.818584 6.974259 C -39.669679 6.974259 -42.794004 3.849934 -42.794004 -0.00116224 C -42.794004 -3.852258 -39.669679 -6.972633 -35.818584 -6.972633 C -31.967488 -6.972633 -28.847113 -3.852258 -28.847113 -0.00116224 Z M -28.847113 -0.00116224 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="102.51514" y="40.874856"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -72.429668 13.93388 L -49.753626 13.93388 L -49.753626 30.941899 L -72.429668 30.941899 Z M -72.429668 13.93388 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="75.446217" y="18.589549"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="83.656593" y="20.06805"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -113.11304 13.93388 L -90.433047 13.93388 L -90.433047 30.941899 L -113.11304 30.941899 Z M -113.11304 13.93388 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="35.792731" y="17.183243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="42.846019" y="18.661744"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 20.628906 37.992188 C 20.628906 36.902344 19.746094 36.019531 18.65625 36.019531 C 17.570312 36.019531 16.6875 36.902344 16.6875 37.992188 C 16.6875 39.078125 17.570312 39.960938 18.65625 39.960938 C 19.746094 39.960938 20.628906 39.078125 20.628906 37.992188 Z M 20.628906 37.992188 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -124.950716 -0.00116224 L -124.950716 22.43789 L -118.243884 22.43789 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053667 0.000209549 L 1.610095 1.682842 L 3.087336 0.000209549 L 1.610095 -1.682423 Z M 6.053667 0.000209549 " transform="matrix(0.988964,0,0,-0.988964,22.481893,15.800988)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -141.958735 -0.00116224 L -47.427169 -0.00116224 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 98.503906 37.992188 L 94.109375 36.328125 L 95.570312 37.992188 L 94.109375 39.65625 Z M 98.503906 37.992188 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053012 -0.00116224 L 1.60944 1.68147 L 3.086681 -0.00116224 L 1.60944 -1.683795 Z M 6.053012 -0.00116224 " transform="matrix(0.988964,0,0,-0.988964,92.517697,37.991038)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -89.935367 22.43789 L -77.560513 22.43789 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054999 0.000209549 L 1.607477 1.682842 L 3.088667 0.000209549 L 1.607477 -1.682423 Z M 6.054999 0.000209549 " transform="matrix(0.988964,0,0,-0.988964,62.714952,15.800988)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.255946 22.43789 L -35.818584 22.43789 L -35.818584 11.607423 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053728 0.000466423 L 1.610156 1.683099 L 3.087397 0.000466423 L 1.610156 -1.682166 Z M 6.053728 0.000466423 " transform="matrix(0,0.988964,0.988964,0,106.804226,23.704489)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -28.847113 -0.00116224 L -16.472258 -0.00116224 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.117188 37.992188 L 124.722656 36.328125 L 126.1875 37.992188 L 124.722656 39.65625 Z M 129.117188 37.992188 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051893 -0.00116224 L 1.608321 1.68147 L 3.089512 -0.00116224 L 1.608321 -1.683795 Z M 6.051893 -0.00116224 " transform="matrix(0.988964,0,0,-0.988964,123.132085,37.991038)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.836259 -0.00116224 L 24.211113 -0.00116224 " transform="matrix(0.988964,0,0,-0.988964,142.227964,37.991038)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 169.351562 37.992188 L 164.957031 36.328125 L 166.417969 37.992188 L 164.957031 39.65625 Z M 169.351562 37.992188 "/>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053225 -0.00116224 L 1.609653 1.68147 L 3.086894 -0.00116224 L 1.609653 -1.683795 Z M 6.053225 -0.00116224 " transform="matrix(0.988964,0,0,-0.988964,163.365143,37.991038)"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,25 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
% Blocs
\node[block] (G) {$G$};
\node[addb, left=of G] (addi) {};
\node[block, above left=0.5 and 0.2 of addi] (deltai) {$\Delta_I$};
\node[block, left=of deltai] (wi) {$w_I$};
% Connections and labels
\draw[->] ($(G.west)+(-4, 0)$)coordinate[](start) node[branch]{} |- (wi.west);
\draw[->] ($(start)+(-\cdist, 0)$) -- (addi.west);
\draw[->] (wi.east) -- (deltai.west);
\draw[->] (deltai.east) -| (addi.north);
\draw[->] (addi.east) -- (G.west);
\draw[->] (G.east) -- ++(0.8, 0);
\node[fit={(start|-wi.north) (G.south east)}, inner sep=10pt, draw, dashed, color=gray, label={$G_p$}] (Gp) {};
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="91.29pt" height="58.69pt" viewBox="0 0 91.29 58.69" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.828125 -3.671875 C 6.828125 -4.21875 6.5625 -4.375 6.40625 -4.375 C 6.15625 -4.375 5.90625 -4.109375 5.90625 -3.890625 C 5.90625 -3.765625 5.96875 -3.703125 6.046875 -3.625 C 6.15625 -3.515625 6.40625 -3.265625 6.40625 -2.796875 C 6.40625 -2.453125 6.125 -1.484375 5.859375 -0.984375 C 5.609375 -0.453125 5.265625 -0.109375 4.78125 -0.109375 C 4.3125 -0.109375 4.046875 -0.40625 4.046875 -0.96875 C 4.046875 -1.25 4.109375 -1.546875 4.15625 -1.6875 L 4.5625 -3.359375 C 4.625 -3.578125 4.71875 -3.9375 4.71875 -4 C 4.71875 -4.171875 4.578125 -4.265625 4.4375 -4.265625 C 4.3125 -4.265625 4.140625 -4.1875 4.0625 -3.984375 C 4.03125 -3.921875 3.578125 -2.03125 3.5 -1.765625 C 3.4375 -1.46875 3.40625 -1.296875 3.40625 -1.125 C 3.40625 -1.015625 3.40625 -0.984375 3.421875 -0.9375 C 3.1875 -0.421875 2.890625 -0.109375 2.515625 -0.109375 C 1.71875 -0.109375 1.71875 -0.84375 1.71875 -1.015625 C 1.71875 -1.328125 1.765625 -1.71875 2.234375 -2.921875 C 2.34375 -3.21875 2.40625 -3.359375 2.40625 -3.5625 C 2.40625 -4 2.078125 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.5625 -2.921875 C 0.828125 -3.84375 1.21875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.140625 1.8125 -3.828125 C 1.8125 -3.578125 1.703125 -3.296875 1.625 -3.140625 C 1.203125 -1.96875 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.734375 0.109375 2.484375 0.109375 C 2.65625 0.109375 3.109375 0.109375 3.515625 -0.578125 C 3.765625 0.046875 4.453125 0.109375 4.75 0.109375 C 5.484375 0.109375 5.921875 -0.515625 6.1875 -1.109375 C 6.515625 -1.875 6.828125 -3.203125 6.828125 -3.671875 Z M 6.828125 -3.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 8.390625 -1.421875 C 8.390625 -1.515625 8.296875 -1.515625 8.265625 -1.515625 C 8.171875 -1.515625 8.171875 -1.484375 8.125 -1.328125 C 7.96875 -0.8125 7.65625 -0.109375 7.109375 -0.109375 C 6.9375 -0.109375 6.875 -0.203125 6.875 -0.4375 C 6.875 -0.6875 6.96875 -0.921875 7.046875 -1.140625 C 7.234375 -1.65625 7.65625 -2.75 7.65625 -3.3125 C 7.65625 -3.953125 7.265625 -4.375 6.515625 -4.375 C 5.78125 -4.375 5.265625 -3.9375 4.90625 -3.40625 C 4.890625 -3.546875 4.859375 -3.875 4.59375 -4.109375 C 4.34375 -4.328125 4.03125 -4.375 3.78125 -4.375 C 2.890625 -4.375 2.40625 -3.734375 2.234375 -3.515625 C 2.1875 -4.078125 1.765625 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.453125 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.4375 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2 1.953125 -2.21875 2 -2.453125 L 2.140625 -2.953125 C 2.28125 -3.25 2.8125 -4.15625 3.75 -4.15625 C 4.1875 -4.15625 4.28125 -3.78125 4.28125 -3.46875 C 4.28125 -3.21875 4.21875 -2.9375 4.140625 -2.640625 L 3.859375 -1.5 C 3.765625 -1.125 3.75 -1.0625 3.65625 -0.734375 C 3.625 -0.546875 3.53125 -0.203125 3.53125 -0.15625 C 3.53125 0.015625 3.671875 0.109375 3.8125 0.109375 C 4.125 0.109375 4.1875 -0.140625 4.265625 -0.453125 L 4.859375 -2.84375 C 4.890625 -2.96875 5.40625 -4.15625 6.484375 -4.15625 C 6.90625 -4.15625 7.015625 -3.8125 7.015625 -3.46875 C 7.015625 -2.890625 6.609375 -1.765625 6.40625 -1.25 C 6.3125 -1.015625 6.28125 -0.90625 6.28125 -0.703125 C 6.28125 -0.234375 6.625 0.109375 7.09375 0.109375 C 8.015625 0.109375 8.390625 -1.328125 8.390625 -1.421875 Z M 8.390625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.84375 -1.421875 C 4.84375 -1.515625 4.75 -1.515625 4.734375 -1.515625 C 4.625 -1.515625 4.625 -1.46875 4.59375 -1.328125 C 4.390625 -0.609375 4.15625 -0.109375 3.734375 -0.109375 C 3.546875 -0.109375 3.40625 -0.21875 3.40625 -0.578125 C 3.40625 -0.734375 3.453125 -0.96875 3.484375 -1.125 C 3.53125 -1.296875 3.53125 -1.328125 3.53125 -1.4375 C 3.53125 -2.078125 2.90625 -2.359375 2.0625 -2.46875 C 2.375 -2.65625 2.6875 -2.96875 2.921875 -3.203125 C 3.390625 -3.734375 3.84375 -4.15625 4.328125 -4.15625 C 4.390625 -4.15625 4.40625 -4.15625 4.421875 -4.140625 C 4.546875 -4.125 4.546875 -4.125 4.625 -4.0625 C 4.65625 -4.0625 4.65625 -4.046875 4.671875 -4.03125 C 4.1875 -4 4.109375 -3.609375 4.109375 -3.484375 C 4.109375 -3.328125 4.21875 -3.140625 4.484375 -3.140625 C 4.734375 -3.140625 5.03125 -3.359375 5.03125 -3.75 C 5.03125 -4.046875 4.796875 -4.375 4.359375 -4.375 C 4.078125 -4.375 3.625 -4.296875 2.90625 -3.5 C 2.578125 -3.125 2.1875 -2.734375 1.8125 -2.578125 L 2.84375 -6.75 C 2.84375 -6.75 2.84375 -6.859375 2.703125 -6.859375 C 2.484375 -6.859375 1.765625 -6.78125 1.5 -6.765625 C 1.421875 -6.75 1.3125 -6.75 1.3125 -6.5625 C 1.3125 -6.453125 1.40625 -6.453125 1.546875 -6.453125 C 2.03125 -6.453125 2.046875 -6.375 2.046875 -6.28125 L 2.015625 -6.078125 L 0.578125 -0.390625 C 0.546875 -0.25 0.546875 -0.234375 0.546875 -0.171875 C 0.546875 0.0625 0.734375 0.109375 0.828125 0.109375 C 0.953125 0.109375 1.109375 0.015625 1.171875 -0.09375 C 1.21875 -0.1875 1.65625 -2.015625 1.71875 -2.265625 C 2.0625 -2.234375 2.875 -2.078125 2.875 -1.421875 C 2.875 -1.359375 2.875 -1.3125 2.84375 -1.21875 C 2.8125 -1.09375 2.796875 -0.984375 2.796875 -0.875 C 2.796875 -0.28125 3.1875 0.109375 3.703125 0.109375 C 4 0.109375 4.265625 -0.046875 4.484375 -0.421875 C 4.734375 -0.84375 4.84375 -1.421875 4.84375 -1.421875 Z M 4.84375 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.25 -1.0625 C 4.25 -1.125 4.1875 -1.1875 4.140625 -1.1875 C 4.078125 -1.1875 4.0625 -1.171875 4 -1.09375 C 3.21875 -0.109375 2.140625 -0.109375 2.03125 -0.109375 C 1.40625 -0.109375 1.140625 -0.59375 1.140625 -1.1875 C 1.140625 -1.59375 1.328125 -2.546875 1.671875 -3.171875 C 1.984375 -3.734375 2.515625 -4.15625 3.0625 -4.15625 C 3.40625 -4.15625 3.78125 -4.03125 3.921875 -3.765625 C 3.765625 -3.765625 3.625 -3.765625 3.484375 -3.625 C 3.328125 -3.46875 3.296875 -3.296875 3.296875 -3.234375 C 3.296875 -3 3.484375 -2.890625 3.671875 -2.890625 C 3.953125 -2.890625 4.21875 -3.125 4.21875 -3.515625 C 4.21875 -4 3.765625 -4.375 3.0625 -4.375 C 1.71875 -4.375 0.40625 -2.953125 0.40625 -1.5625 C 0.40625 -0.671875 0.984375 0.109375 2 0.109375 C 3.421875 0.109375 4.25 -0.9375 4.25 -1.0625 Z M 4.25 -1.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 7.203125 -4.75 L 7.390625 -6.453125 C 7.421875 -6.71875 7.375 -6.71875 7.125 -6.71875 L 2.28125 -6.71875 C 2.09375 -6.71875 1.984375 -6.71875 1.984375 -6.53125 C 1.984375 -6.421875 2.078125 -6.421875 2.265625 -6.421875 C 2.625 -6.421875 2.90625 -6.421875 2.90625 -6.234375 C 2.90625 -6.203125 2.90625 -6.1875 2.859375 -6 L 1.546875 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.5 0 0.53125 0 L 1.828125 -0.03125 L 3.296875 0 C 3.390625 0 3.515625 0 3.515625 -0.1875 C 3.515625 -0.265625 3.453125 -0.296875 3.453125 -0.296875 C 3.421875 -0.3125 3.40625 -0.3125 3.171875 -0.3125 C 2.953125 -0.3125 2.90625 -0.3125 2.65625 -0.328125 C 2.375 -0.359375 2.34375 -0.390625 2.34375 -0.53125 C 2.34375 -0.53125 2.34375 -0.609375 2.390625 -0.75 L 3 -3.21875 L 3.953125 -3.21875 C 4.703125 -3.21875 4.78125 -3.0625 4.78125 -2.765625 C 4.78125 -2.703125 4.78125 -2.578125 4.703125 -2.28125 C 4.6875 -2.234375 4.671875 -2.171875 4.671875 -2.171875 C 4.671875 -2.09375 4.734375 -2.0625 4.796875 -2.0625 C 4.890625 -2.0625 4.890625 -2.09375 4.9375 -2.265625 L 5.484375 -4.40625 C 5.515625 -4.515625 5.515625 -4.546875 5.515625 -4.5625 C 5.515625 -4.5625 5.5 -4.671875 5.40625 -4.671875 C 5.296875 -4.671875 5.296875 -4.625 5.25 -4.46875 C 5.046875 -3.703125 4.8125 -3.515625 3.96875 -3.515625 L 3.078125 -3.515625 L 3.703125 -6.03125 C 3.796875 -6.375 3.8125 -6.421875 4.25 -6.421875 L 5.546875 -6.421875 C 6.765625 -6.421875 7 -6.09375 7 -5.328125 C 7 -5.109375 7 -5.0625 6.96875 -4.796875 C 6.9375 -4.671875 6.9375 -4.65625 6.9375 -4.625 C 6.9375 -4.5625 6.96875 -4.5 7.0625 -4.5 C 7.171875 -4.5 7.1875 -4.5625 7.203125 -4.75 Z M 7.203125 -4.75 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.90625 -1.421875 C 4.90625 -1.515625 4.8125 -1.515625 4.78125 -1.515625 C 4.703125 -1.515625 4.671875 -1.46875 4.65625 -1.40625 C 4.328125 -0.34375 3.65625 -0.109375 3.34375 -0.109375 C 2.953125 -0.109375 2.796875 -0.421875 2.796875 -0.765625 C 2.796875 -0.984375 2.859375 -1.203125 2.96875 -1.625 L 3.296875 -2.984375 C 3.359375 -3.25 3.59375 -4.15625 4.28125 -4.15625 C 4.328125 -4.15625 4.5625 -4.15625 4.78125 -4.03125 C 4.5 -3.96875 4.296875 -3.734375 4.296875 -3.484375 C 4.296875 -3.328125 4.40625 -3.140625 4.671875 -3.140625 C 4.890625 -3.140625 5.21875 -3.328125 5.21875 -3.71875 C 5.21875 -4.234375 4.625 -4.375 4.296875 -4.375 C 3.71875 -4.375 3.375 -3.84375 3.25 -3.625 C 3 -4.265625 2.46875 -4.375 2.1875 -4.375 C 1.15625 -4.375 0.59375 -3.09375 0.59375 -2.84375 C 0.59375 -2.75 0.71875 -2.75 0.71875 -2.75 C 0.796875 -2.75 0.828125 -2.765625 0.84375 -2.859375 C 1.171875 -3.90625 1.828125 -4.15625 2.171875 -4.15625 C 2.359375 -4.15625 2.703125 -4.0625 2.703125 -3.484375 C 2.703125 -3.1875 2.53125 -2.515625 2.171875 -1.140625 C 2 -0.53125 1.65625 -0.109375 1.21875 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.765625 C 1.203125 -1.03125 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.21875 -0.578125 2.25 -0.640625 C 2.375 -0.28125 2.734375 0.109375 3.328125 0.109375 C 4.34375 0.109375 4.90625 -1.171875 4.90625 -1.421875 Z M 4.90625 -1.421875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 60 30 L 90.585938 30 L 90.585938 58.308594 L 60 58.308594 Z M 60 30 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 9 0.0742188 L 72 0.0742188 L 72 25 L 9 25 Z M 9 0.0742188 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 2 12 L 30 12 L 30 58.308594 L 2 58.308594 Z M 2 12 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 49 37 L 81 37 L 81 58.308594 L 49 58.308594 Z M 49 37 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 60 0.0742188 L 90.585938 0.0742188 L 90.585938 30 L 60 30 Z M 60 0.0742188 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -31.182128 -0.000888049 L 31.181972 -0.000888049 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 31.181972 -0.000888049 L 39.685094 -0.000888049 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 35.433533 -0.000888049 L 35.433533 9.541504 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 75.664062 44.664062 L 73.992188 49.074219 L 75.664062 47.605469 L 77.332031 49.074219 Z M 75.664062 44.664062 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052485 -0.000463136 L 1.608029 1.684415 L 3.088202 -0.000463136 L 1.608029 -1.681404 Z M 6.052485 -0.000463136 " transform="matrix(0,-0.992283,-0.992283,0,75.663603,50.669838)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="79.453061" y="45.383264"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 9.5625 23.566406 L 9.5625 1.0625 L 71.445312 1.0625 L 71.445312 23.566406 Z M 9.5625 23.566406 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -31.182128 34.015536 L -31.182128 56.694465 L 31.181972 56.694465 L 31.181972 34.015536 Z M -31.182128 34.015536 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="36.16374" y="14.4429"/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -24.942569 -0.000888049 L -24.942569 5.66786 L -27.434456 7.163779 L -22.454619 10.151682 L -27.434456 13.139585 L -22.454619 16.131424 L -27.434456 19.119326 L -22.454619 22.107229 L -27.434456 25.095132 L -24.942569 26.591051 L -24.942569 34.015536 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="3.79052" y="43.874994"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.377263 20.693979 L 6.377263 15.115773 L -6.37742 15.115773 L -6.37742 20.693979 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.586192 18.902812 L -3.586349 18.902812 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.0000781575 -0.000888049 L -0.0000781575 15.115773 M -0.0000781575 18.902812 L -0.0000781575 34.015536 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="26.909712" y="42.571135"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.108039 24.095227 L 22.108039 9.919421 L 27.780723 9.919421 L 27.780723 24.095227 Z M 22.108039 24.095227 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.946349 4.632526 L 24.946349 9.423405 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 65.257812 55.910156 L 66.925781 51.5 L 65.257812 52.96875 L 63.585938 51.5 Z M 65.257812 55.910156 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051824 0.00190944 L 1.607369 1.682851 L 3.087542 0.00190944 L 1.607369 -1.682968 Z M 6.051824 0.00190944 " transform="matrix(0,0.992283,0.992283,0,65.255918,49.905036)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.946349 29.382122 L 24.946349 24.591243 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054359 -0.00190944 L 1.609903 1.682968 L 3.08614 -0.00190944 L 1.609903 -1.682851 Z M 6.054359 -0.00190944 " transform="matrix(0,-0.992283,-0.992283,0,65.255918,30.980292)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="51.022179" y="43.820419"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 31.181972 34.015536 L 39.685094 34.015536 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 35.433533 34.015536 L 35.433533 43.553992 " transform="matrix(0.992283,0,0,-0.992283,40.503984,57.319431)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 75.664062 10.910156 L 73.992188 15.320312 L 75.664062 13.851562 L 77.332031 15.320312 Z M 75.664062 10.910156 "/>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052829 -0.000463136 L 1.608373 1.684415 L 3.088546 -0.000463136 L 1.608373 -1.681404 Z M 6.052829 -0.000463136 " transform="matrix(0,-0.992283,-0.992283,0,75.663603,16.916273)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="79.453061" y="11.629779"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,48 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
% ====================
% Parameters
% ====================
\def\massw{2.2} % Width of the masses
\def\massh{0.8} % Height of the masses
\def\spaceh{1.2} % Height of the springs/dampers
\def\dispw{0.3} % Width of the dashed line for the displacement
\def\disph{0.5} % Height of the arrow for the displacements
\def\bracs{0.05} % Brace spacing vertically
\def\brach{-10pt} % Brace shift horizontaly
% ====================
% ====================
% Ground
% ====================
\draw (-0.5*\massw, 0) -- (0.5*\massw, 0);
\draw[dashed] (0.5*\massw, 0) -- ++(\dispw, 0);
\draw[->] (0.5*\massw+0.5*\dispw, 0) -- ++(0, \disph) node[right]{$w$};
% ====================
\begin{scope}[shift={(0, 0)}]
% Mass
\draw[fill=white] (-0.5*\massw, \spaceh) rectangle (0.5*\massw, \spaceh+\massh) node[pos=0.5]{$m$};
% Spring, Damper, and Actuator
\draw[spring] (-0.4*\massw, 0) -- (-0.4*\massw, \spaceh) node[midway, left=0.1]{$k$};
\draw[damper] (0, 0) -- ( 0, \spaceh) node[midway, left=0.2]{$c$};
\draw[actuator] ( 0.4*\massw, 0) -- ( 0.4*\massw, \spaceh) node[midway, left=0.1](F){$F$};
% Displacements
\draw[dashed] (0.5*\massw, \spaceh) -- ++(\dispw, 0);
\draw[->] (0.5*\massw+0.5*\dispw, \spaceh) -- ++(0, \disph) node[right]{$x$};
% Legend
% \draw[decorate, decoration={brace, amplitude=8pt}, xshift=\brach] %
% (-0.5*\massw, \bracs) -- (-0.5*\massw, \spaceh+\massh-\bracs) %
% node[midway,rotate=90,anchor=south,yshift=10pt]{};
\end{scope}
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

@ -0,0 +1,191 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="196.51pt" height="77pt" viewBox="0 0 196.51 77" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.859375 -3.703125 C 6.859375 -4.25 6.59375 -4.390625 6.421875 -4.390625 C 6.1875 -4.390625 5.9375 -4.140625 5.9375 -3.921875 C 5.9375 -3.78125 6 -3.734375 6.078125 -3.640625 C 6.1875 -3.53125 6.4375 -3.28125 6.4375 -2.796875 C 6.4375 -2.46875 6.15625 -1.484375 5.890625 -0.984375 C 5.640625 -0.453125 5.28125 -0.109375 4.796875 -0.109375 C 4.328125 -0.109375 4.0625 -0.40625 4.0625 -0.96875 C 4.0625 -1.25 4.140625 -1.5625 4.171875 -1.703125 L 4.59375 -3.375 C 4.640625 -3.59375 4.734375 -3.953125 4.734375 -4.015625 C 4.734375 -4.1875 4.59375 -4.28125 4.453125 -4.28125 C 4.328125 -4.28125 4.15625 -4.203125 4.078125 -4 C 4.046875 -3.9375 3.59375 -2.03125 3.515625 -1.78125 C 3.453125 -1.484375 3.421875 -1.296875 3.421875 -1.125 C 3.421875 -1.015625 3.421875 -1 3.4375 -0.9375 C 3.203125 -0.421875 2.90625 -0.109375 2.53125 -0.109375 C 1.734375 -0.109375 1.734375 -0.84375 1.734375 -1.015625 C 1.734375 -1.328125 1.78125 -1.71875 2.25 -2.9375 C 2.359375 -3.234375 2.421875 -3.375 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.390625 1.59375 -4.390625 C 0.65625 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.859375 1.21875 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.15625 C 1.203125 -1.984375 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.75 0.109375 2.5 0.109375 C 2.65625 0.109375 3.125 0.109375 3.53125 -0.59375 C 3.78125 0.046875 4.46875 0.109375 4.765625 0.109375 C 5.515625 0.109375 5.953125 -0.515625 6.21875 -1.109375 C 6.546875 -1.890625 6.859375 -3.21875 6.859375 -3.703125 Z M 6.859375 -3.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 8.421875 -1.421875 C 8.421875 -1.515625 8.34375 -1.515625 8.3125 -1.515625 C 8.203125 -1.515625 8.203125 -1.484375 8.15625 -1.34375 C 8.015625 -0.8125 7.6875 -0.109375 7.140625 -0.109375 C 6.96875 -0.109375 6.90625 -0.203125 6.90625 -0.4375 C 6.90625 -0.6875 7 -0.921875 7.078125 -1.140625 C 7.28125 -1.65625 7.6875 -2.765625 7.6875 -3.328125 C 7.6875 -3.96875 7.296875 -4.390625 6.546875 -4.390625 C 5.796875 -4.390625 5.296875 -3.953125 4.921875 -3.421875 C 4.921875 -3.5625 4.890625 -3.890625 4.609375 -4.140625 C 4.359375 -4.34375 4.046875 -4.390625 3.796875 -4.390625 C 2.90625 -4.390625 2.421875 -3.75 2.25 -3.53125 C 2.203125 -4.09375 1.78125 -4.390625 1.328125 -4.390625 C 0.875 -4.390625 0.6875 -4 0.59375 -3.828125 C 0.421875 -3.484375 0.28125 -2.890625 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.703125 0.9375 -4.171875 1.296875 -4.171875 C 1.453125 -4.171875 1.609375 -4.09375 1.609375 -3.71875 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.875 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.1875 0.109375 1.375 0.03125 1.4375 -0.171875 C 1.453125 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2.015625 1.96875 -2.234375 2.015625 -2.46875 L 2.140625 -2.96875 C 2.296875 -3.265625 2.828125 -4.171875 3.765625 -4.171875 C 4.21875 -4.171875 4.296875 -3.8125 4.296875 -3.484375 C 4.296875 -3.234375 4.234375 -2.953125 4.15625 -2.65625 L 3.875 -1.5 C 3.78125 -1.140625 3.765625 -1.078125 3.671875 -0.75 C 3.640625 -0.546875 3.546875 -0.203125 3.546875 -0.15625 C 3.546875 0.015625 3.6875 0.109375 3.828125 0.109375 C 4.140625 0.109375 4.203125 -0.140625 4.28125 -0.453125 L 4.875 -2.859375 C 4.90625 -2.984375 5.4375 -4.171875 6.515625 -4.171875 C 6.953125 -4.171875 7.0625 -3.828125 7.0625 -3.484375 C 7.0625 -2.90625 6.640625 -1.78125 6.4375 -1.25 C 6.34375 -1.015625 6.3125 -0.90625 6.3125 -0.703125 C 6.3125 -0.234375 6.65625 0.109375 7.125 0.109375 C 8.0625 0.109375 8.421875 -1.34375 8.421875 -1.421875 Z M 8.421875 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.875 -1.421875 C 4.875 -1.515625 4.78125 -1.515625 4.75 -1.515625 C 4.65625 -1.515625 4.640625 -1.484375 4.609375 -1.34375 C 4.40625 -0.609375 4.1875 -0.109375 3.75 -0.109375 C 3.5625 -0.109375 3.421875 -0.21875 3.421875 -0.578125 C 3.421875 -0.75 3.46875 -0.96875 3.515625 -1.140625 C 3.546875 -1.296875 3.546875 -1.34375 3.546875 -1.4375 C 3.546875 -2.09375 2.921875 -2.375 2.078125 -2.484375 C 2.390625 -2.65625 2.703125 -2.984375 2.9375 -3.21875 C 3.40625 -3.75 3.859375 -4.171875 4.359375 -4.171875 C 4.40625 -4.171875 4.421875 -4.171875 4.4375 -4.15625 C 4.5625 -4.140625 4.578125 -4.140625 4.65625 -4.078125 C 4.671875 -4.078125 4.671875 -4.0625 4.6875 -4.046875 C 4.21875 -4.015625 4.125 -3.625 4.125 -3.515625 C 4.125 -3.34375 4.234375 -3.15625 4.5 -3.15625 C 4.765625 -3.15625 5.046875 -3.375 5.046875 -3.765625 C 5.046875 -4.0625 4.8125 -4.390625 4.375 -4.390625 C 4.09375 -4.390625 3.640625 -4.3125 2.921875 -3.515625 C 2.578125 -3.140625 2.203125 -2.75 1.8125 -2.59375 L 2.859375 -6.78125 C 2.859375 -6.78125 2.859375 -6.890625 2.71875 -6.890625 C 2.5 -6.890625 1.765625 -6.8125 1.515625 -6.796875 C 1.4375 -6.78125 1.328125 -6.78125 1.328125 -6.59375 C 1.328125 -6.484375 1.40625 -6.484375 1.5625 -6.484375 C 2.03125 -6.484375 2.0625 -6.40625 2.0625 -6.3125 L 2.03125 -6.109375 L 0.59375 -0.390625 C 0.546875 -0.25 0.546875 -0.234375 0.546875 -0.171875 C 0.546875 0.0625 0.75 0.109375 0.828125 0.109375 C 0.96875 0.109375 1.109375 0.015625 1.171875 -0.09375 C 1.21875 -0.1875 1.671875 -2.03125 1.734375 -2.28125 C 2.0625 -2.25 2.875 -2.09375 2.875 -1.4375 C 2.875 -1.359375 2.875 -1.328125 2.859375 -1.21875 C 2.828125 -1.109375 2.8125 -0.984375 2.8125 -0.875 C 2.8125 -0.28125 3.203125 0.109375 3.734375 0.109375 C 4.03125 0.109375 4.296875 -0.046875 4.515625 -0.421875 C 4.765625 -0.859375 4.875 -1.421875 4.875 -1.421875 Z M 4.875 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.265625 -1.0625 C 4.265625 -1.125 4.21875 -1.1875 4.15625 -1.1875 C 4.109375 -1.1875 4.078125 -1.171875 4.03125 -1.09375 C 3.234375 -0.109375 2.15625 -0.109375 2.03125 -0.109375 C 1.40625 -0.109375 1.140625 -0.59375 1.140625 -1.1875 C 1.140625 -1.59375 1.34375 -2.5625 1.671875 -3.1875 C 1.984375 -3.75 2.53125 -4.171875 3.078125 -4.171875 C 3.421875 -4.171875 3.796875 -4.046875 3.9375 -3.78125 C 3.78125 -3.78125 3.640625 -3.78125 3.5 -3.640625 C 3.34375 -3.484375 3.3125 -3.3125 3.3125 -3.25 C 3.3125 -3.015625 3.5 -2.90625 3.6875 -2.90625 C 3.96875 -2.90625 4.25 -3.140625 4.25 -3.53125 C 4.25 -4.03125 3.78125 -4.390625 3.078125 -4.390625 C 1.734375 -4.390625 0.40625 -2.96875 0.40625 -1.5625 C 0.40625 -0.671875 0.984375 0.109375 2.015625 0.109375 C 3.4375 0.109375 4.265625 -0.9375 4.265625 -1.0625 Z M 4.265625 -1.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.484375 4.6875 -1.40625 C 4.359375 -0.34375 3.671875 -0.109375 3.359375 -0.109375 C 2.96875 -0.109375 2.8125 -0.421875 2.8125 -0.765625 C 2.8125 -0.984375 2.875 -1.203125 2.984375 -1.640625 L 3.3125 -3 C 3.375 -3.265625 3.609375 -4.171875 4.296875 -4.171875 C 4.359375 -4.171875 4.59375 -4.171875 4.796875 -4.046875 C 4.515625 -4 4.328125 -3.75 4.328125 -3.515625 C 4.328125 -3.34375 4.4375 -3.15625 4.703125 -3.15625 C 4.921875 -3.15625 5.234375 -3.34375 5.234375 -3.734375 C 5.234375 -4.25 4.65625 -4.390625 4.3125 -4.390625 C 3.734375 -4.390625 3.390625 -3.859375 3.265625 -3.640625 C 3.015625 -4.296875 2.484375 -4.390625 2.203125 -4.390625 C 1.15625 -4.390625 0.59375 -3.109375 0.59375 -2.859375 C 0.59375 -2.765625 0.71875 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.78125 0.84375 -2.875 C 1.1875 -3.921875 1.84375 -4.171875 2.171875 -4.171875 C 2.359375 -4.171875 2.71875 -4.078125 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.53125 2.171875 -1.140625 C 2.015625 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.234375 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.359375 0.109375 4.921875 -1.171875 4.921875 -1.421875 Z M 4.921875 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 7.359375 -0.203125 C 7.359375 -0.3125 7.25 -0.3125 7.15625 -0.3125 C 6.75 -0.3125 6.625 -0.40625 6.46875 -0.75 L 5.0625 -4.015625 C 5.046875 -4.046875 5.015625 -4.125 5.015625 -4.15625 C 5.015625 -4.15625 5.1875 -4.296875 5.296875 -4.375 L 7.03125 -5.71875 C 7.96875 -6.40625 8.359375 -6.453125 8.65625 -6.484375 C 8.734375 -6.484375 8.828125 -6.5 8.828125 -6.671875 C 8.828125 -6.71875 8.796875 -6.78125 8.71875 -6.78125 C 8.5 -6.78125 8.265625 -6.75 8.015625 -6.75 C 7.65625 -6.75 7.28125 -6.78125 6.921875 -6.78125 C 6.84375 -6.78125 6.734375 -6.78125 6.734375 -6.59375 C 6.734375 -6.515625 6.78125 -6.484375 6.84375 -6.484375 C 7.0625 -6.453125 7.15625 -6.40625 7.15625 -6.265625 C 7.15625 -6.09375 6.859375 -5.859375 6.796875 -5.8125 L 2.921875 -2.828125 L 3.71875 -6.015625 C 3.8125 -6.375 3.828125 -6.484375 4.546875 -6.484375 C 4.796875 -6.484375 4.890625 -6.484375 4.890625 -6.671875 C 4.890625 -6.765625 4.8125 -6.78125 4.75 -6.78125 L 3.484375 -6.75 L 2.203125 -6.78125 C 2.125 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.421875 -6.484375 2.59375 -6.46875 2.71875 -6.453125 C 2.875 -6.4375 2.9375 -6.40625 2.9375 -6.296875 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.109375 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.5 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.140625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.1875 -0.3125 2.984375 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.5625 2.40625 -0.78125 2.4375 -0.921875 L 2.828125 -2.484375 L 4.3125 -3.640625 L 5.46875 -0.96875 C 5.578125 -0.703125 5.578125 -0.671875 5.578125 -0.609375 C 5.578125 -0.3125 5.15625 -0.3125 5.0625 -0.3125 C 4.953125 -0.3125 4.84375 -0.3125 4.84375 -0.109375 C 4.84375 0 4.984375 0 4.984375 0 C 5.390625 0 5.796875 -0.03125 6.203125 -0.03125 C 6.421875 -0.03125 6.953125 0 7.171875 0 C 7.21875 0 7.359375 0 7.359375 -0.203125 Z M 7.359375 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 7.140625 -0.203125 C 7.140625 -0.3125 7.046875 -0.3125 6.859375 -0.3125 C 6.484375 -0.3125 6.21875 -0.3125 6.21875 -0.484375 C 6.21875 -0.546875 6.234375 -0.59375 6.234375 -0.65625 L 7.578125 -6.015625 C 7.671875 -6.375 7.6875 -6.484375 8.421875 -6.484375 C 8.671875 -6.484375 8.75 -6.484375 8.75 -6.671875 C 8.75 -6.78125 8.640625 -6.78125 8.609375 -6.78125 L 7.34375 -6.75 L 6.0625 -6.78125 C 5.984375 -6.78125 5.875 -6.78125 5.875 -6.59375 C 5.875 -6.484375 5.96875 -6.484375 6.15625 -6.484375 C 6.15625 -6.484375 6.359375 -6.484375 6.53125 -6.453125 C 6.703125 -6.4375 6.796875 -6.421875 6.796875 -6.296875 C 6.796875 -6.265625 6.78125 -6.234375 6.75 -6.109375 L 6.15625 -3.6875 L 3.125 -3.6875 L 3.71875 -6.015625 C 3.8125 -6.375 3.828125 -6.484375 4.546875 -6.484375 C 4.8125 -6.484375 4.890625 -6.484375 4.890625 -6.671875 C 4.890625 -6.78125 4.78125 -6.78125 4.75 -6.78125 L 3.484375 -6.75 L 2.203125 -6.78125 C 2.109375 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.28125 -6.484375 2.5 -6.484375 2.65625 -6.453125 C 2.84375 -6.4375 2.9375 -6.421875 2.9375 -6.296875 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.109375 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.15625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.1875 -0.3125 2.984375 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.078125 -3.375 L 5.390625 -0.640625 C 5.296875 -0.3125 5.109375 -0.3125 4.484375 -0.3125 C 4.34375 -0.3125 4.25 -0.3125 4.25 -0.109375 C 4.25 0 4.390625 0 4.390625 0 L 5.65625 -0.03125 L 6.296875 -0.015625 C 6.515625 -0.015625 6.734375 0 6.9375 0 C 7.015625 0 7.140625 0 7.140625 -0.203125 Z M 7.140625 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 7.234375 -4.765625 L 7.4375 -6.484375 C 7.46875 -6.75 7.40625 -6.75 7.171875 -6.75 L 2.296875 -6.75 C 2.09375 -6.75 2 -6.75 2 -6.5625 C 2 -6.453125 2.09375 -6.453125 2.28125 -6.453125 C 2.640625 -6.453125 2.921875 -6.453125 2.921875 -6.265625 C 2.921875 -6.234375 2.921875 -6.21875 2.875 -6.03125 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.5 0 0.53125 0 L 1.84375 -0.03125 L 3.3125 0 C 3.40625 0 3.53125 0 3.53125 -0.1875 C 3.53125 -0.265625 3.46875 -0.296875 3.46875 -0.296875 C 3.4375 -0.3125 3.421875 -0.3125 3.1875 -0.3125 C 2.96875 -0.3125 2.921875 -0.3125 2.671875 -0.328125 C 2.390625 -0.359375 2.359375 -0.390625 2.359375 -0.53125 C 2.359375 -0.53125 2.359375 -0.609375 2.390625 -0.75 L 3.015625 -3.234375 L 3.96875 -3.234375 C 4.71875 -3.234375 4.796875 -3.078125 4.796875 -2.78125 C 4.796875 -2.71875 4.796875 -2.59375 4.734375 -2.296875 C 4.703125 -2.25 4.703125 -2.1875 4.703125 -2.1875 C 4.703125 -2.109375 4.765625 -2.0625 4.8125 -2.0625 C 4.921875 -2.0625 4.921875 -2.09375 4.96875 -2.28125 L 5.515625 -4.4375 C 5.546875 -4.546875 5.546875 -4.5625 5.546875 -4.59375 C 5.546875 -4.59375 5.53125 -4.703125 5.421875 -4.703125 C 5.328125 -4.703125 5.3125 -4.65625 5.28125 -4.484375 C 5.0625 -3.71875 4.84375 -3.53125 4 -3.53125 L 3.09375 -3.53125 L 3.734375 -6.0625 C 3.8125 -6.40625 3.828125 -6.453125 4.265625 -6.453125 L 5.578125 -6.453125 C 6.796875 -6.453125 7.03125 -6.125 7.03125 -5.359375 C 7.03125 -5.125 7.03125 -5.09375 7 -4.8125 C 6.96875 -4.6875 6.96875 -4.671875 6.96875 -4.640625 C 6.96875 -4.59375 7 -4.515625 7.09375 -4.515625 C 7.203125 -4.515625 7.21875 -4.578125 7.234375 -4.765625 Z M 7.234375 -4.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 5.671875 -1.421875 C 5.671875 -1.515625 5.578125 -1.515625 5.5625 -1.515625 C 5.453125 -1.515625 5.453125 -1.484375 5.40625 -1.34375 C 5.203125 -0.671875 4.875 -0.109375 4.390625 -0.109375 C 4.21875 -0.109375 4.15625 -0.203125 4.15625 -0.4375 C 4.15625 -0.6875 4.25 -0.921875 4.328125 -1.140625 C 4.515625 -1.671875 4.9375 -2.765625 4.9375 -3.328125 C 4.9375 -4 4.515625 -4.390625 3.796875 -4.390625 C 2.90625 -4.390625 2.421875 -3.75 2.25 -3.53125 C 2.203125 -4.078125 1.78125 -4.390625 1.328125 -4.390625 C 0.875 -4.390625 0.6875 -4 0.59375 -3.828125 C 0.421875 -3.484375 0.28125 -2.90625 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.703125 0.9375 -4.171875 1.296875 -4.171875 C 1.5 -4.171875 1.609375 -4.046875 1.609375 -3.71875 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.875 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.1875 0.109375 1.375 0.03125 1.4375 -0.171875 C 1.453125 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2.015625 1.96875 -2.234375 2.015625 -2.46875 L 2.140625 -2.96875 C 2.296875 -3.265625 2.828125 -4.171875 3.765625 -4.171875 C 4.21875 -4.171875 4.296875 -3.8125 4.296875 -3.484375 C 4.296875 -2.859375 3.8125 -1.59375 3.65625 -1.15625 C 3.5625 -0.9375 3.5625 -0.8125 3.5625 -0.703125 C 3.5625 -0.234375 3.90625 0.109375 4.375 0.109375 C 5.3125 0.109375 5.671875 -1.34375 5.671875 -1.421875 Z M 5.671875 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 4.328125 -3.75 C 4.328125 -4.09375 4.015625 -4.390625 3.515625 -4.390625 C 2.859375 -4.390625 2.421875 -3.90625 2.234375 -3.625 C 2.15625 -4.078125 1.796875 -4.390625 1.328125 -4.390625 C 0.875 -4.390625 0.6875 -4 0.59375 -3.828125 C 0.421875 -3.484375 0.28125 -2.890625 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.703125 0.9375 -4.171875 1.296875 -4.171875 C 1.46875 -4.171875 1.609375 -4.09375 1.609375 -3.71875 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.875 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.1875 0.109375 1.375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.5625 1.84375 -1.734375 L 2.15625 -3.03125 C 2.203125 -3.15625 2.46875 -3.625 2.71875 -3.84375 C 2.796875 -3.921875 3.078125 -4.171875 3.515625 -4.171875 C 3.765625 -4.171875 3.921875 -4.046875 3.921875 -4.046875 C 3.625 -4 3.40625 -3.765625 3.40625 -3.515625 C 3.40625 -3.34375 3.515625 -3.15625 3.78125 -3.15625 C 4.046875 -3.15625 4.328125 -3.390625 4.328125 -3.75 Z M 4.328125 -3.75 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 8.09375 -2.984375 C 8.09375 -3.203125 7.890625 -3.203125 7.71875 -3.203125 L 4.53125 -3.203125 L 4.53125 -6.390625 C 4.53125 -6.5625 4.53125 -6.765625 4.328125 -6.765625 C 4.109375 -6.765625 4.109375 -6.578125 4.109375 -6.390625 L 4.109375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.109375 -2.78125 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.78125 L 7.71875 -2.78125 C 7.875 -2.78125 8.09375 -2.78125 8.09375 -2.984375 Z M 8.09375 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.6875 6.703125 -2.6875 6.5625 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 5.015625 -1.734375 C 5.015625 -1.75 5 -1.828125 4.890625 -1.828125 C 4.8125 -1.828125 4.796875 -1.796875 4.75 -1.6875 C 4.484375 -1.015625 4.1875 -0.25 2.90625 -0.25 L 2.125 -0.25 C 1.90625 -0.25 1.90625 -0.25 1.90625 -0.3125 C 1.90625 -0.3125 1.90625 -0.359375 1.9375 -0.46875 L 2.859375 -4.171875 C 2.921875 -4.421875 2.953125 -4.5 3.59375 -4.5 C 3.796875 -4.5 3.875 -4.5 3.875 -4.65625 C 3.875 -4.65625 3.859375 -4.75 3.75 -4.75 C 3.59375 -4.75 3.40625 -4.734375 3.234375 -4.734375 L 2.6875 -4.71875 L 2.203125 -4.734375 C 2.0625 -4.734375 1.890625 -4.75 1.75 -4.75 C 1.703125 -4.75 1.609375 -4.75 1.609375 -4.59375 C 1.609375 -4.5 1.6875 -4.5 1.828125 -4.5 C 1.828125 -4.5 1.96875 -4.5 2.09375 -4.484375 C 2.234375 -4.46875 2.25 -4.453125 2.25 -4.390625 C 2.25 -4.390625 2.25 -4.34375 2.21875 -4.234375 L 1.296875 -0.546875 C 1.234375 -0.3125 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 0 0.5625 0 0.6875 0 L 4.1875 0 C 4.359375 0 4.359375 0 4.421875 -0.140625 C 4.484375 -0.328125 5.015625 -1.671875 5.015625 -1.734375 Z M 5.015625 -1.734375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 9 75 L 73 75 L 73 76.902344 L 9 76.902344 Z M 9 75 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 71 75 L 81 75 L 81 76.902344 L 71 76.902344 Z M 71 75 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 75 65 L 77 65 L 77 76.902344 L 75 76.902344 Z M 75 65 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 60 49 L 92 49 L 92 76.902344 L 60 76.902344 Z M 60 49 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 2 30 L 30 30 L 30 76.902344 L 2 76.902344 Z M 2 30 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 40 41 L 42 41 L 42 76.902344 L 40 76.902344 Z M 40 41 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 49 56 L 82 56 L 82 76.902344 L 49 76.902344 Z M 49 56 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 147 37 L 190 37 L 190 76.902344 L 147 76.902344 Z M 147 37 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 109 0.0976562 L 111 0.0976562 L 111 17 L 109 17 Z M 109 0.0976562 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 94 0.0976562 L 126 0.0976562 L 126 34 L 94 34 Z M 94 0.0976562 "/>
</clipPath>
</defs>
<g id="surface1">
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -31.181748 -0.00143892 L 31.180397 -0.00143892 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 31.180397 -0.00143892 L 39.685928 -0.00143892 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 35.433163 -0.00143892 L 35.433163 9.537913 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 76.0625 63.1875 L 74.382812 67.621094 L 76.0625 66.144531 L 77.742188 67.621094 Z M 76.0625 63.1875 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051631 -0.0000927398 L 1.606982 1.683783 L 3.087227 -0.0000927398 L 1.606982 -1.683969 Z M 6.051631 -0.0000927398 " transform="matrix(0,-0.997513,-0.997513,0,76.062407,69.224079)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="79.871839" y="69.858806"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -31.181748 34.016769 L -31.181748 56.694268 L 31.180397 56.694268 L 31.180397 34.016769 Z M -31.181748 34.016769 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="36.35435" y="32.806198"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -24.943575 -0.00143892 L -24.943575 5.668915 L -27.434145 7.164823 L -22.453006 10.152724 L -27.434145 13.140624 L -22.453006 16.128525 L -27.434145 19.120342 L -22.453006 22.108242 L -27.434145 25.096143 L -24.943575 26.592051 L -24.943575 34.016769 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="3.810498" y="62.393421"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.376515 20.69457 L 6.376515 15.114284 L -6.377865 15.114284 L -6.377865 20.69457 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.58833 18.901046 L -3.585764 18.901046 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00128268 -0.00143892 L 0.00128268 15.114284 M 0.00128268 18.901046 L 0.00128268 34.016769 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="27.051547" y="61.08269"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.110964 24.093649 L 22.110964 9.92168 L 27.777402 9.92168 L 27.777402 24.093649 Z M 22.110964 24.093649 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.946141 4.635094 L 24.946141 9.42435 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 65.601562 74.492188 L 67.277344 70.058594 L 65.601562 71.535156 L 63.921875 70.058594 Z M 65.601562 74.492188 "/>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051994 0.00170077 L 1.607345 1.681661 L 3.08759 0.00170077 L 1.607345 -1.682175 Z M 6.051994 0.00170077 " transform="matrix(0,0.997513,0.997513,0,65.599866,68.455246)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.946141 29.384152 L 24.946141 24.59098 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05519 -0.00170077 L 1.610541 1.682175 L 3.08687 -0.00170077 L 1.610541 -1.681661 Z M 6.05519 -0.00170077 " transform="matrix(0,-0.997513,-0.997513,0,65.599866,49.430754)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 31.180397 34.016769 L 39.685928 34.016769 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 35.433163 34.016769 L 35.433163 43.556121 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053759 -0.0000927398 L 1.60911 1.683783 L 3.089354 -0.0000927398 L 1.60911 -1.683969 Z M 6.053759 -0.0000927398 " transform="matrix(0,-0.997513,-0.997513,0,76.062407,35.292608)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="79.871839" y="29.978249"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 58.040175 8.504092 L 80.717674 8.504092 L 80.717674 25.511238 L 58.040175 25.511238 Z M 58.040175 8.504092 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="105.34931" y="62.338558"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 175.230469 58.941406 C 175.230469 55.101562 172.117188 51.988281 168.277344 51.988281 C 164.433594 51.988281 161.320312 55.101562 161.320312 58.941406 C 161.320312 62.785156 164.433594 65.898438 168.277344 65.898438 C 172.117188 65.898438 175.230469 62.785156 175.230469 58.941406 Z M 175.230469 58.941406 "/>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.848408 17.009623 C 134.848408 20.859041 131.727364 23.980086 127.877945 23.980086 C 124.024611 23.980086 120.903567 20.859041 120.903567 17.009623 C 120.903567 13.156288 124.024611 10.035244 127.877945 10.035244 C 131.727364 10.035244 134.848408 13.156288 134.848408 17.009623 Z M 134.848408 17.009623 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="163.948493" y="61.851872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="170.263446" y="49.170393"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 76.355261 48.188737 C 76.355261 52.042072 73.230301 55.163116 69.380882 55.163116 C 65.527548 55.163116 62.406504 52.042072 62.406504 48.188737 C 62.406504 44.339319 65.527548 41.214359 69.380882 41.214359 C 73.230301 41.214359 76.355261 44.339319 76.355261 48.188737 Z M 76.355261 48.188737 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="105.59799" y="30.748429"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 93.859738 39.687123 L 116.537237 39.687123 L 116.537237 56.694268 L 93.859738 56.694268 Z M 93.859738 39.687123 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="138.549525" y="30.488976"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="146.809928" y="31.980257"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.763194 48.188737 L 57.773887 48.188737 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054875 -0.000732525 L 1.610226 1.683143 L 3.086555 -0.000732525 L 1.610226 -1.684608 Z M 6.054875 -0.000732525 " transform="matrix(0.997513,0,0,-0.997513,95.514873,27.839113)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 76.355261 48.188737 L 88.72979 48.188737 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054738 -0.000732525 L 1.61009 1.683143 L 3.086418 -0.000732525 L 1.61009 -1.684608 Z M 6.054738 -0.000732525 " transform="matrix(0.997513,0,0,-0.997513,126.393915,27.839113)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.034568 48.188737 L 127.877945 48.188737 L 127.877945 28.616618 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05242 0.00180529 L 1.607771 1.681765 L 3.088015 0.00180529 L 1.607771 -1.682071 Z M 6.05242 0.00180529 " transform="matrix(0,0.997513,0.997513,0,168.275543,44.532947)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.903567 17.009623 L 85.851538 17.009623 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05247 -0.00159286 L 1.607821 1.682283 L 3.088066 -0.00159286 L 1.607821 -1.681553 Z M 6.05247 -0.00159286 " transform="matrix(-0.997513,0,0,0.997513,129.185854,58.942995)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.542844 17.009623 L 33.831523 17.009623 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051875 -0.00159286 L 1.607226 1.682283 L 3.087471 -0.00159286 L 1.607226 -1.681553 Z M 6.051875 -0.00159286 " transform="matrix(-0.997513,0,0,0.997513,77.294635,58.942995)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="73.650352" y="55.133524"/>
</g>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 69.380882 59.795733 L 69.380882 75.005439 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 109.925781 19.46875 L 111.605469 15.035156 L 109.925781 16.507812 L 108.246094 15.035156 Z M 109.925781 19.46875 "/>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054745 0.000882481 L 1.610096 1.684758 L 3.086425 0.000882481 L 1.610096 -1.682993 Z M 6.054745 0.000882481 " transform="matrix(0,0.997513,0.997513,0,109.924901,13.429065)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="113.734402" y="9.177117"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.48494 17.009623 L 154.694647 17.009623 " transform="matrix(0.997513,0,0,-0.997513,40.717471,75.908721)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052218 -0.00159286 L 1.607569 1.682283 L 3.087813 -0.00159286 L 1.607569 -1.681553 Z M 6.052218 -0.00159286 " transform="matrix(-0.997513,0,0,0.997513,182.685601,58.942995)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="186.45607" y="55.133524"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -0,0 +1,56 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
% ====================
% Parameters
% ====================
\def\massw{2.2} % Width of the masses
\def\massh{0.8} % Height of the masses
\def\spaceh{1.2} % Height of the springs/dampers
\def\dispw{0.3} % Width of the dashed line for the displacement
\def\disph{0.5} % Height of the arrow for the displacements
\def\bracs{0.05} % Brace spacing vertically
\def\brach{-10pt} % Brace shift horizontaly
% ====================
% ====================
% Ground
% ====================
\draw (-0.5*\massw, 0) -- (0.5*\massw, 0);
\draw[dashed] (0.5*\massw, 0) -- ++(\dispw, 0);
\draw[->] (0.5*\massw+0.5*\dispw, 0) -- ++(0, \disph) node[below right]{$w$};
% ====================
\begin{scope}[shift={(0, 0)}]
% Mass
\draw[fill=white] (-0.5*\massw, \spaceh) rectangle (0.5*\massw, \spaceh+\massh) node[pos=0.5]{$m$};
% Spring, Damper, and Actuator
\draw[spring] (-0.4*\massw, 0) -- (-0.4*\massw, \spaceh) node[midway, left=0.1]{$k$};
\draw[damper] (0, 0) -- ( 0, \spaceh) node[midway, left=0.2]{$c$};
\draw[actuator] ( 0.4*\massw, 0) -- ( 0.4*\massw, \spaceh) coordinate[midway, right=0.15](F);
% Displacements
\draw[dashed] (0.5*\massw, \spaceh) -- ++(\dispw, 0);
\draw[->] (0.5*\massw+0.5*\dispw, \spaceh) -- ++(0, \disph) node[right](x){$x$};
\end{scope}
\node[block, right=1 of F] (Kfb) {$K$};
\node[addb={+}{}{-}{}{}, right=2*\cdist of Kfb] (add) {};
\node[addb] (addn) at (x-|Kfb) {};
\node[block, right=of addn] (Hl) {$H_L$};
\draw[->] (x) -- (addn.west);
\draw[->] (addn.east) -- (Hl.west);
\draw[->] (Hl.east) -| (add.north);
\draw[->] (add.west) -- (Kfb.east);
\draw[->] (Kfb.west) -- (F) node[above right]{$F$};
\draw[<-] (addn.north) -- ++(0,\cdist) node[below right]{$n$};
\draw[<-] (add.east) -- ++(\cdist,0) node[above left]{$r$};
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,245 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="160.3pt" height="145.12pt" viewBox="0 0 160.3 145.12" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 2.734375 -1.859375 L 2.734375 -2.421875 L 0.109375 -2.421875 L 0.109375 -1.859375 Z M 2.734375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.828125 -0.3125 C 2.9375 -0.3125 2.90625 -0.421875 2.90625 -0.78125 L 2.90625 -6.34375 C 2.90625 -6.578125 2.90625 -6.59375 2.6875 -6.59375 C 2.078125 -5.96875 1.203125 -5.96875 0.875 -5.96875 L 0.875 -5.65625 C 1.078125 -5.65625 1.671875 -5.65625 2.171875 -5.90625 L 2.171875 -0.78125 C 2.171875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.28125 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.9375 -0.03125 3.796875 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.046875 1.375 -1.046875 C 1.09375 -1.046875 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.375 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.453125 -1.71875 L 4.203125 -1.71875 C 4.15625 -1.421875 4.078125 -0.984375 3.984375 -0.84375 C 3.90625 -0.765625 3.265625 -0.765625 3.046875 -0.765625 L 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.453125 -3.6875 4.453125 -4.671875 C 4.453125 -5.8125 3.5625 -6.59375 2.34375 -6.59375 C 1.234375 -6.59375 0.5 -5.6875 0.5 -4.796875 C 0.5 -4.25 0.984375 -4.25 1.015625 -4.25 C 1.1875 -4.25 1.53125 -4.375 1.53125 -4.78125 C 1.53125 -5.03125 1.359375 -5.296875 1.015625 -5.296875 C 0.9375 -5.296875 0.90625 -5.296875 0.875 -5.28125 C 1.109375 -5.921875 1.640625 -6.296875 2.21875 -6.296875 C 3.125 -6.296875 3.546875 -5.484375 3.546875 -4.671875 C 3.546875 -3.890625 3.046875 -3.09375 2.5 -2.484375 L 0.609375 -0.359375 C 0.5 -0.25 0.5 -0.234375 0.5 0 L 4.171875 0 Z M 4.453125 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.5 -4.75 4.15625 -5.484375 C 3.703125 -6.4375 2.890625 -6.59375 2.484375 -6.59375 C 1.875 -6.59375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.734375 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.421875 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.75 0.015625 4.1875 -0.9375 C 4.5 -1.609375 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.28125 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.90625 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.28125 C 1.203125 -3.921875 1.203125 -4.578125 1.28125 -5.109375 C 1.46875 -6.296875 2.21875 -6.375 2.46875 -6.375 C 2.796875 -6.375 3.453125 -6.203125 3.640625 -5.21875 C 3.734375 -4.671875 3.734375 -3.90625 3.734375 -3.28125 Z M 3.734375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.53125 -1.671875 C 4.53125 -2.015625 4.421875 -2.46875 4.046875 -2.875 C 3.859375 -3.09375 3.6875 -3.1875 3.0625 -3.59375 C 3.78125 -3.953125 4.265625 -4.46875 4.265625 -5.125 C 4.265625 -6.03125 3.375 -6.59375 2.484375 -6.59375 C 1.484375 -6.59375 0.6875 -5.859375 0.6875 -4.9375 C 0.6875 -4.765625 0.703125 -4.3125 1.125 -3.859375 C 1.234375 -3.734375 1.59375 -3.484375 1.84375 -3.3125 C 1.265625 -3.03125 0.421875 -2.484375 0.421875 -1.5 C 0.421875 -0.453125 1.421875 0.21875 2.46875 0.21875 C 3.59375 0.21875 4.53125 -0.609375 4.53125 -1.671875 Z M 3.828125 -5.125 C 3.828125 -4.5625 3.4375 -4.078125 2.84375 -3.734375 L 1.609375 -4.53125 C 1.15625 -4.828125 1.125 -5.15625 1.125 -5.328125 C 1.125 -5.9375 1.765625 -6.34375 2.46875 -6.34375 C 3.1875 -6.34375 3.828125 -5.828125 3.828125 -5.125 Z M 4.03125 -1.3125 C 4.03125 -0.578125 3.28125 -0.0625 2.484375 -0.0625 C 1.625 -0.0625 0.90625 -0.671875 0.90625 -1.5 C 0.90625 -2.078125 1.234375 -2.703125 2.078125 -3.171875 L 3.28125 -2.390625 C 3.5625 -2.203125 4.03125 -1.90625 4.03125 -1.3125 Z M 4.03125 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.671875 -1.640625 L 4.671875 -1.9375 L 3.671875 -1.9375 L 3.671875 -6.453125 C 3.671875 -6.640625 3.671875 -6.703125 3.515625 -6.703125 C 3.421875 -6.703125 3.390625 -6.703125 3.3125 -6.59375 L 0.28125 -1.9375 L 0.28125 -1.640625 L 2.90625 -1.640625 L 2.90625 -0.765625 C 2.90625 -0.421875 2.890625 -0.3125 2.15625 -0.3125 L 1.953125 -0.3125 L 1.953125 0 C 2.359375 -0.03125 2.875 -0.03125 3.28125 -0.03125 C 3.703125 -0.03125 4.234375 -0.03125 4.640625 0 L 4.640625 -0.3125 L 4.421875 -0.3125 C 3.6875 -0.3125 3.671875 -0.421875 3.671875 -0.765625 L 3.671875 -1.640625 Z M 2.96875 -1.9375 L 0.5625 -1.9375 L 2.96875 -5.640625 Z M 2.96875 -1.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 7.25 -0.875 C 7.25 -0.9375 7.25 -1.046875 7.125 -1.046875 C 7.015625 -1.046875 7.015625 -0.953125 7 -0.875 C 6.9375 -0.171875 6.59375 0 6.34375 0 C 5.859375 0 5.78125 -0.5 5.640625 -1.421875 L 5.515625 -2.21875 C 5.34375 -2.859375 4.859375 -3.1875 4.3125 -3.375 C 5.265625 -3.609375 6.046875 -4.203125 6.046875 -4.984375 C 6.046875 -5.9375 4.90625 -6.765625 3.453125 -6.765625 L 0.34375 -6.765625 L 0.34375 -6.453125 L 0.578125 -6.453125 C 1.34375 -6.453125 1.359375 -6.34375 1.359375 -6 L 1.359375 -0.765625 C 1.359375 -0.421875 1.34375 -0.3125 0.578125 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.40625 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.875 -0.03125 3.234375 0 L 3.234375 -0.3125 L 3 -0.3125 C 2.234375 -0.3125 2.21875 -0.421875 2.21875 -0.765625 L 2.21875 -3.28125 L 3.359375 -3.28125 C 3.515625 -3.28125 3.9375 -3.28125 4.28125 -2.9375 C 4.65625 -2.578125 4.65625 -2.28125 4.65625 -1.609375 C 4.65625 -0.96875 4.65625 -0.578125 5.0625 -0.203125 C 5.46875 0.15625 6.015625 0.21875 6.3125 0.21875 C 7.078125 0.21875 7.25 -0.59375 7.25 -0.875 Z M 5.015625 -4.984375 C 5.015625 -4.296875 4.78125 -3.5 3.3125 -3.5 L 2.21875 -3.5 L 2.21875 -6.0625 C 2.21875 -6.296875 2.21875 -6.40625 2.4375 -6.4375 C 2.53125 -6.453125 2.828125 -6.453125 3.015625 -6.453125 C 3.90625 -6.453125 5.015625 -6.421875 5.015625 -4.984375 Z M 5.015625 -4.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.890625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.5 -0.140625 2.609375 -0.140625 2.515625 -0.140625 C 2.015625 -0.140625 1.625 -0.4375 1.390625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.28125 L 3.859375 -2.28125 C 4.078125 -2.28125 4.109375 -2.28125 4.109375 -2.5 C 4.109375 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.171875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.109375 -0.984375 4.109375 -1.171875 Z M 3.453125 -2.5 L 1.109375 -2.5 C 1.171875 -3.96875 2 -4.21875 2.34375 -4.21875 C 3.359375 -4.21875 3.453125 -2.875 3.453125 -2.5 Z M 3.453125 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 4.78125 -0.875 L 4.78125 -1.4375 L 4.53125 -1.4375 L 4.53125 -0.875 C 4.53125 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.8125 -0.6875 3.8125 -0.75 L 3.8125 -2.71875 C 3.8125 -3.140625 3.8125 -3.53125 3.453125 -3.890625 C 3.078125 -4.28125 2.578125 -4.4375 2.09375 -4.4375 C 1.28125 -4.4375 0.609375 -3.96875 0.609375 -3.3125 C 0.609375 -3.015625 0.796875 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.046875 1.515625 -3.3125 C 1.515625 -3.421875 1.46875 -3.75 1.015625 -3.765625 C 1.28125 -4.109375 1.765625 -4.21875 2.078125 -4.21875 C 2.5625 -4.21875 3.125 -3.828125 3.125 -2.953125 L 3.125 -2.578125 C 2.625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.234375 -0.359375 3.5 0.0625 3.96875 0.0625 C 4.1875 0.0625 4.78125 -0.078125 4.78125 -0.875 Z M 3.125 -1.390625 C 3.125 -0.453125 2.421875 -0.109375 1.96875 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.3125 3.125 -2.375 Z M 3.125 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.859375 -0.3125 1.75 -0.3125 1.75 -0.75 L 1.75 -6.875 L 0.328125 -6.765625 L 0.328125 -6.453125 C 1.015625 -6.453125 1.09375 -6.390625 1.09375 -5.90625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 Z M 2.53125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 6.1875 -4.921875 C 6.1875 -5.890625 5.203125 -6.765625 3.84375 -6.765625 L 0.34375 -6.765625 L 0.34375 -6.453125 L 0.578125 -6.453125 C 1.34375 -6.453125 1.359375 -6.34375 1.359375 -6 L 1.359375 -0.765625 C 1.359375 -0.421875 1.34375 -0.3125 0.578125 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.6875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.765625 L 2.25 -3.125 L 3.921875 -3.125 C 5.109375 -3.125 6.1875 -3.9375 6.1875 -4.921875 Z M 5.15625 -4.921875 C 5.15625 -4.453125 5.15625 -3.390625 3.59375 -3.390625 L 2.21875 -3.390625 L 2.21875 -6.0625 C 2.21875 -6.390625 2.234375 -6.453125 2.703125 -6.453125 L 3.59375 -6.453125 C 5.15625 -6.453125 5.15625 -5.40625 5.15625 -4.921875 Z M 5.15625 -4.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.375 2.875 -4.375 C 2.15625 -4.375 1.796875 -3.71875 1.65625 -3.28125 L 1.65625 -4.375 L 0.28125 -4.265625 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.890625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.796875 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.765625 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.15625 2.875 -4.15625 C 2.9375 -4.15625 2.96875 -4.15625 2.984375 -4.15625 C 2.953125 -4.140625 2.75 -4.015625 2.75 -3.765625 C 2.75 -3.484375 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.453125 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 3.28125 -1.234375 L 3.28125 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.375 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.203125 L 1.71875 -3.96875 L 3.125 -3.96875 L 3.125 -4.265625 L 1.71875 -4.265625 L 1.71875 -6.09375 L 1.46875 -6.09375 C 1.453125 -5.28125 1.15625 -4.21875 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.28125 -0.59375 3.28125 -1.234375 Z M 3.28125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 0 -3.296875 L -0.3125 -3.296875 L -0.3125 -3.046875 C -0.3125 -2.265625 -0.421875 -2.234375 -0.765625 -2.234375 L -6 -2.234375 C -6.34375 -2.234375 -6.453125 -2.265625 -6.453125 -3.046875 L -6.453125 -3.296875 L -6.765625 -3.296875 C -6.734375 -2.953125 -6.734375 -2.171875 -6.734375 -1.796875 C -6.734375 -1.40625 -6.734375 -0.625 -6.765625 -0.28125 L -6.453125 -0.28125 L -6.453125 -0.53125 C -6.453125 -1.3125 -6.34375 -1.34375 -6 -1.34375 L -0.765625 -1.34375 C -0.421875 -1.34375 -0.3125 -1.3125 -0.3125 -0.53125 L -0.3125 -0.28125 L 0 -0.28125 C -0.03125 -0.625 -0.03125 -1.40625 -0.03125 -1.78125 C -0.03125 -2.171875 -0.03125 -2.953125 0 -3.296875 Z M 0 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0 -8.046875 L -0.3125 -8.046875 C -0.3125 -7.53125 -0.3125 -7.296875 -0.609375 -7.28125 L -2.5 -7.28125 C -3.34375 -7.28125 -3.65625 -7.28125 -4.015625 -6.96875 C -4.1875 -6.828125 -4.375 -6.515625 -4.375 -5.9375 C -4.375 -5.109375 -3.78125 -4.671875 -3.40625 -4.5 C -4.265625 -4.359375 -4.375 -3.625 -4.375 -3.1875 C -4.375 -2.453125 -3.953125 -1.984375 -3.34375 -1.71875 L -4.375 -1.71875 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.890625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.875 -0.3125 -1.765625 -0.75 -1.765625 L -2.578125 -1.765625 C -3.609375 -1.765625 -4.15625 -2.484375 -4.15625 -3.109375 C -4.15625 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.1875 L 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.640625 -0.3125 -4.53125 -0.75 -4.53125 L -2.578125 -4.53125 C -3.609375 -4.53125 -4.15625 -5.234375 -4.15625 -5.859375 C -4.15625 -6.484375 -3.625 -6.59375 -3.0625 -6.59375 L -0.75 -6.59375 C -0.3125 -6.59375 -0.3125 -6.484375 -0.3125 -5.828125 L 0 -5.828125 L -0.03125 -6.9375 Z M 0 -8.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M -0.875 -4.78125 L -1.4375 -4.78125 L -1.4375 -4.53125 L -0.875 -4.53125 C -0.3125 -4.53125 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.71875 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.890625 -3.453125 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.09375 C -4.4375 -1.28125 -3.96875 -0.609375 -3.3125 -0.609375 C -3.015625 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.046875 -1.515625 -3.3125 -1.515625 C -3.421875 -1.515625 -3.75 -1.46875 -3.765625 -1.015625 C -4.109375 -1.28125 -4.21875 -1.765625 -4.21875 -2.078125 C -4.21875 -2.5625 -3.828125 -3.125 -2.953125 -3.125 L -2.578125 -3.125 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.234375 0.0625 -3.5 0.0625 -3.96875 C 0.0625 -4.1875 -0.078125 -4.78125 -0.875 -4.78125 Z M -1.390625 -3.125 C -0.453125 -3.125 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.3125 -1.5 -2.375 -3.125 Z M -1.390625 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M -4 -4.796875 C -4.171875 -4.796875 -4.484375 -4.6875 -4.484375 -4.296875 C -4.484375 -4.09375 -4.421875 -3.671875 -4.015625 -3.25 C -4.34375 -2.828125 -4.375 -2.421875 -4.375 -2.203125 C -4.375 -1.28125 -3.6875 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.90625 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.875 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.015625 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.3125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.578125 -1.046875 -1.78125 -1.21875 C -1.5 -1.609375 -1.46875 -2.015625 -1.46875 -2.203125 C -1.46875 -3.125 -2.15625 -3.796875 -2.921875 -3.796875 C -3.28125 -3.796875 -3.65625 -3.640625 -3.890625 -3.390625 C -4.21875 -3.75 -4.265625 -4.109375 -4.265625 -4.296875 C -4.265625 -4.296875 -4.265625 -4.359375 -4.265625 -4.390625 C -4.21875 -4.28125 -4.109375 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.515625 C -3.703125 -4.609375 -3.78125 -4.796875 -4 -4.796875 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.046875 -2.09375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.6875 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.5 -1.34375 -3.75 -1.5 C -3.875 -1.578125 -4.15625 -1.796875 -4.15625 -2.203125 C -4.15625 -3.0625 -3.15625 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.46875 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.375 -1.75 L -4.265625 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -5.984375 -1.90625 C -6.25 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -5.984375 -0.84375 C -5.71875 -0.84375 -5.453125 -1.0625 -5.453125 -1.359375 C -5.453125 -1.703125 -5.734375 -1.90625 -5.984375 -1.90625 Z M -5.984375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.78125 -0.3125 -4.53125 -0.609375 -4.53125 L -2.5 -4.53125 C -3.34375 -4.53125 -3.65625 -4.53125 -4.015625 -4.21875 C -4.1875 -4.078125 -4.375 -3.75 -4.375 -3.1875 C -4.375 -2.453125 -3.953125 -1.984375 -3.34375 -1.71875 L -4.375 -1.71875 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.890625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.875 -0.3125 -1.765625 -0.75 -1.765625 L -2.578125 -1.765625 C -3.609375 -1.765625 -4.15625 -2.484375 -4.15625 -3.109375 C -4.15625 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.1875 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M -3.78125 -3.609375 C -4.09375 -3.609375 -4.375 -3.296875 -4.375 -2.875 C -4.375 -2.15625 -3.71875 -1.796875 -3.28125 -1.65625 L -4.375 -1.65625 L -4.265625 -0.28125 L -3.96875 -0.28125 C -3.96875 -0.96875 -3.890625 -1.046875 -3.40625 -1.046875 L -0.75 -1.046875 C -0.3125 -1.046875 -0.3125 -0.9375 -0.3125 -0.28125 L 0 -0.28125 L -0.03125 -1.40625 C -0.03125 -1.796875 -0.03125 -2.265625 0 -2.671875 L -0.3125 -2.671875 L -0.3125 -2.453125 C -0.3125 -1.71875 -0.421875 -1.703125 -0.765625 -1.703125 L -2.296875 -1.703125 C -3.28125 -1.703125 -4.15625 -2.125 -4.15625 -2.875 C -4.15625 -2.9375 -4.15625 -2.96875 -4.15625 -2.984375 C -4.140625 -2.953125 -4.015625 -2.75 -3.765625 -2.75 C -3.484375 -2.75 -3.34375 -2.96875 -3.34375 -3.1875 C -3.34375 -3.359375 -3.453125 -3.609375 -3.78125 -3.609375 Z M -3.78125 -3.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M -3.96875 -5.03125 L -4.265625 -5.03125 C -4.25 -4.796875 -4.234375 -4.515625 -4.234375 -4.296875 L -4.265625 -3.421875 L -3.96875 -3.421875 C -3.953125 -3.734375 -3.78125 -3.890625 -3.53125 -3.890625 C -3.4375 -3.890625 -3.421875 -3.890625 -3.296875 -3.828125 L -0.859375 -2.828125 L -3.53125 -1.734375 C -3.625 -1.6875 -3.671875 -1.671875 -3.703125 -1.671875 C -3.96875 -1.671875 -3.96875 -2.046875 -3.96875 -2.234375 L -4.265625 -2.234375 L -4.234375 -1.15625 C -4.234375 -0.875 -4.25 -0.484375 -4.265625 -0.1875 L -3.96875 -0.1875 C -3.96875 -0.65625 -3.96875 -0.859375 -3.609375 -0.984375 L 0 -2.484375 L 0.578125 -2.234375 C 1.125 -2.015625 1.8125 -1.734375 1.8125 -1.09375 C 1.8125 -1.046875 1.8125 -0.828125 1.640625 -0.640625 C 1.59375 -0.9375 1.375 -1.015625 1.21875 -1.015625 C 0.953125 -1.015625 0.796875 -0.828125 0.796875 -0.609375 C 0.796875 -0.40625 0.9375 -0.1875 1.234375 -0.1875 C 1.671875 -0.1875 2.03125 -0.609375 2.03125 -1.09375 C 2.03125 -1.71875 1.46875 -2.125 0.90625 -2.375 L -3.328125 -4.109375 C -3.953125 -4.375 -3.96875 -4.875 -3.96875 -5.03125 Z M -3.96875 -5.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M -4.921875 -6.1875 C -5.890625 -6.1875 -6.765625 -5.203125 -6.765625 -3.84375 L -6.765625 -0.34375 L -6.453125 -0.34375 L -6.453125 -0.578125 C -6.453125 -1.34375 -6.34375 -1.359375 -6 -1.359375 L -0.765625 -1.359375 C -0.421875 -1.359375 -0.3125 -1.34375 -0.3125 -0.578125 L -0.3125 -0.34375 L 0 -0.34375 C -0.03125 -0.6875 -0.03125 -1.421875 -0.03125 -1.796875 C -0.03125 -2.171875 -0.03125 -2.921875 0 -3.265625 L -0.3125 -3.265625 L -0.3125 -3.03125 C -0.3125 -2.265625 -0.421875 -2.25 -0.765625 -2.25 L -3.125 -2.25 L -3.125 -3.921875 C -3.125 -5.109375 -3.9375 -6.1875 -4.921875 -6.1875 Z M -4.921875 -5.15625 C -4.453125 -5.15625 -3.390625 -5.15625 -3.390625 -3.59375 L -3.390625 -2.21875 L -6.0625 -2.21875 C -6.390625 -2.21875 -6.453125 -2.234375 -6.453125 -2.703125 L -6.453125 -3.59375 C -6.453125 -5.15625 -5.40625 -5.15625 -4.921875 -5.15625 Z M -4.921875 -5.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M -1.234375 -3.28125 L -1.796875 -3.28125 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.125 L -4.265625 -3.125 L -4.265625 -1.71875 L -6.09375 -1.71875 L -6.09375 -1.46875 C -5.28125 -1.453125 -4.21875 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.28125 -1.234375 -3.28125 Z M -1.234375 -3.28125 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 116.5 L 42.964844 116.5 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 102 L 42.964844 102 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 116.5 L 42.964844 116.5 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 101 L 42.964844 101 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 99 L 42.964844 99 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 116.5 L 42.964844 116.5 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 100 L 42.964844 100 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 116.5 L 42.964844 116.5 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 113 L 42.964844 113 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 101 L 42.964844 101 Z M 42.964844 3.796875 "/>
</clipPath>
<clipPath id="clip11">
<path d="M 42.964844 3.796875 L 155.667969 3.796875 L 155.667969 116.5 L 42.964844 116.5 Z M 42.964844 3.796875 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 42.964844 116.5 L 155.667969 116.5 L 155.667969 3.796875 L 42.964844 3.796875 Z M 42.964844 116.5 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.338355 7.78355 L 11.338355 121.170101 M 25.513639 7.78355 L 25.513639 121.170101 M 39.684993 7.78355 L 39.684993 121.170101 M 53.860276 7.78355 L 53.860276 121.170101 M 68.03163 7.78355 L 68.03163 121.170101 M 82.206914 7.78355 L 82.206914 121.170101 M 96.378268 7.78355 L 96.378268 121.170101 M 110.553552 7.78355 L 110.553552 121.170101 M 124.724906 7.78355 L 124.724906 121.170101 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.338355 7.78355 L 124.724906 7.78355 M 11.338355 21.958834 L 124.724906 21.958834 M 11.338355 36.130188 L 124.724906 36.130188 M 11.338355 50.305472 L 124.724906 50.305472 M 11.338355 64.476826 L 124.724906 64.476826 M 11.338355 78.652109 L 124.724906 78.652109 M 11.338355 92.823463 L 124.724906 92.823463 M 11.338355 106.998747 L 124.724906 106.998747 M 11.338355 121.170101 L 124.724906 121.170101 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.338355 7.78355 L 11.338355 12.035742 M 25.513639 7.78355 L 25.513639 12.035742 M 39.684993 7.78355 L 39.684993 12.035742 M 53.860276 7.78355 L 53.860276 12.035742 M 68.03163 7.78355 L 68.03163 12.035742 M 82.206914 7.78355 L 82.206914 12.035742 M 96.378268 7.78355 L 96.378268 12.035742 M 110.553552 7.78355 L 110.553552 12.035742 M 124.724906 7.78355 L 124.724906 12.035742 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.338355 7.78355 L 15.590547 7.78355 M 11.338355 21.958834 L 15.590547 21.958834 M 11.338355 36.130188 L 15.590547 36.130188 M 11.338355 50.305472 L 15.590547 50.305472 M 11.338355 64.476826 L 15.590547 64.476826 M 11.338355 78.652109 L 15.590547 78.652109 M 11.338355 92.823463 L 15.590547 92.823463 M 11.338355 106.998747 L 15.590547 106.998747 M 11.338355 121.170101 L 15.590547 121.170101 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.338355 7.78355 L 124.724906 7.78355 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.338355 7.78355 L 11.338355 121.170101 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="49.076428" y="126.530724"/>
<use xlink:href="#glyph0-2" x="52.376949" y="126.530724"/>
<use xlink:href="#glyph0-3" x="57.328225" y="126.530724"/>
<use xlink:href="#glyph0-4" x="60.079153" y="126.530724"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="77.251576" y="126.530724"/>
<use xlink:href="#glyph0-5" x="80.552096" y="126.530724"/>
<use xlink:href="#glyph0-3" x="85.503372" y="126.530724"/>
<use xlink:href="#glyph0-6" x="88.254301" y="126.530724"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="105.427717" y="126.530724"/>
<use xlink:href="#glyph0-5" x="108.728238" y="126.530724"/>
<use xlink:href="#glyph0-3" x="113.679513" y="126.530724"/>
<use xlink:href="#glyph0-7" x="116.430442" y="126.530724"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="139.105497" y="126.530724"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="23.215249" y="105.529077"/>
<use xlink:href="#glyph0-2" x="26.51577" y="105.529077"/>
<use xlink:href="#glyph0-3" x="31.467045" y="105.529077"/>
<use xlink:href="#glyph0-4" x="34.217974" y="105.529077"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="23.215249" y="77.352936"/>
<use xlink:href="#glyph0-5" x="26.51577" y="77.352936"/>
<use xlink:href="#glyph0-3" x="31.467045" y="77.352936"/>
<use xlink:href="#glyph0-6" x="34.217974" y="77.352936"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="23.215249" y="49.177788"/>
<use xlink:href="#glyph0-5" x="26.51577" y="49.177788"/>
<use xlink:href="#glyph0-3" x="31.467045" y="49.177788"/>
<use xlink:href="#glyph0-7" x="34.217974" y="49.177788"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="34.218526" y="21.001647"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 13.609859 0.697873 L 27.993429 10.833182 L 39.995458 20.088184 L 50.032518 28.545409 L 58.446513 36.271666 L 65.51647 43.333763 L 71.486045 49.79065 L 76.551734 55.689486 L 80.874665 61.06957 L 84.588456 65.974132 L 87.799215 70.426751 L 90.59733 74.466726 L 95.215007 81.391276 L 103.963047 94.713763 L 108.018742 100.820886 L 109.013016 102.479319 L 109.610367 103.634721 L 110.0348 104.668294 L 110.211647 105.332454 L 110.243087 105.760817 L 110.184138 105.996613 L 109.932622 106.582174 L 109.975851 106.872989 L 110.152698 107.077346 L 110.337405 107.128435 L 110.514252 107.069486 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 12.627374 2.313077 L 27.022735 12.357997 L 39.036553 21.526541 L 49.089333 29.909097 L 57.515118 37.572475 L 64.612585 44.579553 L 70.605739 50.985351 L 75.702868 56.840957 L 80.057238 62.181742 L 83.806399 67.050934 L 87.056457 71.472114 L 89.901731 75.48065 L 94.613726 82.34232 L 101.306409 92.131794 L 104.623276 96.78877 L 108.301698 101.897688 L 109.189864 103.269237 L 109.838303 104.463938 L 110.136978 105.222415 L 110.250947 105.705798 L 110.231297 106.028053 L 110.097679 106.311008 L 109.987641 106.625403 L 110.03087 106.888709 L 110.191998 107.069486 L 110.360985 107.116645 L 110.529972 107.049836 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 0.000485839 0.316669 L 12.006444 7.81106 L 26.114919 17.455126 L 37.904731 26.273905 L 47.772804 34.342066 L 56.064971 41.730349 L 63.06026 48.493771 L 68.986605 54.687352 L 74.040504 60.354321 L 78.383085 65.530049 L 82.140105 70.249903 L 85.425533 74.541395 L 90.884216 81.929677 L 97.093517 90.351533 L 100.268906 94.438667 L 102.823365 97.527598 L 104.839423 99.814822 L 107.54715 102.719045 L 109.256673 104.573976 L 109.881533 105.371753 L 110.211647 105.953384 L 110.294176 106.283498 L 110.243087 106.479995 L 110.152698 106.751161 L 110.188068 106.931938 L 110.302036 107.053766 L 110.463163 107.077346 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 0.000485839 4.997225 L 12.037884 12.393367 L 25.894843 21.719108 L 37.484228 30.251002 L 47.202963 38.063717 L 55.381162 45.220133 L 62.289992 51.779198 L 68.169178 57.788072 L 73.195568 63.282125 L 77.534219 68.304584 L 81.306958 72.882961 L 87.547699 80.793925 L 94.637306 89.87601 L 98.284288 94.30112 L 101.25139 97.641566 L 103.621142 100.093847 L 105.468213 101.862319 L 107.916564 104.027714 L 109.747915 105.658638 L 110.176278 106.16167 L 110.329545 106.479995 L 110.290246 106.664702 L 110.258807 106.892639 L 110.321686 107.006607 L 110.455303 107.061626 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 10.827463 0.587835 L 25.383951 10.778162 L 37.531387 20.096044 L 47.690275 28.616148 L 56.206449 36.417073 L 63.370725 43.557769 L 69.430688 50.093255 L 74.578906 56.07462 L 78.988295 61.537232 L 82.792475 66.524323 L 86.097552 71.059471 L 91.552305 78.880046 L 99.310001 90.182545 L 102.072747 94.041744 L 105.153818 98.152458 L 108.521774 102.589357 L 109.508189 104.070944 L 109.991571 104.986619 L 110.199857 105.56432 L 110.254877 105.937664 L 110.188068 106.20883 L 110.01515 106.648983 L 110.05445 106.896569 L 110.211647 107.069486 L 110.427794 107.104855 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 0.000485839 16.849916 L 11.538782 23.636917 L 24.774811 32.168811 L 35.869024 39.993316 L 45.202625 47.173312 L 53.086079 53.771676 L 59.786622 59.82771 L 65.51647 65.388571 L 70.464262 70.4857 L 74.775403 75.146605 L 78.567792 79.394868 L 87.708826 89.840641 L 90.208266 92.603387 L 92.49156 95.032088 L 94.586217 97.146394 L 96.500096 98.965955 L 98.241058 100.514351 L 99.820893 101.81123 L 101.24746 102.891963 L 102.52076 103.776198 L 104.646856 105.073078 L 106.27385 105.894435 L 107.492131 106.397467 L 108.726131 106.79046 L 109.791144 107.010537 L 110.522112 107.057696 L 110.565342 107.006607 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 0.000485839 6.498461 L 11.967145 13.812074 L 25.749435 23.035637 L 37.275941 31.477142 L 46.947517 39.211259 L 55.090347 46.296936 L 61.975597 52.793122 L 67.835133 58.743047 L 72.853663 64.18994 L 77.188384 69.165241 L 80.961124 73.700388 L 87.225444 81.540613 L 92.228254 87.871742 L 96.307529 92.854903 L 98.064211 94.88668 L 101.074543 98.164248 L 103.483595 100.55758 L 105.366035 102.267103 L 107.370303 103.933396 L 109.964061 106.039842 L 110.290246 106.432836 L 110.337405 106.645053 L 110.298106 106.912288 L 110.396354 107.038046 L 110.541762 107.022327 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 10.972871 37.010494 L 23.466141 44.599203 L 33.966934 51.578771 L 42.836802 58.008149 L 50.370492 63.938424 L 56.811659 69.397107 L 62.372521 74.427427 L 67.222063 79.049033 L 71.497835 83.285505 L 81.900379 93.786298 L 84.788883 96.580483 L 87.46124 99.040624 L 89.944961 101.17065 L 92.243974 102.990211 L 94.374 104.515027 L 96.331109 105.764747 L 98.12316 106.770811 L 99.746224 107.556798 L 101.208161 108.154149 L 102.5129 108.590372 L 103.664372 108.892977 L 104.678296 109.081614 L 105.562531 109.187722 L 106.985169 109.215232 L 108.030532 109.089474 L 108.78115 108.896907 L 109.527838 108.570722 L 110.081959 108.185588 L 110.812928 107.46641 L 110.895456 107.313142 L 110.899386 107.120575 L 110.805068 106.975167 L 110.64787 106.928008 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 12.116483 3.849683 L 26.472543 13.784564 L 38.462782 22.86272 L 48.495912 31.162747 L 56.913838 38.755386 L 64.003445 45.699585 L 70.004459 52.050364 L 75.105517 57.858811 L 79.475608 63.156367 L 83.244418 67.98626 L 86.521985 72.376 L 91.925649 79.933269 L 99.573307 90.827055 L 102.284964 94.540846 L 105.299226 98.498293 L 108.580723 102.758345 L 109.539628 104.184912 L 110.007291 105.065218 L 110.239157 105.725447 L 110.262736 106.051632 L 110.168418 106.303148 L 110.05838 106.550734 L 110.03873 106.782601 L 110.140908 106.998747 L 110.305966 107.096996 L 110.502463 107.073416 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 10.921782 37.768972 L 23.375753 45.302662 L 33.845106 52.235071 L 42.687465 58.625149 L 50.197575 64.512195 L 56.626952 69.943368 L 62.176024 74.942249 L 67.021636 79.536345 L 71.293478 83.749238 L 81.707812 94.191081 L 84.608106 96.969547 L 87.292253 99.413968 L 89.783833 101.528274 L 92.098566 103.328186 L 94.240382 104.837282 L 96.209281 106.075212 L 98.013122 107.061626 L 99.651906 107.831894 L 101.125632 108.413524 L 102.442161 108.830098 L 103.605423 109.116983 L 104.627206 109.29383 L 105.515372 109.384219 L 106.953729 109.384219 L 108.006952 109.234881 L 108.76936 109.014805 L 109.519978 108.66504 L 110.078029 108.252397 L 110.832577 107.493919 L 110.919036 107.328862 L 110.919036 107.124505 L 110.816858 106.975167 L 110.65573 106.924078 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 10.862833 39.828259 L 23.198906 47.216541 L 33.57394 54.023192 L 42.34556 60.295372 L 49.800651 66.08024 L 56.190729 71.417095 L 61.712291 76.333446 L 66.542184 80.856804 L 70.810096 84.998958 L 81.255869 95.271814 L 84.175813 98.003121 L 86.887469 100.396452 L 89.406559 102.463599 L 91.752732 104.220281 L 93.925987 105.682218 L 95.930255 106.872989 L 97.765536 107.816174 L 99.431829 108.543212 L 100.933065 109.077684 L 102.273174 109.454958 L 103.460015 109.694684 L 104.501448 109.832232 L 105.413194 109.883321 L 106.199181 109.871531 L 107.460691 109.714334 L 108.376367 109.462818 L 109.032666 109.179862 L 109.685036 108.771149 L 110.168418 108.327066 L 110.970125 107.368161 L 110.970125 107.136295 L 110.856157 106.967308 L 110.66752 106.916218 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 12.383718 4.922556 L 26.653321 14.778839 L 38.56889 23.778395 L 48.543071 32.011614 L 56.913838 39.545303 L 63.968075 46.434483 L 69.93765 52.738103 L 75.022989 58.499391 L 79.377359 63.761577 L 83.134379 68.552171 L 86.404087 72.906541 L 91.807751 80.404861 L 99.478989 91.200399 L 102.206365 94.867031 L 105.244207 98.761599 L 108.871539 103.336046 L 109.685036 104.554326 L 110.078029 105.304944 L 110.258807 105.870855 L 110.258807 106.153811 L 110.109469 106.479995 L 110.05838 106.676492 L 110.093749 106.908359 L 110.239157 107.061626 L 110.435654 107.096996 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 11.66847 5.991499 L 25.945932 15.780973 L 37.873292 24.72944 L 47.859262 32.915499 L 56.245748 40.40596 L 63.315706 47.25977 L 69.30493 53.53195 L 74.409919 59.269659 L 78.791799 64.504335 L 82.576328 69.275279 L 85.877476 73.61 L 91.344018 81.072951 L 97.51402 89.573405 L 100.63832 93.711629 L 103.1299 96.859509 L 105.876926 100.144936 L 109.087685 103.949116 L 109.795074 104.95125 L 110.129119 105.57218 L 110.274526 106.043772 L 110.254877 106.283498 L 110.101609 106.81404 L 110.191998 107.002677 L 110.337405 107.085206 L 110.506393 107.061626 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 0.000485839 20.233592 L 11.428743 26.867326 L 24.480065 35.171283 L 35.428871 42.791432 L 44.648503 49.79065 L 52.445499 56.227887 L 59.079233 62.138513 L 64.769782 67.573616 L 69.690064 72.552847 L 73.989415 77.111574 L 81.177271 85.034328 L 87.009298 91.467635 L 89.548037 94.159642 L 91.88242 96.513674 L 94.024236 98.557242 L 95.989204 100.306064 L 97.781256 101.77979 L 99.41218 103.009861 L 100.885906 104.015925 L 102.206365 104.833352 L 103.377486 105.481791 L 105.314945 106.389607 L 106.784742 106.912288 L 107.869405 107.191314 L 108.961927 107.356371 L 109.771494 107.360301 L 110.337405 107.258123 L 110.632151 107.112715 L 110.608571 106.990887 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 0.000485839 16.067858 L 11.491622 22.83914 L 24.7866 31.422123 L 35.927973 39.293787 L 45.293013 46.520942 L 53.203977 53.154676 L 59.92417 59.246079 L 65.673668 64.83838 L 70.629319 69.966948 L 74.94439 74.655363 L 78.740709 78.927205 L 90.361534 92.218253 L 92.633038 94.666604 L 94.715905 96.79663 L 96.617994 98.631911 L 98.351097 100.196026 L 99.919142 101.516485 L 101.329989 102.612937 L 102.595429 103.512893 L 104.701875 104.845141 L 106.313149 105.697938 L 107.51964 106.228479 L 108.741851 106.660772 L 109.799004 106.924078 L 110.553552 107.014467 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 0.000485839 -0.00165561 L 13.484101 8.545958 L 27.372499 18.174304 L 38.981534 26.961644 L 48.708129 34.998366 L 56.882398 42.347349 L 63.779438 49.071471 L 69.631115 55.221823 L 74.626065 60.841634 L 78.917557 65.974132 L 82.635277 70.650757 L 85.881406 74.895089 L 91.285069 82.192983 L 97.419701 90.49301 L 100.547931 94.513336 L 103.051302 97.547248 L 105.821907 100.695128 L 109.299902 104.530746 L 109.901182 105.336384 L 110.219507 105.925874 L 110.294176 106.263849 L 110.239157 106.464276 L 110.144838 106.743301 L 110.180208 106.928008 L 110.298106 107.053766 L 110.459233 107.077346 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 10.843183 39.002972 L 23.234275 46.450203 L 33.652539 53.304014 L 42.459528 59.623353 L 49.942129 65.44752 L 56.347927 70.823674 L 61.885208 75.771465 L 66.722961 80.322333 L 70.994803 84.495926 L 81.432716 94.835591 L 84.3448 97.586547 L 87.048597 99.999529 L 89.555897 102.086325 L 91.89028 103.858727 L 94.051745 105.340314 L 96.040293 106.550734 L 97.863784 107.509639 L 99.518288 108.256327 L 101.007734 108.806518 L 102.339983 109.199512 L 103.518964 109.462818 L 104.552538 109.612155 L 105.452493 109.678964 L 106.90657 109.635735 L 107.975513 109.447098 L 108.745781 109.199512 L 109.299902 108.936206 L 109.842233 108.566792 L 110.317756 108.09913 L 110.950476 107.352441 L 110.950476 107.132365 L 110.840437 106.971238 L 110.66359 106.920148 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 0.000485839 21.420433 L 11.397304 28.003078 L 24.389677 36.224506 L 35.291323 43.773916 L 44.467726 50.710255 L 52.237212 57.084614 L 58.851297 62.94808 L 64.530056 68.336024 L 69.442478 73.275955 L 73.741829 77.795383 L 80.937544 85.651328 L 86.789221 92.025686 L 89.34368 94.690183 L 91.689853 97.020636 L 93.847388 99.036694 L 95.828077 100.758007 L 97.639778 102.208154 L 99.286422 103.410714 L 100.775868 104.393199 L 102.108117 105.187046 L 103.291028 105.811906 L 104.336391 106.299218 L 106.049844 106.951588 L 107.331003 107.301352 L 108.270258 107.46248 L 109.205583 107.517499 L 109.893322 107.45462 L 110.384565 107.309212 L 110.65966 107.132365 L 110.64394 106.998747 L 110.553552 106.994817 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 10.579877 26.038109 L 23.811976 34.361716 L 34.906189 42.013304 L 44.24372 49.043962 L 52.138964 55.516569 L 58.855227 61.466494 L 64.608655 66.936966 L 69.580026 71.951566 L 73.922606 76.545663 L 81.165481 84.531296 L 87.028947 91.023552 L 89.579477 93.739139 L 91.913859 96.120681 L 94.059605 98.187828 L 96.024574 99.960229 L 97.820555 101.457535 L 99.447549 102.707256 L 100.917346 103.736899 L 102.233875 104.570046 L 103.401066 105.242065 L 105.334595 106.18132 L 106.796532 106.735441 L 107.877265 107.041976 L 108.965857 107.238473 L 109.771494 107.277773 L 110.333475 107.210964 L 110.612501 107.096996 L 110.600711 106.994817 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M 11.03575 38.264144 L 23.442562 45.766394 L 33.876545 52.671294 L 42.687465 59.033862 L 50.177925 64.897329 L 56.587653 70.304923 L 62.124935 75.284153 L 66.958757 79.8586 L 71.226669 84.051843 L 81.637073 94.450457 L 84.537367 97.213203 L 87.225444 99.641904 L 89.720954 101.744421 L 92.039617 103.536472 L 94.185363 105.033778 L 96.162121 106.255989 L 97.973823 107.234543 L 99.612606 107.993021 L 101.094193 108.562862 L 102.410722 108.971576 L 103.577913 109.246671 L 104.603627 109.411729 L 105.499652 109.494257 L 106.93801 109.478538 L 107.999093 109.31348 L 108.7615 109.085544 L 109.519978 108.71613 L 109.971921 108.386015 L 110.435654 107.918352 L 110.930826 107.336722 L 110.930826 107.128435 L 110.824718 106.971238 L 110.65573 106.924078 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g clip-path="url(#clip11)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.000485839 13.780634 L 11.680259 20.736623 L 25.073486 29.472874 L 36.297387 37.478156 L 45.725306 44.823209 L 53.683429 51.563052 L 60.438991 57.748773 L 66.208139 63.427532 L 71.17558 68.626839 L 75.490651 73.382063 L 79.279111 77.712854 L 90.805617 91.208259 L 93.049611 93.699839 L 95.097108 95.880954 L 96.963829 97.763394 L 98.657632 99.370739 L 100.194237 100.734427 L 101.573645 101.878039 L 103.900168 103.603281 L 105.700079 104.758683 L 107.059838 105.513231 L 108.454965 106.17346 L 109.928692 106.735441 L 110.455303 106.967308 L 110.545692 107.010537 L 110.553552 106.998747 " transform="matrix(0.993973,0,0,-0.993973,31.69483,124.236636)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="78.397626" y="140.449323"/>
<use xlink:href="#glyph0-9" x="85.686894" y="140.449323"/>
<use xlink:href="#glyph0-10" x="90.088579" y="140.449323"/>
<use xlink:href="#glyph0-11" x="95.039854" y="140.449323"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="101.088333" y="140.449323"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="107.55965" y="140.449323"/>
<use xlink:href="#glyph0-13" x="112.510926" y="140.449323"/>
<use xlink:href="#glyph0-14" x="116.389755" y="140.449323"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="10.754809" y="93.38969"/>
<use xlink:href="#glyph1-2" x="10.754809" y="89.813879"/>
<use xlink:href="#glyph1-3" x="10.754809" y="81.562082"/>
<use xlink:href="#glyph1-4" x="10.754809" y="76.610807"/>
<use xlink:href="#glyph1-5" x="10.754809" y="71.659531"/>
<use xlink:href="#glyph1-6" x="10.754809" y="68.908602"/>
<use xlink:href="#glyph1-3" x="10.754809" y="63.407735"/>
<use xlink:href="#glyph1-7" x="10.754809" y="58.456459"/>
<use xlink:href="#glyph1-8" x="10.754809" y="54.57763"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="10.754809" y="46.053513"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="10.754809" y="39.582196"/>
<use xlink:href="#glyph1-7" x="10.754809" y="34.63092"/>
<use xlink:href="#glyph1-10" x="10.754809" y="30.752091"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -0,0 +1,710 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\setlength\fwidth{4cm}
\setlength\fheight{4cm}
\begin{tikzpicture}
\begin{axis}[%
width=\fwidth,
height=\fheight,
at={(0,0)},
xmin=-1.4,
xmax=0.2,
xtick={-1.4, -1.2, -1, -0.8, -0.6, -0.4, -0.2, 0, 0.2},
xticklabels={{}, {-1.2}, {}, {-0.8}, {}, {-0.4}, {},{0}, {}},
xlabel={Real Part},
ymin=-1.4,
ymax=0.2,
ytick={-1.4, -1.2, -1, -0.8, -0.6, -0.4, -0.2, 0, 0.2},
yticklabels={{}, {-1.2}, {}, {-0.8}, {}, {-0.4}, {},{0}, {}},
ylabel={Imaginary Part}
]
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.36797893526011 -1.50001862303624\\
-1.16498995424946 -1.35696621231185\\
-0.99559961025809 -1.22636638984475\\
-0.853981047113767 -1.10705800080225\\
-0.735287602107294 -0.998016431478695\\
-0.635489695862679 -0.898340115021801\\
-0.551240783141879 -0.807238670583468\\
-0.479767470373703 -0.724021826265133\\
-0.418779528703161 -0.648088368331652\\
-0.366395990332399 -0.578914495116748\\
-0.321083862027054 -0.516041206974297\\
-0.281606321007443 -0.459060726222526\\
-0.216422889520012 -0.361318857422488\\
-0.0929771380261113 -0.173362161727646\\
-0.035769159430413 -0.087189343521481\\
-0.0217254152011825 -0.0637445100449405\\
-0.0132966735281785 -0.0474701710373959\\
-0.00732897645877051 -0.0328869515231414\\
-0.00480426849737592 -0.0235190250988806\\
-0.00437071071015693 -0.0174407071898124\\
-0.0051960505234796 -0.0141102837331601\\
-0.0087652414789805 -0.00586854263157233\\
-0.00814604208714309 -0.00174554484874134\\
-0.00563245364328702 0.00109158594302494\\
-0.00301516687412939 0.00183036879614207\\
-0.000566779138372553 0.00101175288654698\\
4.33619439887956e-06 4.64928740351311e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.38182288726253 -1.47720407548674\\
-1.17870593604476 -1.33548392815947\\
-1.00915187892965 -1.20606472916479\\
-0.867327929571845 -1.08779627251356\\
-0.748382296263 -0.979666505553309\\
-0.6482811237289 -0.880787680121524\\
-0.563674588518503 -0.790384251379557\\
-0.491787249016289 -0.707781595808656\\
-0.430328358296008 -0.632394720384497\\
-0.377418281951746 -0.563716288696618\\
-0.331527494429166 -0.501303563132216\\
-0.291424947147702 -0.444764255017566\\
-0.224886811689192 -0.347900707876285\\
-0.130461816785873 -0.209758784622679\\
-0.0836704578794285 -0.144049177057663\\
-0.0317717903308949 -0.0719651343124343\\
-0.0192568735770182 -0.0526247411250802\\
-0.0101062808148391 -0.0357399886459873\\
-0.00584629385641566 -0.0250681751717676\\
-0.00427760097148022 -0.01821958147713\\
-0.00452284243741552 -0.0136749557973785\\
-0.00641101232382146 -0.00970837892099996\\
-0.00796341091244956 -0.00525775051172261\\
-0.00737661196267081 -0.00153941521146583\\
-0.00508976562629626 0.00100992422232382\\
-0.00272072529591427 0.0016654180204112\\
-0.000312287827330282 0.000721997291961651\\
3.9232421120694e-06 4.20209650453529e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.56 -1.50535724900931\\
-1.390562472599 -1.39960601016154\\
-1.1914736871022 -1.26351068856521\\
-1.02514489104354 -1.13907720422495\\
-0.885858919182712 -1.0252185865401\\
-0.768857657453007 -0.920980627146513\\
-0.670182863069839 -0.825529617702031\\
-0.586545725763649 -0.738141612238793\\
-0.515220401554461 -0.658192268771019\\
-0.453957319695559 -0.585146379755512\\
-0.400912442964713 -0.518546331952047\\
-0.354588922046141 -0.457998997818767\\
-0.277564988204617 -0.353722680740706\\
-0.189930939976545 -0.234891112679668\\
-0.145100605685094 -0.177205309134045\\
-0.10905479740875 -0.13363228930125\\
-0.0806420898717188 -0.10134999526768\\
-0.0423866839328368 -0.0603668217745521\\
-0.0182877989612005 -0.0341876256850084\\
-0.00949586865416374 -0.022925836151285\\
-0.00479910770039127 -0.014741544921457\\
-0.00363324610547067 -0.0100681058133638\\
-0.00435743584879122 -0.00733261309976729\\
-0.00563324611328664 -0.00348377749065309\\
-0.00514088000326818 -0.000941016041339227\\
-0.00351299106432434 0.000772349409272843\\
-0.00127640949395635 0.00110843534418881\\
4.5667588106646e-06 6.23927080400932e-06\\
2.72330119810427e-06 2.90272460934382e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.56 -1.43933230012855\\
-1.39014801728604 -1.33497194103752\\
-1.19460034247808 -1.20338328527939\\
-1.03106667895463 -1.08298283611798\\
-0.893937910245688 -0.972733738271957\\
-0.778545397576963 -0.871729976747991\\
-0.681005749260745 -0.779184580275941\\
-0.598093858100534 -0.694419087896208\\
-0.527139466729534 -0.616853286290956\\
-0.465943040238388 -0.545994296038062\\
-0.412707063151534 -0.481424259857306\\
-0.324603371248104 -0.369768150063148\\
-0.224594758202364 -0.24163502501623\\
-0.173101063533159 -0.179142060617866\\
-0.131238985926635 -0.132015245153821\\
-0.0977965793420235 -0.0974032549294708\\
-0.0717255509224966 -0.0724620216290568\\
-0.0372169004653178 -0.0419171421237561\\
-0.0113824474282764 -0.0188774918819543\\
-0.0052993790630409 -0.0118030666465663\\
-0.00317287741486938 -0.00732636441653822\\
-0.00368234294209269 -0.00471381713303654\\
-0.00414124902298907 -0.00149935199024642\\
-0.00324506492290144 0.000141213576262844\\
-0.00135648711214476 0.000896926935640474\\
6.36300647149923e-06 1.34794078845424e-05\\
2.00669003902476e-06 2.12802817678437e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.40721295054181 -1.50156739028061\\
-1.20178524747 -1.35774138624796\\
-1.03037255937286 -1.2262867202962\\
-0.887048588287306 -1.10604131677438\\
-0.766879381711734 -0.995984144172445\\
-0.66575895496951 -0.895222532873192\\
-0.580274762417476 -0.802980811868838\\
-0.50759792713406 -0.718589254344256\\
-0.445393717784121 -0.641472465991367\\
-0.391748190748267 -0.571136560494852\\
-0.345107264707861 -0.50715481170179\\
-0.268117191810962 -0.396787481264092\\
-0.158667181351622 -0.237293166895955\\
-0.119682153071083 -0.182850248896864\\
-0.0761947206444538 -0.124806339319024\\
-0.0286356585068848 -0.0622326034062173\\
-0.0147214373199167 -0.041285974693078\\
-0.00793608763209153 -0.0283876163128598\\
-0.00495421125148821 -0.0202118930058093\\
-0.00418445078559193 -0.0149395097448488\\
-0.00511916080669161 -0.0111547512214183\\
-0.00759687328516145 -0.00495340156716906\\
-0.00701661188024461 -0.00142938741804888\\
-0.00483232213585594 0.000978774960654905\\
-0.0017693372039489 0.00149795212377613\\
9.72267318344322e-06 1.77783858734681e-05\\
3.72888041888508e-06 3.99017586238948e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.56 -1.27208837321292\\
-1.39716627206371 -1.17630455776466\\
-1.21038109134187 -1.05591464132848\\
-1.05382757098056 -0.945510521341182\\
-0.922155825698476 -0.844171632064228\\
-0.810909594945431 -0.751102653568614\\
-0.716380056739696 -0.665623346297092\\
-0.635486852874352 -0.587159266774018\\
-0.565681776172733 -0.515232257623042\\
-0.504870987163716 -0.449449666877219\\
-0.451351857781089 -0.389491445258653\\
-0.322336128081188 -0.242109933357459\\
-0.287083161402663 -0.203113883485638\\
-0.254840816512332 -0.168826215361465\\
-0.225317194002946 -0.138995615862977\\
-0.198318738881838 -0.113333714587125\\
-0.173715475938874 -0.0915149599576774\\
-0.151411228853189 -0.0731828044827578\\
-0.131320429905931 -0.0579606496540186\\
-0.113352259593073 -0.0454653512431906\\
-0.0833474532940193 -0.0271710062376214\\
-0.060367079025099 -0.0155770447432009\\
-0.0432123006033962 -0.00848854367024243\\
-0.0257835325709106 -0.00291588432463863\\
-0.0107237621048124 0.000177006883427477\\
-0.000447154326500998 0.000815177742687245\\
0.000199213577757984 0.000102653636737893\\
-1.24520055377886e-07 -1.7827892340172e-07\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.56 -1.41816083355792\\
-1.39111423860558 -1.31494957176359\\
-1.19664988050259 -1.18478191309627\\
-1.03397797724532 -1.06564817601379\\
-0.897521565273329 -0.956527009778565\\
-0.782638365207144 -0.856526999363723\\
-0.68546667675408 -0.764875118215509\\
-0.602799409612989 -0.680906382401853\\
-0.531981532782589 -0.604053702796353\\
-0.470826731733197 -0.533837002298575\\
-0.417549387966524 -0.469850839872852\\
-0.329158213194562 -0.359233915915555\\
-0.258578690706421 -0.269868827319196\\
-0.20101047972631 -0.199592917607625\\
-0.17624313989082 -0.170879496170876\\
-0.133749916912614 -0.124634186968315\\
-0.0997313436822493 -0.0908914511912604\\
-0.0731701415692267 -0.0667865919211876\\
-0.0448867741119467 -0.0432274586177561\\
-0.00833131901533979 -0.0135195122024596\\
-0.00369643791863172 -0.00795217538798632\\
-0.00301366207083786 -0.00496530442593035\\
-0.00361480198308617 -0.00123842681363939\\
-0.00222291641242389 0.00057014286607826\\
-0.000128435994781517 0.000322187601693003\\
1.74001221453501e-06 1.83944701537264e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.40518166436843 -0.987606247120369\\
-1.22887519719764 -0.880530136994483\\
-1.08067114243838 -0.782012276291244\\
-0.955529787416411 -0.691269592841817\\
-0.849248915950594 -0.607637761976297\\
-0.758328456177841 -0.530562957167996\\
-0.679861067474466 -0.459594034455762\\
-0.611444349026914 -0.394373906700984\\
-0.551110646080663 -0.33462891340734\\
-0.404329990602502 -0.186449446219706\\
-0.363547630259094 -0.146989508935129\\
-0.325818568875203 -0.112299857257094\\
-0.290817052997111 -0.0822253977411547\\
-0.258351016321737 -0.0565630203213403\\
-0.228321307603254 -0.0350540603561207\\
-0.200683574472227 -0.0173850475203099\\
-0.175415482369833 -0.00319616559443103\\
-0.152491395575903 0.00790448237466346\\
-0.131865550816678 0.0163235138611968\\
-0.113463492331842 0.022464641397526\\
-0.0971804812194699 0.0267131269450156\\
-0.0828849713753474 0.0294238198556702\\
-0.0704251039841952 0.0309133724686981\\
-0.0503493682620504 0.0312854352020546\\
-0.035614703220328 0.029532475400748\\
-0.0249764650399031 0.0267789413151296\\
-0.0144521981416625 0.0221893779733566\\
-0.00666226291539873 0.0167603968840835\\
0.00368681613247634 0.00662391230888892\\
0.00485659848845388 0.00442253886838118\\
0.00489742117628533 0.00170268932680862\\
0.00355533440042 -0.000316714889164293\\
0.00136715338370563 -0.000972981216374125\\
-6.79068082964918e-06 -1.2996820051292e-05\\
-2.66047235131239e-06 -2.92258535661283e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.38902856229793 -1.45551287048673\\
-1.18643209304947 -1.31531452218425\\
-1.01725943664879 -1.18722067297964\\
-0.875693559397491 -1.07010627842703\\
-0.756895331014086 -0.962981561468822\\
-0.6568411525733 -0.864978981279307\\
-0.572189716548702 -0.775341745329267\\
-0.500172999973672 -0.693412955796093\\
-0.438507191713923 -0.618624560296616\\
-0.385319673404632 -0.550485435440119\\
-0.339088490075415 -0.488568209257773\\
-0.262859273957515 -0.381921446496424\\
-0.154924767715682 -0.228171081715673\\
-0.116674089351829 -0.17578198796489\\
-0.0741485239506783 -0.119969363206328\\
-0.0278119388457905 -0.0598281525976005\\
-0.0142865437579109 -0.0396945504364921\\
-0.0076943336644939 -0.027294696288594\\
-0.00443881916692379 -0.0179571755619099\\
-0.00411255337252636 -0.0133789794180201\\
-0.00539632419288449 -0.00982108596077569\\
-0.007000799624306 -0.00633139651291259\\
-0.0072592796844142 -0.00304390270213362\\
-0.00581360068223735 1.24182885421487e-05\\
-0.00348182804523778 0.00141147801668362\\
-0.000734719352422086 0.00104161110457146\\
3.58602963856924e-06 3.8370184329839e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.40587575072567 -0.976907284632715\\
-1.2301620101815 -0.870585211221724\\
-1.0824312872856 -0.772739309726946\\
-0.957661098200763 -0.682594143776437\\
-0.85166324906427 -0.599492680290978\\
-0.760949092302939 -0.5228881683826\\
-0.682620658909303 -0.45233642909619\\
-0.614283362970828 -0.387487301851919\\
-0.553976262058157 -0.328074038284356\\
-0.40701722257435 -0.180721895373068\\
-0.36610819392301 -0.141502947842202\\
-0.328228535223561 -0.107046073237919\\
-0.293058506240449 -0.0772003917522754\\
-0.260412038610811 -0.0517659075396768\\
-0.230195754192921 -0.0304859051234192\\
-0.202370615605738 -0.0130477336346471\\
-0.176918932070828 0.000908602166184602\\
-0.153818883214299 0.0117759723340951\\
-0.133027611836686 0.0199625175609592\\
-0.114472657854412 0.0258737757987983\\
-0.0980504350656257 0.029896914601744\\
-0.0836298230247263 0.0323885923384957\\
-0.071058803305682 0.0336670502896259\\
-0.050799921198446 0.0336455533420752\\
-0.0359275137133446 0.031542171847549\\
-0.0251876405651612 0.0284834315375055\\
-0.0145594537493352 0.0235176352007829\\
-0.00668477455249028 0.0177201290161542\\
0.00393272466969208 0.00697034786254025\\
0.00515063275253169 0.00464501577419418\\
0.00517908306093684 0.00177733429293658\\
0.0037537844649238 -0.000347030607327214\\
0.00144141669328302 -0.0010313358648959\\
-7.18108528441341e-06 -1.37248919762634e-05\\
-2.81157544201882e-06 -3.08613036503758e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.40673159644642 -0.94784087454129\\
-1.23265462983521 -0.843563429933881\\
-1.0862277609309 -0.74754597837873\\
-0.962477288676397 -0.659033725398723\\
-0.857255063437159 -0.577389428944067\\
-0.767105439749221 -0.502085511291008\\
-0.689157896099749 -0.432696518920973\\
-0.621041052695652 -0.3688906589164\\
-0.560814088230995 -0.310419181015246\\
-0.413428233154021 -0.165454379407858\\
-0.372208706051751 -0.126936883885765\\
-0.333960860485937 -0.0931560255962878\\
-0.29838054629576 -0.0639706097131623\\
-0.265296785610384 -0.0391876693757613\\
-0.234630360380498 -0.0185547934398462\\
-0.206354992739627 -0.00176105776841129\\
-0.180463934086854 0.0115540371351295\\
-0.156944199426826 0.0217856027150745\\
-0.135759538808312 0.0293451911458416\\
-0.116841921932538 0.0346423587669693\\
-0.100090210635686 0.038068402551785\\
-0.0853740461368275 0.0399838329323332\\
-0.0725408300007528 0.0407102000819863\\
-0.0614239242483898 0.04052610497459\\
-0.0436492884357866 0.0383258756325919\\
-0.0307107285936277 0.0347921840905852\\
-0.0214203471264467 0.030810286574976\\
-0.0122512227140539 0.0250451318386817\\
-0.0054039675571933 0.0187600534363026\\
0.00589715862017548 0.00520814467421138\\
0.00589362917822611 0.00196576984551977\\
0.00425698836902333 -0.000424421882835313\\
0.00162963893578083 -0.00117947015309894\\
-8.17148275134016e-06 -1.55711358269528e-05\\
-3.1948272112281e-06 -3.50084031075504e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.38527240778923 -1.44036168511157\\
-1.18391898355899 -1.30132741205507\\
-1.01576029347923 -1.17428301146684\\
-0.875015613959669 -1.0581138341619\\
-0.756875765402408 -0.951839950568483\\
-0.657341892997603 -0.854603216042908\\
-0.573093210213357 -0.765655862718618\\
-0.50137883773865 -0.684349697480829\\
-0.439929457643058 -0.610125070134445\\
-0.38688491453924 -0.542498931333627\\
-0.340734202578146 -0.481051583269261\\
-0.264516987714335 -0.375243241481732\\
-0.156242818248244 -0.222915699889985\\
-0.117750907899316 -0.171162252040861\\
-0.0748811585578744 -0.116225404324266\\
-0.0237415277464481 -0.0516524339833093\\
-0.0122424276376476 -0.0345004869190213\\
-0.00672283005192464 -0.0238885450731749\\
-0.00414720903395316 -0.0158829362733111\\
-0.00416508804137727 -0.011892236950511\\
-0.00623550411358709 -0.0073186035007069\\
-0.00699621727921618 -0.00452688022096726\\
-0.00645042933209972 -0.00129447240755631\\
-0.00443734080800762 0.00090997258772596\\
-0.00162290608352511 0.00137910227139004\\
7.23908162103548e-06 1.13916629109756e-05\\
3.42641988448911e-06 3.66441996058064e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.39537290958247 -1.4253046819372\\
-1.19389431889461 -1.28715555579412\\
-1.02558623655071 -1.16088256555741\\
-0.884664751585721 -1.04538290949881\\
-0.766317647137213 -0.939688205435436\\
-0.66654332101461 -0.842951756348978\\
-0.582018722155459 -0.754437287998176\\
-0.509991427771299 -0.673508224051236\\
-0.448191566029865 -0.599616637010182\\
-0.394759686512796 -0.532291178445588\\
-0.348186976609563 -0.471123584074999\\
-0.27103870951176 -0.365854160448621\\
-0.18399623609527 -0.245875923649625\\
-0.139919015131057 -0.187460862786284\\
-0.1047575982655 -0.143091378758093\\
-0.0659756222856869 -0.0967138574557436\\
-0.0206770696601692 -0.0430471849214118\\
-0.010702488009626 -0.0288665334253553\\
-0.00598309172153932 -0.0201007893926684\\
-0.003912071340896 -0.0134905691425249\\
-0.0041753490861911 -0.0100977010133725\\
-0.00638186971003973 -0.00260736033344666\\
-0.00509024373100142 4.97401777022066e-05\\
-0.0030403962253609 0.0012550529227584\\
-0.000639129921381709 0.000914572836829164\\
3.14129265177598e-06 3.35562228448438e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.56 -1.22435525007169\\
-1.39874914125116 -1.1307443902101\\
-1.21454497166368 -1.01355762659106\\
-1.06004968142966 -0.906016620246952\\
-0.929989887303873 -0.807232769352858\\
-0.81997198055961 -0.716441444463944\\
-0.726338613800814 -0.632992214529745\\
-0.646052079925469 -0.556339862008072\\
-0.576600092171053 -0.486035044608098\\
-0.515919860944878 -0.421713519135705\\
-0.414512402141949 -0.309907485200664\\
-0.332215484316734 -0.219144082234972\\
-0.296372916994237 -0.181190678323317\\
-0.263471807948992 -0.147922782141479\\
-0.233244458590987 -0.119100688311715\\
-0.205520177431261 -0.0944431900498375\\
-0.180189714408131 -0.0736276629096786\\
-0.157174762548304 -0.0562967955929128\\
-0.136404259143473 -0.0420703324935472\\
-0.117798295942993 -0.0305595056421251\\
-0.101259381554412 -0.0213817323426515\\
-0.0738941400649999 -0.00860063745851791\\
-0.0531798307555502 -0.00120312233445197\\
-0.0378686571735165 0.00274275431315196\\
-0.0224503682129129 0.00502997720458587\\
-0.0110264535193014 0.00513021743378328\\
-0.00303327900031825 0.00369202772669053\\
0.00110925254230021 0.00159307610246961\\
0.000805901815932097 -0.000113013116330718\\
-2.48262176882896e-06 -1.03254853844881e-05\\
-7.36051405159088e-07 -8.40046971539721e-07\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.56 -1.28309367209372\\
-1.39782750041374 -1.18754272414858\\
-1.21024443005831 -1.06642213301021\\
-1.05304874990978 -0.955349836564152\\
-0.920867108643791 -0.85340316608399\\
-0.809223967373055 -0.759783554708206\\
-0.714394624899966 -0.673806642594159\\
-0.633285556500677 -0.594893194187095\\
-0.563337498043457 -0.522559752314637\\
-0.502447132388871 -0.456408010509601\\
-0.448903473491458 -0.396112072745973\\
-0.284940204090695 -0.208585307622684\\
-0.252840688476507 -0.174036692501741\\
-0.223473399527048 -0.14394881881677\\
-0.196638823124507 -0.118031606949101\\
-0.172201616810439 -0.0959587902506176\\
-0.150060988596588 -0.0773739772345052\\
-0.130127618284743 -0.0619014105130731\\
-0.112307843316714 -0.0491592534281047\\
-0.0825657166683793 -0.0303881182953349\\
-0.0597982151886585 -0.0183500195141677\\
-0.0428086544458994 -0.0108592309324063\\
-0.0255537551283187 -0.00477095816288253\\
-0.0106538212685683 -0.00104565642244836\\
2.72424064979848e-05 0.000224905855716884\\
2.6406792530409e-08 -1.49729693088574e-08\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.56 -1.50984397933501\\
-1.36971864290584 -1.38923435087497\\
-1.17373665572246 -1.25341483208809\\
-1.00992931540724 -1.12937688043916\\
-0.872686776049409 -1.01599629693569\\
-0.757338243974422 -0.912292533612841\\
-0.659997356987043 -0.817413818216013\\
-0.577435306702299 -0.730624192461238\\
-0.506977108633203 -0.651291429329776\\
-0.446416932489898 -0.578874882741307\\
-0.393948745379885 -0.512912498269219\\
-0.348108772259219 -0.453006521301097\\
-0.271881674752204 -0.349999891115709\\
-0.185299551440737 -0.232915069684108\\
-0.141178587639756 -0.176182569610189\\
-0.105844716548467 -0.133336447460267\\
-0.0667372878532349 -0.0889658599458079\\
-0.0176507667758368 -0.0348321078408009\\
-0.00918432557290383 -0.0234473484234141\\
-0.00468579824135928 -0.0151169382230201\\
-0.00362176085858157 -0.0103426519634646\\
-0.0044155420316645 -0.0075449674596566\\
-0.00575984274954844 -0.00359933913288191\\
-0.00526868277975012 -0.000985590508885803\\
-0.00360583212558518 0.000780544152410689\\
-0.0013121313558504 0.0011338254635207\\
5.90812741885216e-06 9.26233859299685e-06\\
2.79279995152315e-06 2.97908470159314e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.40698158521997 -0.959462465585123\\
-1.23214757793514 -0.854399774141202\\
-1.08511360240876 -0.757672046103091\\
-0.96088350494944 -0.668519506471965\\
-0.855290732559999 -0.586299465956114\\
-0.764864511042036 -0.510478529991121\\
-0.686721789860718 -0.440625131936459\\
-0.618480666080245 -0.376401137832393\\
-0.558191278869893 -0.317551311573349\\
-0.410912183081085 -0.171625751398576\\
-0.36980274674813 -0.132825975602493\\
-0.331690932501389 -0.0987731574534989\\
-0.296265966357457 -0.0693221633395811\\
-0.263350468774826 -0.0442771345595845\\
-0.232859212745947 -0.0233838621082998\\
-0.204760495003804 -0.0063306720755083\\
-0.179042896700527 0.00724276889593645\\
-0.155689638402433 0.0177306867431035\\
-0.134661603409033 0.0255432585398427\\
-0.115888803192622 0.0310884064358117\\
-0.0992689703989384 0.0347557384607848\\
-0.0846713248890036 0.0369041823257272\\
-0.071943412557703 0.0378539226168821\\
-0.0514267572303433 0.0372242231069877\\
-0.0363609996975349 0.0345834605754656\\
-0.0254786548033323 0.0310591960552145\\
-0.0177035505112955 0.0273335780456547\\
-0.0100447683204756 0.0221401149721177\\
-0.00329115299521177 0.0155291078393873\\
0.00559410283531725 0.00497957127422555\\
0.00560356537286877 0.00188929311762354\\
0.00405272118456157 -0.000392996654864364\\
0.00155323470035995 -0.00111933437882583\\
-7.76943753200143e-06 -1.48216794977341e-05\\
-3.03925006761574e-06 -3.3324948527369e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.56 -1.20759557793008\\
-1.39917815147348 -1.11471749265959\\
-1.21583384333856 -0.998673961721522\\
-1.06202070355434 -0.892153524907759\\
-0.932491407794455 -0.79428052964311\\
-0.822873863858481 -0.704302443408351\\
-0.729528591577012 -0.621580263283734\\
-0.649432875879819 -0.545579660312908\\
-0.580087218751991 -0.475861713656566\\
-0.519439995358447 -0.412072148410852\\
-0.417917959945509 -0.301202579926942\\
-0.335325528726128 -0.211260888999372\\
-0.299288672023714 -0.17369251101466\\
-0.26617315299183 -0.140799252575997\\
-0.235718999127489 -0.112344859296478\\
-0.207762664352326 -0.0880502166022921\\
-0.182201254732724 -0.0675935291701595\\
-0.158961849128167 -0.0506172372294231\\
-0.13797768071712 -0.0367400095259363\\
-0.119172007208119 -0.0255714557823452\\
-0.102449413936025 -0.0167270989121682\\
-0.0876933869849614 -0.00984156876907583\\
-0.0635251462204025 -0.00063808665811993\\
-0.045451701629323 0.00428426218473232\\
-0.0322214201734254 0.00656548575656002\\
-0.019009700097697 0.00734845232470582\\
-0.00927959588210658 0.00646134841011525\\
-0.00239497062486627 0.00439424808273192\\
0.00150236614150523 0.00188909073760946\\
0.00129316730398421 3.02172194177608e-05\\
8.82561777104662e-06 -5.97845992462709e-05\\
-9.37750552321148e-07 -1.05827185237217e-06\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.41069158802641 -1.14243874299565\\
-1.2239782449029 -1.02496301526159\\
-1.06742177870854 -0.917018178277057\\
-0.93567208120152 -0.817761837655991\\
-0.824272796808397 -0.726462419945519\\
-0.729515132618797 -0.642492649638392\\
-0.648319071522548 -0.565323023270868\\
-0.57813738576094 -0.494514338050984\\
-0.516878265059146 -0.429708345000812\\
-0.414672050509194 -0.317001248560903\\
-0.331932488146506 -0.225425915138221\\
-0.295965223746099 -0.187096062562736\\
-0.262987769173078 -0.153468765847322\\
-0.23272219441812 -0.124302560528307\\
-0.204988879944977 -0.0993148708251337\\
-0.179670891310803 -0.0781821647452834\\
-0.156683440557685 -0.0605466744119592\\
-0.135950140660601 -0.0460280669772211\\
-0.11738684653148 -0.0342377687319793\\
-0.100892820545944 -0.0247935432676636\\
-0.0736152426184427 -0.0115201021348732\\
-0.0529776788513576 -0.00368598791322783\\
-0.0377288352076024 0.000640711743487454\\
-0.0223788253342248 0.00340008524982438\\
-0.0110125521785207 0.00396836763452457\\
-0.00308890413001062 0.00302051458561015\\
0.000828843590616524 0.00138541116370572\\
0.00066432576906772 -6.17617837885831e-05\\
-5.92936044485626e-07 -6.85406583045278e-07\\
};
\addplot [color=black, opacity=0.1, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.40427542211867 -0.969907354308587\\
-1.22919632765388 -0.864022963843382\\
-1.08197759827707 -0.76658570408585\\
-0.957616640230078 -0.676819305623629\\
-0.851941542232577 -0.594067115446948\\
-0.761477058582718 -0.517783666403887\\
-0.683336337961622 -0.447526722719317\\
-0.615134118399525 -0.382948527517328\\
-0.554917390679945 -0.323785029290952\\
-0.4080261208966 -0.177083469974931\\
-0.367090219292119 -0.138057433763396\\
-0.329166941575128 -0.103785330195134\\
-0.293940766806355 -0.0741180024682204\\
-0.261229470104432 -0.0488567157546642\\
-0.230943106475923 -0.0277455467526784\\
-0.20304561812556 -0.0104721996174904\\
-0.177521803985215 0.00332333776612548\\
-0.154351826151339 0.0140342355567733\\
-0.133494310638149 0.0220691187455688\\
-0.114877814935801 0.0278340974112512\\
-0.0983993593063619 0.0317169157826898\\
-0.0839280864788496 0.0340747496054825\\
-0.0713119707357364 0.0352262559077323\\
-0.0509786257210472 0.0349725707112813\\
-0.0360500595328743 0.0326664369615024\\
-0.0252685860724196 0.0294335011496369\\
-0.01459745471866 0.024255342899735\\
-0.00820035003830211 0.0196078479908413\\
-0.00167687341249545 0.0129776939262345\\
0.00531391165394179 0.00476727820035538\\
0.00533507067131156 0.00181798054013926\\
0.00386350850104411 -0.000364179936283016\\
0.00148241424171869 -0.00106372436853164\\
-7.39728816356866e-06 -1.41275226703819e-05\\
-2.89520000129606e-06 -3.17656691461998e-06\\
};
\addplot [color=black, line width=1.5pt, forget plot]
table[row sep=crcr]{%
-1.56 -1.31536039739137\\
-1.39519165658224 -1.21724884641018\\
-1.20616502526331 -1.09396735605765\\
-1.04782644978593 -0.980983055749097\\
-0.914759853882887 -0.87734512797337\\
-0.802454745292731 -0.78222949722568\\
-0.707157724167183 -0.694928230836314\\
-0.625751468555272 -0.61483992088067\\
-0.555656599458786 -0.541459970051376\\
-0.494752271168762 -0.474369768813685\\
-0.441311590551505 -0.413223939395889\\
-0.278628849762548 -0.222835428366151\\
-0.246990641943052 -0.187634884080071\\
-0.218110487446015 -0.156900838531868\\
-0.191774372953314 -0.130338476024416\\
-0.167833759969955 -0.107619637566664\\
-0.146176460204407 -0.0883885103074074\\
-0.126703911247927 -0.0722718490794183\\
-0.0938998612325843 -0.0478780420020171\\
-0.068472106140917 -0.0315777452742978\\
-0.0492860577298948 -0.0209377505811885\\
-0.0295942595972485 -0.0116434020632699\\
-0.0088010693781293 -0.00372043738580019\\
-0.00134565449189261 -0.000447481226480972\\
-9.33014288835299e-05 0.000176897816299038\\
4.26700953015668e-07 4.18235178711868e-07\\
};
\end{axis}
\end{tikzpicture}

BIN
tikz/figs/robust_perf.pdf Normal file

Binary file not shown.

BIN
tikz/figs/robust_perf.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

511
tikz/figs/robust_perf.svg Normal file
View File

@ -0,0 +1,511 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="252.56pt" height="154.11pt" viewBox="0 0 252.56 154.11" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.828125 -0.3125 C 2.9375 -0.3125 2.90625 -0.421875 2.90625 -0.78125 L 2.90625 -6.34375 C 2.90625 -6.578125 2.90625 -6.59375 2.6875 -6.59375 C 2.078125 -5.96875 1.203125 -5.96875 0.875 -5.96875 L 0.875 -5.65625 C 1.078125 -5.65625 1.671875 -5.65625 2.171875 -5.90625 L 2.171875 -0.78125 C 2.171875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.28125 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.9375 -0.03125 3.796875 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.5 -4.75 4.15625 -5.484375 C 3.703125 -6.4375 2.890625 -6.59375 2.484375 -6.59375 C 1.875 -6.59375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.734375 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.421875 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.75 0.015625 4.1875 -0.9375 C 4.5 -1.609375 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.28125 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.90625 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.28125 C 1.203125 -3.921875 1.203125 -4.578125 1.28125 -5.109375 C 1.46875 -6.296875 2.21875 -6.375 2.46875 -6.375 C 2.796875 -6.375 3.453125 -6.203125 3.640625 -5.21875 C 3.734375 -4.671875 3.734375 -3.90625 3.734375 -3.28125 Z M 3.734375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.4375 -1.734375 C 5.4375 -1.90625 5.28125 -1.90625 5.1875 -1.90625 L 1 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.5625 0.921875 -1.5625 1 -1.5625 L 5.1875 -1.5625 C 5.265625 -1.5625 5.4375 -1.5625 5.4375 -1.734375 Z M 5.4375 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.40625 C 2.328125 -4.59375 2.3125 -4.609375 2.109375 -4.609375 C 1.671875 -4.171875 1.046875 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.578125 -2.21875 C 3.578125 -2.96875 3.484375 -3.53125 3.171875 -4.015625 C 2.953125 -4.328125 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.578125 0.140625 3.578125 -1.71875 3.578125 -2.21875 Z M 2.953125 -2.296875 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 0.984375 -1.21875 0.984375 -1.796875 0.984375 -2.296875 C 0.984375 -2.8125 0.984375 -3.34375 1.09375 -3.71875 C 1.234375 -4.265625 1.6875 -4.40625 1.96875 -4.40625 C 2.34375 -4.40625 2.703125 -4.1875 2.828125 -3.78125 C 2.9375 -3.40625 2.953125 -2.90625 2.953125 -2.296875 Z M 2.953125 -2.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.25 -1.109375 3.171875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.421875 2.515625 -1.75 C 3.03125 -2.171875 3.5 -2.59375 3.5 -3.25 C 3.5 -4.09375 2.765625 -4.609375 1.875 -4.609375 C 1.015625 -4.609375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3.015625 0.734375 -2.96875 0.8125 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.46875 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.203125 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.65625 2.40625 -2.171875 2.171875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.5 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.125 -2.28125 2.359375 -2.4375 C 3.09375 -2.703125 3.34375 -3.21875 3.34375 -3.65625 C 3.34375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.171875 -4.609375 0.59375 -4.234375 0.59375 -3.671875 C 0.59375 -3.4375 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.296875 -3.46875 1.296875 -3.65625 C 1.296875 -3.859375 1.171875 -4.015625 0.953125 -4.03125 C 1.1875 -4.328125 1.671875 -4.40625 1.921875 -4.40625 C 2.234375 -4.40625 2.671875 -4.25 2.671875 -3.65625 C 2.671875 -3.359375 2.578125 -3.03125 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.625 -2.53125 C 1.453125 -2.515625 1.4375 -2.515625 1.40625 -2.5 C 1.40625 -2.5 1.34375 -2.484375 1.34375 -2.421875 C 1.34375 -2.3125 1.40625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.4375 -2.3125 2.828125 -1.9375 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.046875 -4.5 L 5.765625 -6.734375 L 0.328125 -6.734375 L 0.328125 -6.421875 L 0.5625 -6.421875 C 1.328125 -6.421875 1.34375 -6.3125 1.34375 -5.96875 L 1.34375 -0.765625 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.828125 -0.03125 C 2.234375 -0.03125 3.140625 -0.03125 3.5 0 L 3.5 -0.3125 L 3.171875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.21875 L 3.078125 -3.21875 C 4.03125 -3.21875 4.125 -2.90625 4.125 -2.0625 L 4.375 -2.0625 L 4.375 -4.6875 L 4.125 -4.6875 C 4.125 -3.859375 4.03125 -3.53125 3.078125 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.03125 C 2.234375 -6.359375 2.25 -6.421875 2.71875 -6.421875 L 3.90625 -6.421875 C 5.390625 -6.421875 5.640625 -5.875 5.796875 -4.5 Z M 6.046875 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.375 2.875 -4.375 C 2.15625 -4.375 1.796875 -3.71875 1.65625 -3.28125 L 1.65625 -4.375 L 0.28125 -4.265625 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.890625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.796875 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.765625 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.15625 2.875 -4.15625 C 2.9375 -4.15625 2.96875 -4.15625 2.984375 -4.15625 C 2.953125 -4.140625 2.75 -4.015625 2.75 -3.765625 C 2.75 -3.484375 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.453125 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.890625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.5 -0.140625 2.609375 -0.140625 2.515625 -0.140625 C 2.015625 -0.140625 1.625 -0.4375 1.390625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.28125 L 3.859375 -2.28125 C 4.078125 -2.28125 4.109375 -2.28125 4.109375 -2.5 C 4.109375 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.171875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.109375 -0.984375 4.109375 -1.171875 Z M 3.453125 -2.5 L 1.109375 -2.5 C 1.171875 -3.96875 2 -4.21875 2.34375 -4.21875 C 3.359375 -4.21875 3.453125 -2.875 3.453125 -2.5 Z M 3.453125 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 5.21875 1.921875 L 5.21875 1.609375 C 4.5625 1.609375 4.453125 1.609375 4.453125 1.171875 L 4.453125 -4.375 L 4.234375 -4.375 L 3.859375 -3.484375 C 3.71875 -3.75 3.3125 -4.375 2.53125 -4.375 C 1.375 -4.375 0.34375 -3.421875 0.34375 -2.125 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.140625 0.109375 3.546875 -0.3125 3.765625 -0.609375 L 3.765625 1.171875 C 3.765625 1.609375 3.65625 1.609375 2.984375 1.609375 L 2.984375 1.921875 L 4.09375 1.890625 Z M 3.796875 -1.34375 C 3.796875 -1.03125 3.609375 -0.75 3.390625 -0.515625 C 3.265625 -0.375 2.953125 -0.109375 2.484375 -0.109375 C 1.765625 -0.109375 1.15625 -0.984375 1.15625 -2.125 C 1.15625 -3.3125 1.859375 -4.125 2.578125 -4.125 C 3.375 -4.125 3.796875 -3.265625 3.796875 -2.75 Z M 3.796875 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.375 L 3.078125 -4.265625 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.890625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.640625 -0.109375 C 1.8125 -0.109375 1.765625 -0.578125 1.765625 -1.09375 L 1.765625 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.046875 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.78125 -0.3125 4.53125 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.34375 4.53125 -3.65625 4.21875 -4.015625 C 4.078125 -4.1875 3.75 -4.375 3.1875 -4.375 C 2.453125 -4.375 1.984375 -3.953125 1.71875 -3.34375 L 1.71875 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.890625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -2.578125 C 1.765625 -3.609375 2.484375 -4.15625 3.109375 -4.15625 C 3.734375 -4.15625 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.1875 -0.03125 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.890625 -1.28125 3.875 -1.234375 3.859375 -1.171875 C 3.5625 -0.25 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.1875 2.5 -4.1875 C 2.578125 -4.1875 3.203125 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.265625 -2.90625 3.546875 -2.90625 C 3.796875 -2.90625 4 -3.078125 4 -3.375 C 4 -4.046875 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.109375 -1.078125 4.109375 -1.171875 Z M 4.109375 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 5.03125 -3.96875 L 5.03125 -4.265625 C 4.796875 -4.25 4.515625 -4.234375 4.296875 -4.234375 L 3.421875 -4.265625 L 3.421875 -3.96875 C 3.734375 -3.953125 3.890625 -3.78125 3.890625 -3.53125 C 3.890625 -3.4375 3.890625 -3.421875 3.828125 -3.296875 L 2.828125 -0.859375 L 1.734375 -3.53125 C 1.6875 -3.625 1.671875 -3.671875 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.265625 L 1.15625 -4.234375 C 0.875 -4.234375 0.484375 -4.25 0.1875 -4.265625 L 0.1875 -3.96875 C 0.65625 -3.96875 0.859375 -3.96875 0.984375 -3.609375 L 2.484375 0 L 2.234375 0.578125 C 2.015625 1.125 1.734375 1.8125 1.09375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.015625 1.375 1.015625 1.21875 C 1.015625 0.953125 0.828125 0.796875 0.609375 0.796875 C 0.40625 0.796875 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.09375 2.03125 C 1.71875 2.03125 2.125 1.46875 2.375 0.90625 L 4.109375 -3.328125 C 4.375 -3.953125 4.875 -3.96875 5.03125 -3.96875 Z M 5.03125 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.078125 L 1.5625 2.078125 L 1.5625 -7.03125 L 2.53125 -7.03125 L 2.53125 -7.4375 L 1.171875 -7.4375 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 7.09375 0 L 7.09375 -0.3125 L 6.859375 -0.3125 C 6.09375 -0.3125 6.078125 -0.421875 6.078125 -0.765625 L 6.078125 -6 C 6.078125 -6.34375 6.09375 -6.453125 6.859375 -6.453125 L 7.09375 -6.453125 L 7.09375 -6.765625 C 6.75 -6.734375 6.015625 -6.734375 5.640625 -6.734375 C 5.265625 -6.734375 4.515625 -6.734375 4.171875 -6.765625 L 4.171875 -6.453125 L 4.40625 -6.453125 C 5.171875 -6.453125 5.1875 -6.34375 5.1875 -6 L 5.1875 -3.671875 L 2.234375 -3.671875 L 2.234375 -6 C 2.234375 -6.34375 2.25 -6.453125 3.015625 -6.453125 L 3.25 -6.453125 L 3.25 -6.765625 C 2.90625 -6.734375 2.171875 -6.734375 1.796875 -6.734375 C 1.421875 -6.734375 0.671875 -6.734375 0.328125 -6.765625 L 0.328125 -6.453125 L 0.5625 -6.453125 C 1.328125 -6.453125 1.34375 -6.34375 1.34375 -6 L 1.34375 -0.765625 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.765625 L 2.234375 -3.375 L 5.1875 -3.375 L 5.1875 -0.765625 C 5.1875 -0.421875 5.171875 -0.3125 4.40625 -0.3125 L 4.171875 -0.3125 L 4.171875 0 C 4.515625 -0.03125 5.25 -0.03125 5.625 -0.03125 C 6 -0.03125 6.75 -0.03125 7.09375 0 Z M 7.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 3.96875 -1.859375 L 3.71875 -1.859375 C 3.640625 -0.6875 3.421875 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.859375 -3.96875 C 3.953125 -4.078125 3.953125 -4.09375 3.953125 -4.140625 C 3.953125 -4.265625 3.875 -4.265625 3.6875 -4.265625 L 0.53125 -4.265625 L 0.421875 -2.671875 L 0.65625 -2.671875 C 0.71875 -3.6875 0.90625 -4.046875 2 -4.046875 L 3.125 -4.046875 L 0.359375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.796875 0 Z M 3.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.4375 L 0.21875 -7.4375 L 0.21875 -7.03125 L 1.171875 -7.03125 L 1.171875 2.078125 L 0.21875 2.078125 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -8.703125 L -0.3125 -8.703125 L -0.3125 -8.46875 C -0.3125 -7.703125 -0.421875 -7.6875 -0.765625 -7.6875 L -6 -7.6875 C -6.34375 -7.6875 -6.453125 -7.703125 -6.453125 -8.46875 L -6.453125 -8.703125 L -6.765625 -8.703125 L -6.765625 -7.03125 C -6.765625 -6.78125 -6.75 -6.78125 -6.578125 -6.703125 L -1 -4.53125 L -6.546875 -2.390625 C -6.765625 -2.296875 -6.765625 -2.265625 -6.765625 -2.046875 L -6.765625 -0.359375 L -6.453125 -0.359375 L -6.453125 -0.609375 C -6.453125 -1.359375 -6.34375 -1.390625 -6 -1.390625 L -1.046875 -1.390625 C -0.765625 -1.390625 -0.3125 -1.390625 -0.3125 -0.359375 L 0 -0.359375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.765625 -1.671875 -1.046875 -1.671875 L -6.375 -1.671875 L -0.21875 -4.0625 C -0.09375 -4.109375 0 -4.15625 0 -4.265625 C 0 -4.375 -0.078125 -4.390625 -0.1875 -4.4375 L -6.453125 -6.875 L -6.453125 -6.890625 L -0.765625 -6.890625 C -0.421875 -6.890625 -0.3125 -6.859375 -0.3125 -6.109375 L -0.3125 -5.859375 L 0 -5.859375 C -0.03125 -6.234375 -0.03125 -6.90625 -0.03125 -7.296875 C -0.03125 -7.671875 -0.03125 -8.34375 0 -8.703125 Z M 0 -8.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -0.875 -4.78125 L -1.4375 -4.78125 L -1.4375 -4.53125 L -0.875 -4.53125 C -0.3125 -4.53125 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.71875 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.890625 -3.453125 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.09375 C -4.4375 -1.28125 -3.96875 -0.609375 -3.3125 -0.609375 C -3.015625 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.046875 -1.515625 -3.3125 -1.515625 C -3.421875 -1.515625 -3.75 -1.46875 -3.765625 -1.015625 C -4.109375 -1.28125 -4.21875 -1.765625 -4.21875 -2.078125 C -4.21875 -2.5625 -3.828125 -3.125 -2.953125 -3.125 L -2.578125 -3.125 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.234375 0.0625 -3.5 0.0625 -3.96875 C 0.0625 -4.1875 -0.078125 -4.78125 -0.875 -4.78125 Z M -1.390625 -3.125 C -0.453125 -3.125 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.3125 -1.5 -2.375 -3.125 Z M -1.390625 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M -4 -4.796875 C -4.171875 -4.796875 -4.484375 -4.6875 -4.484375 -4.296875 C -4.484375 -4.09375 -4.421875 -3.671875 -4.015625 -3.25 C -4.34375 -2.828125 -4.375 -2.421875 -4.375 -2.203125 C -4.375 -1.28125 -3.6875 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.90625 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.875 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.015625 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.3125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.578125 -1.046875 -1.78125 -1.21875 C -1.5 -1.609375 -1.46875 -2.015625 -1.46875 -2.203125 C -1.46875 -3.125 -2.15625 -3.796875 -2.921875 -3.796875 C -3.28125 -3.796875 -3.65625 -3.640625 -3.890625 -3.390625 C -4.21875 -3.75 -4.265625 -4.109375 -4.265625 -4.296875 C -4.265625 -4.296875 -4.265625 -4.359375 -4.265625 -4.390625 C -4.21875 -4.28125 -4.109375 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.515625 C -3.703125 -4.609375 -3.78125 -4.796875 -4 -4.796875 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.046875 -2.09375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.6875 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.5 -1.34375 -3.75 -1.5 C -3.875 -1.578125 -4.15625 -1.796875 -4.15625 -2.203125 C -4.15625 -3.0625 -3.15625 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.46875 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.78125 -0.3125 -4.53125 -0.609375 -4.53125 L -2.5 -4.53125 C -3.34375 -4.53125 -3.65625 -4.53125 -4.015625 -4.21875 C -4.1875 -4.078125 -4.375 -3.75 -4.375 -3.1875 C -4.375 -2.453125 -3.953125 -1.984375 -3.34375 -1.71875 L -4.375 -1.71875 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.890625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.875 -0.3125 -1.765625 -0.75 -1.765625 L -2.578125 -1.765625 C -3.609375 -1.765625 -4.15625 -2.484375 -4.15625 -3.109375 C -4.15625 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.1875 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.375 -1.75 L -4.265625 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -5.984375 -1.90625 C -6.25 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -5.984375 -0.84375 C -5.71875 -0.84375 -5.453125 -1.0625 -5.453125 -1.359375 C -5.453125 -1.703125 -5.734375 -1.90625 -5.984375 -1.90625 Z M -5.984375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M -1.234375 -3.28125 L -1.796875 -3.28125 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.125 L -4.265625 -3.125 L -4.265625 -1.71875 L -6.09375 -1.71875 L -6.09375 -1.46875 C -5.28125 -1.453125 -4.21875 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.28125 -1.234375 -3.28125 Z M -1.234375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.609375 -0.375 -4.53125 -0.859375 -4.53125 L -4.375 -4.53125 L -4.265625 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.765625 -3.890625 -3.84375 -3.40625 -3.84375 L -1.640625 -3.84375 C -0.78125 -3.84375 -0.109375 -3.375 -0.109375 -2.640625 C -0.109375 -1.8125 -0.578125 -1.765625 -1.09375 -1.765625 L -4.375 -1.765625 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.046875 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.59375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.875 L 0.109375 -3.875 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 0 -5.21875 L -0.3125 -5.21875 C -0.3125 -4.53125 -0.375 -4.453125 -0.859375 -4.453125 L -6.875 -4.453125 L -6.765625 -3.015625 L -6.453125 -3.015625 C -6.453125 -3.71875 -6.390625 -3.796875 -5.90625 -3.796875 L -3.765625 -3.796875 C -4.125 -3.5 -4.375 -3.078125 -4.375 -2.546875 C -4.375 -1.375 -3.40625 -0.34375 -2.125 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.515625 -0.546875 -3.765625 L 0.109375 -3.765625 Z M -1.171875 -3.765625 C -0.984375 -3.765625 -0.96875 -3.765625 -0.796875 -3.65625 C -0.328125 -3.359375 -0.109375 -2.90625 -0.109375 -2.484375 C -0.109375 -2.046875 -0.359375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.484375 -1.15625 -3.078125 -1.171875 -3.53125 -1.46875 C -3.828125 -1.671875 -4.15625 -2.046875 -4.15625 -2.578125 C -4.15625 -2.9375 -4.015625 -3.34375 -3.5625 -3.65625 C -3.390625 -3.765625 -3.375 -3.765625 -3.203125 -3.765625 Z M -1.171875 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M -1.171875 -4.109375 C -1.28125 -4.109375 -1.296875 -4.03125 -1.296875 -3.984375 C -1.296875 -3.890625 -1.234375 -3.875 -1.15625 -3.859375 C -0.140625 -3.5 -0.140625 -2.609375 -0.140625 -2.515625 C -0.140625 -2.015625 -0.4375 -1.625 -0.796875 -1.390625 C -1.28125 -1.09375 -1.9375 -1.09375 -2.28125 -1.09375 L -2.28125 -3.859375 C -2.28125 -4.078125 -2.28125 -4.109375 -2.5 -4.109375 C -3.484375 -4.109375 -4.4375 -3.578125 -4.4375 -2.34375 C -4.4375 -1.1875 -3.421875 -0.28125 -2.171875 -0.28125 C -0.859375 -0.28125 0.109375 -1.3125 0.109375 -2.453125 C 0.109375 -3.671875 -0.984375 -4.109375 -1.171875 -4.109375 Z M -2.5 -3.453125 L -2.5 -1.109375 C -3.96875 -1.171875 -4.21875 -2 -4.21875 -2.34375 C -4.21875 -3.359375 -2.875 -3.453125 -2.5 -3.453125 Z M -2.5 -3.453125 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43.347656 18 L 240.640625 18 L 240.640625 109 L 43.347656 109 Z M 43.347656 18 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 46 20 L 240.640625 20 L 240.640625 120.5625 L 46 120.5625 Z M 46 20 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 43.347656 18 L 240.640625 18 L 240.640625 111 L 43.347656 111 Z M 43.347656 18 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 46 19 L 240.640625 19 L 240.640625 120.5625 L 46 120.5625 Z M 46 19 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 43.347656 18 L 240.640625 18 L 240.640625 115 L 43.347656 115 Z M 43.347656 18 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 45 19 L 240.640625 19 L 240.640625 120.5625 L 45 120.5625 Z M 45 19 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 43.347656 17 L 240.640625 17 L 240.640625 119 L 43.347656 119 Z M 43.347656 17 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 45 18 L 240.640625 18 L 240.640625 120.5625 L 45 120.5625 Z M 45 18 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 43.347656 18 L 240.640625 18 L 240.640625 111 L 43.347656 111 Z M 43.347656 18 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 46 19 L 240.640625 19 L 240.640625 120.5625 L 46 120.5625 Z M 46 19 "/>
</clipPath>
<clipPath id="clip11">
<path d="M 43.347656 17 L 240.640625 17 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 17 "/>
</clipPath>
<clipPath id="clip12">
<path d="M 45 17 L 240.640625 17 L 240.640625 120.5625 L 45 120.5625 Z M 45 17 "/>
</clipPath>
<clipPath id="clip13">
<path d="M 43.347656 17 L 240.640625 17 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 17 "/>
</clipPath>
<clipPath id="clip14">
<path d="M 45 18 L 240.640625 18 L 240.640625 120.5625 L 45 120.5625 Z M 45 18 "/>
</clipPath>
<clipPath id="clip15">
<path d="M 43.347656 15 L 240.640625 15 L 240.640625 115 L 43.347656 115 Z M 43.347656 15 "/>
</clipPath>
<clipPath id="clip16">
<path d="M 44 14 L 240.640625 14 L 240.640625 120.5625 L 44 120.5625 Z M 44 14 "/>
</clipPath>
<clipPath id="clip17">
<path d="M 43.347656 18 L 240.640625 18 L 240.640625 112 L 43.347656 112 Z M 43.347656 18 "/>
</clipPath>
<clipPath id="clip18">
<path d="M 46 19 L 240.640625 19 L 240.640625 120.5625 L 46 120.5625 Z M 46 19 "/>
</clipPath>
<clipPath id="clip19">
<path d="M 43.347656 15 L 240.640625 15 L 240.640625 115 L 43.347656 115 Z M 43.347656 15 "/>
</clipPath>
<clipPath id="clip20">
<path d="M 44 14 L 240.640625 14 L 240.640625 120.5625 L 44 120.5625 Z M 44 14 "/>
</clipPath>
<clipPath id="clip21">
<path d="M 43.347656 15 L 240.640625 15 L 240.640625 113 L 43.347656 113 Z M 43.347656 15 "/>
</clipPath>
<clipPath id="clip22">
<path d="M 44 14 L 240.640625 14 L 240.640625 120.5625 L 44 120.5625 Z M 44 14 "/>
</clipPath>
<clipPath id="clip23">
<path d="M 43.347656 18 L 240.640625 18 L 240.640625 112 L 43.347656 112 Z M 43.347656 18 "/>
</clipPath>
<clipPath id="clip24">
<path d="M 46 19 L 240.640625 19 L 240.640625 120.5625 L 46 120.5625 Z M 46 19 "/>
</clipPath>
<clipPath id="clip25">
<path d="M 43.347656 18 L 240.640625 18 L 240.640625 113 L 43.347656 113 Z M 43.347656 18 "/>
</clipPath>
<clipPath id="clip26">
<path d="M 46 19 L 240.640625 19 L 240.640625 120.5625 L 46 120.5625 Z M 46 19 "/>
</clipPath>
<clipPath id="clip27">
<path d="M 43.347656 16 L 240.640625 16 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 16 "/>
</clipPath>
<clipPath id="clip28">
<path d="M 44 16 L 240.640625 16 L 240.640625 120.5625 L 44 120.5625 Z M 44 16 "/>
</clipPath>
<clipPath id="clip29">
<path d="M 43.347656 17 L 240.640625 17 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 17 "/>
</clipPath>
<clipPath id="clip30">
<path d="M 45 17 L 240.640625 17 L 240.640625 120.5625 L 45 120.5625 Z M 45 17 "/>
</clipPath>
<clipPath id="clip31">
<path d="M 43.347656 18 L 240.640625 18 L 240.640625 115 L 43.347656 115 Z M 43.347656 18 "/>
</clipPath>
<clipPath id="clip32">
<path d="M 45 19 L 240.640625 19 L 240.640625 120.5625 L 45 120.5625 Z M 45 19 "/>
</clipPath>
<clipPath id="clip33">
<path d="M 43.347656 15 L 240.640625 15 L 240.640625 114 L 43.347656 114 Z M 43.347656 15 "/>
</clipPath>
<clipPath id="clip34">
<path d="M 44 14 L 240.640625 14 L 240.640625 120.5625 L 44 120.5625 Z M 44 14 "/>
</clipPath>
<clipPath id="clip35">
<path d="M 43.347656 16 L 240.640625 16 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 16 "/>
</clipPath>
<clipPath id="clip36">
<path d="M 44 16 L 240.640625 16 L 240.640625 120.5625 L 44 120.5625 Z M 44 16 "/>
</clipPath>
<clipPath id="clip37">
<path d="M 43.347656 16 L 240.640625 16 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 16 "/>
</clipPath>
<clipPath id="clip38">
<path d="M 45 16 L 240.640625 16 L 240.640625 120.5625 L 45 120.5625 Z M 45 16 "/>
</clipPath>
<clipPath id="clip39">
<path d="M 43.347656 15 L 240.640625 15 L 240.640625 114 L 43.347656 114 Z M 43.347656 15 "/>
</clipPath>
<clipPath id="clip40">
<path d="M 44 14 L 240.640625 14 L 240.640625 120.5625 L 44 120.5625 Z M 44 14 "/>
</clipPath>
<clipPath id="clip41">
<path d="M 43.347656 17 L 240.640625 17 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 17 "/>
</clipPath>
<clipPath id="clip42">
<path d="M 45 17 L 240.640625 17 L 240.640625 120.5625 L 45 120.5625 Z M 45 17 "/>
</clipPath>
<clipPath id="clip43">
<path d="M 225 91 L 240.640625 91 L 240.640625 93 L 225 93 Z M 225 91 "/>
</clipPath>
<clipPath id="clip44">
<path d="M 211 71 L 240.640625 71 L 240.640625 107 L 211 107 Z M 211 71 "/>
</clipPath>
<clipPath id="clip45">
<path d="M 43.347656 50 L 122 50 L 122 120.5625 L 43.347656 120.5625 Z M 43.347656 50 "/>
</clipPath>
<clipPath id="clip46">
<path d="M 43.347656 48 L 116 48 L 116 120.5625 L 43.347656 120.5625 Z M 43.347656 48 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.347656 120.5625 L 240.640625 120.5625 L 240.640625 7.828125 L 43.347656 7.828125 Z M 43.347656 120.5625 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 M -34.674883 -85.03976 L -34.674883 28.345667 M -25.937212 -85.03976 L -25.937212 28.345667 M -19.74148 -85.03976 L -19.74148 28.345667 M -14.932618 -85.03976 L -14.932618 28.345667 M -11.003809 -85.03976 L -11.003809 28.345667 M -7.683965 -85.03976 L -7.683965 28.345667 M -4.808077 -85.03976 L -4.808077 28.345667 M -2.270067 -85.03976 L -2.270067 28.345667 M 0.000784861 -85.03976 L 0.000784861 28.345667 M 14.934188 -85.03976 L 14.934188 28.345667 M 23.66793 -85.03976 L 23.66793 28.345667 M 29.867591 -85.03976 L 29.867591 28.345667 M 34.672524 -85.03976 L 34.672524 28.345667 M 38.601333 -85.03976 L 38.601333 28.345667 M 41.925105 -85.03976 L 41.925105 28.345667 M 44.800994 -85.03976 L 44.800994 28.345667 M 47.339004 -85.03976 L 47.339004 28.345667 M 49.609856 -85.03976 L 49.609856 28.345667 M 64.543259 -85.03976 L 64.543259 28.345667 M 73.277001 -85.03976 L 73.277001 28.345667 M 79.476661 -85.03976 L 79.476661 28.345667 M 84.281595 -85.03976 L 84.281595 28.345667 M 88.210404 -85.03976 L 88.210404 28.345667 M 91.530247 -85.03976 L 91.530247 28.345667 M 94.410064 -85.03976 L 94.410064 28.345667 M 96.944146 -85.03976 L 96.944146 28.345667 M 99.214998 -85.03976 L 99.214998 28.345667 M 114.148401 -85.03976 L 114.148401 28.345667 M 122.886072 -85.03976 L 122.886072 28.345667 M 129.081803 -85.03976 L 129.081803 28.345667 M 133.890666 -85.03976 L 133.890666 28.345667 M 137.819475 -85.03976 L 137.819475 28.345667 M 141.139318 -85.03976 L 141.139318 28.345667 M 144.015206 -85.03976 L 144.015206 28.345667 M 146.553217 -85.03976 L 146.553217 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 M 0.000784861 -85.03976 L 0.000784861 28.345667 M 49.609856 -85.03976 L 49.609856 28.345667 M 99.214998 -85.03976 L 99.214998 28.345667 M 148.824069 -85.03976 L 148.824069 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 M -49.608286 -76.506387 L 148.824069 -76.506387 M -49.608286 -71.5168 L 148.824069 -71.5168 M -49.608286 -67.973014 L 148.824069 -67.973014 M -49.608286 -65.226776 L 148.824069 -65.226776 M -49.608286 -62.983426 L 148.824069 -62.983426 M -49.608286 -61.085812 L 148.824069 -61.085812 M -49.608286 -59.439641 L 148.824069 -59.439641 M -49.608286 -57.98991 L 148.824069 -57.98991 M -49.608286 -56.693403 L 148.824069 -56.693403 M -49.608286 -48.16003 L 148.824069 -48.16003 M -49.608286 -43.170443 L 148.824069 -43.170443 M -49.608286 -39.626657 L 148.824069 -39.626657 M -49.608286 -36.88042 L 148.824069 -36.88042 M -49.608286 -34.63707 L 148.824069 -34.63707 M -49.608286 -32.739455 L 148.824069 -32.739455 M -49.608286 -31.093284 L 148.824069 -31.093284 M -49.608286 -29.643554 L 148.824069 -29.643554 M -49.608286 -28.347047 L 148.824069 -28.347047 M -49.608286 -19.813673 L 148.824069 -19.813673 M -49.608286 -14.820157 L 148.824069 -14.820157 M -49.608286 -11.2803 L 148.824069 -11.2803 M -49.608286 -8.534063 L 148.824069 -8.534063 M -49.608286 -6.286784 L 148.824069 -6.286784 M -49.608286 -4.389169 L 148.824069 -4.389169 M -49.608286 -2.746927 L 148.824069 -2.746927 M -49.608286 -1.297197 L 148.824069 -1.297197 M -49.608286 -0.000689872 L 148.824069 -0.000689872 M -49.608286 8.532683 L 148.824069 8.532683 M -49.608286 13.526199 L 148.824069 13.526199 M -49.608286 17.066056 L 148.824069 17.066056 M -49.608286 19.812294 L 148.824069 19.812294 M -49.608286 22.059572 L 148.824069 22.059572 M -49.608286 23.957187 L 148.824069 23.957187 M -49.608286 25.599429 L 148.824069 25.599429 M -49.608286 27.04916 L 148.824069 27.04916 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 M -49.608286 -56.693403 L 148.824069 -56.693403 M -49.608286 -28.347047 L 148.824069 -28.347047 M -49.608286 -0.000689872 L 148.824069 -0.000689872 M -49.608286 28.345667 L 148.824069 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 -82.207089 M -34.674883 -85.03976 L -34.674883 -82.207089 M -25.937212 -85.03976 L -25.937212 -82.207089 M -19.74148 -85.03976 L -19.74148 -82.207089 M -14.932618 -85.03976 L -14.932618 -82.207089 M -11.003809 -85.03976 L -11.003809 -82.207089 M -7.683965 -85.03976 L -7.683965 -82.207089 M -4.808077 -85.03976 L -4.808077 -82.207089 M -2.270067 -85.03976 L -2.270067 -82.207089 M 0.000784861 -85.03976 L 0.000784861 -82.207089 M 14.934188 -85.03976 L 14.934188 -82.207089 M 23.66793 -85.03976 L 23.66793 -82.207089 M 29.867591 -85.03976 L 29.867591 -82.207089 M 34.672524 -85.03976 L 34.672524 -82.207089 M 38.601333 -85.03976 L 38.601333 -82.207089 M 41.925105 -85.03976 L 41.925105 -82.207089 M 44.800994 -85.03976 L 44.800994 -82.207089 M 47.339004 -85.03976 L 47.339004 -82.207089 M 49.609856 -85.03976 L 49.609856 -82.207089 M 64.543259 -85.03976 L 64.543259 -82.207089 M 73.277001 -85.03976 L 73.277001 -82.207089 M 79.476661 -85.03976 L 79.476661 -82.207089 M 84.281595 -85.03976 L 84.281595 -82.207089 M 88.210404 -85.03976 L 88.210404 -82.207089 M 91.530247 -85.03976 L 91.530247 -82.207089 M 94.410064 -85.03976 L 94.410064 -82.207089 M 96.944146 -85.03976 L 96.944146 -82.207089 M 99.214998 -85.03976 L 99.214998 -82.207089 M 114.148401 -85.03976 L 114.148401 -82.207089 M 122.886072 -85.03976 L 122.886072 -82.207089 M 129.081803 -85.03976 L 129.081803 -82.207089 M 133.890666 -85.03976 L 133.890666 -82.207089 M 137.819475 -85.03976 L 137.819475 -82.207089 M 141.139318 -85.03976 L 141.139318 -82.207089 M 144.015206 -85.03976 L 144.015206 -82.207089 M 146.553217 -85.03976 L 146.553217 -82.207089 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 -80.788789 M 0.000784861 -85.03976 L 0.000784861 -80.788789 M 49.609856 -85.03976 L 49.609856 -80.788789 M 99.214998 -85.03976 L 99.214998 -80.788789 M 148.824069 -85.03976 L 148.824069 -80.788789 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -46.775615 -85.03976 M -49.608286 -76.506387 L -46.775615 -76.506387 M -49.608286 -71.5168 L -46.775615 -71.5168 M -49.608286 -67.973014 L -46.775615 -67.973014 M -49.608286 -65.226776 L -46.775615 -65.226776 M -49.608286 -62.983426 L -46.775615 -62.983426 M -49.608286 -61.085812 L -46.775615 -61.085812 M -49.608286 -59.439641 L -46.775615 -59.439641 M -49.608286 -57.98991 L -46.775615 -57.98991 M -49.608286 -56.693403 L -46.775615 -56.693403 M -49.608286 -48.16003 L -46.775615 -48.16003 M -49.608286 -43.170443 L -46.775615 -43.170443 M -49.608286 -39.626657 L -46.775615 -39.626657 M -49.608286 -36.88042 L -46.775615 -36.88042 M -49.608286 -34.63707 L -46.775615 -34.63707 M -49.608286 -32.739455 L -46.775615 -32.739455 M -49.608286 -31.093284 L -46.775615 -31.093284 M -49.608286 -29.643554 L -46.775615 -29.643554 M -49.608286 -28.347047 L -46.775615 -28.347047 M -49.608286 -19.813673 L -46.775615 -19.813673 M -49.608286 -14.820157 L -46.775615 -14.820157 M -49.608286 -11.2803 L -46.775615 -11.2803 M -49.608286 -8.534063 L -46.775615 -8.534063 M -49.608286 -6.286784 L -46.775615 -6.286784 M -49.608286 -4.389169 L -46.775615 -4.389169 M -49.608286 -2.746927 L -46.775615 -2.746927 M -49.608286 -1.297197 L -46.775615 -1.297197 M -49.608286 -0.000689872 L -46.775615 -0.000689872 M -49.608286 8.532683 L -46.775615 8.532683 M -49.608286 13.526199 L -46.775615 13.526199 M -49.608286 17.066056 L -46.775615 17.066056 M -49.608286 19.812294 L -46.775615 19.812294 M -49.608286 22.059572 L -46.775615 22.059572 M -49.608286 23.957187 L -46.775615 23.957187 M -49.608286 25.599429 L -46.775615 25.599429 M -49.608286 27.04916 L -46.775615 27.04916 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -45.361243 -85.03976 M -49.608286 -56.693403 L -45.361243 -56.693403 M -49.608286 -28.347047 L -45.361243 -28.347047 M -49.608286 -0.000689872 L -45.361243 -0.000689872 M -49.608286 28.345667 L -45.361243 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="33.078249" y="132.423243"/>
<use xlink:href="#glyph0-2" x="38.030947" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="42.984042" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="49.174293" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="85.496528" y="132.423243"/>
<use xlink:href="#glyph0-2" x="90.449226" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="95.402322" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="134.819683" y="132.423243"/>
<use xlink:href="#glyph0-2" x="139.77238" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="144.725476" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="184.142837" y="132.423243"/>
<use xlink:href="#glyph0-2" x="189.095534" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="194.04863" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="233.465991" y="132.423243"/>
<use xlink:href="#glyph0-2" x="238.418688" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="243.371784" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="124.595449"/>
<use xlink:href="#glyph0-2" x="23.964184" y="124.595449"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="121.001206"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="35.10753" y="121.001206"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="96.411216"/>
<use xlink:href="#glyph0-2" x="23.964184" y="96.411216"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="92.816973"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="35.10753" y="92.816973"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="68.226983"/>
<use xlink:href="#glyph0-2" x="23.964184" y="68.226983"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="64.63274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.10753" y="64.63274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.201737" y="40.042749"/>
<use xlink:href="#glyph0-2" x="30.154434" y="40.042749"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="35.10753" y="36.448506"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.201737" y="11.858516"/>
<use xlink:href="#glyph0-2" x="30.154434" y="11.858516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.10753" y="8.264273"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -13.459315 0.0700287 L -1.739678 0.203608 L 6.007934 0.407906 L 11.967937 0.678994 L 17.130392 1.036516 L 21.899966 1.4844 L 27.062421 2.093365 L 35.603652 3.130571 L 38.385248 3.327011 L 40.569666 3.362371 L 42.553715 3.275937 L 44.337394 3.083425 L 46.13286 2.761263 L 47.920468 2.305521 L 49.708076 1.712271 L 51.495684 0.981512 L 53.479733 0.0189542 L 55.66415 -1.210763 L 58.048937 -2.723354 L 60.830534 -4.679901 L 64.008941 -7.107905 L 68.177407 -10.518111 L 75.327839 -16.615623 L 82.4822 -22.634558 L 87.247846 -26.437645 L 91.616681 -29.726059 L 95.985517 -32.818031 L 100.358281 -35.721421 L 104.927486 -38.565879 L 109.492762 -41.237469 L 113.865526 -43.626185 L 118.033993 -45.75167 L 122.006019 -47.613926 L 125.585164 -49.142232 L 129.16038 -50.521244 L 132.735596 -51.758819 L 142.266886 -54.945083 L 143.854125 -55.687628 L 145.248852 -56.47339 L 146.639651 -57.424162 L 148.030449 -58.571374 L 148.824069 -59.321776 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.726194 -85.244058 L -7.699681 -56.764122 L 14.945974 -31.097213 L 23.884015 -21.208401 L 29.443279 -15.291614 L 33.615674 -11.099575 L 36.79801 -8.129396 L 39.575678 -5.760324 L 41.956536 -3.945214 L 44.144882 -2.479768 L 46.13286 -1.340414 L 47.920468 -0.476076 L 49.708076 0.238967 L 51.495684 0.812574 L 53.283292 1.248671 L 55.267341 1.598335 L 57.255318 1.818349 L 59.439736 1.944071 L 62.020963 1.963715 L 65.19937 1.865494 L 69.768575 1.58262 L 82.87901 0.702567 L 89.432263 0.423621 L 96.979505 0.23111 L 106.715094 0.105388 L 121.609209 0.0503846 L 141.076457 0.0975304 L 148.824069 0.0975304 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -13.459315 0.0700287 L -1.739678 0.203608 L 6.007934 0.407906 L 11.967937 0.682923 L 17.130392 1.040445 L 21.899966 1.492258 L 26.862052 2.085508 L 36.397271 3.268079 L 38.978499 3.440947 L 41.166845 3.468448 L 43.150894 3.366299 L 44.938502 3.150215 L 46.72611 2.800551 L 48.513718 2.30945 L 50.301326 1.676912 L 52.088934 0.902936 L 54.076911 -0.110697 L 56.261329 -1.403275 L 58.642188 -2.990513 L 61.427713 -5.033494 L 64.80256 -7.724728 L 69.171396 -11.44531 L 78.506246 -19.684023 L 84.269808 -24.630393 L 88.835084 -28.347047 L 93.20392 -31.690463 L 97.376315 -34.680287 L 101.54871 -37.481527 L 105.917546 -40.235623 L 110.29031 -42.808992 L 114.659146 -45.205566 L 118.631172 -47.224974 L 122.406757 -48.992938 L 125.981973 -50.513387 L 129.557189 -51.88847 L 133.132406 -53.114258 L 141.870077 -56.021577 L 143.657685 -56.830912 L 145.048483 -57.597029 L 146.439282 -58.524228 L 147.83008 -59.643939 L 148.824069 -60.571138 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.726194 -85.153695 L -13.856124 -63.769188 L 17.330761 -28.421694 L 25.471253 -19.460081 L 30.838006 -13.806525 L 34.609663 -10.058441 L 37.78807 -7.135407 L 40.369297 -4.974562 L 42.553715 -3.340177 L 44.541692 -2.027955 L 46.529669 -0.900387 L 48.317278 -0.0478356 L 50.104886 0.651492 L 51.892494 1.201526 L 53.680102 1.614051 L 55.46771 1.904782 L 57.451758 2.105152 L 59.636176 2.203372 L 62.217404 2.195514 L 65.399739 2.054077 L 70.165384 1.704413 L 81.091402 0.867577 L 87.047476 0.549343 L 93.79717 0.317544 L 102.145889 0.160391 L 113.865526 0.0700287 L 131.938048 0.0582423 L 148.824069 0.0896727 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -13.856124 0.0700287 L -2.136487 0.203608 L 5.611124 0.403977 L 11.567198 0.678994 L 16.533213 1.0208 L 21.102418 1.456898 L 25.671623 2.01086 L 32.625615 3.00092 L 36.59764 3.507737 L 39.178868 3.723821 L 41.363286 3.786682 L 43.150894 3.72775 L 44.938502 3.547025 L 46.529669 3.272008 L 48.116908 2.875198 L 49.708076 2.356596 L 51.495684 1.621908 L 53.283292 0.737926 L 55.267341 -0.413215 L 57.451758 -1.855088 L 59.836545 -3.615194 L 62.618142 -5.862473 L 65.992989 -8.801222 L 70.365753 -12.843966 L 77.712626 -19.911894 L 85.460238 -27.290197 L 90.422323 -31.788683 L 94.598647 -35.352113 L 98.570673 -38.534448 L 102.34233 -41.359262 L 106.117915 -43.995493 L 109.889572 -46.443141 L 113.665157 -48.713992 L 117.440743 -50.808047 L 121.015959 -52.627086 L 124.390806 -54.194681 L 127.765652 -55.612981 L 131.144428 -56.881986 L 134.920014 -58.15492 L 140.876088 -60.146826 L 142.860137 -60.967947 L 144.451304 -61.773353 L 145.842103 -62.633762 L 147.232901 -63.667039 L 148.623699 -64.908543 L 148.824069 -65.101054 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.922634 -85.200841 L -8.89011 -57.848473 L 16.533213 -28.9953 L 25.471253 -19.09863 L 31.034447 -13.181844 L 35.010402 -9.194103 L 38.184879 -6.231781 L 40.766107 -4.047363 L 42.950524 -2.389406 L 44.938502 -1.065397 L 46.72611 -0.039978 L 48.513718 0.820431 L 50.301326 1.51583 L 51.892494 1.999074 L 53.680102 2.403741 L 55.46771 2.674829 L 57.451758 2.83591 L 59.636176 2.886985 L 62.020963 2.816266 L 65.002929 2.608039 L 69.568205 2.160155 L 78.903055 1.22117 L 84.269808 0.816502 L 89.829073 0.525771 L 96.386255 0.301828 L 104.727117 0.152534 L 116.843564 0.0621711 L 135.914002 0.0543135 L 148.824069 0.0621711 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -14.052565 0.0700287 L -2.332928 0.203608 L 5.410755 0.407906 L 11.370758 0.682923 L 16.336773 1.032587 L 20.905977 1.472613 L 25.274813 2.018718 L 30.637637 2.820195 L 36.59764 3.696319 L 39.178868 3.955621 L 41.363286 4.061699 L 43.150894 4.030268 L 44.738133 3.900617 L 46.3293 3.653102 L 47.920468 3.275937 L 49.507707 2.76912 L 51.094945 2.120867 L 52.886482 1.232956 L 54.67409 0.187893 L 56.658139 -1.140044 L 59.042926 -2.931581 L 61.824523 -5.24565 L 65.002929 -8.101894 L 69.171396 -12.093564 L 75.131399 -18.057496 L 88.241834 -31.23865 L 93.20392 -35.953221 L 97.376315 -39.697376 L 101.35227 -43.040792 L 105.123926 -45.999185 L 108.699143 -48.603986 L 112.274359 -51.008417 L 115.653134 -53.102472 L 119.027981 -55.027588 L 122.406757 -56.783766 L 125.585164 -58.276713 L 128.759641 -59.624295 L 132.138417 -60.901158 L 136.310812 -62.319458 L 140.679648 -63.816334 L 142.663696 -64.637455 L 144.254864 -65.431074 L 145.645662 -66.27184 L 147.03646 -67.285472 L 148.427259 -68.495545 L 148.824069 -68.884498 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.123004 -85.169411 L -9.683729 -58.496727 L 17.727571 -27.372702 L 26.661683 -17.472103 L 32.028436 -11.767473 L 36.000461 -7.78366 L 38.978499 -5.021708 L 41.563655 -2.853005 L 43.744144 -1.226478 L 45.732121 0.0543135 L 47.523658 1.024729 L 49.110897 1.739773 L 50.698136 2.313379 L 52.289303 2.753405 L 53.876542 3.063781 L 55.66415 3.283794 L 57.451758 3.378086 L 59.439736 3.370228 L 61.824523 3.240578 L 65.002929 2.938059 L 70.562194 2.254446 L 77.115447 1.488329 L 82.085391 1.036516 L 87.247846 0.686852 L 93.00748 0.423621 L 99.961471 0.235039 L 109.296322 0.109317 L 123.793627 0.042527 L 148.824069 0.0464558 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -13.459315 0.0700287 L -1.739678 0.203608 L 6.007934 0.403977 L 11.967937 0.671136 L 17.130392 1.024729 L 21.899966 1.472613 L 27.062421 2.081579 L 36.397271 3.228791 L 38.978499 3.405588 L 41.166845 3.448804 L 43.150894 3.366299 L 44.938502 3.181645 L 46.72611 2.867341 L 48.513718 2.423385 L 50.301326 1.837993 L 52.088934 1.111163 L 54.076911 0.144676 L 56.064889 -0.978963 L 58.245378 -2.37369 L 60.830534 -4.212373 L 63.804642 -6.542157 L 67.383787 -9.543767 L 72.349802 -13.955819 L 84.466249 -24.795403 L 89.035454 -28.622063 L 93.20392 -31.914405 L 97.376315 -34.99852 L 101.54871 -37.882266 L 105.721105 -40.577429 L 109.889572 -43.091867 L 114.061967 -45.433437 L 118.033993 -47.503919 L 121.809578 -49.311171 L 125.384794 -50.874837 L 128.956082 -52.281351 L 132.535227 -53.53857 L 137.697682 -55.184741 L 140.876088 -56.265163 L 142.860137 -57.078427 L 144.451304 -57.879904 L 145.842103 -58.736384 L 147.232901 -59.769661 L 148.623699 -61.007236 L 148.824069 -61.199747 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.525825 -85.189055 L -7.102502 -56.253377 L 14.945974 -31.27008 L 23.884015 -21.381268 L 29.643649 -15.256255 L 33.816044 -11.060287 L 37.190891 -7.905454 L 39.972487 -5.532453 L 42.357274 -3.709486 L 44.541692 -2.228325 L 46.529669 -1.069326 L 48.317278 -0.181415 L 50.104886 0.557201 L 51.892494 1.150451 L 53.680102 1.606193 L 55.46771 1.936213 L 57.451758 2.17587 L 59.636176 2.305521 L 62.020963 2.321236 L 64.80256 2.223016 L 68.578145 1.963715 L 84.466249 0.72614 L 90.422323 0.455052 L 97.376315 0.254683 L 106.514725 0.121103 L 120.222339 0.0543135 L 139.685659 0.0818151 L 148.824069 0.0857439 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip11)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -14.449375 0.0700287 L -2.729737 0.207537 L 4.817505 0.407906 L 10.577139 0.675065 L 15.342784 1.012943 L 19.715548 1.441183 L 23.683645 1.951928 L 27.85604 2.611968 L 33.218865 3.602028 L 38.184879 4.493868 L 40.569666 4.804243 L 42.553715 4.945681 L 44.144882 4.949609 L 45.732121 4.827816 L 47.12292 4.607803 L 48.513718 4.262068 L 49.904516 3.790611 L 51.295315 3.181645 L 52.886482 2.333023 L 54.67409 1.189739 L 56.658139 -0.283564 L 58.842557 -2.11046 L 61.624154 -4.664186 L 65.002929 -8.007603 L 69.568205 -12.788963 L 76.121459 -19.927609 L 87.247846 -32.342645 L 105.917546 -53.169262 L 113.464788 -61.317611 L 119.228351 -67.281543 L 123.993996 -71.97647 L 128.162462 -75.850276 L 132.138417 -79.311557 L 136.507252 -82.890701 L 139.288849 -85.110479 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip12)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.720183 -85.208699 L -11.671707 -60.119325 L 22.296776 -21.50699 L 30.637637 -12.278218 L 35.603652 -7.029329 L 38.978499 -3.69377 L 41.563655 -1.356129 L 43.744144 0.411835 L 45.535681 1.672983 L 47.323289 2.741619 L 48.910528 3.515594 L 50.301326 4.049912 L 51.692124 4.450651 L 53.082923 4.729596 L 54.473721 4.890677 L 56.064889 4.953538 L 57.848568 4.894606 L 59.836545 4.713881 L 62.417773 4.344573 L 66.590168 3.602028 L 73.540231 2.372311 L 77.712626 1.763345 L 81.885021 1.280102 L 86.253857 0.899007 L 91.219871 0.59256 L 96.979505 0.356832 L 104.330307 0.187893 L 114.659146 0.0739575 L 133.132406 0.0150254 L 148.824069 -0.000689872 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip13)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -14.052565 0.0700287 L -2.332928 0.203608 L 5.214314 0.403977 L 11.170389 0.675065 L 16.136403 1.0208 L 20.509168 1.441183 L 24.878003 1.983359 L 29.844018 2.729832 L 36.99445 3.806326 L 39.575678 4.065627 L 41.563655 4.15599 L 43.347334 4.128488 L 44.938502 3.99098 L 46.529669 3.735607 L 48.116908 3.346655 L 49.708076 2.824124 L 51.295315 2.156226 L 53.082923 1.240814 L 54.870531 0.168249 L 56.858508 -1.195048 L 59.239366 -3.029802 L 62.020963 -5.391016 L 65.399739 -8.486917 L 69.568205 -12.557163 L 75.728578 -18.827542 L 89.632633 -33.061617 L 94.598647 -37.866551 L 98.967483 -41.866078 L 102.939509 -45.272356 L 106.514725 -48.136457 L 110.089941 -50.792332 L 113.464788 -53.110329 L 116.843564 -55.239744 L 120.02197 -57.070569 L 123.200376 -58.740313 L 126.378783 -60.245047 L 129.557189 -61.592628 L 132.932036 -62.869491 L 137.501241 -64.429228 L 140.876088 -65.627515 L 142.860137 -66.472209 L 144.451304 -67.29333 L 145.842103 -68.161597 L 147.232901 -69.202731 L 148.623699 -70.448163 L 148.824069 -70.640675 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip14)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.123004 -85.098692 L -9.090479 -57.738466 L 18.124381 -26.838384 L 27.062421 -16.937785 L 32.425245 -11.233155 L 36.200831 -7.449712 L 39.178868 -4.68383 L 41.760095 -2.515128 L 43.944513 -0.89253 L 45.932491 0.380405 L 47.720099 1.339034 L 49.311266 2.042291 L 50.898505 2.596253 L 52.489673 3.016635 L 54.076911 3.307367 L 55.86452 3.49595 L 57.652128 3.566669 L 59.836545 3.523452 L 62.417773 3.334869 L 65.796549 2.961632 L 79.700604 1.276173 L 84.466249 0.883292 L 89.632633 0.580774 L 95.789076 0.345045 L 103.536688 0.176107 L 114.458777 0.0739575 L 132.535227 0.0346694 L 148.824069 0.0385982 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip15)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -15.046553 0.0700287 L -3.527286 0.207537 L 4.019956 0.407906 L 9.783519 0.678994 L 14.545236 1.024729 L 18.72156 1.449041 L 22.493216 1.955857 L 26.068432 2.560894 L 29.643649 3.295581 L 33.615674 4.238495 L 41.166845 6.081106 L 43.150894 6.411126 L 44.738133 6.548635 L 46.13286 6.548635 L 47.323289 6.434699 L 48.513718 6.202899 L 49.708076 5.841449 L 50.898505 5.346419 L 52.289303 4.596017 L 53.680102 3.684533 L 55.267341 2.458745 L 57.255318 0.718282 L 59.836545 -1.788298 L 63.608202 -5.721036 L 78.305876 -21.24376 L 83.07545 -25.942615 L 87.444286 -30.01679 L 91.416312 -33.497715 L 95.191897 -36.597545 L 98.967483 -39.493078 L 102.743068 -42.196098 L 106.715094 -44.840187 L 110.68712 -47.299621 L 114.659146 -49.582259 L 118.434731 -51.582023 L 122.206388 -53.416777 L 125.781604 -54.996158 L 129.16038 -56.343739 L 132.735596 -57.62846 L 142.266886 -60.928659 L 143.854125 -61.682991 L 145.445293 -62.602332 L 146.836091 -63.580605 L 148.22689 -64.755319 L 148.824069 -65.317139 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip16)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.313433 -85.07119 L -13.459315 -61.345113 L 33.816044 -7.532217 L 38.782058 -2.149748 L 41.760095 0.851862 L 43.944513 2.83591 L 45.732121 4.258139 L 47.323289 5.318917 L 48.714087 6.073249 L 49.904516 6.572208 L 51.094945 6.929729 L 52.289303 7.161529 L 53.479733 7.267607 L 54.870531 7.25582 L 56.261329 7.122241 L 58.048937 6.815794 L 60.233355 6.308977 L 64.008941 5.279629 L 69.371765 3.837756 L 72.946981 3.004849 L 76.321828 2.344809 L 79.897044 1.775132 L 83.672629 1.307604 L 87.644655 0.934367 L 92.209931 0.62792 L 97.773125 0.384333 L 104.727117 0.203608 L 114.458777 0.0778863 L 133.328846 -0.0164051 L 148.824069 -0.059622 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip17)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -13.655755 0.0700287 L -1.936118 0.203608 L 5.811493 0.403977 L 11.767568 0.675065 L 16.733582 1.012943 L 21.499228 1.460827 L 26.465242 2.058006 L 37.190891 3.405588 L 39.575678 3.547025 L 41.563655 3.558811 L 43.347334 3.460591 L 45.138871 3.244506 L 46.72611 2.938059 L 48.317278 2.517677 L 50.104886 1.904782 L 51.892494 1.142594 L 53.876542 0.136818 L 56.064889 -1.15576 L 58.445747 -2.754785 L 61.227344 -4.821338 L 64.401821 -7.394708 L 68.377776 -10.824559 L 74.73066 -16.564548 L 83.07545 -24.056787 L 87.841096 -28.115247 L 92.209931 -31.619744 L 96.386255 -34.758863 L 100.554722 -37.689754 L 104.727117 -40.428134 L 108.899512 -42.985789 L 113.067978 -45.370576 L 117.043933 -47.480346 L 120.815589 -49.334744 L 124.390806 -50.937698 L 127.966022 -52.387429 L 131.541238 -53.683936 L 135.713633 -55.043304 L 140.479278 -56.603041 L 142.467256 -57.388802 L 144.054494 -58.150991 L 145.445293 -58.960326 L 146.836091 -59.938599 L 148.22689 -61.117242 L 148.824069 -61.686919 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip18)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.726194 -85.208699 L -8.09649 -57.176647 L 15.739594 -30.142512 L 24.681563 -20.249771 L 30.240827 -14.329056 L 34.212853 -10.329529 L 37.39126 -7.351491 L 39.972487 -5.139572 L 42.357274 -3.304818 L 44.541692 -1.831515 L 46.529669 -0.684303 L 48.317278 0.176107 L 50.104886 0.883292 L 51.892494 1.437254 L 53.680102 1.849779 L 55.46771 2.136582 L 57.451758 2.329094 L 59.636176 2.411599 L 62.217404 2.380168 L 65.399739 2.21123 L 70.165384 1.818349 L 80.097413 0.985441 L 85.857047 0.635777 L 92.013491 0.388262 L 99.564662 0.207537 L 109.693131 0.0936015 L 125.384794 0.0503846 L 148.824069 0.0818151 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip19)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -15.046553 0.0700287 L -3.527286 0.207537 L 4.019956 0.411835 L 9.783519 0.682923 L 14.545236 1.028658 L 18.72156 1.456898 L 22.493216 1.967643 L 26.068432 2.576609 L 29.643649 3.315225 L 33.615674 4.273854 L 41.363286 6.202899 L 43.347334 6.532919 L 44.938502 6.670428 L 46.3293 6.66257 L 47.523658 6.536848 L 48.714087 6.289333 L 49.904516 5.908239 L 51.094945 5.389636 L 52.489673 4.615661 L 53.876542 3.672747 L 55.66415 2.250518 L 57.652128 0.458981 L 60.433724 -2.299043 L 64.80256 -6.911465 L 75.327839 -18.069282 L 80.297783 -23.062799 L 84.666618 -27.227336 L 88.835084 -30.971491 L 92.80711 -34.310979 L 96.582696 -37.273301 L 100.358281 -40.043111 L 104.330307 -42.757918 L 108.302333 -45.288071 L 112.274359 -47.645356 L 116.246385 -49.829774 L 120.02197 -51.747033 L 123.597186 -53.408919 L 127.168474 -54.917582 L 130.747618 -56.27695 L 134.719644 -57.62846 L 140.876088 -59.698942 L 142.860137 -60.53185 L 144.451304 -61.341184 L 145.842103 -62.197665 L 147.232901 -63.227013 L 148.623699 -64.45673 L 148.824069 -64.649241 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip20)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.513802 -85.247987 L -13.856124 -61.74978 L 34.810032 -6.349645 L 39.379237 -1.422919 L 42.156905 1.354749 L 44.337394 3.315225 L 46.13286 4.698166 L 47.720099 5.719656 L 49.110897 6.422913 L 50.301326 6.878655 L 51.495684 7.192959 L 52.686113 7.373685 L 53.876542 7.432617 L 55.267341 7.373685 L 56.858508 7.165458 L 58.642188 6.804007 L 61.227344 6.140039 L 71.355813 3.393801 L 74.73066 2.666971 L 78.109436 2.065864 L 81.684652 1.55119 L 85.460238 1.134736 L 89.632633 0.79293 L 94.598647 0.513984 L 100.554722 0.2979 L 108.498773 0.140747 L 120.619149 0.0385982 L 148.824069 -0.0635508 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip21)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -15.246923 0.0700287 L -3.723726 0.207537 L 3.823516 0.407906 L 9.58315 0.678994 L 14.148426 1.009014 L 18.32475 1.429397 L 22.096406 1.936213 L 25.671623 2.545178 L 29.04647 3.244506 L 32.625615 4.108844 L 37.78807 5.515358 L 41.166845 6.383625 L 43.150894 6.776506 L 44.738133 6.965088 L 46.13286 7.008305 L 47.323289 6.9258 L 48.513718 6.713645 L 49.708076 6.363981 L 50.898505 5.865022 L 52.088934 5.224626 L 53.479733 4.313142 L 55.0709 3.071639 L 57.054949 1.299746 L 59.636176 -1.250051 L 63.804642 -5.650317 L 73.343791 -15.747356 L 78.109436 -20.528717 L 82.4822 -24.669681 L 86.454226 -28.217396 L 90.422323 -31.541168 L 94.197909 -34.491704 L 98.173863 -37.395094 L 102.145889 -40.105972 L 106.314356 -42.761847 L 110.486751 -45.240925 L 114.659146 -47.554994 L 118.631172 -49.597974 L 122.406757 -51.381654 L 125.981973 -52.925675 L 129.557189 -54.320403 L 133.328846 -55.636554 L 141.673636 -58.473154 L 143.457316 -59.274631 L 145.048483 -60.146826 L 146.439282 -61.074025 L 147.83008 -62.185878 L 148.824069 -63.10522 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip22)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.513802 -85.10655 L -13.856124 -61.612272 L 37.591629 -3.049446 L 41.166845 0.72614 L 43.547703 3.016635 L 45.335312 4.533156 L 46.926479 5.688226 L 48.317278 6.509347 L 49.507707 7.05938 L 50.698136 7.460118 L 51.892494 7.71942 L 53.082923 7.837284 L 54.277281 7.833355 L 55.66415 7.703705 L 57.255318 7.42083 L 59.239366 6.937587 L 62.417773 6.010388 L 68.578145 4.191349 L 72.153362 3.287723 L 75.528208 2.568751 L 78.903055 1.97943 L 82.4822 1.4844 L 86.253857 1.079733 L 90.622693 0.741855 L 95.789076 0.466838 L 102.145889 0.26254 L 110.68712 0.117174 L 124.390806 0.0189542 L 148.824069 -0.0714084 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip23)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -13.655755 0.0700287 L -1.936118 0.203608 L 5.811493 0.407906 L 11.767568 0.678994 L 16.733582 1.0208 L 21.302787 1.452969 L 26.068432 2.022647 L 37.591629 3.476306 L 39.972487 3.602028 L 41.956536 3.59417 L 43.744144 3.476306 L 45.535681 3.228791 L 47.12292 2.890914 L 48.714087 2.4391 L 50.501695 1.786918 L 52.289303 0.985441 L 54.277281 -0.0674796 L 56.45777 -1.403275 L 58.842557 -3.049446 L 61.624154 -5.167074 L 65.002929 -7.956528 L 69.171396 -11.629964 L 76.718638 -18.540739 L 83.672629 -24.822905 L 88.438275 -28.908866 L 92.606741 -32.283713 L 96.783065 -35.442476 L 100.755091 -38.26336 L 104.927486 -41.025313 L 109.095952 -43.602612 L 113.268347 -45.999185 L 117.240373 -48.112884 L 121.015959 -49.967282 L 124.591175 -51.566308 L 128.162462 -53.016038 L 131.741607 -54.308616 L 135.914002 -55.664055 L 140.479278 -57.16486 L 142.467256 -57.950622 L 144.054494 -58.712811 L 145.445293 -59.526075 L 146.836091 -60.504348 L 148.22689 -61.682991 L 148.824069 -62.252668 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip24)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.726194 -85.118336 L -7.896121 -56.866271 L 16.136403 -29.608194 L 25.074444 -19.723311 L 30.637637 -13.814382 L 34.609663 -9.83057 L 37.78807 -6.876106 L 40.369297 -4.687759 L 42.553715 -3.029802 L 44.541692 -1.694007 L 46.529669 -0.550723 L 48.317278 0.313615 L 50.104886 1.012943 L 51.892494 1.562976 L 53.680102 1.967643 L 55.46771 2.246589 L 57.451758 2.427314 L 59.636176 2.501961 L 62.217404 2.454816 L 65.399739 2.274091 L 70.365753 1.841922 L 79.500234 1.048302 L 85.263797 0.678994 L 91.416312 0.415764 L 98.767113 0.223252 L 108.498773 0.101459 L 123.396817 0.0503846 L 148.824069 0.0778863 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip25)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -13.655755 0.0700287 L -1.936118 0.203608 L 5.811493 0.407906 L 11.767568 0.678994 L 16.733582 1.024729 L 21.302787 1.456898 L 26.068432 2.030504 L 37.988439 3.56274 L 40.369297 3.688462 L 42.357274 3.672747 L 44.144882 3.543096 L 45.932491 3.279866 L 47.523658 2.926273 L 49.110897 2.454816 L 50.898505 1.775132 L 52.686113 0.942224 L 54.67409 -0.146056 L 56.858508 -1.528997 L 59.239366 -3.226242 L 62.020963 -5.406731 L 65.399739 -8.266904 L 69.768575 -12.211428 L 77.909067 -19.849033 L 84.666618 -26.064409 L 89.432263 -30.228946 L 93.60073 -33.662725 L 97.576684 -36.727196 L 101.54871 -39.595227 L 105.520736 -42.266817 L 109.492762 -44.757682 L 113.464788 -47.07175 L 117.440743 -49.212951 L 121.212399 -51.079135 L 124.787615 -52.689947 L 128.162462 -54.061101 L 131.741607 -55.365466 L 135.914002 -56.732691 L 140.479278 -58.237425 L 142.467256 -59.027116 L 144.054494 -59.793234 L 145.445293 -60.602568 L 146.836091 -61.580842 L 148.22689 -62.759484 L 148.824069 -63.329162 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip26)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -32.726194 -85.126194 L -8.09649 -57.094142 L 16.336773 -29.376395 L 25.274813 -19.487582 L 30.838006 -13.574725 L 34.810032 -9.583055 L 37.988439 -6.620733 L 40.569666 -4.428458 L 42.754084 -2.762643 L 44.738133 -1.426848 L 46.72611 -0.279635 L 48.513718 0.580774 L 50.301326 1.276173 L 52.088934 1.81442 L 53.876542 2.207301 L 55.66415 2.470531 L 57.652128 2.635541 L 59.836545 2.682687 L 62.417773 2.611968 L 65.596179 2.395884 L 70.762563 1.908711 L 78.903055 1.146522 L 84.466249 0.75757 L 90.225883 0.478625 L 96.979505 0.270398 L 105.721105 0.13289 L 118.631172 0.0543135 L 138.294861 0.0660999 L 148.824069 0.0700287 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip27)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -14.649744 0.0700287 L -2.930107 0.207537 L 4.617135 0.407906 L 10.376769 0.675065 L 15.146343 1.012943 L 19.31481 1.425468 L 23.286836 1.936213 L 27.26279 2.57268 L 31.828066 3.440947 L 38.978499 4.827816 L 41.363286 5.14605 L 43.150894 5.267843 L 44.738133 5.263914 L 46.13286 5.149979 L 47.523658 4.91425 L 48.910528 4.544942 L 50.301326 4.038126 L 51.692124 3.385943 L 53.283292 2.478389 L 55.0709 1.260458 L 57.054949 -0.299279 L 59.439736 -2.397263 L 62.417773 -5.261365 L 66.393728 -9.347326 L 72.153362 -15.546987 L 84.069439 -28.708497 L 94.598647 -40.219907 L 100.951531 -46.918527 L 105.917546 -51.915972 L 110.089941 -55.884069 L 113.865526 -59.247129 L 117.240373 -62.036583 L 120.41878 -64.448872 L 123.396817 -66.507568 L 126.178414 -68.251959 L 128.956082 -69.819554 L 131.741607 -71.21821 L 134.719644 -72.561863 L 143.060506 -76.188153 L 144.651673 -77.095708 L 146.242841 -78.187917 L 147.629711 -79.331201 L 148.824069 -80.466626 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip28)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.916623 -85.228343 L -13.062505 -61.510123 L 24.481194 -18.819685 L 32.228805 -10.266668 L 36.79801 -5.457806 L 39.972487 -2.338331 L 42.553715 -0.039978 L 44.541692 1.519759 L 46.3293 2.733761 L 47.920468 3.633458 L 49.311266 4.273854 L 50.698136 4.768884 L 52.088934 5.122477 L 53.479733 5.34249 L 54.870531 5.448568 L 56.45777 5.444639 L 58.245378 5.314989 L 60.433724 5.020328 L 63.407833 4.48601 L 75.131399 2.238731 L 79.099496 1.669054 L 83.07545 1.217241 L 87.444286 0.847933 L 92.410301 0.557201 L 98.370304 0.32933 L 105.917546 0.168249 L 117.043933 0.0621711 L 139.48529 -0.00461868 L 148.824069 -0.0164051 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip29)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -14.449375 0.0700287 L -2.729737 0.207537 L 4.817505 0.407906 L 10.577139 0.675065 L 15.342784 1.009014 L 19.715548 1.433325 L 23.683645 1.940142 L 27.85604 2.596253 L 33.218865 3.574526 L 37.988439 4.415291 L 40.569666 4.745311 L 42.553715 4.878891 L 44.144882 4.874962 L 45.732121 4.74924 L 47.12292 4.521369 L 48.513718 4.175634 L 49.904516 3.700248 L 51.295315 3.095212 L 52.886482 2.250518 L 54.67409 1.115092 L 56.658139 -0.350354 L 58.842557 -2.157606 L 61.624154 -4.695617 L 65.002929 -8.019389 L 69.371765 -12.572879 L 75.528208 -19.247925 L 85.460238 -30.299665 L 108.498773 -56.013719 L 115.849575 -63.918483 L 121.609209 -69.8667 L 126.575223 -74.750209 L 131.344797 -79.20155 L 137.501241 -84.682238 L 138.094491 -85.212628 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip30)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.519813 -85.079048 L -1.739678 -48.847572 L 21.899966 -22.013807 L 30.240827 -12.781105 L 35.206842 -7.524359 L 38.782058 -3.984502 L 41.363286 -1.642932 L 43.547703 0.136818 L 45.535681 1.539403 L 47.323289 2.60411 L 48.910528 3.374157 L 50.301326 3.908475 L 51.692124 4.313142 L 53.082923 4.596017 L 54.67409 4.776742 L 56.261329 4.835674 L 58.048937 4.776742 L 60.233355 4.568515 L 63.011023 4.167776 L 67.780597 3.33094 L 73.7406 2.30945 L 78.109436 1.692627 L 82.281831 1.229027 L 86.650667 0.859719 L 91.616681 0.565059 L 97.576684 0.337188 L 105.123926 0.172178 L 116.049944 0.0660999 L 136.110443 0.0110966 L 148.824069 -0.000689872 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip31)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -14.052565 0.0700287 L -2.136487 0.207537 L 5.611124 0.411835 L 11.567198 0.686852 L 16.533213 1.032587 L 21.102418 1.468685 L 25.671623 2.022647 L 33.218865 3.095212 L 36.99445 3.550953 L 39.575678 3.739536 L 41.563655 3.770967 L 43.347334 3.688462 L 45.138871 3.476306 L 46.72611 3.169859 L 48.317278 2.741619 L 49.904516 2.187657 L 51.692124 1.413681 L 53.479733 0.490411 L 55.46771 -0.700018 L 57.652128 -2.181179 L 60.233355 -4.133797 L 63.211392 -6.593231 L 66.790537 -9.759851 L 71.756552 -14.399775 L 87.247846 -29.046375 L 91.81705 -33.041973 L 95.985517 -36.471824 L 99.961471 -39.520579 L 103.733128 -42.227529 L 107.508713 -44.749824 L 111.28037 -47.095323 L 115.055955 -49.271883 L 118.831541 -51.279505 L 122.406757 -53.019967 L 125.781604 -54.512914 L 129.16038 -55.860496 L 132.735596 -57.137359 L 137.898051 -58.807102 L 140.876088 -59.83645 L 142.860137 -60.657572 L 144.451304 -61.462977 L 145.842103 -62.319458 L 147.232901 -63.356663 L 148.623699 -64.594238 L 148.824069 -64.790679 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip32)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.319444 -85.232272 L 23.286836 -21.314479 L 29.643649 -14.474422 L 34.016413 -10.015224 L 37.39126 -6.805387 L 40.172857 -4.397027 L 42.553715 -2.558345 L 44.541692 -1.210763 L 46.3293 -0.1657 L 48.116908 0.714353 L 49.904516 1.429397 L 51.495684 1.928355 L 53.283292 2.344809 L 55.0709 2.623755 L 56.858508 2.784836 L 58.842557 2.851625 L 61.227344 2.808409 L 64.205381 2.619826 L 68.377776 2.226945 L 79.299865 1.146522 L 84.666618 0.765428 L 90.422323 0.478625 L 97.179875 0.274327 L 105.917546 0.13289 L 118.831541 0.0543135 L 139.08848 0.0621711 L 148.824069 0.0621711 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip33)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -15.246923 0.0700287 L -3.723726 0.203608 L 3.823516 0.403977 L 9.58315 0.675065 L 14.348795 1.0208 L 18.32475 1.421539 L 22.096406 1.924427 L 25.671623 2.529463 L 29.04647 3.220933 L 32.822055 4.128488 L 42.553715 6.568279 L 44.144882 6.792221 L 45.535681 6.878655 L 46.72611 6.843295 L 47.920468 6.690072 L 49.110897 6.407198 L 50.301326 5.982886 L 51.495684 5.413209 L 52.886482 4.580301 L 54.473721 3.425232 L 56.261329 1.916569 L 58.445747 -0.149985 L 61.624154 -3.410896 L 78.305876 -20.874452 L 82.678641 -25.062562 L 86.851036 -28.83029 L 90.823062 -32.189422 L 94.598647 -35.175317 L 98.570673 -38.106208 L 102.542699 -40.840659 L 106.514725 -43.394385 L 110.68712 -45.897036 L 114.855586 -48.222891 L 118.831541 -50.269801 L 122.603198 -52.057409 L 126.178414 -53.597502 L 129.75363 -54.9883 L 133.529215 -56.304451 L 141.469338 -58.995685 L 143.260875 -59.781447 L 144.852043 -60.63007 L 146.242841 -61.533696 L 147.629711 -62.618047 L 148.824069 -63.710256 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip34)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.513802 -85.200841 L -11.074528 -58.504584 L 35.804021 -5.115999 L 40.172857 -0.421072 L 42.950524 2.313379 L 44.938502 4.045983 L 46.529669 5.236412 L 47.920468 6.104679 L 49.311266 6.788292 L 50.501695 7.216532 L 51.692124 7.503335 L 52.886482 7.65263 L 54.076911 7.680132 L 55.46771 7.577983 L 57.054949 7.330468 L 59.042926 6.878655 L 62.020963 6.045747 L 69.371765 3.939906 L 72.946981 3.079496 L 76.321828 2.399812 L 79.700604 1.841922 L 83.27582 1.378322 L 87.247846 0.985441 L 91.81705 0.663279 L 97.179875 0.411835 L 103.933497 0.219323 L 113.268347 0.0896727 L 130.15044 -0.00854749 L 148.824069 -0.0674796 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip35)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -14.649744 0.0700287 L -2.930107 0.207537 L 4.617135 0.411835 L 10.376769 0.678994 L 15.146343 1.0208 L 19.31481 1.437254 L 23.286836 1.951928 L 27.26279 2.596253 L 31.631626 3.440947 L 39.379237 4.973182 L 41.563655 5.263914 L 43.347334 5.389636 L 44.938502 5.381778 L 46.3293 5.259985 L 47.720099 5.01247 L 49.110897 4.627447 L 50.501695 4.097058 L 51.892494 3.425232 L 53.479733 2.486246 L 55.267341 1.232956 L 57.255318 -0.366069 L 59.636176 -2.499412 L 62.618142 -5.406731 L 66.790537 -9.736278 L 73.143421 -16.619552 L 93.404289 -38.703387 L 99.167852 -44.659461 L 103.933497 -49.346531 L 107.905523 -53.019967 L 111.480739 -56.115868 L 114.855586 -58.830675 L 118.033993 -61.184032 L 121.015959 -63.199511 L 123.993996 -65.026407 L 126.775593 -66.5665 L 129.557189 -67.945512 L 132.535227 -69.269521 L 136.110443 -70.687821 L 141.469338 -72.789734 L 143.457316 -73.740505 L 145.048483 -74.659847 L 146.439282 -75.626334 L 147.83008 -76.773546 L 148.824069 -77.71646 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip36)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.916623 -85.169411 L -12.268886 -60.535778 L 24.878003 -18.289296 L 32.625615 -9.73235 L 37.190891 -4.923488 L 40.369297 -1.811871 L 42.754084 0.301828 L 44.738133 1.857637 L 46.529669 3.059852 L 48.116908 3.943834 L 49.507707 4.564586 L 50.898505 5.036043 L 52.289303 5.366063 L 53.680102 5.562504 L 55.0709 5.637151 L 56.658139 5.601792 L 58.445747 5.440711 L 60.630165 5.118548 L 63.804642 4.505654 L 73.540231 2.54125 L 77.512257 1.908711 L 81.488212 1.401895 L 85.656678 0.997228 L 90.225883 0.678994 L 95.588707 0.423621 L 102.34233 0.235039 L 111.480739 0.101459 L 126.575223 0.022883 L 148.824069 -0.0203339 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip37)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -14.449375 0.0700287 L -2.930107 0.203608 L 4.617135 0.403977 L 10.376769 0.671136 L 15.146343 1.009014 L 19.31481 1.41761 L 23.286836 1.924427 L 27.26279 2.556965 L 31.828066 3.417374 L 38.978499 4.788528 L 41.363286 5.102833 L 43.150894 5.224626 L 44.738133 5.220697 L 46.13286 5.110691 L 47.523658 4.878891 L 48.910528 4.513512 L 50.301326 4.014553 L 51.692124 3.374157 L 53.283292 2.47446 L 55.0709 1.272244 L 57.054949 -0.271778 L 59.439736 -2.354046 L 62.217404 -5.009921 L 65.992989 -8.864083 L 71.355813 -14.61193 L 80.494223 -24.701112 L 96.582696 -42.459328 L 103.336318 -49.641191 L 108.498773 -54.882222 L 112.671168 -58.889607 L 116.446754 -62.284098 L 119.82553 -65.101054 L 122.803567 -67.387621 L 125.781604 -69.46989 L 128.559272 -71.222139 L 131.344797 -72.797591 L 134.322835 -74.306254 L 138.094491 -76.038859 L 141.870077 -77.791107 L 143.854125 -78.875459 L 145.445293 -79.908735 L 146.836091 -80.977372 L 148.22689 -82.230662 L 148.824069 -82.827841 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip38)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -33.123004 -85.145838 L 13.555176 -31.313297 L 26.862052 -16.293461 L 33.419234 -9.131242 L 37.591629 -4.805623 L 40.569666 -1.941522 L 42.950524 0.13289 L 44.938502 1.653339 L 46.72611 2.828053 L 48.317278 3.688462 L 49.708076 4.293498 L 51.094945 4.757098 L 52.489673 5.083189 L 53.876542 5.279629 L 55.267341 5.366063 L 56.858508 5.34249 L 58.642188 5.201053 L 60.830534 4.902464 L 64.008941 4.328858 L 74.53422 2.321236 L 78.506246 1.735844 L 82.4822 1.272244 L 86.851036 0.89115 L 91.81705 0.580774 L 97.576684 0.352903 L 104.927486 0.183964 L 115.452765 0.0700287 L 134.920014 0.00716775 L 148.824069 -0.0124763 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip39)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -15.246923 0.0700287 L -3.527286 0.207537 L 4.019956 0.411835 L 9.783519 0.686852 L 14.348795 1.016872 L 18.52119 1.437254 L 22.296776 1.944071 L 25.871992 2.549107 L 29.443279 3.287723 L 33.218865 4.195278 L 41.760095 6.328621 L 43.547703 6.615424 L 45.138871 6.741146 L 46.529669 6.721502 L 47.720099 6.576136 L 48.910528 6.308977 L 50.104886 5.90431 L 51.295315 5.358206 L 52.686113 4.556729 L 54.277281 3.433089 L 56.064889 1.955857 L 58.245378 -0.0753372 L 61.227344 -3.096591 L 66.986978 -9.233391 L 74.53422 -17.204944 L 79.500234 -22.206318 L 83.872999 -26.382642 L 88.041465 -30.134655 L 92.013491 -33.482 L 95.789076 -36.456108 L 99.564662 -39.233776 L 103.536688 -41.96037 L 107.508713 -44.506238 L 111.480739 -46.87531 L 115.452765 -49.0833 L 119.424791 -51.122352 L 123.200376 -52.894245 L 126.775593 -54.414694 L 130.350809 -55.78192 L 134.126394 -57.082355 L 141.076457 -59.423926 L 143.060506 -60.272548 L 144.651673 -61.101527 L 146.042472 -61.98158 L 147.43327 -63.03843 L 148.824069 -64.295649 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip40)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -34.513802 -85.149767 L -12.862136 -60.535778 L 36.200831 -4.75062 L 40.172857 -0.523221 L 42.754084 2.006932 L 44.738133 3.739536 L 46.3293 4.941752 L 47.720099 5.825734 L 49.110897 6.532919 L 50.301326 6.980804 L 51.495684 7.29118 L 52.686113 7.467976 L 53.876542 7.51905 L 55.267341 7.452261 L 56.858508 7.232247 L 58.642188 6.859011 L 61.227344 6.183255 L 70.959004 3.503808 L 74.337779 2.757334 L 77.712626 2.136582 L 81.287842 1.610122 L 85.063428 1.177953 L 89.231894 0.82436 L 93.997539 0.541486 L 99.961471 0.317544 L 107.705154 0.152534 L 119.228351 0.0464558 L 148.22689 -0.0674796 L 148.824069 -0.0635508 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip41)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 0.00323894 L -14.252934 0.0700287 L -2.533297 0.207537 L 5.013945 0.407906 L 10.773579 0.678994 L 15.543153 1.012943 L 19.911989 1.437254 L 24.084384 1.967643 L 28.453219 2.651256 L 39.575678 4.493868 L 41.760095 4.666735 L 43.547703 4.690308 L 45.138871 4.592088 L 46.72611 4.364217 L 48.116908 4.042055 L 49.507707 3.598099 L 51.094945 2.941988 L 52.686113 2.124796 L 54.473721 1.024729 L 56.45777 -0.389642 L 58.642188 -2.149748 L 61.227344 -4.440244 L 64.401821 -7.485071 L 68.578145 -11.739971 L 74.13741 -17.668544 L 82.678641 -27.058397 L 103.536688 -50.077289 L 109.889572 -56.787695 L 114.855586 -61.78514 L 119.027981 -65.737522 L 122.603198 -68.896284 L 125.781604 -71.493227 L 128.759641 -73.728719 L 131.741607 -75.759913 L 134.719644 -77.598596 L 138.294861 -79.614075 L 142.467256 -81.983147 L 144.451304 -83.29144 L 146.042472 -84.5133 L 146.836091 -85.200841 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip42)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -33.519813 -85.149767 L -11.074528 -59.60858 L 20.705608 -23.48711 L 29.443279 -13.810453 L 34.609663 -8.341551 L 38.184879 -4.793837 L 40.966476 -2.263684 L 43.150894 -0.480005 L 45.138871 0.942224 L 46.926479 2.034433 L 48.513718 2.83591 L 50.104886 3.472377 L 51.495684 3.896689 L 52.886482 4.203136 L 54.473721 4.41922 L 56.064889 4.513512 L 57.848568 4.493868 L 59.836545 4.35243 L 62.417773 4.042055 L 66.193358 3.452733 L 74.73066 2.07765 L 79.099496 1.51583 L 83.47226 1.079733 L 88.241834 0.730069 L 93.60073 0.46291 L 100.157912 0.26254 L 108.899512 0.121103 L 122.406757 0.042527 L 148.824069 0.0110966 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.53933 -4.393098 L 84.281595 -4.393098 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.53933 -4.393098 L 68.790301 2.973419 M 70.208601 -4.393098 L 74.459572 2.973419 M 75.877872 -4.393098 L 80.128844 2.973419 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281595 -28.347047 L 133.890666 -28.347047 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281595 -28.347047 L 88.532566 -20.98053 M 89.950866 -28.347047 L 94.201837 -20.98053 M 95.620138 -28.347047 L 99.871109 -20.98053 M 101.289409 -28.347047 L 105.54038 -20.98053 M 106.95868 -28.347047 L 111.209651 -20.98053 M 112.627952 -28.347047 L 116.878923 -20.98053 M 118.297223 -28.347047 L 122.548194 -20.98053 M 123.966494 -28.347047 L 128.217466 -20.98053 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<g clip-path="url(#clip43)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.890666 -56.693403 L 148.824069 -56.693403 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip44)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.890666 -56.693403 L 138.141637 -49.330815 M 139.559937 -56.693403 L 143.810908 -49.330815 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip45)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.283954 -141.736402 L 14.930259 -28.347047 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip46)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.283954 -141.736402 L -87.026263 -133.686273 M -80.539799 -137.457929 L -83.282108 -129.4078 M -76.799573 -133.179456 L -79.541881 -125.133255 M -73.055418 -128.904912 L -75.797727 -120.854783 M -69.315192 -124.626439 L -72.0575 -116.57631 M -65.571037 -120.347966 L -68.313345 -112.301765 M -61.826882 -116.073422 L -64.569191 -108.023292 M -58.086656 -111.794949 L -60.828964 -103.744819 M -54.342501 -107.516476 L -57.084809 -99.470275 M -50.598346 -103.241932 L -53.340654 -95.191802 M -46.85812 -98.963459 L -49.600428 -90.913329 M -43.113965 -94.684986 L -45.856273 -86.638785 M -39.36981 -90.410442 L -42.112118 -82.360312 M -35.629584 -86.131969 L -38.371892 -78.081839 M -31.885429 -81.857425 L -34.627737 -73.807295 M -28.141274 -77.578952 L -30.883582 -69.528822 M -24.401048 -73.300479 L -27.143356 -65.250349 M -20.656893 -69.025935 L -23.399201 -60.975805 M -16.912738 -64.747462 L -19.655046 -56.697332 M -13.172512 -60.468989 L -15.91482 -52.418859 M -9.428357 -56.194445 L -12.170665 -48.144315 M -5.684202 -51.915972 L -8.42651 -43.865842 M -1.943976 -47.637499 L -4.686284 -39.587369 M 1.800179 -43.362954 L -0.942129 -35.312825 M 5.540406 -39.084481 L 2.798097 -31.034352 M 9.28456 -34.806009 L 6.542252 -26.755879 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="109.580442" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="115.224536" y="146.951342"/>
<use xlink:href="#glyph3-3" x="119.104479" y="146.951342"/>
<use xlink:href="#glyph3-4" x="123.507427" y="146.951342"/>
<use xlink:href="#glyph3-5" x="128.735495" y="146.951342"/>
<use xlink:href="#glyph3-3" x="134.237942" y="146.951342"/>
<use xlink:href="#glyph3-6" x="138.640891" y="146.951342"/>
<use xlink:href="#glyph3-7" x="144.143338" y="146.951342"/>
<use xlink:href="#glyph3-8" x="148.546286" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-9" x="157.062945" y="146.951342"/>
<use xlink:href="#glyph3-10" x="159.814664" y="146.951342"/>
<use xlink:href="#glyph3-11" x="167.24371" y="146.951342"/>
<use xlink:href="#glyph3-12" x="171.646659" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.127019" y="87.445991"/>
<use xlink:href="#glyph4-2" x="11.127019" y="78.365715"/>
<use xlink:href="#glyph4-3" x="11.127019" y="73.413017"/>
<use xlink:href="#glyph4-4" x="11.127019" y="68.46032"/>
<use xlink:href="#glyph4-5" x="11.127019" y="62.957873"/>
<use xlink:href="#glyph4-6" x="11.127019" y="60.206154"/>
<use xlink:href="#glyph4-7" x="11.127019" y="56.353945"/>
<use xlink:href="#glyph4-8" x="11.127019" y="50.851498"/>
<use xlink:href="#glyph4-9" x="11.127019" y="45.349051"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 94 KiB

1723
tikz/figs/robust_perf.tex Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@ -0,0 +1,525 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="253.7pt" height="182.46pt" viewBox="0 0 253.7 182.46" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.359375 C 2.921875 -6.59375 2.921875 -6.625 2.6875 -6.625 C 2.078125 -5.984375 1.203125 -5.984375 0.890625 -5.984375 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.9375 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.71875 -6.453125 2.90625 -6.625 2.484375 -6.625 C 1.890625 -6.625 1.15625 -6.359375 0.75 -5.4375 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3.015625 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.578125 -2.390625 4.578125 -3.1875 Z M 3.75 -3.296875 C 3.75 -2.546875 3.75 -1.875 3.640625 -1.25 C 3.484375 -0.296875 2.921875 0 2.46875 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.296875 C 1.21875 -3.9375 1.21875 -4.59375 1.296875 -5.125 C 1.484375 -6.3125 2.21875 -6.40625 2.46875 -6.40625 C 2.796875 -6.40625 3.453125 -6.21875 3.640625 -5.234375 C 3.75 -4.6875 3.75 -3.921875 3.75 -3.296875 Z M 3.75 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.0625 -4.515625 L 5.78125 -6.75 L 0.328125 -6.75 L 0.328125 -6.453125 L 0.5625 -6.453125 C 1.328125 -6.453125 1.34375 -6.34375 1.34375 -5.984375 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.234375 L 3.09375 -3.234375 C 4.046875 -3.234375 4.140625 -2.90625 4.140625 -2.0625 L 4.390625 -2.0625 L 4.390625 -4.703125 L 4.140625 -4.703125 C 4.140625 -3.859375 4.046875 -3.53125 3.09375 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.046875 C 2.234375 -6.375 2.25 -6.453125 2.71875 -6.453125 L 3.921875 -6.453125 C 5.40625 -6.453125 5.65625 -5.890625 5.8125 -4.515625 Z M 6.0625 -4.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 3.625 -3.78125 C 3.625 -4.109375 3.3125 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.734375 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.421875 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.3125 C 1.703125 -3.296875 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.96875 -4.15625 2.765625 -4.03125 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.375 -3.34375 3.625 -3.46875 3.625 -3.78125 Z M 3.625 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.125 -1 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 5.234375 1.921875 L 5.234375 1.625 C 4.578125 1.625 4.46875 1.625 4.46875 1.171875 L 4.46875 -4.390625 L 4.25 -4.390625 L 3.859375 -3.484375 C 3.734375 -3.765625 3.328125 -4.390625 2.53125 -4.390625 C 1.375 -4.390625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.15625 0.109375 3.5625 -0.3125 3.78125 -0.609375 L 3.78125 1.171875 C 3.78125 1.625 3.671875 1.625 3 1.625 L 3 1.921875 L 4.109375 1.890625 Z M 3.8125 -1.34375 C 3.8125 -1.03125 3.625 -0.75 3.40625 -0.515625 C 3.28125 -0.375 2.96875 -0.109375 2.5 -0.109375 C 1.765625 -0.109375 1.15625 -1 1.15625 -2.140625 C 1.15625 -3.3125 1.859375 -4.140625 2.59375 -4.140625 C 3.390625 -4.140625 3.8125 -3.28125 3.8125 -2.75 Z M 3.8125 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.625 -0.3125 4.546875 -0.375 4.546875 -0.859375 L 4.546875 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.78125 -3.96875 3.859375 -3.90625 3.859375 -3.421875 L 3.859375 -1.65625 C 3.859375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.90625 -1.28125 3.890625 -1.25 3.859375 -1.1875 C 3.578125 -0.265625 2.9375 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.171875 C 1.15625 -3.78125 1.984375 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.8125 3.09375 -3.515625 3.09375 -3.375 C 3.09375 -3.125 3.28125 -2.921875 3.5625 -2.921875 C 3.8125 -2.921875 4.015625 -3.09375 4.015625 -3.390625 C 4.015625 -4.0625 3.265625 -4.453125 2.5 -4.453125 C 1.25 -4.453125 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.328125 0.109375 2.46875 0.109375 C 3.8125 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.265625 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.75 -3.96875 3.90625 -3.796875 3.90625 -3.546875 C 3.90625 -3.453125 3.890625 -3.421875 3.84375 -3.3125 L 2.84375 -0.859375 L 1.734375 -3.53125 C 1.703125 -3.640625 1.671875 -3.671875 1.671875 -3.71875 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.265625 0.1875 -4.28125 L 0.1875 -3.96875 C 0.671875 -3.96875 0.859375 -3.96875 1 -3.625 L 2.484375 0 L 2.234375 0.59375 C 2.015625 1.140625 1.734375 1.8125 1.109375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.03125 1.375 1.03125 1.21875 C 1.03125 0.96875 0.828125 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.109375 2.03125 C 1.734375 2.03125 2.140625 1.46875 2.375 0.90625 L 4.125 -3.34375 C 4.375 -3.96875 4.890625 -3.96875 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.09375 L 1.5625 2.09375 L 1.5625 -7.0625 L 2.53125 -7.0625 L 2.53125 -7.453125 L 1.171875 -7.453125 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 7.109375 0 L 7.109375 -0.3125 L 6.875 -0.3125 C 6.109375 -0.3125 6.09375 -0.421875 6.09375 -0.78125 L 6.09375 -6.015625 C 6.09375 -6.375 6.109375 -6.484375 6.875 -6.484375 L 7.109375 -6.484375 L 7.109375 -6.78125 C 6.765625 -6.75 6.03125 -6.75 5.65625 -6.75 C 5.28125 -6.75 4.53125 -6.75 4.1875 -6.78125 L 4.1875 -6.484375 L 4.421875 -6.484375 C 5.1875 -6.484375 5.203125 -6.375 5.203125 -6.015625 L 5.203125 -3.6875 L 2.234375 -3.6875 L 2.234375 -6.015625 C 2.234375 -6.375 2.25 -6.484375 3.015625 -6.484375 L 3.265625 -6.484375 L 3.265625 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.484375 L 0.5625 -6.484375 C 1.328125 -6.484375 1.34375 -6.375 1.34375 -6.015625 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.171875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.375 L 5.203125 -3.375 L 5.203125 -0.78125 C 5.203125 -0.421875 5.1875 -0.3125 4.421875 -0.3125 L 4.1875 -0.3125 L 4.1875 0 C 4.53125 -0.03125 5.265625 -0.03125 5.640625 -0.03125 C 6.015625 -0.03125 6.765625 -0.03125 7.109375 0 Z M 7.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 3.984375 -1.859375 L 3.734375 -1.859375 C 3.640625 -0.6875 3.4375 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.875 -3.984375 C 3.96875 -4.09375 3.96875 -4.109375 3.96875 -4.15625 C 3.96875 -4.28125 3.890625 -4.28125 3.703125 -4.28125 L 0.53125 -4.28125 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.71875 -3.703125 0.921875 -4.0625 2 -4.0625 L 3.140625 -4.0625 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.8125 0 Z M 3.984375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.453125 L 0.21875 -7.453125 L 0.21875 -7.0625 L 1.1875 -7.0625 L 1.1875 2.09375 L 0.21875 2.09375 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -8.734375 L -0.3125 -8.734375 L -0.3125 -8.5 C -0.3125 -7.734375 -0.421875 -7.71875 -0.78125 -7.71875 L -6.015625 -7.71875 C -6.375 -7.71875 -6.484375 -7.734375 -6.484375 -8.5 L -6.484375 -8.734375 L -6.78125 -8.734375 L -6.78125 -7.0625 C -6.78125 -6.796875 -6.78125 -6.796875 -6.59375 -6.734375 L -1 -4.546875 L -6.5625 -2.390625 C -6.78125 -2.3125 -6.78125 -2.28125 -6.78125 -2.046875 L -6.78125 -0.375 L -6.484375 -0.375 L -6.484375 -0.609375 C -6.484375 -1.375 -6.375 -1.390625 -6.015625 -1.390625 L -1.046875 -1.390625 C -0.78125 -1.390625 -0.3125 -1.390625 -0.3125 -0.375 L 0 -0.375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.78125 -1.671875 -1.046875 -1.671875 L -6.40625 -1.671875 L -0.21875 -4.078125 C -0.09375 -4.125 0 -4.171875 0 -4.265625 C 0 -4.375 -0.078125 -4.40625 -0.1875 -4.453125 L -6.484375 -6.890625 L -6.484375 -6.90625 L -0.78125 -6.90625 C -0.421875 -6.90625 -0.3125 -6.890625 -0.3125 -6.125 L -0.3125 -5.890625 L 0 -5.890625 C -0.03125 -6.25 -0.03125 -6.921875 -0.03125 -7.3125 C -0.03125 -7.703125 -0.03125 -8.375 0 -8.734375 Z M 0 -8.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -0.890625 -4.796875 L -1.4375 -4.796875 L -1.4375 -4.546875 L -0.890625 -4.546875 C -0.3125 -4.546875 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.703125 -3.828125 -0.75 -3.828125 L -2.734375 -3.828125 C -3.15625 -3.828125 -3.53125 -3.828125 -3.90625 -3.46875 C -4.296875 -3.078125 -4.453125 -2.578125 -4.453125 -2.109375 C -4.453125 -1.296875 -3.984375 -0.609375 -3.328125 -0.609375 C -3.03125 -0.609375 -2.859375 -0.8125 -2.859375 -1.0625 C -2.859375 -1.34375 -3.0625 -1.515625 -3.3125 -1.515625 C -3.4375 -1.515625 -3.765625 -1.46875 -3.78125 -1.015625 C -4.125 -1.28125 -4.234375 -1.765625 -4.234375 -2.09375 C -4.234375 -2.578125 -3.84375 -3.140625 -2.96875 -3.140625 L -2.59375 -3.140625 C -2.5625 -2.640625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.25 0.0625 -3.515625 0.0625 -3.984375 C 0.0625 -4.1875 -0.078125 -4.796875 -0.890625 -4.796875 Z M -1.390625 -3.140625 C -0.453125 -3.140625 -0.109375 -2.421875 -0.109375 -1.984375 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.328125 -1.5 -2.390625 -3.140625 Z M -1.390625 -3.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M -4.015625 -4.8125 C -4.1875 -4.8125 -4.5 -4.703125 -4.5 -4.3125 C -4.5 -4.109375 -4.4375 -3.671875 -4.03125 -3.265625 C -4.359375 -2.84375 -4.390625 -2.421875 -4.390625 -2.203125 C -4.390625 -1.28125 -3.703125 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.921875 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.890625 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.546875 -4.6875 0.765625 -4.6875 C 0.421875 -4.6875 -0.09375 -4.546875 -0.375 -4.03125 C -0.640625 -3.515625 -0.640625 -2.9375 -0.640625 -2.328125 C -0.640625 -2.078125 -0.640625 -1.65625 -0.65625 -1.578125 C -0.703125 -1.265625 -1 -1.046875 -1.328125 -1.046875 C -1.359375 -1.046875 -1.59375 -1.046875 -1.78125 -1.21875 C -1.515625 -1.609375 -1.484375 -2.015625 -1.484375 -2.203125 C -1.484375 -3.125 -2.171875 -3.8125 -2.9375 -3.8125 C -3.296875 -3.8125 -3.671875 -3.65625 -3.890625 -3.40625 C -4.234375 -3.765625 -4.28125 -4.125 -4.28125 -4.296875 C -4.28125 -4.296875 -4.28125 -4.375 -4.265625 -4.40625 C -4.234375 -4.296875 -4.125 -4.25 -4 -4.25 C -3.828125 -4.25 -3.71875 -4.375 -3.71875 -4.53125 C -3.71875 -4.625 -3.78125 -4.8125 -4.015625 -4.8125 Z M -2.9375 -3.078125 C -2.671875 -3.078125 -2.359375 -3.0625 -2.109375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.609375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.703125 -1.34375 -2.9375 -1.34375 C -3.203125 -1.34375 -3.515625 -1.34375 -3.765625 -1.5 C -3.890625 -1.578125 -4.15625 -1.8125 -4.15625 -2.203125 C -4.15625 -3.078125 -3.171875 -3.078125 -2.9375 -3.078125 Z M 0.78125 -4.15625 C 1.328125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.484375 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.203125 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.546875 L -2.5 -4.546875 C -3.359375 -4.546875 -3.671875 -4.546875 -4.03125 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.46875 -3.96875 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.625 -1.78125 -4.171875 -2.484375 -4.171875 -3.125 C -4.171875 -3.75 -3.640625 -3.859375 -3.078125 -3.859375 L -0.75 -3.859375 C -0.3125 -3.859375 -0.3125 -3.75 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.765625 -0.75 -1.765625 L -4.390625 -1.765625 L -4.28125 -0.375 L -3.96875 -0.375 C -3.96875 -1.015625 -3.921875 -1.109375 -3.421875 -1.109375 L -0.75 -1.109375 C -0.3125 -1.109375 -0.3125 -1 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -6 -1.90625 C -6.265625 -1.90625 -6.53125 -1.671875 -6.53125 -1.375 C -6.53125 -1.046875 -6.25 -0.84375 -6 -0.84375 C -5.734375 -0.84375 -5.46875 -1.078125 -5.46875 -1.375 C -5.46875 -1.703125 -5.75 -1.90625 -6 -1.90625 Z M -6 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M -1.234375 -3.296875 L -1.796875 -3.296875 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.390625 C -0.140625 -1.71875 -1.046875 -1.71875 -1.21875 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.140625 L -4.28125 -3.140625 L -4.28125 -1.71875 L -6.109375 -1.71875 L -6.109375 -1.46875 C -5.296875 -1.453125 -4.234375 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.296875 -1.234375 -3.296875 Z M -1.234375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.625 -0.375 -4.546875 -0.859375 -4.546875 L -4.390625 -4.546875 L -4.28125 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.78125 -3.90625 -3.859375 -3.421875 -3.859375 L -1.65625 -3.859375 C -0.78125 -3.859375 -0.109375 -3.375 -0.109375 -2.65625 C -0.109375 -1.8125 -0.578125 -1.78125 -1.09375 -1.78125 L -4.390625 -1.78125 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.0625 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.609375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.890625 L 0.109375 -3.890625 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 0 -5.234375 L -0.3125 -5.234375 C -0.3125 -4.546875 -0.375 -4.46875 -0.859375 -4.46875 L -6.890625 -4.46875 L -6.78125 -3.03125 L -6.484375 -3.03125 C -6.484375 -3.734375 -6.40625 -3.8125 -5.921875 -3.8125 L -3.78125 -3.8125 C -4.140625 -3.515625 -4.390625 -3.09375 -4.390625 -2.546875 C -4.390625 -1.375 -3.421875 -0.34375 -2.140625 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.53125 -0.546875 -3.78125 L 0.109375 -3.78125 Z M -1.171875 -3.78125 C -1 -3.78125 -0.96875 -3.78125 -0.8125 -3.671875 C -0.328125 -3.375 -0.109375 -2.921875 -0.109375 -2.5 C -0.109375 -2.046875 -0.375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.5 -1.15625 -3.09375 -1.1875 -3.53125 -1.46875 C -3.84375 -1.671875 -4.171875 -2.0625 -4.171875 -2.59375 C -4.171875 -2.9375 -4.03125 -3.359375 -3.578125 -3.671875 C -3.40625 -3.78125 -3.390625 -3.78125 -3.203125 -3.78125 Z M -1.171875 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M -1.1875 -4.125 C -1.28125 -4.125 -1.296875 -4.046875 -1.296875 -4 C -1.296875 -3.90625 -1.25 -3.890625 -1.15625 -3.859375 C -0.140625 -3.515625 -0.140625 -2.625 -0.140625 -2.53125 C -0.140625 -2.03125 -0.4375 -1.625 -0.8125 -1.40625 C -1.28125 -1.109375 -1.9375 -1.109375 -2.296875 -1.109375 L -2.296875 -3.875 C -2.296875 -4.09375 -2.296875 -4.125 -2.5 -4.125 C -3.484375 -4.125 -4.453125 -3.59375 -4.453125 -2.34375 C -4.453125 -1.1875 -3.421875 -0.28125 -2.1875 -0.28125 C -0.859375 -0.28125 0.109375 -1.328125 0.109375 -2.46875 C 0.109375 -3.671875 -1 -4.125 -1.1875 -4.125 Z M -2.5 -3.46875 L -2.5 -1.109375 C -3.984375 -1.171875 -4.234375 -2 -4.234375 -2.34375 C -4.234375 -3.375 -2.890625 -3.46875 -2.5 -3.46875 Z M -2.5 -3.46875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 44.328125 24 L 242.175781 24 L 242.175781 107 L 44.328125 107 Z M 44.328125 24 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 44.328125 26 L 242.175781 26 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 26 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 44.328125 22 L 242.175781 22 L 242.175781 130 L 44.328125 130 Z M 44.328125 22 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 44.328125 22 L 242.175781 22 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 22 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 44.328125 24 L 242.175781 24 L 242.175781 111 L 44.328125 111 Z M 44.328125 24 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 44.328125 25 L 242.175781 25 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 25 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 44.328125 19 L 242.175781 19 L 242.175781 109 L 44.328125 109 Z M 44.328125 19 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 44.328125 19 L 242.175781 19 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 19 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 44.328125 24 L 242.175781 24 L 242.175781 107 L 44.328125 107 Z M 44.328125 24 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 44.328125 26 L 242.175781 26 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 26 "/>
</clipPath>
<clipPath id="clip11">
<path d="M 44.328125 21 L 242.175781 21 L 242.175781 116 L 44.328125 116 Z M 44.328125 21 "/>
</clipPath>
<clipPath id="clip12">
<path d="M 44.328125 20 L 242.175781 20 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 20 "/>
</clipPath>
<clipPath id="clip13">
<path d="M 44.328125 24 L 242.175781 24 L 242.175781 109 L 44.328125 109 Z M 44.328125 24 "/>
</clipPath>
<clipPath id="clip14">
<path d="M 44.328125 25 L 242.175781 25 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 25 "/>
</clipPath>
<clipPath id="clip15">
<path d="M 44.328125 21 L 242.175781 21 L 242.175781 121 L 44.328125 121 Z M 44.328125 21 "/>
</clipPath>
<clipPath id="clip16">
<path d="M 44.328125 21 L 242.175781 21 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 21 "/>
</clipPath>
<clipPath id="clip17">
<path d="M 44.328125 24 L 242.175781 24 L 242.175781 107 L 44.328125 107 Z M 44.328125 24 "/>
</clipPath>
<clipPath id="clip18">
<path d="M 44.328125 26 L 242.175781 26 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 26 "/>
</clipPath>
<clipPath id="clip19">
<path d="M 44.328125 21 L 242.175781 21 L 242.175781 125 L 44.328125 125 Z M 44.328125 21 "/>
</clipPath>
<clipPath id="clip20">
<path d="M 44.328125 22 L 242.175781 22 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 22 "/>
</clipPath>
<clipPath id="clip21">
<path d="M 44.328125 22 L 242.175781 22 L 242.175781 148 L 44.328125 148 Z M 44.328125 22 "/>
</clipPath>
<clipPath id="clip22">
<path d="M 44.328125 22 L 242.175781 22 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 22 "/>
</clipPath>
<clipPath id="clip23">
<path d="M 44.328125 19 L 242.175781 19 L 242.175781 109 L 44.328125 109 Z M 44.328125 19 "/>
</clipPath>
<clipPath id="clip24">
<path d="M 44.328125 19 L 242.175781 19 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 19 "/>
</clipPath>
<clipPath id="clip25">
<path d="M 44.328125 21 L 242.175781 21 L 242.175781 121 L 44.328125 121 Z M 44.328125 21 "/>
</clipPath>
<clipPath id="clip26">
<path d="M 44.328125 21 L 242.175781 21 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 21 "/>
</clipPath>
<clipPath id="clip27">
<path d="M 44.328125 20 L 242.175781 20 L 242.175781 111 L 44.328125 111 Z M 44.328125 20 "/>
</clipPath>
<clipPath id="clip28">
<path d="M 44.328125 19 L 242.175781 19 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 19 "/>
</clipPath>
<clipPath id="clip29">
<path d="M 44.328125 24 L 242.175781 24 L 242.175781 109 L 44.328125 109 Z M 44.328125 24 "/>
</clipPath>
<clipPath id="clip30">
<path d="M 44.328125 25 L 242.175781 25 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 25 "/>
</clipPath>
<clipPath id="clip31">
<path d="M 44.328125 23 L 242.175781 23 L 242.175781 114 L 44.328125 114 Z M 44.328125 23 "/>
</clipPath>
<clipPath id="clip32">
<path d="M 44.328125 25 L 242.175781 25 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 25 "/>
</clipPath>
<clipPath id="clip33">
<path d="M 44.328125 20 L 242.175781 20 L 242.175781 112 L 44.328125 112 Z M 44.328125 20 "/>
</clipPath>
<clipPath id="clip34">
<path d="M 44.328125 20 L 242.175781 20 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 20 "/>
</clipPath>
<clipPath id="clip35">
<path d="M 44.328125 19 L 242.175781 19 L 242.175781 108 L 44.328125 108 Z M 44.328125 19 "/>
</clipPath>
<clipPath id="clip36">
<path d="M 44.328125 19 L 242.175781 19 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 19 "/>
</clipPath>
<clipPath id="clip37">
<path d="M 44.328125 19 L 242.175781 19 L 242.175781 108 L 44.328125 108 Z M 44.328125 19 "/>
</clipPath>
<clipPath id="clip38">
<path d="M 44.328125 19 L 242.175781 19 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 19 "/>
</clipPath>
<clipPath id="clip39">
<path d="M 44.328125 24 L 242.175781 24 L 242.175781 111 L 44.328125 111 Z M 44.328125 24 "/>
</clipPath>
<clipPath id="clip40">
<path d="M 44.328125 25 L 242.175781 25 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 25 "/>
</clipPath>
<clipPath id="clip41">
<path d="M 44.328125 22 L 242.175781 22 L 242.175781 140 L 44.328125 140 Z M 44.328125 22 "/>
</clipPath>
<clipPath id="clip42">
<path d="M 44.328125 23 L 242.175781 23 L 242.175781 149.171875 L 44.328125 149.171875 Z M 44.328125 23 "/>
</clipPath>
<clipPath id="clip43">
<path d="M 226 113 L 242.175781 113 L 242.175781 115 L 226 115 Z M 226 113 "/>
</clipPath>
<clipPath id="clip44">
<path d="M 213 92 L 242.175781 92 L 242.175781 128 L 213 128 Z M 213 92 "/>
</clipPath>
<clipPath id="clip45">
<path d="M 44.328125 7.855469 L 242.175781 7.855469 L 242.175781 91 L 44.328125 91 Z M 44.328125 7.855469 "/>
</clipPath>
<clipPath id="clip46">
<path d="M 44.328125 7.855469 L 242.175781 7.855469 L 242.175781 90 L 44.328125 90 Z M 44.328125 7.855469 "/>
</clipPath>
<clipPath id="clip47">
<path d="M 44.328125 64 L 123 64 L 123 149.171875 L 44.328125 149.171875 Z M 44.328125 64 "/>
</clipPath>
<clipPath id="clip48">
<path d="M 44.328125 63 L 118 63 L 118 149.171875 L 44.328125 149.171875 Z M 44.328125 63 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 44.328125 149.171875 L 242.175781 149.171875 L 242.175781 7.855469 L 44.328125 7.855469 Z M 44.328125 149.171875 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75%,75%,75%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L -49.609103 35.433283 M -34.674408 -106.301357 L -34.674408 35.433283 M -25.93769 -106.301357 L -25.93769 35.433283 M -19.739714 -106.301357 L -19.739714 35.433283 M -14.93256 -106.301357 L -14.93256 35.433283 M -11.006913 -106.301357 L -11.006913 35.433283 M -7.68461 -106.301357 L -7.68461 35.433283 M -4.808937 -106.301357 L -4.808937 35.433283 M -2.270196 -106.301357 L -2.270196 35.433283 M -0.00178309 -106.301357 L -0.00178309 35.433283 M 14.932912 -106.301357 L 14.932912 35.433283 M 23.669629 -106.301357 L 23.669629 35.433283 M 29.867606 -106.301357 L 29.867606 35.433283 M 34.67476 -106.301357 L 34.67476 35.433283 M 38.604324 -106.301357 L 38.604324 35.433283 M 41.92271 -106.301357 L 41.92271 35.433283 M 44.802301 -106.301357 L 44.802301 35.433283 M 47.337124 -106.301357 L 47.337124 35.433283 M 49.609454 -106.301357 L 49.609454 35.433283 M 64.540231 -106.301357 L 64.540231 35.433283 M 73.276949 -106.301357 L 73.276949 35.433283 M 79.474926 -106.301357 L 79.474926 35.433283 M 84.28208 -106.301357 L 84.28208 35.433283 M 88.211644 -106.301357 L 88.211644 35.433283 M 91.53003 -106.301357 L 91.53003 35.433283 M 94.40962 -106.301357 L 94.40962 35.433283 M 96.944444 -106.301357 L 96.944444 35.433283 M 99.216774 -106.301357 L 99.216774 35.433283 M 114.147551 -106.301357 L 114.147551 35.433283 M 122.884269 -106.301357 L 122.884269 35.433283 M 129.082246 -106.301357 L 129.082246 35.433283 M 133.889399 -106.301357 L 133.889399 35.433283 M 137.818964 -106.301357 L 137.818964 35.433283 M 141.141267 -106.301357 L 141.141267 35.433283 M 144.01694 -106.301357 L 144.01694 35.433283 M 146.555682 -106.301357 L 146.555682 35.433283 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75%,75%,75%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L -49.609103 35.433283 M -0.00178309 -106.301357 L -0.00178309 35.433283 M 49.609454 -106.301357 L 49.609454 35.433283 M 99.216774 -106.301357 L 99.216774 35.433283 M 148.824094 -106.301357 L 148.824094 35.433283 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75%,75%,75%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L 148.824094 -106.301357 M -49.609103 -95.633158 L 148.824094 -95.633158 M -49.609103 -89.392086 L 148.824094 -89.392086 M -49.609103 -84.96496 L 148.824094 -84.96496 M -49.609103 -81.532957 L 148.824094 -81.532957 M -49.609103 -78.727805 L 148.824094 -78.727805 M -49.609103 -76.353612 L 148.824094 -76.353612 M -49.609103 -74.300679 L 148.824094 -74.300679 M -49.609103 -72.486732 L 148.824094 -72.486732 M -49.609103 -70.864759 L 148.824094 -70.864759 M -49.609103 -60.200478 L 148.824094 -60.200478 M -49.609103 -53.959405 L 148.824094 -53.959405 M -49.609103 -49.532279 L 148.824094 -49.532279 M -49.609103 -46.100277 L 148.824094 -46.100277 M -49.609103 -43.295125 L 148.824094 -43.295125 M -49.609103 -40.920931 L 148.824094 -40.920931 M -49.609103 -38.867998 L 148.824094 -38.867998 M -49.609103 -37.054052 L 148.824094 -37.054052 M -49.609103 -35.432078 L 148.824094 -35.432078 M -49.609103 -24.767797 L 148.824094 -24.767797 M -49.609103 -18.526725 L 148.824094 -18.526725 M -49.609103 -14.099599 L 148.824094 -14.099599 M -49.609103 -10.667597 L 148.824094 -10.667597 M -49.609103 -7.862444 L 148.824094 -7.862444 M -49.609103 -5.488251 L 148.824094 -5.488251 M -49.609103 -3.435318 L 148.824094 -3.435318 M -49.609103 -1.621372 L 148.824094 -1.621372 M -49.609103 0.000602125 L 148.824094 0.000602125 M -49.609103 10.664883 L 148.824094 10.664883 M -49.609103 16.905956 L 148.824094 16.905956 M -49.609103 21.333082 L 148.824094 21.333082 M -49.609103 24.765084 L 148.824094 24.765084 M -49.609103 27.574154 L 148.824094 27.574154 M -49.609103 29.94443 L 148.824094 29.94443 M -49.609103 32.00128 L 148.824094 32.00128 M -49.609103 33.811309 L 148.824094 33.811309 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75%,75%,75%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L 148.824094 -106.301357 M -49.609103 -70.864759 L 148.824094 -70.864759 M -49.609103 -35.432078 L 148.824094 -35.432078 M -49.609103 0.000602125 L 148.824094 0.000602125 M -49.609103 35.433283 L 148.824094 35.433283 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L -49.609103 -103.464862 M -34.674408 -106.301357 L -34.674408 -103.464862 M -25.93769 -106.301357 L -25.93769 -103.464862 M -19.739714 -106.301357 L -19.739714 -103.464862 M -14.93256 -106.301357 L -14.93256 -103.464862 M -11.006913 -106.301357 L -11.006913 -103.464862 M -7.68461 -106.301357 L -7.68461 -103.464862 M -4.808937 -106.301357 L -4.808937 -103.464862 M -2.270196 -106.301357 L -2.270196 -103.464862 M -0.00178309 -106.301357 L -0.00178309 -103.464862 M 14.932912 -106.301357 L 14.932912 -103.464862 M 23.669629 -106.301357 L 23.669629 -103.464862 M 29.867606 -106.301357 L 29.867606 -103.464862 M 34.67476 -106.301357 L 34.67476 -103.464862 M 38.604324 -106.301357 L 38.604324 -103.464862 M 41.92271 -106.301357 L 41.92271 -103.464862 M 44.802301 -106.301357 L 44.802301 -103.464862 M 47.337124 -106.301357 L 47.337124 -103.464862 M 49.609454 -106.301357 L 49.609454 -103.464862 M 64.540231 -106.301357 L 64.540231 -103.464862 M 73.276949 -106.301357 L 73.276949 -103.464862 M 79.474926 -106.301357 L 79.474926 -103.464862 M 84.28208 -106.301357 L 84.28208 -103.464862 M 88.211644 -106.301357 L 88.211644 -103.464862 M 91.53003 -106.301357 L 91.53003 -103.464862 M 94.40962 -106.301357 L 94.40962 -103.464862 M 96.944444 -106.301357 L 96.944444 -103.464862 M 99.216774 -106.301357 L 99.216774 -103.464862 M 114.147551 -106.301357 L 114.147551 -103.464862 M 122.884269 -106.301357 L 122.884269 -103.464862 M 129.082246 -106.301357 L 129.082246 -103.464862 M 133.889399 -106.301357 L 133.889399 -103.464862 M 137.818964 -106.301357 L 137.818964 -103.464862 M 141.141267 -106.301357 L 141.141267 -103.464862 M 144.01694 -106.301357 L 144.01694 -103.464862 M 146.555682 -106.301357 L 146.555682 -103.464862 M -49.609103 35.433283 L -49.609103 32.600705 M -34.674408 35.433283 L -34.674408 32.600705 M -25.93769 35.433283 L -25.93769 32.600705 M -19.739714 35.433283 L -19.739714 32.600705 M -14.93256 35.433283 L -14.93256 32.600705 M -11.006913 35.433283 L -11.006913 32.600705 M -7.68461 35.433283 L -7.68461 32.600705 M -4.808937 35.433283 L -4.808937 32.600705 M -2.270196 35.433283 L -2.270196 32.600705 M -0.00178309 35.433283 L -0.00178309 32.600705 M 14.932912 35.433283 L 14.932912 32.600705 M 23.669629 35.433283 L 23.669629 32.600705 M 29.867606 35.433283 L 29.867606 32.600705 M 34.67476 35.433283 L 34.67476 32.600705 M 38.604324 35.433283 L 38.604324 32.600705 M 41.92271 35.433283 L 41.92271 32.600705 M 44.802301 35.433283 L 44.802301 32.600705 M 47.337124 35.433283 L 47.337124 32.600705 M 49.609454 35.433283 L 49.609454 32.600705 M 64.540231 35.433283 L 64.540231 32.600705 M 73.276949 35.433283 L 73.276949 32.600705 M 79.474926 35.433283 L 79.474926 32.600705 M 84.28208 35.433283 L 84.28208 32.600705 M 88.211644 35.433283 L 88.211644 32.600705 M 91.53003 35.433283 L 91.53003 32.600705 M 94.40962 35.433283 L 94.40962 32.600705 M 96.944444 35.433283 L 96.944444 32.600705 M 99.216774 35.433283 L 99.216774 32.600705 M 114.147551 35.433283 L 114.147551 32.600705 M 122.884269 35.433283 L 122.884269 32.600705 M 129.082246 35.433283 L 129.082246 32.600705 M 133.889399 35.433283 L 133.889399 32.600705 M 137.818964 35.433283 L 137.818964 32.600705 M 141.141267 35.433283 L 141.141267 32.600705 M 144.01694 35.433283 L 144.01694 32.600705 M 146.555682 35.433283 L 146.555682 32.600705 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L -49.609103 -102.050532 M -0.00178309 -106.301357 L -0.00178309 -102.050532 M 49.609454 -106.301357 L 49.609454 -102.050532 M 99.216774 -106.301357 L 99.216774 -102.050532 M 148.824094 -106.301357 L 148.824094 -102.050532 M -49.609103 35.433283 L -49.609103 31.182458 M -0.00178309 35.433283 L -0.00178309 31.182458 M 49.609454 35.433283 L 49.609454 31.182458 M 99.216774 35.433283 L 99.216774 31.182458 M 148.824094 35.433283 L 148.824094 31.182458 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L -46.776526 -106.301357 M -49.609103 -95.633158 L -46.776526 -95.633158 M -49.609103 -89.392086 L -46.776526 -89.392086 M -49.609103 -84.96496 L -46.776526 -84.96496 M -49.609103 -81.532957 L -46.776526 -81.532957 M -49.609103 -78.727805 L -46.776526 -78.727805 M -49.609103 -76.353612 L -46.776526 -76.353612 M -49.609103 -74.300679 L -46.776526 -74.300679 M -49.609103 -72.486732 L -46.776526 -72.486732 M -49.609103 -70.864759 L -46.776526 -70.864759 M -49.609103 -60.200478 L -46.776526 -60.200478 M -49.609103 -53.959405 L -46.776526 -53.959405 M -49.609103 -49.532279 L -46.776526 -49.532279 M -49.609103 -46.100277 L -46.776526 -46.100277 M -49.609103 -43.295125 L -46.776526 -43.295125 M -49.609103 -40.920931 L -46.776526 -40.920931 M -49.609103 -38.867998 L -46.776526 -38.867998 M -49.609103 -37.054052 L -46.776526 -37.054052 M -49.609103 -35.432078 L -46.776526 -35.432078 M -49.609103 -24.767797 L -46.776526 -24.767797 M -49.609103 -18.526725 L -46.776526 -18.526725 M -49.609103 -14.099599 L -46.776526 -14.099599 M -49.609103 -10.667597 L -46.776526 -10.667597 M -49.609103 -7.862444 L -46.776526 -7.862444 M -49.609103 -5.488251 L -46.776526 -5.488251 M -49.609103 -3.435318 L -46.776526 -3.435318 M -49.609103 -1.621372 L -46.776526 -1.621372 M -49.609103 0.000602125 L -46.776526 0.000602125 M -49.609103 10.664883 L -46.776526 10.664883 M -49.609103 16.905956 L -46.776526 16.905956 M -49.609103 21.333082 L -46.776526 21.333082 M -49.609103 24.765084 L -46.776526 24.765084 M -49.609103 27.574154 L -46.776526 27.574154 M -49.609103 29.94443 L -46.776526 29.94443 M -49.609103 32.00128 L -46.776526 32.00128 M -49.609103 33.811309 L -46.776526 33.811309 M 148.824094 -106.301357 L 145.991517 -106.301357 M 148.824094 -95.633158 L 145.991517 -95.633158 M 148.824094 -89.392086 L 145.991517 -89.392086 M 148.824094 -84.96496 L 145.991517 -84.96496 M 148.824094 -81.532957 L 145.991517 -81.532957 M 148.824094 -78.727805 L 145.991517 -78.727805 M 148.824094 -76.353612 L 145.991517 -76.353612 M 148.824094 -74.300679 L 145.991517 -74.300679 M 148.824094 -72.486732 L 145.991517 -72.486732 M 148.824094 -70.864759 L 145.991517 -70.864759 M 148.824094 -60.200478 L 145.991517 -60.200478 M 148.824094 -53.959405 L 145.991517 -53.959405 M 148.824094 -49.532279 L 145.991517 -49.532279 M 148.824094 -46.100277 L 145.991517 -46.100277 M 148.824094 -43.295125 L 145.991517 -43.295125 M 148.824094 -40.920931 L 145.991517 -40.920931 M 148.824094 -38.867998 L 145.991517 -38.867998 M 148.824094 -37.054052 L 145.991517 -37.054052 M 148.824094 -35.432078 L 145.991517 -35.432078 M 148.824094 -24.767797 L 145.991517 -24.767797 M 148.824094 -18.526725 L 145.991517 -18.526725 M 148.824094 -14.099599 L 145.991517 -14.099599 M 148.824094 -10.667597 L 145.991517 -10.667597 M 148.824094 -7.862444 L 145.991517 -7.862444 M 148.824094 -5.488251 L 145.991517 -5.488251 M 148.824094 -3.435318 L 145.991517 -3.435318 M 148.824094 -1.621372 L 145.991517 -1.621372 M 148.824094 0.000602125 L 145.991517 0.000602125 M 148.824094 10.664883 L 145.991517 10.664883 M 148.824094 16.905956 L 145.991517 16.905956 M 148.824094 21.333082 L 145.991517 21.333082 M 148.824094 24.765084 L 145.991517 24.765084 M 148.824094 27.574154 L 145.991517 27.574154 M 148.824094 29.94443 L 145.991517 29.94443 M 148.824094 32.00128 L 145.991517 32.00128 M 148.824094 33.811309 L 145.991517 33.811309 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L -45.358278 -106.301357 M -49.609103 -70.864759 L -45.358278 -70.864759 M -49.609103 -35.432078 L -45.358278 -35.432078 M -49.609103 0.000602125 L -45.358278 0.000602125 M -49.609103 35.433283 L -45.358278 35.433283 M 148.824094 -106.301357 L 144.577187 -106.301357 M 148.824094 -70.864759 L 144.577187 -70.864759 M 148.824094 -35.432078 L 144.577187 -35.432078 M 148.824094 0.000602125 L 144.577187 0.000602125 M 148.824094 35.433283 L 144.577187 35.433283 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L 148.824094 -106.301357 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 35.433283 L 148.824094 35.433283 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -106.301357 L -49.609103 35.433283 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.824094 -106.301357 L 148.824094 35.433283 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="34.030704" y="161.063325"/>
<use xlink:href="#glyph0-2" x="38.997305" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="43.964305" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="50.17293" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="86.596133" y="161.063325"/>
<use xlink:href="#glyph0-2" x="91.562735" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="96.529734" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="136.057749" y="161.063325"/>
<use xlink:href="#glyph0-2" x="141.02435" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="145.99135" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="185.519365" y="161.063325"/>
<use xlink:href="#glyph0-2" x="190.485966" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="195.452966" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="234.980981" y="161.063325"/>
<use xlink:href="#glyph0-2" x="239.947582" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="244.914582" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.924452" y="153.213556"/>
<use xlink:href="#glyph0-2" x="24.891053" y="153.213556"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.858053" y="149.608227"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="36.066678" y="149.608227"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.924452" y="117.884116"/>
<use xlink:href="#glyph0-2" x="24.891053" y="117.884116"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.858053" y="114.278786"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="36.066678" y="114.278786"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.924452" y="82.555672"/>
<use xlink:href="#glyph0-2" x="24.891053" y="82.555672"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="29.858053" y="78.950342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="36.066678" y="78.950342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="26.13208" y="47.227229"/>
<use xlink:href="#glyph0-2" x="31.098681" y="47.227229"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="36.065681" y="43.621899"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="26.13208" y="11.898785"/>
<use xlink:href="#glyph0-2" x="31.098681" y="11.898785"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="36.065681" y="8.293455"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.000602125 L -47.603184 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -37.585342 0.00843775 L -33.573503 0.0162734 L -31.567584 0.0162734 L -29.565583 0.0201912 L -27.559664 0.024109 L -25.557663 0.0319446 L -23.551744 0.0397802 L -21.549742 0.0476159 L -19.543823 0.0554515 L -17.537904 0.0672049 L -15.535903 0.0828762 L -13.529984 0.0985474 L -11.524065 0.118136 L -9.522063 0.141643 L -7.516144 0.169068 L -5.514143 0.204328 L -3.508224 0.247424 L -1.502305 0.294438 L 0.499697 0.353205 L 2.505616 0.423726 L 4.511535 0.506 L 6.513536 0.603945 L 8.515537 0.717561 L 10.521457 0.850767 L 12.523458 1.007479 L 14.525459 1.187699 L 16.535296 1.395343 L 18.541215 1.634329 L 20.543216 1.90074 L 22.549136 2.198494 L 24.555055 2.523672 L 26.557056 2.872357 L 28.559057 3.236714 L 30.564976 3.604988 L 32.570896 3.957591 L 34.576815 4.271016 L 36.578816 4.51392 L 38.584735 4.651043 L 40.586736 4.627537 L 42.592655 4.404221 L 44.594657 3.938002 L 46.600576 3.197536 L 48.606495 2.167151 L 50.608496 0.854685 L 52.614415 -0.708522 L 54.616417 -2.491126 L 56.622336 -4.453949 L 58.628255 -6.553895 L 60.630256 -8.755705 L 62.636175 -11.035871 L 64.642094 -13.359133 L 66.644096 -15.717655 L 68.650015 -18.076177 L 70.652016 -20.430781 L 72.657935 -22.761878 L 74.659936 -25.061633 L 76.665856 -27.310457 L 78.667857 -29.496595 L 80.673776 -31.616131 L 82.679695 -33.653392 L 84.681696 -35.600544 L 86.687615 -37.445833 L 88.689617 -39.185341 L 90.695536 -40.807315 L 92.697537 -42.307836 L 94.707374 -43.675152 L 96.709375 -44.91318 L 98.715294 -46.014085 L 100.717296 -46.973949 L 102.723215 -47.788853 L 104.729134 -48.458799 L 106.731135 -48.983786 L 108.733137 -49.371649 L 110.739056 -49.626307 L 112.741057 -49.747759 L 114.750894 -49.751677 L 116.752895 -49.645896 L 118.758814 -49.450005 L 120.760816 -49.171841 L 122.766735 -48.830991 L 124.768736 -48.443128 L 126.774655 -48.016086 L 128.776656 -47.569456 L 130.782575 -47.118908 L 132.788495 -46.676195 L 134.794414 -46.256989 L 136.796415 -45.888715 L 138.802334 -45.602715 L 140.804335 -45.453838 L 142.810254 -45.524359 L 144.816174 -45.935729 L 146.818175 -46.832908 L 148.824094 -48.353018 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -128.687728 L -47.603184 -125.898246 L -45.601182 -123.08134 L -43.595263 -120.248763 L -41.589344 -117.400515 L -39.587343 -114.548349 L -37.585342 -111.688347 L -31.567584 -103.096588 L -29.565583 -100.232668 L -27.559664 -97.368749 L -25.557663 -94.500911 L -23.551744 -91.636991 L -21.549742 -88.773072 L -17.537904 -83.045232 L -15.535903 -80.181313 L -13.529984 -77.321311 L -11.524065 -74.457391 L -9.522063 -71.597389 L -7.516144 -68.737388 L -5.514143 -65.877386 L -3.508224 -63.017384 L -1.502305 -60.1613 L 0.499697 -57.305216 L 4.511535 -51.600883 L 6.513536 -48.752635 L 8.515537 -45.908304 L 10.521457 -43.067891 L 12.523458 -40.231396 L 14.525459 -37.402737 L 16.535296 -34.581913 L 18.541215 -31.768925 L 20.543216 -28.975526 L 22.549136 -26.197798 L 24.555055 -23.43966 L 26.557056 -20.712863 L 28.559057 -18.025245 L 30.564976 -15.392476 L 32.570896 -12.82631 L 34.576815 -10.350254 L 36.578816 -7.999567 L 38.584735 -5.801676 L 40.586736 -3.795756 L 42.592655 -2.024906 L 44.594657 -0.524385 L 46.600576 0.686219 L 48.606495 1.602987 L 50.608496 2.233754 L 52.614415 2.621618 L 54.616417 2.801837 L 56.622336 2.825344 L 58.628255 2.727398 L 60.630256 2.555015 L 62.636175 2.327782 L 64.642094 2.077042 L 66.644096 1.818466 L 68.650015 1.559891 L 70.652016 1.316987 L 72.657935 1.089754 L 74.659936 0.88211 L 76.665856 0.694055 L 78.667857 0.529507 L 80.673776 0.384548 L 82.679695 0.259178 L 84.681696 0.149479 L 86.687615 0.0593693 L 88.689617 -0.0229047 L 90.695536 -0.0895075 L 92.697537 -0.148275 L 94.707374 -0.199206 L 96.709375 -0.242302 L 98.715294 -0.277562 L 100.717296 -0.308905 L 102.723215 -0.340247 L 104.729134 -0.363754 L 106.731135 -0.387261 L 108.733137 -0.40685 L 110.739056 -0.426439 L 112.741057 -0.44211 L 114.750894 -0.457782 L 116.752895 -0.473453 L 118.758814 -0.489124 L 120.760816 -0.500878 L 122.766735 -0.512631 L 124.768736 -0.516549 L 126.774655 -0.520467 L 128.776656 -0.512631 L 130.782575 -0.49696 L 132.788495 -0.469535 L 134.794414 -0.426439 L 136.796415 -0.359836 L 138.802334 -0.269727 L 140.804335 -0.152192 L 142.810254 -0.0072335 L 144.816174 0.149479 L 146.818175 0.298356 L 148.824094 0.404137 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0280268 L -25.557663 0.0358624 L -23.551744 0.043698 L -21.549742 0.0515337 L -17.537904 0.0750405 L -15.535903 0.0907118 L -13.529984 0.110301 L -11.524065 0.133808 L -9.522063 0.161232 L -7.516144 0.192575 L -5.514143 0.231753 L -3.508224 0.278767 L -1.502305 0.333616 L 0.499697 0.400219 L 2.505616 0.482493 L 4.511535 0.57652 L 6.513536 0.690137 L 8.515537 0.819425 L 10.521457 0.976137 L 12.523458 1.160274 L 14.525459 1.375754 L 16.535296 1.622576 L 18.541215 1.908576 L 20.543216 2.237672 L 22.549136 2.613782 L 24.555055 3.032988 L 26.557056 3.495289 L 28.559057 4.004605 L 30.564976 4.545263 L 34.576815 5.681428 L 36.578816 6.218168 L 38.584735 6.668716 L 40.586736 6.970387 L 42.592655 7.033072 L 44.594657 6.754908 L 46.600576 6.061455 L 48.606495 4.909619 L 50.608496 3.31507 L 52.614415 1.340493 L 54.616417 -0.916166 L 56.622336 -3.380469 L 58.628255 -5.981895 L 60.630256 -8.665595 L 62.636175 -11.400227 L 64.642094 -14.162284 L 66.644096 -16.936094 L 68.650015 -19.709904 L 70.652016 -22.479796 L 72.657935 -25.237935 L 74.659936 -27.976484 L 76.665856 -30.691527 L 78.667857 -33.383063 L 80.673776 -36.039339 L 82.679695 -38.660354 L 84.681696 -41.230438 L 86.687615 -43.749591 L 88.689617 -46.206058 L 90.695536 -48.588087 L 92.697537 -50.89176 L 94.707374 -53.097487 L 96.709375 -55.193516 L 98.715294 -57.175928 L 100.717296 -59.025135 L 102.723215 -60.737218 L 104.729134 -62.292589 L 106.731135 -63.691247 L 108.733137 -64.92144 L 110.739056 -65.983167 L 112.741057 -66.876427 L 114.750894 -67.60514 L 116.752895 -68.177141 L 118.758814 -68.604182 L 120.760816 -68.8941 L 122.766735 -69.066484 L 124.768736 -69.140922 L 126.774655 -69.129169 L 128.776656 -69.058648 L 130.782575 -68.945032 L 132.788495 -68.815744 L 134.794414 -68.690374 L 136.796415 -68.6081 L 138.802334 -68.6081 L 140.804335 -68.756977 L 142.810254 -69.133086 L 144.816174 -69.846128 L 146.818175 -71.021471 L 148.824094 -72.753144 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -126.842439 L -47.603184 -124.056875 L -45.601182 -121.239969 L -43.595263 -118.403474 L -41.589344 -115.555226 L -39.587343 -112.70306 L -37.585342 -109.843058 L -31.567584 -101.251299 L -29.565583 -98.387379 L -27.559664 -95.519542 L -25.557663 -92.651704 L -23.551744 -89.787785 L -21.549742 -86.923865 L -19.543823 -84.056028 L -17.537904 -81.192108 L -15.535903 -78.328188 L -13.529984 -75.464269 L -11.524065 -72.596431 L -9.522063 -69.732511 L -7.516144 -66.868592 L -5.514143 -64.004672 L -1.502305 -58.276833 L 0.499697 -55.412913 L 4.511535 -49.685074 L 6.513536 -46.817236 L 8.515537 -43.953317 L 10.521457 -41.093315 L 12.523458 -38.225477 L 14.525459 -35.361558 L 16.535296 -32.497638 L 18.541215 -29.637636 L 20.543216 -26.777634 L 22.549136 -23.913715 L 24.555055 -21.061548 L 26.557056 -18.2133 L 28.559057 -15.376805 L 30.564976 -12.555981 L 32.570896 -9.770418 L 34.576815 -7.031868 L 36.578816 -4.375592 L 38.584735 -1.840769 L 40.586736 0.506 L 42.592655 2.582439 L 44.594657 4.302358 L 46.600576 5.591318 L 48.606495 6.425812 L 50.608496 6.817593 L 52.614415 6.852853 L 54.616417 6.621702 L 56.622336 6.218168 L 58.628255 5.716688 L 60.630256 5.168195 L 62.636175 4.615783 L 64.642094 4.082961 L 66.644096 3.581481 L 68.650015 3.119179 L 70.652016 2.703892 L 72.657935 2.3317 L 74.659936 2.002603 L 76.665856 1.716603 L 78.667857 1.469781 L 80.673776 1.254302 L 82.679695 1.070164 L 84.681696 0.913452 L 86.687615 0.784164 L 88.689617 0.670548 L 90.695536 0.57652 L 92.697537 0.498164 L 94.707374 0.431561 L 96.709375 0.376712 L 98.715294 0.333616 L 100.717296 0.294438 L 102.723215 0.263095 L 104.729134 0.239589 L 106.731135 0.22 L 108.733137 0.204328 L 110.739056 0.192575 L 112.741057 0.184739 L 114.750894 0.176904 L 116.752895 0.172986 L 118.758814 0.169068 L 124.768736 0.169068 L 126.774655 0.172986 L 128.776656 0.169068 L 130.782575 0.169068 L 132.788495 0.16515 L 134.794414 0.157315 L 136.796415 0.141643 L 138.802334 0.122054 L 140.804335 0.0946296 L 142.810254 0.0593693 L 144.816174 0.0201912 L 146.818175 -0.0229047 L 148.824094 -0.0542472 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.000602125 L -47.603184 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -37.585342 0.00843775 L -33.573503 0.0162734 L -31.567584 0.0162734 L -29.565583 0.0201912 L -27.559664 0.0280268 L -25.557663 0.0319446 L -23.551744 0.0397802 L -21.549742 0.0476159 L -19.543823 0.0554515 L -17.537904 0.0672049 L -15.535903 0.0828762 L -13.529984 0.0985474 L -11.524065 0.122054 L -9.522063 0.145561 L -7.516144 0.172986 L -5.514143 0.208246 L -3.508224 0.251342 L -1.502305 0.302274 L 0.499697 0.361041 L 2.505616 0.431561 L 4.511535 0.517753 L 6.513536 0.615698 L 8.515537 0.733233 L 10.521457 0.870356 L 12.523458 1.030986 L 14.525459 1.219041 L 16.535296 1.434521 L 18.541215 1.677425 L 20.543216 1.95559 L 22.549136 2.265097 L 24.555055 2.605946 L 26.557056 2.97422 L 28.559057 3.358166 L 30.564976 3.753865 L 32.570896 4.141728 L 34.576815 4.490413 L 36.578816 4.776413 L 38.584735 4.956633 L 40.586736 4.976222 L 42.592655 4.788167 L 44.594657 4.345454 L 46.600576 3.604988 L 48.606495 2.551097 L 50.608496 1.195534 L 52.614415 -0.434275 L 54.616417 -2.295235 L 56.622336 -4.348168 L 58.628255 -6.542142 L 60.630256 -8.845815 L 62.636175 -11.223926 L 64.642094 -13.652968 L 66.644096 -16.113354 L 68.650015 -18.585492 L 70.652016 -21.053713 L 72.657935 -23.51018 L 74.659936 -25.943141 L 76.665856 -28.329087 L 78.667857 -30.66802 L 80.673776 -32.940351 L 82.679695 -35.146078 L 84.681696 -37.261696 L 86.687615 -39.287204 L 88.689617 -41.199096 L 90.695536 -43.001289 L 92.697537 -44.674194 L 94.707374 -46.213894 L 96.709375 -47.612552 L 98.715294 -48.858416 L 100.717296 -49.959321 L 102.723215 -50.899595 L 104.729134 -51.67924 L 106.731135 -52.306089 L 108.733137 -52.780144 L 110.739056 -53.105323 L 112.741057 -53.297295 L 114.750894 -53.356063 L 116.752895 -53.301213 L 118.758814 -53.144501 L 120.760816 -52.901596 L 122.766735 -52.588172 L 124.768736 -52.223815 L 126.774655 -51.820281 L 128.776656 -51.393239 L 130.782575 -50.958362 L 132.788495 -50.535239 L 134.794414 -50.13954 L 136.796415 -49.794773 L 138.802334 -49.532279 L 140.804335 -49.414745 L 142.810254 -49.524444 L 144.816174 -49.97891 L 146.818175 -50.915266 L 148.824094 -52.466719 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -128.362549 L -47.603184 -125.573068 L -45.601182 -122.76008 L -43.595263 -119.923585 L -41.589344 -117.075337 L -39.587343 -114.22317 L -37.585342 -111.363169 L -31.567584 -102.77141 L -29.565583 -99.90749 L -27.559664 -97.039652 L -25.557663 -94.175733 L -23.551744 -91.311813 L -21.549742 -88.447893 L -19.543823 -85.583974 L -17.537904 -82.716136 L -15.535903 -79.856134 L -11.524065 -74.128295 L -9.522063 -71.268293 L -7.516144 -68.408291 L -5.514143 -65.54829 L -1.502305 -59.828286 L 0.499697 -56.972202 L 2.505616 -54.116118 L 4.511535 -51.263952 L 6.513536 -48.411785 L 8.515537 -45.563537 L 10.521457 -42.719206 L 12.523458 -39.878794 L 14.525459 -37.042299 L 16.535296 -34.213639 L 18.541215 -31.396733 L 20.543216 -28.587663 L 22.549136 -25.794264 L 24.555055 -23.020454 L 26.557056 -20.274069 L 28.559057 -17.562943 L 30.564976 -14.898832 L 32.570896 -12.297406 L 34.576815 -9.782171 L 36.578816 -7.384471 L 38.584735 -5.135648 L 40.586736 -3.082715 L 42.592655 -1.268769 L 44.594657 0.267013 L 46.600576 1.48937 L 48.606495 2.394384 L 50.608496 3.001645 L 52.614415 3.346413 L 54.616417 3.467865 L 56.622336 3.428687 L 58.628255 3.275892 L 60.630256 3.040823 L 62.636175 2.762659 L 64.642094 2.460987 L 66.644096 2.159316 L 68.650015 1.86548 L 70.652016 1.587315 L 72.657935 1.332658 L 74.659936 1.101507 L 76.665856 0.897781 L 78.667857 0.717561 L 80.673776 0.556931 L 82.679695 0.419808 L 84.681696 0.302274 L 86.687615 0.20041 L 88.689617 0.114219 L 90.695536 0.0397802 L 92.697537 -0.0229047 L 94.707374 -0.0777541 L 96.709375 -0.12085 L 98.715294 -0.160028 L 100.717296 -0.195288 L 104.729134 -0.250138 L 108.733137 -0.289316 L 110.739056 -0.308905 L 112.741057 -0.324576 L 114.750894 -0.340247 L 116.752895 -0.352001 L 118.758814 -0.363754 L 120.760816 -0.375508 L 122.766735 -0.383343 L 124.768736 -0.387261 L 126.774655 -0.387261 L 128.776656 -0.383343 L 130.782575 -0.37159 L 132.788495 -0.348083 L 134.794414 -0.312823 L 136.796415 -0.261891 L 138.802334 -0.191371 L 140.804335 -0.101261 L 142.810254 0.0123556 L 144.816174 0.12989 L 146.818175 0.239589 L 148.824094 0.317945 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -45.601182 0.00451994 L -43.595263 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0162734 L -33.573503 0.0162734 L -31.567584 0.0201912 L -29.565583 0.0280268 L -27.559664 0.0319446 L -25.557663 0.0397802 L -23.551744 0.0476159 L -21.549742 0.0554515 L -19.543823 0.0672049 L -17.537904 0.0828762 L -15.535903 0.0985474 L -13.529984 0.118136 L -11.524065 0.145561 L -9.522063 0.172986 L -7.516144 0.208246 L -5.514143 0.251342 L -3.508224 0.302274 L -1.502305 0.361041 L 0.499697 0.435479 L 2.505616 0.521671 L 4.511535 0.623534 L 6.513536 0.744986 L 8.515537 0.889945 L 10.521457 1.062329 L 12.523458 1.262137 L 14.525459 1.497206 L 16.535296 1.77537 L 18.541215 2.096631 L 20.543216 2.468823 L 22.549136 2.891946 L 24.555055 3.377755 L 26.557056 3.926248 L 28.559057 4.541345 L 30.564976 5.215208 L 32.570896 5.951757 L 34.576815 6.731401 L 36.578816 7.522799 L 38.584735 8.282854 L 40.586736 8.921457 L 42.592655 9.317156 L 44.594657 9.301485 L 46.600576 8.725567 L 48.606495 7.50321 L 50.608496 5.685346 L 52.614415 3.409097 L 54.616417 0.835096 L 56.622336 -1.903454 L 58.628255 -4.712524 L 60.630256 -7.533348 L 62.636175 -10.3385 L 64.642094 -13.100557 L 66.644096 -15.8156 L 68.650015 -18.471876 L 70.652016 -21.061548 L 72.657935 -23.580701 L 74.659936 -26.025415 L 76.665856 -28.383937 L 78.667857 -30.656267 L 80.673776 -32.83457 L 82.679695 -34.907092 L 84.681696 -36.87775 L 86.687615 -38.730875 L 88.689617 -40.470383 L 90.695536 -42.084521 L 92.697537 -43.569371 L 94.707374 -44.921016 L 96.709375 -46.139455 L 98.715294 -47.212935 L 100.717296 -48.149292 L 102.723215 -48.94069 L 104.729134 -49.587129 L 106.731135 -50.088608 L 108.733137 -50.445129 L 110.739056 -50.668444 L 112.741057 -50.762472 L 114.750894 -50.738965 L 116.752895 -50.609677 L 118.758814 -50.386362 L 120.760816 -50.080773 L 122.766735 -49.716416 L 124.768736 -49.308964 L 126.774655 -48.878005 L 128.776656 -48.43921 L 130.782575 -48.016086 L 132.788495 -47.624305 L 134.794414 -47.295209 L 136.796415 -47.056223 L 138.802334 -46.946524 L 140.804335 -47.028798 L 142.810254 -47.381401 L 144.816174 -48.094443 L 146.818175 -49.273704 L 148.824094 -50.99754 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -125.737616 L -47.603184 -122.948135 L -45.601182 -120.131229 L -43.595263 -117.294734 L -41.589344 -114.450403 L -39.587343 -111.594319 L -37.585342 -108.734318 L -31.567584 -100.142559 L -29.565583 -97.274721 L -27.559664 -94.410801 L -25.557663 -91.542964 L -23.551744 -88.679044 L -21.549742 -85.811207 L -19.543823 -82.943369 L -17.537904 -80.07945 L -15.535903 -77.211612 L -13.529984 -74.347693 L -11.524065 -71.479855 L -9.522063 -68.615935 L -7.516144 -65.748098 L -5.514143 -62.88026 L -1.502305 -57.144586 L 0.499697 -54.276748 L 4.511535 -48.533237 L 6.513536 -45.661482 L 8.515537 -42.785809 L 10.521457 -39.910136 L 14.525459 -34.143119 L 16.535296 -31.255692 L 18.541215 -28.36043 L 20.543216 -25.46125 L 22.549136 -22.550317 L 24.555055 -19.635465 L 26.557056 -16.708861 L 28.559057 -13.77442 L 30.564976 -10.828227 L 32.570896 -7.885951 L 34.576815 -4.951511 L 36.578816 -2.048413 L 38.584735 0.772411 L 40.586736 3.436522 L 42.592655 5.818551 L 44.594657 7.769621 L 46.600576 9.140855 L 48.606495 9.857814 L 50.608496 9.979266 L 52.614415 9.646252 L 54.616417 9.027238 L 56.622336 8.259347 L 58.628255 7.444443 L 60.630256 6.637374 L 62.636175 5.869483 L 64.642094 5.160359 L 66.644096 4.517838 L 68.650015 3.94192 L 70.652016 3.432604 L 72.657935 2.982056 L 74.659936 2.594193 L 76.665856 2.257261 L 78.667857 1.967343 L 80.673776 1.720521 L 82.679695 1.508959 L 84.681696 1.32874 L 86.687615 1.179863 L 88.689617 1.054493 L 90.695536 0.948712 L 92.697537 0.858603 L 94.707374 0.788082 L 96.709375 0.725397 L 98.715294 0.678383 L 100.717296 0.639205 L 102.723215 0.607863 L 104.729134 0.584356 L 106.731135 0.564767 L 108.733137 0.553013 L 110.739056 0.545178 L 112.741057 0.54126 L 114.750894 0.54126 L 116.752895 0.545178 L 118.758814 0.549096 L 120.760816 0.556931 L 122.766735 0.560849 L 124.768736 0.564767 L 126.774655 0.564767 L 128.776656 0.560849 L 130.782575 0.545178 L 132.788495 0.517753 L 134.794414 0.474657 L 136.796415 0.411972 L 138.802334 0.321863 L 140.804335 0.208246 L 142.810254 0.0672049 L 144.816174 -0.0777541 L 146.818175 -0.214877 L 148.824094 -0.312823 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.000602125 L -47.603184 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -37.585342 0.00843775 L -33.573503 0.0162734 L -31.567584 0.0162734 L -29.565583 0.0201912 L -27.559664 0.0280268 L -25.557663 0.0319446 L -23.551744 0.0397802 L -21.549742 0.0476159 L -19.543823 0.0554515 L -17.537904 0.0672049 L -15.535903 0.0828762 L -13.529984 0.0985474 L -11.524065 0.118136 L -9.522063 0.145561 L -7.516144 0.172986 L -5.514143 0.208246 L -3.508224 0.251342 L -1.502305 0.298356 L 0.499697 0.357123 L 2.505616 0.427643 L 4.511535 0.509918 L 6.513536 0.611781 L 8.515537 0.725397 L 10.521457 0.86252 L 12.523458 1.019233 L 14.525459 1.20337 L 16.535296 1.411014 L 18.541215 1.65 L 20.543216 1.920329 L 22.549136 2.218083 L 24.555055 2.547179 L 26.557056 2.895864 L 28.559057 3.256303 L 30.564976 3.624577 L 32.570896 3.969344 L 34.576815 4.274934 L 36.578816 4.506084 L 38.584735 4.623619 L 40.586736 4.576605 L 42.592655 4.325865 L 44.594657 3.824385 L 46.600576 3.052577 L 48.606495 1.99085 L 50.608496 0.658794 L 52.614415 -0.916166 L 54.616417 -2.706605 L 56.622336 -4.669428 L 58.628255 -6.761539 L 60.630256 -8.951595 L 62.636175 -11.21609 L 64.642094 -13.523681 L 66.644096 -15.858696 L 68.650015 -18.201547 L 70.652016 -20.532644 L 72.657935 -22.844152 L 74.659936 -25.1204 L 76.665856 -27.341799 L 78.667857 -29.504431 L 80.673776 -31.596542 L 82.679695 -33.606379 L 84.681696 -35.526106 L 86.687615 -37.34397 L 88.689617 -39.056053 L 90.695536 -40.65452 L 92.697537 -42.127617 L 94.707374 -43.479262 L 96.709375 -44.693783 L 98.715294 -45.775099 L 100.717296 -46.719291 L 102.723215 -47.518524 L 104.729134 -48.172799 L 106.731135 -48.68995 L 108.733137 -49.06606 L 110.739056 -49.308964 L 112.741057 -49.422581 L 114.750894 -49.418663 L 116.752895 -49.312882 L 118.758814 -49.113073 L 120.760816 -48.830991 L 122.766735 -48.490142 L 124.768736 -48.094443 L 126.774655 -47.667401 L 128.776656 -47.220771 L 130.782575 -46.766305 L 132.788495 -46.319674 L 134.794414 -45.904386 L 136.796415 -45.532194 L 138.802334 -45.242276 L 140.804335 -45.089482 L 142.810254 -45.156085 L 144.816174 -45.559619 L 146.818175 -46.45288 L 148.824094 -47.969073 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -128.484002 L -47.603184 -125.698438 L -45.601182 -122.881532 L -43.595263 -120.048955 L -41.589344 -117.200707 L -39.587343 -114.34854 L -37.585342 -111.488538 L -31.567584 -102.896779 L -29.565583 -100.028942 L -27.559664 -97.165022 L -25.557663 -94.301103 L -23.551744 -91.437183 L -21.549742 -88.573263 L -19.543823 -85.709344 L -17.537904 -82.841506 L -15.535903 -79.981504 L -13.529984 -77.117585 L -11.524065 -74.257583 L -9.522063 -71.393663 L -7.516144 -68.533661 L -5.514143 -65.677577 L -3.508224 -62.817575 L -1.502305 -59.961491 L 0.499697 -57.105407 L 2.505616 -54.249323 L 4.511535 -51.401075 L 8.515537 -45.704578 L 10.521457 -42.864165 L 14.525459 -37.199011 L 16.535296 -34.378187 L 18.541215 -31.569117 L 20.543216 -28.7718 L 22.549136 -25.994072 L 24.555055 -23.235933 L 26.557056 -20.513055 L 28.559057 -17.829355 L 30.564976 -15.200504 L 32.570896 -12.646091 L 34.576815 -10.181788 L 36.578816 -7.846773 L 38.584735 -5.672388 L 40.586736 -3.697811 L 42.592655 -1.954385 L 44.594657 -0.489124 L 46.600576 0.682301 L 48.606495 1.567726 L 50.608496 2.174987 L 52.614415 2.543261 L 54.616417 2.711727 L 56.622336 2.727398 L 58.628255 2.633371 L 60.630256 2.460987 L 62.636175 2.24159 L 64.642094 1.998686 L 66.644096 1.744028 L 68.650015 1.497206 L 70.652016 1.258219 L 72.657935 1.038822 L 74.659936 0.835096 L 76.665856 0.654877 L 78.667857 0.494246 L 80.673776 0.353205 L 82.679695 0.231753 L 84.681696 0.125972 L 86.687615 0.0358624 L 88.689617 -0.0424938 L 90.695536 -0.109097 L 92.697537 -0.167864 L 94.707374 -0.214877 L 96.709375 -0.257973 L 98.715294 -0.293234 L 100.717296 -0.324576 L 104.729134 -0.379426 L 108.733137 -0.418604 L 110.739056 -0.438193 L 112.741057 -0.457782 L 114.750894 -0.473453 L 116.752895 -0.489124 L 118.758814 -0.500878 L 120.760816 -0.516549 L 122.766735 -0.524385 L 124.768736 -0.53222 L 126.774655 -0.53222 L 128.776656 -0.528302 L 130.782575 -0.512631 L 132.788495 -0.485206 L 134.794414 -0.438193 L 136.796415 -0.37159 L 138.802334 -0.277562 L 140.804335 -0.15611 L 142.810254 -0.0111513 L 144.816174 0.153397 L 146.818175 0.302274 L 148.824094 0.411972 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip11)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0319446 L -25.557663 0.0358624 L -23.551744 0.043698 L -21.549742 0.0554515 L -17.537904 0.0789583 L -15.535903 0.0946296 L -13.529984 0.114219 L -11.524065 0.137726 L -9.522063 0.16515 L -7.516144 0.20041 L -5.514143 0.239589 L -3.508224 0.29052 L -1.502305 0.345369 L 0.499697 0.41589 L 2.505616 0.498164 L 4.511535 0.596109 L 6.513536 0.713644 L 8.515537 0.854685 L 10.521457 1.015315 L 12.523458 1.207288 L 14.525459 1.434521 L 16.535296 1.693096 L 18.541215 1.998686 L 20.543216 2.347371 L 22.549136 2.74307 L 24.555055 3.193618 L 26.557056 3.699015 L 28.559057 4.255345 L 30.564976 4.862605 L 32.570896 5.505126 L 34.576815 6.171154 L 36.578816 6.821511 L 38.584735 7.4131 L 40.586736 7.867566 L 42.592655 8.07521 L 44.594657 7.918498 L 46.600576 7.279895 L 48.606495 6.104551 L 50.608496 4.42381 L 52.614415 2.319946 L 54.616417 -0.0855897 L 56.622336 -2.683098 L 58.628255 -5.394223 L 60.630256 -8.160198 L 62.636175 -10.949679 L 64.642094 -13.735242 L 66.644096 -16.509052 L 68.650015 -19.255438 L 70.652016 -21.970481 L 72.657935 -24.646345 L 74.659936 -27.275196 L 76.665856 -29.857034 L 78.667857 -32.372268 L 80.673776 -34.824818 L 82.679695 -37.199011 L 84.681696 -39.49093 L 86.687615 -41.680986 L 88.689617 -43.765262 L 90.695536 -45.732003 L 92.697537 -47.573374 L 94.707374 -49.273704 L 96.709375 -50.825157 L 98.715294 -52.219897 L 100.717296 -53.454008 L 102.723215 -54.519652 L 104.729134 -55.416831 L 106.731135 -56.145544 L 108.733137 -56.705791 L 110.739056 -57.109325 L 112.741057 -57.363983 L 114.750894 -57.477599 L 116.752895 -57.465846 L 118.758814 -57.344394 L 120.760816 -57.132832 L 122.766735 -56.842914 L 124.768736 -56.502065 L 126.774655 -56.122037 L 128.776656 -55.72242 L 130.782575 -55.330639 L 132.788495 -54.958447 L 134.794414 -54.637187 L 136.796415 -54.390365 L 138.802334 -54.268912 L 140.804335 -54.319844 L 142.810254 -54.633269 L 144.816174 -55.303214 L 146.818175 -56.447215 L 148.824094 -58.143627 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip12)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -126.384055 L -47.603184 -123.590656 L -45.601182 -120.769832 L -43.595263 -117.929419 L -41.589344 -115.077253 L -39.587343 -112.217251 L -37.585342 -109.353332 L -33.573503 -103.617657 L -31.567584 -100.745901 L -29.565583 -97.878064 L -27.559664 -95.010226 L -25.557663 -92.138471 L -23.551744 -89.270634 L -21.549742 -86.406714 L -19.543823 -83.534959 L -17.537904 -80.671039 L -15.535903 -77.803202 L -13.529984 -74.939282 L -11.524065 -72.071444 L -9.522063 -69.203607 L -7.516144 -66.33577 L -5.514143 -63.47185 L -3.508224 -60.60793 L -1.502305 -57.740093 L 0.499697 -54.872255 L 4.511535 -49.13658 L 6.513536 -46.268743 L 8.515537 -43.396988 L 10.521457 -40.52915 L 12.523458 -37.657395 L 14.525459 -34.781722 L 16.535296 -31.906049 L 18.541215 -29.030376 L 20.543216 -26.146867 L 24.555055 -20.379849 L 28.559057 -14.612832 L 30.564976 -11.733241 L 32.570896 -8.873239 L 34.576815 -6.04458 L 36.578816 -3.274688 L 38.584735 -0.606659 L 40.586736 1.881151 L 42.592655 4.094714 L 44.594657 5.920414 L 46.600576 7.256388 L 48.606495 8.047785 L 50.608496 8.337703 L 52.614415 8.216251 L 54.616417 7.816635 L 56.622336 7.248552 L 58.628255 6.598195 L 60.630256 5.924332 L 62.636175 5.26614 L 64.642094 4.647126 L 66.644096 4.071207 L 68.650015 3.550139 L 70.652016 3.083919 L 72.657935 2.672549 L 74.659936 2.31211 L 76.665856 1.998686 L 78.667857 1.728357 L 80.673776 1.497206 L 82.679695 1.297397 L 84.681696 1.128932 L 86.687615 0.98789 L 88.689617 0.866438 L 90.695536 0.768493 L 92.697537 0.682301 L 94.707374 0.611781 L 96.709375 0.556931 L 98.715294 0.506 L 100.717296 0.470739 L 102.723215 0.439397 L 104.729134 0.411972 L 108.733137 0.38063 L 110.739056 0.368876 L 112.741057 0.364959 L 114.750894 0.361041 L 118.758814 0.361041 L 120.760816 0.364959 L 122.766735 0.368876 L 128.776656 0.368876 L 130.782575 0.361041 L 132.788495 0.345369 L 134.794414 0.317945 L 136.796415 0.278767 L 138.802334 0.223917 L 140.804335 0.153397 L 142.810254 0.0672049 L 144.816174 -0.0307404 L 146.818175 -0.116932 L 148.824094 -0.183535 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip13)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.000602125 L -47.603184 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -37.585342 0.00843775 L -33.573503 0.0162734 L -31.567584 0.0162734 L -29.565583 0.0201912 L -27.559664 0.0280268 L -25.557663 0.0319446 L -23.551744 0.0397802 L -21.549742 0.0476159 L -19.543823 0.0554515 L -17.537904 0.0672049 L -15.535903 0.0828762 L -13.529984 0.0985474 L -11.524065 0.118136 L -9.522063 0.145561 L -7.516144 0.172986 L -5.514143 0.208246 L -3.508224 0.251342 L -1.502305 0.298356 L 0.499697 0.357123 L 2.505616 0.427643 L 4.511535 0.513835 L 6.513536 0.611781 L 8.515537 0.729315 L 10.521457 0.86252 L 12.523458 1.023151 L 14.525459 1.207288 L 16.535296 1.41885 L 18.541215 1.661754 L 20.543216 1.936001 L 22.549136 2.24159 L 24.555055 2.574604 L 26.557056 2.935042 L 28.559057 3.311152 L 30.564976 3.695098 L 32.570896 4.071207 L 34.576815 4.408139 L 36.578816 4.67455 L 38.584735 4.835181 L 40.586736 4.839098 L 42.592655 4.63929 L 44.594657 4.180906 L 46.600576 3.44044 L 48.606495 2.394384 L 50.608496 1.054493 L 52.614415 -0.551809 L 54.616417 -2.385345 L 56.622336 -4.406935 L 58.628255 -6.565649 L 60.630256 -8.834061 L 62.636175 -11.176912 L 64.642094 -13.566777 L 66.644096 -15.987984 L 68.650015 -18.420944 L 70.652016 -20.846069 L 72.657935 -23.255523 L 74.659936 -25.633634 L 76.665856 -27.968649 L 78.667857 -30.244897 L 80.673776 -32.454542 L 82.679695 -34.589749 L 84.681696 -36.630928 L 86.687615 -38.57808 L 88.689617 -40.415534 L 90.695536 -42.131535 L 92.697537 -43.726084 L 94.707374 -45.183509 L 96.709375 -46.503812 L 98.715294 -47.683073 L 100.717296 -48.709539 L 102.723215 -49.587129 L 104.729134 -50.315841 L 106.731135 -50.89176 L 108.733137 -51.318801 L 110.739056 -51.604801 L 112.741057 -51.761514 L 114.750894 -51.792856 L 116.752895 -51.710582 L 118.758814 -51.534281 L 120.760816 -51.271787 L 122.766735 -50.946609 L 124.768736 -50.566581 L 126.774655 -50.151293 L 128.776656 -49.716416 L 130.782575 -49.269786 L 132.788495 -48.834909 L 134.794414 -48.431374 L 136.796415 -48.074854 L 138.802334 -47.800607 L 140.804335 -47.671319 L 142.810254 -47.765347 L 144.816174 -48.200224 L 146.818175 -49.120909 L 148.824094 -50.656691 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip14)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -128.484002 L -47.603184 -125.69452 L -45.601182 -122.881532 L -43.595263 -120.045037 L -41.589344 -117.200707 L -39.587343 -114.344623 L -37.585342 -111.484621 L -35.579423 -108.624619 L -33.573503 -105.760699 L -31.567584 -102.892862 L -29.565583 -100.028942 L -27.559664 -97.165022 L -25.557663 -94.297185 L -23.551744 -91.433265 L -21.549742 -88.569346 L -17.537904 -82.841506 L -15.535903 -79.977587 L -13.529984 -77.113667 L -11.524065 -74.253665 L -9.522063 -71.389745 L -7.516144 -68.529744 L -5.514143 -65.669742 L -3.508224 -62.813658 L -1.502305 -59.953656 L 0.499697 -57.097572 L 4.511535 -51.393239 L 6.513536 -48.541073 L 8.515537 -45.692825 L 10.521457 -42.848494 L 12.523458 -40.011999 L 14.525459 -37.179422 L 16.535296 -34.350763 L 18.541215 -31.537774 L 20.543216 -28.732622 L 22.549136 -25.947058 L 24.555055 -23.177166 L 26.557056 -20.438617 L 28.559057 -17.735327 L 30.564976 -15.082969 L 32.570896 -12.497214 L 34.576815 -9.997651 L 36.578816 -7.615622 L 38.584735 -5.386388 L 40.586736 -3.353044 L 42.592655 -1.554769 L 44.594657 -0.0346582 L 46.600576 1.179863 L 48.606495 2.088795 L 50.608496 2.707809 L 52.614415 3.06433 L 54.616417 3.209289 L 56.622336 3.193618 L 58.628255 3.060412 L 60.630256 2.848851 L 62.636175 2.590275 L 64.642094 2.308193 L 66.644096 2.022192 L 68.650015 1.744028 L 70.652016 1.477617 L 72.657935 1.234713 L 74.659936 1.011397 L 76.665856 0.815507 L 78.667857 0.639205 L 80.673776 0.486411 L 82.679695 0.353205 L 84.681696 0.239589 L 86.687615 0.141643 L 88.689617 0.0554515 L 90.695536 -0.0150691 L 92.697537 -0.0777541 L 94.707374 -0.128686 L 96.709375 -0.171782 L 98.715294 -0.21096 L 100.717296 -0.242302 L 104.729134 -0.297151 L 108.733137 -0.33633 L 110.739056 -0.355919 L 112.741057 -0.37159 L 114.750894 -0.387261 L 116.752895 -0.402932 L 118.758814 -0.414686 L 120.760816 -0.426439 L 122.766735 -0.434275 L 124.768736 -0.44211 L 126.774655 -0.44211 L 128.776656 -0.438193 L 130.782575 -0.422521 L 132.788495 -0.399015 L 134.794414 -0.359836 L 136.796415 -0.301069 L 138.802334 -0.222713 L 140.804335 -0.12085 L 142.810254 0.00451994 L 144.816174 0.137726 L 146.818175 0.263095 L 148.824094 0.353205 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip15)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0319446 L -25.557663 0.0358624 L -23.551744 0.043698 L -21.549742 0.0554515 L -19.543823 0.0632871 L -17.537904 0.0789583 L -15.535903 0.0946296 L -13.529984 0.114219 L -11.524065 0.137726 L -9.522063 0.16515 L -7.516144 0.196493 L -5.514143 0.235671 L -3.508224 0.286602 L -1.502305 0.341452 L 0.499697 0.408054 L 2.505616 0.490328 L 4.511535 0.588274 L 6.513536 0.70189 L 8.515537 0.839014 L 10.521457 0.995726 L 12.523458 1.183781 L 14.525459 1.403178 L 16.535296 1.657836 L 18.541215 1.95559 L 20.543216 2.292521 L 22.549136 2.680385 L 24.555055 3.115262 L 26.557056 3.597152 L 28.559057 4.129975 L 30.564976 4.701975 L 32.570896 5.305318 L 34.576815 5.920414 L 36.578816 6.512004 L 38.584735 7.033072 L 40.586736 7.405264 L 42.592655 7.534552 L 44.594657 7.311237 L 46.600576 6.645209 L 48.606495 5.481619 L 50.608496 3.843974 L 52.614415 1.810631 L 54.616417 -0.520467 L 56.622336 -3.051372 L 58.628255 -5.707648 L 60.630256 -8.434444 L 62.636175 -11.200419 L 64.642094 -13.978147 L 66.644096 -16.759792 L 68.650015 -19.525767 L 70.652016 -22.27607 L 72.657935 -25.006784 L 74.659936 -27.694402 L 76.665856 -30.354596 L 78.667857 -32.971693 L 80.673776 -35.537859 L 82.679695 -38.045258 L 84.681696 -40.486054 L 86.687615 -42.852412 L 88.689617 -45.124742 L 90.695536 -47.299127 L 92.697537 -49.363813 L 94.707374 -51.299212 L 96.709375 -53.097487 L 98.715294 -54.746885 L 100.717296 -56.235653 L 102.723215 -57.555956 L 104.729134 -58.699956 L 106.731135 -59.663738 L 108.733137 -60.455136 L 110.739056 -61.066314 L 112.741057 -61.509027 L 114.750894 -61.795027 L 116.752895 -61.939986 L 118.758814 -61.959575 L 120.760816 -61.869465 L 122.766735 -61.685328 L 124.768736 -61.434588 L 126.774655 -61.132917 L 128.776656 -60.799903 L 130.782575 -60.455136 L 132.788495 -60.12604 L 134.794414 -59.836122 L 136.796415 -59.612806 L 138.802334 -59.503108 L 140.804335 -59.557957 L 142.810254 -59.867464 L 144.816174 -60.533492 L 146.818175 -61.665739 L 148.824094 -63.358233 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip16)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -126.027534 L -47.603184 -123.269395 L -45.601182 -120.48775 L -43.595263 -117.686515 L -41.589344 -114.873527 L -39.587343 -112.052703 L -37.585342 -109.227962 L -35.579423 -106.399302 L -31.567584 -100.734148 L -29.565583 -97.897653 L -27.559664 -95.05724 L -25.557663 -92.21291 L -23.551744 -89.368579 L -21.549742 -86.520331 L -19.543823 -83.672082 L -17.537904 -80.819916 L -15.535903 -77.96775 L -13.529984 -75.115583 L -11.524065 -72.255582 L -9.522063 -69.399498 L -7.516144 -66.539496 L -5.514143 -63.683412 L -3.508224 -60.82341 L -1.502305 -57.95949 L 0.499697 -55.09557 L 2.505616 -52.235569 L 4.511535 -49.371649 L 6.513536 -46.507729 L 8.515537 -43.639892 L 10.521457 -40.775972 L 14.525459 -35.040297 L 16.535296 -32.17246 L 18.541215 -29.300704 L 20.543216 -26.432867 L 24.555055 -20.689356 L 26.557056 -17.825437 L 28.559057 -14.969353 L 30.564976 -12.117187 L 32.570896 -9.296363 L 34.576815 -6.514717 L 36.578816 -3.803592 L 38.584735 -1.206084 L 40.586736 1.207288 L 42.592655 3.346413 L 44.594657 5.117263 L 46.600576 6.425812 L 48.606495 7.236799 L 50.608496 7.581566 L 52.614415 7.546306 L 54.616417 7.232881 L 56.622336 6.747072 L 58.628255 6.171154 L 60.630256 5.563893 L 62.636175 4.956633 L 64.642094 4.376797 L 66.644096 3.840057 L 68.650015 3.346413 L 70.652016 2.907618 L 72.657935 2.511919 L 74.659936 2.167151 L 76.665856 1.86548 L 78.667857 1.606905 L 80.673776 1.383589 L 82.679695 1.191617 L 84.681696 1.030986 L 86.687615 0.889945 L 88.689617 0.776329 L 90.695536 0.678383 L 92.697537 0.596109 L 94.707374 0.529507 L 96.709375 0.470739 L 98.715294 0.427643 L 100.717296 0.388465 L 102.723215 0.357123 L 104.729134 0.333616 L 106.731135 0.314027 L 108.733137 0.298356 L 110.739056 0.286602 L 112.741057 0.278767 L 114.750894 0.274849 L 116.752895 0.270931 L 118.758814 0.270931 L 120.760816 0.274849 L 124.768736 0.274849 L 126.774655 0.278767 L 128.776656 0.274849 L 130.782575 0.270931 L 132.788495 0.259178 L 134.794414 0.243506 L 136.796415 0.216082 L 138.802334 0.176904 L 140.804335 0.125972 L 142.810254 0.0632871 L 144.816174 -0.0072335 L 146.818175 -0.0738363 L 148.824094 -0.124768 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip17)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.000602125 L -47.603184 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -37.585342 0.00843775 L -33.573503 0.0162734 L -31.567584 0.0162734 L -29.565583 0.0201912 L -27.559664 0.024109 L -25.557663 0.0319446 L -23.551744 0.0397802 L -21.549742 0.0476159 L -19.543823 0.0554515 L -17.537904 0.0672049 L -15.535903 0.0828762 L -13.529984 0.0985474 L -11.524065 0.118136 L -9.522063 0.141643 L -7.516144 0.169068 L -5.514143 0.204328 L -3.508224 0.247424 L -1.502305 0.294438 L 0.499697 0.353205 L 2.505616 0.423726 L 4.511535 0.502082 L 6.513536 0.600027 L 8.515537 0.713644 L 10.521457 0.846849 L 12.523458 1.003562 L 14.525459 1.183781 L 16.535296 1.391425 L 18.541215 1.626494 L 20.543216 1.892905 L 22.549136 2.186741 L 24.555055 2.511919 L 26.557056 2.856686 L 28.559057 3.217125 L 30.564976 3.581481 L 32.570896 3.930166 L 34.576815 4.239673 L 36.578816 4.47866 L 38.584735 4.60403 L 40.586736 4.576605 L 42.592655 4.349372 L 44.594657 3.879235 L 46.600576 3.134851 L 48.606495 2.108384 L 50.608496 0.803753 L 52.614415 -0.751618 L 54.616417 -2.522468 L 56.622336 -4.46962 L 58.628255 -6.557813 L 60.630256 -8.743951 L 62.636175 -11.004528 L 64.642094 -13.316037 L 66.644096 -15.65497 L 68.650015 -17.99782 L 70.652016 -20.332836 L 72.657935 -22.644344 L 74.659936 -24.92451 L 76.665856 -27.149826 L 78.667857 -29.316376 L 80.673776 -31.412404 L 82.679695 -33.426159 L 84.681696 -35.345886 L 86.687615 -37.171586 L 88.689617 -38.887587 L 90.695536 -40.486054 L 92.697537 -41.963069 L 94.707374 -43.314714 L 96.709375 -44.533153 L 98.715294 -45.614468 L 100.717296 -46.558661 L 102.723215 -47.357894 L 104.729134 -48.016086 L 106.731135 -48.533237 L 108.733137 -48.909347 L 110.739056 -49.152252 L 112.741057 -49.269786 L 114.750894 -49.265868 L 116.752895 -49.160087 L 118.758814 -48.960279 L 120.760816 -48.682114 L 122.766735 -48.337347 L 124.768736 -47.945566 L 126.774655 -47.518524 L 128.776656 -47.067976 L 130.782575 -46.617428 L 132.788495 -46.170798 L 134.794414 -45.751592 L 136.796415 -45.3794 L 138.802334 -45.089482 L 140.804335 -44.936687 L 142.810254 -44.999372 L 144.816174 -45.402907 L 146.818175 -46.296168 L 148.824094 -47.808442 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip18)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -128.730824 L -47.603184 -125.94526 L -45.601182 -123.128354 L -43.595263 -120.291859 L -41.589344 -117.447529 L -37.585342 -111.735361 L -31.567584 -103.143602 L -29.565583 -100.275764 L -27.559664 -97.411844 L -25.557663 -94.547925 L -23.551744 -91.680087 L -21.549742 -88.816168 L -17.537904 -83.088328 L -15.535903 -80.228326 L -13.529984 -77.364407 L -11.524065 -74.504405 L -9.522063 -71.640485 L -7.516144 -68.780483 L -5.514143 -65.924399 L -3.508224 -63.064398 L -1.502305 -60.208314 L 0.499697 -57.352229 L 4.511535 -51.647897 L 6.513536 -48.799649 L 8.515537 -45.955318 L 10.521457 -43.114905 L 12.523458 -40.282328 L 14.525459 -37.453669 L 16.535296 -34.632845 L 18.541215 -31.823775 L 20.543216 -29.030376 L 22.549136 -26.252648 L 24.555055 -23.498427 L 26.557056 -20.77163 L 28.559057 -18.091848 L 30.564976 -15.459079 L 32.570896 -12.900749 L 34.576815 -10.432528 L 36.578816 -8.085759 L 38.584735 -5.895703 L 40.586736 -3.901537 L 42.592655 -2.134605 L 44.594657 -0.638001 L 46.600576 0.568685 L 48.606495 1.485452 L 50.608496 2.120138 L 52.614415 2.515837 L 54.616417 2.703892 L 56.622336 2.731316 L 58.628255 2.645124 L 60.630256 2.480576 L 62.636175 2.261179 L 64.642094 2.018275 L 66.644096 1.763617 L 68.650015 1.512877 L 70.652016 1.273891 L 72.657935 1.050575 L 74.659936 0.846849 L 76.665856 0.66663 L 78.667857 0.502082 L 80.673776 0.361041 L 82.679695 0.235671 L 84.681696 0.12989 L 86.687615 0.0358624 L 88.689617 -0.0424938 L 90.695536 -0.109097 L 92.697537 -0.167864 L 94.707374 -0.218795 L 96.709375 -0.261891 L 98.715294 -0.297151 L 100.717296 -0.328494 L 102.723215 -0.355919 L 104.729134 -0.379426 L 106.731135 -0.402932 L 108.733137 -0.422521 L 110.739056 -0.44211 L 112.741057 -0.4617 L 114.750894 -0.477371 L 116.752895 -0.493042 L 118.758814 -0.508713 L 120.760816 -0.520467 L 122.766735 -0.53222 L 124.768736 -0.536138 L 126.774655 -0.540056 L 128.776656 -0.53222 L 130.782575 -0.516549 L 132.788495 -0.489124 L 134.794414 -0.44211 L 136.796415 -0.375508 L 138.802334 -0.28148 L 140.804335 -0.160028 L 142.810254 -0.0111513 L 144.816174 0.153397 L 146.818175 0.306191 L 148.824094 0.41589 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip19)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0280268 L -25.557663 0.0358624 L -23.551744 0.043698 L -21.549742 0.0515337 L -19.543823 0.0632871 L -17.537904 0.0789583 L -15.535903 0.0946296 L -13.529984 0.110301 L -11.524065 0.133808 L -9.522063 0.161232 L -7.516144 0.196493 L -5.514143 0.235671 L -3.508224 0.282684 L -1.502305 0.337534 L 0.499697 0.404137 L 2.505616 0.486411 L 4.511535 0.580438 L 6.513536 0.694055 L 8.515537 0.82726 L 10.521457 0.983973 L 12.523458 1.16811 L 14.525459 1.387507 L 16.535296 1.638247 L 18.541215 1.928165 L 20.543216 2.261179 L 22.549136 2.637289 L 24.555055 3.06433 L 26.557056 3.538385 L 28.559057 4.055536 L 30.564976 4.611865 L 32.570896 5.191701 L 34.576815 5.779373 L 36.578816 6.33962 L 38.584735 6.821511 L 40.586736 7.154525 L 42.592655 7.248552 L 44.594657 7.00173 L 46.600576 6.323949 L 48.606495 5.17603 L 50.608496 3.569728 L 52.614415 1.57948 L 54.616417 -0.708522 L 56.622336 -3.196331 L 58.628255 -5.821265 L 60.630256 -8.524554 L 62.636175 -11.270939 L 64.642094 -14.044749 L 66.644096 -16.822477 L 68.650015 -19.596287 L 70.652016 -22.358344 L 72.657935 -25.108647 L 74.659936 -27.831525 L 76.665856 -30.526979 L 78.667857 -33.191091 L 80.673776 -35.812106 L 82.679695 -38.390025 L 84.681696 -40.913096 L 86.687615 -43.369563 L 88.689617 -45.751592 L 90.695536 -48.051347 L 92.697537 -50.253156 L 94.707374 -52.345267 L 96.709375 -54.312008 L 98.715294 -56.145544 L 100.717296 -57.83412 L 102.723215 -59.358149 L 104.729134 -60.721547 L 106.731135 -61.900808 L 108.733137 -62.907685 L 110.739056 -63.734343 L 112.741057 -64.388618 L 114.750894 -64.874426 L 116.752895 -65.203522 L 118.758814 -65.395495 L 120.760816 -65.45818 L 122.766735 -65.419002 L 124.768736 -65.293632 L 126.774655 -65.101659 L 128.776656 -64.866591 L 130.782575 -64.604097 L 132.788495 -64.345522 L 134.794414 -64.110453 L 136.796415 -63.934152 L 138.802334 -63.859713 L 140.804335 -63.941987 L 142.810254 -64.267165 L 144.816174 -64.941029 L 146.818175 -66.081112 L 148.824094 -67.78536 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip20)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -126.736658 L -47.603184 -123.947177 L -45.601182 -121.134189 L -43.595263 -118.297694 L -41.589344 -115.449445 L -39.587343 -112.597279 L -37.585342 -109.741195 L -35.579423 -106.873357 L -31.567584 -101.145518 L -29.565583 -98.277681 L -27.559664 -95.413761 L -25.557663 -92.545923 L -23.551744 -89.682004 L -21.549742 -86.814166 L -17.537904 -81.086327 L -15.535903 -78.222407 L -13.529984 -75.358488 L -11.524065 -72.49065 L -9.522063 -69.626731 L -7.516144 -66.762811 L -5.514143 -63.898891 L -3.508224 -61.034972 L -1.502305 -58.167134 L 0.499697 -55.303214 L 4.511535 -49.575375 L 6.513536 -46.707538 L 8.515537 -43.843618 L 10.521457 -40.979698 L 14.525459 -35.244023 L 16.535296 -32.380104 L 18.541215 -29.516184 L 20.543216 -26.648347 L 22.549136 -23.784427 L 24.555055 -20.924425 L 26.557056 -18.068341 L 28.559057 -15.22401 L 30.564976 -12.395351 L 32.570896 -9.590199 L 34.576815 -6.835978 L 36.578816 -4.156195 L 38.584735 -1.593947 L 40.586736 0.780246 L 42.592655 2.888029 L 44.594657 4.635372 L 46.600576 5.940003 L 48.606495 6.770579 L 50.608496 7.150607 L 52.614415 7.158442 L 54.616417 6.899867 L 56.622336 6.461072 L 58.628255 5.92825 L 60.630256 5.356249 L 62.636175 4.780331 L 64.642094 4.224002 L 66.644096 3.706851 L 68.650015 3.228878 L 70.652016 2.801837 L 72.657935 2.417891 L 74.659936 2.08096 L 76.665856 1.791042 L 78.667857 1.536384 L 80.673776 1.316987 L 82.679695 1.128932 L 84.681696 0.968301 L 86.687615 0.835096 L 88.689617 0.721479 L 90.695536 0.623534 L 92.697537 0.545178 L 94.707374 0.478575 L 96.709375 0.419808 L 98.715294 0.376712 L 100.717296 0.337534 L 102.723215 0.306191 L 104.729134 0.282684 L 106.731135 0.263095 L 108.733137 0.247424 L 110.739056 0.235671 L 112.741057 0.227835 L 114.750894 0.22 L 116.752895 0.216082 L 122.766735 0.216082 L 124.768736 0.22 L 128.776656 0.22 L 130.782575 0.216082 L 132.788495 0.208246 L 134.794414 0.196493 L 136.796415 0.176904 L 138.802334 0.145561 L 140.804335 0.110301 L 144.816174 0.00843775 L 146.818175 -0.0424938 L 148.824094 -0.0855897 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip21)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0280268 L -25.557663 0.0358624 L -23.551744 0.043698 L -21.549742 0.0515337 L -17.537904 0.0750405 L -15.535903 0.0907118 L -11.524065 0.12989 L -9.522063 0.157315 L -7.516144 0.188657 L -5.514143 0.227835 L -3.508224 0.274849 L -1.502305 0.329698 L 0.499697 0.392383 L 2.505616 0.470739 L 4.511535 0.564767 L 6.513536 0.674466 L 8.515537 0.803753 L 10.521457 0.956548 L 12.523458 1.136767 L 14.525459 1.344411 L 16.535296 1.587315 L 18.541215 1.86548 L 20.543216 2.182823 L 22.549136 2.547179 L 24.555055 2.946796 L 26.557056 3.393426 L 28.559057 3.879235 L 30.564976 4.392468 L 32.570896 4.921372 L 34.576815 5.446359 L 36.578816 5.932168 L 38.584735 6.327866 L 40.586736 6.570771 L 42.592655 6.582524 L 44.594657 6.273017 L 46.600576 5.575647 L 48.606495 4.451235 L 50.608496 2.915453 L 52.614415 1.019233 L 54.616417 -1.162988 L 56.622336 -3.55677 L 58.628255 -6.087676 L 60.630256 -8.716527 L 62.636175 -11.408063 L 64.642094 -14.138777 L 66.644096 -16.88908 L 68.650015 -19.647219 L 70.652016 -22.409275 L 72.657935 -25.167414 L 74.659936 -27.913799 L 76.665856 -30.644514 L 78.667857 -33.359556 L 80.673776 -36.047175 L 82.679695 -38.707368 L 84.681696 -41.332301 L 86.687615 -43.914139 L 88.689617 -46.448962 L 90.695536 -48.925019 L 92.697537 -51.33839 L 94.707374 -53.677323 L 96.709375 -55.933982 L 98.715294 -58.100531 L 100.717296 -60.169135 L 102.723215 -62.135876 L 104.729134 -63.985083 L 106.731135 -65.720673 L 108.733137 -67.338729 L 110.739056 -68.843168 L 112.741057 -70.230073 L 114.750894 -71.511198 L 116.752895 -72.686541 L 118.758814 -73.775692 L 120.760816 -74.78257 L 122.766735 -75.722844 L 124.768736 -76.604352 L 126.774655 -77.442763 L 128.776656 -78.249832 L 132.788495 -79.816956 L 134.794414 -80.608354 L 136.796415 -81.431094 L 138.802334 -82.324355 L 140.804335 -83.331233 L 142.810254 -84.537918 L 144.816174 -86.046275 L 146.818175 -87.966003 L 148.824094 -90.402881 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip22)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -127.614248 L -47.603184 -124.777753 L -45.601182 -121.913833 L -43.595263 -119.034242 L -41.589344 -116.146815 L -39.587343 -113.255471 L -37.585342 -110.360209 L -35.579423 -107.464947 L -33.573503 -104.573602 L -31.567584 -101.686176 L -29.565583 -98.802667 L -27.559664 -95.919159 L -25.557663 -93.03565 L -23.551744 -90.156059 L -21.549742 -87.280386 L -19.543823 -84.404713 L -17.537904 -81.532957 L -15.535903 -78.66512 L -13.529984 -75.793365 L -11.524065 -72.925527 L -9.522063 -70.05769 L -7.516144 -67.189852 L -5.514143 -64.322015 L -1.502305 -58.594175 L 0.499697 -55.730256 L 4.511535 -50.002417 L 6.513536 -47.138497 L 8.515537 -44.278495 L 10.521457 -41.414575 L 14.525459 -35.694572 L 16.535296 -32.838488 L 18.541215 -29.982404 L 20.543216 -27.134155 L 22.549136 -24.285907 L 24.555055 -21.445494 L 26.557056 -18.616835 L 28.559057 -15.803846 L 30.564976 -13.014365 L 32.570896 -10.264062 L 34.576815 -7.568608 L 36.578816 -4.963264 L 38.584735 -2.48329 L 40.586736 -0.195288 L 42.592655 1.83022 L 44.594657 3.518796 L 46.600576 4.803838 L 48.606495 5.665756 L 50.608496 6.116305 L 52.614415 6.229921 L 54.616417 6.077127 L 56.622336 5.751948 L 58.628255 5.317071 L 60.630256 4.831263 L 62.636175 4.325865 L 64.642094 3.832221 L 66.644096 3.366002 L 68.650015 2.931125 L 70.652016 2.535426 L 72.657935 2.178905 L 74.659936 1.86548 L 76.665856 1.591233 L 78.667857 1.352247 L 80.673776 1.148521 L 82.679695 0.968301 L 84.681696 0.819425 L 86.687615 0.690137 L 88.689617 0.584356 L 90.695536 0.490328 L 92.697537 0.41589 L 94.707374 0.349287 L 96.709375 0.294438 L 98.715294 0.251342 L 100.717296 0.216082 L 102.723215 0.184739 L 104.729134 0.161232 L 106.731135 0.137726 L 108.733137 0.122054 L 110.739056 0.110301 L 112.741057 0.0985474 L 114.750894 0.0907118 L 116.752895 0.086794 L 118.758814 0.0828762 L 120.760816 0.0789583 L 136.796415 0.0789583 L 138.802334 0.0711227 L 140.804335 0.0632871 L 142.810254 0.0554515 L 144.816174 0.0397802 L 146.818175 0.024109 L 148.824094 0.00843775 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip23)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -45.601182 0.00451994 L -43.595263 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0162734 L -33.573503 0.0162734 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0319446 L -25.557663 0.0397802 L -23.551744 0.0476159 L -21.549742 0.0554515 L -19.543823 0.0672049 L -17.537904 0.0828762 L -15.535903 0.0985474 L -13.529984 0.118136 L -11.524065 0.145561 L -9.522063 0.172986 L -7.516144 0.208246 L -5.514143 0.251342 L -3.508224 0.302274 L -1.502305 0.361041 L 0.499697 0.431561 L 2.505616 0.517753 L 4.511535 0.623534 L 6.513536 0.744986 L 8.515537 0.886027 L 10.521457 1.058411 L 12.523458 1.258219 L 14.525459 1.497206 L 16.535296 1.771453 L 18.541215 2.088795 L 20.543216 2.460987 L 22.549136 2.884111 L 24.555055 3.369919 L 26.557056 3.914495 L 28.559057 4.525674 L 30.564976 5.199537 L 32.570896 5.92825 L 34.576815 6.703976 L 36.578816 7.487538 L 38.584735 8.239758 L 40.586736 8.866608 L 42.592655 9.250553 L 44.594657 9.223129 L 46.600576 8.631539 L 48.606495 7.405264 L 50.608496 5.5874 L 52.614415 3.307234 L 54.616417 0.733233 L 56.622336 -2.005317 L 58.628255 -4.818305 L 60.630256 -7.646964 L 62.636175 -10.456035 L 64.642094 -13.229845 L 66.644096 -15.956641 L 68.650015 -18.62467 L 70.652016 -21.230014 L 72.657935 -23.768756 L 74.659936 -26.233059 L 76.665856 -28.61117 L 78.667857 -30.907007 L 80.673776 -33.104899 L 82.679695 -35.204845 L 84.681696 -37.199011 L 86.687615 -39.07956 L 88.689617 -40.838657 L 90.695536 -42.476302 L 92.697537 -43.984659 L 94.707374 -45.355893 L 96.709375 -46.593921 L 98.715294 -47.68699 L 100.717296 -48.639018 L 102.723215 -49.44217 L 104.729134 -50.100362 L 106.731135 -50.609677 L 108.733137 -50.981869 L 110.739056 -51.21302 L 112.741057 -51.314883 L 114.750894 -51.295294 L 116.752895 -51.169924 L 118.758814 -50.950527 L 120.760816 -50.652773 L 122.766735 -50.292335 L 124.768736 -49.892718 L 126.774655 -49.457841 L 128.776656 -49.022964 L 130.782575 -48.59984 L 132.788495 -48.208059 L 134.794414 -47.875045 L 136.796415 -47.636059 L 138.802334 -47.52636 L 140.804335 -47.604716 L 142.810254 -47.949484 L 144.816174 -48.658607 L 146.818175 -49.837868 L 148.824094 -51.557787 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip24)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -125.765041 L -47.603184 -122.979477 L -45.601182 -120.162571 L -43.595263 -117.326076 L -41.589344 -114.481746 L -39.587343 -111.625662 L -37.585342 -108.76566 L -31.567584 -100.173901 L -29.565583 -97.306064 L -27.559664 -94.442144 L -25.557663 -91.574306 L -23.551744 -88.710387 L -21.549742 -85.842549 L -19.543823 -82.974712 L -17.537904 -80.110792 L -15.535903 -77.242955 L -13.529984 -74.382953 L -11.524065 -71.511198 L -9.522063 -68.64336 L -7.516144 -65.77944 L -5.514143 -62.911603 L -1.502305 -57.175928 L 0.499697 -54.308091 L 4.511535 -48.56458 L 6.513536 -45.692825 L 8.515537 -42.817152 L 10.521457 -39.941479 L 14.525459 -34.174461 L 16.535296 -31.287035 L 18.541215 -28.39569 L 20.543216 -25.49651 L 22.549136 -22.585577 L 24.555055 -19.670726 L 26.557056 -16.748039 L 28.559057 -13.813599 L 30.564976 -10.875241 L 32.570896 -7.932965 L 34.576815 -5.002442 L 36.578816 -2.103262 L 38.584735 0.709726 L 40.586736 3.366002 L 42.592655 5.736277 L 44.594657 7.679511 L 46.600576 9.042909 L 48.606495 9.755951 L 50.608496 9.881321 L 52.614415 9.552225 L 54.616417 8.941046 L 56.622336 8.184909 L 58.628255 7.373922 L 60.630256 6.574689 L 62.636175 5.810715 L 64.642094 5.109427 L 66.644096 4.466906 L 68.650015 3.898824 L 70.652016 3.389508 L 72.657935 2.946796 L 74.659936 2.558933 L 76.665856 2.225919 L 78.667857 1.936001 L 80.673776 1.693096 L 82.679695 1.481535 L 84.681696 1.305233 L 86.687615 1.156356 L 88.689617 1.030986 L 90.695536 0.925205 L 92.697537 0.839014 L 94.707374 0.768493 L 96.709375 0.709726 L 98.715294 0.658794 L 100.717296 0.619616 L 102.723215 0.588274 L 104.729134 0.564767 L 106.731135 0.549096 L 108.733137 0.537342 L 110.739056 0.529507 L 112.741057 0.525589 L 116.752895 0.525589 L 118.758814 0.529507 L 120.760816 0.537342 L 122.766735 0.54126 L 124.768736 0.545178 L 126.774655 0.545178 L 128.776656 0.54126 L 130.782575 0.529507 L 132.788495 0.502082 L 134.794414 0.458986 L 136.796415 0.396301 L 138.802334 0.310109 L 140.804335 0.20041 L 142.810254 0.0672049 L 144.816174 -0.0738363 L 146.818175 -0.207042 L 148.824094 -0.301069 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip25)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0280268 L -25.557663 0.0358624 L -23.551744 0.043698 L -21.549742 0.0515337 L -17.537904 0.0750405 L -15.535903 0.0946296 L -13.529984 0.110301 L -11.524065 0.133808 L -9.522063 0.161232 L -7.516144 0.196493 L -5.514143 0.235671 L -3.508224 0.282684 L -1.502305 0.341452 L 0.499697 0.408054 L 2.505616 0.490328 L 4.511535 0.584356 L 6.513536 0.697972 L 8.515537 0.835096 L 10.521457 0.995726 L 12.523458 1.179863 L 14.525459 1.399261 L 16.535296 1.657836 L 18.541215 1.951672 L 20.543216 2.288604 L 22.549136 2.672549 L 24.555055 3.111344 L 26.557056 3.593235 L 28.559057 4.126057 L 30.564976 4.698057 L 32.570896 5.305318 L 34.576815 5.924332 L 36.578816 6.519839 L 38.584735 7.044826 L 40.586736 7.428771 L 42.592655 7.57373 L 44.594657 7.370004 L 46.600576 6.719648 L 48.606495 5.571729 L 50.608496 3.945838 L 52.614415 1.920329 L 54.616417 -0.40685 L 56.622336 -2.937756 L 58.628255 -5.597949 L 60.630256 -8.328664 L 62.636175 -11.098556 L 64.642094 -13.884119 L 66.644096 -16.665765 L 68.650015 -19.435657 L 70.652016 -22.189878 L 72.657935 -24.920592 L 74.659936 -27.619964 L 76.665856 -30.284075 L 78.667857 -32.90509 L 80.673776 -35.475174 L 82.679695 -37.990409 L 84.681696 -40.435123 L 86.687615 -42.805398 L 88.689617 -45.085564 L 90.695536 -47.271702 L 92.697537 -49.340306 L 94.707374 -51.291376 L 96.709375 -53.097487 L 98.715294 -54.758639 L 100.717296 -56.255242 L 102.723215 -57.587298 L 104.729134 -58.743052 L 106.731135 -59.718587 L 108.733137 -60.517821 L 110.739056 -61.140752 L 112.741057 -61.595219 L 114.750894 -61.889054 L 116.752895 -62.041849 L 118.758814 -62.069274 L 120.760816 -61.983082 L 122.766735 -61.80678 L 124.768736 -61.559958 L 126.774655 -61.262205 L 128.776656 -60.933109 L 130.782575 -60.596177 L 132.788495 -60.270998 L 134.794414 -59.981081 L 136.796415 -59.757765 L 138.802334 -59.648067 L 140.804335 -59.706834 L 142.810254 -60.016341 L 144.816174 -60.682369 L 146.818175 -61.814616 L 148.824094 -63.50711 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip26)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -127.52022 L -47.603184 -124.707232 L -45.601182 -121.862901 L -43.595263 -118.991146 L -41.589344 -116.107637 L -39.587343 -113.216293 L -37.585342 -110.313195 L -33.573503 -104.491328 L -31.567584 -101.576477 L -29.565583 -98.665544 L -27.559664 -95.750693 L -25.557663 -92.835841 L -23.551744 -89.924908 L -21.549742 -87.02181 L -19.543823 -84.114795 L -17.537904 -81.215615 L -15.535903 -78.320353 L -13.529984 -75.429008 L -11.524065 -72.533746 L -9.522063 -69.650237 L -7.516144 -66.766729 L -5.514143 -63.88322 L -3.508224 -61.007547 L -1.502305 -58.127956 L 0.499697 -55.252283 L 2.505616 -52.380528 L 4.511535 -49.504855 L 8.515537 -43.761344 L 10.521457 -40.889589 L 14.525459 -35.146078 L 16.535296 -32.274323 L 18.541215 -29.402568 L 20.543216 -26.530812 L 24.555055 -20.787302 L 26.557056 -17.919464 L 28.559057 -15.059462 L 30.564976 -12.211214 L 32.570896 -9.386472 L 34.576815 -6.600909 L 36.578816 -3.881948 L 38.584735 -1.280522 L 40.586736 1.144603 L 42.592655 3.303317 L 44.594657 5.08592 L 46.600576 6.414058 L 48.606495 7.244634 L 50.608496 7.601155 L 52.614415 7.569812 L 54.616417 7.260305 L 56.622336 6.778415 L 58.628255 6.202497 L 60.630256 5.5874 L 62.636175 4.98014 L 64.642094 4.396386 L 66.644096 3.855728 L 68.650015 3.362084 L 70.652016 2.915453 L 72.657935 2.519754 L 74.659936 2.174987 L 76.665856 1.873316 L 78.667857 1.610822 L 80.673776 1.387507 L 82.679695 1.195534 L 84.681696 1.030986 L 86.687615 0.893863 L 88.689617 0.776329 L 90.695536 0.678383 L 92.697537 0.596109 L 94.707374 0.529507 L 96.709375 0.470739 L 98.715294 0.423726 L 100.717296 0.384548 L 104.729134 0.329698 L 106.731135 0.310109 L 108.733137 0.294438 L 110.739056 0.286602 L 112.741057 0.278767 L 114.750894 0.274849 L 116.752895 0.270931 L 120.760816 0.270931 L 122.766735 0.274849 L 128.776656 0.274849 L 132.788495 0.259178 L 134.794414 0.239589 L 136.796415 0.216082 L 138.802334 0.176904 L 140.804335 0.125972 L 142.810254 0.0632871 L 144.816174 -0.0072335 L 146.818175 -0.0699185 L 148.824094 -0.12085 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip27)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0319446 L -25.557663 0.0358624 L -23.551744 0.043698 L -21.549742 0.0554515 L -19.543823 0.0632871 L -17.537904 0.0789583 L -15.535903 0.0946296 L -13.529984 0.114219 L -11.524065 0.137726 L -9.522063 0.16515 L -7.516144 0.20041 L -5.514143 0.243506 L -3.508224 0.29052 L -1.502305 0.353205 L 0.499697 0.423726 L 2.505616 0.506 L 4.511535 0.607863 L 6.513536 0.725397 L 8.515537 0.866438 L 10.521457 1.034904 L 12.523458 1.230795 L 14.525459 1.461946 L 16.535296 1.732274 L 18.541215 2.045699 L 20.543216 2.40222 L 22.549136 2.817508 L 24.555055 3.283728 L 26.557056 3.812632 L 28.559057 4.400304 L 30.564976 5.046742 L 32.570896 5.740195 L 34.576815 6.468908 L 36.578816 7.201538 L 38.584735 7.891073 L 40.586736 8.455238 L 42.592655 8.780416 L 44.594657 8.725567 L 46.600576 8.145731 L 48.606495 6.974305 L 50.608496 5.238715 L 52.614415 3.052577 L 54.616417 0.560849 L 56.622336 -2.118933 L 58.628255 -4.892744 L 60.630256 -7.701814 L 62.636175 -10.506966 L 64.642094 -13.296448 L 66.644096 -16.050669 L 68.650015 -18.757876 L 70.652016 -21.418069 L 72.657935 -24.019496 L 74.659936 -26.558237 L 76.665856 -29.026458 L 78.667857 -31.416322 L 80.673776 -33.719995 L 82.679695 -35.933558 L 84.681696 -38.045258 L 86.687615 -40.047259 L 88.689617 -41.927809 L 90.695536 -43.686906 L 92.697537 -45.312797 L 94.707374 -46.801565 L 96.709375 -48.145374 L 98.715294 -49.336389 L 100.717296 -50.378526 L 102.723215 -51.263952 L 104.729134 -51.996582 L 106.731135 -52.5725 L 108.733137 -52.999542 L 110.739056 -53.281624 L 112.741057 -53.426583 L 114.750894 -53.446172 L 116.752895 -53.352145 L 118.758814 -53.160172 L 120.760816 -52.885925 L 122.766735 -52.545076 L 124.768736 -52.157212 L 126.774655 -51.741924 L 128.776656 -51.314883 L 130.782575 -50.899595 L 132.788495 -50.511732 L 134.794414 -50.182636 L 136.796415 -49.935814 L 138.802334 -49.818279 L 140.804335 -49.884882 L 142.810254 -50.213978 L 144.816174 -50.911349 L 146.818175 -52.071021 L 148.824094 -53.783104 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip28)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -127.136275 L -47.603184 -124.331122 L -45.601182 -121.502463 L -43.595263 -118.646379 L -41.589344 -115.774623 L -39.587343 -112.895033 L -37.585342 -110.007606 L -33.573503 -104.209246 L -31.567584 -101.302231 L -29.565583 -98.395215 L -27.559664 -95.480364 L -25.557663 -92.565513 L -23.551744 -89.650661 L -21.549742 -86.731892 L -19.543823 -83.813123 L -17.537904 -80.898272 L -15.535903 -77.983421 L -11.524065 -72.161554 L -9.522063 -69.254539 L -7.516144 -66.355359 L -5.514143 -63.456179 L -1.502305 -57.665654 L 0.499697 -54.778228 L 4.511535 -49.003375 L 6.513536 -46.115948 L 8.515537 -43.23244 L 10.521457 -40.348931 L 14.525459 -34.574078 L 16.535296 -31.686651 L 18.541215 -28.795307 L 20.543216 -25.903963 L 24.555055 -20.097767 L 26.557056 -17.186834 L 28.559057 -14.271982 L 30.564976 -11.357131 L 32.570896 -8.450116 L 34.576815 -5.558771 L 36.578816 -2.710523 L 38.584735 0.0476159 L 40.586736 2.645124 L 42.592655 4.968386 L 44.594657 6.888113 L 46.600576 8.271101 L 48.606495 9.054663 L 50.608496 9.27406 L 52.614415 9.050745 L 54.616417 8.537512 L 56.622336 7.863648 L 58.628255 7.115346 L 60.630256 6.363127 L 62.636175 5.638332 L 64.642094 4.964468 L 66.644096 4.345454 L 68.650015 3.793043 L 70.652016 3.295481 L 72.657935 2.860604 L 74.659936 2.480576 L 76.665856 2.155398 L 78.667857 1.869398 L 80.673776 1.626494 L 82.679695 1.422767 L 84.681696 1.246466 L 86.687615 1.097589 L 88.689617 0.972219 L 90.695536 0.870356 L 92.697537 0.784164 L 94.707374 0.709726 L 96.709375 0.650959 L 98.715294 0.603945 L 100.717296 0.564767 L 102.723215 0.533424 L 104.729134 0.509918 L 106.731135 0.490328 L 108.733137 0.474657 L 110.739056 0.466822 L 112.741057 0.462904 L 116.752895 0.462904 L 118.758814 0.466822 L 120.760816 0.470739 L 122.766735 0.474657 L 124.768736 0.478575 L 126.774655 0.478575 L 128.776656 0.474657 L 130.782575 0.462904 L 132.788495 0.443315 L 134.794414 0.404137 L 136.796415 0.353205 L 138.802334 0.278767 L 140.804335 0.184739 L 142.810254 0.0672049 L 144.816174 -0.0542472 L 146.818175 -0.171782 L 148.824094 -0.257973 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip29)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.000602125 L -47.603184 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -37.585342 0.00843775 L -33.573503 0.0162734 L -31.567584 0.0162734 L -29.565583 0.0201912 L -27.559664 0.0280268 L -25.557663 0.0319446 L -23.551744 0.0397802 L -21.549742 0.0476159 L -19.543823 0.0554515 L -17.537904 0.0672049 L -15.535903 0.0828762 L -13.529984 0.0985474 L -11.524065 0.118136 L -9.522063 0.145561 L -7.516144 0.172986 L -5.514143 0.208246 L -3.508224 0.247424 L -1.502305 0.298356 L 0.499697 0.357123 L 2.505616 0.427643 L 4.511535 0.509918 L 6.513536 0.611781 L 8.515537 0.725397 L 10.521457 0.86252 L 12.523458 1.019233 L 14.525459 1.20337 L 16.535296 1.414932 L 18.541215 1.657836 L 20.543216 1.932083 L 22.549136 2.233754 L 24.555055 2.566768 L 26.557056 2.927207 L 28.559057 3.307234 L 30.564976 3.687262 L 32.570896 4.059454 L 34.576815 4.396386 L 36.578816 4.666715 L 38.584735 4.831263 L 40.586736 4.835181 L 42.592655 4.63929 L 44.594657 4.19266 L 46.600576 3.456111 L 48.606495 2.417891 L 50.608496 1.089754 L 52.614415 -0.512631 L 54.616417 -2.338331 L 56.622336 -4.356003 L 58.628255 -6.510799 L 60.630256 -8.775294 L 62.636175 -11.118145 L 64.642094 -13.511927 L 66.644096 -15.933134 L 68.650015 -18.366095 L 70.652016 -20.795137 L 72.657935 -23.208509 L 74.659936 -25.590538 L 76.665856 -27.929471 L 78.667857 -30.213554 L 80.673776 -32.427117 L 82.679695 -34.566242 L 84.681696 -36.619175 L 86.687615 -38.570245 L 88.689617 -40.415534 L 90.695536 -42.143288 L 92.697537 -43.741755 L 94.707374 -45.210934 L 96.709375 -46.539072 L 98.715294 -47.722251 L 100.717296 -48.756553 L 102.723215 -49.641978 L 104.729134 -50.370691 L 106.731135 -50.954445 L 108.733137 -51.385404 L 110.739056 -51.675322 L 112.741057 -51.835952 L 114.750894 -51.867294 L 116.752895 -51.788938 L 118.758814 -51.612637 L 120.760816 -51.354061 L 122.766735 -51.028883 L 124.768736 -50.652773 L 126.774655 -50.233567 L 128.776656 -49.802608 L 130.782575 -49.355978 L 132.788495 -48.925019 L 134.794414 -48.517566 L 136.796415 -48.161045 L 138.802334 -47.890717 L 140.804335 -47.761429 L 142.810254 -47.855456 L 144.816174 -48.290333 L 146.818175 -49.214937 L 148.824094 -50.754636 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip30)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -128.515344 L -47.603184 -125.725863 L -45.601182 -122.912875 L -43.595263 -120.07638 L -41.589344 -117.228131 L -39.587343 -114.375965 L -37.585342 -111.515963 L -31.567584 -102.924204 L -29.565583 -100.060285 L -27.559664 -97.196365 L -25.557663 -94.328527 L -23.551744 -91.464608 L -21.549742 -88.600688 L -19.543823 -85.736768 L -17.537904 -82.868931 L -15.535903 -80.008929 L -11.524065 -74.28109 L -9.522063 -71.421088 L -7.516144 -68.561086 L -5.514143 -65.701084 L -3.508224 -62.845 L -1.502305 -59.984998 L 0.499697 -57.128914 L 2.505616 -54.276748 L 4.511535 -51.420664 L 8.515537 -45.724167 L 10.521457 -42.883754 L 12.523458 -40.043342 L 14.525459 -37.210764 L 16.535296 -34.386023 L 18.541215 -31.573035 L 20.543216 -28.767882 L 22.549136 -25.982319 L 24.555055 -23.216344 L 26.557056 -20.477795 L 28.559057 -17.778423 L 30.564976 -15.126065 L 32.570896 -12.54031 L 34.576815 -10.040747 L 36.578816 -7.658718 L 38.584735 -5.429484 L 40.586736 -3.392222 L 42.592655 -1.593947 L 44.594657 -0.0660007 L 46.600576 1.160274 L 48.606495 2.077042 L 50.608496 2.699974 L 52.614415 3.06433 L 54.616417 3.217125 L 56.622336 3.205371 L 58.628255 3.072166 L 60.630256 2.864522 L 62.636175 2.605946 L 64.642094 2.323864 L 66.644096 2.037864 L 68.650015 1.755781 L 70.652016 1.48937 L 72.657935 1.246466 L 74.659936 1.023151 L 76.665856 0.823342 L 78.667857 0.647041 L 80.673776 0.494246 L 82.679695 0.361041 L 84.681696 0.247424 L 86.687615 0.145561 L 88.689617 0.0632871 L 90.695536 -0.0111513 L 92.697537 -0.0699185 L 94.707374 -0.124768 L 96.709375 -0.167864 L 98.715294 -0.207042 L 100.717296 -0.238384 L 102.723215 -0.269727 L 104.729134 -0.293234 L 106.731135 -0.316741 L 108.733137 -0.33633 L 110.739056 -0.352001 L 112.741057 -0.37159 L 114.750894 -0.383343 L 116.752895 -0.399015 L 118.758814 -0.410768 L 120.760816 -0.422521 L 122.766735 -0.434275 L 124.768736 -0.438193 L 126.774655 -0.438193 L 128.776656 -0.434275 L 130.782575 -0.418604 L 132.788495 -0.395097 L 134.794414 -0.355919 L 136.796415 -0.301069 L 138.802334 -0.218795 L 140.804335 -0.12085 L 142.810254 0.00451994 L 144.816174 0.137726 L 146.818175 0.263095 L 148.824094 0.349287 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip31)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.000602125 L -47.603184 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -37.585342 0.00843775 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0280268 L -25.557663 0.0319446 L -23.551744 0.0397802 L -21.549742 0.0476159 L -17.537904 0.0711227 L -15.535903 0.0828762 L -11.524065 0.122054 L -9.522063 0.149479 L -7.516144 0.176904 L -5.514143 0.212164 L -3.508224 0.25526 L -1.502305 0.306191 L 0.499697 0.368876 L 2.505616 0.439397 L 4.511535 0.525589 L 6.513536 0.627452 L 8.515537 0.748904 L 10.521457 0.889945 L 12.523458 1.054493 L 14.525459 1.246466 L 16.535296 1.465863 L 18.541215 1.716603 L 20.543216 2.002603 L 22.549136 2.323864 L 24.555055 2.676467 L 26.557056 3.056495 L 28.559057 3.463947 L 30.564976 3.883153 L 32.570896 4.294523 L 34.576815 4.678468 L 36.578816 5.003646 L 38.584735 5.223044 L 40.586736 5.281811 L 42.592655 5.129016 L 44.594657 4.705893 L 46.600576 3.969344 L 48.606495 2.899782 L 50.608496 1.508959 L 52.614415 -0.175699 L 54.616417 -2.10718 L 56.622336 -4.234551 L 58.628255 -6.506882 L 60.630256 -8.88891 L 62.636175 -11.345378 L 64.642094 -13.856695 L 66.644096 -16.403271 L 68.650015 -18.961602 L 70.652016 -21.519932 L 72.657935 -24.074345 L 74.659936 -26.605251 L 76.665856 -29.104814 L 78.667857 -31.565199 L 80.673776 -33.970735 L 82.679695 -36.313586 L 84.681696 -38.581998 L 86.687615 -40.768137 L 88.689617 -42.848494 L 90.695536 -44.823071 L 92.697537 -46.672277 L 94.707374 -48.388278 L 96.709375 -49.963238 L 98.715294 -51.377568 L 100.717296 -52.639103 L 102.723215 -53.728255 L 104.729134 -54.652858 L 106.731135 -55.408995 L 108.733137 -56.000585 L 110.739056 -56.431544 L 112.741057 -56.709709 L 114.750894 -56.85075 L 116.752895 -56.866421 L 118.758814 -56.768476 L 120.760816 -56.580421 L 122.766735 -56.310092 L 124.768736 -55.980996 L 126.774655 -55.608804 L 128.776656 -55.213105 L 130.782575 -54.805652 L 132.788495 -54.402118 L 134.794414 -54.029926 L 136.796415 -53.708665 L 138.802334 -53.477515 L 140.804335 -53.391323 L 142.810254 -53.536282 L 144.816174 -54.026008 L 146.818175 -54.993707 L 148.824094 -56.572585 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip32)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -128.100056 L -47.603184 -125.310575 L -45.601182 -122.497587 L -43.595263 -119.661092 L -41.589344 -116.812843 L -39.587343 -113.960677 L -37.585342 -111.104593 L -35.579423 -108.240673 L -33.573503 -105.372836 L -31.567584 -102.508916 L -29.565583 -99.644997 L -27.559664 -96.781077 L -25.557663 -93.913239 L -23.551744 -91.04932 L -21.549742 -88.181482 L -19.543823 -85.32148 L -17.537904 -82.453643 L -15.535903 -79.593641 L -11.524065 -73.865802 L -9.522063 -71.001882 L -7.516144 -68.14188 L -5.514143 -65.281878 L -1.502305 -59.561875 L 0.499697 -56.701873 L 2.505616 -53.845789 L 4.511535 -50.993623 L 6.513536 -48.137539 L 8.515537 -45.285372 L 10.521457 -42.437124 L 12.523458 -39.592793 L 14.525459 -36.752381 L 16.535296 -33.919803 L 18.541215 -31.091144 L 20.543216 -28.274238 L 22.549136 -25.473003 L 24.555055 -22.683522 L 26.557056 -19.921466 L 28.559057 -17.186834 L 30.564976 -14.499215 L 32.570896 -11.866447 L 34.576815 -9.315952 L 36.578816 -6.875156 L 38.584735 -4.587154 L 40.586736 -2.487208 L 42.592655 -0.634083 L 44.594657 0.929123 L 46.600576 2.163234 L 48.606495 3.06433 L 50.608496 3.644166 L 52.614415 3.945838 L 54.616417 4.024194 L 56.622336 3.930166 L 58.628255 3.718605 L 60.630256 3.432604 L 62.636175 3.107426 L 64.642094 2.766577 L 66.644096 2.429645 L 68.650015 2.104466 L 70.652016 1.802795 L 72.657935 1.524631 L 74.659936 1.273891 L 76.665856 1.054493 L 78.667857 0.858603 L 80.673776 0.690137 L 82.679695 0.54126 L 84.681696 0.41589 L 86.687615 0.306191 L 88.689617 0.216082 L 90.695536 0.137726 L 92.697537 0.0711227 L 94.707374 0.0162734 L 96.709375 -0.0307404 L 98.715294 -0.0699185 L 100.717296 -0.105179 L 102.723215 -0.136521 L 104.729134 -0.160028 L 106.731135 -0.183535 L 108.733137 -0.199206 L 110.739056 -0.218795 L 112.741057 -0.230549 L 114.750894 -0.24622 L 116.752895 -0.257973 L 118.758814 -0.265809 L 120.760816 -0.277562 L 122.766735 -0.28148 L 124.768736 -0.285398 L 126.774655 -0.285398 L 128.776656 -0.28148 L 130.782575 -0.273645 L 132.788495 -0.254056 L 134.794414 -0.226631 L 136.796415 -0.187453 L 138.802334 -0.132603 L 140.804335 -0.0620828 L 142.810254 0.0201912 L 144.816174 0.110301 L 146.818175 0.192575 L 148.824094 0.251342 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip33)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0319446 L -25.557663 0.0397802 L -23.551744 0.0476159 L -21.549742 0.0554515 L -17.537904 0.0789583 L -15.535903 0.0985474 L -13.529984 0.118136 L -11.524065 0.141643 L -9.522063 0.169068 L -7.516144 0.204328 L -5.514143 0.247424 L -3.508224 0.294438 L -1.502305 0.353205 L 0.499697 0.427643 L 2.505616 0.509918 L 4.511535 0.611781 L 6.513536 0.729315 L 8.515537 0.870356 L 10.521457 1.038822 L 12.523458 1.234713 L 14.525459 1.465863 L 16.535296 1.732274 L 18.541215 2.045699 L 20.543216 2.40222 L 22.549136 2.81359 L 24.555055 3.27981 L 26.557056 3.804796 L 28.559057 4.384632 L 30.564976 5.019318 L 32.570896 5.704935 L 34.576815 6.414058 L 36.578816 7.123182 L 38.584735 7.785292 L 40.586736 8.310279 L 42.592655 8.588443 L 44.594657 8.482662 L 46.600576 7.863648 L 48.606495 6.664798 L 50.608496 4.921372 L 52.614415 2.746987 L 54.616417 0.267013 L 56.622336 -2.389262 L 58.628255 -5.143483 L 60.630256 -7.936882 L 62.636175 -10.734199 L 64.642094 -13.515845 L 66.644096 -16.266148 L 68.650015 -18.981191 L 70.652016 -21.645302 L 72.657935 -24.258482 L 74.659936 -26.808977 L 76.665856 -29.292869 L 78.667857 -31.70624 L 80.673776 -34.03342 L 82.679695 -36.274408 L 84.681696 -38.413532 L 86.687615 -40.442958 L 88.689617 -42.358768 L 90.695536 -44.149207 L 92.697537 -45.806441 L 94.707374 -47.322634 L 96.709375 -48.697786 L 98.715294 -49.920142 L 100.717296 -50.989705 L 102.723215 -51.898637 L 104.729134 -52.650857 L 106.731135 -53.246364 L 108.733137 -53.689076 L 110.739056 -53.98683 L 112.741057 -54.14746 L 114.750894 -54.178803 L 116.752895 -54.096529 L 118.758814 -53.912392 L 120.760816 -53.642063 L 122.766735 -53.309049 L 124.768736 -52.929021 L 126.774655 -52.517651 L 128.776656 -52.094527 L 130.782575 -51.67924 L 132.788495 -51.295294 L 134.794414 -50.96228 L 136.796415 -50.715458 L 138.802334 -50.597924 L 140.804335 -50.660609 L 142.810254 -50.989705 L 144.816174 -51.675322 L 146.818175 -52.834994 L 148.824094 -54.543159 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip34)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -126.004027 L -47.603184 -123.214546 L -45.601182 -120.39764 L -43.595263 -117.565063 L -41.589344 -114.716815 L -39.587343 -111.864648 L -37.585342 -109.004646 L -33.573503 -103.276807 L -31.567584 -100.40897 L -29.565583 -97.54505 L -27.559664 -94.677213 L -25.557663 -91.813293 L -23.551744 -88.945455 L -21.549742 -86.081536 L -19.543823 -83.213698 L -17.537904 -80.349779 L -15.535903 -77.485859 L -13.529984 -74.621939 L -11.524065 -71.754102 L -9.522063 -68.886264 L -7.516144 -66.022345 L -5.514143 -63.154507 L -3.508224 -60.290588 L -1.502305 -57.42275 L 0.499697 -54.55883 L 2.505616 -51.690993 L 4.511535 -48.819238 L 6.513536 -45.9514 L 8.515537 -43.079645 L 10.521457 -40.211807 L 12.523458 -37.332217 L 14.525459 -34.456543 L 16.535296 -31.576953 L 18.541215 -28.693444 L 20.543216 -25.806017 L 24.555055 -20.015493 L 28.559057 -14.209297 L 30.564976 -11.302282 L 32.570896 -8.40702 L 34.576815 -5.535264 L 36.578816 -2.710523 L 38.584735 0.0162734 L 40.586736 2.574604 L 42.592655 4.85477 L 44.594657 6.723565 L 46.600576 8.063457 L 48.606495 8.823512 L 50.608496 9.038992 L 52.614415 8.831348 L 54.616417 8.337703 L 56.622336 7.687347 L 58.628255 6.96647 L 60.630256 6.233839 L 62.636175 5.528633 L 64.642094 4.870441 L 66.644096 4.267098 L 68.650015 3.722522 L 70.652016 3.236714 L 72.657935 2.809672 L 74.659936 2.43748 L 76.665856 2.112302 L 78.667857 1.834138 L 80.673776 1.595151 L 82.679695 1.391425 L 84.681696 1.219041 L 86.687615 1.074082 L 88.689617 0.948712 L 90.695536 0.846849 L 92.697537 0.760657 L 94.707374 0.690137 L 96.709375 0.63137 L 98.715294 0.584356 L 100.717296 0.545178 L 102.723215 0.513835 L 104.729134 0.490328 L 106.731135 0.470739 L 108.733137 0.458986 L 110.739056 0.447233 L 112.741057 0.443315 L 114.750894 0.439397 L 116.752895 0.443315 L 118.758814 0.443315 L 120.760816 0.447233 L 122.766735 0.455068 L 124.768736 0.455068 L 126.774655 0.458986 L 128.776656 0.455068 L 130.782575 0.443315 L 132.788495 0.423726 L 134.794414 0.388465 L 136.796415 0.337534 L 138.802334 0.267013 L 140.804335 0.176904 L 142.810254 0.0672049 L 144.816174 -0.0503294 L 146.818175 -0.160028 L 148.824094 -0.242302 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip35)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -45.601182 0.00451994 L -43.595263 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0162734 L -33.573503 0.0162734 L -31.567584 0.0201912 L -29.565583 0.0280268 L -27.559664 0.0319446 L -25.557663 0.0397802 L -23.551744 0.0476159 L -21.549742 0.0554515 L -19.543823 0.0672049 L -17.537904 0.0828762 L -15.535903 0.0985474 L -13.529984 0.118136 L -11.524065 0.145561 L -9.522063 0.172986 L -7.516144 0.208246 L -5.514143 0.251342 L -3.508224 0.302274 L -1.502305 0.361041 L 0.499697 0.435479 L 2.505616 0.521671 L 4.511535 0.623534 L 6.513536 0.744986 L 8.515537 0.889945 L 10.521457 1.062329 L 12.523458 1.262137 L 14.525459 1.501124 L 16.535296 1.77537 L 18.541215 2.096631 L 20.543216 2.468823 L 22.549136 2.895864 L 24.555055 3.381673 L 26.557056 3.930166 L 28.559057 4.545263 L 30.564976 5.223044 L 32.570896 5.959592 L 34.576815 6.739237 L 36.578816 7.534552 L 38.584735 8.298525 L 40.586736 8.944964 L 42.592655 9.344581 L 44.594657 9.336745 L 46.600576 8.764745 L 48.606495 7.546306 L 50.608496 5.728441 L 52.614415 3.448276 L 54.616417 0.866438 L 56.622336 -1.872111 L 58.628255 -4.689017 L 60.630256 -7.509841 L 62.636175 -10.314994 L 64.642094 -13.080968 L 66.644096 -15.796011 L 68.650015 -18.452287 L 70.652016 -21.038042 L 72.657935 -23.557194 L 74.659936 -25.99799 L 76.665856 -28.352594 L 78.667857 -30.621007 L 80.673776 -32.791474 L 82.679695 -34.863996 L 84.681696 -36.826819 L 86.687615 -38.676026 L 88.689617 -40.407698 L 90.695536 -42.017918 L 92.697537 -43.498851 L 94.707374 -44.846578 L 96.709375 -46.057181 L 98.715294 -47.130661 L 100.717296 -48.0631 L 102.723215 -48.85058 L 104.729134 -49.489183 L 106.731135 -49.990663 L 108.733137 -50.347184 L 110.739056 -50.570499 L 112.741057 -50.660609 L 114.750894 -50.637102 L 116.752895 -50.503896 L 118.758814 -50.276663 L 120.760816 -49.974992 L 122.766735 -49.614553 L 124.768736 -49.203183 L 126.774655 -48.772224 L 128.776656 -48.333429 L 130.782575 -47.906388 L 132.788495 -47.518524 L 134.794414 -47.185511 L 136.796415 -46.946524 L 138.802334 -46.840743 L 140.804335 -46.923017 L 142.810254 -47.27562 L 144.816174 -47.988662 L 146.818175 -49.171841 L 148.824094 -50.899595 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip36)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -125.729781 L -47.603184 -122.944217 L -45.601182 -120.127311 L -43.595263 -117.290816 L -41.589344 -114.446486 L -39.587343 -111.590402 L -37.585342 -108.7304 L -31.567584 -100.138641 L -29.565583 -97.270803 L -27.559664 -94.406884 L -25.557663 -91.539046 L -23.551744 -88.675126 L -21.549742 -85.807289 L -19.543823 -82.939452 L -17.537904 -80.075532 L -15.535903 -77.207694 L -13.529984 -74.343775 L -11.524065 -71.475937 L -9.522063 -68.6081 L -7.516144 -65.74418 L -5.514143 -62.876343 L -1.502305 -57.140668 L 0.499697 -54.27283 L 4.511535 -48.52932 L 6.513536 -45.657564 L 8.515537 -42.781891 L 10.521457 -39.9023 L 12.523458 -37.022709 L 14.525459 -34.139201 L 16.535296 -31.247856 L 18.541215 -28.356512 L 20.543216 -25.453414 L 22.549136 -22.546399 L 24.555055 -19.62763 L 26.557056 -16.701025 L 28.559057 -13.766585 L 32.570896 -7.874197 L 34.576815 -4.939757 L 36.578816 -2.032742 L 38.584735 0.792 L 40.586736 3.460029 L 42.592655 5.849894 L 44.594657 7.808799 L 46.600576 9.183951 L 48.606495 9.90091 L 50.608496 10.018444 L 52.614415 9.681512 L 54.616417 9.058581 L 56.622336 8.286772 L 58.628255 7.467949 L 60.630256 6.653045 L 62.636175 5.885154 L 64.642094 5.172112 L 66.644096 4.525674 L 68.650015 3.949755 L 70.652016 3.44044 L 72.657935 2.989892 L 74.659936 2.598111 L 76.665856 2.261179 L 78.667857 1.971261 L 80.673776 1.724439 L 82.679695 1.512877 L 84.681696 1.332658 L 86.687615 1.183781 L 88.689617 1.054493 L 90.695536 0.95263 L 92.697537 0.86252 L 94.707374 0.788082 L 96.709375 0.729315 L 98.715294 0.682301 L 100.717296 0.643123 L 102.723215 0.611781 L 104.729134 0.588274 L 106.731135 0.568685 L 108.733137 0.556931 L 110.739056 0.549096 L 112.741057 0.545178 L 114.750894 0.545178 L 116.752895 0.549096 L 118.758814 0.553013 L 120.760816 0.556931 L 122.766735 0.564767 L 124.768736 0.568685 L 126.774655 0.568685 L 128.776656 0.564767 L 130.782575 0.549096 L 132.788495 0.521671 L 134.794414 0.478575 L 136.796415 0.411972 L 138.802334 0.321863 L 140.804335 0.208246 L 142.810254 0.0672049 L 144.816174 -0.0816719 L 146.818175 -0.214877 L 148.824094 -0.316741 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip37)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0319446 L -25.557663 0.0397802 L -23.551744 0.0476159 L -21.549742 0.0554515 L -19.543823 0.0672049 L -17.537904 0.0828762 L -15.535903 0.0985474 L -13.529984 0.118136 L -11.524065 0.145561 L -9.522063 0.172986 L -7.516144 0.208246 L -5.514143 0.251342 L -3.508224 0.302274 L -1.502305 0.361041 L 0.499697 0.431561 L 2.505616 0.517753 L 4.511535 0.623534 L 6.513536 0.744986 L 8.515537 0.889945 L 10.521457 1.058411 L 12.523458 1.262137 L 14.525459 1.497206 L 16.535296 1.77537 L 18.541215 2.092713 L 20.543216 2.464905 L 22.549136 2.891946 L 24.555055 3.377755 L 26.557056 3.926248 L 28.559057 4.537427 L 30.564976 5.215208 L 32.570896 5.951757 L 34.576815 6.731401 L 36.578816 7.526717 L 38.584735 8.29069 L 40.586736 8.937128 L 42.592655 9.340663 L 44.594657 9.336745 L 46.600576 8.77258 L 48.606495 7.565895 L 50.608496 5.751948 L 52.614415 3.479618 L 54.616417 0.905616 L 56.622336 -1.836851 L 58.628255 -4.645921 L 60.630256 -7.470663 L 62.636175 -10.275815 L 64.642094 -13.045708 L 66.644096 -15.760751 L 68.650015 -18.417026 L 70.652016 -21.006699 L 72.657935 -23.525851 L 74.659936 -25.970565 L 76.665856 -28.329087 L 78.667857 -30.5975 L 80.673776 -32.771885 L 82.679695 -34.844407 L 84.681696 -36.811148 L 86.687615 -38.664272 L 88.689617 -40.399862 L 90.695536 -42.010083 L 92.697537 -43.494933 L 94.707374 -44.84266 L 96.709375 -46.057181 L 98.715294 -47.134579 L 100.717296 -48.067018 L 102.723215 -48.854498 L 104.729134 -49.497019 L 106.731135 -49.998499 L 108.733137 -50.358937 L 110.739056 -50.578335 L 112.741057 -50.672362 L 114.750894 -50.648855 L 116.752895 -50.519568 L 118.758814 -50.292335 L 120.760816 -49.990663 L 122.766735 -49.626307 L 124.768736 -49.218854 L 126.774655 -48.787895 L 128.776656 -48.3491 L 130.782575 -47.922059 L 132.788495 -47.534196 L 134.794414 -47.201182 L 136.796415 -46.962195 L 138.802334 -46.856414 L 140.804335 -46.938689 L 142.810254 -47.291291 L 144.816174 -48.004333 L 146.818175 -49.187512 L 148.824094 -50.911349 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip38)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -126.16074 L -47.603184 -123.351669 L -45.601182 -120.519092 L -43.595263 -117.663008 L -41.589344 -114.795171 L -39.587343 -111.919498 L -37.585342 -109.032071 L -35.579423 -106.148562 L -33.573503 -103.261136 L -31.567584 -100.369792 L -29.565583 -97.482365 L -27.559664 -94.594939 L -25.557663 -91.707512 L -23.551744 -88.824003 L -21.549742 -85.944412 L -19.543823 -83.060904 L -17.537904 -80.185231 L -15.535903 -77.30564 L -11.524065 -71.554293 L -9.522063 -68.682538 L -7.516144 -65.806865 L -5.514143 -62.93511 L -1.502305 -57.191599 L 0.499697 -54.319844 L 2.505616 -51.448089 L 4.511535 -48.572416 L 8.515537 -42.821069 L 10.521457 -39.945396 L 12.523458 -37.061888 L 14.525459 -34.174461 L 16.535296 -31.287035 L 18.541215 -28.391772 L 20.543216 -25.492592 L 22.549136 -22.581659 L 24.555055 -19.666808 L 26.557056 -16.740203 L 28.559057 -13.805763 L 30.564976 -10.859569 L 32.570896 -7.917293 L 34.576815 -4.978935 L 36.578816 -2.075838 L 38.584735 0.752822 L 40.586736 3.420851 L 42.592655 5.814633 L 44.594657 7.777456 L 46.600576 9.156526 L 48.606495 9.885239 L 50.608496 10.014526 L 52.614415 9.681512 L 54.616417 9.062498 L 56.622336 8.294607 L 58.628255 7.475785 L 60.630256 6.66088 L 62.636175 5.892989 L 64.642094 5.179948 L 66.644096 4.533509 L 68.650015 3.953673 L 70.652016 3.444358 L 72.657935 2.99381 L 74.659936 2.602028 L 76.665856 2.265097 L 78.667857 1.975179 L 80.673776 1.724439 L 82.679695 1.512877 L 84.681696 1.336576 L 86.687615 1.183781 L 88.689617 1.058411 L 90.695536 0.95263 L 92.697537 0.86252 L 94.707374 0.792 L 96.709375 0.729315 L 98.715294 0.682301 L 100.717296 0.643123 L 102.723215 0.611781 L 104.729134 0.588274 L 106.731135 0.568685 L 108.733137 0.556931 L 110.739056 0.549096 L 112.741057 0.545178 L 114.750894 0.545178 L 116.752895 0.549096 L 118.758814 0.553013 L 120.760816 0.556931 L 122.766735 0.564767 L 124.768736 0.568685 L 126.774655 0.568685 L 128.776656 0.564767 L 130.782575 0.549096 L 132.788495 0.521671 L 134.794414 0.478575 L 136.796415 0.411972 L 138.802334 0.321863 L 140.804335 0.208246 L 142.810254 0.0672049 L 144.816174 -0.0816719 L 146.818175 -0.214877 L 148.824094 -0.316741 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip39)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 0.000602125 L -47.603184 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -37.585342 0.00843775 L -33.573503 0.0162734 L -31.567584 0.0162734 L -29.565583 0.0201912 L -27.559664 0.0280268 L -25.557663 0.0319446 L -23.551744 0.0397802 L -21.549742 0.0476159 L -19.543823 0.0554515 L -17.537904 0.0711227 L -15.535903 0.0828762 L -13.529984 0.0985474 L -11.524065 0.122054 L -9.522063 0.145561 L -7.516144 0.176904 L -5.514143 0.208246 L -3.508224 0.251342 L -1.502305 0.302274 L 0.499697 0.364959 L 2.505616 0.435479 L 4.511535 0.517753 L 6.513536 0.619616 L 8.515537 0.737151 L 10.521457 0.874274 L 12.523458 1.034904 L 14.525459 1.222959 L 16.535296 1.438439 L 18.541215 1.685261 L 20.543216 1.963425 L 22.549136 2.27685 L 24.555055 2.6177 L 26.557056 2.985974 L 28.559057 3.377755 L 30.564976 3.777372 L 32.570896 4.165235 L 34.576815 4.521756 L 36.578816 4.815592 L 38.584735 4.999729 L 40.586736 5.027153 L 42.592655 4.843016 L 44.594657 4.400304 L 46.600576 3.659837 L 48.606495 2.602028 L 50.608496 1.242548 L 52.614415 -0.399015 L 54.616417 -2.271728 L 56.622336 -4.336414 L 58.628255 -6.54606 L 60.630256 -8.861486 L 62.636175 -11.255268 L 64.642094 -13.699982 L 66.644096 -16.176038 L 68.650015 -18.663848 L 70.652016 -21.151658 L 72.657935 -23.623797 L 74.659936 -26.068511 L 76.665856 -28.477964 L 78.667857 -30.832569 L 80.673776 -33.128406 L 82.679695 -35.353722 L 84.681696 -37.492847 L 86.687615 -39.537944 L 88.689617 -41.47726 L 90.695536 -43.299042 L 92.697537 -44.991537 L 94.707374 -46.550825 L 96.709375 -47.969073 L 98.715294 -49.234526 L 100.717296 -50.351102 L 102.723215 -51.30313 L 104.729134 -52.098445 L 106.731135 -52.737048 L 108.733137 -53.222857 L 110.739056 -53.559789 L 112.741057 -53.755679 L 114.750894 -53.822282 L 116.752895 -53.77135 L 118.758814 -53.618556 L 120.760816 -53.379569 L 122.766735 -53.07398 L 124.768736 -52.709624 L 126.774655 -52.310007 L 128.776656 -51.886883 L 130.782575 -51.452006 L 132.788495 -51.028883 L 134.794414 -50.637102 L 136.796415 -50.292335 L 138.802334 -50.037677 L 140.804335 -49.92406 L 142.810254 -50.037677 L 144.816174 -50.496061 L 146.818175 -51.436335 L 148.824094 -52.991706 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip40)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:0.1;stroke-miterlimit:10;" d="M -49.609103 -128.319453 L -47.603184 -125.529972 L -45.601182 -122.716984 L -43.595263 -119.880489 L -41.589344 -117.032241 L -39.587343 -114.180074 L -37.585342 -111.320073 L -31.567584 -102.728314 L -29.565583 -99.864394 L -27.559664 -96.996556 L -25.557663 -94.132637 L -23.551744 -91.264799 L -21.549742 -88.40088 L -19.543823 -85.540878 L -17.537904 -82.67304 L -15.535903 -79.809121 L -13.529984 -76.949119 L -11.524065 -74.085199 L -9.522063 -71.22128 L -7.516144 -68.361278 L -5.514143 -65.501276 L -3.508224 -62.645192 L -1.502305 -59.78519 L 0.499697 -56.925188 L 4.511535 -51.220856 L 6.513536 -48.364772 L 8.515537 -45.516523 L 10.521457 -42.672193 L 12.523458 -39.83178 L 14.525459 -36.995285 L 16.535296 -34.162708 L 18.541215 -31.345802 L 20.543216 -28.532814 L 22.549136 -25.743332 L 24.555055 -22.965605 L 26.557056 -20.215301 L 28.559057 -17.500259 L 30.564976 -14.832229 L 32.570896 -12.222967 L 34.576815 -9.703815 L 36.578816 -7.298279 L 38.584735 -5.045538 L 40.586736 -2.980852 L 42.592655 -1.162988 L 44.594657 0.376712 L 46.600576 1.599069 L 48.606495 2.504083 L 50.608496 3.107426 L 52.614415 3.44044 L 54.616417 3.557974 L 56.622336 3.510961 L 58.628255 3.346413 L 60.630256 3.103508 L 62.636175 2.81359 L 64.642094 2.508001 L 66.644096 2.198494 L 68.650015 1.90074 L 70.652016 1.618658 L 72.657935 1.360082 L 74.659936 1.128932 L 76.665856 0.921288 L 78.667857 0.737151 L 80.673776 0.57652 L 82.679695 0.435479 L 84.681696 0.317945 L 86.687615 0.216082 L 88.689617 0.125972 L 90.695536 0.0515337 L 92.697537 -0.0111513 L 94.707374 -0.0660007 L 96.709375 -0.109097 L 98.715294 -0.148275 L 100.717296 -0.183535 L 102.723215 -0.21096 L 104.729134 -0.234467 L 106.731135 -0.257973 L 108.733137 -0.277562 L 110.739056 -0.293234 L 112.741057 -0.308905 L 114.750894 -0.324576 L 116.752895 -0.340247 L 118.758814 -0.352001 L 120.760816 -0.359836 L 122.766735 -0.367672 L 124.768736 -0.37159 L 126.774655 -0.375508 L 128.776656 -0.37159 L 130.782575 -0.355919 L 132.788495 -0.33633 L 134.794414 -0.301069 L 136.796415 -0.250138 L 138.802334 -0.183535 L 140.804335 -0.0934253 L 142.810254 0.0123556 L 144.816174 0.125972 L 146.818175 0.231753 L 148.824094 0.306191 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip41)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 0.00451994 L -43.595263 0.00451994 L -41.589344 0.00843775 L -39.587343 0.00843775 L -37.585342 0.0123556 L -35.579423 0.0123556 L -31.567584 0.0201912 L -29.565583 0.024109 L -27.559664 0.0280268 L -25.557663 0.0358624 L -23.551744 0.043698 L -21.549742 0.0515337 L -19.543823 0.0593693 L -17.537904 0.0750405 L -15.535903 0.0907118 L -13.529984 0.106383 L -11.524065 0.12989 L -9.522063 0.157315 L -7.516144 0.188657 L -5.514143 0.223917 L -3.508224 0.270931 L -1.502305 0.321863 L 0.499697 0.388465 L 2.505616 0.462904 L 4.511535 0.556931 L 6.513536 0.662712 L 8.515537 0.792 L 10.521457 0.940877 L 12.523458 1.117178 L 14.525459 1.320904 L 16.535296 1.555973 L 18.541215 1.83022 L 20.543216 2.139727 L 22.549136 2.49233 L 24.555055 2.884111 L 26.557056 3.31507 L 28.559057 3.777372 L 30.564976 4.267098 L 32.570896 4.768578 L 34.576815 5.258304 L 36.578816 5.697099 L 38.584735 6.045784 L 40.586736 6.237757 L 42.592655 6.202497 L 44.594657 5.857729 L 46.600576 5.144688 L 48.606495 4.028112 L 50.608496 2.523672 L 52.614415 0.678383 L 54.616417 -1.44507 L 56.622336 -3.776167 L 58.628255 -6.252224 L 60.630256 -8.830143 L 62.636175 -11.478583 L 64.642094 -14.170119 L 66.644096 -16.885162 L 68.650015 -19.615876 L 70.652016 -22.354426 L 72.657935 -25.089058 L 74.659936 -27.819772 L 76.665856 -30.534815 L 78.667857 -33.230269 L 80.673776 -35.902216 L 82.679695 -38.546738 L 84.681696 -41.156 L 86.687615 -43.722166 L 88.689617 -46.233483 L 90.695536 -48.68995 L 92.697537 -51.079814 L 94.707374 -53.391323 L 96.709375 -55.616639 L 98.715294 -57.744011 L 100.717296 -59.765601 L 102.723215 -61.677493 L 104.729134 -63.464014 L 106.731135 -65.125166 L 108.733137 -66.65703 L 110.739056 -68.051771 L 112.741057 -69.317224 L 114.750894 -70.453389 L 116.752895 -71.464184 L 118.758814 -72.357445 L 120.760816 -73.141007 L 122.766735 -73.822706 L 124.768736 -74.414295 L 126.774655 -74.927529 L 128.776656 -75.370241 L 130.782575 -75.754187 L 132.788495 -76.098954 L 134.794414 -76.424132 L 136.796415 -76.753228 L 138.802334 -77.12542 L 140.804335 -77.595558 L 142.810254 -78.257668 L 144.816174 -79.213613 L 146.818175 -80.604436 L 148.824094 -82.531999 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip42)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 -127.351754 L -47.603184 -124.562273 L -45.601182 -121.745367 L -43.595263 -118.91279 L -41.589344 -116.064541 L -39.587343 -113.212375 L -37.585342 -110.352373 L -31.567584 -101.760614 L -29.565583 -98.892777 L -27.559664 -96.028857 L -25.557663 -93.16102 L -23.551744 -90.2971 L -21.549742 -87.43318 L -19.543823 -84.565343 L -17.537904 -81.701423 L -15.535903 -78.837504 L -11.524065 -73.109664 L -9.522063 -70.245745 L -7.516144 -67.381825 L -5.514143 -64.521823 L -1.502305 -58.793984 L 0.499697 -55.933982 L 4.511535 -50.213978 L 6.513536 -47.350059 L 8.515537 -44.493975 L 10.521457 -41.633973 L 14.525459 -35.921805 L 16.535296 -33.073556 L 18.541215 -30.225308 L 20.543216 -27.380977 L 22.549136 -24.544482 L 24.555055 -21.715823 L 26.557056 -18.902835 L 28.559057 -16.109436 L 30.564976 -13.343461 L 32.570896 -10.624501 L 34.576815 -7.968225 L 36.578816 -5.402059 L 38.584735 -2.973016 L 40.586736 -0.735946 L 42.592655 1.242548 L 44.594657 2.891946 L 46.600576 4.161317 L 48.606495 5.031071 L 50.608496 5.51688 L 52.614415 5.67751 L 54.616417 5.5874 L 56.622336 5.320989 L 58.628255 4.940961 L 60.630256 4.506084 L 62.636175 4.043783 L 64.642094 3.589317 L 66.644096 3.150522 L 68.650015 2.739152 L 70.652016 2.36696 L 72.657935 2.030028 L 74.659936 1.732274 L 76.665856 1.469781 L 78.667857 1.23863 L 80.673776 1.04274 L 82.679695 0.874274 L 84.681696 0.725397 L 86.687615 0.603945 L 88.689617 0.498164 L 90.695536 0.411972 L 92.697537 0.337534 L 94.707374 0.274849 L 96.709375 0.22 L 98.715294 0.176904 L 100.717296 0.141643 L 102.723215 0.110301 L 104.729134 0.086794 L 108.733137 0.0476159 L 110.739056 0.0358624 L 112.741057 0.024109 L 114.750894 0.0123556 L 116.752895 0.00843775 L 118.758814 0.000602125 L 120.760816 -0.00331569 L 122.766735 -0.00331569 L 124.768736 -0.0072335 L 126.774655 -0.00331569 L 128.776656 -0.00331569 L 134.794414 0.00843775 L 136.796415 0.0162734 L 138.802334 0.0280268 L 140.804335 0.0358624 L 142.810254 0.0476159 L 144.816174 0.0554515 L 146.818175 0.0632871 L 148.824094 0.0632871 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:1;stroke-miterlimit:10;" d="M 79.474926 -35.432078 L 133.889399 -35.432078 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:1;stroke-miterlimit:10;" d="M 79.474926 -35.432078 L 83.725751 -28.066594 M 85.143998 -35.432078 L 89.394823 -28.066594 M 90.81307 -35.432078 L 95.063895 -28.066594 M 96.482142 -35.432078 L 100.732967 -28.066594 M 102.151214 -35.432078 L 106.405957 -28.066594 M 107.820287 -35.432078 L 112.075029 -28.066594 M 113.489359 -35.432078 L 117.744101 -28.066594 M 119.158431 -35.432078 L 123.413173 -28.066594 M 124.827503 -35.432078 L 129.082246 -28.066594 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<g clip-path="url(#clip43)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.889399 -70.864759 L 148.824094 -70.864759 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip44)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.889399 -70.864759 L 138.140224 -63.503192 M 139.558472 -70.864759 L 143.813214 -63.503192 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.540231 -5.492169 L 79.474926 -5.492169 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.540231 -5.492169 L 68.791056 1.873316 M 70.209303 -5.492169 L 74.460128 1.873316 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
<g clip-path="url(#clip45)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 35.429365 L -43.595263 35.429365 L -41.589344 35.425447 L -37.585342 35.425447 L -33.573503 35.417611 L -31.567584 35.417611 L -29.565583 35.413694 L -27.559664 35.409776 L -25.557663 35.405858 L -23.551744 35.398022 L -21.549742 35.390187 L -17.537904 35.374515 L -15.535903 35.358844 L -13.529984 35.347091 L -11.524065 35.327502 L -9.522063 35.307913 L -7.516144 35.280488 L -5.514143 35.249145 L -3.508224 35.213885 L -1.502305 35.170789 L 0.499697 35.11594 L 2.505616 35.053255 L 4.511535 34.978817 L 6.513536 34.888707 L 8.515537 34.782926 L 10.521457 34.657556 L 12.523458 34.504761 L 14.525459 34.32846 L 16.535296 34.120816 L 18.541215 33.88183 L 20.543216 33.599747 L 22.549136 33.270651 L 24.555055 32.894541 L 26.557056 32.463582 L 28.559057 31.977773 L 30.564976 31.425362 L 32.570896 30.814184 L 34.576815 30.136402 L 36.578816 29.388101 L 38.584735 28.577114 L 40.586736 27.703442 L 42.592655 26.763167 L 44.594657 25.768043 L 46.600576 24.71807 L 48.606495 23.621083 L 50.608496 22.473165 L 52.614415 21.289986 L 54.616417 20.067629 L 56.622336 18.817847 L 58.628255 17.540641 L 60.630256 16.239928 L 62.636175 14.915708 L 64.642094 13.579734 L 66.644096 12.228089 L 68.650015 10.860774 L 70.652016 9.485622 L 72.657935 8.106553 L 74.659936 6.71573 L 76.665856 5.320989 L 78.667857 3.926248 L 82.679695 1.121096 L 84.681696 -0.28148 L 86.687615 -1.684056 L 88.689617 -3.086633 L 90.695536 -4.489209 L 92.697537 -5.88395 L 94.707374 -7.274772 L 96.709375 -8.661677 L 98.715294 -10.040747 L 100.717296 -11.411981 L 102.723215 -12.771461 L 104.729134 -14.119188 L 106.731135 -15.451243 L 108.733137 -16.76371 L 110.739056 -18.056588 L 112.741057 -19.325958 L 114.750894 -20.563987 L 116.752895 -21.770672 L 118.758814 -22.93818 L 120.760816 -24.066509 L 122.766735 -25.147825 L 124.768736 -26.178209 L 126.774655 -27.149826 L 128.776656 -28.062676 L 130.782575 -28.912841 L 132.788495 -29.700321 L 134.794414 -30.417281 L 136.796415 -31.067637 L 138.802334 -31.655309 L 140.804335 -32.180295 L 142.810254 -32.646515 L 144.816174 -33.053967 L 146.818175 -33.40657 L 148.824094 -33.716077 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip46)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.699097%,74.099731%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609103 35.429365 L -45.35436 42.794849 M -43.940031 35.429365 L -39.685288 42.790931 M -38.270959 35.425447 L -34.012298 42.787013 M -32.601886 35.417611 L -28.339308 42.77526 M -26.932814 35.405858 L -22.6624 42.763506 M -21.263742 35.390187 L -16.981575 42.736082 M -15.59467 35.358844 L -11.296831 42.696904 M -9.925598 35.31183 L -5.596417 42.630301 M -4.256526 35.229556 L 0.131422 42.512767 M 1.412547 35.088515 L 5.894522 42.316876 M 7.077701 34.861282 L 11.712471 41.98778 M 12.73502 34.48909 L 17.616612 41.45104 M 18.372749 33.901419 L 23.477657 40.702738 M 23.971301 33.00424 L 29.507168 39.456874 M 29.491496 31.719198 L 35.540596 37.697777 M 34.894157 30.01495 L 41.444737 35.4372 M 40.155777 27.891497 L 46.996275 32.937637 M 45.252849 25.423276 L 52.434196 29.975772 M 50.220633 22.69648 L 57.566528 26.982565 M 55.082636 19.777711 L 62.589162 23.773878 M 59.870201 16.733572 L 67.447247 20.592615 M 64.598998 13.607159 L 72.223058 17.376093 M 69.2847 10.425897 L 76.959691 14.092967 M 73.95473 7.205456 L 81.645393 10.837267 M 78.613007 3.965427 L 86.315423 7.569812 M 83.251695 0.721479 L 90.958029 4.314112 M 87.902137 -2.534221 L 95.608471 1.062329 M 92.54866 -5.778169 L 100.247158 -2.165947 M 97.206937 -9.002527 L 104.881929 -5.343292 M 101.888721 -12.203378 L 109.540206 -8.497129 M 106.59793 -15.361134 L 114.214154 -11.580446 M 111.350234 -18.444451 L 118.880266 -14.495298 M 116.173059 -21.421987 L 123.6169 -17.304368 M 121.089912 -24.242811 L 128.330026 -19.784342 M 126.132134 -26.840319 L 133.17244 -22.072344 M 131.315398 -29.120485 L 137.963923 -23.815769 M 136.659292 -31.024541 L 142.97872 -25.33588 M 142.132473 -32.489802 L 147.934751 -26.272237 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip47)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.285646 -177.166718 L 14.932912 -35.432078 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g clip-path="url(#clip48)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(84.999084%,32.499695%,9.799194%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.285646 -177.166718 L -87.878278 -169.460384 M -81.033863 -172.520194 L -84.626495 -164.813861 M -77.78208 -167.877589 L -81.37863 -160.171255 M -74.530297 -163.231065 L -78.126847 -155.524731 M -71.278514 -158.588459 L -74.875064 -150.882126 M -68.030649 -153.945854 L -71.623281 -146.235602 M -64.778866 -149.29933 L -68.371499 -141.592996 M -61.527083 -144.656724 L -65.123633 -136.950391 M -58.2753 -140.010201 L -61.871851 -132.303867 M -55.023517 -135.367595 L -58.620068 -127.661261 M -51.771734 -130.721071 L -55.368285 -123.014738 M -48.523869 -126.078466 L -52.116502 -118.372132 M -45.272086 -121.431942 L -48.864719 -113.725608 M -42.020303 -116.789336 L -45.616854 -109.083003 M -38.76852 -112.142813 L -42.365071 -104.436479 M -35.516738 -107.500207 L -39.113288 -99.793873 M -32.268872 -102.853684 L -35.861505 -95.14735 M -29.01709 -98.211078 L -32.609722 -90.504744 M -25.765307 -93.564554 L -29.361857 -85.858221 M -22.513524 -88.921949 L -26.110074 -81.215615 M -19.261741 -84.279343 L -22.858291 -76.569091 M -16.009958 -79.632819 L -19.606508 -71.926485 M -12.762093 -74.990213 L -16.354725 -67.28388 M -9.51031 -70.34369 L -13.102942 -62.637356 M -6.258527 -65.701084 L -9.855077 -57.99475 M -3.006744 -61.054561 L -6.603294 -53.348227 M 0.245039 -56.411955 L -3.351511 -48.705621 M 3.492904 -51.765431 L -0.0997284 -44.059098 M 6.744687 -47.122826 L 3.152055 -39.416492 M 9.99647 -42.476302 L 6.403837 -34.769968 " transform="matrix(0.997049,0,0,-0.997049,93.79084,43.184194)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="110.747656" y="175.63121"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="116.407594" y="175.63121"/>
<use xlink:href="#glyph3-3" x="120.29843" y="175.63121"/>
<use xlink:href="#glyph3-4" x="124.713738" y="175.63121"/>
<use xlink:href="#glyph3-5" x="129.956482" y="175.63121"/>
<use xlink:href="#glyph3-3" x="135.474376" y="175.63121"/>
<use xlink:href="#glyph3-6" x="139.889684" y="175.63121"/>
<use xlink:href="#glyph3-7" x="145.407578" y="175.63121"/>
<use xlink:href="#glyph3-8" x="149.822886" y="175.63121"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-9" x="158.373387" y="175.63121"/>
<use xlink:href="#glyph3-10" x="161.13283" y="175.63121"/>
<use xlink:href="#glyph3-11" x="168.582732" y="175.63121"/>
<use xlink:href="#glyph3-12" x="172.99804" y="175.63121"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="10.875233" y="101.828633"/>
<use xlink:href="#glyph4-2" x="10.875233" y="92.722866"/>
<use xlink:href="#glyph4-3" x="10.875233" y="87.756265"/>
<use xlink:href="#glyph4-4" x="10.875233" y="82.789664"/>
<use xlink:href="#glyph4-5" x="10.875233" y="77.27177"/>
<use xlink:href="#glyph4-6" x="10.875233" y="74.512327"/>
<use xlink:href="#glyph4-7" x="10.875233" y="70.649305"/>
<use xlink:href="#glyph4-8" x="10.875233" y="65.131411"/>
<use xlink:href="#glyph4-9" x="10.875233" y="59.613517"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 158 KiB

BIN
tikz/figs/sf_arch.pdf Normal file

Binary file not shown.

BIN
tikz/figs/sf_arch.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

218
tikz/figs/sf_arch.svg Normal file
View File

@ -0,0 +1,218 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="201.96pt" height="131.32pt" viewBox="0 0 201.96 131.32" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 8.0625 -2.984375 C 8.0625 -3.203125 7.875 -3.203125 7.6875 -3.203125 L 4.515625 -3.203125 L 4.515625 -6.375 C 4.515625 -6.546875 4.515625 -6.75 4.3125 -6.75 C 4.09375 -6.75 4.09375 -6.5625 4.09375 -6.375 L 4.09375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.09375 -2.78125 L 4.09375 0.390625 C 4.09375 0.5625 4.09375 0.765625 4.296875 0.765625 C 4.515625 0.765625 4.515625 0.578125 4.515625 0.390625 L 4.515625 -2.78125 L 7.6875 -2.78125 C 7.859375 -2.78125 8.0625 -2.78125 8.0625 -2.984375 Z M 8.0625 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 6.875 -2.484375 C 6.875 -2.671875 6.6875 -2.671875 6.546875 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.546875 -2.28125 C 6.6875 -2.28125 6.875 -2.28125 6.875 -2.484375 Z M 6.875 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 4.859375 -1.421875 C 4.859375 -1.515625 4.765625 -1.515625 4.734375 -1.515625 C 4.640625 -1.515625 4.625 -1.46875 4.59375 -1.34375 C 4.390625 -0.609375 4.171875 -0.109375 3.734375 -0.109375 C 3.546875 -0.109375 3.421875 -0.21875 3.421875 -0.578125 C 3.421875 -0.75 3.453125 -0.96875 3.5 -1.125 C 3.53125 -1.296875 3.53125 -1.34375 3.53125 -1.4375 C 3.53125 -2.078125 2.90625 -2.375 2.078125 -2.484375 C 2.375 -2.65625 2.6875 -2.96875 2.921875 -3.203125 C 3.390625 -3.734375 3.859375 -4.15625 4.34375 -4.15625 C 4.390625 -4.15625 4.40625 -4.15625 4.421875 -4.15625 C 4.546875 -4.125 4.5625 -4.125 4.640625 -4.078125 C 4.65625 -4.0625 4.65625 -4.046875 4.671875 -4.03125 C 4.203125 -4 4.109375 -3.609375 4.109375 -3.5 C 4.109375 -3.34375 4.21875 -3.15625 4.484375 -3.15625 C 4.75 -3.15625 5.03125 -3.375 5.03125 -3.75 C 5.03125 -4.046875 4.796875 -4.375 4.359375 -4.375 C 4.078125 -4.375 3.625 -4.296875 2.90625 -3.5 C 2.578125 -3.125 2.1875 -2.734375 1.8125 -2.578125 L 2.84375 -6.765625 C 2.84375 -6.765625 2.84375 -6.875 2.71875 -6.875 C 2.484375 -6.875 1.765625 -6.796875 1.5 -6.78125 C 1.421875 -6.765625 1.3125 -6.75 1.3125 -6.578125 C 1.3125 -6.453125 1.40625 -6.453125 1.5625 -6.453125 C 2.03125 -6.453125 2.046875 -6.390625 2.046875 -6.296875 L 2.015625 -6.09375 L 0.578125 -0.390625 C 0.546875 -0.25 0.546875 -0.234375 0.546875 -0.171875 C 0.546875 0.0625 0.75 0.109375 0.828125 0.109375 C 0.953125 0.109375 1.109375 0.015625 1.171875 -0.09375 C 1.21875 -0.1875 1.671875 -2.015625 1.71875 -2.265625 C 2.0625 -2.234375 2.875 -2.078125 2.875 -1.421875 C 2.875 -1.359375 2.875 -1.3125 2.84375 -1.21875 C 2.828125 -1.09375 2.796875 -0.984375 2.796875 -0.875 C 2.796875 -0.28125 3.203125 0.109375 3.71875 0.109375 C 4.015625 0.109375 4.28125 -0.046875 4.5 -0.421875 C 4.75 -0.859375 4.859375 -1.421875 4.859375 -1.421875 Z M 4.859375 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 7.140625 -2.59375 C 7.140625 -2.671875 7.09375 -2.703125 7.015625 -2.703125 C 6.78125 -2.703125 6.203125 -2.671875 5.96875 -2.671875 L 4.59375 -2.703125 C 4.5 -2.703125 4.375 -2.703125 4.375 -2.5 C 4.375 -2.390625 4.453125 -2.390625 4.671875 -2.390625 C 4.671875 -2.390625 4.96875 -2.390625 5.203125 -2.375 C 5.453125 -2.34375 5.515625 -2.3125 5.515625 -2.1875 C 5.515625 -2.09375 5.40625 -1.65625 5.296875 -1.28125 C 5.015625 -0.203125 3.734375 -0.09375 3.390625 -0.09375 C 2.4375 -0.09375 1.390625 -0.65625 1.390625 -2.171875 C 1.390625 -2.484375 1.5 -4.109375 2.53125 -5.40625 C 3.078125 -6.078125 4.03125 -6.671875 5.015625 -6.671875 C 6.015625 -6.671875 6.609375 -5.90625 6.609375 -4.765625 C 6.609375 -4.375 6.578125 -4.359375 6.578125 -4.265625 C 6.578125 -4.15625 6.6875 -4.15625 6.71875 -4.15625 C 6.859375 -4.15625 6.859375 -4.1875 6.90625 -4.359375 L 7.53125 -6.890625 C 7.53125 -6.921875 7.515625 -6.984375 7.421875 -6.984375 C 7.390625 -6.984375 7.375 -6.96875 7.265625 -6.859375 L 6.578125 -6.109375 C 6.484375 -6.234375 6.03125 -6.984375 4.9375 -6.984375 C 2.71875 -6.984375 0.5 -4.796875 0.5 -2.5 C 0.5 -0.921875 1.59375 0.21875 3.203125 0.21875 C 3.640625 0.21875 4.078125 0.125 4.4375 -0.015625 C 4.9375 -0.21875 5.125 -0.421875 5.296875 -0.625 C 5.390625 -0.375 5.640625 -0.015625 5.75 -0.015625 C 5.796875 -0.015625 5.8125 -0.046875 5.8125 -0.046875 C 5.828125 -0.0625 5.9375 -0.453125 5.984375 -0.65625 L 6.171875 -1.421875 C 6.21875 -1.578125 6.265625 -1.75 6.296875 -1.921875 C 6.40625 -2.375 6.421875 -2.390625 6.984375 -2.390625 C 7.03125 -2.390625 7.140625 -2.40625 7.140625 -2.59375 Z M 7.140625 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 7.109375 -0.203125 C 7.109375 -0.3125 7.03125 -0.3125 6.828125 -0.3125 C 6.46875 -0.3125 6.1875 -0.3125 6.1875 -0.484375 C 6.1875 -0.546875 6.21875 -0.59375 6.21875 -0.65625 L 7.5625 -6 C 7.640625 -6.359375 7.671875 -6.453125 8.390625 -6.453125 C 8.640625 -6.453125 8.734375 -6.453125 8.734375 -6.65625 C 8.734375 -6.765625 8.625 -6.765625 8.59375 -6.765625 L 7.328125 -6.734375 L 6.046875 -6.765625 C 5.96875 -6.765625 5.859375 -6.765625 5.859375 -6.5625 C 5.859375 -6.453125 5.9375 -6.453125 6.125 -6.453125 C 6.125 -6.453125 6.34375 -6.453125 6.515625 -6.4375 C 6.6875 -6.421875 6.78125 -6.40625 6.78125 -6.28125 C 6.78125 -6.234375 6.765625 -6.21875 6.734375 -6.09375 L 6.140625 -3.671875 L 3.125 -3.671875 L 3.703125 -6 C 3.796875 -6.359375 3.828125 -6.453125 4.53125 -6.453125 C 4.796875 -6.453125 4.875 -6.453125 4.875 -6.65625 C 4.875 -6.765625 4.765625 -6.765625 4.734375 -6.765625 L 3.46875 -6.734375 L 2.1875 -6.765625 C 2.109375 -6.765625 2 -6.765625 2 -6.5625 C 2 -6.453125 2.09375 -6.453125 2.28125 -6.453125 C 2.28125 -6.453125 2.484375 -6.453125 2.65625 -6.4375 C 2.828125 -6.421875 2.921875 -6.40625 2.921875 -6.28125 C 2.921875 -6.234375 2.90625 -6.21875 2.875 -6.09375 L 1.5625 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.46875 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.0625 0 C 3.140625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.171875 -0.3125 2.984375 -0.3125 C 2.609375 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.0625 -3.375 L 5.375 -0.640625 C 5.28125 -0.3125 5.09375 -0.3125 4.484375 -0.3125 C 4.328125 -0.3125 4.234375 -0.3125 4.234375 -0.109375 C 4.234375 0 4.375 0 4.375 0 L 5.640625 -0.03125 L 6.265625 -0.015625 C 6.484375 -0.015625 6.703125 0 6.921875 0 C 7 0 7.109375 0 7.109375 -0.203125 Z M 7.109375 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 5.375 -1.421875 C 5.375 -1.515625 5.296875 -1.515625 5.265625 -1.515625 C 5.15625 -1.515625 5.15625 -1.46875 5.125 -1.34375 C 4.984375 -0.78125 4.796875 -0.109375 4.375 -0.109375 C 4.171875 -0.109375 4.078125 -0.234375 4.078125 -0.5625 C 4.078125 -0.78125 4.1875 -1.25 4.265625 -1.59375 L 4.546875 -2.671875 C 4.578125 -2.8125 4.671875 -3.1875 4.71875 -3.34375 C 4.765625 -3.5625 4.859375 -3.9375 4.859375 -4 C 4.859375 -4.1875 4.71875 -4.265625 4.578125 -4.265625 C 4.53125 -4.265625 4.265625 -4.265625 4.1875 -3.921875 L 3.453125 -0.9375 C 3.4375 -0.90625 3.046875 -0.109375 2.3125 -0.109375 C 1.796875 -0.109375 1.703125 -0.5625 1.703125 -0.921875 C 1.703125 -1.46875 1.984375 -2.265625 2.234375 -2.9375 C 2.359375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.8125 -3.796875 1.1875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.15625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.15625 C 1.28125 -2.171875 1.0625 -1.5625 1.0625 -1.078125 C 1.0625 -0.140625 1.75 0.109375 2.28125 0.109375 C 2.9375 0.109375 3.296875 -0.34375 3.46875 -0.5625 C 3.578125 -0.15625 3.921875 0.109375 4.34375 0.109375 C 4.703125 0.109375 4.921875 -0.125 5.078125 -0.4375 C 5.25 -0.796875 5.375 -1.421875 5.375 -1.421875 Z M 5.375 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 5.65625 -1.421875 C 5.65625 -1.515625 5.5625 -1.515625 5.53125 -1.515625 C 5.4375 -1.515625 5.4375 -1.484375 5.390625 -1.34375 C 5.1875 -0.65625 4.859375 -0.109375 4.375 -0.109375 C 4.203125 -0.109375 4.140625 -0.203125 4.140625 -0.4375 C 4.140625 -0.6875 4.234375 -0.921875 4.3125 -1.140625 C 4.5 -1.671875 4.921875 -2.75 4.921875 -3.3125 C 4.921875 -3.984375 4.5 -4.375 3.78125 -4.375 C 2.890625 -4.375 2.40625 -3.75 2.234375 -3.515625 C 2.1875 -4.078125 1.78125 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -4 0.578125 -3.8125 C 0.421875 -3.484375 0.28125 -2.890625 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.6875 0.9375 -4.15625 1.296875 -4.15625 C 1.5 -4.15625 1.609375 -4.03125 1.609375 -3.703125 C 1.609375 -3.5 1.578125 -3.390625 1.453125 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2.015625 1.96875 -2.234375 2.015625 -2.453125 L 2.140625 -2.953125 C 2.28125 -3.265625 2.8125 -4.15625 3.75 -4.15625 C 4.203125 -4.15625 4.296875 -3.796875 4.296875 -3.46875 C 4.296875 -2.859375 3.796875 -1.578125 3.640625 -1.15625 C 3.5625 -0.9375 3.546875 -0.8125 3.546875 -0.703125 C 3.546875 -0.234375 3.890625 0.109375 4.359375 0.109375 C 5.296875 0.109375 5.65625 -1.34375 5.65625 -1.421875 Z M 5.65625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 4.8125 -3.78125 C 4.859375 -3.90625 4.859375 -3.9375 4.859375 -4 C 4.859375 -4.1875 4.71875 -4.265625 4.5625 -4.265625 C 4.46875 -4.265625 4.3125 -4.203125 4.21875 -4.0625 C 4.203125 -4.015625 4.125 -3.703125 4.078125 -3.53125 L 3.890625 -2.734375 L 3.4375 -0.953125 C 3.390625 -0.796875 2.96875 -0.109375 2.3125 -0.109375 C 1.8125 -0.109375 1.703125 -0.546875 1.703125 -0.90625 C 1.703125 -1.359375 1.875 -1.984375 2.203125 -2.859375 C 2.375 -3.265625 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.859375 1.234375 -4.15625 1.5625 -4.15625 C 1.640625 -4.15625 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.59375 1.71875 -3.34375 1.640625 -3.15625 C 1.25 -2.09375 1.0625 -1.53125 1.0625 -1.0625 C 1.0625 -0.1875 1.6875 0.109375 2.28125 0.109375 C 2.671875 0.109375 3 -0.0625 3.28125 -0.34375 C 3.15625 0.171875 3.03125 0.65625 2.640625 1.1875 C 2.375 1.53125 2 1.8125 1.546875 1.8125 C 1.40625 1.8125 0.953125 1.78125 0.796875 1.390625 C 0.953125 1.390625 1.078125 1.390625 1.21875 1.28125 C 1.3125 1.1875 1.421875 1.0625 1.421875 0.875 C 1.421875 0.5625 1.15625 0.53125 1.046875 0.53125 C 0.828125 0.53125 0.5 0.6875 0.5 1.171875 C 0.5 1.671875 0.9375 2.03125 1.546875 2.03125 C 2.5625 2.03125 3.59375 1.125 3.859375 0.015625 Z M 4.8125 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.5 -4.375 C 2.859375 -4.375 2.421875 -3.890625 2.234375 -3.609375 C 2.15625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -4 0.59375 -3.8125 C 0.421875 -3.484375 0.28125 -2.875 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.6875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.5 1.578125 -3.390625 1.453125 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.5625 1.828125 -1.734375 L 2.15625 -3.015625 C 2.1875 -3.15625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.90625 3.078125 -4.15625 3.5 -4.15625 C 3.75 -4.15625 3.90625 -4.046875 3.90625 -4.046875 C 3.609375 -4 3.390625 -3.75 3.390625 -3.5 C 3.390625 -3.34375 3.5 -3.15625 3.78125 -3.15625 C 4.046875 -3.15625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 4.9375 -1.421875 C 4.9375 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.46875 4.671875 -1.34375 C 4.5 -0.6875 4.328125 -0.109375 3.921875 -0.109375 C 3.65625 -0.109375 3.625 -0.359375 3.625 -0.5625 C 3.625 -0.796875 3.640625 -0.875 3.6875 -1.046875 L 5.109375 -6.765625 C 5.109375 -6.765625 5.109375 -6.875 4.984375 -6.875 C 4.828125 -6.875 3.890625 -6.78125 3.71875 -6.765625 C 3.640625 -6.75 3.59375 -6.703125 3.59375 -6.578125 C 3.59375 -6.453125 3.671875 -6.453125 3.828125 -6.453125 C 4.296875 -6.453125 4.3125 -6.390625 4.3125 -6.296875 L 4.296875 -6.09375 L 3.6875 -3.75 C 3.515625 -4.109375 3.234375 -4.375 2.78125 -4.375 C 1.625 -4.375 0.390625 -2.921875 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.90625 0.109375 2.40625 0.0625 3 -0.640625 C 3.078125 -0.21875 3.421875 0.109375 3.90625 0.109375 C 4.25 0.109375 4.484375 -0.125 4.640625 -0.4375 C 4.796875 -0.796875 4.9375 -1.421875 4.9375 -1.421875 Z M 3.546875 -3.125 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.046875 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.796875 2.390625 -4.15625 2.796875 -4.15625 C 3.4375 -4.15625 3.578125 -3.34375 3.578125 -3.28125 C 3.578125 -3.234375 3.5625 -3.171875 3.546875 -3.125 Z M 3.546875 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.875 1.671875 -3.875 C 1.390625 -3.875 1.3125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.34375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 5.53125 -0.140625 C 5.53125 -0.25 5.46875 -0.25 5.3125 -0.25 C 5.203125 -0.25 5.171875 -0.25 5.046875 -0.265625 C 4.890625 -0.28125 4.890625 -0.296875 4.890625 -0.375 C 4.890625 -0.40625 4.90625 -0.484375 4.921875 -0.515625 L 5.828125 -4.171875 C 5.890625 -4.4375 5.90625 -4.484375 6.421875 -4.484375 C 6.578125 -4.484375 6.65625 -4.484375 6.65625 -4.640625 C 6.65625 -4.671875 6.640625 -4.734375 6.546875 -4.734375 C 6.34375 -4.734375 5.84375 -4.703125 5.640625 -4.703125 C 5.515625 -4.703125 5.28125 -4.703125 5.15625 -4.71875 C 5.015625 -4.71875 4.859375 -4.734375 4.71875 -4.734375 C 4.6875 -4.734375 4.578125 -4.734375 4.578125 -4.578125 C 4.578125 -4.484375 4.65625 -4.484375 4.796875 -4.484375 C 4.796875 -4.484375 4.9375 -4.484375 5.0625 -4.46875 C 5.203125 -4.453125 5.21875 -4.453125 5.21875 -4.375 C 5.21875 -4.375 5.21875 -4.328125 5.203125 -4.21875 L 4.78125 -2.59375 L 2.46875 -2.59375 L 2.859375 -4.203125 C 2.921875 -4.4375 2.9375 -4.484375 3.46875 -4.484375 C 3.59375 -4.484375 3.6875 -4.484375 3.6875 -4.640625 C 3.6875 -4.671875 3.65625 -4.734375 3.578125 -4.734375 C 3.375 -4.734375 2.859375 -4.703125 2.65625 -4.703125 C 2.546875 -4.703125 2.296875 -4.703125 2.1875 -4.71875 C 2.046875 -4.71875 1.875 -4.734375 1.75 -4.734375 C 1.703125 -4.734375 1.609375 -4.734375 1.609375 -4.578125 C 1.609375 -4.484375 1.6875 -4.484375 1.828125 -4.484375 C 1.828125 -4.484375 1.96875 -4.484375 2.09375 -4.46875 C 2.234375 -4.453125 2.25 -4.453125 2.25 -4.375 C 2.25 -4.375 2.25 -4.328125 2.21875 -4.21875 L 1.296875 -0.546875 C 1.234375 -0.3125 1.234375 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 -0.03125 0.53125 0 0.59375 0 C 0.796875 0 1.296875 -0.03125 1.484375 -0.03125 C 1.609375 -0.03125 1.859375 -0.03125 1.96875 -0.015625 C 2.109375 -0.015625 2.28125 0 2.421875 0 C 2.453125 0 2.5625 0 2.5625 -0.140625 C 2.5625 -0.25 2.484375 -0.25 2.328125 -0.25 C 2.21875 -0.25 2.1875 -0.25 2.0625 -0.265625 C 1.921875 -0.28125 1.921875 -0.296875 1.921875 -0.375 C 1.921875 -0.375 1.921875 -0.421875 1.9375 -0.515625 L 2.40625 -2.34375 L 4.71875 -2.34375 L 4.28125 -0.546875 C 4.21875 -0.3125 4.203125 -0.25 3.65625 -0.25 C 3.546875 -0.25 3.453125 -0.25 3.453125 -0.109375 C 3.453125 -0.03125 3.5 0 3.5625 0 C 3.765625 0 4.265625 -0.03125 4.46875 -0.03125 C 4.578125 -0.03125 4.828125 -0.03125 4.953125 -0.015625 C 5.078125 -0.015625 5.265625 0 5.390625 0 C 5.421875 0 5.53125 0 5.53125 -0.140625 Z M 5.53125 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 5 -1.734375 C 5 -1.75 4.984375 -1.828125 4.890625 -1.828125 C 4.796875 -1.828125 4.78125 -1.796875 4.75 -1.671875 C 4.484375 -1.015625 4.171875 -0.25 2.90625 -0.25 L 2.125 -0.25 C 1.90625 -0.25 1.90625 -0.25 1.90625 -0.3125 C 1.90625 -0.3125 1.90625 -0.359375 1.921875 -0.46875 L 2.859375 -4.171875 C 2.921875 -4.421875 2.9375 -4.484375 3.578125 -4.484375 C 3.796875 -4.484375 3.859375 -4.484375 3.859375 -4.640625 C 3.859375 -4.640625 3.859375 -4.734375 3.75 -4.734375 C 3.59375 -4.734375 3.40625 -4.71875 3.234375 -4.71875 L 2.671875 -4.703125 L 2.203125 -4.71875 C 2.046875 -4.71875 1.890625 -4.734375 1.75 -4.734375 C 1.703125 -4.734375 1.609375 -4.734375 1.609375 -4.578125 C 1.609375 -4.484375 1.6875 -4.484375 1.828125 -4.484375 C 1.828125 -4.484375 1.96875 -4.484375 2.09375 -4.46875 C 2.234375 -4.453125 2.25 -4.453125 2.25 -4.375 C 2.25 -4.375 2.25 -4.328125 2.21875 -4.21875 L 1.296875 -0.546875 C 1.234375 -0.3125 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 0 0.5625 0 0.6875 0 L 4.171875 0 C 4.34375 0 4.359375 0 4.40625 -0.140625 C 4.484375 -0.328125 5 -1.671875 5 -1.734375 Z M 5 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 6.6875 -0.984375 C 6.6875 -1.078125 6.609375 -1.078125 6.578125 -1.078125 C 6.484375 -1.078125 6.484375 -1.046875 6.453125 -0.96875 C 6.296875 -0.40625 6 -0.125 5.71875 -0.125 C 5.578125 -0.125 5.546875 -0.21875 5.546875 -0.375 C 5.546875 -0.53125 5.578125 -0.625 5.703125 -0.921875 C 5.78125 -1.140625 6.078125 -1.875 6.078125 -2.265625 C 6.078125 -2.375 6.078125 -2.671875 5.8125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.171875 -3.0625 C 4.546875 -3.0625 4.15625 -2.65625 3.9375 -2.359375 C 3.890625 -2.953125 3.390625 -3.0625 3.03125 -3.0625 C 2.46875 -3.0625 2.078125 -2.703125 1.859375 -2.421875 C 1.8125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.421875 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.921875 0.59375 -2.109375 C 0.703125 -2.53125 0.828125 -2.859375 1.109375 -2.859375 C 1.28125 -2.859375 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.390625 1.265625 -2.140625 1.21875 -1.953125 L 1.0625 -1.328125 L 0.84375 -0.4375 C 0.8125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.3125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.4375 1.671875 -1.609375 C 1.75 -1.890625 1.765625 -1.9375 1.96875 -2.234375 C 2.171875 -2.5 2.484375 -2.859375 3.015625 -2.859375 C 3.40625 -2.859375 3.421875 -2.515625 3.421875 -2.375 C 3.421875 -2.203125 3.40625 -2.109375 3.296875 -1.734375 L 3.015625 -0.5625 C 2.96875 -0.421875 2.90625 -0.1875 2.90625 -0.15625 C 2.90625 0 3.03125 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.453125 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.734375 -1.296875 3.78125 -1.4375 3.8125 -1.609375 C 3.890625 -1.90625 3.890625 -1.921875 4.03125 -2.125 C 4.25 -2.46875 4.59375 -2.859375 5.140625 -2.859375 C 5.53125 -2.859375 5.546875 -2.546875 5.546875 -2.375 C 5.546875 -1.96875 5.25 -1.1875 5.140625 -0.90625 C 5.0625 -0.703125 5.03125 -0.640625 5.03125 -0.53125 C 5.03125 -0.15625 5.34375 0.0625 5.703125 0.0625 C 6.390625 0.0625 6.6875 -0.890625 6.6875 -0.984375 Z M 6.6875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 3.859375 -2.609375 C 3.890625 -2.71875 3.890625 -2.71875 3.890625 -2.765625 C 3.890625 -2.90625 3.78125 -2.984375 3.65625 -2.984375 C 3.578125 -2.984375 3.453125 -2.953125 3.375 -2.828125 C 3.34375 -2.78125 3.296875 -2.5625 3.265625 -2.421875 L 3.109375 -1.84375 L 2.84375 -0.734375 C 2.84375 -0.734375 2.53125 -0.125 1.984375 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.875 -2.046875 C 1.96875 -2.265625 2 -2.359375 2 -2.46875 C 2 -2.796875 1.71875 -3.0625 1.34375 -3.0625 C 0.640625 -3.0625 0.328125 -2.109375 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.5625 -2.015625 C 0.75 -2.59375 1.046875 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.625 C 1.484375 -2.46875 1.421875 -2.3125 1.390625 -2.21875 C 1.0625 -1.375 0.984375 -1.109375 0.984375 -0.8125 C 0.984375 -0.6875 0.984375 -0.375 1.265625 -0.140625 C 1.484375 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.71875 -0.25 C 2.625 0.140625 2.546875 0.4375 2.25 0.78125 C 2.0625 0.984375 1.796875 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 0.984375 C 1.28125 0.953125 1.28125 0.609375 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1 0.34375 C 0.828125 0.34375 0.609375 0.484375 0.609375 0.8125 C 0.609375 1.15625 0.9375 1.421875 1.421875 1.421875 C 2.125 1.421875 2.984375 0.875 3.203125 0 Z M 3.859375 -2.609375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 71 100 L 114 100 L 114 130.644531 L 71 130.644531 Z M 71 100 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 109 112 L 133 112 L 133 130.644531 L 109 130.644531 Z M 109 112 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 152 100 L 195 100 L 195 130.644531 L 152 130.644531 Z M 152 100 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 86 105 L 120 105 L 120 130.644531 L 86 130.644531 Z M 86 105 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 168 105 L 201 105 L 201 130.644531 L 168 130.644531 Z M 168 105 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 180 11 L 201.417969 11 L 201.417969 44 L 180 44 Z M 180 11 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 0.5 27 L 18 27 L 18 29 L 0.5 29 Z M 0.5 27 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 120 105 L 153 105 L 153 130.644531 L 120 130.644531 Z M 120 105 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.974284 -0.000238768 C 6.974284 3.851635 3.852735 6.973185 0.000860646 6.973185 C -3.851014 6.973185 -6.972563 3.851635 -6.972563 -0.000238768 C -6.972563 -3.852113 -3.851014 -6.973662 0.000860646 -6.973662 C 3.852735 -6.973662 6.974284 -3.852113 6.974284 -0.000238768 Z M 6.974284 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="23.856162" y="30.569505"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="18.4802" y="42.369602"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.47852 -8.504989 L 47.157853 -8.504989 L 47.157853 8.504511 L 24.47852 8.504511 Z M 24.47852 -8.504989 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="61.069663" y="31.108912"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 82.170251 -8.504989 L 104.849584 -8.504989 L 104.849584 8.504511 L 82.170251 8.504511 Z M 82.170251 -8.504989 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="115.911681" y="31.393439"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="123.704329" y="27.797062"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.300667 -0.000238768 C 136.300667 3.851635 133.179118 6.973185 129.327244 6.973185 C 125.475369 6.973185 122.35382 3.851635 122.35382 -0.000238768 C 122.35382 -3.852113 125.475369 -6.973662 129.327244 -6.973662 C 133.179118 -6.973662 136.300667 -3.852113 136.300667 -0.000238768 Z M 136.300667 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="152.517927" y="30.569505"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.326349 -34.513974 L 76.001755 -34.513974 L 76.001755 -17.504475 L 53.326349 -17.504475 Z M 53.326349 -34.513974 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="88.60508" y="56.930205"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.326349 -69.526372 L 76.001755 -69.526372 L 76.001755 -52.520799 L 53.326349 -52.520799 Z M 53.326349 -69.526372 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="84.623696" y="91.019683"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="92.863031" y="92.506981"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 99.441406 121.191406 C 99.441406 117.359375 96.332031 114.253906 92.5 114.253906 C 88.671875 114.253906 85.5625 117.359375 85.5625 121.191406 C 85.5625 125.023438 88.671875 128.128906 92.5 128.128906 C 96.332031 128.128906 99.441406 125.023438 99.441406 121.191406 Z M 99.441406 121.191406 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 71.639439 -94.007958 C 71.639439 -90.156084 68.513963 -87.034535 64.662089 -87.034535 C 60.814141 -87.034535 57.688665 -90.156084 57.688665 -94.007958 C 57.688665 -97.859833 60.814141 -100.981382 64.662089 -100.981382 C 68.513963 -100.981382 71.639439 -97.859833 71.639439 -94.007958 Z M 71.639439 -94.007958 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="88.187044" y="124.092227"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 109.917969 129.652344 L 132.480469 129.652344 L 132.480469 112.730469 L 109.917969 112.730469 Z M 109.917969 129.652344 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 82.170251 -102.512708 L 104.849584 -102.512708 L 104.849584 -85.503209 L 82.170251 -85.503209 Z M 82.170251 -102.512708 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="114.112" y="123.833765"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="122.351335" y="125.321064"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 180.691406 121.191406 C 180.691406 117.359375 177.585938 114.253906 173.753906 114.253906 C 169.921875 114.253906 166.816406 117.359375 166.816406 121.191406 C 166.816406 125.023438 169.921875 128.128906 173.753906 128.128906 C 177.585938 128.128906 180.691406 125.023438 180.691406 121.191406 Z M 180.691406 121.191406 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.310167 -94.007958 C 153.310167 -90.156084 150.188618 -87.034535 146.336743 -87.034535 C 142.484869 -87.034535 139.36332 -90.156084 139.36332 -94.007958 C 139.36332 -97.859833 142.484869 -100.981382 146.336743 -100.981382 C 150.188618 -100.981382 153.310167 -97.859833 153.310167 -94.007958 Z M 153.310167 -94.007958 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="169.43831" y="124.092227"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.974284 -0.000238768 L 19.346614 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052329 -0.000238768 L 1.607557 1.68422 L 3.087839 -0.000238768 L 1.607557 -1.684698 Z M 6.052329 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,44.596037,27.667731)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 47.656516 -0.000238768 L 77.038345 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05418 -0.000238768 L 1.609408 1.68422 L 3.085763 -0.000238768 L 1.609408 -1.684698 Z M 6.05418 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,101.988727,27.667731)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="99.949337" y="23.868405"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.662089 -0.000238768 L 64.662089 -12.376495 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052194 -0.00190106 L 1.607421 1.682558 L 3.087703 -0.00190106 L 1.607421 -1.682433 Z M 6.052194 -0.00190106 " transform="matrix(0,0.994848,0.994848,0,92.501891,37.154766)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 94.484375 27.667969 C 94.484375 26.574219 93.597656 25.683594 92.5 25.683594 C 91.40625 25.683594 90.519531 26.574219 90.519531 27.667969 C 90.519531 28.761719 91.40625 29.648438 92.5 29.648438 C 93.597656 29.648438 94.484375 28.761719 94.484375 27.667969 Z M 94.484375 27.667969 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.662089 -35.012637 L 64.662089 -47.388893 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051822 -0.00190106 L 1.60705 1.682558 L 3.087331 -0.00190106 L 1.60705 -1.682433 Z M 6.051822 -0.00190106 " transform="matrix(0,0.994848,0.994848,0,92.501891,71.987167)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.662089 -70.025035 L 64.662089 -82.401292 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05145 -0.00190106 L 1.610604 1.682558 L 3.08696 -0.00190106 L 1.610604 -1.682433 Z M 6.05145 -0.00190106 " transform="matrix(0,0.994848,0.994848,0,92.501891,106.819568)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 81.671589 -94.007958 L 76.272682 -94.007958 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 100.851562 121.191406 L 105.273438 122.867188 L 103.800781 121.191406 L 105.273438 119.515625 Z M 100.851562 121.191406 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053073 0.00026846 L 1.6083 1.684727 L 3.088582 0.00026846 L 1.6083 -1.68419 Z M 6.053073 0.00026846 " transform="matrix(-0.994848,0,0,0.994848,106.873453,121.191139)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.688665 -94.007958 L 0.000860646 -94.007958 L 0.000860646 -11.606906 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054849 -0.000860646 L 1.610077 1.683598 L 3.086432 -0.000860646 L 1.610077 -1.681393 Z M 6.054849 -0.000860646 " transform="matrix(0,-0.994848,-0.994848,0,28.171019,42.039283)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.34432 -0.000238768 L 117.720577 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054362 -0.000238768 L 1.609589 1.68422 L 3.085945 -0.000238768 L 1.609589 -1.684698 Z M 6.054362 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,142.461202,27.667731)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.94341 -94.007958 L 173.150657 -94.007958 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 182.101562 121.191406 L 186.523438 122.867188 L 185.054688 121.191406 L 186.523438 119.515625 Z M 182.101562 121.191406 "/>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054155 0.00026846 L 1.609382 1.684727 L 3.085738 0.00026846 L 1.609382 -1.68419 Z M 6.054155 0.00026846 " transform="matrix(-0.994848,0,0,0.994848,188.124529,121.191139)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="190.683498" y="117.392121"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.300667 -0.000238768 L 168.517414 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 199.019531 27.667969 L 194.597656 25.992188 L 196.070312 27.667969 L 194.597656 29.34375 Z M 199.019531 27.667969 "/>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052899 -0.000238768 L 1.608126 1.68422 L 3.088408 -0.000238768 L 1.608126 -1.684698 Z M 6.052899 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,192.997814,27.667731)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="191.417696" y="21.941383"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.336743 -0.000238768 L 146.336743 -82.401292 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05145 0.000943413 L 1.610604 1.681476 L 3.08696 0.000943413 L 1.610604 -1.683515 Z M 6.05145 0.000943413 " transform="matrix(0,0.994848,0.994848,0,173.752968,106.819568)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 175.734375 27.667969 C 175.734375 26.574219 174.847656 25.683594 173.753906 25.683594 C 172.65625 25.683594 171.769531 26.574219 171.769531 27.667969 C 171.769531 28.761719 172.65625 29.648438 173.753906 29.648438 C 174.847656 29.648438 175.734375 28.761719 175.734375 27.667969 Z M 175.734375 27.667969 "/>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.605806 -0.000238768 L -26.816979 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052022 -0.000238768 L 1.60725 1.68422 L 3.087532 -0.000238768 L 1.60725 -1.684698 Z M 6.052022 -0.000238768 " transform="matrix(0.994848,0,0,-0.994848,13.799467,27.667731)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="5.291493" y="23.868405"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.36332 -94.007958 L 109.977564 -94.007958 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 134.386719 121.191406 L 138.808594 122.867188 L 137.335938 121.191406 L 138.808594 119.515625 Z M 134.386719 121.191406 "/>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052195 0.00026846 L 1.607423 1.684727 L 3.087705 0.00026846 L 1.607423 -1.68419 Z M 6.052195 0.00026846 " transform="matrix(-0.994848,0,0,0.994848,140.407736,121.191139)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="136.773654" y="115.4651"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="141.633488" y="116.952398"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.327244 11.606428 L 129.327244 26.817601 " transform="matrix(0.994848,0,0,-0.994848,28.171019,27.667731)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055337 -0.000726282 L 1.610564 1.683732 L 3.08692 -0.000726282 L 1.610564 -1.681259 Z M 6.055337 -0.000726282 " transform="matrix(0,0.994848,0.994848,0,156.832754,13.29617)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-8" x="160.63211" y="11.671562"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="165.791394" y="13.158861"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 41 KiB

35
tikz/figs/sf_arch.tex Normal file
View File

@ -0,0 +1,35 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
\node[addb={+}{}{}{}{-}] (addfb) at (0, 0){};
\node[block, right=of addfb] (K){$k$};
\node[block, right=1.2 of K] (G){$G^\prime$};
\node[addb={+}{}{}{}{}, right=of G] (adddy){};
\coordinate[] (KG) at ($0.5*(K.east)+0.5*(G.west)$);
\node[block, below=of KG] (Gm){$G$};
\node[block, below=of Gm] (Hh){$H_H$};
\node[addb={+}{}{}{}{}, below=of Hh] (addsf){};
\node[block] (Hl) at (addsf-|G) {$H_L$};
\node[addb={+}{}{}{}{}, right=1.2 of Hl] (addn) {};
\draw[->] (addfb.east) -- (K.west) node[above left]{};
\draw[->] (K.east) -- (G.west) node[above left]{$u$};
\draw[->] (KG) node[branch]{} -- (Gm.north);
\draw[->] (Gm.south) -- (Hh.north);
\draw[->] (Hh.south) -- (addsf.north) node[above left]{};
\draw[->] (Hl.west) -- (addsf.east);
\draw[->] (addsf.west) -| (addfb.south) node[below right]{};
\draw[->] (G.east) -- (adddy.west);
\draw[<-] (addn.east) -- ++(\cdist, 0) coordinate[](endpos) node[above left]{$n$};
\draw[->] (adddy.east) -- (G-|endpos) node[above left]{$y$};
\draw[->] (adddy-|addn) node[branch]{} -- (addn.north);
\draw[<-] (addfb.west) -- ++(-\cdist, 0) node[above right]{$r$};
\draw[->] (addn.west) -- (Hl.east) node[above right]{$y_m$};
\draw[<-] (adddy.north) -- ++(0, \cdist) node[below right]{$d_y$};
\end{tikzpicture}

BIN
tikz/figs/sf_arch_class.pdf Normal file

Binary file not shown.

BIN
tikz/figs/sf_arch_class.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

159
tikz/figs/sf_arch_class.svg Normal file
View File

@ -0,0 +1,159 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="191.98pt" height="75.53pt" viewBox="0 0 191.98 75.53" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 8.0625 -2.984375 C 8.0625 -3.203125 7.859375 -3.203125 7.6875 -3.203125 L 4.515625 -3.203125 L 4.515625 -6.375 C 4.515625 -6.53125 4.515625 -6.734375 4.3125 -6.734375 C 4.09375 -6.734375 4.09375 -6.546875 4.09375 -6.375 L 4.09375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.734375 -2.78125 0.921875 -2.78125 L 4.09375 -2.78125 L 4.09375 0.390625 C 4.09375 0.5625 4.09375 0.765625 4.296875 0.765625 C 4.515625 0.765625 4.515625 0.578125 4.515625 0.390625 L 4.515625 -2.78125 L 7.6875 -2.78125 C 7.859375 -2.78125 8.0625 -2.78125 8.0625 -2.984375 Z M 8.0625 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 6.875 -2.484375 C 6.875 -2.671875 6.6875 -2.671875 6.546875 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.546875 -2.28125 C 6.6875 -2.28125 6.875 -2.28125 6.875 -2.484375 Z M 6.875 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 7.328125 -0.203125 C 7.328125 -0.3125 7.21875 -0.3125 7.125 -0.3125 C 6.71875 -0.3125 6.59375 -0.40625 6.453125 -0.75 L 5.046875 -4 C 5.03125 -4.03125 5 -4.109375 5 -4.140625 C 5 -4.140625 5.171875 -4.296875 5.28125 -4.375 L 7.015625 -5.703125 C 7.9375 -6.390625 8.328125 -6.421875 8.625 -6.453125 C 8.703125 -6.46875 8.8125 -6.484375 8.8125 -6.65625 C 8.8125 -6.703125 8.78125 -6.765625 8.703125 -6.765625 C 8.484375 -6.765625 8.234375 -6.734375 8 -6.734375 C 7.640625 -6.734375 7.25 -6.765625 6.890625 -6.765625 C 6.828125 -6.765625 6.703125 -6.765625 6.703125 -6.5625 C 6.703125 -6.5 6.75 -6.46875 6.828125 -6.453125 C 7.046875 -6.4375 7.125 -6.390625 7.125 -6.25 C 7.125 -6.078125 6.828125 -5.84375 6.78125 -5.796875 L 2.90625 -2.828125 L 3.703125 -6 C 3.796875 -6.359375 3.8125 -6.453125 4.53125 -6.453125 C 4.78125 -6.453125 4.875 -6.453125 4.875 -6.65625 C 4.875 -6.75 4.796875 -6.765625 4.734375 -6.765625 L 3.46875 -6.734375 L 2.1875 -6.765625 C 2.125 -6.765625 1.984375 -6.765625 1.984375 -6.578125 C 1.984375 -6.453125 2.078125 -6.453125 2.28125 -6.453125 C 2.40625 -6.453125 2.578125 -6.453125 2.703125 -6.4375 C 2.859375 -6.421875 2.921875 -6.390625 2.921875 -6.28125 C 2.921875 -6.234375 2.90625 -6.21875 2.875 -6.09375 L 1.5625 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.5 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.0625 0 C 3.125 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.171875 -0.3125 2.984375 -0.3125 C 2.609375 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.5625 2.390625 -0.765625 2.421875 -0.921875 L 2.828125 -2.484375 L 4.296875 -3.625 L 5.453125 -0.953125 C 5.5625 -0.6875 5.5625 -0.671875 5.5625 -0.609375 C 5.5625 -0.3125 5.140625 -0.3125 5.046875 -0.3125 C 4.9375 -0.3125 4.828125 -0.3125 4.828125 -0.109375 C 4.828125 0 4.96875 0 4.96875 0 C 5.375 0 5.78125 -0.03125 6.1875 -0.03125 C 6.40625 -0.03125 6.9375 0 7.15625 0 C 7.203125 0 7.328125 0 7.328125 -0.203125 Z M 7.328125 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 7.140625 -2.59375 C 7.140625 -2.671875 7.09375 -2.703125 7.015625 -2.703125 C 6.78125 -2.703125 6.203125 -2.671875 5.96875 -2.671875 L 4.59375 -2.703125 C 4.5 -2.703125 4.375 -2.703125 4.375 -2.5 C 4.375 -2.390625 4.453125 -2.390625 4.671875 -2.390625 C 4.671875 -2.390625 4.96875 -2.390625 5.203125 -2.375 C 5.453125 -2.34375 5.515625 -2.3125 5.515625 -2.1875 C 5.515625 -2.09375 5.40625 -1.65625 5.296875 -1.28125 C 5.015625 -0.203125 3.734375 -0.09375 3.390625 -0.09375 C 2.4375 -0.09375 1.390625 -0.65625 1.390625 -2.171875 C 1.390625 -2.484375 1.5 -4.109375 2.53125 -5.40625 C 3.078125 -6.078125 4.03125 -6.671875 5.015625 -6.671875 C 6.015625 -6.671875 6.609375 -5.90625 6.609375 -4.765625 C 6.609375 -4.375 6.578125 -4.359375 6.578125 -4.265625 C 6.578125 -4.15625 6.6875 -4.15625 6.71875 -4.15625 C 6.859375 -4.15625 6.859375 -4.1875 6.90625 -4.359375 L 7.53125 -6.890625 C 7.53125 -6.921875 7.515625 -6.984375 7.421875 -6.984375 C 7.390625 -6.984375 7.375 -6.96875 7.265625 -6.859375 L 6.578125 -6.109375 C 6.484375 -6.234375 6.03125 -6.984375 4.9375 -6.984375 C 2.71875 -6.984375 0.5 -4.796875 0.5 -2.5 C 0.5 -0.921875 1.59375 0.21875 3.203125 0.21875 C 3.640625 0.21875 4.078125 0.125 4.4375 -0.015625 C 4.9375 -0.21875 5.125 -0.421875 5.296875 -0.625 C 5.390625 -0.375 5.640625 -0.015625 5.75 -0.015625 C 5.796875 -0.015625 5.8125 -0.046875 5.8125 -0.046875 C 5.828125 -0.0625 5.9375 -0.453125 5.984375 -0.65625 L 6.171875 -1.421875 C 6.21875 -1.578125 6.265625 -1.75 6.296875 -1.921875 C 6.40625 -2.375 6.421875 -2.390625 6.984375 -2.390625 C 7.03125 -2.390625 7.140625 -2.40625 7.140625 -2.59375 Z M 7.140625 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 7.109375 -0.203125 C 7.109375 -0.3125 7.03125 -0.3125 6.828125 -0.3125 C 6.46875 -0.3125 6.1875 -0.3125 6.1875 -0.484375 C 6.1875 -0.546875 6.21875 -0.59375 6.21875 -0.65625 L 7.5625 -6 C 7.640625 -6.359375 7.671875 -6.453125 8.390625 -6.453125 C 8.640625 -6.453125 8.734375 -6.453125 8.734375 -6.65625 C 8.734375 -6.765625 8.625 -6.765625 8.59375 -6.765625 L 7.328125 -6.734375 L 6.046875 -6.765625 C 5.96875 -6.765625 5.859375 -6.765625 5.859375 -6.5625 C 5.859375 -6.453125 5.9375 -6.453125 6.125 -6.453125 C 6.125 -6.453125 6.34375 -6.453125 6.515625 -6.4375 C 6.6875 -6.421875 6.78125 -6.40625 6.78125 -6.28125 C 6.78125 -6.234375 6.765625 -6.21875 6.734375 -6.09375 L 6.140625 -3.671875 L 3.125 -3.671875 L 3.703125 -6 C 3.796875 -6.359375 3.828125 -6.453125 4.53125 -6.453125 C 4.796875 -6.453125 4.875 -6.453125 4.875 -6.65625 C 4.875 -6.765625 4.765625 -6.765625 4.734375 -6.765625 L 3.46875 -6.734375 L 2.1875 -6.765625 C 2.109375 -6.765625 2 -6.765625 2 -6.5625 C 2 -6.453125 2.09375 -6.453125 2.28125 -6.453125 C 2.28125 -6.453125 2.484375 -6.453125 2.65625 -6.4375 C 2.828125 -6.421875 2.921875 -6.40625 2.921875 -6.28125 C 2.921875 -6.234375 2.90625 -6.21875 2.875 -6.09375 L 1.5625 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.46875 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.0625 0 C 3.140625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.171875 -0.3125 2.984375 -0.3125 C 2.609375 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.0625 -3.375 L 5.375 -0.640625 C 5.28125 -0.3125 5.09375 -0.3125 4.484375 -0.3125 C 4.328125 -0.3125 4.234375 -0.3125 4.234375 -0.109375 C 4.234375 0 4.375 0 4.375 0 L 5.640625 -0.03125 L 6.265625 -0.015625 C 6.484375 -0.015625 6.703125 0 6.921875 0 C 7 0 7.109375 0 7.109375 -0.203125 Z M 7.109375 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 5.375 -1.421875 C 5.375 -1.515625 5.296875 -1.515625 5.265625 -1.515625 C 5.15625 -1.515625 5.15625 -1.46875 5.125 -1.34375 C 4.984375 -0.78125 4.796875 -0.109375 4.375 -0.109375 C 4.171875 -0.109375 4.078125 -0.234375 4.078125 -0.5625 C 4.078125 -0.78125 4.1875 -1.25 4.265625 -1.59375 L 4.546875 -2.671875 C 4.578125 -2.8125 4.671875 -3.1875 4.71875 -3.34375 C 4.765625 -3.5625 4.859375 -3.9375 4.859375 -4 C 4.859375 -4.1875 4.71875 -4.265625 4.578125 -4.265625 C 4.53125 -4.265625 4.265625 -4.265625 4.1875 -3.921875 L 3.453125 -0.9375 C 3.4375 -0.90625 3.046875 -0.109375 2.3125 -0.109375 C 1.796875 -0.109375 1.703125 -0.5625 1.703125 -0.921875 C 1.703125 -1.46875 1.984375 -2.265625 2.234375 -2.9375 C 2.359375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.8125 -3.796875 1.1875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.15625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.15625 C 1.28125 -2.171875 1.0625 -1.5625 1.0625 -1.078125 C 1.0625 -0.140625 1.75 0.109375 2.28125 0.109375 C 2.9375 0.109375 3.296875 -0.34375 3.46875 -0.5625 C 3.578125 -0.15625 3.921875 0.109375 4.34375 0.109375 C 4.703125 0.109375 4.921875 -0.125 5.078125 -0.4375 C 5.25 -0.796875 5.375 -1.421875 5.375 -1.421875 Z M 5.375 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 5.65625 -1.421875 C 5.65625 -1.515625 5.5625 -1.515625 5.53125 -1.515625 C 5.4375 -1.515625 5.4375 -1.484375 5.390625 -1.34375 C 5.1875 -0.65625 4.859375 -0.109375 4.375 -0.109375 C 4.203125 -0.109375 4.140625 -0.203125 4.140625 -0.4375 C 4.140625 -0.6875 4.234375 -0.921875 4.3125 -1.140625 C 4.5 -1.671875 4.921875 -2.75 4.921875 -3.3125 C 4.921875 -3.984375 4.5 -4.375 3.78125 -4.375 C 2.890625 -4.375 2.40625 -3.75 2.234375 -3.515625 C 2.1875 -4.078125 1.78125 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -4 0.578125 -3.8125 C 0.421875 -3.484375 0.28125 -2.890625 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.6875 0.9375 -4.15625 1.296875 -4.15625 C 1.5 -4.15625 1.609375 -4.03125 1.609375 -3.703125 C 1.609375 -3.5 1.578125 -3.390625 1.453125 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2.015625 1.96875 -2.234375 2.015625 -2.453125 L 2.140625 -2.953125 C 2.28125 -3.265625 2.8125 -4.15625 3.75 -4.15625 C 4.203125 -4.15625 4.296875 -3.796875 4.296875 -3.46875 C 4.296875 -2.859375 3.796875 -1.578125 3.640625 -1.15625 C 3.5625 -0.9375 3.546875 -0.8125 3.546875 -0.703125 C 3.546875 -0.234375 3.890625 0.109375 4.359375 0.109375 C 5.296875 0.109375 5.65625 -1.34375 5.65625 -1.421875 Z M 5.65625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 4.8125 -3.78125 C 4.859375 -3.90625 4.859375 -3.9375 4.859375 -4 C 4.859375 -4.1875 4.71875 -4.265625 4.5625 -4.265625 C 4.46875 -4.265625 4.3125 -4.203125 4.21875 -4.0625 C 4.203125 -4.015625 4.125 -3.703125 4.078125 -3.53125 L 3.890625 -2.734375 L 3.4375 -0.953125 C 3.390625 -0.796875 2.96875 -0.109375 2.3125 -0.109375 C 1.8125 -0.109375 1.703125 -0.546875 1.703125 -0.90625 C 1.703125 -1.359375 1.875 -1.984375 2.203125 -2.859375 C 2.375 -3.265625 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.859375 1.234375 -4.15625 1.5625 -4.15625 C 1.640625 -4.15625 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.59375 1.71875 -3.34375 1.640625 -3.15625 C 1.25 -2.09375 1.0625 -1.53125 1.0625 -1.0625 C 1.0625 -0.1875 1.6875 0.109375 2.28125 0.109375 C 2.671875 0.109375 3 -0.0625 3.28125 -0.34375 C 3.15625 0.171875 3.03125 0.65625 2.640625 1.1875 C 2.375 1.53125 2 1.8125 1.546875 1.8125 C 1.40625 1.8125 0.953125 1.78125 0.796875 1.390625 C 0.953125 1.390625 1.078125 1.390625 1.21875 1.28125 C 1.3125 1.1875 1.421875 1.0625 1.421875 0.875 C 1.421875 0.5625 1.15625 0.53125 1.046875 0.53125 C 0.828125 0.53125 0.5 0.6875 0.5 1.171875 C 0.5 1.671875 0.9375 2.03125 1.546875 2.03125 C 2.5625 2.03125 3.59375 1.125 3.859375 0.015625 Z M 4.8125 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.5 -4.375 C 2.859375 -4.375 2.421875 -3.890625 2.234375 -3.609375 C 2.15625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -4 0.59375 -3.8125 C 0.421875 -3.484375 0.28125 -2.875 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.6875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.5 1.578125 -3.390625 1.453125 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.5625 1.828125 -1.734375 L 2.15625 -3.015625 C 2.1875 -3.15625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.90625 3.078125 -4.15625 3.5 -4.15625 C 3.75 -4.15625 3.90625 -4.046875 3.90625 -4.046875 C 3.609375 -4 3.390625 -3.75 3.390625 -3.5 C 3.390625 -3.34375 3.5 -3.15625 3.78125 -3.15625 C 4.046875 -3.15625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 4.9375 -1.421875 C 4.9375 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.46875 4.671875 -1.34375 C 4.5 -0.6875 4.328125 -0.109375 3.921875 -0.109375 C 3.65625 -0.109375 3.625 -0.359375 3.625 -0.5625 C 3.625 -0.796875 3.640625 -0.875 3.6875 -1.046875 L 5.109375 -6.765625 C 5.109375 -6.765625 5.109375 -6.875 4.984375 -6.875 C 4.828125 -6.875 3.890625 -6.78125 3.71875 -6.765625 C 3.640625 -6.75 3.59375 -6.703125 3.59375 -6.578125 C 3.59375 -6.453125 3.671875 -6.453125 3.828125 -6.453125 C 4.296875 -6.453125 4.3125 -6.390625 4.3125 -6.296875 L 4.296875 -6.09375 L 3.6875 -3.75 C 3.515625 -4.109375 3.234375 -4.375 2.78125 -4.375 C 1.625 -4.375 0.390625 -2.921875 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.90625 0.109375 2.40625 0.0625 3 -0.640625 C 3.078125 -0.21875 3.421875 0.109375 3.90625 0.109375 C 4.25 0.109375 4.484375 -0.125 4.640625 -0.4375 C 4.796875 -0.796875 4.9375 -1.421875 4.9375 -1.421875 Z M 3.546875 -3.125 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.046875 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.796875 2.390625 -4.15625 2.796875 -4.15625 C 3.4375 -4.15625 3.578125 -3.34375 3.578125 -3.28125 C 3.578125 -3.234375 3.5625 -3.171875 3.546875 -3.125 Z M 3.546875 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.875 1.671875 -3.875 C 1.390625 -3.875 1.3125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.34375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 5 -1.734375 C 5 -1.75 4.984375 -1.828125 4.890625 -1.828125 C 4.796875 -1.828125 4.78125 -1.796875 4.75 -1.671875 C 4.484375 -1.015625 4.171875 -0.25 2.90625 -0.25 L 2.125 -0.25 C 1.90625 -0.25 1.90625 -0.25 1.90625 -0.3125 C 1.90625 -0.3125 1.90625 -0.359375 1.921875 -0.46875 L 2.859375 -4.171875 C 2.921875 -4.421875 2.9375 -4.484375 3.578125 -4.484375 C 3.796875 -4.484375 3.859375 -4.484375 3.859375 -4.640625 C 3.859375 -4.640625 3.859375 -4.734375 3.75 -4.734375 C 3.59375 -4.734375 3.40625 -4.71875 3.234375 -4.71875 L 2.671875 -4.703125 L 2.203125 -4.71875 C 2.046875 -4.71875 1.890625 -4.734375 1.75 -4.734375 C 1.703125 -4.734375 1.609375 -4.734375 1.609375 -4.578125 C 1.609375 -4.484375 1.6875 -4.484375 1.828125 -4.484375 C 1.828125 -4.484375 1.96875 -4.484375 2.09375 -4.46875 C 2.234375 -4.453125 2.25 -4.453125 2.25 -4.375 C 2.25 -4.375 2.25 -4.328125 2.21875 -4.21875 L 1.296875 -0.546875 C 1.234375 -0.3125 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 0 0.5625 0 0.6875 0 L 4.171875 0 C 4.34375 0 4.359375 0 4.40625 -0.140625 C 4.484375 -0.328125 5 -1.671875 5 -1.734375 Z M 5 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 3.859375 -2.609375 C 3.890625 -2.71875 3.890625 -2.71875 3.890625 -2.765625 C 3.890625 -2.90625 3.78125 -2.984375 3.65625 -2.984375 C 3.578125 -2.984375 3.453125 -2.953125 3.375 -2.828125 C 3.34375 -2.78125 3.296875 -2.5625 3.265625 -2.421875 L 3.109375 -1.84375 L 2.84375 -0.734375 C 2.84375 -0.734375 2.53125 -0.125 1.984375 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.875 -2.046875 C 1.96875 -2.265625 2 -2.359375 2 -2.46875 C 2 -2.796875 1.71875 -3.0625 1.34375 -3.0625 C 0.640625 -3.0625 0.328125 -2.109375 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.5625 -2.015625 C 0.75 -2.59375 1.046875 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.625 C 1.484375 -2.46875 1.421875 -2.3125 1.390625 -2.21875 C 1.0625 -1.375 0.984375 -1.109375 0.984375 -0.8125 C 0.984375 -0.6875 0.984375 -0.375 1.265625 -0.140625 C 1.484375 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.71875 -0.25 C 2.625 0.140625 2.546875 0.4375 2.25 0.78125 C 2.0625 0.984375 1.796875 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 0.984375 C 1.28125 0.953125 1.28125 0.609375 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1 0.34375 C 0.828125 0.34375 0.609375 0.484375 0.609375 0.8125 C 0.609375 1.15625 0.9375 1.421875 1.421875 1.421875 C 2.125 1.421875 2.984375 0.875 3.203125 0 Z M 3.859375 -2.609375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 142 44 L 185 44 L 185 75.0625 L 142 75.0625 Z M 142 44 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 158 49 L 191 49 L 191 75.0625 L 158 75.0625 Z M 158 49 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 170 11 L 191.375 11 L 191.375 44 L 170 44 Z M 170 11 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 103 49 L 136 49 L 136 75.0625 L 103 75.0625 Z M 103 49 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.9737 -0.00148524 C 6.9737 3.850461 3.852838 6.975254 0.000891434 6.975254 C -3.851055 6.975254 -6.975848 3.850461 -6.975848 -0.00148524 C -6.975848 -3.853431 -3.851055 -6.974294 0.000891434 -6.974294 C 3.852838 -6.974294 6.9737 -3.853431 6.9737 -0.00148524 Z M 6.9737 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="23.915299" y="30.545723"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="18.544917" y="42.333571"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.480403 -8.503281 L 47.159719 -8.503281 L 47.159719 8.504241 L 24.480403 8.504241 Z M 24.480403 -8.503281 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="59.264531" y="31.02991"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.161672 -8.503281 L 87.840988 -8.503281 L 87.840988 8.504241 L 65.161672 8.504241 Z M 65.161672 -8.503281 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="98.972441" y="31.368802"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="106.757" y="27.776157"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.293308 -0.00148524 C 119.293308 3.850461 116.172446 6.975254 112.3205 6.975254 C 108.468553 6.975254 105.347691 3.850461 105.347691 -0.00148524 C 105.347691 -3.853431 108.468553 -6.974294 112.3205 -6.974294 C 116.172446 -6.974294 119.293308 -3.853431 119.293308 -0.00148524 Z M 119.293308 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="135.540688" y="30.545723"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 170.667969 65.621094 C 170.667969 61.792969 167.566406 58.6875 163.738281 58.6875 C 159.910156 58.6875 156.808594 61.792969 156.808594 65.621094 C 156.808594 69.449219 159.910156 72.550781 163.738281 72.550781 C 167.566406 72.550781 170.667969 69.449219 170.667969 65.621094 Z M 170.667969 65.621094 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.328667 -38.210434 C 143.328667 -34.358487 140.207804 -31.233694 136.355858 -31.233694 C 132.503912 -31.233694 129.383049 -34.358487 129.383049 -38.210434 C 129.383049 -42.06238 132.503912 -45.183242 136.355858 -45.183242 C 140.207804 -45.183242 143.328667 -42.06238 143.328667 -38.210434 Z M 143.328667 -38.210434 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="159.428045" y="68.518431"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.161672 -46.712229 L 87.840988 -46.712229 L 87.840988 -29.704707 L 65.161672 -29.704707 Z M 65.161672 -46.712229 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="97.174628" y="68.260237"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="105.405411" y="69.745992"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.9737 -0.00148524 L 19.347095 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052221 -0.00148524 L 1.610691 1.684724 L 3.088581 -0.00148524 L 1.610691 -1.683764 Z M 6.052221 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,44.633645,27.646961)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 47.654969 -0.00148524 L 60.032295 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05145 -0.00148524 L 1.60992 1.684724 L 3.08781 -0.00148524 L 1.60992 -1.683764 Z M 6.05145 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,85.064099,27.646961)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="83.026667" y="23.851579"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 88.336238 -0.00148524 L 100.713564 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054599 -0.00148524 L 1.609139 1.684724 L 3.087029 -0.00148524 L 1.609139 -1.683764 Z M 6.054599 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,125.494562,27.646961)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.962794 -38.210434 L 163.174051 -38.210434 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 172.078125 65.621094 L 176.496094 67.292969 L 175.027344 65.621094 L 176.496094 63.949219 Z M 172.078125 65.621094 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054512 0.00103367 L 1.609052 1.683312 L 3.086941 0.00103367 L 1.609052 -1.681245 Z M 6.054512 0.00103367 " transform="matrix(-0.993816,0,0,0.993816,178.095195,65.620066)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="180.651179" y="61.82528"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.355858 -0.00148524 L 136.355858 -26.603498 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055284 -0.000261997 L 1.609823 1.682017 L 3.087713 -0.000261997 L 1.609823 -1.682541 Z M 6.055284 -0.000261997 " transform="matrix(0,0.993816,0.993816,0,163.738542,51.263414)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 165.71875 27.648438 C 165.71875 26.554688 164.832031 25.667969 163.738281 25.667969 C 162.644531 25.667969 161.757812 26.554688 161.757812 27.648438 C 161.757812 28.742188 162.644531 29.628906 163.738281 29.628906 C 164.832031 29.628906 165.71875 28.742188 165.71875 27.648438 Z M 165.71875 27.648438 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.293308 -0.00148524 L 158.539924 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 188.980469 27.648438 L 184.5625 25.972656 L 186.03125 27.648438 L 184.5625 29.320312 Z M 188.980469 27.648438 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05448 -0.00148524 L 1.609019 1.684724 L 3.086909 -0.00148524 L 1.609019 -1.683764 Z M 6.05448 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,182.963431,27.646961)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="181.384616" y="21.926558"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.606045 -0.00148524 L -26.817302 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055121 -0.00148524 L 1.609661 1.684724 L 3.087551 -0.00148524 L 1.609661 -1.683764 Z M 6.055121 -0.00148524 " transform="matrix(0.993816,0,0,-0.993816,13.869043,27.646961)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="5.369901" y="23.851579"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.383049 -38.210434 L 92.970365 -38.210434 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 117.425781 65.621094 L 121.84375 67.292969 L 120.375 65.621094 L 121.84375 63.949219 Z M 117.425781 65.621094 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05489 0.00103367 L 1.60943 1.683312 L 3.08732 0.00103367 L 1.60943 -1.681245 Z M 6.05489 0.00103367 " transform="matrix(-0.993816,0,0,0.993816,123.443227,65.620066)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.662491 -38.210434 L 0.000891434 -38.210434 L 0.000891434 -11.608421 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052745 -0.000891434 L 1.607284 1.681387 L 3.089104 -0.000891434 L 1.607284 -1.68317 Z M 6.052745 -0.000891434 " transform="matrix(0,-0.993816,-0.993816,0,28.225677,42.003595)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.3205 11.609381 L 112.3205 26.816708 " transform="matrix(0.993816,0,0,-0.993816,28.225677,27.646961)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051795 0.000369537 L 1.610265 1.682648 L 3.088154 0.000369537 L 1.610265 -1.681909 Z M 6.051795 0.000369537 " transform="matrix(0,0.993816,0.993816,0,139.851195,13.290318)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-8" x="143.646449" y="11.667397"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="148.800377" y="13.153152"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,26 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
\node[addb={+}{}{}{}{-}] (addfb) at (0, 0){};
\node[block, right=of addfb] (K){$K$};
\node[block, right=of K] (G){$G^\prime$};
\node[addb={+}{}{}{}{}, right=of G] (adddy){};
\node[addb={+}{}{}{}{}, below right=and 0.5 of adddy] (addn) {};
\node[block] (Hh) at (G|-addn) {$H_L$};
\draw[->] (addfb.east) -- (K.west) node[above left]{};
\draw[->] (K.east) -- (G.west) node[above left]{$u$};
\draw[->] (G.east) -- (adddy.west);
\draw[<-] (addn.east) -- ++(\cdist, 0) coordinate[](endpos) node[above left]{$n$};
\draw[->] (G-|addn)node[branch]{} -- (addn.north);
\draw[->] (adddy.east) -- (G-|endpos) node[above left]{$y$};
\draw[<-] (addfb.west) -- ++(-\cdist, 0) node[above right]{$r$};
\draw[->] (addn.west) -- (Hh.east);
\draw[->] (Hh.west) -| (addfb.south);
\draw[<-] (adddy.north) -- ++(0, \cdist) node[below right]{$d_y$};
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -0,0 +1,197 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="279.17pt" height="65.49pt" viewBox="0 0 279.17 65.49" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 8.046875 -2.96875 C 8.046875 -3.1875 7.859375 -3.1875 7.671875 -3.1875 L 4.5 -3.1875 L 4.5 -6.359375 C 4.5 -6.53125 4.5 -6.734375 4.296875 -6.734375 C 4.09375 -6.734375 4.09375 -6.53125 4.09375 -6.359375 L 4.09375 -3.1875 L 0.921875 -3.1875 C 0.75 -3.1875 0.546875 -3.1875 0.546875 -2.984375 C 0.546875 -2.765625 0.734375 -2.765625 0.921875 -2.765625 L 4.09375 -2.765625 L 4.09375 0.390625 C 4.09375 0.5625 4.09375 0.765625 4.296875 0.765625 C 4.5 0.765625 4.5 0.578125 4.5 0.390625 L 4.5 -2.765625 L 7.671875 -2.765625 C 7.84375 -2.765625 8.046875 -2.765625 8.046875 -2.96875 Z M 8.046875 -2.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 6.859375 -2.46875 C 6.859375 -2.671875 6.671875 -2.671875 6.53125 -2.671875 L 1.140625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.46875 C 0.828125 -2.28125 1.015625 -2.28125 1.140625 -2.28125 L 6.53125 -2.28125 C 6.671875 -2.28125 6.859375 -2.28125 6.859375 -2.46875 Z M 6.859375 -2.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 7.09375 -0.203125 C 7.09375 -0.3125 7.015625 -0.3125 6.828125 -0.3125 C 6.453125 -0.3125 6.1875 -0.3125 6.1875 -0.484375 C 6.1875 -0.546875 6.203125 -0.59375 6.21875 -0.65625 L 7.546875 -6 C 7.640625 -6.34375 7.65625 -6.453125 8.375 -6.453125 C 8.640625 -6.453125 8.71875 -6.453125 8.71875 -6.640625 C 8.71875 -6.75 8.609375 -6.75 8.578125 -6.75 L 7.3125 -6.71875 L 6.03125 -6.75 C 5.953125 -6.75 5.84375 -6.75 5.84375 -6.5625 C 5.84375 -6.453125 5.9375 -6.453125 6.125 -6.453125 C 6.125 -6.453125 6.328125 -6.453125 6.5 -6.421875 C 6.671875 -6.40625 6.765625 -6.40625 6.765625 -6.265625 C 6.765625 -6.234375 6.75 -6.21875 6.71875 -6.078125 L 6.125 -3.671875 L 3.109375 -3.671875 L 3.703125 -6 C 3.78125 -6.34375 3.8125 -6.453125 4.53125 -6.453125 C 4.78125 -6.453125 4.859375 -6.453125 4.859375 -6.640625 C 4.859375 -6.75 4.75 -6.75 4.734375 -6.75 L 3.46875 -6.71875 L 2.1875 -6.75 C 2.109375 -6.75 2 -6.75 2 -6.5625 C 2 -6.453125 2.09375 -6.453125 2.28125 -6.453125 C 2.28125 -6.453125 2.484375 -6.453125 2.65625 -6.421875 C 2.828125 -6.40625 2.921875 -6.40625 2.921875 -6.265625 C 2.921875 -6.234375 2.90625 -6.203125 2.875 -6.078125 L 1.546875 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.46875 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.40625 -0.015625 C 2.625 -0.015625 2.84375 0 3.0625 0 C 3.140625 0 3.25 0 3.25 -0.203125 C 3.25 -0.3125 3.171875 -0.3125 2.984375 -0.3125 C 2.609375 -0.3125 2.328125 -0.3125 2.328125 -0.484375 C 2.328125 -0.546875 2.359375 -0.59375 2.359375 -0.65625 L 3.03125 -3.359375 L 6.046875 -3.359375 L 5.375 -0.640625 C 5.265625 -0.3125 5.078125 -0.3125 4.46875 -0.3125 C 4.328125 -0.3125 4.234375 -0.3125 4.234375 -0.109375 C 4.234375 0 4.375 0 4.375 0 L 5.625 -0.03125 L 6.265625 -0.015625 C 6.484375 -0.015625 6.703125 0 6.90625 0 C 6.984375 0 7.09375 0 7.09375 -0.203125 Z M 7.09375 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 7.125 -2.59375 C 7.125 -2.65625 7.078125 -2.703125 7 -2.703125 C 6.78125 -2.703125 6.1875 -2.671875 5.96875 -2.671875 L 4.578125 -2.703125 C 4.484375 -2.703125 4.375 -2.703125 4.375 -2.5 C 4.375 -2.390625 4.453125 -2.390625 4.671875 -2.390625 C 4.671875 -2.390625 4.96875 -2.390625 5.1875 -2.375 C 5.453125 -2.34375 5.5 -2.3125 5.5 -2.1875 C 5.5 -2.09375 5.390625 -1.65625 5.296875 -1.28125 C 5.015625 -0.203125 3.734375 -0.09375 3.375 -0.09375 C 2.4375 -0.09375 1.390625 -0.65625 1.390625 -2.171875 C 1.390625 -2.46875 1.5 -4.109375 2.53125 -5.390625 C 3.0625 -6.0625 4.03125 -6.671875 5 -6.671875 C 6.015625 -6.671875 6.59375 -5.90625 6.59375 -4.75 C 6.59375 -4.359375 6.5625 -4.359375 6.5625 -4.25 C 6.5625 -4.15625 6.671875 -4.15625 6.71875 -4.15625 C 6.84375 -4.15625 6.84375 -4.171875 6.890625 -4.359375 L 7.515625 -6.875 C 7.515625 -6.90625 7.5 -6.96875 7.40625 -6.96875 C 7.375 -6.96875 7.375 -6.96875 7.265625 -6.859375 L 6.5625 -6.09375 C 6.484375 -6.234375 6.015625 -6.96875 4.921875 -6.96875 C 2.71875 -6.96875 0.5 -4.78125 0.5 -2.5 C 0.5 -0.921875 1.59375 0.21875 3.1875 0.21875 C 3.625 0.21875 4.078125 0.125 4.4375 -0.015625 C 4.921875 -0.21875 5.109375 -0.421875 5.296875 -0.625 C 5.375 -0.375 5.640625 -0.015625 5.734375 -0.015625 C 5.78125 -0.015625 5.8125 -0.046875 5.8125 -0.046875 C 5.828125 -0.0625 5.921875 -0.4375 5.96875 -0.65625 L 6.15625 -1.421875 C 6.203125 -1.578125 6.25 -1.75 6.296875 -1.921875 C 6.40625 -2.359375 6.40625 -2.390625 6.96875 -2.390625 C 7.015625 -2.390625 7.125 -2.40625 7.125 -2.59375 Z M 7.125 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 5.375 -1.421875 C 5.375 -1.515625 5.28125 -1.515625 5.25 -1.515625 C 5.15625 -1.515625 5.140625 -1.46875 5.109375 -1.328125 C 4.96875 -0.78125 4.78125 -0.109375 4.375 -0.109375 C 4.15625 -0.109375 4.0625 -0.234375 4.0625 -0.5625 C 4.0625 -0.78125 4.1875 -1.25 4.265625 -1.59375 L 4.546875 -2.65625 C 4.5625 -2.8125 4.671875 -3.1875 4.703125 -3.328125 C 4.75 -3.5625 4.859375 -3.9375 4.859375 -4 C 4.859375 -4.171875 4.71875 -4.265625 4.5625 -4.265625 C 4.515625 -4.265625 4.265625 -4.25 4.1875 -3.921875 L 3.4375 -0.9375 C 3.4375 -0.90625 3.03125 -0.109375 2.3125 -0.109375 C 1.796875 -0.109375 1.703125 -0.546875 1.703125 -0.921875 C 1.703125 -1.46875 1.984375 -2.25 2.234375 -2.9375 C 2.359375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.5625 -2.921875 C 0.8125 -3.78125 1.1875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.140625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.296875 1.640625 -3.15625 C 1.28125 -2.171875 1.0625 -1.5625 1.0625 -1.078125 C 1.0625 -0.140625 1.75 0.109375 2.28125 0.109375 C 2.9375 0.109375 3.296875 -0.34375 3.46875 -0.546875 C 3.578125 -0.140625 3.921875 0.109375 4.34375 0.109375 C 4.6875 0.109375 4.921875 -0.125 5.078125 -0.4375 C 5.234375 -0.796875 5.375 -1.421875 5.375 -1.421875 Z M 5.375 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 5.640625 -1.421875 C 5.640625 -1.515625 5.5625 -1.515625 5.53125 -1.515625 C 5.4375 -1.515625 5.4375 -1.484375 5.375 -1.328125 C 5.1875 -0.65625 4.859375 -0.109375 4.375 -0.109375 C 4.203125 -0.109375 4.140625 -0.203125 4.140625 -0.4375 C 4.140625 -0.6875 4.21875 -0.921875 4.3125 -1.140625 C 4.5 -1.65625 4.921875 -2.75 4.921875 -3.3125 C 4.921875 -3.96875 4.484375 -4.375 3.78125 -4.375 C 2.890625 -4.375 2.40625 -3.734375 2.234375 -3.515625 C 2.1875 -4.0625 1.78125 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.578125 -3.8125 C 0.421875 -3.46875 0.28125 -2.890625 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.5 -4.15625 1.609375 -4.03125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.4375 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2 1.953125 -2.21875 2 -2.453125 L 2.140625 -2.953125 C 2.28125 -3.25 2.8125 -4.15625 3.75 -4.15625 C 4.1875 -4.15625 4.28125 -3.78125 4.28125 -3.46875 C 4.28125 -2.84375 3.796875 -1.578125 3.640625 -1.15625 C 3.546875 -0.9375 3.546875 -0.8125 3.546875 -0.703125 C 3.546875 -0.234375 3.890625 0.109375 4.359375 0.109375 C 5.28125 0.109375 5.640625 -1.328125 5.640625 -1.421875 Z M 5.640625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 4.8125 -3.765625 C 4.84375 -3.90625 4.84375 -3.921875 4.84375 -4 C 4.84375 -4.171875 4.703125 -4.265625 4.5625 -4.265625 C 4.453125 -4.265625 4.296875 -4.203125 4.21875 -4.0625 C 4.1875 -4 4.109375 -3.703125 4.078125 -3.515625 L 3.875 -2.734375 L 3.4375 -0.953125 C 3.390625 -0.796875 2.96875 -0.109375 2.3125 -0.109375 C 1.8125 -0.109375 1.703125 -0.546875 1.703125 -0.90625 C 1.703125 -1.359375 1.875 -1.984375 2.203125 -2.84375 C 2.359375 -3.25 2.40625 -3.359375 2.40625 -3.5625 C 2.40625 -4 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.5625 -2.921875 C 0.828125 -3.859375 1.21875 -4.15625 1.5625 -4.15625 C 1.640625 -4.15625 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.59375 1.71875 -3.328125 1.640625 -3.140625 C 1.25 -2.09375 1.0625 -1.53125 1.0625 -1.0625 C 1.0625 -0.1875 1.6875 0.109375 2.28125 0.109375 C 2.65625 0.109375 3 -0.0625 3.28125 -0.34375 C 3.140625 0.171875 3.03125 0.65625 2.625 1.1875 C 2.375 1.515625 2 1.8125 1.546875 1.8125 C 1.40625 1.8125 0.953125 1.78125 0.796875 1.390625 C 0.953125 1.390625 1.078125 1.390625 1.21875 1.28125 C 1.3125 1.1875 1.421875 1.0625 1.421875 0.875 C 1.421875 0.5625 1.140625 0.53125 1.046875 0.53125 C 0.828125 0.53125 0.5 0.6875 0.5 1.171875 C 0.5 1.65625 0.9375 2.03125 1.546875 2.03125 C 2.5625 2.03125 3.578125 1.125 3.859375 0.015625 Z M 4.8125 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.484375 -4.375 C 2.84375 -4.375 2.40625 -3.890625 2.21875 -3.609375 C 2.140625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.546875 1.828125 -1.734375 L 2.140625 -3.015625 C 2.1875 -3.140625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.890625 3.0625 -4.15625 3.484375 -4.15625 C 3.75 -4.15625 3.90625 -4.03125 3.90625 -4.03125 C 3.609375 -3.984375 3.390625 -3.75 3.390625 -3.484375 C 3.390625 -3.328125 3.5 -3.140625 3.765625 -3.140625 C 4.03125 -3.140625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.703125 -1.515625 4.703125 -1.46875 4.671875 -1.328125 C 4.5 -0.6875 4.328125 -0.109375 3.921875 -0.109375 C 3.65625 -0.109375 3.625 -0.359375 3.625 -0.5625 C 3.625 -0.796875 3.640625 -0.875 3.671875 -1.03125 L 5.109375 -6.75 C 5.109375 -6.75 5.109375 -6.859375 4.96875 -6.859375 C 4.828125 -6.859375 3.890625 -6.78125 3.71875 -6.75 C 3.640625 -6.75 3.578125 -6.703125 3.578125 -6.5625 C 3.578125 -6.453125 3.671875 -6.453125 3.8125 -6.453125 C 4.296875 -6.453125 4.3125 -6.375 4.3125 -6.28125 L 4.28125 -6.078125 L 3.6875 -3.734375 C 3.515625 -4.109375 3.21875 -4.375 2.78125 -4.375 C 1.625 -4.375 0.390625 -2.921875 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.90625 0.109375 2.40625 0.0625 3 -0.640625 C 3.078125 -0.21875 3.421875 0.109375 3.890625 0.109375 C 4.25 0.109375 4.46875 -0.125 4.625 -0.4375 C 4.796875 -0.796875 4.921875 -1.421875 4.921875 -1.421875 Z M 3.546875 -3.109375 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.84375 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.78125 2.390625 -4.15625 2.796875 -4.15625 C 3.4375 -4.15625 3.578125 -3.34375 3.578125 -3.28125 C 3.578125 -3.21875 3.546875 -3.171875 3.546875 -3.109375 Z M 3.546875 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 4.984375 -1.71875 C 4.984375 -1.75 4.984375 -1.828125 4.875 -1.828125 C 4.796875 -1.828125 4.78125 -1.78125 4.734375 -1.671875 C 4.46875 -1.015625 4.171875 -0.25 2.90625 -0.25 L 2.125 -0.25 C 1.90625 -0.25 1.890625 -0.25 1.890625 -0.3125 C 1.890625 -0.3125 1.890625 -0.359375 1.921875 -0.46875 L 2.859375 -4.15625 C 2.921875 -4.40625 2.9375 -4.484375 3.578125 -4.484375 C 3.78125 -4.484375 3.859375 -4.484375 3.859375 -4.625 C 3.859375 -4.625 3.84375 -4.734375 3.734375 -4.734375 C 3.578125 -4.734375 3.390625 -4.71875 3.21875 -4.703125 L 2.1875 -4.703125 C 2.046875 -4.703125 1.875 -4.734375 1.75 -4.734375 C 1.703125 -4.734375 1.59375 -4.734375 1.59375 -4.578125 C 1.59375 -4.484375 1.6875 -4.484375 1.828125 -4.484375 C 1.828125 -4.484375 1.953125 -4.484375 2.078125 -4.46875 C 2.234375 -4.453125 2.25 -4.4375 2.25 -4.375 C 2.25 -4.375 2.25 -4.3125 2.21875 -4.21875 L 1.296875 -0.546875 C 1.234375 -0.296875 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 0 0.5625 0 0.6875 0 L 4.171875 0 C 4.34375 0 4.34375 0 4.40625 -0.140625 C 4.46875 -0.328125 4.984375 -1.671875 4.984375 -1.71875 Z M 4.984375 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 5.53125 -0.140625 C 5.53125 -0.25 5.453125 -0.25 5.296875 -0.25 C 5.1875 -0.25 5.15625 -0.25 5.03125 -0.265625 C 4.875 -0.28125 4.875 -0.296875 4.875 -0.359375 C 4.875 -0.40625 4.90625 -0.484375 4.90625 -0.515625 L 5.828125 -4.171875 C 5.890625 -4.421875 5.890625 -4.484375 6.40625 -4.484375 C 6.5625 -4.484375 6.640625 -4.484375 6.640625 -4.625 C 6.640625 -4.65625 6.625 -4.734375 6.53125 -4.734375 C 6.328125 -4.734375 5.828125 -4.703125 5.625 -4.703125 C 5.515625 -4.703125 5.265625 -4.703125 5.15625 -4.703125 C 5.015625 -4.71875 4.84375 -4.734375 4.71875 -4.734375 C 4.671875 -4.734375 4.5625 -4.734375 4.5625 -4.578125 C 4.5625 -4.484375 4.65625 -4.484375 4.796875 -4.484375 C 4.796875 -4.484375 4.921875 -4.484375 5.046875 -4.46875 C 5.203125 -4.453125 5.21875 -4.4375 5.21875 -4.375 C 5.21875 -4.375 5.21875 -4.3125 5.1875 -4.21875 L 4.78125 -2.578125 L 2.453125 -2.578125 L 2.859375 -4.1875 C 2.921875 -4.421875 2.9375 -4.484375 3.46875 -4.484375 C 3.578125 -4.484375 3.671875 -4.484375 3.671875 -4.625 C 3.671875 -4.65625 3.65625 -4.734375 3.5625 -4.734375 C 3.359375 -4.734375 2.859375 -4.703125 2.65625 -4.703125 C 2.546875 -4.703125 2.296875 -4.703125 2.1875 -4.703125 C 2.046875 -4.71875 1.875 -4.734375 1.75 -4.734375 C 1.703125 -4.734375 1.59375 -4.734375 1.59375 -4.578125 C 1.59375 -4.484375 1.6875 -4.484375 1.828125 -4.484375 C 1.828125 -4.484375 1.953125 -4.484375 2.078125 -4.46875 C 2.234375 -4.453125 2.25 -4.4375 2.25 -4.375 C 2.25 -4.375 2.25 -4.3125 2.21875 -4.21875 L 1.296875 -0.546875 C 1.234375 -0.296875 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 -0.03125 0.53125 0 0.59375 0 C 0.796875 0 1.28125 -0.03125 1.484375 -0.03125 C 1.609375 -0.03125 1.84375 -0.03125 1.96875 -0.015625 C 2.109375 -0.015625 2.28125 0 2.40625 0 C 2.4375 0 2.546875 0 2.546875 -0.140625 C 2.546875 -0.25 2.484375 -0.25 2.328125 -0.25 C 2.21875 -0.25 2.1875 -0.25 2.0625 -0.265625 C 1.90625 -0.28125 1.90625 -0.296875 1.90625 -0.359375 C 1.90625 -0.359375 1.90625 -0.421875 1.9375 -0.515625 L 2.390625 -2.328125 L 4.71875 -2.328125 L 4.265625 -0.546875 C 4.203125 -0.296875 4.1875 -0.25 3.65625 -0.25 C 3.53125 -0.25 3.453125 -0.25 3.453125 -0.109375 C 3.453125 -0.03125 3.5 0 3.5625 0 C 3.765625 0 4.25 -0.03125 4.453125 -0.03125 C 4.578125 -0.03125 4.8125 -0.03125 4.9375 -0.015625 C 5.078125 -0.015625 5.25 0 5.375 0 C 5.40625 0 5.53125 0 5.53125 -0.140625 Z M 5.53125 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.84375 -2.609375 C 3.875 -2.703125 3.875 -2.71875 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.578125 -2.984375 3.4375 -2.953125 3.359375 -2.8125 C 3.34375 -2.78125 3.28125 -2.546875 3.25 -2.421875 L 3.109375 -1.84375 L 2.828125 -0.734375 C 2.828125 -0.734375 2.515625 -0.125 1.984375 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.875 -2.046875 C 1.953125 -2.265625 2 -2.34375 2 -2.46875 C 2 -2.796875 1.703125 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 0.328125 -2.109375 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.5625 -2.015625 C 0.734375 -2.59375 1.03125 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 1.421875 -2.3125 1.390625 -2.21875 C 1.0625 -1.375 0.984375 -1.109375 0.984375 -0.8125 C 0.984375 -0.6875 0.984375 -0.359375 1.265625 -0.140625 C 1.46875 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.703125 -0.25 C 2.609375 0.140625 2.546875 0.421875 2.25 0.78125 C 2.0625 0.984375 1.78125 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 0.984375 C 1.28125 0.953125 1.28125 0.609375 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1 0.34375 C 0.828125 0.34375 0.609375 0.484375 0.609375 0.796875 C 0.609375 1.15625 0.9375 1.40625 1.421875 1.40625 C 2.125 1.40625 2.96875 0.875 3.1875 0 Z M 3.84375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 5.421875 -1.734375 C 5.421875 -1.90625 5.265625 -1.90625 5.171875 -1.90625 L 1 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.171875 -1.5625 C 5.265625 -1.5625 5.421875 -1.5625 5.421875 -1.734375 Z M 5.421875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 2.0625 -3.484375 C 2.0625 -3.703125 1.875 -3.875 1.65625 -3.875 C 1.390625 -3.875 1.3125 -3.640625 1.28125 -3.546875 L 0.359375 -0.546875 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.671875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.34375 2.0625 -3.390625 2.0625 -3.484375 Z M 2.0625 -3.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 229 36 L 271 36 L 271 64.984375 L 229 64.984375 Z M 229 36 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 261 56 L 277.679688 56 L 277.679688 58 L 261 58 Z M 261 56 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 244 41 L 277 41 L 277 64.984375 L 244 64.984375 Z M 244 41 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 256 11 L 277.679688 11 L 277.679688 44 L 256 44 Z M 256 11 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.974802 0.000428424 C 6.974802 3.850491 3.853023 6.97227 -0.000977096 6.97227 C -3.85104 6.97227 -6.972819 3.850491 -6.972819 0.000428424 C -6.972819 -3.853571 -3.85104 -6.97535 -0.000977096 -6.97535 C 3.853023 -6.97535 6.974802 -3.853571 6.974802 0.000428424 Z M 6.974802 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="73.165935" y="30.492342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="67.803991" y="42.261888"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -56.063091 -8.502778 L -24.479189 -8.502778 L -24.479189 8.503635 L -56.063091 8.503635 Z M -56.063091 -8.502778 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="25.135271" y="31.241707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="33.352282" y="32.725155"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="39.270196" y="26.931274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="45.449079" y="26.931274"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.481172 -8.502778 L 90.428263 -8.502778 L 90.428263 8.503635 L 24.481172 8.503635 Z M 24.481172 -8.502778 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="105.055894" y="31.241707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="112.828366" y="27.654641"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="119.007248" y="27.654641"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="123.441715" y="31.241707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="131.658725" y="32.725155"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="139.15733" y="26.931274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="145.33522" y="26.931274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="149.77068" y="31.241707"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="157.98769" y="32.725155"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.43459 -8.502778 L 131.113745 -8.502778 L 131.113745 8.503635 L 108.43459 8.503635 Z M 108.43459 -8.502778 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="191.044264" y="31.314143"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="198.816736" y="27.727077"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.567736 0.000428424 C 162.567736 3.850491 159.445957 6.97227 155.591957 6.97227 C 151.741894 6.97227 148.620115 3.850491 148.620115 0.000428424 C 148.620115 -3.853571 151.741894 -6.97535 155.591957 -6.97535 C 159.445957 -6.97535 162.567736 -3.853571 162.567736 0.000428424 Z M 162.567736 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="227.555633" y="30.492342"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 257.003906 57.074219 C 257.003906 53.25 253.90625 50.152344 250.085938 50.152344 C 246.261719 50.152344 243.164062 53.25 243.164062 57.074219 C 243.164062 60.894531 246.261719 63.992188 250.085938 63.992188 C 253.90625 63.992188 257.003906 60.894531 257.003906 57.074219 Z M 257.003906 57.074219 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.9323 -29.705681 C 180.9323 -25.851682 177.810521 -22.729903 173.960458 -22.729903 C 170.106458 -22.729903 166.984679 -25.851682 166.984679 -29.705681 C 166.984679 -33.555744 170.106458 -36.677523 173.960458 -36.677523 C 177.810521 -36.677523 180.9323 -33.555744 180.9323 -29.705681 Z M 180.9323 -29.705681 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="245.780706" y="59.967804"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.974802 0.000428424 L 19.347755 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053944 0.000428424 L 1.609444 1.681386 L 3.085695 0.000428424 L 1.609444 -1.684466 Z M 6.053944 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,93.852212,27.598081)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.92822 0.000428424 L 103.301173 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052972 0.000428424 L 1.608472 1.681386 L 3.08866 0.000428424 L 1.608472 -1.684466 Z M 6.052972 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,177.157863,27.598081)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="175.12424" y="23.808592"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.609765 0.000428424 L 143.986655 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052477 0.000428424 L 1.607977 1.681386 L 3.088165 0.000428424 L 1.607977 -1.684466 Z M 6.052477 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,217.525542,27.598081)"/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.56576 -29.705681 L 200.777052 -29.705681 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 258.414062 57.074219 L 262.824219 58.742188 L 261.355469 57.074219 L 262.824219 55.402344 Z M 258.414062 57.074219 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051742 0.000431287 L 1.607242 1.681389 L 3.08743 0.000431287 L 1.607242 -1.684463 Z M 6.051742 0.000431287 " transform="matrix(-0.992273,0,0,0.992273,264.419041,57.073791)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="266.970988" y="53.285045"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.960458 0.000428424 L 173.960458 -18.096442 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053441 0.00125786 L 1.608941 1.682216 L 3.089129 0.00125786 L 1.608941 -1.683637 Z M 6.053441 0.00125786 " transform="matrix(0,0.992273,0.992273,0,250.084689,42.739429)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 252.0625 27.597656 C 252.0625 26.507812 251.175781 25.621094 250.085938 25.621094 C 248.992188 25.621094 248.109375 26.507812 248.109375 27.597656 C 248.109375 28.691406 248.992188 29.574219 250.085938 29.574219 C 251.175781 29.574219 252.0625 28.691406 252.0625 27.597656 Z M 252.0625 27.597656 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.567736 0.000428424 L 196.143592 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 275.285156 27.597656 L 270.875 25.929688 L 272.34375 27.597656 L 270.875 29.269531 Z M 275.285156 27.597656 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052214 0.000428424 L 1.607714 1.681386 L 3.087902 0.000428424 L 1.607714 -1.684466 Z M 6.052214 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,269.279709,27.598081)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="267.703285" y="21.88656"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -61.196508 0.000428424 L -76.403863 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052801 0.000428424 L 1.608301 1.681386 L 3.088489 0.000428424 L 1.608301 -1.684466 Z M 6.052801 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,13.93147,27.598081)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="5.445604" y="23.808592"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.983169 0.000428424 L -11.606279 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052013 0.000428424 L 1.607513 1.681386 L 3.087701 0.000428424 L 1.607513 -1.684466 Z M 6.052013 0.000428424 " transform="matrix(0.992273,0,0,-0.992273,63.135377,27.598081)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.984679 -29.705681 L -0.000977096 -29.705681 L -0.000977096 -11.608811 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053419 0.000977096 L 1.608918 1.681935 L 3.089106 0.000977096 L 1.608918 -1.683918 Z M 6.053419 0.000977096 " transform="matrix(0,-0.992273,-0.992273,0,77.46972,41.932423)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.591957 11.605731 L 155.591957 26.817023 " transform="matrix(0.992273,0,0,-0.992273,77.46972,27.598081)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052572 -0.00051306 L 1.608072 1.684382 L 3.088259 -0.00051306 L 1.608072 -1.681471 Z M 6.052572 -0.00051306 " transform="matrix(0,0.992273,0.992273,0,231.859884,13.263729)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="235.648907" y="11.643328"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="240.793841" y="13.126776"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,26 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
\node[addb={+}{}{}{}{-}] (addfb) at (0, 0){};
\node[block, left=of addfb] (Kr){${H_H}^{-1}$};
\node[block, right=of addfb] (K){$G^{-1} {H_L}^{-1} H_H$};
\node[block, right=of K] (G){$G^\prime$};
\node[addb={+}{}{}{}{}, right=of G] (adddy){};
\node[addb={+}{}{}{}{}, below right=0.7 and 0.3 of adddy] (addn) {};
\draw[->] (addfb.east) -- (K.west) node[above left]{};
\draw[->] (K.east) -- (G.west) node[above left]{$u$};
\draw[->] (G.east) -- (adddy.west);
\draw[<-] (addn.east) -- ++(\cdist, 0) coordinate[](endpos) node[above left]{$n$};
\draw[->] (G-|addn)node[branch]{} -- (addn.north);
\draw[->] (adddy.east) -- (G-|endpos) node[above left]{$y$};
\draw[<-] (Kr.west) -- ++(-\cdist, 0) node[above right]{$r$};
\draw[->] (Kr.east) -- (addfb.west);
\draw[->] (addn.west) -| (addfb.south);
\draw[<-] (adddy.north) -- ++(0, \cdist) node[below right]{$d_y$};
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="227pt" height="67.02pt" viewBox="0 0 227 67.02" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.984375 -2.953125 C 7.984375 -3.171875 7.796875 -3.171875 7.625 -3.171875 L 4.484375 -3.171875 L 4.484375 -6.3125 C 4.484375 -6.484375 4.484375 -6.6875 4.28125 -6.6875 C 4.0625 -6.6875 4.0625 -6.5 4.0625 -6.3125 L 4.0625 -3.171875 L 0.921875 -3.171875 C 0.75 -3.171875 0.546875 -3.171875 0.546875 -2.96875 C 0.546875 -2.75 0.734375 -2.75 0.921875 -2.75 L 4.0625 -2.75 L 4.0625 0.390625 C 4.0625 0.5625 4.0625 0.765625 4.265625 0.765625 C 4.484375 0.765625 4.484375 0.5625 4.484375 0.390625 L 4.484375 -2.75 L 7.625 -2.75 C 7.796875 -2.75 7.984375 -2.75 7.984375 -2.953125 Z M 7.984375 -2.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 6.8125 -2.453125 C 6.8125 -2.65625 6.625 -2.65625 6.484375 -2.65625 L 1.140625 -2.65625 C 1 -2.65625 0.8125 -2.65625 0.8125 -2.453125 C 0.8125 -2.25 1 -2.25 1.140625 -2.25 L 6.484375 -2.25 C 6.625 -2.25 6.8125 -2.25 6.8125 -2.453125 Z M 6.8125 -2.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 7.265625 -0.203125 C 7.265625 -0.296875 7.15625 -0.296875 7.0625 -0.296875 C 6.65625 -0.3125 6.53125 -0.40625 6.390625 -0.75 L 5 -3.96875 C 4.984375 -4 4.953125 -4.078125 4.953125 -4.109375 C 4.953125 -4.109375 5.125 -4.25 5.234375 -4.328125 L 6.953125 -5.65625 C 7.875 -6.328125 8.25 -6.375 8.546875 -6.390625 C 8.625 -6.40625 8.71875 -6.421875 8.71875 -6.59375 C 8.71875 -6.640625 8.6875 -6.703125 8.609375 -6.703125 C 8.40625 -6.703125 8.15625 -6.671875 7.921875 -6.671875 C 7.5625 -6.671875 7.1875 -6.703125 6.828125 -6.703125 C 6.765625 -6.703125 6.640625 -6.703125 6.640625 -6.5 C 6.640625 -6.4375 6.6875 -6.40625 6.765625 -6.390625 C 6.984375 -6.375 7.0625 -6.328125 7.0625 -6.1875 C 7.0625 -6.015625 6.765625 -5.796875 6.71875 -5.734375 L 2.890625 -2.796875 L 3.671875 -5.953125 C 3.765625 -6.296875 3.78125 -6.390625 4.5 -6.390625 C 4.734375 -6.390625 4.828125 -6.390625 4.828125 -6.59375 C 4.828125 -6.6875 4.75 -6.703125 4.6875 -6.703125 L 3.4375 -6.671875 L 2.171875 -6.703125 C 2.09375 -6.703125 1.96875 -6.703125 1.96875 -6.515625 C 1.96875 -6.390625 2.0625 -6.390625 2.25 -6.390625 C 2.390625 -6.390625 2.5625 -6.390625 2.671875 -6.375 C 2.828125 -6.359375 2.890625 -6.328125 2.890625 -6.21875 C 2.890625 -6.1875 2.890625 -6.15625 2.859375 -6.03125 L 1.546875 -0.765625 C 1.4375 -0.375 1.421875 -0.296875 0.640625 -0.296875 C 0.484375 -0.296875 0.375 -0.296875 0.375 -0.125 C 0.375 0 0.484375 0 0.515625 0 L 1.765625 -0.03125 L 2.390625 -0.015625 C 2.609375 -0.015625 2.828125 0 3.03125 0 C 3.09375 0 3.234375 0 3.234375 -0.203125 C 3.234375 -0.296875 3.140625 -0.296875 2.953125 -0.296875 C 2.59375 -0.296875 2.3125 -0.296875 2.3125 -0.484375 C 2.3125 -0.546875 2.375 -0.765625 2.40625 -0.90625 L 2.796875 -2.453125 L 4.265625 -3.59375 L 5.390625 -0.953125 C 5.515625 -0.6875 5.515625 -0.671875 5.515625 -0.609375 C 5.515625 -0.3125 5.09375 -0.296875 5 -0.296875 C 4.890625 -0.296875 4.78125 -0.296875 4.78125 -0.109375 C 4.78125 0 4.921875 0 4.921875 0 C 5.3125 0 5.734375 -0.03125 6.125 -0.03125 C 6.34375 -0.03125 6.875 0 7.078125 0 C 7.140625 0 7.265625 0 7.265625 -0.203125 Z M 7.265625 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 7.078125 -2.578125 C 7.078125 -2.640625 7.03125 -2.671875 6.953125 -2.671875 C 6.71875 -2.671875 6.140625 -2.65625 5.921875 -2.65625 L 4.546875 -2.671875 C 4.453125 -2.671875 4.34375 -2.671875 4.34375 -2.484375 C 4.34375 -2.375 4.421875 -2.375 4.625 -2.375 C 4.625 -2.375 4.921875 -2.375 5.15625 -2.359375 C 5.40625 -2.328125 5.453125 -2.296875 5.453125 -2.171875 C 5.453125 -2.078125 5.34375 -1.640625 5.25 -1.28125 C 4.96875 -0.203125 3.703125 -0.09375 3.359375 -0.09375 C 2.40625 -0.09375 1.390625 -0.640625 1.390625 -2.15625 C 1.390625 -2.453125 1.484375 -4.078125 2.515625 -5.34375 C 3.046875 -6.015625 4 -6.609375 4.96875 -6.609375 C 5.96875 -6.609375 6.546875 -5.859375 6.546875 -4.71875 C 6.546875 -4.328125 6.515625 -4.3125 6.515625 -4.21875 C 6.515625 -4.125 6.625 -4.125 6.65625 -4.125 C 6.796875 -4.125 6.796875 -4.140625 6.84375 -4.3125 L 7.453125 -6.8125 C 7.453125 -6.84375 7.4375 -6.921875 7.34375 -6.921875 C 7.3125 -6.921875 7.3125 -6.90625 7.203125 -6.796875 L 6.515625 -6.046875 C 6.421875 -6.1875 5.96875 -6.921875 4.890625 -6.921875 C 2.703125 -6.921875 0.484375 -4.75 0.484375 -2.46875 C 0.484375 -0.90625 1.578125 0.21875 3.171875 0.21875 C 3.59375 0.21875 4.046875 0.125 4.390625 -0.015625 C 4.890625 -0.21875 5.078125 -0.421875 5.25 -0.625 C 5.34375 -0.375 5.59375 -0.015625 5.6875 -0.015625 C 5.734375 -0.015625 5.765625 -0.046875 5.765625 -0.046875 C 5.78125 -0.0625 5.875 -0.4375 5.921875 -0.640625 L 6.109375 -1.40625 C 6.15625 -1.5625 6.203125 -1.734375 6.234375 -1.90625 C 6.34375 -2.34375 6.359375 -2.359375 6.921875 -2.375 C 6.96875 -2.375 7.078125 -2.390625 7.078125 -2.578125 Z M 7.078125 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 7.046875 -0.203125 C 7.046875 -0.296875 6.953125 -0.296875 6.765625 -0.296875 C 6.40625 -0.296875 6.140625 -0.296875 6.140625 -0.484375 C 6.140625 -0.546875 6.15625 -0.59375 6.15625 -0.640625 L 7.484375 -5.953125 C 7.578125 -6.296875 7.59375 -6.390625 8.3125 -6.390625 C 8.5625 -6.390625 8.640625 -6.390625 8.640625 -6.59375 C 8.640625 -6.703125 8.53125 -6.703125 8.5 -6.703125 L 7.25 -6.671875 L 5.984375 -6.703125 C 5.90625 -6.703125 5.796875 -6.703125 5.796875 -6.5 C 5.796875 -6.390625 5.890625 -6.390625 6.078125 -6.390625 C 6.078125 -6.390625 6.28125 -6.390625 6.453125 -6.375 C 6.625 -6.359375 6.71875 -6.34375 6.71875 -6.21875 C 6.71875 -6.1875 6.703125 -6.15625 6.671875 -6.03125 L 6.078125 -3.640625 L 3.09375 -3.640625 L 3.671875 -5.953125 C 3.765625 -6.296875 3.78125 -6.390625 4.5 -6.390625 C 4.75 -6.390625 4.828125 -6.390625 4.828125 -6.59375 C 4.828125 -6.703125 4.71875 -6.703125 4.6875 -6.703125 L 3.4375 -6.671875 L 2.171875 -6.703125 C 2.09375 -6.703125 1.984375 -6.703125 1.984375 -6.5 C 1.984375 -6.390625 2.078125 -6.390625 2.25 -6.390625 C 2.25 -6.390625 2.46875 -6.390625 2.625 -6.375 C 2.8125 -6.359375 2.890625 -6.34375 2.890625 -6.21875 C 2.890625 -6.1875 2.890625 -6.15625 2.859375 -6.03125 L 1.546875 -0.765625 C 1.4375 -0.375 1.421875 -0.296875 0.640625 -0.296875 C 0.46875 -0.296875 0.375 -0.296875 0.375 -0.109375 C 0.375 0 0.515625 0 0.515625 0 L 1.765625 -0.03125 L 2.390625 -0.015625 C 2.609375 -0.015625 2.828125 0 3.03125 0 C 3.109375 0 3.234375 0 3.234375 -0.203125 C 3.234375 -0.296875 3.140625 -0.296875 2.953125 -0.296875 C 2.59375 -0.296875 2.3125 -0.296875 2.3125 -0.484375 C 2.3125 -0.546875 2.328125 -0.59375 2.34375 -0.640625 L 3.015625 -3.34375 L 6 -3.34375 L 5.328125 -0.625 C 5.234375 -0.3125 5.046875 -0.296875 4.4375 -0.296875 C 4.28125 -0.296875 4.203125 -0.296875 4.203125 -0.109375 C 4.203125 0 4.34375 0 4.34375 0 L 5.578125 -0.03125 L 6.21875 -0.015625 C 6.421875 -0.015625 6.640625 0 6.84375 0 C 6.921875 0 7.046875 0 7.046875 -0.203125 Z M 7.046875 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 5.328125 -1.40625 C 5.328125 -1.5 5.234375 -1.5 5.203125 -1.5 C 5.109375 -1.5 5.109375 -1.46875 5.078125 -1.328125 C 4.9375 -0.78125 4.75 -0.109375 4.34375 -0.109375 C 4.125 -0.109375 4.03125 -0.234375 4.03125 -0.5625 C 4.03125 -0.78125 4.15625 -1.234375 4.234375 -1.578125 L 4.5 -2.640625 C 4.53125 -2.78125 4.625 -3.15625 4.671875 -3.3125 C 4.71875 -3.53125 4.8125 -3.90625 4.8125 -3.96875 C 4.8125 -4.140625 4.6875 -4.234375 4.53125 -4.234375 C 4.484375 -4.234375 4.234375 -4.21875 4.15625 -3.890625 L 3.421875 -0.9375 C 3.40625 -0.890625 3.015625 -0.109375 2.296875 -0.109375 C 1.78125 -0.109375 1.6875 -0.546875 1.6875 -0.90625 C 1.6875 -1.46875 1.96875 -2.234375 2.21875 -2.921875 C 2.328125 -3.203125 2.390625 -3.34375 2.390625 -3.53125 C 2.390625 -3.96875 2.078125 -4.34375 1.578125 -4.34375 C 0.640625 -4.34375 0.28125 -2.921875 0.28125 -2.828125 C 0.28125 -2.734375 0.40625 -2.734375 0.40625 -2.734375 C 0.5 -2.734375 0.515625 -2.75 0.5625 -2.90625 C 0.796875 -3.765625 1.171875 -4.125 1.546875 -4.125 C 1.640625 -4.125 1.796875 -4.109375 1.796875 -3.796875 C 1.796875 -3.5625 1.6875 -3.28125 1.625 -3.125 C 1.265625 -2.15625 1.0625 -1.546875 1.0625 -1.0625 C 1.0625 -0.140625 1.734375 0.109375 2.265625 0.109375 C 2.921875 0.109375 3.265625 -0.328125 3.4375 -0.546875 C 3.546875 -0.140625 3.890625 0.109375 4.3125 0.109375 C 4.65625 0.109375 4.875 -0.125 5.03125 -0.4375 C 5.203125 -0.78125 5.328125 -1.40625 5.328125 -1.40625 Z M 5.328125 -1.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 5.609375 -1.40625 C 5.609375 -1.5 5.515625 -1.5 5.484375 -1.5 C 5.390625 -1.5 5.390625 -1.46875 5.34375 -1.328125 C 5.140625 -0.65625 4.8125 -0.109375 4.34375 -0.109375 C 4.171875 -0.109375 4.109375 -0.203125 4.109375 -0.4375 C 4.109375 -0.671875 4.1875 -0.90625 4.28125 -1.125 C 4.46875 -1.65625 4.875 -2.734375 4.875 -3.28125 C 4.875 -3.9375 4.453125 -4.34375 3.75 -4.34375 C 2.859375 -4.34375 2.390625 -3.703125 2.21875 -3.484375 C 2.171875 -4.03125 1.765625 -4.34375 1.3125 -4.34375 C 0.859375 -4.34375 0.671875 -3.953125 0.578125 -3.78125 C 0.421875 -3.4375 0.28125 -2.859375 0.28125 -2.828125 C 0.28125 -2.734375 0.40625 -2.734375 0.40625 -2.734375 C 0.5 -2.734375 0.515625 -2.734375 0.5625 -2.953125 C 0.734375 -3.65625 0.9375 -4.125 1.28125 -4.125 C 1.484375 -4.125 1.59375 -4 1.59375 -3.671875 C 1.59375 -3.46875 1.5625 -3.359375 1.4375 -2.84375 L 0.859375 -0.578125 C 0.828125 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.90625 0.109375 1.0625 0.109375 C 1.171875 0.109375 1.359375 0.03125 1.421875 -0.171875 C 1.4375 -0.1875 1.546875 -0.640625 1.609375 -0.890625 L 1.828125 -1.78125 C 1.890625 -1.984375 1.9375 -2.203125 1.984375 -2.4375 L 2.125 -2.921875 C 2.265625 -3.234375 2.78125 -4.125 3.71875 -4.125 C 4.15625 -4.125 4.25 -3.765625 4.25 -3.4375 C 4.25 -2.828125 3.765625 -1.5625 3.609375 -1.140625 C 3.515625 -0.921875 3.515625 -0.796875 3.515625 -0.703125 C 3.515625 -0.234375 3.859375 0.109375 4.3125 0.109375 C 5.234375 0.109375 5.609375 -1.328125 5.609375 -1.40625 Z M 5.609375 -1.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 4.765625 -3.734375 C 4.8125 -3.875 4.8125 -3.890625 4.8125 -3.96875 C 4.8125 -4.140625 4.671875 -4.234375 4.53125 -4.234375 C 4.421875 -4.234375 4.265625 -4.171875 4.1875 -4.015625 C 4.15625 -3.96875 4.078125 -3.671875 4.046875 -3.5 L 3.84375 -2.703125 L 3.40625 -0.9375 C 3.359375 -0.796875 2.9375 -0.109375 2.296875 -0.109375 C 1.796875 -0.109375 1.6875 -0.546875 1.6875 -0.90625 C 1.6875 -1.359375 1.859375 -1.96875 2.1875 -2.828125 C 2.34375 -3.234375 2.390625 -3.34375 2.390625 -3.53125 C 2.390625 -3.96875 2.078125 -4.34375 1.578125 -4.34375 C 0.640625 -4.34375 0.28125 -2.921875 0.28125 -2.828125 C 0.28125 -2.734375 0.40625 -2.734375 0.40625 -2.734375 C 0.5 -2.734375 0.515625 -2.75 0.5625 -2.90625 C 0.828125 -3.828125 1.21875 -4.125 1.546875 -4.125 C 1.625 -4.125 1.796875 -4.125 1.796875 -3.8125 C 1.796875 -3.5625 1.703125 -3.3125 1.625 -3.125 C 1.234375 -2.078125 1.0625 -1.515625 1.0625 -1.0625 C 1.0625 -0.1875 1.671875 0.109375 2.25 0.109375 C 2.640625 0.109375 2.96875 -0.0625 3.25 -0.328125 C 3.125 0.171875 3 0.65625 2.609375 1.171875 C 2.359375 1.515625 1.984375 1.796875 1.53125 1.796875 C 1.390625 1.796875 0.953125 1.765625 0.78125 1.390625 C 0.9375 1.390625 1.0625 1.390625 1.203125 1.265625 C 1.3125 1.171875 1.40625 1.046875 1.40625 0.859375 C 1.40625 0.5625 1.140625 0.515625 1.046875 0.515625 C 0.8125 0.515625 0.484375 0.671875 0.484375 1.15625 C 0.484375 1.65625 0.921875 2.015625 1.53125 2.015625 C 2.546875 2.015625 3.546875 1.125 3.828125 0.015625 Z M 4.765625 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 4.28125 -3.703125 C 4.28125 -4.046875 3.96875 -4.34375 3.46875 -4.34375 C 2.828125 -4.34375 2.390625 -3.859375 2.203125 -3.578125 C 2.125 -4.015625 1.78125 -4.34375 1.3125 -4.34375 C 0.859375 -4.34375 0.671875 -3.953125 0.59375 -3.78125 C 0.40625 -3.4375 0.28125 -2.859375 0.28125 -2.828125 C 0.28125 -2.734375 0.40625 -2.734375 0.40625 -2.734375 C 0.5 -2.734375 0.515625 -2.734375 0.5625 -2.953125 C 0.734375 -3.65625 0.9375 -4.125 1.28125 -4.125 C 1.453125 -4.125 1.59375 -4.046875 1.59375 -3.671875 C 1.59375 -3.46875 1.5625 -3.359375 1.4375 -2.84375 L 0.859375 -0.578125 C 0.828125 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.90625 0.109375 1.0625 0.109375 C 1.171875 0.109375 1.359375 0.03125 1.421875 -0.171875 C 1.4375 -0.203125 1.78125 -1.546875 1.8125 -1.71875 L 2.125 -3 C 2.171875 -3.125 2.4375 -3.578125 2.671875 -3.796875 C 2.75 -3.859375 3.046875 -4.125 3.46875 -4.125 C 3.71875 -4.125 3.875 -4 3.875 -4 C 3.578125 -3.953125 3.359375 -3.71875 3.359375 -3.46875 C 3.359375 -3.3125 3.46875 -3.125 3.734375 -3.125 C 4 -3.125 4.28125 -3.34375 4.28125 -3.703125 Z M 4.28125 -3.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 4.890625 -1.40625 C 4.890625 -1.5 4.796875 -1.5 4.765625 -1.5 C 4.671875 -1.5 4.65625 -1.46875 4.625 -1.328125 C 4.46875 -0.6875 4.28125 -0.109375 3.890625 -0.109375 C 3.625 -0.109375 3.59375 -0.359375 3.59375 -0.5625 C 3.59375 -0.796875 3.609375 -0.859375 3.65625 -1.03125 L 5.0625 -6.703125 C 5.0625 -6.703125 5.0625 -6.8125 4.9375 -6.8125 C 4.78125 -6.8125 3.859375 -6.71875 3.6875 -6.703125 C 3.609375 -6.6875 3.546875 -6.640625 3.546875 -6.515625 C 3.546875 -6.390625 3.640625 -6.390625 3.78125 -6.390625 C 4.265625 -6.390625 4.28125 -6.328125 4.28125 -6.234375 L 4.25 -6.03125 L 3.65625 -3.703125 C 3.484375 -4.078125 3.203125 -4.34375 2.75 -4.34375 C 1.609375 -4.34375 0.390625 -2.890625 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.703125 0.109375 C 1.890625 0.109375 2.390625 0.0625 2.96875 -0.625 C 3.046875 -0.21875 3.390625 0.109375 3.859375 0.109375 C 4.203125 0.109375 4.4375 -0.125 4.59375 -0.4375 C 4.765625 -0.78125 4.890625 -1.40625 4.890625 -1.40625 Z M 3.515625 -3.09375 L 3.015625 -1.171875 C 2.96875 -0.984375 2.96875 -0.96875 2.828125 -0.796875 C 2.390625 -0.265625 1.984375 -0.109375 1.71875 -0.109375 C 1.234375 -0.109375 1.09375 -0.640625 1.09375 -1.03125 C 1.09375 -1.515625 1.40625 -2.734375 1.625 -3.171875 C 1.9375 -3.765625 2.375 -4.125 2.765625 -4.125 C 3.40625 -4.125 3.546875 -3.3125 3.546875 -3.25 C 3.546875 -3.203125 3.515625 -3.140625 3.515625 -3.09375 Z M 3.515625 -3.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 3.515625 -2.53125 C 3.515625 -2.890625 3.140625 -3.03125 2.796875 -3.03125 C 2.4375 -3.03125 2.125 -2.890625 1.828125 -2.546875 C 1.703125 -2.96875 1.28125 -3.03125 1.109375 -3.03125 C 0.859375 -3.03125 0.6875 -2.875 0.578125 -2.6875 C 0.421875 -2.40625 0.328125 -2.015625 0.328125 -1.984375 C 0.328125 -1.890625 0.421875 -1.890625 0.4375 -1.890625 C 0.53125 -1.890625 0.546875 -1.90625 0.59375 -2.09375 C 0.6875 -2.515625 0.828125 -2.84375 1.09375 -2.84375 C 1.265625 -2.84375 1.3125 -2.6875 1.3125 -2.5 C 1.3125 -2.375 1.265625 -2.125 1.203125 -1.9375 L 1.0625 -1.3125 L 0.84375 -0.4375 C 0.8125 -0.34375 0.765625 -0.171875 0.765625 -0.15625 C 0.765625 0 0.890625 0.0625 1 0.0625 C 1.109375 0.0625 1.25 0 1.296875 -0.125 C 1.3125 -0.171875 1.390625 -0.46875 1.4375 -0.640625 L 1.609375 -1.390625 C 1.625 -1.4375 1.78125 -2.046875 1.796875 -2.078125 C 1.8125 -2.140625 2 -2.484375 2.234375 -2.640625 C 2.296875 -2.703125 2.484375 -2.84375 2.78125 -2.84375 C 2.859375 -2.84375 3.03125 -2.828125 3.15625 -2.75 C 2.9375 -2.6875 2.859375 -2.484375 2.859375 -2.359375 C 2.859375 -2.21875 2.984375 -2.109375 3.140625 -2.109375 C 3.296875 -2.109375 3.515625 -2.234375 3.515625 -2.53125 Z M 3.515625 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 5.484375 -0.140625 C 5.484375 -0.25 5.421875 -0.25 5.265625 -0.25 C 5.15625 -0.25 5.125 -0.25 5 -0.265625 C 4.84375 -0.28125 4.84375 -0.296875 4.84375 -0.359375 C 4.84375 -0.40625 4.875 -0.46875 4.875 -0.515625 L 5.78125 -4.140625 C 5.84375 -4.390625 5.859375 -4.453125 6.359375 -4.453125 C 6.515625 -4.453125 6.59375 -4.453125 6.59375 -4.59375 C 6.59375 -4.625 6.578125 -4.703125 6.484375 -4.703125 C 6.296875 -4.703125 5.78125 -4.671875 5.59375 -4.671875 C 5.46875 -4.671875 5.234375 -4.671875 5.109375 -4.671875 C 4.984375 -4.6875 4.8125 -4.703125 4.6875 -4.703125 C 4.640625 -4.703125 4.53125 -4.703125 4.53125 -4.546875 C 4.53125 -4.453125 4.625 -4.453125 4.75 -4.453125 C 4.75 -4.453125 4.890625 -4.453125 5.015625 -4.4375 C 5.15625 -4.421875 5.171875 -4.40625 5.171875 -4.34375 C 5.171875 -4.34375 5.171875 -4.296875 5.15625 -4.1875 L 4.75 -2.5625 L 2.4375 -2.5625 L 2.84375 -4.15625 C 2.90625 -4.390625 2.921875 -4.453125 3.4375 -4.453125 C 3.5625 -4.453125 3.65625 -4.453125 3.65625 -4.59375 C 3.65625 -4.625 3.625 -4.703125 3.546875 -4.703125 C 3.34375 -4.703125 2.84375 -4.671875 2.640625 -4.671875 C 2.515625 -4.671875 2.28125 -4.671875 2.171875 -4.671875 C 2.03125 -4.6875 1.859375 -4.703125 1.734375 -4.703125 C 1.6875 -4.703125 1.59375 -4.703125 1.59375 -4.546875 C 1.59375 -4.453125 1.671875 -4.453125 1.8125 -4.453125 C 1.8125 -4.453125 1.953125 -4.453125 2.0625 -4.4375 C 2.21875 -4.421875 2.234375 -4.40625 2.234375 -4.34375 C 2.234375 -4.34375 2.234375 -4.296875 2.203125 -4.1875 L 1.28125 -0.53125 C 1.234375 -0.296875 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.46875 -0.25 0.46875 -0.109375 C 0.46875 -0.03125 0.515625 0 0.578125 0 C 0.78125 0 1.28125 -0.03125 1.484375 -0.03125 C 1.59375 -0.03125 1.828125 -0.03125 1.953125 -0.015625 C 2.09375 -0.015625 2.265625 0 2.390625 0 C 2.421875 0 2.53125 0 2.53125 -0.140625 C 2.53125 -0.25 2.46875 -0.25 2.3125 -0.25 C 2.203125 -0.25 2.171875 -0.25 2.046875 -0.265625 C 1.890625 -0.28125 1.890625 -0.296875 1.890625 -0.359375 C 1.890625 -0.359375 1.890625 -0.40625 1.921875 -0.515625 L 2.375 -2.3125 L 4.6875 -2.3125 L 4.234375 -0.53125 C 4.1875 -0.296875 4.171875 -0.25 3.625 -0.25 C 3.515625 -0.25 3.421875 -0.25 3.421875 -0.109375 C 3.421875 -0.03125 3.46875 0 3.53125 0 C 3.734375 0 4.234375 -0.03125 4.421875 -0.03125 C 4.546875 -0.03125 4.78125 -0.03125 4.90625 -0.015625 C 5.046875 -0.015625 5.21875 0 5.34375 0 C 5.375 0 5.484375 0 5.484375 -0.140625 Z M 5.484375 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.828125 -2.59375 C 3.84375 -2.6875 3.84375 -2.703125 3.84375 -2.75 C 3.84375 -2.875 3.734375 -2.96875 3.625 -2.96875 C 3.546875 -2.96875 3.421875 -2.921875 3.34375 -2.796875 C 3.328125 -2.75 3.265625 -2.53125 3.234375 -2.40625 L 3.09375 -1.828125 L 2.8125 -0.71875 C 2.8125 -0.71875 2.5 -0.125 1.96875 -0.125 C 1.5 -0.125 1.5 -0.578125 1.5 -0.6875 C 1.5 -1.0625 1.65625 -1.5 1.859375 -2.03125 C 1.953125 -2.25 1.984375 -2.328125 1.984375 -2.453125 C 1.984375 -2.78125 1.703125 -3.03125 1.328125 -3.03125 C 0.625 -3.03125 0.328125 -2.09375 0.328125 -1.984375 C 0.328125 -1.890625 0.421875 -1.890625 0.4375 -1.890625 C 0.53125 -1.890625 0.546875 -1.921875 0.5625 -2 C 0.734375 -2.578125 1.03125 -2.84375 1.3125 -2.84375 C 1.421875 -2.84375 1.484375 -2.765625 1.484375 -2.59375 C 1.484375 -2.4375 1.421875 -2.296875 1.375 -2.203125 C 1.046875 -1.359375 0.984375 -1.109375 0.984375 -0.796875 C 0.984375 -0.6875 0.984375 -0.359375 1.25 -0.140625 C 1.46875 0.03125 1.75 0.0625 1.9375 0.0625 C 2.21875 0.0625 2.46875 -0.03125 2.6875 -0.234375 C 2.59375 0.140625 2.515625 0.421875 2.234375 0.765625 C 2.046875 0.984375 1.78125 1.203125 1.40625 1.203125 C 1.359375 1.203125 1.03125 1.203125 0.890625 0.984375 C 1.265625 0.9375 1.265625 0.609375 1.265625 0.609375 C 1.265625 0.390625 1.0625 0.34375 1 0.34375 C 0.828125 0.34375 0.59375 0.484375 0.59375 0.796875 C 0.59375 1.140625 0.921875 1.40625 1.421875 1.40625 C 2.109375 1.40625 2.953125 0.859375 3.171875 0 Z M 3.828125 -2.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 2.0625 -3.46875 C 2.0625 -3.671875 1.875 -3.84375 1.65625 -3.84375 C 1.375 -3.84375 1.3125 -3.609375 1.28125 -3.53125 L 0.359375 -0.546875 L 0.328125 -0.4375 C 0.328125 -0.34375 0.546875 -0.28125 0.59375 -0.28125 C 0.65625 -0.28125 0.671875 -0.3125 0.703125 -0.390625 L 2 -3.25 C 2.03125 -3.328125 2.0625 -3.375 2.0625 -3.46875 Z M 2.0625 -3.46875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 177 35 L 219 35 L 219 66.054688 L 177 66.054688 Z M 177 35 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 192 41 L 225 41 L 225 66.054688 L 192 66.054688 Z M 192 41 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 204 11 L 225.363281 11 L 225.363281 43 L 204 43 Z M 204 11 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 161 41 L 194 41 L 194 66.054688 L 161 66.054688 Z M 161 41 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.975473 -0.00192465 C 6.975473 3.85047 3.852338 6.973605 -0.0000566249 6.973605 C -3.852451 6.973605 -6.975586 3.85047 -6.975586 -0.00192465 C -6.975586 -3.850356 -3.852451 -6.973491 -0.0000566249 -6.973491 C 3.852338 -6.973491 6.975473 -3.850356 6.975473 -0.00192465 Z M 6.975473 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="64.869302" y="30.286929"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="59.543972" y="41.977189"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -47.156223 -8.503351 L -24.481788 -8.503351 L -24.481788 8.503466 L -47.156223 8.503466 Z M -47.156223 -8.503351 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="27.497571" y="30.030874"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="35.836633" y="31.504328"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.481675 -8.503351 L 47.156109 -8.503351 L 47.156109 8.503466 L 24.481675 8.503466 Z M 24.481675 -8.503351 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="99.926479" y="30.767108"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.161695 -8.503351 L 87.840094 -8.503351 L 87.840094 8.503466 L 65.161695 8.503466 Z M 65.161695 -8.503351 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="139.305657" y="31.103194"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="147.025769" y="27.540292"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.293391 -0.00192465 C 119.293391 3.85047 116.170256 6.973605 112.321825 6.973605 C 108.46943 6.973605 105.346295 3.85047 105.346295 -0.00192465 C 105.346295 -3.850356 108.46943 -6.973491 112.321825 -6.973491 C 116.170256 -6.973491 119.293391 -3.850356 119.293391 -0.00192465 Z M 119.293391 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="175.570573" y="30.286929"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 204.820312 56.6875 C 204.820312 52.894531 201.742188 49.816406 197.949219 49.816406 C 194.152344 49.816406 191.074219 52.894531 191.074219 56.6875 C 191.074219 60.484375 194.152344 63.5625 197.949219 63.5625 C 201.742188 63.5625 204.820312 60.484375 204.820312 56.6875 Z M 204.820312 56.6875 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.659644 -29.703413 C 137.659644 -25.854982 134.536509 -22.731847 130.688078 -22.731847 C 126.835683 -22.731847 123.712548 -25.854982 123.712548 -29.703413 C 123.712548 -33.555808 126.835683 -36.678943 130.688078 -36.678943 C 134.536509 -36.678943 137.659644 -33.555808 137.659644 -29.703413 Z M 137.659644 -29.703413 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="193.672872" y="59.563828"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 83.527948 -38.208803 L 106.206346 -38.208803 L 106.206346 -21.201986 L 83.527948 -21.201986 Z M 83.527948 -38.208803 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="154.840499" y="59.307772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="163.002155" y="60.781226"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.975473 -0.00192465 L 19.349112 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053334 -0.00192465 L 1.610397 1.682507 L 3.088734 -0.00192465 L 1.610397 -1.682393 Z M 6.053334 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,85.416718,27.412166)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 47.655494 -0.00192465 L 60.029132 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055278 -0.00192465 L 1.608378 1.682507 L 3.086715 -0.00192465 L 1.608378 -1.682393 Z M 6.055278 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,125.512458,27.412166)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="123.491894" y="23.648204"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 88.339478 -0.00192465 L 100.713117 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053249 -0.00192465 L 1.610312 1.682507 L 3.088649 -0.00192465 L 1.610312 -1.682393 Z M 6.053249 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,165.608208,27.412166)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.292822 -29.703413 L 157.504233 -29.703413 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 206.21875 56.6875 L 210.601562 58.347656 L 209.144531 56.6875 L 210.601562 55.03125 Z M 206.21875 56.6875 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05431 -0.00183699 L 1.60741 1.682595 L 3.085747 -0.00183699 L 1.60741 -1.682306 Z M 6.05431 -0.00183699 " transform="matrix(-0.985588,0,0,0.985588,212.185807,56.689311)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="214.720897" y="52.926088"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.688078 -0.00192465 L 130.688078 -18.098668 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053701 0.00121751 L 1.6068 1.681686 L 3.0891 0.00121751 L 1.6068 -1.683214 Z M 6.053701 0.00121751 " transform="matrix(0,0.985588,0.985588,0,197.948019,42.451513)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 199.910156 27.414062 C 199.910156 26.328125 199.03125 25.449219 197.949219 25.449219 C 196.863281 25.449219 195.984375 26.328125 195.984375 27.414062 C 195.984375 28.496094 196.863281 29.375 197.949219 29.375 C 199.03125 29.375 199.910156 28.496094 199.910156 27.414062 Z M 199.910156 27.414062 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.293391 -0.00192465 L 152.871055 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 222.980469 27.414062 L 218.597656 25.753906 L 220.058594 27.414062 L 218.597656 29.070312 Z M 222.980469 27.414062 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053987 -0.00192465 L 1.607087 1.682507 L 3.089387 -0.00192465 L 1.607087 -1.682393 Z M 6.053987 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,217.01373,27.412166)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="215.448261" y="21.73912"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -52.288786 -0.00192465 L -67.500197 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053507 -0.00192465 L 1.61057 1.682507 L 3.088907 -0.00192465 L 1.61057 -1.682393 Z M 6.053507 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,14.811079,27.412166)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="6.382328" y="23.648204"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.982403 -0.00192465 L -11.608765 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051498 -0.00192465 L 1.608561 1.682507 L 3.086897 -0.00192465 L 1.608561 -1.682393 Z M 6.051498 -0.00192465 " transform="matrix(0.985588,0,0,-0.985588,54.906809,27.412166)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.712548 -29.703413 L 111.338909 -29.703413 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 175.710938 56.6875 L 180.089844 58.347656 L 178.632812 56.6875 L 180.089844 55.03125 Z M 175.710938 56.6875 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052173 -0.00183699 L 1.609236 1.682595 L 3.087573 -0.00183699 L 1.609236 -1.682306 Z M 6.052173 -0.00183699 " transform="matrix(-0.985588,0,0,0.985588,181.675888,56.689311)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 83.032527 -29.703413 L -0.0000566249 -29.703413 L -0.0000566249 -11.60667 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053593 0.0000566249 L 1.610656 1.684489 L 3.088993 0.0000566249 L 1.610656 -1.684375 Z M 6.053593 0.0000566249 " transform="matrix(0,-0.985588,-0.985588,0,69.144587,41.649944)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.321825 11.606784 L 112.321825 26.818194 " transform="matrix(0.985588,0,0,-0.985588,69.144587,27.412166)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053489 0.0016949 L 1.610552 1.682163 L 3.088889 0.0016949 L 1.610552 -1.682737 Z M 6.053489 0.0016949 " transform="matrix(0,0.985588,0.985588,0,179.845986,13.174378)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-8" x="183.609819" y="11.564892"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="188.720094" y="13.038347"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -0,0 +1,28 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
\node[addb={+}{}{}{}{-}] (addfb) at (0, 0){};
\node[block, left=of addfb] (Kr){$K_r$};
\node[block, right=of addfb] (K){$K$};
\node[block, right=of K] (G){$G^\prime$};
\node[addb={+}{}{}{}{}, right=of G] (adddy){};
\node[addb={+}{}{}{}{}, below right=0.7 and 0.3 of adddy] (addn) {};
\node[block, left=of addn] (Hh) {$H_H$};
\draw[->] (addfb.east) -- (K.west) node[above left]{};
\draw[->] (K.east) -- (G.west) node[above left]{$u$};
\draw[->] (G.east) -- (adddy.west);
\draw[<-] (addn.east) -- ++(\cdist, 0) coordinate[](endpos) node[above left]{$n$};
\draw[->] (G-|addn)node[branch]{} -- (addn.north);
\draw[->] (adddy.east) -- (G-|endpos) node[above left]{$y$};
\draw[<-] (Kr.west) -- ++(-\cdist, 0) node[above right]{$r$};
\draw[->] (Kr.east) -- (addfb.west);
\draw[->] (addn.west) -- (Hh.east);
\draw[->] (Hh.west) -| (addfb.south);
\draw[<-] (adddy.north) -- ++(0, \cdist) node[below right]{$d_y$};
\end{tikzpicture}

BIN
tikz/figs/sf_arch_eq.pdf Normal file

Binary file not shown.

BIN
tikz/figs/sf_arch_eq.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

216
tikz/figs/sf_arch_eq.svg Normal file
View File

@ -0,0 +1,216 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="244.257pt" height="98.955pt" viewBox="0 0 244.257 98.955" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.359375 -0.203125 C 7.359375 -0.3125 7.25 -0.3125 7.15625 -0.3125 C 6.75 -0.3125 6.625 -0.40625 6.46875 -0.75 L 5.0625 -4.015625 C 5.046875 -4.046875 5.015625 -4.125 5.015625 -4.15625 C 5.015625 -4.15625 5.1875 -4.296875 5.296875 -4.375 L 7.03125 -5.71875 C 7.96875 -6.40625 8.359375 -6.453125 8.65625 -6.484375 C 8.734375 -6.484375 8.828125 -6.5 8.828125 -6.671875 C 8.828125 -6.71875 8.796875 -6.78125 8.71875 -6.78125 C 8.5 -6.78125 8.265625 -6.75 8.015625 -6.75 C 7.65625 -6.75 7.28125 -6.78125 6.921875 -6.78125 C 6.84375 -6.78125 6.734375 -6.78125 6.734375 -6.59375 C 6.734375 -6.515625 6.78125 -6.484375 6.84375 -6.484375 C 7.0625 -6.453125 7.15625 -6.40625 7.15625 -6.265625 C 7.15625 -6.09375 6.859375 -5.859375 6.796875 -5.8125 L 2.921875 -2.828125 L 3.71875 -6.015625 C 3.8125 -6.375 3.828125 -6.484375 4.546875 -6.484375 C 4.796875 -6.484375 4.890625 -6.484375 4.890625 -6.671875 C 4.890625 -6.765625 4.8125 -6.78125 4.75 -6.78125 L 3.484375 -6.75 L 2.203125 -6.78125 C 2.125 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.421875 -6.484375 2.59375 -6.46875 2.71875 -6.453125 C 2.875 -6.4375 2.9375 -6.40625 2.9375 -6.296875 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.109375 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.5 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.140625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.1875 -0.3125 2.984375 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.5625 2.40625 -0.78125 2.4375 -0.921875 L 2.828125 -2.484375 L 4.3125 -3.640625 L 5.46875 -0.96875 C 5.578125 -0.703125 5.578125 -0.671875 5.578125 -0.609375 C 5.578125 -0.3125 5.15625 -0.3125 5.0625 -0.3125 C 4.953125 -0.3125 4.84375 -0.3125 4.84375 -0.109375 C 4.84375 0 4.984375 0 4.984375 0 C 5.390625 0 5.796875 -0.03125 6.203125 -0.03125 C 6.421875 -0.03125 6.953125 0 7.171875 0 C 7.21875 0 7.359375 0 7.359375 -0.203125 Z M 7.359375 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.875 -1.421875 C 4.875 -1.515625 4.78125 -1.515625 4.75 -1.515625 C 4.65625 -1.515625 4.640625 -1.484375 4.609375 -1.34375 C 4.40625 -0.609375 4.1875 -0.109375 3.75 -0.109375 C 3.5625 -0.109375 3.421875 -0.21875 3.421875 -0.578125 C 3.421875 -0.75 3.46875 -0.96875 3.515625 -1.140625 C 3.546875 -1.296875 3.546875 -1.34375 3.546875 -1.4375 C 3.546875 -2.09375 2.921875 -2.375 2.078125 -2.484375 C 2.390625 -2.65625 2.703125 -2.984375 2.9375 -3.21875 C 3.40625 -3.75 3.859375 -4.171875 4.359375 -4.171875 C 4.40625 -4.171875 4.421875 -4.171875 4.4375 -4.15625 C 4.5625 -4.140625 4.578125 -4.140625 4.65625 -4.078125 C 4.671875 -4.078125 4.671875 -4.0625 4.6875 -4.046875 C 4.21875 -4.015625 4.125 -3.625 4.125 -3.515625 C 4.125 -3.34375 4.234375 -3.15625 4.5 -3.15625 C 4.765625 -3.15625 5.046875 -3.375 5.046875 -3.765625 C 5.046875 -4.0625 4.8125 -4.390625 4.375 -4.390625 C 4.09375 -4.390625 3.640625 -4.3125 2.921875 -3.515625 C 2.578125 -3.140625 2.203125 -2.75 1.8125 -2.59375 L 2.859375 -6.78125 C 2.859375 -6.78125 2.859375 -6.890625 2.71875 -6.890625 C 2.5 -6.890625 1.765625 -6.8125 1.515625 -6.796875 C 1.4375 -6.78125 1.328125 -6.78125 1.328125 -6.59375 C 1.328125 -6.484375 1.40625 -6.484375 1.5625 -6.484375 C 2.03125 -6.484375 2.0625 -6.40625 2.0625 -6.3125 L 2.03125 -6.109375 L 0.59375 -0.390625 C 0.546875 -0.25 0.546875 -0.234375 0.546875 -0.171875 C 0.546875 0.0625 0.75 0.109375 0.828125 0.109375 C 0.96875 0.109375 1.109375 0.015625 1.171875 -0.09375 C 1.21875 -0.1875 1.671875 -2.03125 1.734375 -2.28125 C 2.0625 -2.25 2.875 -2.09375 2.875 -1.4375 C 2.875 -1.359375 2.875 -1.328125 2.859375 -1.21875 C 2.828125 -1.109375 2.8125 -0.984375 2.8125 -0.875 C 2.8125 -0.28125 3.203125 0.109375 3.734375 0.109375 C 4.03125 0.109375 4.296875 -0.046875 4.515625 -0.421875 C 4.765625 -0.859375 4.875 -1.421875 4.875 -1.421875 Z M 4.875 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 7.171875 -2.609375 C 7.171875 -2.671875 7.109375 -2.71875 7.03125 -2.71875 C 6.8125 -2.71875 6.21875 -2.6875 6 -2.6875 L 4.59375 -2.71875 C 4.515625 -2.71875 4.390625 -2.71875 4.390625 -2.515625 C 4.390625 -2.40625 4.46875 -2.40625 4.6875 -2.40625 C 4.6875 -2.40625 4.984375 -2.40625 5.21875 -2.390625 C 5.46875 -2.359375 5.53125 -2.328125 5.53125 -2.203125 C 5.53125 -2.109375 5.421875 -1.65625 5.3125 -1.296875 C 5.03125 -0.203125 3.75 -0.09375 3.40625 -0.09375 C 2.4375 -0.09375 1.40625 -0.65625 1.40625 -2.171875 C 1.40625 -2.484375 1.5 -4.125 2.546875 -5.421875 C 3.078125 -6.09375 4.046875 -6.703125 5.03125 -6.703125 C 6.046875 -6.703125 6.625 -5.9375 6.625 -4.78125 C 6.625 -4.375 6.59375 -4.375 6.59375 -4.265625 C 6.59375 -4.171875 6.703125 -4.171875 6.75 -4.171875 C 6.875 -4.171875 6.875 -4.1875 6.921875 -4.375 L 7.546875 -6.90625 C 7.546875 -6.9375 7.53125 -7 7.4375 -7 C 7.40625 -7 7.40625 -7 7.296875 -6.890625 L 6.59375 -6.125 C 6.515625 -6.265625 6.046875 -7 4.953125 -7 C 2.734375 -7 0.5 -4.8125 0.5 -2.5 C 0.5 -0.921875 1.59375 0.21875 3.203125 0.21875 C 3.640625 0.21875 4.09375 0.125 4.453125 -0.015625 C 4.953125 -0.21875 5.140625 -0.421875 5.3125 -0.625 C 5.40625 -0.375 5.671875 -0.015625 5.765625 -0.015625 C 5.8125 -0.015625 5.828125 -0.046875 5.828125 -0.046875 C 5.859375 -0.0625 5.953125 -0.453125 6 -0.65625 L 6.1875 -1.421875 C 6.234375 -1.59375 6.28125 -1.765625 6.3125 -1.921875 C 6.421875 -2.375 6.4375 -2.390625 7 -2.40625 C 7.0625 -2.40625 7.171875 -2.421875 7.171875 -2.609375 Z M 7.171875 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 7.140625 -0.203125 C 7.140625 -0.3125 7.046875 -0.3125 6.859375 -0.3125 C 6.484375 -0.3125 6.21875 -0.3125 6.21875 -0.484375 C 6.21875 -0.546875 6.234375 -0.59375 6.234375 -0.65625 L 7.578125 -6.015625 C 7.671875 -6.375 7.6875 -6.484375 8.421875 -6.484375 C 8.671875 -6.484375 8.75 -6.484375 8.75 -6.671875 C 8.75 -6.78125 8.640625 -6.78125 8.609375 -6.78125 L 7.34375 -6.75 L 6.0625 -6.78125 C 5.984375 -6.78125 5.875 -6.78125 5.875 -6.59375 C 5.875 -6.484375 5.96875 -6.484375 6.15625 -6.484375 C 6.15625 -6.484375 6.359375 -6.484375 6.53125 -6.453125 C 6.703125 -6.4375 6.796875 -6.421875 6.796875 -6.296875 C 6.796875 -6.265625 6.78125 -6.234375 6.75 -6.109375 L 6.15625 -3.6875 L 3.125 -3.6875 L 3.71875 -6.015625 C 3.8125 -6.375 3.828125 -6.484375 4.546875 -6.484375 C 4.8125 -6.484375 4.890625 -6.484375 4.890625 -6.671875 C 4.890625 -6.78125 4.78125 -6.78125 4.75 -6.78125 L 3.484375 -6.75 L 2.203125 -6.78125 C 2.109375 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.28125 -6.484375 2.5 -6.484375 2.65625 -6.453125 C 2.84375 -6.4375 2.9375 -6.421875 2.9375 -6.296875 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.109375 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.15625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.1875 -0.3125 2.984375 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.078125 -3.375 L 5.390625 -0.640625 C 5.296875 -0.3125 5.109375 -0.3125 4.484375 -0.3125 C 4.34375 -0.3125 4.25 -0.3125 4.25 -0.109375 C 4.25 0 4.390625 0 4.390625 0 L 5.65625 -0.03125 L 6.296875 -0.015625 C 6.515625 -0.015625 6.734375 0 6.9375 0 C 7.015625 0 7.140625 0 7.140625 -0.203125 Z M 7.140625 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 5.390625 -1.421875 C 5.390625 -1.515625 5.3125 -1.515625 5.28125 -1.515625 C 5.171875 -1.515625 5.171875 -1.484375 5.140625 -1.34375 C 5 -0.78125 4.8125 -0.109375 4.390625 -0.109375 C 4.1875 -0.109375 4.078125 -0.234375 4.078125 -0.5625 C 4.078125 -0.78125 4.203125 -1.25 4.28125 -1.59375 L 4.5625 -2.671875 C 4.59375 -2.828125 4.6875 -3.203125 4.734375 -3.34375 C 4.78125 -3.578125 4.875 -3.953125 4.875 -4.015625 C 4.875 -4.1875 4.734375 -4.28125 4.59375 -4.28125 C 4.546875 -4.28125 4.28125 -4.265625 4.203125 -3.9375 L 3.453125 -0.9375 C 3.453125 -0.90625 3.046875 -0.109375 2.328125 -0.109375 C 1.8125 -0.109375 1.703125 -0.5625 1.703125 -0.921875 C 1.703125 -1.484375 1.984375 -2.265625 2.25 -2.953125 C 2.359375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.390625 1.59375 -4.390625 C 0.65625 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.8125 -3.8125 1.1875 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.609375 1.703125 -3.3125 1.65625 -3.171875 C 1.28125 -2.1875 1.078125 -1.5625 1.078125 -1.078125 C 1.078125 -0.140625 1.765625 0.109375 2.296875 0.109375 C 2.953125 0.109375 3.3125 -0.34375 3.484375 -0.5625 C 3.59375 -0.15625 3.9375 0.109375 4.359375 0.109375 C 4.703125 0.109375 4.9375 -0.125 5.09375 -0.4375 C 5.265625 -0.796875 5.390625 -1.421875 5.390625 -1.421875 Z M 5.390625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 5.671875 -1.421875 C 5.671875 -1.515625 5.578125 -1.515625 5.5625 -1.515625 C 5.453125 -1.515625 5.453125 -1.484375 5.40625 -1.34375 C 5.203125 -0.671875 4.875 -0.109375 4.390625 -0.109375 C 4.21875 -0.109375 4.15625 -0.203125 4.15625 -0.4375 C 4.15625 -0.6875 4.25 -0.921875 4.328125 -1.140625 C 4.515625 -1.671875 4.9375 -2.765625 4.9375 -3.328125 C 4.9375 -4 4.515625 -4.390625 3.796875 -4.390625 C 2.90625 -4.390625 2.421875 -3.75 2.25 -3.53125 C 2.203125 -4.078125 1.78125 -4.390625 1.328125 -4.390625 C 0.875 -4.390625 0.6875 -4 0.59375 -3.828125 C 0.421875 -3.484375 0.28125 -2.90625 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.703125 0.9375 -4.171875 1.296875 -4.171875 C 1.5 -4.171875 1.609375 -4.046875 1.609375 -3.71875 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.875 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.1875 0.109375 1.375 0.03125 1.4375 -0.171875 C 1.453125 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2.015625 1.96875 -2.234375 2.015625 -2.46875 L 2.140625 -2.96875 C 2.296875 -3.265625 2.828125 -4.171875 3.765625 -4.171875 C 4.21875 -4.171875 4.296875 -3.8125 4.296875 -3.484375 C 4.296875 -2.859375 3.8125 -1.59375 3.65625 -1.15625 C 3.5625 -0.9375 3.5625 -0.8125 3.5625 -0.703125 C 3.5625 -0.234375 3.90625 0.109375 4.375 0.109375 C 5.3125 0.109375 5.671875 -1.34375 5.671875 -1.421875 Z M 5.671875 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.828125 -3.78125 C 4.875 -3.921875 4.875 -3.9375 4.875 -4.015625 C 4.875 -4.1875 4.734375 -4.28125 4.578125 -4.28125 C 4.484375 -4.28125 4.328125 -4.21875 4.234375 -4.078125 C 4.21875 -4.03125 4.140625 -3.71875 4.09375 -3.53125 L 3.890625 -2.75 L 3.453125 -0.953125 C 3.40625 -0.8125 2.984375 -0.109375 2.328125 -0.109375 C 1.8125 -0.109375 1.703125 -0.546875 1.703125 -0.921875 C 1.703125 -1.375 1.875 -1.984375 2.21875 -2.859375 C 2.375 -3.265625 2.421875 -3.375 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.390625 1.59375 -4.390625 C 0.65625 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.875 1.234375 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.171875 1.8125 -3.859375 C 1.8125 -3.609375 1.71875 -3.34375 1.65625 -3.15625 C 1.25 -2.109375 1.078125 -1.546875 1.078125 -1.078125 C 1.078125 -0.1875 1.703125 0.109375 2.28125 0.109375 C 2.671875 0.109375 3.015625 -0.0625 3.296875 -0.34375 C 3.15625 0.171875 3.046875 0.671875 2.640625 1.1875 C 2.390625 1.53125 2 1.8125 1.546875 1.8125 C 1.40625 1.8125 0.96875 1.78125 0.796875 1.40625 C 0.953125 1.40625 1.078125 1.40625 1.21875 1.28125 C 1.328125 1.1875 1.421875 1.0625 1.421875 0.875 C 1.421875 0.5625 1.15625 0.53125 1.046875 0.53125 C 0.828125 0.53125 0.5 0.6875 0.5 1.171875 C 0.5 1.671875 0.9375 2.03125 1.546875 2.03125 C 2.578125 2.03125 3.59375 1.140625 3.875 0.015625 Z M 4.828125 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.328125 -3.75 C 4.328125 -4.09375 4.015625 -4.390625 3.515625 -4.390625 C 2.859375 -4.390625 2.421875 -3.90625 2.234375 -3.625 C 2.15625 -4.078125 1.796875 -4.390625 1.328125 -4.390625 C 0.875 -4.390625 0.6875 -4 0.59375 -3.828125 C 0.421875 -3.484375 0.28125 -2.890625 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.703125 0.9375 -4.171875 1.296875 -4.171875 C 1.46875 -4.171875 1.609375 -4.09375 1.609375 -3.71875 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.875 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.1875 0.109375 1.375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.5625 1.84375 -1.734375 L 2.15625 -3.03125 C 2.203125 -3.15625 2.46875 -3.625 2.71875 -3.84375 C 2.796875 -3.921875 3.078125 -4.171875 3.515625 -4.171875 C 3.765625 -4.171875 3.921875 -4.046875 3.921875 -4.046875 C 3.625 -4 3.40625 -3.765625 3.40625 -3.515625 C 3.40625 -3.34375 3.515625 -3.15625 3.78125 -3.15625 C 4.046875 -3.15625 4.328125 -3.390625 4.328125 -3.75 Z M 4.328125 -3.75 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.953125 -1.421875 C 4.953125 -1.515625 4.859375 -1.515625 4.828125 -1.515625 C 4.734375 -1.515625 4.71875 -1.484375 4.6875 -1.34375 C 4.515625 -0.703125 4.34375 -0.109375 3.9375 -0.109375 C 3.671875 -0.109375 3.640625 -0.375 3.640625 -0.5625 C 3.640625 -0.8125 3.65625 -0.875 3.703125 -1.046875 L 5.125 -6.78125 C 5.125 -6.78125 5.125 -6.890625 5 -6.890625 C 4.84375 -6.890625 3.90625 -6.8125 3.734375 -6.78125 C 3.65625 -6.78125 3.59375 -6.734375 3.59375 -6.59375 C 3.59375 -6.484375 3.6875 -6.484375 3.828125 -6.484375 C 4.3125 -6.484375 4.328125 -6.40625 4.328125 -6.3125 L 4.296875 -6.109375 L 3.703125 -3.75 C 3.53125 -4.125 3.234375 -4.390625 2.796875 -4.390625 C 1.625 -4.390625 0.390625 -2.9375 0.390625 -1.484375 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.4375 0.109375 3.921875 0.109375 C 4.265625 0.109375 4.484375 -0.125 4.65625 -0.4375 C 4.8125 -0.796875 4.953125 -1.421875 4.953125 -1.421875 Z M 3.5625 -3.125 L 3.0625 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.21875 C 1.953125 -3.8125 2.40625 -4.171875 2.796875 -4.171875 C 3.453125 -4.171875 3.59375 -3.359375 3.59375 -3.296875 C 3.59375 -3.234375 3.5625 -3.1875 3.5625 -3.125 Z M 3.5625 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 8.09375 -2.984375 C 8.09375 -3.203125 7.890625 -3.203125 7.71875 -3.203125 L 4.53125 -3.203125 L 4.53125 -6.390625 C 4.53125 -6.5625 4.53125 -6.765625 4.328125 -6.765625 C 4.109375 -6.765625 4.109375 -6.578125 4.109375 -6.390625 L 4.109375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.109375 -2.78125 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.78125 L 7.71875 -2.78125 C 7.875 -2.78125 8.09375 -2.78125 8.09375 -2.984375 Z M 8.09375 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.6875 6.703125 -2.6875 6.5625 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.890625 1.671875 -3.890625 C 1.390625 -3.890625 1.328125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.359375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 5.546875 -0.140625 C 5.546875 -0.25 5.484375 -0.25 5.3125 -0.25 C 5.203125 -0.25 5.1875 -0.25 5.0625 -0.265625 C 4.90625 -0.28125 4.90625 -0.296875 4.90625 -0.375 C 4.90625 -0.40625 4.921875 -0.484375 4.9375 -0.515625 L 5.84375 -4.1875 C 5.90625 -4.4375 5.921875 -4.5 6.4375 -4.5 C 6.59375 -4.5 6.671875 -4.5 6.671875 -4.65625 C 6.671875 -4.671875 6.65625 -4.75 6.5625 -4.75 C 6.359375 -4.75 5.859375 -4.71875 5.65625 -4.71875 C 5.53125 -4.71875 5.296875 -4.71875 5.171875 -4.734375 C 5.03125 -4.734375 4.875 -4.75 4.734375 -4.75 C 4.6875 -4.75 4.59375 -4.75 4.59375 -4.59375 C 4.59375 -4.5 4.671875 -4.5 4.8125 -4.5 C 4.8125 -4.5 4.953125 -4.5 5.078125 -4.484375 C 5.21875 -4.46875 5.234375 -4.453125 5.234375 -4.390625 C 5.234375 -4.390625 5.234375 -4.34375 5.203125 -4.234375 L 4.796875 -2.59375 L 2.46875 -2.59375 L 2.875 -4.203125 C 2.9375 -4.4375 2.953125 -4.5 3.484375 -4.5 C 3.609375 -4.5 3.6875 -4.5 3.6875 -4.65625 C 3.6875 -4.671875 3.671875 -4.75 3.578125 -4.75 C 3.375 -4.75 2.875 -4.71875 2.671875 -4.71875 C 2.546875 -4.71875 2.3125 -4.71875 2.1875 -4.734375 C 2.046875 -4.734375 1.890625 -4.75 1.75 -4.75 C 1.703125 -4.75 1.609375 -4.75 1.609375 -4.59375 C 1.609375 -4.5 1.6875 -4.5 1.828125 -4.5 C 1.828125 -4.5 1.96875 -4.5 2.09375 -4.484375 C 2.234375 -4.46875 2.25 -4.453125 2.25 -4.390625 C 2.25 -4.390625 2.25 -4.34375 2.21875 -4.234375 L 1.296875 -0.546875 C 1.25 -0.3125 1.234375 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 -0.03125 0.53125 0 0.59375 0 C 0.796875 0 1.296875 -0.03125 1.5 -0.03125 C 1.609375 -0.03125 1.859375 -0.03125 1.96875 -0.015625 C 2.109375 -0.015625 2.28125 0 2.421875 0 C 2.453125 0 2.5625 0 2.5625 -0.140625 C 2.5625 -0.25 2.5 -0.25 2.34375 -0.25 C 2.21875 -0.25 2.203125 -0.25 2.078125 -0.265625 C 1.921875 -0.28125 1.921875 -0.296875 1.921875 -0.375 C 1.921875 -0.375 1.921875 -0.421875 1.953125 -0.515625 L 2.40625 -2.34375 L 4.734375 -2.34375 L 4.28125 -0.546875 C 4.234375 -0.3125 4.21875 -0.25 3.671875 -0.25 C 3.546875 -0.25 3.46875 -0.25 3.46875 -0.109375 C 3.46875 -0.03125 3.515625 0 3.578125 0 C 3.78125 0 4.28125 -0.03125 4.484375 -0.03125 C 4.59375 -0.03125 4.84375 -0.03125 4.953125 -0.015625 C 5.09375 -0.015625 5.265625 0 5.40625 0 C 5.4375 0 5.546875 0 5.546875 -0.140625 Z M 5.546875 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 5.015625 -1.734375 C 5.015625 -1.75 5 -1.828125 4.890625 -1.828125 C 4.8125 -1.828125 4.796875 -1.796875 4.75 -1.6875 C 4.484375 -1.015625 4.1875 -0.25 2.90625 -0.25 L 2.125 -0.25 C 1.90625 -0.25 1.90625 -0.25 1.90625 -0.3125 C 1.90625 -0.3125 1.90625 -0.359375 1.9375 -0.46875 L 2.859375 -4.171875 C 2.921875 -4.421875 2.953125 -4.5 3.59375 -4.5 C 3.796875 -4.5 3.875 -4.5 3.875 -4.65625 C 3.875 -4.65625 3.859375 -4.75 3.75 -4.75 C 3.59375 -4.75 3.40625 -4.734375 3.234375 -4.734375 L 2.6875 -4.71875 L 2.203125 -4.734375 C 2.0625 -4.734375 1.890625 -4.75 1.75 -4.75 C 1.703125 -4.75 1.609375 -4.75 1.609375 -4.59375 C 1.609375 -4.5 1.6875 -4.5 1.828125 -4.5 C 1.828125 -4.5 1.96875 -4.5 2.09375 -4.484375 C 2.234375 -4.46875 2.25 -4.453125 2.25 -4.390625 C 2.25 -4.390625 2.25 -4.34375 2.21875 -4.234375 L 1.296875 -0.546875 C 1.234375 -0.3125 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 0 0.5625 0 0.6875 0 L 4.1875 0 C 4.359375 0 4.359375 0 4.421875 -0.140625 C 4.484375 -0.328125 5.015625 -1.671875 5.015625 -1.734375 Z M 5.015625 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 6.703125 -1 C 6.703125 -1.078125 6.625 -1.078125 6.59375 -1.078125 C 6.5 -1.078125 6.5 -1.046875 6.46875 -0.96875 C 6.3125 -0.40625 6 -0.125 5.734375 -0.125 C 5.578125 -0.125 5.5625 -0.21875 5.5625 -0.375 C 5.5625 -0.53125 5.59375 -0.625 5.71875 -0.9375 C 5.796875 -1.140625 6.078125 -1.890625 6.078125 -2.28125 C 6.078125 -2.390625 6.078125 -2.671875 5.828125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.1875 -3.0625 C 4.546875 -3.0625 4.171875 -2.65625 3.953125 -2.359375 C 3.890625 -2.953125 3.40625 -3.0625 3.046875 -3.0625 C 2.46875 -3.0625 2.078125 -2.71875 1.875 -2.4375 C 1.828125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.4375 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.59375 -2.125 C 0.703125 -2.53125 0.828125 -2.875 1.109375 -2.875 C 1.28125 -2.875 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.40625 1.265625 -2.140625 1.21875 -1.953125 L 1.078125 -1.328125 L 0.84375 -0.4375 C 0.828125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.328125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.453125 1.6875 -1.609375 C 1.765625 -1.890625 1.765625 -1.953125 1.96875 -2.234375 C 2.171875 -2.515625 2.5 -2.875 3.015625 -2.875 C 3.421875 -2.875 3.421875 -2.515625 3.421875 -2.390625 C 3.421875 -2.21875 3.40625 -2.125 3.3125 -1.734375 L 3.015625 -0.5625 C 2.984375 -0.421875 2.921875 -0.1875 2.921875 -0.15625 C 2.921875 0 3.046875 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.46875 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.75 -1.296875 3.796875 -1.453125 3.828125 -1.609375 C 3.90625 -1.90625 3.90625 -1.921875 4.046875 -2.140625 C 4.265625 -2.46875 4.609375 -2.875 5.15625 -2.875 C 5.546875 -2.875 5.5625 -2.546875 5.5625 -2.390625 C 5.5625 -1.96875 5.265625 -1.203125 5.15625 -0.90625 C 5.078125 -0.703125 5.046875 -0.640625 5.046875 -0.53125 C 5.046875 -0.15625 5.359375 0.0625 5.703125 0.0625 C 6.40625 0.0625 6.703125 -0.890625 6.703125 -1 Z M 6.703125 -1 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 3.859375 -2.625 C 3.890625 -2.71875 3.890625 -2.734375 3.890625 -2.78125 C 3.890625 -2.90625 3.78125 -3 3.671875 -3 C 3.59375 -3 3.453125 -2.96875 3.375 -2.828125 C 3.359375 -2.78125 3.296875 -2.5625 3.265625 -2.421875 L 3.125 -1.84375 L 2.84375 -0.734375 C 2.84375 -0.734375 2.53125 -0.125 1.984375 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.890625 -2.046875 C 1.96875 -2.28125 2 -2.359375 2 -2.46875 C 2 -2.8125 1.71875 -3.0625 1.34375 -3.0625 C 0.640625 -3.0625 0.328125 -2.125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.953125 0.5625 -2.015625 C 0.75 -2.59375 1.046875 -2.875 1.328125 -2.875 C 1.4375 -2.875 1.5 -2.796875 1.5 -2.625 C 1.5 -2.46875 1.4375 -2.3125 1.390625 -2.21875 C 1.0625 -1.375 1 -1.125 1 -0.8125 C 1 -0.703125 1 -0.375 1.265625 -0.140625 C 1.484375 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.71875 -0.25 C 2.625 0.140625 2.546875 0.4375 2.265625 0.78125 C 2.078125 1 1.796875 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 1 C 1.28125 0.953125 1.28125 0.609375 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1.015625 0.34375 C 0.828125 0.34375 0.609375 0.484375 0.609375 0.8125 C 0.609375 1.15625 0.9375 1.421875 1.4375 1.421875 C 2.140625 1.421875 2.984375 0.875 3.203125 0 Z M 3.859375 -2.625 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 156 80 L 181 80 L 181 98.78125 L 156 98.78125 Z M 156 80 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 194 68 L 237 68 L 237 98.78125 L 194 98.78125 Z M 194 68 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 226 88 L 243.515625 88 L 243.515625 90 L 226 90 Z M 226 88 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 210 73 L 243 73 L 243 98.78125 L 210 98.78125 Z M 210 73 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 222 13 L 243.515625 13 L 243.515625 45 L 222 45 Z M 222 13 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 167 73 L 201 73 L 201 98.78125 L 167 98.78125 Z M 167 73 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 16.167035 -46.1633 L 111.941862 -46.1633 L 111.941862 13.983949 L 16.167035 13.983949 Z M 16.167035 -46.1633 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="87.01531" y="10.724382"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.975097 0.000135116 C 6.975097 3.851659 3.852346 6.974411 0.000821453 6.974411 C -3.850703 6.974411 -6.973454 3.851659 -6.973454 0.000135116 C -6.973454 -3.851389 -3.850703 -6.97414 0.000821453 -6.97414 C 3.852346 -6.97414 6.975097 -3.851389 6.975097 0.000135116 Z M 6.975097 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="23.405802" y="31.876041"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="18.018191" y="43.702068"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.928342 0.000135116 C 37.928342 3.851659 34.809509 6.974411 30.957985 6.974411 C 27.102543 6.974411 23.983709 3.851659 23.983709 0.000135116 C 23.983709 -3.851389 27.102543 -6.97414 30.957985 -6.97414 C 34.809509 -6.97414 37.928342 -3.851389 37.928342 0.000135116 Z M 37.928342 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="54.267924" y="31.876041"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="48.880312" y="43.702068"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.434558 -8.502212 L 78.112708 -8.502212 L 78.112708 8.502482 L 55.434558 8.502482 Z M 55.434558 -8.502212 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="91.559487" y="32.417395"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.133751 -8.502212 L 152.811901 -8.502212 L 152.811901 8.502482 L 130.133751 8.502482 Z M 130.133751 -8.502212 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="163.47473" y="32.702527"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="171.283975" y="29.097493"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.266667 0.000135116 C 184.266667 3.851659 181.143916 6.974411 177.292392 6.974411 C 173.440867 6.974411 170.318116 3.851659 170.318116 0.000135116 C 170.318116 -3.851389 173.440867 -6.97414 177.292392 -6.97414 C 181.143916 -6.97414 184.266667 -3.851389 184.266667 0.000135116 Z M 184.266667 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="200.158143" y="31.876041"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.442294 -40.681833 L 96.116526 -40.681833 L 96.116526 -23.67322 L 73.442294 -23.67322 Z M 73.442294 -40.681833 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="108.346423" y="64.44198"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.43074 -40.681833 L 60.10889 -40.681833 L 60.10889 -23.67322 L 37.43074 -23.67322 Z M 37.43074 -40.681833 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="68.456763" y="63.697245"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="76.713646" y="65.186714"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 157.46875 97.789062 L 180.078125 97.789062 L 180.078125 80.832031 L 157.46875 80.832031 Z M 157.46875 97.789062 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.133751 -69.02952 L 152.811901 -69.02952 L 152.811901 -52.020908 L 130.133751 -52.020908 Z M 130.133751 -69.02952 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="161.671216" y="91.958279"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="169.928099" y="93.447748"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 222.742188 89.308594 C 222.742188 85.46875 219.628906 82.355469 215.789062 82.355469 C 211.949219 82.355469 208.835938 85.46875 208.835938 89.308594 C 208.835938 93.148438 211.949219 96.261719 215.789062 96.261719 C 219.628906 96.261719 222.742188 93.148438 222.742188 89.308594 Z M 222.742188 89.308594 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.605742 -60.523255 C 195.605742 -56.671731 192.482991 -53.54898 188.631467 -53.54898 C 184.779942 -53.54898 181.657191 -56.671731 181.657191 -60.523255 C 181.657191 -64.374779 184.779942 -67.497531 188.631467 -67.497531 C 192.482991 -67.497531 195.605742 -64.374779 195.605742 -60.523255 Z M 195.605742 -60.523255 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="211.461759" y="92.216493"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.975097 0.000135116 L 19.348559 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055276 0.000135116 L 1.608195 1.684932 L 3.089249 0.000135116 L 1.608195 -1.684662 Z M 6.055276 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,44.18965,28.968885)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.928342 0.000135116 L 50.305723 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052481 0.000135116 L 1.609319 1.684932 L 3.086455 0.000135116 L 1.609319 -1.684662 Z M 6.052481 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,75.051812,28.968885)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 78.610311 0.000135116 L 125.000997 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053534 0.000135116 L 1.610372 1.684932 L 3.087508 0.000135116 L 1.610372 -1.684662 Z M 6.053534 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,149.523418,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="147.478389" y="25.161466"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.309503 0.000135116 L 165.682965 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053452 0.000135116 L 1.61029 1.684932 L 3.087426 0.000135116 L 1.61029 -1.684662 Z M 6.053452 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,190.082093,28.968885)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 106.957998 0.000135116 L 106.957998 -32.179486 L 101.249279 -32.179486 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052189 0.00156576 L 1.609027 1.682445 L 3.086163 0.00156576 L 1.609027 -1.683231 Z M 6.052189 0.00156576 " transform="matrix(-0.996967,0,0,0.996967,131.502585,61.04922)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 136.351562 28.96875 C 136.351562 27.871094 135.460938 26.980469 134.363281 26.980469 C 133.265625 26.980469 132.378906 27.871094 132.378906 28.96875 C 132.378906 30.066406 133.265625 30.957031 134.363281 30.957031 C 135.460938 30.957031 136.351562 30.066406 136.351562 28.96875 Z M 136.351562 28.96875 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 72.940773 -32.179486 L 65.241643 -32.179486 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054684 0.00156576 L 1.607603 1.682445 L 3.088657 0.00156576 L 1.607603 -1.683231 Z M 6.054684 0.00156576 " transform="matrix(-0.996967,0,0,0.996967,95.602728,61.04922)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.933137 -32.179486 L 30.957985 -32.179486 L 30.957985 -11.609291 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053466 -0.00194504 L 1.610304 1.682852 L 3.087439 -0.00194504 L 1.610304 -1.682824 Z M 6.053466 -0.00194504 " transform="matrix(0,-0.996967,-0.996967,0,58.591811,43.371045)"/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.236974 -60.523255 L 215.447164 -60.523255 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 224.15625 89.308594 L 228.585938 90.988281 L 227.113281 89.308594 L 228.585938 87.632812 Z M 224.15625 89.308594 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052704 -0.00146492 L 1.609542 1.683332 L 3.086678 -0.00146492 L 1.609542 -1.682344 Z M 6.052704 -0.00146492 " transform="matrix(-0.996967,0,0,0.996967,230.190598,89.310054)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="232.751997" y="85.501918"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.266667 0.000135116 L 210.812014 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 241.109375 28.96875 L 236.679688 27.289062 L 238.152344 28.96875 L 236.679688 30.648438 Z M 241.109375 28.96875 "/>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05347 0.000135116 L 1.610308 1.684932 L 3.087444 0.000135116 L 1.610308 -1.684662 Z M 6.05347 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,235.074263,28.968885)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="233.487759" y="23.230341"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.631467 0.000135116 L 188.631467 -48.917747 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051876 0.000636507 L 1.608714 1.681515 L 3.085849 0.000636507 L 1.608714 -1.68416 Z M 6.051876 0.000636507 " transform="matrix(0,0.996967,0.996967,0,215.788428,74.907884)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 217.773438 28.96875 C 217.773438 27.871094 216.886719 26.980469 215.789062 26.980469 C 214.691406 26.980469 213.800781 27.871094 213.800781 28.96875 C 213.800781 30.066406 214.691406 30.957031 215.789062 30.957031 C 216.886719 30.957031 217.773438 30.066406 217.773438 28.96875 Z M 217.773438 28.96875 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.608605 0.000135116 L -26.814876 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054152 0.000135116 L 1.607072 1.684932 L 3.088126 0.000135116 L 1.607072 -1.684662 Z M 6.054152 0.000135116 " transform="matrix(0.996967,0,0,-0.996967,13.327489,28.968885)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="4.802392" y="25.161466"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.657191 -60.523255 L 157.944654 -60.523255 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 181.988281 89.308594 L 186.421875 90.988281 L 184.945312 89.308594 L 186.421875 87.632812 Z M 181.988281 89.308594 "/>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054333 -0.00146492 L 1.607252 1.683332 L 3.088306 -0.00146492 L 1.607252 -1.682344 Z M 6.054333 -0.00146492 " transform="matrix(-0.996967,0,0,0.996967,188.024253,89.310054)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="184.380138" y="83.570792"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="189.250324" y="85.060262"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.292392 11.605643 L 177.292392 26.815833 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053205 0.000121526 L 1.610043 1.684918 L 3.087179 0.000121526 L 1.610043 -1.684675 Z M 6.053205 0.000121526 " transform="matrix(0,0.996967,0.996967,0,204.484254,14.566714)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="208.289409" y="12.938647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="213.458685" y="14.428116"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.636148 -60.523255 L 0.000821453 -60.523255 L 0.000821453 -11.609291 " transform="matrix(0.996967,0,0,-0.996967,27.72965,28.968885)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053466 -0.000821453 L 1.610304 1.683975 L 3.087439 -0.000821453 L 1.610304 -1.6817 Z M 6.053466 -0.000821453 " transform="matrix(0,-0.996967,-0.996967,0,27.72965,43.371045)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 43 KiB

35
tikz/figs/sf_arch_eq.tex Normal file
View File

@ -0,0 +1,35 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
\node[addb={+}{}{}{}{-}] (addfb) at (0, 0){};
\node[addb={+}{}{}{}{-}, right=of addfb] (addK){};
\node[block, right=of addK] (K){$k$};
\node[block, right=1.8 of K] (G){$G^\prime$};
\node[addb={+}{}{}{}{}, right=of G] (adddy){};
\node[block, below right=0.5 and -0.2 of K] (Gm){$G$};
\node[block, below left =0.5 and -0.2 of K] (Hh){$H_H$};
\node[block, below=1.5 of G] (Hl) {$H_L$};
\node[addb={+}{}{}{}{}, right=1 of Hl] (addn) {};
\draw[->] (addfb.east) -- (addK.west);
\draw[->] (addK.east) -- (K.west);
\draw[->] (K.east) -- (G.west) node[above left]{$u$};
\draw[->] (G.east) -- (adddy.west);
\draw[->] ($(G.west)+(-0.8, 0)$) node[branch](sffb){} |- (Gm.east);
\draw[->] (Gm.west) -- (Hh.east);
\draw[->] (Hh.west) -| (addK.south);
\draw[<-] (addn.east) -- ++(\cdist, 0) coordinate[](endpos) node[above left]{$n$};
\draw[->] (adddy.east) -- (G-|endpos) node[above left]{$y$};
\draw[->] (adddy-|addn) node[branch]{} -- (addn.north);
\draw[<-] (addfb.west) -- ++(-\cdist, 0) node[above right]{$r$};
\draw[->] (addn.west) -- (Hl.east) node[above right]{$y_m$};
\draw[<-] (adddy.north) -- ++(0, \cdist) node[below right]{$d_y$};
\draw[->] (Hl.west) -| (addfb.south) node[below right]{};
\node[fit={($(addK.west|-Hh.south)+(-0.1, 0)$) (K.north-|sffb)}, inner sep=5pt, draw, dashed, color=gray, label={$K$}] (Kfb) {};
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="156.063pt" height="138.829pt" viewBox="0 0 156.063 138.829" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.46875 -5.265625 C 7.46875 -6.03125 6.8125 -6.765625 5.515625 -6.765625 L 2.3125 -6.765625 C 2.125 -6.765625 2.015625 -6.765625 2.015625 -6.578125 C 2.015625 -6.453125 2.09375 -6.453125 2.296875 -6.453125 C 2.421875 -6.453125 2.609375 -6.453125 2.71875 -6.4375 C 2.875 -6.421875 2.9375 -6.390625 2.9375 -6.28125 C 2.9375 -6.234375 2.9375 -6.21875 2.90625 -6.09375 L 1.578125 -0.765625 C 1.46875 -0.390625 1.453125 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.515625 0 0.546875 0 L 1.796875 -0.03125 L 2.4375 -0.015625 C 2.65625 -0.015625 2.875 0 3.078125 0 C 3.15625 0 3.28125 0 3.28125 -0.203125 C 3.28125 -0.3125 3.1875 -0.3125 3 -0.3125 C 2.640625 -0.3125 2.359375 -0.3125 2.359375 -0.484375 C 2.359375 -0.546875 2.375 -0.59375 2.390625 -0.65625 L 3 -3.125 L 4.6875 -3.125 C 6.09375 -3.125 7.46875 -4.15625 7.46875 -5.265625 Z M 6.546875 -5.515625 C 6.546875 -5.125 6.34375 -4.265625 5.96875 -3.90625 C 5.46875 -3.46875 4.875 -3.390625 4.4375 -3.390625 L 3.046875 -3.390625 L 3.71875 -6.078125 C 3.796875 -6.421875 3.828125 -6.453125 4.25 -6.453125 L 5.203125 -6.453125 C 6.015625 -6.453125 6.546875 -6.1875 6.546875 -5.515625 Z M 6.546875 -5.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 6.84375 -3.6875 C 6.84375 -4.234375 6.578125 -4.375 6.40625 -4.375 C 6.15625 -4.375 5.90625 -4.125 5.90625 -3.90625 C 5.90625 -3.78125 5.96875 -3.71875 6.0625 -3.640625 C 6.171875 -3.53125 6.421875 -3.265625 6.421875 -2.796875 C 6.421875 -2.453125 6.125 -1.484375 5.875 -0.984375 C 5.609375 -0.453125 5.265625 -0.109375 4.78125 -0.109375 C 4.3125 -0.109375 4.046875 -0.40625 4.046875 -0.96875 C 4.046875 -1.25 4.125 -1.5625 4.15625 -1.6875 L 4.578125 -3.359375 C 4.625 -3.578125 4.71875 -3.9375 4.71875 -4 C 4.71875 -4.1875 4.59375 -4.265625 4.4375 -4.265625 C 4.3125 -4.265625 4.140625 -4.1875 4.078125 -4 C 4.046875 -3.921875 3.578125 -2.03125 3.5 -1.765625 C 3.4375 -1.46875 3.421875 -1.296875 3.421875 -1.125 C 3.421875 -1.015625 3.421875 -0.984375 3.421875 -0.9375 C 3.203125 -0.421875 2.90625 -0.109375 2.515625 -0.109375 C 1.71875 -0.109375 1.71875 -0.84375 1.71875 -1.015625 C 1.71875 -1.328125 1.765625 -1.71875 2.234375 -2.9375 C 2.34375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.078125 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.859375 1.21875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.15625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.140625 C 1.203125 -1.96875 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.75 0.109375 2.484375 0.109375 C 2.65625 0.109375 3.125 0.109375 3.515625 -0.578125 C 3.78125 0.046875 4.453125 0.109375 4.75 0.109375 C 5.5 0.109375 5.9375 -0.515625 6.1875 -1.109375 C 6.53125 -1.875 6.84375 -3.203125 6.84375 -3.6875 Z M 6.84375 -3.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 7.109375 -0.203125 C 7.109375 -0.3125 7.03125 -0.3125 6.828125 -0.3125 C 6.46875 -0.3125 6.1875 -0.3125 6.1875 -0.484375 C 6.1875 -0.546875 6.21875 -0.59375 6.21875 -0.65625 L 7.5625 -6 C 7.640625 -6.359375 7.671875 -6.453125 8.390625 -6.453125 C 8.640625 -6.453125 8.734375 -6.453125 8.734375 -6.65625 C 8.734375 -6.765625 8.625 -6.765625 8.59375 -6.765625 L 7.328125 -6.734375 L 6.046875 -6.765625 C 5.96875 -6.765625 5.859375 -6.765625 5.859375 -6.5625 C 5.859375 -6.453125 5.9375 -6.453125 6.125 -6.453125 C 6.125 -6.453125 6.34375 -6.453125 6.515625 -6.4375 C 6.6875 -6.421875 6.78125 -6.40625 6.78125 -6.28125 C 6.78125 -6.234375 6.765625 -6.21875 6.734375 -6.09375 L 6.140625 -3.671875 L 3.125 -3.671875 L 3.703125 -6 C 3.796875 -6.359375 3.828125 -6.453125 4.53125 -6.453125 C 4.796875 -6.453125 4.875 -6.453125 4.875 -6.65625 C 4.875 -6.765625 4.765625 -6.765625 4.734375 -6.765625 L 3.46875 -6.734375 L 2.1875 -6.765625 C 2.109375 -6.765625 2 -6.765625 2 -6.5625 C 2 -6.453125 2.09375 -6.453125 2.28125 -6.453125 C 2.28125 -6.453125 2.484375 -6.453125 2.65625 -6.4375 C 2.828125 -6.421875 2.921875 -6.40625 2.921875 -6.28125 C 2.921875 -6.234375 2.90625 -6.21875 2.875 -6.09375 L 1.5625 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.46875 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.0625 0 C 3.140625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.171875 -0.3125 2.984375 -0.3125 C 2.609375 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.0625 -3.375 L 5.375 -0.640625 C 5.28125 -0.3125 5.09375 -0.3125 4.484375 -0.3125 C 4.328125 -0.3125 4.234375 -0.3125 4.234375 -0.109375 C 4.234375 0 4.375 0 4.375 0 L 5.640625 -0.03125 L 6.265625 -0.015625 C 6.484375 -0.015625 6.703125 0 6.921875 0 C 7 0 7.109375 0 7.109375 -0.203125 Z M 7.109375 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.3125 -1.421875 C 4.3125 -1.46875 4.265625 -1.515625 4.1875 -1.515625 C 4.09375 -1.515625 4.078125 -1.453125 4.046875 -1.390625 C 3.828125 -0.75 3.1875 -0.5625 2.859375 -0.5625 C 2.671875 -0.5625 2.484375 -0.609375 2.28125 -0.6875 C 1.9375 -0.8125 1.796875 -0.859375 1.578125 -0.859375 C 1.578125 -0.859375 1.40625 -0.859375 1.3125 -0.828125 C 1.859375 -1.390625 2.140625 -1.640625 2.5 -1.953125 C 2.5 -1.953125 3.109375 -2.484375 3.46875 -2.84375 C 4.40625 -3.765625 4.625 -4.234375 4.625 -4.28125 C 4.625 -4.375 4.515625 -4.375 4.515625 -4.375 C 4.453125 -4.375 4.421875 -4.359375 4.375 -4.265625 C 4.078125 -3.796875 3.859375 -3.640625 3.625 -3.640625 C 3.390625 -3.640625 3.265625 -3.78125 3.125 -3.953125 C 2.9375 -4.1875 2.765625 -4.375 2.4375 -4.375 C 1.6875 -4.375 1.234375 -3.453125 1.234375 -3.25 C 1.234375 -3.203125 1.265625 -3.140625 1.359375 -3.140625 C 1.453125 -3.140625 1.46875 -3.1875 1.484375 -3.25 C 1.671875 -3.703125 2.25 -3.71875 2.328125 -3.71875 C 2.53125 -3.71875 2.71875 -3.640625 2.953125 -3.5625 C 3.34375 -3.421875 3.453125 -3.421875 3.71875 -3.421875 C 3.359375 -2.984375 2.53125 -2.28125 2.34375 -2.125 L 1.453125 -1.28125 C 0.765625 -0.625 0.421875 -0.0625 0.421875 0.015625 C 0.421875 0.109375 0.546875 0.109375 0.546875 0.109375 C 0.625 0.109375 0.640625 0.09375 0.703125 -0.015625 C 0.9375 -0.359375 1.234375 -0.640625 1.546875 -0.640625 C 1.765625 -0.640625 1.875 -0.546875 2.125 -0.25 C 2.28125 -0.046875 2.46875 0.109375 2.75 0.109375 C 3.734375 0.109375 4.3125 -1.15625 4.3125 -1.421875 Z M 4.3125 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5 -1.734375 C 5 -1.75 4.984375 -1.828125 4.890625 -1.828125 C 4.796875 -1.828125 4.78125 -1.796875 4.75 -1.671875 C 4.484375 -1.015625 4.171875 -0.25 2.90625 -0.25 L 2.125 -0.25 C 1.90625 -0.25 1.90625 -0.25 1.90625 -0.3125 C 1.90625 -0.3125 1.90625 -0.359375 1.921875 -0.46875 L 2.859375 -4.171875 C 2.921875 -4.421875 2.9375 -4.484375 3.578125 -4.484375 C 3.796875 -4.484375 3.859375 -4.484375 3.859375 -4.640625 C 3.859375 -4.640625 3.859375 -4.734375 3.75 -4.734375 C 3.59375 -4.734375 3.40625 -4.71875 3.234375 -4.71875 L 2.671875 -4.703125 L 2.203125 -4.71875 C 2.046875 -4.71875 1.890625 -4.734375 1.75 -4.734375 C 1.703125 -4.734375 1.609375 -4.734375 1.609375 -4.578125 C 1.609375 -4.484375 1.6875 -4.484375 1.828125 -4.484375 C 1.828125 -4.484375 1.96875 -4.484375 2.09375 -4.46875 C 2.234375 -4.453125 2.25 -4.453125 2.25 -4.375 C 2.25 -4.375 2.25 -4.328125 2.21875 -4.21875 L 1.296875 -0.546875 C 1.234375 -0.3125 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 0 0.5625 0 0.6875 0 L 4.171875 0 C 4.34375 0 4.359375 0 4.40625 -0.140625 C 4.484375 -0.328125 5 -1.671875 5 -1.734375 Z M 5 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 5.53125 -0.140625 C 5.53125 -0.25 5.46875 -0.25 5.3125 -0.25 C 5.203125 -0.25 5.171875 -0.25 5.046875 -0.265625 C 4.890625 -0.28125 4.890625 -0.296875 4.890625 -0.375 C 4.890625 -0.40625 4.90625 -0.484375 4.921875 -0.515625 L 5.828125 -4.171875 C 5.890625 -4.4375 5.90625 -4.484375 6.421875 -4.484375 C 6.578125 -4.484375 6.65625 -4.484375 6.65625 -4.640625 C 6.65625 -4.671875 6.640625 -4.734375 6.546875 -4.734375 C 6.34375 -4.734375 5.84375 -4.703125 5.640625 -4.703125 C 5.515625 -4.703125 5.28125 -4.703125 5.15625 -4.71875 C 5.015625 -4.71875 4.859375 -4.734375 4.71875 -4.734375 C 4.6875 -4.734375 4.578125 -4.734375 4.578125 -4.578125 C 4.578125 -4.484375 4.65625 -4.484375 4.796875 -4.484375 C 4.796875 -4.484375 4.9375 -4.484375 5.0625 -4.46875 C 5.203125 -4.453125 5.21875 -4.453125 5.21875 -4.375 C 5.21875 -4.375 5.21875 -4.328125 5.203125 -4.21875 L 4.78125 -2.59375 L 2.46875 -2.59375 L 2.859375 -4.203125 C 2.921875 -4.4375 2.9375 -4.484375 3.46875 -4.484375 C 3.59375 -4.484375 3.6875 -4.484375 3.6875 -4.640625 C 3.6875 -4.671875 3.65625 -4.734375 3.578125 -4.734375 C 3.375 -4.734375 2.859375 -4.703125 2.65625 -4.703125 C 2.546875 -4.703125 2.296875 -4.703125 2.1875 -4.71875 C 2.046875 -4.71875 1.875 -4.734375 1.75 -4.734375 C 1.703125 -4.734375 1.609375 -4.734375 1.609375 -4.578125 C 1.609375 -4.484375 1.6875 -4.484375 1.828125 -4.484375 C 1.828125 -4.484375 1.96875 -4.484375 2.09375 -4.46875 C 2.234375 -4.453125 2.25 -4.453125 2.25 -4.375 C 2.25 -4.375 2.25 -4.328125 2.21875 -4.21875 L 1.296875 -0.546875 C 1.234375 -0.3125 1.234375 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 -0.03125 0.53125 0 0.59375 0 C 0.796875 0 1.296875 -0.03125 1.484375 -0.03125 C 1.609375 -0.03125 1.859375 -0.03125 1.96875 -0.015625 C 2.109375 -0.015625 2.28125 0 2.421875 0 C 2.453125 0 2.5625 0 2.5625 -0.140625 C 2.5625 -0.25 2.484375 -0.25 2.328125 -0.25 C 2.21875 -0.25 2.1875 -0.25 2.0625 -0.265625 C 1.921875 -0.28125 1.921875 -0.296875 1.921875 -0.375 C 1.921875 -0.375 1.921875 -0.421875 1.9375 -0.515625 L 2.40625 -2.34375 L 4.71875 -2.34375 L 4.28125 -0.546875 C 4.21875 -0.3125 4.203125 -0.25 3.65625 -0.25 C 3.546875 -0.25 3.453125 -0.25 3.453125 -0.109375 C 3.453125 -0.03125 3.5 0 3.5625 0 C 3.765625 0 4.265625 -0.03125 4.46875 -0.03125 C 4.578125 -0.03125 4.828125 -0.03125 4.953125 -0.015625 C 5.078125 -0.015625 5.265625 0 5.390625 0 C 5.421875 0 5.53125 0 5.53125 -0.140625 Z M 5.53125 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 8.0625 -2.984375 C 8.0625 -3.203125 7.875 -3.203125 7.6875 -3.203125 L 4.515625 -3.203125 L 4.515625 -6.375 C 4.515625 -6.546875 4.515625 -6.75 4.3125 -6.75 C 4.09375 -6.75 4.09375 -6.5625 4.09375 -6.375 L 4.09375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.09375 -2.78125 L 4.09375 0.390625 C 4.09375 0.5625 4.09375 0.765625 4.296875 0.765625 C 4.515625 0.765625 4.515625 0.578125 4.515625 0.390625 L 4.515625 -2.78125 L 7.6875 -2.78125 C 7.859375 -2.78125 8.0625 -2.78125 8.0625 -2.984375 Z M 8.0625 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.875 -2.484375 C 6.875 -2.671875 6.6875 -2.671875 6.546875 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.546875 -2.28125 C 6.6875 -2.28125 6.875 -2.28125 6.875 -2.484375 Z M 6.875 -2.484375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 76 113 L 110 113 L 110 138.328125 L 76 138.328125 Z M 76 113 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 134 16 L 155.132812 16 L 155.132812 48 L 134 48 Z M 134 16 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 134 50 L 155.132812 50 L 155.132812 82 L 134 82 Z M 134 50 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -56.693712 -42.518267 L 56.69394 -42.518267 L 56.69394 42.520508 L -56.693712 42.520508 Z M -56.693712 -42.518267 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="73.699509" y="10.893857"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.174553 -17.108807 L 36.852869 -17.108807 L 36.852869 -0.101052 L 14.174553 -0.101052 Z M 14.174553 -17.108807 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="96.416119" y="67.392639"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="103.506548" y="68.877723"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.174553 17.307533 L 36.852869 17.307533 L 36.852869 34.315288 L 14.174553 34.315288 Z M 14.174553 17.307533 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="95.62487" y="33.183033"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="102.714305" y="34.668117"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.332274 25.81141 C -3.332274 29.662519 -6.456388 32.786633 -10.307497 32.786633 C -14.158606 32.786633 -17.28272 29.662519 -17.28272 25.81141 C -17.28272 21.960301 -14.158606 18.836187 -10.307497 18.836187 C -6.456388 18.836187 -3.332274 21.960301 -3.332274 25.81141 Z M -3.332274 25.81141 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="63.008697" y="34.692968"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="57.637943" y="46.483179"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.33708 -80.369167 L 11.337307 -80.369167 L 11.337307 -63.357482 L -11.33708 -63.357482 Z M -11.33708 -80.369167 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="70.485804" y="131.525586"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="78.717382" y="133.01067"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -77.033855 25.81141 L -21.91584 25.81141 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051497 0.000130381 L 1.607003 1.682043 L 3.088501 0.000130381 L 1.607003 -1.681783 Z M 6.051497 0.000130381 " transform="matrix(0.994032,0,0,-0.994032,52.961182,31.793098)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="4.788251" y="27.998163"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.836152 -71.861359 L -67.111355 -71.861359 L -67.111355 -8.604929 L 9.042361 -8.604929 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053668 -0.000739094 L 1.609174 1.681174 L 3.086742 -0.000739094 L 1.609174 -1.682652 Z M 6.053668 -0.000739094 " transform="matrix(0.994032,0,0,-0.994032,83.732462,66.003172)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -10.307497 -8.604929 L -10.307497 14.203068 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052255 0.000627315 L 1.60776 1.68254 L 3.089259 0.000627315 L 1.60776 -1.681286 Z M 6.052255 0.000627315 " transform="matrix(0,-0.994032,-0.994032,0,67.320936,46.152853)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 69.300781 66.003906 C 69.300781 64.910156 68.414062 64.023438 67.320312 64.023438 C 66.226562 64.023438 65.339844 64.910156 65.339844 66.003906 C 65.339844 67.097656 66.226562 67.984375 67.320312 67.984375 C 68.414062 67.984375 69.300781 67.097656 69.300781 66.003906 Z M 69.300781 66.003906 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.332274 25.81141 L 9.042361 25.81141 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053668 0.000130381 L 1.609174 1.682043 L 3.086742 0.000130381 L 1.609174 -1.681783 Z M 6.053668 0.000130381 " transform="matrix(0.994032,0,0,-0.994032,83.732462,31.793098)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -37.347784 25.81141 L -37.347784 -34.415219 L 67.111583 -34.415219 L 67.111583 -71.861359 L 16.469499 -71.861359 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 90.742188 128.882812 L 95.160156 130.558594 L 93.691406 128.882812 L 95.160156 127.210938 Z M 90.742188 128.882812 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053978 -0.00192061 L 1.609484 1.683922 L 3.087052 -0.00192061 L 1.609484 -1.683834 Z M 6.053978 -0.00192061 " transform="matrix(-0.994032,0,0,0.994032,96.760034,128.884722)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 42.421875 31.792969 C 42.421875 30.699219 41.535156 29.8125 40.441406 29.8125 C 39.347656 29.8125 38.460938 30.699219 38.460938 31.792969 C 38.460938 32.886719 39.347656 33.773438 40.441406 33.773438 C 41.535156 33.773438 42.421875 32.886719 42.421875 31.792969 Z M 42.421875 31.792969 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.348012 25.81141 L 72.400963 25.81141 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 152.730469 31.792969 L 148.3125 30.121094 L 149.78125 31.792969 L 148.3125 33.464844 Z M 152.730469 31.792969 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05311 0.000130381 L 1.608616 1.682043 L 3.086184 0.000130381 L 1.608616 -1.681783 Z M 6.05311 0.000130381 " transform="matrix(0.994032,0,0,-0.994032,146.713484,31.793098)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="138.227087" y="26.512085"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="142.832436" y="27.998163"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.348012 -8.604929 L 72.400963 -8.604929 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.450333)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 152.730469 66.003906 L 148.3125 64.332031 L 149.78125 66.003906 L 148.3125 67.675781 Z M 152.730469 66.003906 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05311 -0.000739094 L 1.608616 1.681174 L 3.086184 -0.000739094 L 1.608616 -1.682652 Z M 6.05311 -0.000739094 " transform="matrix(0.994032,0,0,-0.994032,146.713484,66.003172)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="139.810579" y="60.722686"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="144.415929" y="62.207769"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,32 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
\node[block={4.0cm}{3.0cm}, dashed] (P) {};
\node[above] at (P.north) {$P$};
\coordinate[] (inputw) at ($(P.south west)!0.8!(P.north west) + (-\cdist, 0)$);
\coordinate[] (inputu) at ($(P.south west)!0.4!(P.north west) + (-\cdist, 0)$);
\coordinate[] (outputh) at ($(P.south east)!0.8!(P.north east) + ( \cdist, 0)$);
\coordinate[] (outputl) at ($(P.south east)!0.4!(P.north east) + ( \cdist, 0)$);
\coordinate[] (outputv) at ($(P.south east)!0.1!(P.north east) + ( \cdist, 0)$);
\node[block, left=2*\cdist of outputl] (WL){$w_L$};
\node[block, left=2*\cdist of outputh] (WH){$w_H$};
\node[addb={+}{}{}{}{-}, left=of WH] (sub) {};
\node[block, below=\cdist of P] (HL) {$H_L$};
\draw[->] (inputw) node[above right]{$w$} -- (sub.west);
\draw[->] (HL.west) -| ($(inputu)+(0.5*\cdist, 0)$) -- (WL.west);
\draw[->] (inputu-|sub) node[branch]{} -- (sub.south);
\draw[->] (sub.east) -- (WH.west);
\draw[->] ($(inputw)+(2*\cdist, 0)$) node[branch]{} |- ($(outputv)+(-0.5*\cdist, 0)$) |- (HL.east);
\draw[->] (WH.east) -- (outputh)node[above left]{$z_H$};
\draw[->] (WL.east) -- (outputl)node[above left]{$z_L$};
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,134 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="156.063pt" height="100.983pt" viewBox="0 0 156.063 100.983" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.46875 -5.265625 C 7.46875 -6.03125 6.8125 -6.765625 5.515625 -6.765625 L 2.3125 -6.765625 C 2.125 -6.765625 2.015625 -6.765625 2.015625 -6.578125 C 2.015625 -6.453125 2.09375 -6.453125 2.296875 -6.453125 C 2.421875 -6.453125 2.609375 -6.453125 2.71875 -6.4375 C 2.875 -6.421875 2.9375 -6.390625 2.9375 -6.28125 C 2.9375 -6.234375 2.9375 -6.21875 2.90625 -6.09375 L 1.578125 -0.765625 C 1.46875 -0.390625 1.453125 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.515625 0 0.546875 0 L 1.796875 -0.03125 L 2.4375 -0.015625 C 2.65625 -0.015625 2.875 0 3.078125 0 C 3.15625 0 3.28125 0 3.28125 -0.203125 C 3.28125 -0.3125 3.1875 -0.3125 3 -0.3125 C 2.640625 -0.3125 2.359375 -0.3125 2.359375 -0.484375 C 2.359375 -0.546875 2.375 -0.59375 2.390625 -0.65625 L 3 -3.125 L 4.6875 -3.125 C 6.09375 -3.125 7.46875 -4.15625 7.46875 -5.265625 Z M 6.546875 -5.515625 C 6.546875 -5.125 6.34375 -4.265625 5.96875 -3.90625 C 5.46875 -3.46875 4.875 -3.390625 4.4375 -3.390625 L 3.046875 -3.390625 L 3.71875 -6.078125 C 3.796875 -6.421875 3.828125 -6.453125 4.25 -6.453125 L 5.203125 -6.453125 C 6.015625 -6.453125 6.546875 -6.1875 6.546875 -5.515625 Z M 6.546875 -5.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 6.84375 -3.6875 C 6.84375 -4.234375 6.578125 -4.375 6.40625 -4.375 C 6.15625 -4.375 5.90625 -4.125 5.90625 -3.90625 C 5.90625 -3.78125 5.96875 -3.71875 6.0625 -3.640625 C 6.171875 -3.53125 6.421875 -3.265625 6.421875 -2.796875 C 6.421875 -2.453125 6.125 -1.484375 5.875 -0.984375 C 5.609375 -0.453125 5.265625 -0.109375 4.78125 -0.109375 C 4.3125 -0.109375 4.046875 -0.40625 4.046875 -0.96875 C 4.046875 -1.25 4.125 -1.5625 4.15625 -1.6875 L 4.578125 -3.359375 C 4.625 -3.578125 4.71875 -3.9375 4.71875 -4 C 4.71875 -4.1875 4.59375 -4.265625 4.4375 -4.265625 C 4.3125 -4.265625 4.140625 -4.1875 4.078125 -4 C 4.046875 -3.921875 3.578125 -2.03125 3.5 -1.765625 C 3.4375 -1.46875 3.421875 -1.296875 3.421875 -1.125 C 3.421875 -1.015625 3.421875 -0.984375 3.421875 -0.9375 C 3.203125 -0.421875 2.90625 -0.109375 2.515625 -0.109375 C 1.71875 -0.109375 1.71875 -0.84375 1.71875 -1.015625 C 1.71875 -1.328125 1.765625 -1.71875 2.234375 -2.9375 C 2.34375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.078125 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.859375 1.21875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.15625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.140625 C 1.203125 -1.96875 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.75 0.109375 2.484375 0.109375 C 2.65625 0.109375 3.125 0.109375 3.515625 -0.578125 C 3.78125 0.046875 4.453125 0.109375 4.75 0.109375 C 5.5 0.109375 5.9375 -0.515625 6.1875 -1.109375 C 6.53125 -1.875 6.84375 -3.203125 6.84375 -3.6875 Z M 6.84375 -3.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 5.375 -1.421875 C 5.375 -1.515625 5.296875 -1.515625 5.265625 -1.515625 C 5.15625 -1.515625 5.15625 -1.46875 5.125 -1.34375 C 4.984375 -0.78125 4.796875 -0.109375 4.375 -0.109375 C 4.171875 -0.109375 4.078125 -0.234375 4.078125 -0.5625 C 4.078125 -0.78125 4.1875 -1.25 4.265625 -1.59375 L 4.546875 -2.671875 C 4.578125 -2.8125 4.671875 -3.1875 4.71875 -3.34375 C 4.765625 -3.5625 4.859375 -3.9375 4.859375 -4 C 4.859375 -4.1875 4.71875 -4.265625 4.578125 -4.265625 C 4.53125 -4.265625 4.265625 -4.265625 4.1875 -3.921875 L 3.453125 -0.9375 C 3.4375 -0.90625 3.046875 -0.109375 2.3125 -0.109375 C 1.796875 -0.109375 1.703125 -0.5625 1.703125 -0.921875 C 1.703125 -1.46875 1.984375 -2.265625 2.234375 -2.9375 C 2.359375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.8125 -3.796875 1.1875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.15625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.15625 C 1.28125 -2.171875 1.0625 -1.5625 1.0625 -1.078125 C 1.0625 -0.140625 1.75 0.109375 2.28125 0.109375 C 2.9375 0.109375 3.296875 -0.34375 3.46875 -0.5625 C 3.578125 -0.15625 3.921875 0.109375 4.34375 0.109375 C 4.703125 0.109375 4.921875 -0.125 5.078125 -0.4375 C 5.25 -0.796875 5.375 -1.421875 5.375 -1.421875 Z M 5.375 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.640625 -3.6875 C 4.640625 -4.21875 4.375 -4.375 4.203125 -4.375 C 3.953125 -4.375 3.71875 -4.125 3.71875 -3.90625 C 3.71875 -3.78125 3.765625 -3.71875 3.875 -3.609375 C 4.078125 -3.40625 4.203125 -3.15625 4.203125 -2.796875 C 4.203125 -2.375 3.609375 -0.109375 2.453125 -0.109375 C 1.9375 -0.109375 1.71875 -0.453125 1.71875 -0.96875 C 1.71875 -1.53125 1.984375 -2.25 2.28125 -3.078125 C 2.359375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.859375 -3.9375 1.28125 -4.15625 1.5625 -4.15625 C 1.640625 -4.15625 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.59375 1.71875 -3.328125 1.640625 -3.15625 C 1.203125 -2 1.078125 -1.546875 1.078125 -1.125 C 1.078125 -0.046875 1.953125 0.109375 2.40625 0.109375 C 4.078125 0.109375 4.640625 -3.171875 4.640625 -3.6875 Z M 4.640625 -3.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.3125 -1.421875 C 4.3125 -1.46875 4.265625 -1.515625 4.1875 -1.515625 C 4.09375 -1.515625 4.078125 -1.453125 4.046875 -1.390625 C 3.828125 -0.75 3.1875 -0.5625 2.859375 -0.5625 C 2.671875 -0.5625 2.484375 -0.609375 2.28125 -0.6875 C 1.9375 -0.8125 1.796875 -0.859375 1.578125 -0.859375 C 1.578125 -0.859375 1.40625 -0.859375 1.3125 -0.828125 C 1.859375 -1.390625 2.140625 -1.640625 2.5 -1.953125 C 2.5 -1.953125 3.109375 -2.484375 3.46875 -2.84375 C 4.40625 -3.765625 4.625 -4.234375 4.625 -4.28125 C 4.625 -4.375 4.515625 -4.375 4.515625 -4.375 C 4.453125 -4.375 4.421875 -4.359375 4.375 -4.265625 C 4.078125 -3.796875 3.859375 -3.640625 3.625 -3.640625 C 3.390625 -3.640625 3.265625 -3.78125 3.125 -3.953125 C 2.9375 -4.1875 2.765625 -4.375 2.4375 -4.375 C 1.6875 -4.375 1.234375 -3.453125 1.234375 -3.25 C 1.234375 -3.203125 1.265625 -3.140625 1.359375 -3.140625 C 1.453125 -3.140625 1.46875 -3.1875 1.484375 -3.25 C 1.671875 -3.703125 2.25 -3.71875 2.328125 -3.71875 C 2.53125 -3.71875 2.71875 -3.640625 2.953125 -3.5625 C 3.34375 -3.421875 3.453125 -3.421875 3.71875 -3.421875 C 3.359375 -2.984375 2.53125 -2.28125 2.34375 -2.125 L 1.453125 -1.28125 C 0.765625 -0.625 0.421875 -0.0625 0.421875 0.015625 C 0.421875 0.109375 0.546875 0.109375 0.546875 0.109375 C 0.625 0.109375 0.640625 0.09375 0.703125 -0.015625 C 0.9375 -0.359375 1.234375 -0.640625 1.546875 -0.640625 C 1.765625 -0.640625 1.875 -0.546875 2.125 -0.25 C 2.28125 -0.046875 2.46875 0.109375 2.75 0.109375 C 3.734375 0.109375 4.3125 -1.15625 4.3125 -1.421875 Z M 4.3125 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5 -1.734375 C 5 -1.75 4.984375 -1.828125 4.890625 -1.828125 C 4.796875 -1.828125 4.78125 -1.796875 4.75 -1.671875 C 4.484375 -1.015625 4.171875 -0.25 2.90625 -0.25 L 2.125 -0.25 C 1.90625 -0.25 1.90625 -0.25 1.90625 -0.3125 C 1.90625 -0.3125 1.90625 -0.359375 1.921875 -0.46875 L 2.859375 -4.171875 C 2.921875 -4.421875 2.9375 -4.484375 3.578125 -4.484375 C 3.796875 -4.484375 3.859375 -4.484375 3.859375 -4.640625 C 3.859375 -4.640625 3.859375 -4.734375 3.75 -4.734375 C 3.59375 -4.734375 3.40625 -4.71875 3.234375 -4.71875 L 2.671875 -4.703125 L 2.203125 -4.71875 C 2.046875 -4.71875 1.890625 -4.734375 1.75 -4.734375 C 1.703125 -4.734375 1.609375 -4.734375 1.609375 -4.578125 C 1.609375 -4.484375 1.6875 -4.484375 1.828125 -4.484375 C 1.828125 -4.484375 1.96875 -4.484375 2.09375 -4.46875 C 2.234375 -4.453125 2.25 -4.453125 2.25 -4.375 C 2.25 -4.375 2.25 -4.328125 2.21875 -4.21875 L 1.296875 -0.546875 C 1.234375 -0.3125 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 0 0.5625 0 0.6875 0 L 4.171875 0 C 4.34375 0 4.359375 0 4.40625 -0.140625 C 4.484375 -0.328125 5 -1.671875 5 -1.734375 Z M 5 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 5.53125 -0.140625 C 5.53125 -0.25 5.46875 -0.25 5.3125 -0.25 C 5.203125 -0.25 5.171875 -0.25 5.046875 -0.265625 C 4.890625 -0.28125 4.890625 -0.296875 4.890625 -0.375 C 4.890625 -0.40625 4.90625 -0.484375 4.921875 -0.515625 L 5.828125 -4.171875 C 5.890625 -4.4375 5.90625 -4.484375 6.421875 -4.484375 C 6.578125 -4.484375 6.65625 -4.484375 6.65625 -4.640625 C 6.65625 -4.671875 6.640625 -4.734375 6.546875 -4.734375 C 6.34375 -4.734375 5.84375 -4.703125 5.640625 -4.703125 C 5.515625 -4.703125 5.28125 -4.703125 5.15625 -4.71875 C 5.015625 -4.71875 4.859375 -4.734375 4.71875 -4.734375 C 4.6875 -4.734375 4.578125 -4.734375 4.578125 -4.578125 C 4.578125 -4.484375 4.65625 -4.484375 4.796875 -4.484375 C 4.796875 -4.484375 4.9375 -4.484375 5.0625 -4.46875 C 5.203125 -4.453125 5.21875 -4.453125 5.21875 -4.375 C 5.21875 -4.375 5.21875 -4.328125 5.203125 -4.21875 L 4.78125 -2.59375 L 2.46875 -2.59375 L 2.859375 -4.203125 C 2.921875 -4.4375 2.9375 -4.484375 3.46875 -4.484375 C 3.59375 -4.484375 3.6875 -4.484375 3.6875 -4.640625 C 3.6875 -4.671875 3.65625 -4.734375 3.578125 -4.734375 C 3.375 -4.734375 2.859375 -4.703125 2.65625 -4.703125 C 2.546875 -4.703125 2.296875 -4.703125 2.1875 -4.71875 C 2.046875 -4.71875 1.875 -4.734375 1.75 -4.734375 C 1.703125 -4.734375 1.609375 -4.734375 1.609375 -4.578125 C 1.609375 -4.484375 1.6875 -4.484375 1.828125 -4.484375 C 1.828125 -4.484375 1.96875 -4.484375 2.09375 -4.46875 C 2.234375 -4.453125 2.25 -4.453125 2.25 -4.375 C 2.25 -4.375 2.25 -4.328125 2.21875 -4.21875 L 1.296875 -0.546875 C 1.234375 -0.3125 1.234375 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.484375 -0.25 0.484375 -0.109375 C 0.484375 -0.03125 0.53125 0 0.59375 0 C 0.796875 0 1.296875 -0.03125 1.484375 -0.03125 C 1.609375 -0.03125 1.859375 -0.03125 1.96875 -0.015625 C 2.109375 -0.015625 2.28125 0 2.421875 0 C 2.453125 0 2.5625 0 2.5625 -0.140625 C 2.5625 -0.25 2.484375 -0.25 2.328125 -0.25 C 2.21875 -0.25 2.1875 -0.25 2.0625 -0.265625 C 1.921875 -0.28125 1.921875 -0.296875 1.921875 -0.375 C 1.921875 -0.375 1.921875 -0.421875 1.9375 -0.515625 L 2.40625 -2.34375 L 4.71875 -2.34375 L 4.28125 -0.546875 C 4.21875 -0.3125 4.203125 -0.25 3.65625 -0.25 C 3.546875 -0.25 3.453125 -0.25 3.453125 -0.109375 C 3.453125 -0.03125 3.5 0 3.5625 0 C 3.765625 0 4.265625 -0.03125 4.46875 -0.03125 C 4.578125 -0.03125 4.828125 -0.03125 4.953125 -0.015625 C 5.078125 -0.015625 5.265625 0 5.390625 0 C 5.421875 0 5.53125 0 5.53125 -0.140625 Z M 5.53125 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 8.0625 -2.984375 C 8.0625 -3.203125 7.875 -3.203125 7.6875 -3.203125 L 4.515625 -3.203125 L 4.515625 -6.375 C 4.515625 -6.546875 4.515625 -6.75 4.3125 -6.75 C 4.09375 -6.75 4.09375 -6.5625 4.09375 -6.375 L 4.09375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.09375 -2.78125 L 4.09375 0.390625 C 4.09375 0.5625 4.09375 0.765625 4.296875 0.765625 C 4.515625 0.765625 4.515625 0.578125 4.515625 0.390625 L 4.515625 -2.78125 L 7.6875 -2.78125 C 7.859375 -2.78125 8.0625 -2.78125 8.0625 -2.984375 Z M 8.0625 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.875 -2.484375 C 6.875 -2.671875 6.6875 -2.671875 6.546875 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.546875 -2.28125 C 6.6875 -2.28125 6.875 -2.28125 6.875 -2.484375 Z M 6.875 -2.484375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 20 14 L 135 14 L 135 100.671875 L 20 100.671875 Z M 20 14 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 134 75 L 155.132812 75 L 155.132812 100.671875 L 134 100.671875 Z M 134 75 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 134 16 L 155.132812 16 L 155.132812 48 L 134 48 Z M 134 16 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 134 50 L 155.132812 50 L 155.132812 82 L 134 82 Z M 134 50 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 21.210938 99.679688 L 133.921875 99.679688 L 133.921875 15.148438 L 21.210938 15.148438 Z M 21.210938 99.679688 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -56.693712 -42.518513 L 56.69394 -42.518513 L 56.69394 42.520262 L -56.693712 42.520262 Z M -56.693712 -42.518513 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="73.699509" y="10.858456"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.174553 -17.109053 L 36.852869 -17.109053 L 36.852869 -0.101298 L 14.174553 -0.101298 Z M 14.174553 -17.109053 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="96.416119" y="67.357238"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="103.506548" y="68.842322"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.174553 17.307287 L 36.852869 17.307287 L 36.852869 34.315042 L 14.174553 34.315042 Z M 14.174553 17.307287 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="95.62487" y="33.147632"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="102.714305" y="34.632716"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.332274 25.811164 C -3.332274 29.662273 -6.456388 32.786387 -10.307497 32.786387 C -14.158606 32.786387 -17.28272 29.662273 -17.28272 25.811164 C -17.28272 21.960055 -14.158606 18.835941 -10.307497 18.835941 C -6.456388 18.835941 -3.332274 21.960055 -3.332274 25.811164 Z M -3.332274 25.811164 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="63.008697" y="34.657567"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="57.637943" y="46.447778"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -77.033855 25.811164 L -21.91584 25.811164 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051497 -0.000115711 L 1.607003 1.681797 L 3.088501 -0.000115711 L 1.607003 -1.682029 Z M 6.051497 -0.000115711 " transform="matrix(0.994032,0,0,-0.994032,52.961182,31.757697)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="4.788251" y="27.962762"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -77.033855 -8.605175 L 9.042361 -8.605175 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053668 -0.000985186 L 1.609174 1.684857 L 3.086742 -0.000985186 L 1.609174 -1.682898 Z M 6.053668 -0.000985186 " transform="matrix(0.994032,0,0,-0.994032,83.732462,65.967771)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="4.788251" y="62.172368"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -10.307497 -8.605175 L -10.307497 14.202821 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052009 0.000627315 L 1.607514 1.68254 L 3.089012 0.000627315 L 1.607514 -1.681286 Z M 6.052009 0.000627315 " transform="matrix(0,-0.994032,-0.994032,0,67.320936,46.117452)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 69.300781 65.96875 C 69.300781 64.875 68.414062 63.988281 67.320312 63.988281 C 66.226562 63.988281 65.339844 64.875 65.339844 65.96875 C 65.339844 67.0625 66.226562 67.949219 67.320312 67.949219 C 68.414062 67.949219 69.300781 67.0625 69.300781 65.96875 Z M 69.300781 65.96875 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.332274 25.811164 L 9.042361 25.811164 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053668 -0.000115711 L 1.609174 1.681797 L 3.086742 -0.000115711 L 1.609174 -1.682029 Z M 6.053668 -0.000115711 " transform="matrix(0.994032,0,0,-0.994032,83.732462,31.757697)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -37.347784 25.811164 L -37.347784 -34.415465 L 72.400963 -34.415465 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 152.730469 91.625 L 148.3125 89.949219 L 149.78125 91.625 L 148.3125 93.296875 Z M 152.730469 91.625 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05311 -0.00129494 L 1.608616 1.684548 L 3.086184 -0.00129494 L 1.608616 -1.683208 Z M 6.05311 -0.00129494 " transform="matrix(0.994032,0,0,-0.994032,146.713484,91.623713)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 42.421875 31.757812 C 42.421875 30.664062 41.535156 29.777344 40.441406 29.777344 C 39.347656 29.777344 38.460938 30.664062 38.460938 31.757812 C 38.460938 32.851562 39.347656 33.738281 40.441406 33.738281 C 41.535156 33.738281 42.421875 32.851562 42.421875 31.757812 Z M 42.421875 31.757812 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="145.188292" y="87.827336"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.348012 25.811164 L 72.400963 25.811164 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 152.730469 31.757812 L 148.3125 30.085938 L 149.78125 31.757812 L 148.3125 33.429688 Z M 152.730469 31.757812 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05311 -0.000115711 L 1.608616 1.681797 L 3.086184 -0.000115711 L 1.608616 -1.682029 Z M 6.05311 -0.000115711 " transform="matrix(0.994032,0,0,-0.994032,146.713484,31.757697)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="138.227087" y="26.476685"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="142.832436" y="27.962762"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.348012 -8.605175 L 72.400963 -8.605175 " transform="matrix(0.994032,0,0,-0.994032,77.566293,57.414932)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 152.730469 65.96875 L 148.3125 64.292969 L 149.78125 65.96875 L 148.3125 67.640625 Z M 152.730469 65.96875 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05311 -0.000985186 L 1.608616 1.684857 L 3.086184 -0.000985186 L 1.608616 -1.682898 Z M 6.05311 -0.000985186 " transform="matrix(0.994032,0,0,-0.994032,146.713484,65.967771)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="139.810579" y="60.686291"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="144.415929" y="62.172368"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,30 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\begin{tikzpicture}
\node[block={4.0cm}{3.0cm}, dashed] (P) {};
\node[above] at (P.north) {$P$};
\coordinate[] (inputw) at ($(P.south west)!0.8!(P.north west) + (-\cdist, 0)$);
\coordinate[] (inputu) at ($(P.south west)!0.4!(P.north west) + (-\cdist, 0)$);
\coordinate[] (outputh) at ($(P.south east)!0.8!(P.north east) + ( \cdist, 0)$);
\coordinate[] (outputl) at ($(P.south east)!0.4!(P.north east) + ( \cdist, 0)$);
\coordinate[] (outputv) at ($(P.south east)!0.1!(P.north east) + ( \cdist, 0)$);
\node[block, left=2*\cdist of outputl] (WL){$w_L$};
\node[block, left=2*\cdist of outputh] (WH){$w_H$};
\node[addb={+}{}{}{}{-}, left=of WH] (sub) {};
\draw[->] (inputw) node[above right]{$w$} -- (sub.west);
\draw[->] (inputu) node[above right]{$u$} -- (WL.west);
\draw[->] (inputu-|sub) node[branch]{} -- (sub.south);
\draw[->] (sub.east) -- (WH.west);
\draw[->] ($(inputw)+(2*\cdist, 0)$) node[branch]{} |- (outputv) node[above left]{$v$};
\draw[->] (WH.east) -- (outputh)node[above left]{$z_H$};
\draw[->] (WL.east) -- (outputl)node[above left]{$z_L$};
\end{tikzpicture}

BIN
tikz/figs/spec_S_T.pdf Normal file

Binary file not shown.

BIN
tikz/figs/spec_S_T.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

434
tikz/figs/spec_S_T.svg Normal file
View File

@ -0,0 +1,434 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="252.56pt" height="182.46pt" viewBox="0 0 252.56 182.46" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.359375 C 2.921875 -6.59375 2.921875 -6.625 2.6875 -6.625 C 2.078125 -5.984375 1.203125 -5.984375 0.890625 -5.984375 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.9375 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.71875 -6.453125 2.90625 -6.625 2.484375 -6.625 C 1.890625 -6.625 1.15625 -6.359375 0.75 -5.4375 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3.015625 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.578125 -2.390625 4.578125 -3.1875 Z M 3.75 -3.296875 C 3.75 -2.546875 3.75 -1.875 3.640625 -1.25 C 3.484375 -0.296875 2.921875 0 2.46875 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.296875 C 1.21875 -3.9375 1.21875 -4.59375 1.296875 -5.125 C 1.484375 -6.3125 2.21875 -6.40625 2.46875 -6.40625 C 2.796875 -6.40625 3.453125 -6.21875 3.640625 -5.234375 C 3.75 -4.6875 3.75 -3.921875 3.75 -3.296875 Z M 3.75 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 7.109375 -6.484375 L 7.109375 -6.78125 L 5.953125 -6.75 L 4.796875 -6.78125 L 4.796875 -6.484375 C 5.8125 -6.484375 5.8125 -6.015625 5.8125 -5.75 L 5.8125 -1.5 L 2.3125 -6.65625 C 2.21875 -6.78125 2.203125 -6.78125 2.015625 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.484375 L 0.609375 -6.484375 C 0.765625 -6.484375 0.96875 -6.46875 1.109375 -6.453125 C 1.34375 -6.421875 1.34375 -6.421875 1.34375 -6.234375 L 1.34375 -1.046875 C 1.34375 -0.78125 1.34375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.484375 -0.03125 L 2.65625 0 L 2.65625 -0.3125 C 1.625 -0.3125 1.625 -0.78125 1.625 -1.046875 L 1.625 -6.21875 C 1.671875 -6.15625 1.6875 -6.15625 1.734375 -6.09375 L 5.78125 -0.125 C 5.875 -0.015625 5.890625 0 5.953125 0 C 6.09375 0 6.09375 -0.0625 6.09375 -0.265625 L 6.09375 -5.75 C 6.09375 -6.015625 6.09375 -6.484375 7.109375 -6.484375 Z M 7.109375 -6.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 4.6875 -2.125 C 4.6875 -3.40625 3.6875 -4.453125 2.484375 -4.453125 C 1.25 -4.453125 0.28125 -3.375 0.28125 -2.125 C 0.28125 -0.84375 1.3125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.6875 -0.859375 4.6875 -2.125 Z M 3.859375 -2.203125 C 3.859375 -1.84375 3.859375 -1.3125 3.640625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.484375 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.34375 -0.8125 C 1.109375 -1.25 1.109375 -1.84375 1.109375 -2.203125 C 1.109375 -2.59375 1.109375 -3.125 1.34375 -3.5625 C 1.609375 -4.03125 2.078125 -4.234375 2.46875 -4.234375 C 2.90625 -4.234375 3.34375 -4.015625 3.59375 -3.59375 C 3.859375 -3.15625 3.859375 -2.578125 3.859375 -2.203125 Z M 3.859375 -2.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 2.453125 0 L 2.453125 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.390625 L 0.375 -4.28125 L 0.375 -3.96875 C 1.015625 -3.96875 1.109375 -3.921875 1.109375 -3.421875 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.765625 -0.03125 2.109375 -0.015625 2.453125 0 Z M 1.90625 -6 C 1.90625 -6.265625 1.671875 -6.53125 1.375 -6.53125 C 1.046875 -6.53125 0.84375 -6.25 0.84375 -6 C 0.84375 -5.734375 1.078125 -5.46875 1.375 -5.46875 C 1.703125 -5.46875 1.90625 -5.75 1.90625 -6 Z M 1.90625 -6 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 3.578125 -1.265625 C 3.578125 -1.796875 3.28125 -2.09375 3.15625 -2.21875 C 2.828125 -2.53125 2.4375 -2.609375 2.03125 -2.6875 C 1.46875 -2.796875 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.859375 1.0625 -4.265625 1.921875 -4.265625 C 3.015625 -4.265625 3.0625 -3.375 3.078125 -3.0625 C 3.09375 -2.96875 3.203125 -2.96875 3.203125 -2.96875 C 3.328125 -2.96875 3.328125 -3.015625 3.328125 -3.203125 L 3.328125 -4.21875 C 3.328125 -4.375 3.328125 -4.453125 3.21875 -4.453125 C 3.171875 -4.453125 3.15625 -4.453125 3.015625 -4.328125 C 2.984375 -4.296875 2.890625 -4.203125 2.859375 -4.171875 C 2.46875 -4.453125 2.0625 -4.453125 1.921875 -4.453125 C 0.703125 -4.453125 0.328125 -3.78125 0.328125 -3.234375 C 0.328125 -2.875 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.125 1.34375 -2.0625 2.0625 -1.921875 C 2.28125 -1.890625 3.09375 -1.734375 3.09375 -1.015625 C 3.09375 -0.5 2.75 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.765625 0.109375 1.984375 0.109375 C 3.125 0.109375 3.578125 -0.5625 3.578125 -1.265625 Z M 3.578125 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.125 -1 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 7.125 0 L 7.125 -0.3125 L 6.953125 -0.3125 C 6.34375 -0.3125 6.21875 -0.375 6.109375 -0.703125 L 3.953125 -6.921875 C 3.90625 -7.046875 3.890625 -7.109375 3.734375 -7.109375 C 3.5625 -7.109375 3.53125 -7.0625 3.484375 -6.921875 L 1.4375 -0.96875 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.328125 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.734375 -0.9375 1.75 -0.96875 L 2.203125 -2.265625 L 4.65625 -2.265625 L 5.1875 -0.75 C 5.203125 -0.703125 5.21875 -0.640625 5.21875 -0.609375 C 5.21875 -0.3125 4.65625 -0.3125 4.390625 -0.3125 L 4.390625 0 C 4.75 -0.03125 5.453125 -0.03125 5.828125 -0.03125 Z M 4.546875 -2.578125 L 2.3125 -2.578125 L 3.421875 -5.796875 Z M 4.546875 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 3.296875 -1.234375 L 3.296875 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.96875 L 3.140625 -3.96875 L 3.140625 -4.28125 L 1.71875 -4.28125 L 1.71875 -6.109375 L 1.46875 -6.109375 C 1.453125 -5.296875 1.15625 -4.234375 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.296875 -0.59375 3.296875 -1.234375 Z M 3.296875 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.625 -0.3125 4.546875 -0.375 4.546875 -0.859375 L 4.546875 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.78125 -3.96875 3.859375 -3.90625 3.859375 -3.421875 L 3.859375 -1.65625 C 3.859375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 4.796875 -0.890625 L 4.796875 -1.4375 L 4.546875 -1.4375 L 4.546875 -0.890625 C 4.546875 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.828125 -0.703125 3.828125 -0.75 L 3.828125 -2.734375 C 3.828125 -3.15625 3.828125 -3.53125 3.46875 -3.90625 C 3.078125 -4.296875 2.578125 -4.453125 2.109375 -4.453125 C 1.296875 -4.453125 0.609375 -3.984375 0.609375 -3.328125 C 0.609375 -3.03125 0.8125 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.0625 1.515625 -3.3125 C 1.515625 -3.4375 1.46875 -3.765625 1.015625 -3.78125 C 1.28125 -4.125 1.765625 -4.234375 2.09375 -4.234375 C 2.578125 -4.234375 3.140625 -3.84375 3.140625 -2.96875 L 3.140625 -2.59375 C 2.640625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.25 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.1875 0.0625 4.796875 -0.078125 4.796875 -0.890625 Z M 3.140625 -1.390625 C 3.140625 -0.453125 2.421875 -0.109375 1.984375 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.328125 3.140625 -2.390625 Z M 3.140625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 6.46875 -1.8125 C 6.46875 -2.6875 5.65625 -3.421875 4.546875 -3.546875 C 5.515625 -3.734375 6.203125 -4.375 6.203125 -5.109375 C 6.203125 -5.96875 5.28125 -6.78125 4 -6.78125 L 0.359375 -6.78125 L 0.359375 -6.484375 L 0.59375 -6.484375 C 1.359375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.25 0 C 5.578125 0 6.46875 -0.890625 6.46875 -1.8125 Z M 5.234375 -5.109375 C 5.234375 -4.46875 4.75 -3.640625 3.640625 -3.640625 L 2.203125 -3.640625 L 2.203125 -6.078125 C 2.203125 -6.40625 2.21875 -6.484375 2.6875 -6.484375 L 3.921875 -6.484375 C 4.890625 -6.484375 5.234375 -5.640625 5.234375 -5.109375 Z M 5.46875 -1.828125 C 5.46875 -1.125 4.953125 -0.3125 3.9375 -0.3125 L 2.6875 -0.3125 C 2.21875 -0.3125 2.203125 -0.375 2.203125 -0.703125 L 2.203125 -3.421875 L 4.078125 -3.421875 C 5.0625 -3.421875 5.46875 -2.5 5.46875 -1.828125 Z M 5.46875 -1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 5.234375 0 L 5.234375 -0.3125 C 4.546875 -0.3125 4.46875 -0.375 4.46875 -0.859375 L 4.46875 -6.890625 L 3.03125 -6.78125 L 3.03125 -6.484375 C 3.734375 -6.484375 3.8125 -6.40625 3.8125 -5.921875 L 3.8125 -3.78125 C 3.515625 -4.140625 3.09375 -4.390625 2.546875 -4.390625 C 1.375 -4.390625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.4375 0.109375 C 3.078125 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.96875 3.671875 -0.8125 C 3.375 -0.328125 2.921875 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.1875 -1.15625 1.15625 -1.71875 1.15625 -2.125 C 1.15625 -2.5 1.1875 -3.09375 1.46875 -3.53125 C 1.671875 -3.84375 2.0625 -4.171875 2.59375 -4.171875 C 2.9375 -4.171875 3.359375 -4.03125 3.671875 -3.578125 C 3.78125 -3.40625 3.78125 -3.390625 3.78125 -3.203125 Z M 3.78125 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 6.984375 -3.96875 L 6.984375 -4.28125 C 6.765625 -4.265625 6.484375 -4.25 6.265625 -4.25 L 5.34375 -4.28125 L 5.34375 -3.96875 C 5.6875 -3.96875 5.90625 -3.78125 5.90625 -3.5 C 5.90625 -3.4375 5.90625 -3.421875 5.859375 -3.296875 L 4.953125 -0.75 L 3.96875 -3.515625 C 3.9375 -3.640625 3.921875 -3.65625 3.921875 -3.703125 C 3.921875 -3.96875 4.3125 -3.96875 4.515625 -3.96875 L 4.515625 -4.28125 L 3.484375 -4.25 C 3.1875 -4.25 2.890625 -4.265625 2.59375 -4.28125 L 2.59375 -3.96875 C 2.96875 -3.96875 3.125 -3.953125 3.21875 -3.828125 C 3.265625 -3.765625 3.375 -3.46875 3.453125 -3.28125 L 2.59375 -0.875 L 1.65625 -3.53125 C 1.59375 -3.640625 1.59375 -3.671875 1.59375 -3.703125 C 1.59375 -3.96875 1.984375 -3.96875 2.1875 -3.96875 L 2.1875 -4.28125 L 1.109375 -4.25 L 0.171875 -4.28125 L 0.171875 -3.96875 C 0.671875 -3.96875 0.796875 -3.9375 0.921875 -3.625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.5 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.578125 -2.90625 L 4.59375 -0.078125 C 4.625 0.03125 4.65625 0.109375 4.796875 0.109375 C 4.921875 0.109375 4.953125 0.015625 4.984375 -0.078125 L 6.15625 -3.34375 C 6.328125 -3.828125 6.640625 -3.96875 6.984375 -3.96875 Z M 6.984375 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.359375 -4.390625 1.921875 -3.796875 1.765625 -3.4375 L 1.75 -3.4375 L 1.75 -6.890625 L 0.3125 -6.78125 L 0.3125 -6.484375 C 1.015625 -6.484375 1.09375 -6.40625 1.09375 -5.921875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M 5.78125 -2.5625 L 5.53125 -2.5625 C 5.421875 -1.546875 5.28125 -0.3125 3.53125 -0.3125 L 2.71875 -0.3125 C 2.25 -0.3125 2.234375 -0.375 2.234375 -0.703125 L 2.234375 -6 C 2.234375 -6.34375 2.234375 -6.484375 3.1875 -6.484375 L 3.515625 -6.484375 L 3.515625 -6.78125 C 3.15625 -6.75 2.25 -6.75 1.84375 -6.75 C 1.453125 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.484375 L 0.5625 -6.484375 C 1.328125 -6.484375 1.34375 -6.375 1.34375 -6.015625 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 5.5 0 Z M 5.78125 -2.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-16">
<path style="stroke:none;" d="M 8.078125 0 L 8.078125 -0.3125 C 7.5625 -0.3125 7.3125 -0.3125 7.296875 -0.609375 L 7.296875 -2.5 C 7.296875 -3.359375 7.296875 -3.671875 7 -4.03125 C 6.859375 -4.1875 6.53125 -4.390625 5.953125 -4.390625 C 5.125 -4.390625 4.6875 -3.796875 4.515625 -3.421875 C 4.375 -4.28125 3.640625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 L 5.3125 0 L 5.3125 -0.3125 C 4.65625 -0.3125 4.546875 -0.3125 4.546875 -0.75 L 4.546875 -2.578125 C 4.546875 -3.625 5.25 -4.171875 5.890625 -4.171875 C 6.515625 -4.171875 6.625 -3.640625 6.625 -3.078125 L 6.625 -0.75 C 6.625 -0.3125 6.515625 -0.3125 5.84375 -0.3125 L 5.84375 0 L 6.96875 -0.03125 Z M 8.078125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-17">
<path style="stroke:none;" d="M 7.28125 -0.875 C 7.28125 -0.9375 7.28125 -1.046875 7.140625 -1.046875 C 7.03125 -1.046875 7.03125 -0.953125 7.03125 -0.890625 C 6.96875 -0.171875 6.625 0 6.375 0 C 5.890625 0 5.796875 -0.5 5.671875 -1.4375 L 5.53125 -2.21875 C 5.359375 -2.859375 4.875 -3.1875 4.328125 -3.375 C 5.28125 -3.625 6.0625 -4.21875 6.0625 -5 C 6.0625 -5.953125 4.921875 -6.78125 3.46875 -6.78125 L 0.34375 -6.78125 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.34375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.34375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.40625 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.890625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.21875 -0.421875 2.21875 -0.78125 L 2.21875 -3.296875 L 3.375 -3.296875 C 3.53125 -3.296875 3.9375 -3.296875 4.296875 -2.953125 C 4.671875 -2.59375 4.671875 -2.28125 4.671875 -1.625 C 4.671875 -0.96875 4.671875 -0.578125 5.078125 -0.203125 C 5.484375 0.15625 6.03125 0.21875 6.328125 0.21875 C 7.109375 0.21875 7.28125 -0.59375 7.28125 -0.875 Z M 5.03125 -5 C 5.03125 -4.3125 4.796875 -3.515625 3.328125 -3.515625 L 2.21875 -3.515625 L 2.21875 -6.078125 C 2.21875 -6.3125 2.21875 -6.421875 2.4375 -6.453125 C 2.546875 -6.484375 2.828125 -6.484375 3.03125 -6.484375 C 3.921875 -6.484375 5.03125 -6.4375 5.03125 -5 Z M 5.03125 -5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-18">
<path style="stroke:none;" d="M 5.171875 -2.140625 C 5.171875 -3.40625 4.203125 -4.390625 3.078125 -4.390625 C 2.296875 -4.390625 1.875 -3.921875 1.703125 -3.75 L 1.703125 -6.890625 L 0.28125 -6.78125 L 0.28125 -6.484375 C 0.96875 -6.484375 1.046875 -6.40625 1.046875 -5.921875 L 1.046875 0 L 1.296875 0 L 1.65625 -0.609375 C 1.8125 -0.390625 2.21875 0.109375 2.96875 0.109375 C 4.140625 0.109375 5.171875 -0.859375 5.171875 -2.140625 Z M 4.359375 -2.15625 C 4.359375 -1.78125 4.328125 -1.1875 4.046875 -0.75 C 3.828125 -0.4375 3.453125 -0.109375 2.921875 -0.109375 C 2.46875 -0.109375 2.109375 -0.34375 1.875 -0.71875 C 1.734375 -0.921875 1.734375 -0.953125 1.734375 -1.140625 L 1.734375 -3.1875 C 1.734375 -3.375 1.734375 -3.375 1.84375 -3.53125 C 2.234375 -4.09375 2.78125 -4.171875 3.015625 -4.171875 C 3.46875 -4.171875 3.828125 -3.921875 4.0625 -3.53125 C 4.328125 -3.125 4.359375 -2.5625 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-19">
<path style="stroke:none;" d="M 4.953125 -1.84375 C 4.953125 -2.84375 4.296875 -3.65625 3.46875 -3.859375 L 2.203125 -4.15625 C 1.578125 -4.3125 1.1875 -4.84375 1.1875 -5.421875 C 1.1875 -6.125 1.734375 -6.734375 2.5 -6.734375 C 4.15625 -6.734375 4.375 -5.09375 4.4375 -4.65625 C 4.453125 -4.59375 4.453125 -4.53125 4.5625 -4.53125 C 4.6875 -4.53125 4.6875 -4.578125 4.6875 -4.765625 L 4.6875 -6.765625 C 4.6875 -6.9375 4.6875 -7 4.578125 -7 C 4.515625 -7 4.5 -7 4.4375 -6.875 L 4.078125 -6.3125 C 3.78125 -6.59375 3.375 -7 2.5 -7 C 1.390625 -7 0.5625 -6.125 0.5625 -5.078125 C 0.5625 -4.25 1.078125 -3.53125 1.859375 -3.265625 C 1.96875 -3.21875 2.46875 -3.09375 3.171875 -2.9375 C 3.4375 -2.859375 3.734375 -2.796875 4.015625 -2.421875 C 4.21875 -2.171875 4.328125 -1.84375 4.328125 -1.515625 C 4.328125 -0.8125 3.828125 -0.09375 2.984375 -0.09375 C 2.703125 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.15625 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.25 0.71875 -2.25 0.6875 -2.25 C 0.5625 -2.25 0.5625 -2.1875 0.5625 -2 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.109375 0.21875 3 0.21875 C 4.15625 0.21875 4.953125 -0.75 4.953125 -1.84375 Z M 4.953125 -1.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-20">
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.890625 L 0.328125 -6.78125 L 0.328125 -6.484375 C 1.03125 -6.484375 1.109375 -6.40625 1.109375 -5.921875 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.53125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-21">
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.265625 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.75 -3.96875 3.90625 -3.796875 3.90625 -3.546875 C 3.90625 -3.453125 3.890625 -3.421875 3.84375 -3.3125 L 2.84375 -0.859375 L 1.734375 -3.53125 C 1.703125 -3.640625 1.671875 -3.671875 1.671875 -3.71875 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.265625 0.1875 -4.28125 L 0.1875 -3.96875 C 0.671875 -3.96875 0.859375 -3.96875 1 -3.625 L 2.484375 0 L 2.234375 0.59375 C 2.015625 1.140625 1.734375 1.8125 1.109375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.03125 1.375 1.03125 1.21875 C 1.03125 0.96875 0.828125 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.109375 2.03125 C 1.734375 2.03125 2.140625 1.46875 2.375 0.90625 L 4.125 -3.34375 C 4.375 -3.96875 4.890625 -3.96875 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-22">
<path style="stroke:none;" d="M 7.03125 -3.34375 C 7.03125 -5.234375 5.6875 -6.78125 3.984375 -6.78125 L 0.34375 -6.78125 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.34375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.34375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 L 3.984375 0 C 5.65625 0 7.03125 -1.46875 7.03125 -3.34375 Z M 6.03125 -3.34375 C 6.03125 -2.234375 5.84375 -1.640625 5.484375 -1.15625 C 5.28125 -0.890625 4.71875 -0.3125 3.71875 -0.3125 L 2.71875 -0.3125 C 2.25 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -6.078125 C 2.21875 -6.40625 2.25 -6.484375 2.71875 -6.484375 L 3.703125 -6.484375 C 4.328125 -6.484375 5.015625 -6.265625 5.515625 -5.5625 C 5.9375 -4.96875 6.03125 -4.109375 6.03125 -3.34375 Z M 6.03125 -3.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-23">
<path style="stroke:none;" d="M 3.625 -3.78125 C 3.625 -4.109375 3.3125 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.734375 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.421875 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.3125 C 1.703125 -3.296875 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.96875 -4.15625 2.765625 -4.03125 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.375 -3.34375 3.625 -3.46875 3.625 -3.78125 Z M 3.625 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-24">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.90625 -1.28125 3.890625 -1.25 3.859375 -1.1875 C 3.578125 -0.265625 2.9375 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.171875 C 1.15625 -3.78125 1.984375 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.8125 3.09375 -3.515625 3.09375 -3.375 C 3.09375 -3.125 3.28125 -2.921875 3.5625 -2.921875 C 3.8125 -2.921875 4.015625 -3.09375 4.015625 -3.390625 C 4.015625 -4.0625 3.265625 -4.453125 2.5 -4.453125 C 1.25 -4.453125 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.328125 0.109375 2.46875 0.109375 C 3.8125 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-25">
<path style="stroke:none;" d="M 2.09375 0.5 L 2.09375 -4.390625 L 0.578125 -4.28125 L 0.578125 -3.96875 C 1.34375 -3.96875 1.4375 -3.90625 1.4375 -3.421875 L 1.4375 0.515625 C 1.4375 0.96875 1.34375 1.8125 0.703125 1.8125 C 0.65625 1.8125 0.421875 1.8125 0.171875 1.6875 C 0.3125 1.65625 0.515625 1.515625 0.515625 1.25 C 0.515625 0.984375 0.34375 0.78125 0.0625 0.78125 C -0.21875 0.78125 -0.390625 0.984375 -0.390625 1.25 C -0.390625 1.765625 0.15625 2.03125 0.71875 2.03125 C 1.46875 2.03125 2.09375 1.40625 2.09375 0.5 Z M 2.09375 -6 C 2.09375 -6.265625 1.859375 -6.53125 1.5625 -6.53125 C 1.21875 -6.53125 1.03125 -6.25 1.03125 -6 C 1.03125 -5.734375 1.25 -5.46875 1.546875 -5.46875 C 1.890625 -5.46875 2.09375 -5.75 2.09375 -6 Z M 2.09375 -6 "/>
</symbol>
<symbol overflow="visible" id="glyph3-26">
<path style="stroke:none;" d="M 6.0625 -4.515625 L 5.78125 -6.75 L 0.328125 -6.75 L 0.328125 -6.453125 L 0.5625 -6.453125 C 1.328125 -6.453125 1.34375 -6.34375 1.34375 -5.984375 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.234375 L 3.09375 -3.234375 C 4.046875 -3.234375 4.140625 -2.90625 4.140625 -2.0625 L 4.390625 -2.0625 L 4.390625 -4.703125 L 4.140625 -4.703125 C 4.140625 -3.859375 4.046875 -3.53125 3.09375 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.046875 C 2.234375 -6.375 2.25 -6.453125 2.71875 -6.453125 L 3.921875 -6.453125 C 5.40625 -6.453125 5.65625 -5.890625 5.8125 -4.515625 Z M 6.0625 -4.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-27">
<path style="stroke:none;" d="M 5.234375 1.921875 L 5.234375 1.625 C 4.578125 1.625 4.46875 1.625 4.46875 1.171875 L 4.46875 -4.390625 L 4.25 -4.390625 L 3.859375 -3.484375 C 3.734375 -3.765625 3.328125 -4.390625 2.53125 -4.390625 C 1.375 -4.390625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.15625 0.109375 3.5625 -0.3125 3.78125 -0.609375 L 3.78125 1.171875 C 3.78125 1.625 3.671875 1.625 3 1.625 L 3 1.921875 L 4.109375 1.890625 Z M 3.8125 -1.34375 C 3.8125 -1.03125 3.625 -0.75 3.40625 -0.515625 C 3.28125 -0.375 2.96875 -0.109375 2.5 -0.109375 C 1.765625 -0.109375 1.15625 -1 1.15625 -2.140625 C 1.15625 -3.3125 1.859375 -4.140625 2.59375 -4.140625 C 3.390625 -4.140625 3.8125 -3.28125 3.8125 -2.75 Z M 3.8125 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-28">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.09375 L 1.5625 2.09375 L 1.5625 -7.0625 L 2.53125 -7.0625 L 2.53125 -7.453125 L 1.171875 -7.453125 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-29">
<path style="stroke:none;" d="M 7.109375 0 L 7.109375 -0.3125 L 6.875 -0.3125 C 6.109375 -0.3125 6.09375 -0.421875 6.09375 -0.78125 L 6.09375 -6.015625 C 6.09375 -6.375 6.109375 -6.484375 6.875 -6.484375 L 7.109375 -6.484375 L 7.109375 -6.78125 C 6.765625 -6.75 6.03125 -6.75 5.65625 -6.75 C 5.28125 -6.75 4.53125 -6.75 4.1875 -6.78125 L 4.1875 -6.484375 L 4.421875 -6.484375 C 5.1875 -6.484375 5.203125 -6.375 5.203125 -6.015625 L 5.203125 -3.6875 L 2.234375 -3.6875 L 2.234375 -6.015625 C 2.234375 -6.375 2.25 -6.484375 3.015625 -6.484375 L 3.265625 -6.484375 L 3.265625 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.484375 L 0.5625 -6.484375 C 1.328125 -6.484375 1.34375 -6.375 1.34375 -6.015625 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.171875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.375 L 5.203125 -3.375 L 5.203125 -0.78125 C 5.203125 -0.421875 5.1875 -0.3125 4.421875 -0.3125 L 4.1875 -0.3125 L 4.1875 0 C 4.53125 -0.03125 5.265625 -0.03125 5.640625 -0.03125 C 6.015625 -0.03125 6.765625 -0.03125 7.109375 0 Z M 7.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-30">
<path style="stroke:none;" d="M 3.984375 -1.859375 L 3.734375 -1.859375 C 3.640625 -0.6875 3.4375 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.875 -3.984375 C 3.96875 -4.09375 3.96875 -4.109375 3.96875 -4.15625 C 3.96875 -4.28125 3.890625 -4.28125 3.703125 -4.28125 L 0.53125 -4.28125 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.71875 -3.703125 0.921875 -4.0625 2 -4.0625 L 3.140625 -4.0625 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.8125 0 Z M 3.984375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-31">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.453125 L 0.21875 -7.453125 L 0.21875 -7.0625 L 1.1875 -7.0625 L 1.1875 2.09375 L 0.21875 2.09375 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -8.734375 L -0.3125 -8.734375 L -0.3125 -8.5 C -0.3125 -7.734375 -0.421875 -7.71875 -0.78125 -7.71875 L -6.015625 -7.71875 C -6.375 -7.71875 -6.484375 -7.734375 -6.484375 -8.5 L -6.484375 -8.734375 L -6.78125 -8.734375 L -6.78125 -7.0625 C -6.78125 -6.796875 -6.78125 -6.796875 -6.59375 -6.734375 L -1 -4.546875 L -6.5625 -2.390625 C -6.78125 -2.3125 -6.78125 -2.28125 -6.78125 -2.046875 L -6.78125 -0.375 L -6.484375 -0.375 L -6.484375 -0.609375 C -6.484375 -1.375 -6.375 -1.390625 -6.015625 -1.390625 L -1.046875 -1.390625 C -0.78125 -1.390625 -0.3125 -1.390625 -0.3125 -0.375 L 0 -0.375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.78125 -1.671875 -1.046875 -1.671875 L -6.40625 -1.671875 L -0.21875 -4.078125 C -0.09375 -4.125 0 -4.171875 0 -4.265625 C 0 -4.375 -0.078125 -4.40625 -0.1875 -4.453125 L -6.484375 -6.890625 L -6.484375 -6.90625 L -0.78125 -6.90625 C -0.421875 -6.90625 -0.3125 -6.890625 -0.3125 -6.125 L -0.3125 -5.890625 L 0 -5.890625 C -0.03125 -6.25 -0.03125 -6.921875 -0.03125 -7.3125 C -0.03125 -7.703125 -0.03125 -8.375 0 -8.734375 Z M 0 -8.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -0.890625 -4.796875 L -1.4375 -4.796875 L -1.4375 -4.546875 L -0.890625 -4.546875 C -0.3125 -4.546875 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.703125 -3.828125 -0.75 -3.828125 L -2.734375 -3.828125 C -3.15625 -3.828125 -3.53125 -3.828125 -3.90625 -3.46875 C -4.296875 -3.078125 -4.453125 -2.578125 -4.453125 -2.109375 C -4.453125 -1.296875 -3.984375 -0.609375 -3.328125 -0.609375 C -3.03125 -0.609375 -2.859375 -0.8125 -2.859375 -1.0625 C -2.859375 -1.34375 -3.0625 -1.515625 -3.3125 -1.515625 C -3.4375 -1.515625 -3.765625 -1.46875 -3.78125 -1.015625 C -4.125 -1.28125 -4.234375 -1.765625 -4.234375 -2.09375 C -4.234375 -2.578125 -3.84375 -3.140625 -2.96875 -3.140625 L -2.59375 -3.140625 C -2.5625 -2.640625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.25 0.0625 -3.515625 0.0625 -3.984375 C 0.0625 -4.1875 -0.078125 -4.796875 -0.890625 -4.796875 Z M -1.390625 -3.140625 C -0.453125 -3.140625 -0.109375 -2.421875 -0.109375 -1.984375 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.328125 -1.5 -2.390625 -3.140625 Z M -1.390625 -3.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M -4.015625 -4.8125 C -4.1875 -4.8125 -4.5 -4.703125 -4.5 -4.3125 C -4.5 -4.109375 -4.4375 -3.671875 -4.03125 -3.265625 C -4.359375 -2.84375 -4.390625 -2.421875 -4.390625 -2.203125 C -4.390625 -1.28125 -3.703125 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.921875 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.890625 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.546875 -4.6875 0.765625 -4.6875 C 0.421875 -4.6875 -0.09375 -4.546875 -0.375 -4.03125 C -0.640625 -3.515625 -0.640625 -2.9375 -0.640625 -2.328125 C -0.640625 -2.078125 -0.640625 -1.65625 -0.65625 -1.578125 C -0.703125 -1.265625 -1 -1.046875 -1.328125 -1.046875 C -1.359375 -1.046875 -1.59375 -1.046875 -1.78125 -1.21875 C -1.515625 -1.609375 -1.484375 -2.015625 -1.484375 -2.203125 C -1.484375 -3.125 -2.171875 -3.8125 -2.9375 -3.8125 C -3.296875 -3.8125 -3.671875 -3.65625 -3.890625 -3.40625 C -4.234375 -3.765625 -4.28125 -4.125 -4.28125 -4.296875 C -4.28125 -4.296875 -4.28125 -4.375 -4.265625 -4.40625 C -4.234375 -4.296875 -4.125 -4.25 -4 -4.25 C -3.828125 -4.25 -3.71875 -4.375 -3.71875 -4.53125 C -3.71875 -4.625 -3.78125 -4.8125 -4.015625 -4.8125 Z M -2.9375 -3.078125 C -2.671875 -3.078125 -2.359375 -3.0625 -2.109375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.609375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.703125 -1.34375 -2.9375 -1.34375 C -3.203125 -1.34375 -3.515625 -1.34375 -3.765625 -1.5 C -3.890625 -1.578125 -4.15625 -1.8125 -4.15625 -2.203125 C -4.15625 -3.078125 -3.171875 -3.078125 -2.9375 -3.078125 Z M 0.78125 -4.15625 C 1.328125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.484375 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.203125 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.796875 -0.3125 -4.546875 -0.609375 -4.546875 L -2.5 -4.546875 C -3.359375 -4.546875 -3.671875 -4.546875 -4.03125 -4.234375 C -4.1875 -4.09375 -4.390625 -3.765625 -4.390625 -3.1875 C -4.390625 -2.46875 -3.96875 -2 -3.34375 -1.71875 L -4.390625 -1.71875 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.890625 -0.3125 -1.78125 -0.75 -1.78125 L -2.578125 -1.78125 C -3.625 -1.78125 -4.171875 -2.484375 -4.171875 -3.125 C -4.171875 -3.75 -3.640625 -3.859375 -3.078125 -3.859375 L -0.75 -3.859375 C -0.3125 -3.859375 -0.3125 -3.75 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.203125 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.765625 -0.75 -1.765625 L -4.390625 -1.765625 L -4.28125 -0.375 L -3.96875 -0.375 C -3.96875 -1.015625 -3.921875 -1.109375 -3.421875 -1.109375 L -0.75 -1.109375 C -0.3125 -1.109375 -0.3125 -1 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -6 -1.90625 C -6.265625 -1.90625 -6.53125 -1.671875 -6.53125 -1.375 C -6.53125 -1.046875 -6.25 -0.84375 -6 -0.84375 C -5.734375 -0.84375 -5.46875 -1.078125 -5.46875 -1.375 C -5.46875 -1.703125 -5.75 -1.90625 -6 -1.90625 Z M -6 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M -1.234375 -3.296875 L -1.796875 -3.296875 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.390625 C -0.140625 -1.71875 -1.046875 -1.71875 -1.21875 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.140625 L -4.28125 -3.140625 L -4.28125 -1.71875 L -6.109375 -1.71875 L -6.109375 -1.46875 C -5.296875 -1.453125 -4.234375 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.296875 -1.234375 -3.296875 Z M -1.234375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0 -5.3125 L -0.3125 -5.3125 C -0.3125 -4.625 -0.375 -4.546875 -0.859375 -4.546875 L -4.390625 -4.546875 L -4.28125 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.78125 -3.90625 -3.859375 -3.421875 -3.859375 L -1.65625 -3.859375 C -0.78125 -3.859375 -0.109375 -3.375 -0.109375 -2.65625 C -0.109375 -1.8125 -0.578125 -1.78125 -1.09375 -1.78125 L -4.390625 -1.78125 L -4.28125 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.0625 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.609375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.890625 L 0.109375 -3.890625 Z M 0 -5.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 0 -5.234375 L -0.3125 -5.234375 C -0.3125 -4.546875 -0.375 -4.46875 -0.859375 -4.46875 L -6.890625 -4.46875 L -6.78125 -3.03125 L -6.484375 -3.03125 C -6.484375 -3.734375 -6.40625 -3.8125 -5.921875 -3.8125 L -3.78125 -3.8125 C -4.140625 -3.515625 -4.390625 -3.09375 -4.390625 -2.546875 C -4.390625 -1.375 -3.421875 -0.34375 -2.140625 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.53125 -0.546875 -3.78125 L 0.109375 -3.78125 Z M -1.171875 -3.78125 C -1 -3.78125 -0.96875 -3.78125 -0.8125 -3.671875 C -0.328125 -3.375 -0.109375 -2.921875 -0.109375 -2.5 C -0.109375 -2.046875 -0.375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.5 -1.15625 -3.09375 -1.1875 -3.53125 -1.46875 C -3.84375 -1.671875 -4.171875 -2.0625 -4.171875 -2.59375 C -4.171875 -2.9375 -4.03125 -3.359375 -3.578125 -3.671875 C -3.40625 -3.78125 -3.390625 -3.78125 -3.203125 -3.78125 Z M -1.171875 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M -1.1875 -4.125 C -1.28125 -4.125 -1.296875 -4.046875 -1.296875 -4 C -1.296875 -3.90625 -1.25 -3.890625 -1.15625 -3.859375 C -0.140625 -3.515625 -0.140625 -2.625 -0.140625 -2.53125 C -0.140625 -2.03125 -0.4375 -1.625 -0.8125 -1.40625 C -1.28125 -1.109375 -1.9375 -1.109375 -2.296875 -1.109375 L -2.296875 -3.875 C -2.296875 -4.09375 -2.296875 -4.125 -2.5 -4.125 C -3.484375 -4.125 -4.453125 -3.59375 -4.453125 -2.34375 C -4.453125 -1.1875 -3.421875 -0.28125 -2.1875 -0.28125 C -0.859375 -0.28125 0.109375 -1.328125 0.109375 -2.46875 C 0.109375 -3.671875 -1 -4.125 -1.1875 -4.125 Z M -2.5 -3.46875 L -2.5 -1.109375 C -3.984375 -1.171875 -4.234375 -2 -4.234375 -2.34375 C -4.234375 -3.375 -2.890625 -3.46875 -2.5 -3.46875 Z M -2.5 -3.46875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43.113281 7.855469 L 240.960938 7.855469 L 240.960938 128 L 43.113281 128 Z M 43.113281 7.855469 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 43.113281 7.855469 L 240.960938 7.855469 L 240.960938 125 L 43.113281 125 Z M 43.113281 7.855469 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 225 113 L 240.960938 113 L 240.960938 115 L 225 115 Z M 225 113 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 212 92 L 240.960938 92 L 240.960938 128 L 212 128 Z M 212 92 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 43.113281 64 L 122 64 L 122 149.171875 L 43.113281 149.171875 Z M 43.113281 64 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 43.113281 63 L 117 63 L 117 149.171875 L 43.113281 149.171875 Z M 43.113281 63 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.113281 149.171875 L 240.960938 149.171875 L 240.960938 7.855469 L 43.113281 7.855469 Z M 43.113281 149.171875 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L -49.609855 35.433283 M -34.67516 -106.301357 L -34.67516 35.433283 M -25.938442 -106.301357 L -25.938442 35.433283 M -19.740466 -106.301357 L -19.740466 35.433283 M -14.933312 -106.301357 L -14.933312 35.433283 M -11.003748 -106.301357 L -11.003748 35.433283 M -7.685362 -106.301357 L -7.685362 35.433283 M -4.805771 -106.301357 L -4.805771 35.433283 M -2.270948 -106.301357 L -2.270948 35.433283 M 0.00138252 -106.301357 L 0.00138252 35.433283 M 14.932159 -106.301357 L 14.932159 35.433283 M 23.668877 -106.301357 L 23.668877 35.433283 M 29.866854 -106.301357 L 29.866854 35.433283 M 34.674008 -106.301357 L 34.674008 35.433283 M 38.603572 -106.301357 L 38.603572 35.433283 M 41.921958 -106.301357 L 41.921958 35.433283 M 44.801548 -106.301357 L 44.801548 35.433283 M 47.336372 -106.301357 L 47.336372 35.433283 M 49.608702 -106.301357 L 49.608702 35.433283 M 64.539479 -106.301357 L 64.539479 35.433283 M 73.276197 -106.301357 L 73.276197 35.433283 M 79.474174 -106.301357 L 79.474174 35.433283 M 84.281327 -106.301357 L 84.281327 35.433283 M 88.210892 -106.301357 L 88.210892 35.433283 M 91.533195 -106.301357 L 91.533195 35.433283 M 94.408868 -106.301357 L 94.408868 35.433283 M 96.94761 -106.301357 L 96.94761 35.433283 M 99.216022 -106.301357 L 99.216022 35.433283 M 114.150717 -106.301357 L 114.150717 35.433283 M 122.883517 -106.301357 L 122.883517 35.433283 M 129.081493 -106.301357 L 129.081493 35.433283 M 133.888647 -106.301357 L 133.888647 35.433283 M 137.818211 -106.301357 L 137.818211 35.433283 M 141.140515 -106.301357 L 141.140515 35.433283 M 144.016188 -106.301357 L 144.016188 35.433283 M 146.554929 -106.301357 L 146.554929 35.433283 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L -49.609855 35.433283 M 0.00138252 -106.301357 L 0.00138252 35.433283 M 49.608702 -106.301357 L 49.608702 35.433283 M 99.216022 -106.301357 L 99.216022 35.433283 M 148.823342 -106.301357 L 148.823342 35.433283 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L 148.823342 -106.301357 M -49.609855 -95.633158 L 148.823342 -95.633158 M -49.609855 -89.392086 L 148.823342 -89.392086 M -49.609855 -84.96496 L 148.823342 -84.96496 M -49.609855 -81.532957 L 148.823342 -81.532957 M -49.609855 -78.727805 L 148.823342 -78.727805 M -49.609855 -76.353612 L 148.823342 -76.353612 M -49.609855 -74.300679 L 148.823342 -74.300679 M -49.609855 -72.486732 L 148.823342 -72.486732 M -49.609855 -70.864759 L 148.823342 -70.864759 M -49.609855 -60.200478 L 148.823342 -60.200478 M -49.609855 -53.959405 L 148.823342 -53.959405 M -49.609855 -49.532279 L 148.823342 -49.532279 M -49.609855 -46.100277 L 148.823342 -46.100277 M -49.609855 -43.295125 L 148.823342 -43.295125 M -49.609855 -40.920931 L 148.823342 -40.920931 M -49.609855 -38.867998 L 148.823342 -38.867998 M -49.609855 -37.054052 L 148.823342 -37.054052 M -49.609855 -35.432078 L 148.823342 -35.432078 M -49.609855 -24.767797 L 148.823342 -24.767797 M -49.609855 -18.526725 L 148.823342 -18.526725 M -49.609855 -14.099599 L 148.823342 -14.099599 M -49.609855 -10.667597 L 148.823342 -10.667597 M -49.609855 -7.862444 L 148.823342 -7.862444 M -49.609855 -5.488251 L 148.823342 -5.488251 M -49.609855 -3.435318 L 148.823342 -3.435318 M -49.609855 -1.621372 L 148.823342 -1.621372 M -49.609855 0.000602125 L 148.823342 0.000602125 M -49.609855 10.664883 L 148.823342 10.664883 M -49.609855 16.905956 L 148.823342 16.905956 M -49.609855 21.333082 L 148.823342 21.333082 M -49.609855 24.765084 L 148.823342 24.765084 M -49.609855 27.574154 L 148.823342 27.574154 M -49.609855 29.94443 L 148.823342 29.94443 M -49.609855 32.00128 L 148.823342 32.00128 M -49.609855 33.811309 L 148.823342 33.811309 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L 148.823342 -106.301357 M -49.609855 -70.864759 L 148.823342 -70.864759 M -49.609855 -35.432078 L 148.823342 -35.432078 M -49.609855 0.000602125 L 148.823342 0.000602125 M -49.609855 35.433283 L 148.823342 35.433283 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L -49.609855 -103.464862 M -34.67516 -106.301357 L -34.67516 -103.464862 M -25.938442 -106.301357 L -25.938442 -103.464862 M -19.740466 -106.301357 L -19.740466 -103.464862 M -14.933312 -106.301357 L -14.933312 -103.464862 M -11.003748 -106.301357 L -11.003748 -103.464862 M -7.685362 -106.301357 L -7.685362 -103.464862 M -4.805771 -106.301357 L -4.805771 -103.464862 M -2.270948 -106.301357 L -2.270948 -103.464862 M 0.00138252 -106.301357 L 0.00138252 -103.464862 M 14.932159 -106.301357 L 14.932159 -103.464862 M 23.668877 -106.301357 L 23.668877 -103.464862 M 29.866854 -106.301357 L 29.866854 -103.464862 M 34.674008 -106.301357 L 34.674008 -103.464862 M 38.603572 -106.301357 L 38.603572 -103.464862 M 41.921958 -106.301357 L 41.921958 -103.464862 M 44.801548 -106.301357 L 44.801548 -103.464862 M 47.336372 -106.301357 L 47.336372 -103.464862 M 49.608702 -106.301357 L 49.608702 -103.464862 M 64.539479 -106.301357 L 64.539479 -103.464862 M 73.276197 -106.301357 L 73.276197 -103.464862 M 79.474174 -106.301357 L 79.474174 -103.464862 M 84.281327 -106.301357 L 84.281327 -103.464862 M 88.210892 -106.301357 L 88.210892 -103.464862 M 91.533195 -106.301357 L 91.533195 -103.464862 M 94.408868 -106.301357 L 94.408868 -103.464862 M 96.94761 -106.301357 L 96.94761 -103.464862 M 99.216022 -106.301357 L 99.216022 -103.464862 M 114.150717 -106.301357 L 114.150717 -103.464862 M 122.883517 -106.301357 L 122.883517 -103.464862 M 129.081493 -106.301357 L 129.081493 -103.464862 M 133.888647 -106.301357 L 133.888647 -103.464862 M 137.818211 -106.301357 L 137.818211 -103.464862 M 141.140515 -106.301357 L 141.140515 -103.464862 M 144.016188 -106.301357 L 144.016188 -103.464862 M 146.554929 -106.301357 L 146.554929 -103.464862 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L -49.609855 -102.050532 M 0.00138252 -106.301357 L 0.00138252 -102.050532 M 49.608702 -106.301357 L 49.608702 -102.050532 M 99.216022 -106.301357 L 99.216022 -102.050532 M 148.823342 -106.301357 L 148.823342 -102.050532 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L -46.777278 -106.301357 M -49.609855 -95.633158 L -46.777278 -95.633158 M -49.609855 -89.392086 L -46.777278 -89.392086 M -49.609855 -84.96496 L -46.777278 -84.96496 M -49.609855 -81.532957 L -46.777278 -81.532957 M -49.609855 -78.727805 L -46.777278 -78.727805 M -49.609855 -76.353612 L -46.777278 -76.353612 M -49.609855 -74.300679 L -46.777278 -74.300679 M -49.609855 -72.486732 L -46.777278 -72.486732 M -49.609855 -70.864759 L -46.777278 -70.864759 M -49.609855 -60.200478 L -46.777278 -60.200478 M -49.609855 -53.959405 L -46.777278 -53.959405 M -49.609855 -49.532279 L -46.777278 -49.532279 M -49.609855 -46.100277 L -46.777278 -46.100277 M -49.609855 -43.295125 L -46.777278 -43.295125 M -49.609855 -40.920931 L -46.777278 -40.920931 M -49.609855 -38.867998 L -46.777278 -38.867998 M -49.609855 -37.054052 L -46.777278 -37.054052 M -49.609855 -35.432078 L -46.777278 -35.432078 M -49.609855 -24.767797 L -46.777278 -24.767797 M -49.609855 -18.526725 L -46.777278 -18.526725 M -49.609855 -14.099599 L -46.777278 -14.099599 M -49.609855 -10.667597 L -46.777278 -10.667597 M -49.609855 -7.862444 L -46.777278 -7.862444 M -49.609855 -5.488251 L -46.777278 -5.488251 M -49.609855 -3.435318 L -46.777278 -3.435318 M -49.609855 -1.621372 L -46.777278 -1.621372 M -49.609855 0.000602125 L -46.777278 0.000602125 M -49.609855 10.664883 L -46.777278 10.664883 M -49.609855 16.905956 L -46.777278 16.905956 M -49.609855 21.333082 L -46.777278 21.333082 M -49.609855 24.765084 L -46.777278 24.765084 M -49.609855 27.574154 L -46.777278 27.574154 M -49.609855 29.94443 L -46.777278 29.94443 M -49.609855 32.00128 L -46.777278 32.00128 M -49.609855 33.811309 L -46.777278 33.811309 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L -45.35903 -106.301357 M -49.609855 -70.864759 L -45.35903 -70.864759 M -49.609855 -35.432078 L -45.35903 -35.432078 M -49.609855 0.000602125 L -45.35903 0.000602125 M -49.609855 35.433283 L -45.35903 35.433283 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L 148.823342 -106.301357 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 -106.301357 L -49.609855 35.433283 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="32.81661" y="161.063325"/>
<use xlink:href="#glyph0-2" x="37.783211" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="42.750211" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="48.957839" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="85.38204" y="161.063325"/>
<use xlink:href="#glyph0-2" x="90.348641" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="95.315641" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="134.843655" y="161.063325"/>
<use xlink:href="#glyph0-2" x="139.810256" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="144.777256" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="184.305271" y="161.063325"/>
<use xlink:href="#glyph0-2" x="189.271872" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="194.238872" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="233.766887" y="161.063325"/>
<use xlink:href="#glyph0-2" x="238.733488" y="161.063325"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="243.700488" y="157.457995"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="18.710358" y="153.213556"/>
<use xlink:href="#glyph0-2" x="23.676959" y="153.213556"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.643959" y="149.608227"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="34.851587" y="149.608227"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="18.710358" y="117.884116"/>
<use xlink:href="#glyph0-2" x="23.676959" y="117.884116"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.643959" y="114.278786"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="34.851587" y="114.278786"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="18.710358" y="82.555672"/>
<use xlink:href="#glyph0-2" x="23.676959" y="82.555672"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.643959" y="78.950342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="34.851587" y="78.950342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="24.917986" y="47.227229"/>
<use xlink:href="#glyph0-2" x="29.884587" y="47.227229"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="34.851587" y="43.621899"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="24.917986" y="11.898785"/>
<use xlink:href="#glyph0-2" x="29.884587" y="11.898785"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="34.851587" y="8.293455"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 24.012864 L -16.83345 23.950179 L -5.315087 23.820892 L 2.034726 23.632837 L 7.598018 23.386015 L 12.162267 23.07259 L 15.939037 22.708233 L 19.31619 22.277274 L 22.493534 21.752287 L 25.47107 21.141109 L 28.252716 20.45941 L 30.838471 19.711108 L 33.420308 18.845272 L 36.002146 17.861901 L 38.583983 16.753161 L 41.365628 15.428941 L 44.143356 13.975433 L 47.12481 12.271185 L 50.302155 10.31228 L 53.679308 8.086964 L 57.452159 5.442441 L 61.42482 2.504083 L 65.797096 -0.896577 L 70.365264 -4.614579 L 75.129322 -8.665595 L 80.097106 -13.061379 L 85.06489 -17.637382 L 90.224646 -22.577741 L 95.787938 -28.094019 L 102.146544 -34.593667 L 117.042061 -49.92406 L 120.814913 -53.563706 L 123.992257 -56.462886 L 126.773903 -58.833162 L 129.35574 -60.874341 L 131.741687 -62.606014 L 134.123716 -64.184891 L 136.309854 -65.489522 L 138.492075 -66.660948 L 140.678213 -67.703085 L 142.860434 -68.615935 L 145.246381 -69.481772 L 147.632327 -70.214402 L 148.823342 -70.53958 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.609855 24.012864 L -45.343359 31.370513 M -43.936865 24.001111 L -39.674287 31.358759 M -38.267793 23.989357 L -34.001297 31.347006 M -32.598721 23.981522 L -28.332225 31.335253 M -26.929649 23.969768 L -22.663153 31.323499 M -21.260576 23.958015 L -16.994081 31.315663 M -15.591504 23.934508 L -11.258406 31.252979 M -9.922432 23.871823 L -5.589333 31.190294 M -4.25336 23.793467 L 0.181602 31.049252 M 1.411794 23.652426 L 5.850674 30.904293 M 7.076949 23.409521 L 11.652952 30.579115 M 12.73035 23.01774 L 17.674627 29.940512 M 18.368079 22.398726 L 23.523918 29.160868 M 23.954877 21.454534 L 29.600443 27.813141 M 29.459402 20.110725 L 35.594693 25.999194 M 34.834638 18.304614 L 41.432231 23.668097 M 40.041408 16.059708 L 47.042536 20.882533 M 45.064042 13.446529 L 52.406019 17.736531 M 49.941716 10.535595 L 57.424735 14.57094 M 54.654843 7.405264 L 62.361176 10.993979 M 59.262188 4.106468 L 67.058631 7.495374 M 63.783342 0.66663 L 71.662059 3.871399 M 68.214386 -2.863318 L 76.159706 0.161232 M 72.574909 -6.495128 L 80.582914 -3.635126 M 76.860994 -10.197459 L 84.923848 -7.502005 M 81.084394 -13.970311 L 89.19818 -11.435487 M 85.249027 -17.813683 L 93.413744 -15.435572 M 89.35881 -21.747165 L 97.523528 -19.369054 M 93.38632 -25.71199 L 101.590215 -23.478838 M 97.390322 -29.731664 L 105.629478 -27.623881 M 101.370818 -33.802269 L 109.609974 -31.694487 M 105.308218 -37.84545 L 113.551292 -35.765092 M 109.261289 -41.916055 L 117.504363 -39.83178 M 113.21436 -45.98666 L 121.461351 -43.902385 M 117.171349 -50.045512 L 125.343902 -47.698744 M 121.261543 -53.971159 L 129.363576 -51.393239 M 125.496697 -57.740093 L 133.50862 -54.895762 M 129.919905 -61.281794 L 137.688924 -57.826285 M 134.605607 -64.470892 L 142.033776 -60.329766 M 139.581226 -67.182017 L 146.586272 -62.359192 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.539479 -5.492169 L 84.281327 -5.492169 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.539479 -5.492169 L 68.790304 1.873316 M 70.208551 -5.492169 L 74.459376 1.873316 M 75.877623 -5.492169 L 80.128448 1.873316 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281327 -35.432078 L 133.888647 -35.432078 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281327 -35.432078 L 88.53607 -28.066594 M 89.9504 -35.432078 L 94.205142 -28.066594 M 95.619472 -35.432078 L 99.874214 -28.066594 M 101.288544 -35.432078 L 105.543286 -28.066594 M 106.957616 -35.432078 L 111.212359 -28.066594 M 112.626688 -35.432078 L 116.881431 -28.066594 M 118.29576 -35.432078 L 122.550503 -28.066594 M 123.96875 -35.432078 L 128.219575 -28.066594 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.888647 -70.864759 L 148.823342 -70.864759 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.888647 -70.864759 L 138.14339 -63.503192 M 139.557719 -70.864759 L 143.812462 -63.503192 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.28248 -177.166718 L 14.932159 -35.432078 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.28248 -177.166718 L -87.87903 -169.460384 M -81.034615 -172.520194 L -84.627248 -164.813861 M -77.782832 -167.877589 L -81.375465 -160.171255 M -74.531049 -163.231065 L -78.1276 -155.524731 M -71.279266 -158.588459 L -74.875817 -150.882126 M -68.027483 -153.945854 L -71.624034 -146.235602 M -64.779618 -149.29933 L -68.372251 -141.592996 M -61.527835 -144.656724 L -65.120468 -136.950391 M -58.276052 -140.010201 L -61.872603 -132.303867 M -55.02427 -135.367595 L -58.62082 -127.661261 M -51.772487 -130.721071 L -55.369037 -123.014738 M -48.520704 -126.078466 L -52.117254 -118.372132 M -45.272839 -121.431942 L -48.865471 -113.725608 M -42.021056 -116.789336 L -45.613688 -109.083003 M -38.769273 -112.142813 L -42.365823 -104.436479 M -35.51749 -107.500207 L -39.11404 -99.793873 M -32.265707 -102.853684 L -35.862257 -95.14735 M -29.017842 -98.211078 L -32.610474 -90.504744 M -25.766059 -93.564554 L -29.358691 -85.858221 M -22.514276 -88.921949 L -26.110826 -81.215615 M -19.262493 -84.279343 L -22.859043 -76.569091 M -16.01071 -79.632819 L -19.60726 -71.926485 M -12.758927 -74.990213 L -16.355477 -67.28388 M -9.511062 -70.34369 L -13.103694 -62.637356 M -6.259279 -65.701084 L -9.851912 -57.99475 M -3.007496 -61.054561 L -6.604046 -53.348227 M 0.244287 -56.411955 L -3.352263 -48.705621 M 3.49607 -51.765431 L -0.100481 -44.059098 M 6.743935 -47.122826 L 3.151302 -39.416492 M 9.995718 -42.476302 L 6.403085 -34.769968 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.037041 -83.597644 L 123.984422 -83.597644 L 123.984422 -58.135792 L 65.037041 -58.135792 Z M 65.037041 -83.597644 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="175.053652" y="111.302594"/>
<use xlink:href="#glyph3-2" x="182.503553" y="111.302594"/>
<use xlink:href="#glyph3-3" x="187.470155" y="111.302594"/>
<use xlink:href="#glyph3-4" x="190.229598" y="111.302594"/>
<use xlink:href="#glyph3-5" x="194.148246" y="111.302594"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="160.733034" y="123.223314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-7" x="167.91474" y="123.223314"/>
<use xlink:href="#glyph3-7" x="171.777762" y="123.223314"/>
<use xlink:href="#glyph3-5" x="175.640784" y="123.223314"/>
<use xlink:href="#glyph3-8" x="180.056093" y="123.223314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-9" x="185.295857" y="123.223314"/>
<use xlink:href="#glyph3-10" x="190.813751" y="123.223314"/>
<use xlink:href="#glyph3-7" x="195.780352" y="123.223314"/>
<use xlink:href="#glyph3-3" x="199.643374" y="123.223314"/>
<use xlink:href="#glyph3-2" x="202.402818" y="123.223314"/>
<use xlink:href="#glyph3-8" x="207.369419" y="123.223314"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.510731 -57.63823 L 94.510731 -40.066848 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054994 -0.000231318 L 1.608279 1.684427 L 3.089211 -0.000231318 L 1.608279 -1.68489 Z M 6.054994 -0.000231318 " transform="matrix(0,-0.997049,-0.997049,0,186.808363,85.962908)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.481984 -70.864759 L 129.257795 -70.864759 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05246 0.00174122 L 1.609662 1.682482 L 3.086677 0.00174122 L 1.609662 -1.682917 Z M 6.05246 0.00174122 " transform="matrix(0.997049,0,0,-0.997049,218.62165,113.84158)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 91.39999 6.041866 L 146.05345 6.041866 L 146.05345 31.499801 L 91.39999 31.499801 Z M 91.39999 6.041866 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="187.018242" y="21.9291"/>
<use xlink:href="#glyph3-10" x="194.053929" y="21.9291"/>
<use xlink:href="#glyph3-8" x="199.02053" y="21.9291"/>
<use xlink:href="#glyph3-12" x="204.538424" y="21.9291"/>
<use xlink:href="#glyph3-13" x="210.056318" y="21.9291"/>
<use xlink:href="#glyph3-3" x="217.230076" y="21.9291"/>
<use xlink:href="#glyph3-12" x="219.98952" y="21.9291"/>
<use xlink:href="#glyph3-7" x="225.507414" y="21.9291"/>
<use xlink:href="#glyph3-14" x="229.370436" y="21.9291"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-15" x="187.983386" y="33.84982"/>
<use xlink:href="#glyph3-3" x="194.191637" y="33.84982"/>
<use xlink:href="#glyph3-16" x="196.95108" y="33.84982"/>
<use xlink:href="#glyph3-3" x="205.228418" y="33.84982"/>
<use xlink:href="#glyph3-7" x="207.987861" y="33.84982"/>
<use xlink:href="#glyph3-10" x="211.850884" y="33.84982"/>
<use xlink:href="#glyph3-7" x="216.817485" y="33.84982"/>
<use xlink:href="#glyph3-3" x="220.680507" y="33.84982"/>
<use xlink:href="#glyph3-2" x="223.439951" y="33.84982"/>
<use xlink:href="#glyph3-8" x="228.406552" y="33.84982"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.902428 18.770833 L 67.947974 -2.350084 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054061 -0.00203511 L 1.609558 1.682047 L 3.087561 0.00239713 L 1.610592 -1.683431 Z M 6.054061 -0.00203511 " transform="matrix(-0.733758,0.675291,0.675291,0.733758,162.408436,43.612457)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -34.177598 0.498164 L 9.54517 0.498164 L 9.54517 27.895415 L -34.177598 27.895415 Z M -34.177598 0.498164 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-17" x="64.748107" y="25.524459"/>
<use xlink:href="#glyph3-2" x="72.059937" y="25.524459"/>
<use xlink:href="#glyph3-18" x="77.026538" y="25.524459"/>
<use xlink:href="#glyph3-9" x="82.544432" y="25.524459"/>
<use xlink:href="#glyph3-4" x="88.062326" y="25.524459"/>
<use xlink:href="#glyph3-7" x="91.980974" y="25.524459"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-19" x="61.809803" y="37.445179"/>
<use xlink:href="#glyph3-7" x="67.327697" y="37.445179"/>
<use xlink:href="#glyph3-10" x="71.190719" y="37.445179"/>
<use xlink:href="#glyph3-18" x="76.15732" y="37.445179"/>
<use xlink:href="#glyph3-3" x="81.675214" y="37.445179"/>
<use xlink:href="#glyph3-20" x="84.434658" y="37.445179"/>
<use xlink:href="#glyph3-3" x="87.194101" y="37.445179"/>
<use xlink:href="#glyph3-7" x="89.953545" y="37.445179"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-21" x="93.548371" y="37.445179"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.046649 14.19483 L 40.166778 14.19483 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054991 -0.00166952 L 1.608276 1.682989 L 3.089208 -0.00166952 L 1.608276 -1.68241 Z M 6.054991 -0.00166952 " transform="matrix(0.997049,0,0,-0.997049,129.794907,29.029585)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -47.055442 -34.934516 L 12.111336 -34.934516 L 12.111336 -7.537266 L -47.055442 -7.537266 Z M -47.055442 -34.934516 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-22" x="48.969804" y="60.852903"/>
<use xlink:href="#glyph3-3" x="56.557777" y="60.852903"/>
<use xlink:href="#glyph3-4" x="59.31722" y="60.852903"/>
<use xlink:href="#glyph3-7" x="63.235869" y="60.852903"/>
<use xlink:href="#glyph3-9" x="67.098891" y="60.852903"/>
<use xlink:href="#glyph3-23" x="72.616785" y="60.852903"/>
<use xlink:href="#glyph3-18" x="76.50762" y="60.852903"/>
<use xlink:href="#glyph3-10" x="82.025514" y="60.852903"/>
<use xlink:href="#glyph3-8" x="86.992115" y="60.852903"/>
<use xlink:href="#glyph3-24" x="92.510009" y="60.852903"/>
<use xlink:href="#glyph3-5" x="96.925317" y="60.852903"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-17" x="54.805532" y="72.773623"/>
<use xlink:href="#glyph3-5" x="62.117363" y="72.773623"/>
<use xlink:href="#glyph3-25" x="66.532671" y="72.773623"/>
<use xlink:href="#glyph3-5" x="69.567264" y="72.773623"/>
<use xlink:href="#glyph3-24" x="73.982573" y="72.773623"/>
<use xlink:href="#glyph3-7" x="78.397881" y="72.773623"/>
<use xlink:href="#glyph3-3" x="82.260903" y="72.773623"/>
<use xlink:href="#glyph3-2" x="85.020347" y="72.773623"/>
<use xlink:href="#glyph3-8" x="89.986948" y="72.773623"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.472053 -35.432078 L -2.948729 -53.16409 " transform="matrix(0.997049,0,0,-0.997049,92.576747,43.184194)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052638 -0.000362866 L 1.608319 1.683425 L 3.08699 -0.00159493 L 1.607973 -1.684283 Z M 6.052638 -0.000362866 " transform="matrix(0.634552,0.774757,0.774757,-0.634552,87.835349,93.99404)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-26" x="109.533562" y="175.63121"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-23" x="115.193501" y="175.63121"/>
<use xlink:href="#glyph3-5" x="119.084336" y="175.63121"/>
<use xlink:href="#glyph3-27" x="123.499644" y="175.63121"/>
<use xlink:href="#glyph3-9" x="128.742388" y="175.63121"/>
<use xlink:href="#glyph3-5" x="134.260282" y="175.63121"/>
<use xlink:href="#glyph3-8" x="138.67559" y="175.63121"/>
<use xlink:href="#glyph3-24" x="144.193484" y="175.63121"/>
<use xlink:href="#glyph3-21" x="148.608793" y="175.63121"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-28" x="157.14936" y="175.63121"/>
<use xlink:href="#glyph3-29" x="159.908803" y="175.63121"/>
<use xlink:href="#glyph3-30" x="167.358705" y="175.63121"/>
<use xlink:href="#glyph3-31" x="171.774013" y="175.63121"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="10.804755" y="101.828633"/>
<use xlink:href="#glyph4-2" x="10.804755" y="92.722866"/>
<use xlink:href="#glyph4-3" x="10.804755" y="87.756265"/>
<use xlink:href="#glyph4-4" x="10.804755" y="82.789664"/>
<use xlink:href="#glyph4-5" x="10.804755" y="77.27177"/>
<use xlink:href="#glyph4-6" x="10.804755" y="74.512327"/>
<use xlink:href="#glyph4-7" x="10.804755" y="70.649305"/>
<use xlink:href="#glyph4-8" x="10.804755" y="65.131411"/>
<use xlink:href="#glyph4-9" x="10.804755" y="59.613517"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 75 KiB

133
tikz/figs/spec_S_T.tex Normal file
View File

@ -0,0 +1,133 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\setlength\fwidth{7cm}
\setlength\fheight{5cm}
\begin{tikzpicture}
\begin{axis}[%
name=axis,
width=\fwidth,
height=\fheight,
at={(0, 0)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
every x tick/.append style={black},
xmode=log,
xmin=0.1,
xmax=1000,
xminorticks=true,
xlabel={Frequency [Hz]},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
every y tick/.append style={black},
ymode=log,
ymin=0.001,
ymax=10,
yminorticks=true,
ylabel={Magnitude},
axis background/.style={fill=white},
xmajorgrids,
xminorgrids,
ymajorgrids,
yminorgrids
]
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
0.1 4.7609074288834\\
0.457784053837662 4.74112847250108\\
0.781435060784454 4.70208061093208\\
1.0991097009295 4.64559165613624\\
1.42283045721435 4.57144906349989\\
1.75891659032773 4.47927616460061\\
2.09566239948043 4.37423445322045\\
2.45126006203334 4.25274519592358\\
2.8408836901833 4.11095719445138\\
3.26222200971167 3.95170788088451\\
3.71167181947577 3.77948905141281\\
4.18428850790158 3.59988757314696\\
4.71708469091702 3.40317136463527\\
5.31772317785097 3.19223684289429\\
5.99484250318941 2.97087790006113\\
6.82077673286568 2.72585419958062\\
7.76050333513357 2.47949503869403\\
8.9114823228402 2.2201435349723\\
10.3279473191895 1.95491825546796\\
12.0804213467733 1.69160934903556\\
14.3932264471941 1.42447068049222\\
17.3076553419573 1.17667603248786\\
21.1995345753607 0.943491337665097\\
26.2070669648385 0.740920673515988\\
32.6974974451177 0.569453372601831\\
41.1731993116168 0.427919272009563\\
51.8459354389291 0.317863515154134\\
65.8898955079995 0.230558428152838\\
85.2964449974102 0.1611173349527\\
114.566872863487 0.105607825522203\\
228.74908173557 0.0390036255196556\\
272.543253128103 0.0307810979565345\\
315.863540826782 0.025500739341156\\
359.381366380463 0.0218605610825003\\
405.142317111465 0.0191453206052172\\
452.538627817017 0.0171066280251345\\
505.479682119124 0.0154393411147139\\
559.432570616938 0.0141825204910006\\
619.144175597784 0.0131421696026314\\
685.229159528406 0.012282656024432\\
758.367791499719 0.0115737646620205\\
847.08682665574 0.0109423524789141\\
946.1848194722 0.0104322816237634\\
1000 0.0102154679782451\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
20 0.7\\
50 0.7\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
50 0.1\\
500 0.1\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
500 0.01\\
1000 0.01\\
};
\addplot [color=S, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
0.02 1e-05\\
2 0.1\\
};
\node[draw, fill=white, align=center, anchor=west] (noise) at (20, 0.01){Noise\\Attenuation};
\draw[->] (noise.north) -- (100, 0.1-|noise.north);
\draw[->] (noise.east) -- (500, 0.01);
\node[draw, fill=white, align=center, anchor=north east] (bandwidth) at (900, 8) {Bandwidth\\Limitation};
\draw[->] (bandwidth.west) -- (20, 0.7);
\node[draw, fill=white, align=center, anchor=south west] (robust) at (0.2, 1) {Robust\\Stability};
\draw[->] (robust.east) -- (8,2|-robust.east);
\node[draw, fill=white, align=center, anchor=south west] (dist) at (0.11, 0.1) {Disturbance\\Rejection};
\draw[->] (dist.south) -- (1, 0.025);
\end{axis}
% \begin{customlegend}[legend cell align=left, %<= to align cells
% legend entries={ % <= in the following there are the entries
% $S$,
% $T$
% },
% legend style={at={(axis.north east)}, outer sep=5pt, font=\footnotesize}]
% \addlegendimage{upperbound, S}
% \addlegendimage{upperbound, T}
% \end{customlegend}
\end{tikzpicture}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -0,0 +1,337 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="252.56pt" height="154.11pt" viewBox="0 0 252.56 154.11" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.828125 -0.3125 C 2.9375 -0.3125 2.90625 -0.421875 2.90625 -0.78125 L 2.90625 -6.34375 C 2.90625 -6.578125 2.90625 -6.59375 2.6875 -6.59375 C 2.078125 -5.96875 1.203125 -5.96875 0.875 -5.96875 L 0.875 -5.65625 C 1.078125 -5.65625 1.671875 -5.65625 2.171875 -5.90625 L 2.171875 -0.78125 C 2.171875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.28125 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.9375 -0.03125 3.796875 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.5 -4.75 4.15625 -5.484375 C 3.703125 -6.4375 2.890625 -6.59375 2.484375 -6.59375 C 1.875 -6.59375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.734375 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.421875 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.75 0.015625 4.1875 -0.9375 C 4.5 -1.609375 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.28125 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.90625 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.28125 C 1.203125 -3.921875 1.203125 -4.578125 1.28125 -5.109375 C 1.46875 -6.296875 2.21875 -6.375 2.46875 -6.375 C 2.796875 -6.375 3.453125 -6.203125 3.640625 -5.21875 C 3.734375 -4.671875 3.734375 -3.90625 3.734375 -3.28125 Z M 3.734375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.4375 -1.734375 C 5.4375 -1.90625 5.28125 -1.90625 5.1875 -1.90625 L 1 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.5625 0.921875 -1.5625 1 -1.5625 L 5.1875 -1.5625 C 5.265625 -1.5625 5.4375 -1.5625 5.4375 -1.734375 Z M 5.4375 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.40625 C 2.328125 -4.59375 2.3125 -4.609375 2.109375 -4.609375 C 1.671875 -4.171875 1.046875 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.578125 -2.21875 C 3.578125 -2.96875 3.484375 -3.53125 3.171875 -4.015625 C 2.953125 -4.328125 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.578125 0.140625 3.578125 -1.71875 3.578125 -2.21875 Z M 2.953125 -2.296875 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 0.984375 -1.21875 0.984375 -1.796875 0.984375 -2.296875 C 0.984375 -2.8125 0.984375 -3.34375 1.09375 -3.71875 C 1.234375 -4.265625 1.6875 -4.40625 1.96875 -4.40625 C 2.34375 -4.40625 2.703125 -4.1875 2.828125 -3.78125 C 2.9375 -3.40625 2.953125 -2.90625 2.953125 -2.296875 Z M 2.953125 -2.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.25 -1.109375 3.171875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.421875 2.515625 -1.75 C 3.03125 -2.171875 3.5 -2.59375 3.5 -3.25 C 3.5 -4.09375 2.765625 -4.609375 1.875 -4.609375 C 1.015625 -4.609375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3.015625 0.734375 -2.96875 0.8125 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.46875 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.203125 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.65625 2.40625 -2.171875 2.171875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.5 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.125 -2.28125 2.359375 -2.4375 C 3.09375 -2.703125 3.34375 -3.21875 3.34375 -3.65625 C 3.34375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.171875 -4.609375 0.59375 -4.234375 0.59375 -3.671875 C 0.59375 -3.4375 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.296875 -3.46875 1.296875 -3.65625 C 1.296875 -3.859375 1.171875 -4.015625 0.953125 -4.03125 C 1.1875 -4.328125 1.671875 -4.40625 1.921875 -4.40625 C 2.234375 -4.40625 2.671875 -4.25 2.671875 -3.65625 C 2.671875 -3.359375 2.578125 -3.03125 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.625 -2.53125 C 1.453125 -2.515625 1.4375 -2.515625 1.40625 -2.5 C 1.40625 -2.5 1.34375 -2.484375 1.34375 -2.421875 C 1.34375 -2.3125 1.40625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.4375 -2.3125 2.828125 -1.9375 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.046875 -4.5 L 5.765625 -6.734375 L 0.328125 -6.734375 L 0.328125 -6.421875 L 0.5625 -6.421875 C 1.328125 -6.421875 1.34375 -6.3125 1.34375 -5.96875 L 1.34375 -0.765625 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.828125 -0.03125 C 2.234375 -0.03125 3.140625 -0.03125 3.5 0 L 3.5 -0.3125 L 3.171875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.21875 L 3.078125 -3.21875 C 4.03125 -3.21875 4.125 -2.90625 4.125 -2.0625 L 4.375 -2.0625 L 4.375 -4.6875 L 4.125 -4.6875 C 4.125 -3.859375 4.03125 -3.53125 3.078125 -3.53125 L 2.234375 -3.53125 L 2.234375 -6.03125 C 2.234375 -6.359375 2.25 -6.421875 2.71875 -6.421875 L 3.90625 -6.421875 C 5.390625 -6.421875 5.640625 -5.875 5.796875 -4.5 Z M 6.046875 -4.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.375 2.875 -4.375 C 2.15625 -4.375 1.796875 -3.71875 1.65625 -3.28125 L 1.65625 -4.375 L 0.28125 -4.265625 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.890625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.796875 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.765625 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.15625 2.875 -4.15625 C 2.9375 -4.15625 2.96875 -4.15625 2.984375 -4.15625 C 2.953125 -4.140625 2.75 -4.015625 2.75 -3.765625 C 2.75 -3.484375 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.453125 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.890625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.5 -0.140625 2.609375 -0.140625 2.515625 -0.140625 C 2.015625 -0.140625 1.625 -0.4375 1.390625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.28125 L 3.859375 -2.28125 C 4.078125 -2.28125 4.109375 -2.28125 4.109375 -2.5 C 4.109375 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.171875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.109375 -0.984375 4.109375 -1.171875 Z M 3.453125 -2.5 L 1.109375 -2.5 C 1.171875 -3.96875 2 -4.21875 2.34375 -4.21875 C 3.359375 -4.21875 3.453125 -2.875 3.453125 -2.5 Z M 3.453125 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 5.21875 1.921875 L 5.21875 1.609375 C 4.5625 1.609375 4.453125 1.609375 4.453125 1.171875 L 4.453125 -4.375 L 4.234375 -4.375 L 3.859375 -3.484375 C 3.71875 -3.75 3.3125 -4.375 2.53125 -4.375 C 1.375 -4.375 0.34375 -3.421875 0.34375 -2.125 C 0.34375 -0.890625 1.296875 0.109375 2.453125 0.109375 C 3.140625 0.109375 3.546875 -0.3125 3.765625 -0.609375 L 3.765625 1.171875 C 3.765625 1.609375 3.65625 1.609375 2.984375 1.609375 L 2.984375 1.921875 L 4.09375 1.890625 Z M 3.796875 -1.34375 C 3.796875 -1.03125 3.609375 -0.75 3.390625 -0.515625 C 3.265625 -0.375 2.953125 -0.109375 2.484375 -0.109375 C 1.765625 -0.109375 1.15625 -0.984375 1.15625 -2.125 C 1.15625 -3.3125 1.859375 -4.125 2.578125 -4.125 C 3.375 -4.125 3.796875 -3.265625 3.796875 -2.75 Z M 3.796875 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.609375 -0.3125 4.53125 -0.375 4.53125 -0.859375 L 4.53125 -4.375 L 3.078125 -4.265625 L 3.078125 -3.96875 C 3.765625 -3.96875 3.84375 -3.890625 3.84375 -3.40625 L 3.84375 -1.640625 C 3.84375 -0.78125 3.375 -0.109375 2.640625 -0.109375 C 1.8125 -0.109375 1.765625 -0.578125 1.765625 -1.09375 L 1.765625 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.046875 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.59375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.875 -0.78125 L 3.875 0.109375 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.78125 -0.3125 4.53125 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.34375 4.53125 -3.65625 4.21875 -4.015625 C 4.078125 -4.1875 3.75 -4.375 3.1875 -4.375 C 2.453125 -4.375 1.984375 -3.953125 1.71875 -3.34375 L 1.71875 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.890625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -2.578125 C 1.765625 -3.609375 2.484375 -4.15625 3.109375 -4.15625 C 3.734375 -4.15625 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.1875 -0.03125 Z M 5.296875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 4.109375 -1.171875 C 4.109375 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.890625 -1.28125 3.875 -1.234375 3.859375 -1.171875 C 3.5625 -0.25 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.1875 2.5 -4.1875 C 2.578125 -4.1875 3.203125 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.265625 -2.90625 3.546875 -2.90625 C 3.796875 -2.90625 4 -3.078125 4 -3.375 C 4 -4.046875 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.109375 -1.078125 4.109375 -1.171875 Z M 4.109375 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 5.03125 -3.96875 L 5.03125 -4.265625 C 4.796875 -4.25 4.515625 -4.234375 4.296875 -4.234375 L 3.421875 -4.265625 L 3.421875 -3.96875 C 3.734375 -3.953125 3.890625 -3.78125 3.890625 -3.53125 C 3.890625 -3.4375 3.890625 -3.421875 3.828125 -3.296875 L 2.828125 -0.859375 L 1.734375 -3.53125 C 1.6875 -3.625 1.671875 -3.671875 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.265625 L 1.15625 -4.234375 C 0.875 -4.234375 0.484375 -4.25 0.1875 -4.265625 L 0.1875 -3.96875 C 0.65625 -3.96875 0.859375 -3.96875 0.984375 -3.609375 L 2.484375 0 L 2.234375 0.578125 C 2.015625 1.125 1.734375 1.8125 1.09375 1.8125 C 1.046875 1.8125 0.828125 1.8125 0.640625 1.640625 C 0.9375 1.59375 1.015625 1.375 1.015625 1.21875 C 1.015625 0.953125 0.828125 0.796875 0.609375 0.796875 C 0.40625 0.796875 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.671875 0.609375 2.03125 1.09375 2.03125 C 1.71875 2.03125 2.125 1.46875 2.375 0.90625 L 4.109375 -3.328125 C 4.375 -3.953125 4.875 -3.96875 5.03125 -3.96875 Z M 5.03125 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 2.53125 2.484375 L 2.53125 2.078125 L 1.5625 2.078125 L 1.5625 -7.03125 L 2.53125 -7.03125 L 2.53125 -7.4375 L 1.171875 -7.4375 L 1.171875 2.484375 Z M 2.53125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 7.09375 0 L 7.09375 -0.3125 L 6.859375 -0.3125 C 6.09375 -0.3125 6.078125 -0.421875 6.078125 -0.765625 L 6.078125 -6 C 6.078125 -6.34375 6.09375 -6.453125 6.859375 -6.453125 L 7.09375 -6.453125 L 7.09375 -6.765625 C 6.75 -6.734375 6.015625 -6.734375 5.640625 -6.734375 C 5.265625 -6.734375 4.515625 -6.734375 4.171875 -6.765625 L 4.171875 -6.453125 L 4.40625 -6.453125 C 5.171875 -6.453125 5.1875 -6.34375 5.1875 -6 L 5.1875 -3.671875 L 2.234375 -3.671875 L 2.234375 -6 C 2.234375 -6.34375 2.25 -6.453125 3.015625 -6.453125 L 3.25 -6.453125 L 3.25 -6.765625 C 2.90625 -6.734375 2.171875 -6.734375 1.796875 -6.734375 C 1.421875 -6.734375 0.671875 -6.734375 0.328125 -6.765625 L 0.328125 -6.453125 L 0.5625 -6.453125 C 1.328125 -6.453125 1.34375 -6.34375 1.34375 -6 L 1.34375 -0.765625 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.765625 L 2.234375 -3.375 L 5.1875 -3.375 L 5.1875 -0.765625 C 5.1875 -0.421875 5.171875 -0.3125 4.40625 -0.3125 L 4.171875 -0.3125 L 4.171875 0 C 4.515625 -0.03125 5.25 -0.03125 5.625 -0.03125 C 6 -0.03125 6.75 -0.03125 7.09375 0 Z M 7.09375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 3.96875 -1.859375 L 3.71875 -1.859375 C 3.640625 -0.6875 3.421875 -0.25 2.28125 -0.25 L 1.109375 -0.25 L 3.859375 -3.96875 C 3.953125 -4.078125 3.953125 -4.09375 3.953125 -4.140625 C 3.953125 -4.265625 3.875 -4.265625 3.6875 -4.265625 L 0.53125 -4.265625 L 0.421875 -2.671875 L 0.65625 -2.671875 C 0.71875 -3.6875 0.90625 -4.046875 2 -4.046875 L 3.125 -4.046875 L 0.359375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.796875 0 Z M 3.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 1.578125 2.484375 L 1.578125 -7.4375 L 0.21875 -7.4375 L 0.21875 -7.03125 L 1.171875 -7.03125 L 1.171875 2.078125 L 0.21875 2.078125 L 0.21875 2.484375 Z M 1.578125 2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 0 -8.703125 L -0.3125 -8.703125 L -0.3125 -8.46875 C -0.3125 -7.703125 -0.421875 -7.6875 -0.765625 -7.6875 L -6 -7.6875 C -6.34375 -7.6875 -6.453125 -7.703125 -6.453125 -8.46875 L -6.453125 -8.703125 L -6.765625 -8.703125 L -6.765625 -7.03125 C -6.765625 -6.78125 -6.75 -6.78125 -6.578125 -6.703125 L -1 -4.53125 L -6.546875 -2.390625 C -6.765625 -2.296875 -6.765625 -2.265625 -6.765625 -2.046875 L -6.765625 -0.359375 L -6.453125 -0.359375 L -6.453125 -0.609375 C -6.453125 -1.359375 -6.34375 -1.390625 -6 -1.390625 L -1.046875 -1.390625 C -0.765625 -1.390625 -0.3125 -1.390625 -0.3125 -0.359375 L 0 -0.359375 L -0.03125 -1.53125 L 0 -2.6875 L -0.3125 -2.6875 C -0.3125 -1.671875 -0.765625 -1.671875 -1.046875 -1.671875 L -6.375 -1.671875 L -0.21875 -4.0625 C -0.09375 -4.109375 0 -4.15625 0 -4.265625 C 0 -4.375 -0.078125 -4.390625 -0.1875 -4.4375 L -6.453125 -6.875 L -6.453125 -6.890625 L -0.765625 -6.890625 C -0.421875 -6.890625 -0.3125 -6.859375 -0.3125 -6.109375 L -0.3125 -5.859375 L 0 -5.859375 C -0.03125 -6.234375 -0.03125 -6.90625 -0.03125 -7.296875 C -0.03125 -7.671875 -0.03125 -8.34375 0 -8.703125 Z M 0 -8.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M -0.875 -4.78125 L -1.4375 -4.78125 L -1.4375 -4.53125 L -0.875 -4.53125 C -0.3125 -4.53125 -0.25 -4.296875 -0.25 -4.1875 C -0.25 -3.859375 -0.6875 -3.8125 -0.75 -3.8125 L -2.71875 -3.8125 C -3.140625 -3.8125 -3.53125 -3.8125 -3.890625 -3.453125 C -4.28125 -3.078125 -4.4375 -2.578125 -4.4375 -2.09375 C -4.4375 -1.28125 -3.96875 -0.609375 -3.3125 -0.609375 C -3.015625 -0.609375 -2.859375 -0.796875 -2.859375 -1.0625 C -2.859375 -1.34375 -3.046875 -1.515625 -3.3125 -1.515625 C -3.421875 -1.515625 -3.75 -1.46875 -3.765625 -1.015625 C -4.109375 -1.28125 -4.21875 -1.765625 -4.21875 -2.078125 C -4.21875 -2.5625 -3.828125 -3.125 -2.953125 -3.125 L -2.578125 -3.125 C -2.5625 -2.625 -2.53125 -1.9375 -2.234375 -1.3125 C -1.890625 -0.5625 -1.375 -0.3125 -0.9375 -0.3125 C -0.140625 -0.3125 0.109375 -1.28125 0.109375 -1.90625 C 0.109375 -2.5625 -0.28125 -3.015625 -0.75 -3.203125 C -0.359375 -3.234375 0.0625 -3.5 0.0625 -3.96875 C 0.0625 -4.1875 -0.078125 -4.78125 -0.875 -4.78125 Z M -1.390625 -3.125 C -0.453125 -3.125 -0.109375 -2.421875 -0.109375 -1.96875 C -0.109375 -1.484375 -0.453125 -1.078125 -0.953125 -1.078125 C -1.5 -1.078125 -2.3125 -1.5 -2.375 -3.125 Z M -1.390625 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M -4 -4.796875 C -4.171875 -4.796875 -4.484375 -4.6875 -4.484375 -4.296875 C -4.484375 -4.09375 -4.421875 -3.671875 -4.015625 -3.25 C -4.34375 -2.828125 -4.375 -2.421875 -4.375 -2.203125 C -4.375 -1.28125 -3.6875 -0.59375 -2.9375 -0.59375 C -2.5 -0.59375 -2.125 -0.8125 -1.90625 -1.0625 C -1.765625 -0.9375 -1.4375 -0.75 -1.09375 -0.75 C -0.78125 -0.75 -0.40625 -0.875 -0.203125 -1.1875 C -0.046875 -0.59375 0.390625 -0.28125 0.78125 -0.28125 C 1.5 -0.28125 2.046875 -1.265625 2.046875 -2.46875 C 2.046875 -3.640625 1.53125 -4.671875 0.765625 -4.671875 C 0.421875 -4.671875 -0.09375 -4.53125 -0.359375 -4.015625 C -0.640625 -3.5 -0.640625 -2.921875 -0.640625 -2.3125 C -0.640625 -2.078125 -0.640625 -1.640625 -0.65625 -1.578125 C -0.6875 -1.265625 -1 -1.046875 -1.3125 -1.046875 C -1.359375 -1.046875 -1.578125 -1.046875 -1.78125 -1.21875 C -1.5 -1.609375 -1.46875 -2.015625 -1.46875 -2.203125 C -1.46875 -3.125 -2.15625 -3.796875 -2.921875 -3.796875 C -3.28125 -3.796875 -3.65625 -3.640625 -3.890625 -3.390625 C -4.21875 -3.75 -4.265625 -4.109375 -4.265625 -4.296875 C -4.265625 -4.296875 -4.265625 -4.359375 -4.265625 -4.390625 C -4.21875 -4.28125 -4.109375 -4.234375 -4 -4.234375 C -3.828125 -4.234375 -3.703125 -4.359375 -3.703125 -4.515625 C -3.703125 -4.609375 -3.78125 -4.796875 -4 -4.796875 Z M -2.9375 -3.0625 C -2.671875 -3.0625 -2.34375 -3.046875 -2.09375 -2.90625 C -1.984375 -2.828125 -1.703125 -2.59375 -1.703125 -2.203125 C -1.703125 -1.34375 -2.6875 -1.34375 -2.921875 -1.34375 C -3.1875 -1.34375 -3.5 -1.34375 -3.75 -1.5 C -3.875 -1.578125 -4.15625 -1.796875 -4.15625 -2.203125 C -4.15625 -3.0625 -3.15625 -3.0625 -2.9375 -3.0625 Z M 0.78125 -4.15625 C 1.3125 -4.15625 1.8125 -3.453125 1.8125 -2.484375 C 1.8125 -1.46875 1.3125 -0.796875 0.78125 -0.796875 C 0.328125 -0.796875 -0.046875 -1.171875 -0.0625 -1.609375 L -0.0625 -2.1875 C -0.0625 -3.046875 -0.0625 -4.15625 0.78125 -4.15625 Z M 0.78125 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.78125 -0.3125 -4.53125 -0.609375 -4.53125 L -2.5 -4.53125 C -3.34375 -4.53125 -3.65625 -4.53125 -4.015625 -4.21875 C -4.1875 -4.078125 -4.375 -3.75 -4.375 -3.1875 C -4.375 -2.453125 -3.953125 -1.984375 -3.34375 -1.71875 L -4.375 -1.71875 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.015625 -3.890625 -1.09375 -3.40625 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.3125 L 0 -0.3125 L -0.03125 -1.4375 L 0 -2.546875 L -0.3125 -2.546875 C -0.3125 -1.875 -0.3125 -1.765625 -0.75 -1.765625 L -2.578125 -1.765625 C -3.609375 -1.765625 -4.15625 -2.484375 -4.15625 -3.109375 C -4.15625 -3.734375 -3.625 -3.84375 -3.0625 -3.84375 L -0.75 -3.84375 C -0.3125 -3.84375 -0.3125 -3.734375 -0.3125 -3.078125 L 0 -3.078125 L -0.03125 -4.1875 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 0 -2.453125 L -0.3125 -2.453125 C -0.3125 -1.796875 -0.359375 -1.75 -0.75 -1.75 L -4.375 -1.75 L -4.265625 -0.359375 L -3.96875 -0.359375 C -3.96875 -1.015625 -3.90625 -1.09375 -3.421875 -1.09375 L -0.75 -1.09375 C -0.3125 -1.09375 -0.3125 -0.984375 -0.3125 -0.328125 L 0 -0.328125 L -0.03125 -1.421875 C -0.03125 -1.765625 -0.015625 -2.109375 0 -2.453125 Z M -5.984375 -1.90625 C -6.25 -1.90625 -6.515625 -1.671875 -6.515625 -1.375 C -6.515625 -1.046875 -6.234375 -0.84375 -5.984375 -0.84375 C -5.71875 -0.84375 -5.453125 -1.0625 -5.453125 -1.359375 C -5.453125 -1.703125 -5.734375 -1.90625 -5.984375 -1.90625 Z M -5.984375 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-6">
<path style="stroke:none;" d="M -1.234375 -3.28125 L -1.796875 -3.28125 L -1.796875 -3.046875 L -1.25 -3.046875 C -0.515625 -3.046875 -0.140625 -2.75 -0.140625 -2.375 C -0.140625 -1.71875 -1.046875 -1.71875 -1.203125 -1.71875 L -3.96875 -1.71875 L -3.96875 -3.125 L -4.265625 -3.125 L -4.265625 -1.71875 L -6.09375 -1.71875 L -6.09375 -1.46875 C -5.28125 -1.453125 -4.21875 -1.15625 -4.1875 -0.1875 L -3.96875 -0.1875 L -3.96875 -1.03125 L -1.234375 -1.03125 C -0.015625 -1.03125 0.109375 -1.953125 0.109375 -2.3125 C 0.109375 -3.015625 -0.59375 -3.28125 -1.234375 -3.28125 Z M -1.234375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-7">
<path style="stroke:none;" d="M 0 -5.296875 L -0.3125 -5.296875 C -0.3125 -4.609375 -0.375 -4.53125 -0.859375 -4.53125 L -4.375 -4.53125 L -4.265625 -3.078125 L -3.96875 -3.078125 C -3.96875 -3.765625 -3.890625 -3.84375 -3.40625 -3.84375 L -1.640625 -3.84375 C -0.78125 -3.84375 -0.109375 -3.375 -0.109375 -2.640625 C -0.109375 -1.8125 -0.578125 -1.765625 -1.09375 -1.765625 L -4.375 -1.765625 L -4.265625 -0.3125 L -3.96875 -0.3125 C -3.96875 -1.09375 -3.9375 -1.09375 -3.046875 -1.09375 L -1.5625 -1.09375 C -0.796875 -1.09375 0.109375 -1.09375 0.109375 -2.59375 C 0.109375 -3.15625 -0.171875 -3.59375 -0.78125 -3.875 L 0.109375 -3.875 Z M 0 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-8">
<path style="stroke:none;" d="M 0 -5.21875 L -0.3125 -5.21875 C -0.3125 -4.53125 -0.375 -4.453125 -0.859375 -4.453125 L -6.875 -4.453125 L -6.765625 -3.015625 L -6.453125 -3.015625 C -6.453125 -3.71875 -6.390625 -3.796875 -5.90625 -3.796875 L -3.765625 -3.796875 C -4.125 -3.5 -4.375 -3.078125 -4.375 -2.546875 C -4.375 -1.375 -3.40625 -0.34375 -2.125 -0.34375 C -0.875 -0.34375 0.109375 -1.3125 0.109375 -2.4375 C 0.109375 -3.078125 -0.234375 -3.515625 -0.546875 -3.765625 L 0.109375 -3.765625 Z M -1.171875 -3.765625 C -0.984375 -3.765625 -0.96875 -3.765625 -0.796875 -3.65625 C -0.328125 -3.359375 -0.109375 -2.90625 -0.109375 -2.484375 C -0.109375 -2.046875 -0.359375 -1.6875 -0.75 -1.453125 C -1.15625 -1.1875 -1.71875 -1.15625 -2.125 -1.15625 C -2.484375 -1.15625 -3.078125 -1.171875 -3.53125 -1.46875 C -3.828125 -1.671875 -4.15625 -2.046875 -4.15625 -2.578125 C -4.15625 -2.9375 -4.015625 -3.34375 -3.5625 -3.65625 C -3.390625 -3.765625 -3.375 -3.765625 -3.203125 -3.765625 Z M -1.171875 -3.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-9">
<path style="stroke:none;" d="M -1.171875 -4.109375 C -1.28125 -4.109375 -1.296875 -4.03125 -1.296875 -3.984375 C -1.296875 -3.890625 -1.234375 -3.875 -1.15625 -3.859375 C -0.140625 -3.5 -0.140625 -2.609375 -0.140625 -2.515625 C -0.140625 -2.015625 -0.4375 -1.625 -0.796875 -1.390625 C -1.28125 -1.09375 -1.9375 -1.09375 -2.28125 -1.09375 L -2.28125 -3.859375 C -2.28125 -4.078125 -2.28125 -4.109375 -2.5 -4.109375 C -3.484375 -4.109375 -4.4375 -3.578125 -4.4375 -2.34375 C -4.4375 -1.1875 -3.421875 -0.28125 -2.171875 -0.28125 C -0.859375 -0.28125 0.109375 -1.3125 0.109375 -2.453125 C 0.109375 -3.671875 -0.984375 -4.109375 -1.171875 -4.109375 Z M -2.5 -3.453125 L -2.5 -1.109375 C -3.96875 -1.171875 -4.21875 -2 -4.21875 -2.34375 C -4.21875 -3.359375 -2.875 -3.453125 -2.5 -3.453125 Z M -2.5 -3.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 5.8125 -2.890625 C 5.8125 -3.5 5.453125 -3.5 5.421875 -3.5 C 5.234375 -3.5 5 -3.296875 5 -3.09375 C 5 -2.984375 5.046875 -2.921875 5.109375 -2.875 C 5.203125 -2.796875 5.4375 -2.59375 5.4375 -2.203125 C 5.4375 -1.984375 5.21875 -1.234375 4.984375 -0.8125 C 4.765625 -0.421875 4.5 -0.140625 4.109375 -0.140625 C 3.765625 -0.140625 3.5 -0.328125 3.5 -0.828125 C 3.5 -1.03125 3.546875 -1.265625 3.65625 -1.703125 L 3.875 -2.59375 C 3.921875 -2.78125 4.015625 -3.125 4.015625 -3.171875 C 4.015625 -3.359375 3.859375 -3.421875 3.765625 -3.421875 C 3.484375 -3.421875 3.4375 -3.21875 3.34375 -2.859375 L 3.09375 -1.84375 C 3.015625 -1.53125 2.921875 -1.171875 2.921875 -0.9375 C 2.921875 -0.890625 2.9375 -0.828125 2.9375 -0.796875 C 2.9375 -0.796875 2.71875 -0.140625 2.1875 -0.140625 C 1.875 -0.140625 1.515625 -0.265625 1.515625 -0.859375 C 1.515625 -1.25 1.703125 -1.765625 1.953125 -2.40625 C 2.03125 -2.609375 2.0625 -2.671875 2.0625 -2.8125 C 2.0625 -3.25 1.71875 -3.5 1.34375 -3.5 C 0.5625 -3.5 0.234375 -2.375 0.234375 -2.28125 C 0.234375 -2.203125 0.296875 -2.171875 0.359375 -2.171875 C 0.453125 -2.171875 0.46875 -2.21875 0.484375 -2.3125 C 0.703125 -3 1.03125 -3.265625 1.328125 -3.265625 C 1.4375 -3.265625 1.515625 -3.1875 1.515625 -3.015625 C 1.515625 -2.84375 1.453125 -2.65625 1.390625 -2.515625 C 1.078125 -1.734375 0.9375 -1.3125 0.9375 -0.953125 C 0.9375 -0.15625 1.609375 0.078125 2.15625 0.078125 C 2.296875 0.078125 2.703125 0.078125 3.03125 -0.4375 C 3.25 -0.015625 3.75 0.078125 4.09375 0.078125 C 4.796875 0.078125 5.140625 -0.59375 5.28125 -0.859375 C 5.53125 -1.375 5.8125 -2.421875 5.8125 -2.890625 Z M 5.8125 -2.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 4.546875 -1.484375 C 4.546875 -1.546875 4.5 -1.578125 4.4375 -1.578125 C 4.359375 -1.578125 4.34375 -1.546875 4.3125 -1.46875 C 4.046875 -0.796875 3.75 -0.234375 2.6875 -0.234375 L 1.953125 -0.234375 C 1.84375 -0.234375 1.828125 -0.234375 1.75 -0.25 L 2.578125 -3.5625 C 2.625 -3.765625 2.640625 -3.8125 3.234375 -3.8125 C 3.390625 -3.8125 3.453125 -3.8125 3.453125 -3.96875 C 3.453125 -3.984375 3.4375 -4.0625 3.359375 -4.0625 C 3.21875 -4.0625 3.0625 -4.03125 2.921875 -4.03125 L 2.015625 -4.03125 C 1.875 -4.03125 1.71875 -4.0625 1.578125 -4.0625 C 1.546875 -4.0625 1.453125 -4.0625 1.453125 -3.90625 C 1.453125 -3.8125 1.53125 -3.8125 1.640625 -3.8125 C 1.75 -3.8125 1.90625 -3.8125 2.03125 -3.78125 C 2.03125 -3.71875 2.03125 -3.6875 2 -3.59375 L 1.21875 -0.5 C 1.171875 -0.28125 1.15625 -0.234375 0.71875 -0.234375 C 0.578125 -0.234375 0.5 -0.234375 0.5 -0.09375 C 0.5 0 0.578125 0 0.6875 0 L 3.828125 0 C 3.984375 0 3.984375 0 4.03125 -0.125 C 4.09375 -0.265625 4.546875 -1.453125 4.546875 -1.484375 Z M 4.546875 -1.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 5.046875 -0.15625 C 5.015625 -0.234375 4.96875 -0.234375 4.828125 -0.234375 C 4.765625 -0.234375 4.671875 -0.25 4.609375 -0.25 C 4.5 -0.265625 4.453125 -0.265625 4.453125 -0.328125 C 4.453125 -0.34375 4.46875 -0.375 4.484375 -0.4375 L 5.265625 -3.578125 C 5.3125 -3.765625 5.328125 -3.8125 5.796875 -3.8125 C 5.90625 -3.8125 5.984375 -3.8125 5.984375 -3.953125 C 5.984375 -4.015625 5.953125 -4.0625 5.890625 -4.0625 C 5.765625 -4.0625 5.625 -4.03125 5.5 -4.03125 L 4.6875 -4.03125 C 4.546875 -4.03125 4.40625 -4.0625 4.28125 -4.0625 C 4.234375 -4.0625 4.140625 -4.0625 4.140625 -3.90625 C 4.140625 -3.8125 4.234375 -3.8125 4.328125 -3.8125 C 4.4375 -3.8125 4.59375 -3.8125 4.71875 -3.78125 C 4.71875 -3.71875 4.71875 -3.6875 4.6875 -3.59375 L 4.34375 -2.234375 L 2.25 -2.234375 L 2.578125 -3.578125 C 2.625 -3.765625 2.640625 -3.8125 3.125 -3.8125 C 3.21875 -3.8125 3.3125 -3.8125 3.3125 -3.953125 C 3.3125 -4.015625 3.265625 -4.0625 3.203125 -4.0625 C 3.078125 -4.0625 2.9375 -4.03125 2.8125 -4.03125 L 2 -4.03125 C 1.875 -4.03125 1.71875 -4.0625 1.59375 -4.0625 C 1.5625 -4.0625 1.453125 -4.0625 1.453125 -3.90625 C 1.453125 -3.8125 1.546875 -3.8125 1.65625 -3.8125 C 1.75 -3.8125 1.90625 -3.8125 2.03125 -3.78125 C 2.03125 -3.71875 2.03125 -3.6875 2 -3.59375 L 1.234375 -0.5 C 1.171875 -0.28125 1.15625 -0.234375 0.71875 -0.234375 C 0.59375 -0.234375 0.578125 -0.234375 0.546875 -0.21875 C 0.515625 -0.203125 0.5 -0.125 0.5 -0.078125 C 0.5 -0.0625 0.515625 0 0.609375 0 C 0.734375 0 0.875 -0.015625 1 -0.015625 L 1.40625 -0.03125 L 1.8125 -0.015625 C 1.9375 -0.015625 2.09375 0 2.21875 0 C 2.25 0 2.296875 0 2.328125 -0.046875 C 2.328125 -0.0625 2.359375 -0.125 2.359375 -0.15625 C 2.34375 -0.234375 2.28125 -0.234375 2.15625 -0.234375 C 2.078125 -0.234375 1.984375 -0.25 1.921875 -0.25 C 1.8125 -0.265625 1.78125 -0.265625 1.78125 -0.328125 C 1.78125 -0.34375 1.78125 -0.375 1.796875 -0.4375 L 2.1875 -1.984375 L 4.28125 -1.984375 L 3.890625 -0.390625 C 3.84375 -0.28125 3.828125 -0.25 3.359375 -0.234375 C 3.265625 -0.234375 3.25 -0.234375 3.234375 -0.21875 C 3.203125 -0.1875 3.1875 -0.109375 3.1875 -0.078125 C 3.1875 -0.0625 3.1875 0 3.296875 0 C 3.421875 0 3.5625 -0.015625 3.6875 -0.015625 L 4.078125 -0.03125 L 4.5 -0.015625 C 4.625 -0.015625 4.78125 0 4.90625 0 C 4.9375 0 4.984375 0 5 -0.046875 C 5.015625 -0.0625 5.046875 -0.125 5.046875 -0.15625 Z M 5.046875 -0.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 4.96875 -1.484375 C 4.96875 -1.640625 4.828125 -1.640625 4.734375 -1.640625 L 0.96875 -1.640625 C 0.890625 -1.640625 0.75 -1.640625 0.75 -1.484375 C 0.75 -1.328125 0.890625 -1.328125 0.96875 -1.328125 L 4.734375 -1.328125 C 4.828125 -1.328125 4.96875 -1.328125 4.96875 -1.484375 Z M 4.96875 -1.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 3 0 L 3 -0.234375 L 2.75 -0.234375 C 2.125 -0.234375 2.125 -0.3125 2.125 -0.5 L 2.125 -3.765625 C 2.125 -3.953125 2.109375 -3.953125 1.9375 -3.953125 C 1.53125 -3.5625 0.9375 -3.5625 0.71875 -3.5625 L 0.71875 -3.34375 C 0.875 -3.34375 1.265625 -3.34375 1.625 -3.5 L 1.625 -0.5 C 1.625 -0.3125 1.625 -0.234375 1.015625 -0.234375 L 0.75 -0.234375 L 0.75 0 C 1.078125 -0.03125 1.546875 -0.03125 1.875 -0.03125 C 2.203125 -0.03125 2.671875 -0.03125 3 0 Z M 3 0 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 43.347656 7.828125 L 240.640625 7.828125 L 240.640625 107 L 43.347656 107 Z M 43.347656 7.828125 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 43.347656 7.828125 L 240.640625 7.828125 L 240.640625 104 L 43.347656 104 Z M 43.347656 7.828125 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 225 91 L 240.640625 91 L 240.640625 93 L 225 93 Z M 225 91 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 211 71 L 240.640625 71 L 240.640625 107 L 211 107 Z M 211 71 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 43.347656 50 L 122 50 L 122 120.5625 L 43.347656 120.5625 Z M 43.347656 50 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 43.347656 48 L 116 48 L 116 120.5625 L 43.347656 120.5625 Z M 43.347656 48 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 43.347656 7.828125 L 240.640625 7.828125 L 240.640625 120.5625 L 43.347656 120.5625 Z M 43.347656 7.828125 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 44 7.828125 L 172 7.828125 L 172 120.5625 L 44 120.5625 Z M 44 7.828125 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.347656 120.5625 L 240.640625 120.5625 L 240.640625 7.828125 L 43.347656 7.828125 Z M 43.347656 120.5625 "/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 M -34.674883 -85.03976 L -34.674883 28.345667 M -25.937212 -85.03976 L -25.937212 28.345667 M -19.74148 -85.03976 L -19.74148 28.345667 M -14.932618 -85.03976 L -14.932618 28.345667 M -11.003809 -85.03976 L -11.003809 28.345667 M -7.683965 -85.03976 L -7.683965 28.345667 M -4.808077 -85.03976 L -4.808077 28.345667 M -2.270067 -85.03976 L -2.270067 28.345667 M 0.000784861 -85.03976 L 0.000784861 28.345667 M 14.934188 -85.03976 L 14.934188 28.345667 M 23.66793 -85.03976 L 23.66793 28.345667 M 29.867591 -85.03976 L 29.867591 28.345667 M 34.672524 -85.03976 L 34.672524 28.345667 M 38.601333 -85.03976 L 38.601333 28.345667 M 41.925105 -85.03976 L 41.925105 28.345667 M 44.800994 -85.03976 L 44.800994 28.345667 M 47.339004 -85.03976 L 47.339004 28.345667 M 49.609856 -85.03976 L 49.609856 28.345667 M 64.543259 -85.03976 L 64.543259 28.345667 M 73.277001 -85.03976 L 73.277001 28.345667 M 79.476661 -85.03976 L 79.476661 28.345667 M 84.281595 -85.03976 L 84.281595 28.345667 M 88.210404 -85.03976 L 88.210404 28.345667 M 91.530247 -85.03976 L 91.530247 28.345667 M 94.410064 -85.03976 L 94.410064 28.345667 M 96.944146 -85.03976 L 96.944146 28.345667 M 99.214998 -85.03976 L 99.214998 28.345667 M 114.148401 -85.03976 L 114.148401 28.345667 M 122.886072 -85.03976 L 122.886072 28.345667 M 129.081803 -85.03976 L 129.081803 28.345667 M 133.890666 -85.03976 L 133.890666 28.345667 M 137.819475 -85.03976 L 137.819475 28.345667 M 141.139318 -85.03976 L 141.139318 28.345667 M 144.015206 -85.03976 L 144.015206 28.345667 M 146.553217 -85.03976 L 146.553217 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 M 0.000784861 -85.03976 L 0.000784861 28.345667 M 49.609856 -85.03976 L 49.609856 28.345667 M 99.214998 -85.03976 L 99.214998 28.345667 M 148.824069 -85.03976 L 148.824069 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(89.99939%,89.99939%,89.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 M -49.608286 -76.506387 L 148.824069 -76.506387 M -49.608286 -71.5168 L 148.824069 -71.5168 M -49.608286 -67.973014 L 148.824069 -67.973014 M -49.608286 -65.226776 L 148.824069 -65.226776 M -49.608286 -62.983426 L 148.824069 -62.983426 M -49.608286 -61.085812 L 148.824069 -61.085812 M -49.608286 -59.439641 L 148.824069 -59.439641 M -49.608286 -57.98991 L 148.824069 -57.98991 M -49.608286 -56.693403 L 148.824069 -56.693403 M -49.608286 -48.16003 L 148.824069 -48.16003 M -49.608286 -43.170443 L 148.824069 -43.170443 M -49.608286 -39.626657 L 148.824069 -39.626657 M -49.608286 -36.88042 L 148.824069 -36.88042 M -49.608286 -34.63707 L 148.824069 -34.63707 M -49.608286 -32.739455 L 148.824069 -32.739455 M -49.608286 -31.093284 L 148.824069 -31.093284 M -49.608286 -29.643554 L 148.824069 -29.643554 M -49.608286 -28.347047 L 148.824069 -28.347047 M -49.608286 -19.813673 L 148.824069 -19.813673 M -49.608286 -14.820157 L 148.824069 -14.820157 M -49.608286 -11.2803 L 148.824069 -11.2803 M -49.608286 -8.534063 L 148.824069 -8.534063 M -49.608286 -6.286784 L 148.824069 -6.286784 M -49.608286 -4.389169 L 148.824069 -4.389169 M -49.608286 -2.746927 L 148.824069 -2.746927 M -49.608286 -1.297197 L 148.824069 -1.297197 M -49.608286 -0.000689872 L 148.824069 -0.000689872 M -49.608286 8.532683 L 148.824069 8.532683 M -49.608286 13.526199 L 148.824069 13.526199 M -49.608286 17.066056 L 148.824069 17.066056 M -49.608286 19.812294 L 148.824069 19.812294 M -49.608286 22.059572 L 148.824069 22.059572 M -49.608286 23.957187 L 148.824069 23.957187 M -49.608286 25.599429 L 148.824069 25.599429 M -49.608286 27.04916 L 148.824069 27.04916 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(69.999695%,69.999695%,69.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 M -49.608286 -56.693403 L 148.824069 -56.693403 M -49.608286 -28.347047 L 148.824069 -28.347047 M -49.608286 -0.000689872 L 148.824069 -0.000689872 M -49.608286 28.345667 L 148.824069 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 -82.207089 M -34.674883 -85.03976 L -34.674883 -82.207089 M -25.937212 -85.03976 L -25.937212 -82.207089 M -19.74148 -85.03976 L -19.74148 -82.207089 M -14.932618 -85.03976 L -14.932618 -82.207089 M -11.003809 -85.03976 L -11.003809 -82.207089 M -7.683965 -85.03976 L -7.683965 -82.207089 M -4.808077 -85.03976 L -4.808077 -82.207089 M -2.270067 -85.03976 L -2.270067 -82.207089 M 0.000784861 -85.03976 L 0.000784861 -82.207089 M 14.934188 -85.03976 L 14.934188 -82.207089 M 23.66793 -85.03976 L 23.66793 -82.207089 M 29.867591 -85.03976 L 29.867591 -82.207089 M 34.672524 -85.03976 L 34.672524 -82.207089 M 38.601333 -85.03976 L 38.601333 -82.207089 M 41.925105 -85.03976 L 41.925105 -82.207089 M 44.800994 -85.03976 L 44.800994 -82.207089 M 47.339004 -85.03976 L 47.339004 -82.207089 M 49.609856 -85.03976 L 49.609856 -82.207089 M 64.543259 -85.03976 L 64.543259 -82.207089 M 73.277001 -85.03976 L 73.277001 -82.207089 M 79.476661 -85.03976 L 79.476661 -82.207089 M 84.281595 -85.03976 L 84.281595 -82.207089 M 88.210404 -85.03976 L 88.210404 -82.207089 M 91.530247 -85.03976 L 91.530247 -82.207089 M 94.410064 -85.03976 L 94.410064 -82.207089 M 96.944146 -85.03976 L 96.944146 -82.207089 M 99.214998 -85.03976 L 99.214998 -82.207089 M 114.148401 -85.03976 L 114.148401 -82.207089 M 122.886072 -85.03976 L 122.886072 -82.207089 M 129.081803 -85.03976 L 129.081803 -82.207089 M 133.890666 -85.03976 L 133.890666 -82.207089 M 137.819475 -85.03976 L 137.819475 -82.207089 M 141.139318 -85.03976 L 141.139318 -82.207089 M 144.015206 -85.03976 L 144.015206 -82.207089 M 146.553217 -85.03976 L 146.553217 -82.207089 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 -80.788789 M 0.000784861 -85.03976 L 0.000784861 -80.788789 M 49.609856 -85.03976 L 49.609856 -80.788789 M 99.214998 -85.03976 L 99.214998 -80.788789 M 148.824069 -85.03976 L 148.824069 -80.788789 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -46.775615 -85.03976 M -49.608286 -76.506387 L -46.775615 -76.506387 M -49.608286 -71.5168 L -46.775615 -71.5168 M -49.608286 -67.973014 L -46.775615 -67.973014 M -49.608286 -65.226776 L -46.775615 -65.226776 M -49.608286 -62.983426 L -46.775615 -62.983426 M -49.608286 -61.085812 L -46.775615 -61.085812 M -49.608286 -59.439641 L -46.775615 -59.439641 M -49.608286 -57.98991 L -46.775615 -57.98991 M -49.608286 -56.693403 L -46.775615 -56.693403 M -49.608286 -48.16003 L -46.775615 -48.16003 M -49.608286 -43.170443 L -46.775615 -43.170443 M -49.608286 -39.626657 L -46.775615 -39.626657 M -49.608286 -36.88042 L -46.775615 -36.88042 M -49.608286 -34.63707 L -46.775615 -34.63707 M -49.608286 -32.739455 L -46.775615 -32.739455 M -49.608286 -31.093284 L -46.775615 -31.093284 M -49.608286 -29.643554 L -46.775615 -29.643554 M -49.608286 -28.347047 L -46.775615 -28.347047 M -49.608286 -19.813673 L -46.775615 -19.813673 M -49.608286 -14.820157 L -46.775615 -14.820157 M -49.608286 -11.2803 L -46.775615 -11.2803 M -49.608286 -8.534063 L -46.775615 -8.534063 M -49.608286 -6.286784 L -46.775615 -6.286784 M -49.608286 -4.389169 L -46.775615 -4.389169 M -49.608286 -2.746927 L -46.775615 -2.746927 M -49.608286 -1.297197 L -46.775615 -1.297197 M -49.608286 -0.000689872 L -46.775615 -0.000689872 M -49.608286 8.532683 L -46.775615 8.532683 M -49.608286 13.526199 L -46.775615 13.526199 M -49.608286 17.066056 L -46.775615 17.066056 M -49.608286 19.812294 L -46.775615 19.812294 M -49.608286 22.059572 L -46.775615 22.059572 M -49.608286 23.957187 L -46.775615 23.957187 M -49.608286 25.599429 L -46.775615 25.599429 M -49.608286 27.04916 L -46.775615 27.04916 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -45.361243 -85.03976 M -49.608286 -56.693403 L -45.361243 -56.693403 M -49.608286 -28.347047 L -45.361243 -28.347047 M -49.608286 -0.000689872 L -45.361243 -0.000689872 M -49.608286 28.345667 L -45.361243 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L 148.824069 -85.03976 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 -85.03976 L -49.608286 28.345667 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="33.078249" y="132.423243"/>
<use xlink:href="#glyph0-2" x="38.030947" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="42.984042" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="49.174293" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="85.496528" y="132.423243"/>
<use xlink:href="#glyph0-2" x="90.449226" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="95.402322" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="134.819683" y="132.423243"/>
<use xlink:href="#glyph0-2" x="139.77238" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="144.725476" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="184.142837" y="132.423243"/>
<use xlink:href="#glyph0-2" x="189.095534" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="194.04863" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="233.465991" y="132.423243"/>
<use xlink:href="#glyph0-2" x="238.418688" y="132.423243"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="243.371784" y="128.829"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="124.595449"/>
<use xlink:href="#glyph0-2" x="23.964184" y="124.595449"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="121.001206"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="35.10753" y="121.001206"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="96.411216"/>
<use xlink:href="#glyph0-2" x="23.964184" y="96.411216"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="92.816973"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="35.10753" y="92.816973"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.011486" y="68.226983"/>
<use xlink:href="#glyph0-2" x="23.964184" y="68.226983"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.917279" y="64.63274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.10753" y="64.63274"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.201737" y="40.042749"/>
<use xlink:href="#glyph0-2" x="30.154434" y="40.042749"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="35.10753" y="36.448506"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="25.201737" y="11.858516"/>
<use xlink:href="#glyph0-2" x="30.154434" y="11.858516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="35.10753" y="8.264273"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 19.211186 L -16.834162 19.160111 L -5.314894 19.057962 L 2.035908 18.908668 L 7.595173 18.712227 L 12.164377 18.460783 L 15.939963 18.166123 L 19.31481 17.820388 L 22.493216 17.403934 L 25.471253 16.912833 L 28.25285 16.366728 L 30.838006 15.769549 L 33.419234 15.078079 L 36.000461 14.288388 L 38.581689 13.404406 L 41.363286 12.343628 L 44.144882 11.1807 L 47.12292 9.817404 L 50.301326 8.249809 L 53.680102 6.470058 L 57.451758 4.356359 L 61.427713 2.003003 L 65.796549 -0.715733 L 70.365753 -3.69377 L 75.131399 -6.931109 L 80.097413 -10.451322 L 85.063428 -14.109043 L 90.225883 -18.065354 L 95.789076 -22.477406 L 102.145889 -27.67522 L 117.043933 -39.940962 L 120.815589 -42.852209 L 123.993996 -45.170207 L 126.775593 -47.067821 L 129.35682 -48.698277 L 131.741607 -50.085147 L 134.126394 -51.346294 L 136.310812 -52.391357 L 138.491301 -53.330343 L 140.679648 -54.16325 L 142.860137 -54.894009 L 145.248852 -55.585479 L 147.629711 -56.1748 L 148.824069 -56.430173 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.608286 19.211186 L -45.345528 26.569845 M -43.939015 19.203328 L -39.676257 26.558059 M -38.269743 19.191542 L -34.006986 26.550201 M -32.600472 19.183684 L -28.337714 26.542344 M -26.931201 19.175827 L -22.668443 26.534486 M -21.261929 19.167969 L -16.999172 26.522699 M -15.592658 19.148325 L -11.274897 26.475554 M -9.923387 19.097251 L -5.605626 26.424479 M -4.254115 19.03439 L 0.146151 26.314473 M 1.411227 18.920454 L 5.815422 26.196608 M 7.080499 18.727942 L 11.590771 25.937307 M 12.737984 18.413638 L 17.546846 25.430491 M 18.387611 17.914679 L 23.369341 24.809739 M 24.005808 17.156419 L 29.392205 23.733245 M 29.565072 16.06421 L 35.371852 22.275657 M 35.037903 14.583049 L 41.257208 20.381971 M 40.388941 12.716865 L 46.981482 18.087547 M 45.610328 10.508874 L 52.536818 15.443458 M 50.709922 8.033724 L 57.903571 12.571499 M 55.695581 5.338562 L 63.007094 9.683824 M 60.598734 2.490175 L 68.012397 6.66257 M 65.427241 -0.487862 L 72.927337 3.519523 M 70.181099 -3.571977 L 77.763701 0.278256 M 74.887813 -6.766099 L 82.545061 -3.065161 M 79.51595 -10.038797 L 87.239988 -6.487153 M 84.081226 -13.390071 L 91.875983 -9.983793 M 88.595427 -16.812063 L 96.445187 -13.551152 M 93.050696 -20.304775 L 100.959389 -17.177443 M 97.474535 -23.856418 L 105.430374 -20.84695 M 101.882659 -27.459136 L 109.834568 -24.453597 M 106.239708 -31.046138 L 114.203404 -28.064172 M 110.624259 -34.656714 L 118.587955 -31.674748 M 115.00881 -38.267289 L 122.972506 -35.281394 M 119.432649 -41.787502 L 127.298124 -38.554092 M 123.997925 -45.170207 L 131.773038 -41.724641 M 128.712495 -48.29361 L 136.240093 -44.337299 M 133.64708 -51.09485 L 140.848586 -46.57672 M 138.793819 -53.444278 L 145.386361 -48.077525 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.53933 -4.393098 L 84.281595 -4.393098 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.53933 -4.393098 L 68.790301 2.973419 M 70.208601 -4.393098 L 74.459572 2.973419 M 75.877872 -4.393098 L 80.128844 2.973419 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281595 -28.347047 L 133.890666 -28.347047 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.281595 -28.347047 L 88.532566 -20.98053 M 89.950866 -28.347047 L 94.201837 -20.98053 M 95.620138 -28.347047 L 99.871109 -20.98053 M 101.289409 -28.347047 L 105.54038 -20.98053 M 106.95868 -28.347047 L 111.209651 -20.98053 M 112.627952 -28.347047 L 116.878923 -20.98053 M 118.297223 -28.347047 L 122.548194 -20.98053 M 123.966494 -28.347047 L 128.217466 -20.98053 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.890666 -56.693403 L 148.824069 -56.693403 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.890666 -56.693403 L 138.141637 -49.330815 M 139.559937 -56.693403 L 143.810908 -49.330815 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.283954 -141.736402 L 14.930259 -28.347047 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.283954 -141.736402 L -87.026263 -133.686273 M -80.539799 -137.457929 L -83.282108 -129.4078 M -76.799573 -133.179456 L -79.541881 -125.133255 M -73.055418 -128.904912 L -75.797727 -120.854783 M -69.315192 -124.626439 L -72.0575 -116.57631 M -65.571037 -120.347966 L -68.313345 -112.301765 M -61.826882 -116.073422 L -64.569191 -108.023292 M -58.086656 -111.794949 L -60.828964 -103.744819 M -54.342501 -107.516476 L -57.084809 -99.470275 M -50.598346 -103.241932 L -53.340654 -95.191802 M -46.85812 -98.963459 L -49.600428 -90.913329 M -43.113965 -94.684986 L -45.856273 -86.638785 M -39.36981 -90.410442 L -42.112118 -82.360312 M -35.629584 -86.131969 L -38.371892 -78.081839 M -31.885429 -81.857425 L -34.627737 -73.807295 M -28.141274 -77.578952 L -30.883582 -69.528822 M -24.401048 -73.300479 L -27.143356 -65.250349 M -20.656893 -69.025935 L -23.399201 -60.975805 M -16.912738 -64.747462 L -19.655046 -56.697332 M -13.172512 -60.468989 L -15.91482 -52.418859 M -9.428357 -56.194445 L -12.170665 -48.144315 M -5.684202 -51.915972 L -8.42651 -43.865842 M -1.943976 -47.637499 L -4.686284 -39.587369 M 1.800179 -43.362954 L -0.942129 -35.312825 M 5.540406 -39.084481 L 2.798097 -31.034352 M 9.28456 -34.806009 L 6.542252 -26.755879 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -49.608286 19.211186 L -15.840173 19.160111 L -4.320905 19.057962 L 3.029897 18.908668 L 8.392721 18.720085 L 12.761556 18.480428 L 16.533213 18.181838 L 19.715548 17.847889 L 22.693585 17.443222 L 25.274813 17.003195 L 27.6596 16.516023 L 30.044387 15.926702 L 32.228805 15.298092 L 34.413223 14.567334 L 36.59764 13.726569 L 38.782058 12.767939 L 40.966476 11.687517 L 43.150894 10.485301 L 45.335312 9.153435 L 47.523658 7.695847 L 49.904516 5.9711 L 52.489673 3.951692 L 55.267341 1.614051 L 58.245378 -1.053611 L 61.624154 -4.25559 L 65.399739 -8.011531 L 69.968944 -12.745746 L 75.528208 -18.705749 L 83.27582 -27.207692 L 103.139878 -49.102944 L 108.699143 -55.000087 L 113.067978 -59.463214 L 116.843564 -63.13665 L 120.222339 -66.252195 L 123.200376 -68.833423 L 125.981973 -71.072844 L 128.559272 -72.994032 L 130.947988 -74.624487 L 133.132406 -75.987784 L 135.316823 -77.22143 L 137.501241 -78.333283 L 139.685659 -79.323343 L 141.870077 -80.19161 L 144.054494 -80.94987 L 146.242841 -81.605981 L 148.623699 -82.214946 L 148.824069 -82.262092 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -34.313433 -85.169411 L -17.230971 -65.745379 L 35.206842 -5.842829 L 65.19937 28.436029 " transform="matrix(0.994258,0,0,-0.994258,92.671095,36.011033)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="109.580442" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="115.224536" y="146.951342"/>
<use xlink:href="#glyph3-3" x="119.104479" y="146.951342"/>
<use xlink:href="#glyph3-4" x="123.507427" y="146.951342"/>
<use xlink:href="#glyph3-5" x="128.735495" y="146.951342"/>
<use xlink:href="#glyph3-3" x="134.237942" y="146.951342"/>
<use xlink:href="#glyph3-6" x="138.640891" y="146.951342"/>
<use xlink:href="#glyph3-7" x="144.143338" y="146.951342"/>
<use xlink:href="#glyph3-8" x="148.546286" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-9" x="157.062945" y="146.951342"/>
<use xlink:href="#glyph3-10" x="159.814664" y="146.951342"/>
<use xlink:href="#glyph3-11" x="167.24371" y="146.951342"/>
<use xlink:href="#glyph3-12" x="171.646659" y="146.951342"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.127019" y="87.445991"/>
<use xlink:href="#glyph4-2" x="11.127019" y="78.365715"/>
<use xlink:href="#glyph4-3" x="11.127019" y="73.413017"/>
<use xlink:href="#glyph4-4" x="11.127019" y="68.46032"/>
<use xlink:href="#glyph4-5" x="11.127019" y="62.957873"/>
<use xlink:href="#glyph4-6" x="11.127019" y="60.206154"/>
<use xlink:href="#glyph4-7" x="11.127019" y="56.353945"/>
<use xlink:href="#glyph4-8" x="11.127019" y="50.851498"/>
<use xlink:href="#glyph4-9" x="11.127019" y="45.349051"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.575191 80.132228 L 193.449339 80.132228 L 193.449339 108.407866 L 142.575191 108.407866 Z M 142.575191 80.132228 " transform="matrix(0.994258,0,0,-0.994258,43.348935,120.562739)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70.599365%,1.599121%,14.99939%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -0.00195498 0.00102106 L 17.009788 0.00102106 " transform="matrix(0.994258,0,0,-0.994258,188.572256,20.79789)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="207.959294" y="23.368047"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="214.001401" y="24.699359"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="219.526493" y="20.571199"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-1" x="225.249442" y="20.571199"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(22.999573%,29.899597%,75.39978%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -0.00195498 0.00107254 L 17.009788 0.00107254 " transform="matrix(0.994258,0,0,-0.994258,188.572256,32.87216)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="207.959294" y="35.442317"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="214.001401" y="36.773629"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="220.885643" y="32.645469"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-1" x="226.608593" y="32.645469"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 57 KiB

View File

@ -0,0 +1,165 @@
\tikzset{block/.default={0.8cm}{0.6cm}}
\tikzset{addb/.append style={scale=0.7}}
\tikzset{node distance=0.6}
\def\cdist{0.7}
\definecolor{T}{rgb}{0.230, 0.299, 0.754}%
\definecolor{S}{rgb}{0.706, 0.016, 0.150}%
\setlength\fwidth{7cm}
\setlength\fheight{4cm}
\begin{tikzpicture}
\begin{axis}[%
name=axis,
width=\fwidth,
height=\fheight,
at={(0, 0)},
xmode=log,
xmin=0.1,
xmax=1000,
xminorticks=true,
xlabel={Frequency [Hz]},
ymode=log,
ymin=0.001,
ymax=10,
yminorticks=true,
ylabel={Magnitude},
axis background/.style={fill=white},
xminorgrids,
yminorgrids
]
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
0.1 4.7609074288834\\
0.457784053837662 4.74112847250108\\
0.781435060784454 4.70208061093208\\
1.0991097009295 4.64559165613624\\
1.42283045721435 4.57144906349989\\
1.75891659032773 4.47927616460061\\
2.09566239948043 4.37423445322045\\
2.45126006203334 4.25274519592358\\
2.8408836901833 4.11095719445138\\
3.26222200971167 3.95170788088451\\
3.71167181947577 3.77948905141281\\
4.18428850790158 3.59988757314696\\
4.71708469091702 3.40317136463527\\
5.31772317785097 3.19223684289429\\
5.99484250318941 2.97087790006113\\
6.82077673286568 2.72585419958062\\
7.76050333513357 2.47949503869403\\
8.9114823228402 2.2201435349723\\
10.3279473191895 1.95491825546796\\
12.0804213467733 1.69160934903556\\
14.3932264471941 1.42447068049222\\
17.3076553419573 1.17667603248786\\
21.1995345753607 0.943491337665097\\
26.2070669648385 0.740920673515988\\
32.6974974451177 0.569453372601831\\
41.1731993116168 0.427919272009563\\
51.8459354389291 0.317863515154134\\
65.8898955079995 0.230558428152838\\
85.2964449974102 0.1611173349527\\
114.566872863487 0.105607825522203\\
228.74908173557 0.0390036255196556\\
272.543253128103 0.0307810979565345\\
315.863540826782 0.025500739341156\\
359.381366380463 0.0218605610825003\\
405.142317111465 0.0191453206052172\\
452.538627817017 0.0171066280251345\\
505.479682119124 0.0154393411147139\\
559.432570616938 0.0141825204910006\\
619.144175597784 0.0131421696026314\\
685.229159528406 0.012282656024432\\
758.367791499719 0.0115737646620205\\
847.08682665574 0.0109423524789141\\
946.1848194722 0.0104322816237634\\
1000 0.0102154679782451\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
20 0.7\\
50 0.7\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
50 0.1\\
500 0.1\\
};
\addplot [color=T, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
500 0.01\\
1000 0.01\\
};
\addplot [color=S, line width=1.5pt, forget plot, upperbound]
table[row sep=crcr]{%
0.02 1e-05\\
2 0.1\\
};
\addplot [color=T, dashed, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.1 4.76100991590828\\
0.479380849508911 4.74142527327249\\
0.818300681586739 4.70271823354146\\
1.15096220088503 4.64622189875955\\
1.47628147190939 4.57452203442608\\
1.80824493487795 4.48620448383121\\
2.15443469003188 4.37981637168679\\
2.49687842888433 4.26245362773302\\
2.86719649749377 4.1246194153153\\
3.23228397818138 3.98033166957675\\
3.61041859717334 3.82486484671119\\
4.03278998219371 3.64713653765075\\
4.4632339267104 3.4647619825248\\
4.93962174387832 3.26480194796314\\
5.46685729972018 3.04925839907739\\
6.05036787939122 2.82113529913371\\
6.69616005485322 2.58433297473304\\
7.41088151564157 2.34341563310535\\
8.2018894992022 2.10327517992625\\
9.07732652521023 1.86874101690569\\
10.1392540755882 1.62441576093477\\
11.4303112911448 1.37851305256105\\
13.0051125217341 1.14008905236091\\
14.9339321612425 0.917854238055838\\
17.4679621512725 0.707763275334409\\
20.8122156998634 0.521723677525708\\
25.7282596744793 0.355127638575637\\
33.3060034362459 0.218852355295698\\
47.7176094893875 0.109683242413354\\
119.971773543588 0.0185302783860461\\
155.307057393346 0.011476348897964\\
190.230118866894 0.00798799480050497\\
226.649807927369 0.00592480300553732\\
265.108360190854 0.00460058967167214\\
304.42722120643 0.00373107031932976\\
346.369417737173 0.00310997571143914\\
390.473523688556 0.00266040632221317\\
436.153778920801 0.0023309089597649\\
482.707096560318 0.00208663214807546\\
534.229329953835 0.00188718187213126\\
591.250841383188 0.00172433492968875\\
654.358601888324 0.00159137569438841\\
724.202233460732 0.00148282003877247\\
801.50069615654 0.00139418971090831\\
887.04968896544 0.0013218279786433\\
990.82280990038 0.00125794881012626\\
1000 0.00125323629492883\\
};
\addplot [color=S, dashed, line width=1.5pt, forget plot]
table[row sep=crcr]{%
0.203380030584698 0.000989777819887578\\
0.449420266211914 0.0047942767347441\\
5.12518692705333 0.622210572704616\\
20.6212180399914 10.0725642635729\\
};
\end{axis}
\begin{customlegend}[legend cell align=left, %<= to align cells
legend entries={ % <= in the following there are the entries
${w_L}^{-1}$,
${w_H}^{-1}$,
},
legend style={at={(axis.north east)}, anchor=north east, outer sep=5pt, font=\footnotesize}]
\addlegendimage{dashed, S}
\addlegendimage{dashed, T}
\end{customlegend}
\end{tikzpicture}

1111
tikz/index.html Normal file

File diff suppressed because it is too large Load Diff

12018
tikz/index.org Normal file

File diff suppressed because it is too large Load Diff