aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-07-24 13:30:11 +0200
committerNao Pross <np@0hm.ch>2021-07-24 13:30:11 +0200
commitfda823e353c833b388cac6f47886f6e5ab67b22f (patch)
tree82d9eaa191befacfa53958d6a40b1943c2e9e346
parentFix some weird font issues (diff)
downloadFuVar-fda823e353c833b388cac6f47886f6e5ab67b22f.tar.gz
FuVar-fda823e353c833b388cac6f47886f6e5ab67b22f.zip
Write on integration
-rw-r--r--FuVar.tex188
-rw-r--r--build/FuVar.pdfbin67594 -> 161858 bytes
-rw-r--r--img/double-integral.pdfbin0 -> 46507 bytes
-rw-r--r--img/double-integral.svg306
-rw-r--r--img/hsrlogo-bw.epsbin413070 -> 0 bytes
-rw-r--r--img/hsrlogo-color.epsbin413438 -> 0 bytes
-rw-r--r--img/lagrange-multipliers.pdfbin0 -> 34818 bytes
-rw-r--r--img/lagrange-multipliers.svg446
8 files changed, 896 insertions, 44 deletions
diff --git a/FuVar.tex b/FuVar.tex
index 13b0d2d..62d71f2 100644
--- a/FuVar.tex
+++ b/FuVar.tex
@@ -30,6 +30,7 @@
%% Layout
\usepackage{enumitem}
+\usepackage{booktabs}
%% Nice drwaings
\usepackage{tikz}
@@ -63,11 +64,11 @@
\theoremstyle{fuvarzf}
\newtheorem{theorem}{Theorem}
-\newtheorem{proposition}{Proposition}
\newtheorem{method}{Method}
+\newtheorem{application}{Application}
\newtheorem{definition}{Definition}
-\newtheorem{lemma}{Lemma}
\newtheorem{remark}{Remark}
+\newtheorem{note}{Note}
\DeclareMathOperator{\tr}{\mathrm{tr}}
@@ -90,7 +91,7 @@ These are just my personal notes of the \themodule{} course, and definitively
not a rigorously constructed mathematical text. The good looking \LaTeX{}
typesetting may trick you into thinking it is rigorous, but really, it is not.
-\section{Derivatives of vector valued scalar functions}
+\section{Derivatives of vector valued functions}
\begin{definition}[Partial derivative]
A vector values function \(f: \mathbb{R}^m\to\mathbb{R}\), with
@@ -103,14 +104,14 @@ typesetting may trick you into thinking it is rigorous, but really, it is not.
\]
\end{definition}
-\begin{proposition}
+\begin{theorem}(Schwarz's theorem, symmetry of partial derivatives)
Under some generally satisfied conditions (continuity of \(n\)-th order
partial derivatives) Schwarz's theorem states that it is possible to swap
the order of differentiation.
\[
\partial_x \partial_y f(x,y) = \partial_y \partial_x f(x,y)
\]
-\end{proposition}
+\end{theorem}
\begin{definition}[Linearization]
A function \(f: \mathbb{R}^m\to\mathbb{R}\) has a linearization \(g\) at
@@ -135,7 +136,10 @@ typesetting may trick you into thinking it is rigorous, but really, it is not.
\begin{definition}[Gradient vector]
The \emph{gradient} of a function \(f(\vec{x}), \vec{x}\in\mathbb{R}^m\) is a
- vector containing the derivatives in each direction.
+ column vector\footnote{In matrix notation it is also often defined as row
+ vector to avoid having to do some transpositions in the Jacobian matrix and
+ dot products in directional derivatives} containing the derivatives in each
+ direction.
\[
\grad f (\vec{x}) = \sum_{i=1}^m \partial_{x_i} f(\vec{x}) \vec{e}_i
= \begin{pmatrix}
@@ -151,7 +155,7 @@ typesetting may trick you into thinking it is rigorous, but really, it is not.
\(\vec{r}\) (with \(|\vec{r}| = 1\)) given by
\[
\frac{\partial f}{\partial\vec{r}}
- = \nabla_\vec{r} f = \vec{r} \dotp \grad f
+ = \nabla\vec{r} f = \vec{r} \dotp \grad f
\]
\end{definition}
@@ -160,6 +164,52 @@ typesetting may trick you into thinking it is rigorous, but really, it is not.
ascent}.
\end{theorem}
+\begin{definition}[Jacobian Matrix]
+ The \emph{Jacobian} \(\mx{J}_f\) (sometimes written as
+ \(\frac{\partial(f_1,\ldots f_m)}{\partial(x_1,\ldots,x_n)}\)) of a function
+ \(\vec{f}: \mathbb{R}^n \to \mathbb{R}^m\) is a matrix
+ \(\in\mathbb{R}^{n\times m}\) whose entry at the \(i\)-th row and \(j\)-th
+ column is given by \((\mx{J}_f)_{i,j} = \partial_{x_j} f_i\), so
+ \[
+ \mx{J}_f = \begin{pmatrix}
+ \partial_{x_1} f_1 & \cdots & \partial_{x_n} f_1 \\
+ \vdots & \ddots & \vdots \\
+ \partial_{x_1} f_m & \cdots & \partial_{x_n} f_m \\
+ \end{pmatrix}
+ = \begin{pmatrix}
+ (\grad f_1)^t \\
+ \vdots \\
+ (\grad f_m)^t \\
+ \end{pmatrix}
+ \]
+\end{definition}
+
+\begin{remark}
+ In the scalar case (\(m = 1\)) the Jacobian matrix is the transpose of the
+ gradient vector.
+\end{remark}
+
+\begin{definition}[Hessian matrix]
+ Given a function \(f: \mathbb{R}^m \to \mathbb{R}\), the square matrix whose
+ entry at the \(i\)-th row and \(j\)-th column is the second derivative of
+ \(f\) first with respect to \(x_j\) and then to \(x_i\) is know as the
+ \emph{Hessian} matrix.
+ \(
+ \left(\mx{H}_f\right)_{i,j} = \partial_{x_i}\partial_{x_j} f
+ \)
+ or
+ \[
+ \mx{H}_f = \begin{pmatrix}
+ \partial_{x_1}\partial_{x_1} f & \cdots & \partial_{x_1}\partial_{x_m} f \\
+ \vdots & \ddots & \vdots \\
+ \partial_{x_m}\partial_{x_1} f & \cdots & \partial_{x_m}\partial_{x_m} f \\
+ \end{pmatrix}
+ \]
+ Because (almost always) the order of differentiation
+ does not matter, it is a symmetric matrix.
+\end{definition}
+
+
\section{Methods for maximization and minimization problems}
\begin{method}[Find stationary points]
@@ -196,30 +246,10 @@ typesetting may trick you into thinking it is rigorous, but really, it is not.
vector \(\vec{r} = \vec{e}_1\cos(\alpha) + \vec{e}_2\sin(\alpha)\)
\end{remark}
-\begin{definition}[Hessian matrix]
- Given a function \(f: \mathbb{R}^m \to \mathbb{R}\), the square matrix whose
- entry at the \(i\)-th row and \(j\)-th column is the second derivative of
- \(f\) first with respect to \(x_j\) and then to \(x_i\) is know as the
- \emph{Hessian} matrix.
- \(
- \left(\mtx{H}_f\right)_{i,j} = \partial_{x_i}\partial_{x_j} f
- \)
- or
- \[
- \mtx{H}_f = \begin{pmatrix}
- \partial_{x_1}\partial_{x_1} f & \cdots & \partial_{x_1}\partial_{x_m} f \\
- \vdots & \ddots & \vdots \\
- \partial_{x_m}\partial_{x_1} f & \cdots & \partial_{x_m}\partial_{x_m} f \\
- \end{pmatrix}
- \]
- Because (almost always) the order of differentiation
- does not matter, it is a symmetric matrix.
-\end{definition}
-
\begin{method}[Determine the type of stationary point in higher dimensions]
Given a scalar function of two variables \(f(x,y)\) and a stationary point
\(\vec{x}_s\) (where \(\grad f(\vec{x}_s) = \vec{0}\)), we compute the
- Hessian matrix \(\mtx{H}_f(\vec{x}_s)\). Then we compute its eigenvalues
+ Hessian matrix \(\mx{H}_f(\vec{x}_s)\). Then we compute its eigenvalues
\(\lambda_1, \ldots, \lambda_m\) and
\begin{itemize}
\item if all \(\lambda_i > 0\), the point is a minimum;
@@ -233,23 +263,20 @@ typesetting may trick you into thinking it is rigorous, but really, it is not.
\begin{remark}
Recall that to compute the eigenvalues of a matrix, one must solve the
- equation \((\mtx{H} - \lambda\mtx{I})\vec{x} = \vec{0}\). Which can be done
- by solving the characteristic polynomial \(\det\left(\mtx{H} -
- \lambda\mtx{I}\right) = 0\) to obtain \(\dim(\mtx{H})\) \(\lambda_i\), which
+ equation \((\mx{H} - \lambda\mx{I})\vec{x} = \vec{0}\). Which can be done
+ by solving the characteristic polynomial \(\det\left(\mx{H} -
+ \lambda\mx{I}\right) = 0\) to obtain \(\dim(\mx{H})\) \(\lambda_i\), which
when plugged back in result in a overdetermined system of equations.
\end{remark}
\begin{method}[Quickly find the eigenvalues of a \(2\times 2\) matrix]
Let
\[
- m = \frac{1}{2}\tr \mtx{H} = \frac{a + d}{2}
- \text{ and }
- p = \det\mtx{H} = ad - bc ,
- \]
- then
- \[
- \lambda = m \pm \sqrt{m^2 - p} .
+ m = \frac{1}{2}\tr \mx{H} = \frac{a + d}{2} ,
+ \qquad
+ p = \det\mx{H} = ad - bc ,
\]
+ then \(\lambda = m \pm \sqrt{m^2 - p}\).
\end{method}
\begin{method}[Search for a constrained extremum in 2 dimensions]
@@ -273,6 +300,15 @@ typesetting may trick you into thinking it is rigorous, but really, it is not.
\end{itemize}
\end{method}
+\begin{figure}
+ \centering
+ \includegraphics{img/lagrange-multipliers}
+ \caption{
+ Intuition for the method of Lagrange multipliers. Extrema of a constrained
+ function are where \(\grad f\) is proportional to \(\grad n\).
+ }
+\end{figure}
+
\begin{method}[%
Search for a constrained extremum in higher dimensions,
method of Lagrange multipliers]
@@ -305,16 +341,80 @@ typesetting may trick you into thinking it is rigorous, but really, it is not.
\mathcal{L}(\vec{u}, \vec{\lambda})
= f(\vec{u}) - \sum_{i = 0}^k \lambda_i n_i(\vec{u})
\]
- where \(\vec{\lambda} = \lambda_1, \ldots, \lambda_k\) and then
- evaluating \(\grad \mathcal{L}(\vec{u}, \vec{\lambda}) = \vec{0}\).
+ where \(\vec{\lambda} = \lambda_1, \ldots, \lambda_k\) and then solving
+ \(\grad \mathcal{L}(\vec{u}, \vec{\lambda}) = \vec{0}\). This is
+ generally used in numerical computations and not very useful by hand.
\end{itemize}
\end{method}
-\section{Integration}
-\begin{remark}
-
-\end{remark}
+\section{Integration of vector values scalar functions}
+
+\begin{figure}
+ \centering
+ \includegraphics{img/double-integral}
+ \caption{
+ Double integral.
+ \label{fig:double-integral}
+ }
+\end{figure}
+
+\begin{theorem}[Change the order of integration for double integrals] For a
+ double integral over a region \(S\) (see Fig. \ref{fig:double-integral}) we
+ need to compute
+ \[
+ \iint_S f(x,y) \,ds =
+ \int\limits_{x_1}^{x_2} \int\limits_{y_1(x)}^{y_2(x)} f(x,y) \,dydx .
+ \]
+ If \(y_1(x)\) and \(y_2(x)\) are bijective we can swap the order of
+ integration by finding the inverse functions \(x_1(y)\) and \(x_2(y)\). If
+ they are not bijective (like in Fig. \ref{fig:double-integral}), the region
+ must be split into smaller parts. If the region is a rectangle it is always
+ possible to change the order of integration.
+\end{theorem}
+
+\begin{theorem}[Transformation of coordinates in 2 dimensions]
+ \label{thm:transform-coords}
+ Given two ``nice'' functions \(x(u,v)\) and \(y(u,v)\), that means are a
+ bijection from \(S\) to \(S'\) with continuous partial derivatives and
+ nonzero Jacobian determinant \(|\mx{J}_f| = \partial_u x \partial_v y -
+ \partial_v x \partial_u y\), which transform the coordinate system. Then
+ \[
+ \iint_S f(x,y) \,ds = \iint_{S'} f(x(u,v), y(u,v)) |\mx{J}_f| \,ds
+ \]
+\end{theorem}
+
+\begin{theorem}[Transformation of coordinates]
+ The generalization of theorem \ref{thm:transform-coords} is quite simple.
+ For an \(n\)-integral of a function \(f:\mathbb{R}^m\to\mathbb{R}\) over a
+ region \(B\), we let \(\vec{x}(\vec{u})\) be ``nice'' functions that
+ transform the coordinate system. Then as before
+ \[
+ \int_B f(\vec{x}) \,ds = \int_{B'} f(\vec{x}(\vec{u})) |\mx{J}_f| \,ds
+ \]
+\end{theorem}
+\begin{table}
+ \centering
+ \begin{tabular}{l >{\(}l<{\)} >{\(}l<{\)}}
+ \toprule
+ & \text{Volume } dv & \text{Surface } d\vec{s}\\
+ \midrule
+ Cartesian & - & dx\,dy \\
+ Polar & - & rd\,rd\phi \\
+ Curvilinear & - & |\mx{J}_f|\,du\,dv \\
+ \midrule
+ Cartesian & dx\,dy\,dz & \uvec{z}\,dx\,dy \\
+ Cylindrical & r\,dr\,d\phi\,dz & \uvec{z}r\,dr\,d\phi \\
+ & & \uvec{\phi}\,dr\,dz \\
+ & & \uvec{r}r\,d\phi\,dz \\
+ Spherical & r^2\sin\theta\, dr\,d\theta\,d\phi & \uvec{r}r^2\sin\theta\,d\theta\,d\phi \\
+ Curvilinear & |\mx{J}_f|\,du\,dv\,dw & - \\
+ \bottomrule
+ \end{tabular}
+ \caption{Differential elements for integration.}
+\end{table}
+
+\section{Derivatives of curves}
\section*{License}
\doclicenseText
diff --git a/build/FuVar.pdf b/build/FuVar.pdf
index 6271ac5..000648d 100644
--- a/build/FuVar.pdf
+++ b/build/FuVar.pdf
Binary files differ
diff --git a/img/double-integral.pdf b/img/double-integral.pdf
new file mode 100644
index 0000000..ba8b808
--- /dev/null
+++ b/img/double-integral.pdf
Binary files differ
diff --git a/img/double-integral.svg b/img/double-integral.svg
new file mode 100644
index 0000000..61dbcc3
--- /dev/null
+++ b/img/double-integral.svg
@@ -0,0 +1,306 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="57.306797mm"
+ height="45.126724mm"
+ viewBox="0 0 57.306797 45.126724"
+ version="1.1"
+ id="svg5271"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="double-integral.svg">
+ <defs
+ id="defs5265" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.959798"
+ inkscape:cx="142.19372"
+ inkscape:cy="76.475149"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1920"
+ inkscape:window-height="1017"
+ inkscape:window-x="0"
+ inkscape:window-y="30"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata5268">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-57.525155,-60.501165)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path158"
+ d="m 59.343483,65.793466 -0.01929,-0.01101 -0.03721,-0.0083 -0.01791,0.03443 -0.0248,0.03306 -0.01791,0.03721 -0.02618,0.03583 -0.0248,0.04548 -0.0083,0.06201 0.0083,0.06477 0.0083,0.07441 0.0069,0.08131 0.0124,0.08819 0.0027,0.09371 0.0069,0.09095 0.01378,0.121267 -0.0014,0.137802 -0.01791,0.143316 -0.0055,0.151585 -0.0027,0.158475 v 0.496094 l -0.0055,0.155716 v 0.168123 l -0.01378,0.17501 -0.01654,0.188792 -0.0083,0.197058 -0.01378,0.197058 -0.01378,0.190172 -0.0055,0.190169 -0.01929,0.190168 -0.0124,0.216352 -0.01378,0.226 -0.01929,0.210837 -0.0124,0.202572 -0.0027,0.186038 0.0055,0.163985 0.0055,0.155719 0.01102,0.146071 0.01929,0.133671 0.02343,0.133668 0.0248,0.132292 0.02756,0.143316 0.01378,0.141936 0.01653,0.150209 0.0014,0.165365 -0.0083,0.183279 -0.0441,0.38585 -0.02756,0.206703 -0.03307,0.195683 -0.02894,0.173633 -0.01929,0.177765 -0.01654,0.180524 -0.01516,0.188792 -0.0083,0.172254 -0.01378,0.137806 -0.0014,0.129533 0.0069,0.126781 0.0055,0.137802 -0.0027,0.151585 v 0.325219 l -0.0083,0.170875 -0.0083,0.181903 -0.0027,0.202568 v 0.217731 l 0.0014,0.227376 -0.01516,0.214976 -0.01516,0.206703 -0.02205,0.195682 -0.01516,0.184658 -0.01378,0.17501 -0.01929,0.15434 -0.0124,0.15572 0.0041,0.16123 -0.0027,0.168119 -0.0027,0.184658 0.0027,0.177769 0.0027,0.155716 -0.0041,0.140561 -0.0069,0.132291 -0.0014,0.119888 v 0.111623 l 0.0083,0.125402 0.0083,0.133667 0.0083,0.146075 0.01378,0.14745 0.02343,0.159851 0.01516,0.165364 0.02067,0.16812 0.02067,0.166744 0.0041,0.172255 0.0027,0.163985 0.0096,0.158475 -0.0041,0.157099 -0.01102,0.157095 -0.0055,0.157096 -0.0096,0.144695 -0.0083,0.140557 -0.01516,0.135051 -0.02205,0.129532 -0.01516,0.122647 -0.0041,0.121268 -0.01102,0.112998 0.0041,0.09646 -0.0096,0.101974 0.0096,0.100598 0.01929,0.114378 0.0124,0.121267 0.01653,0.122643 0.03032,0.128158 0.03032,0.122646 0.02067,0.119888 0.01929,0.104733 0.01654,0.09784 0.01653,0.104733 0.0069,0.129533 -0.02067,0.150209 -0.01654,0.147447 -0.0069,0.122647 0.0055,0.08544 0.0096,0.0689 -0.0124,0.08819 -0.02343,0.119888 -0.03169,0.139181 -0.02343,0.133671 0.0096,0.09784 0.0069,0.06339 0.01378,0.06201 0.01378,0.08131 0.0027,0.104733 -0.02205,0.111619 0.0055,0.100598 0.03032,0.07855 0.0248,0.06752 0.03721,0.07855 0.03032,0.09922 0.0124,0.125402 -0.01378,0.170875 -0.01653,0.187413 -0.0083,0.159854 -0.01378,0.125402 -0.03169,0.128157 -0.0248,0.143316 -0.02343,0.148827 -0.02067,0.128157 -0.0096,0.126781 -0.0083,0.128157 -0.0083,0.133671 -0.0014,0.114374 0.0069,0.100599 0.0055,0.107487 0.0027,0.121269 0.01791,0.132291 0.03169,0.128157 0.03307,0.126777 0.02067,0.144696 0.01102,0.170876 0.01791,0.169497 0.0014,0.157096 -0.0069,0.161235 -0.0083,0.158469 -0.0124,0.146077 -0.01929,0.148825 -0.01791,0.150207 -0.01653,0.144695 -0.02067,0.150204 -0.01378,0.159856 -0.0096,0.169495 -0.02618,0.172257 -0.01102,0.177765 -0.0027,0.18328 -0.0014,0.192926 -0.0096,0.198438 -0.0041,0.210838 0.01929,0.217731 0.01929,0.219109 0.01102,0.220486 0.0083,0.219106 -0.0014,0.203949 0.0124,0.184658 0.01378,0.151585 0.0055,0.139182 0.01102,0.132291 0.0041,0.126778 0.0041,0.114377 -0.0027,0.115758 -0.01102,0.115752 -0.0041,0.119894 -0.0014,0.122642 0.0069,0.132291 0.0014,0.136428 -0.0069,0.115755 -0.0069,0.09509 -0.0069,0.07579 -0.02205,0.07166 -0.01516,0.05099 -0.0083,0.01241 -0.0027,-0.02893 -0.0014,-0.03721 -0.01516,-0.04272 -0.08819,-0.02342"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path160"
+ d="m 58.41882,66.125574 -0.01791,0.100598 -0.08406,0.130913 -0.07441,-0.0083 -0.01791,-0.03306 0.0055,-0.03721 0.0083,-0.0441 0.0124,-0.04961 0.0248,-0.06477 0.03858,-0.09922 0.06615,-0.14883 0.103352,-0.175005 0.118512,-0.187413 0.125401,-0.202572 0.128158,-0.199817 0.129535,-0.175009 0.121268,-0.14883 0.09371,-0.132292 0.0813,-0.0937 0.05512,-0.0689 0.03996,-0.05375 0.02756,-0.03306 0.0096,-0.02205 0.01929,-0.0069 0.0014,0.0041 -0.01378,0.02067 -0.0055,0.01654 -0.0041,0.0069 0.0069,0.01517 0.0041,0.03721 0.0124,0.0565 0.01102,0.09646 0.01791,0.124023 0.02618,0.143316 0.01654,0.152964 0.0083,0.148827 0.02756,0.137805 0.04272,0.137802 0.03032,0.128157 0.04134,0.136427 0.04134,0.125402 0.03996,0.103353 0.02205,0.09508 0.03445,0.09095 0.05237,0.06753 0.03169,0.05099 0.02618,0.03859 0.04272,0.01792"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path162"
+ d="m 59.094058,93.997769 0.03445,0.03583 0.0027,0.0813 -0.01102,0.09508 -0.02894,0.0882 -0.01929,0.09233 -0.0083,0.07304 -0.0069,0.06476 0.0041,0.08682 0.0041,0.103351 0.01102,0.11162 0.0124,0.122648 0.01654,0.157093 0.01653,0.180526 0.0083,0.194302 0.0055,0.197059 0.01929,0.197061 -0.0014,0.194302 -0.02618,0.187413 -0.01378,0.176389 -0.0041,0.151586 -0.0083,0.150206 -0.0069,0.14745 -0.0069,0.144693 -0.0055,0.144695 -0.0124,0.154339 0.0014,0.155715 0.0027,0.147453 0.0027,0.146074 0.01791,0.140557 0.02618,0.152963 0.01791,0.150207 0.03032,0.150207 0.02205,0.128156 0.01929,0.108863 0.0027,0.104732 v 0.10749 l 0.0083,0.104727 0.0014,0.09922 0.0027,0.08544 -0.0027,0.07855 -0.0027,0.07717 -0.03307,0.0689 -0.01102,0.06201 0.01654,0.04685 0.0041,0.04685 0.0027,0.03721 0.01102,0.02204 0.0028,0.0069 v 0.0083 l -0.0014,0.0041 h -0.0069 l 0.0069,-0.0055 0.0041,0.0097 v 0.05237 l -0.0083,0.03443 -0.0083,0.04134 -0.0014,0.04685 -0.0069,0.04409 v 0.03583 l -0.0055,0.02204 -0.0069,0.0055"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path164"
+ d="m 59.041693,99.027609 0.01516,-0.02204 0.01929,-0.02893 0.01516,0.01929 0.0083,0.01654 0.01653,0.0083 0.03445,0.01654 0.05374,0.02342 0.0689,0.03031 0.08268,0.02341 0.108865,0.0028 0.124023,0.0013 0.124024,-0.0055 0.135047,-0.01378 0.14745,-0.02066 0.146072,-0.01101 0.14745,-0.0097 0.169499,0.0013 0.162609,-0.0041 0.136426,0.0041 0.124023,0.0041 0.136428,-0.0041 0.139181,-0.0069 0.132292,0.0083 0.135047,0.0013 0.147451,0.0069 0.144691,0.0083 h 0.15021 l 0.150205,-0.0013 0.170875,-0.0013 0.202572,-0.0028 h 0.332109 l 0.165364,0.0069 0.180524,-0.0069 0.190168,-0.01516 0.183279,-0.0097 0.172254,-0.01516 0.180524,-0.01516 0.173633,-0.01379 0.17501,-0.0055 0.190168,0.0028 0.208086,0.0041 0.187413,0.0041 0.157096,0.0041 0.158475,0.0013 0.15985,0.0013 0.175013,-0.0083 0.166741,0.0055 0.158475,0.0083 0.173633,-0.0013 0.183279,0.0069 h 0.179144 l 0.16123,-0.0083 0.16123,-0.0013 0.169499,0.0055 0.154341,0.01654 0.14883,0.0013 0.146071,0.0069 0.157095,0.0069 0.16812,0.0069 0.15021,0.0069 0.144692,0.0055 0.143316,-0.0013 0.151585,0.01238 0.16812,0.0055 0.180523,-0.01516 0.176389,-0.01929 0.169499,-0.0028 0.15434,-0.01516 0.15572,-0.01516 0.124022,-0.0055 0.152961,-0.01241 0.198438,-0.0055 0.172254,0.01791 0.158475,0.02066 0.16123,0.01241 0.15572,0.02479 0.136426,0.02479 0.137802,0.02066 0.15572,0.03443 0.143316,0.03583 0.139181,0.02617 0.143316,0.01516 0.141937,0.01378 0.15434,0.0069 0.146071,-0.0083 0.108867,-0.0069 0.126778,-0.01378 0.14745,-0.02066 0.175014,-0.02617 0.15985,-0.01654 0.139182,-0.0055 0.135046,-0.0013 0.130916,-0.0013 0.130913,0.0055 0.125402,0.01929 0.117132,0.01378 0.117133,0.0097 0.130916,0.0083 0.132292,0.02066 0.132291,0.02893 0.143315,0.01379 0.148827,0.01101 0.135046,0.0097 0.147451,0.0028 0.165366,-0.0055 0.157095,-0.0055 0.162609,-0.01241 0.163986,-0.01791 0.157099,-0.02479 0.158475,-0.01516 0.15847,-0.02204 0.152965,-0.02755 0.125402,-0.01101 0.126778,-0.0097 0.15434,-0.01516 0.133671,0.0041 0.128157,0.0069 0.143316,0.0055 0.152961,0.01101 0.132292,0.02617 0.125402,0.02479 0.130912,0.01516 0.136426,0.01378 0.129537,0.01791 0.121267,0.01791 0.130912,0.01791 0.144696,0.0028 h 0.141936 l 0.136427,0.0013 0.136426,-0.0041 0.135047,-0.0028 0.12816,-0.0096 0.126778,-0.0097 0.151585,-0.0083 h 0.136426 l 0.114378,0.0028 0.130912,0.0096 0.139182,0.01791 0.137802,0.01101 0.311439,0.04686 0.14745,0.03858 0.140558,0.02893 0.15434,0.01929 0.157099,0.02342 0.151581,0.0096 0.165365,0.0055 0.165365,-0.0069 0.151585,-0.0083 0.15434,-0.02066 0.166744,-0.02755 0.157096,-0.02617 0.151585,-0.03859 0.175009,-0.03583 0.180523,-0.02755 0.177765,-0.03172 0.187413,-0.01516 0.172258,-0.01238 0.162606,0.0028 0.173634,0.0028 0.180523,0.0083 0.166744,0.01378 0.143316,0.01929 0.140557,0.02479 0.172255,0.02341 0.15434,0.02204 0.129536,0.01929 0.143316,0.0083 0.154341,0.0013 0.170878,0.0055 0.173631,-0.0055 0.173633,-0.01241 0.158474,-0.0055 0.163987,-0.0096 0.166743,-0.0303 0.16261,-0.02479 0.170876,-0.02204 0.166743,-0.02755 0.147449,-0.01929 0.157097,-0.0083 0.165364,-0.0083 h 0.1695 l 0.173631,-0.0013 0.163988,-0.0013 0.163984,0.0041 0.172254,0.0097 0.17639,0.01791 0.175014,0.01654 0.161229,0.0083 0.173633,0.01241 0.19568,-0.0028 0.187413,-0.0041 0.180522,-0.0041 0.197059,-0.01241 0.197062,-0.0096 0.175009,-0.0097 0.163988,-0.02204 0.170876,-0.03031 0.16261,-0.01516 0.166741,-0.01241 0.194305,-0.01791 0.201194,-0.01101 0.192924,-0.0096 0.210841,-0.01791 0.214971,-0.01101 0.223245,-0.0028 0.210838,-0.0028 0.197062,-0.0028 0.190167,0.0096 0.197059,0.0041 0.201192,0.0013 0.183282,0.0013 0.18879,0.0069 0.199816,-0.0013 0.208082,-0.0013 0.206708,-0.0096 0.198438,-0.0097 0.203946,-0.01654 0.197062,-0.01654 0.19568,-0.01516 0.220485,-0.0069 0.238403,-0.01238 0.232887,-0.0041 0.219112,0.01929 0.227375,0.0055 0.217728,0.01929 0.192926,0.01929 0.210836,0.0083 0.220488,0.0055 0.219109,0.01241 0.213596,0.01929 0.201194,0.02066 0.237019,0.01101 0.264584,0.0028 0.243914,-0.0041 0.223242,-0.0055 0.195683,-0.0028 0.21635,-0.0028 0.257693,-0.0096 0.25494,-0.0097 0.232886,-0.0069 0.235646,-0.01379 0.227375,0.0013 0.212217,0.0028 0.223245,0.01101 0.253558,0.0028 0.243911,0.0028 h 0.498848 l 0.270093,-0.0013 0.26872,-0.0013 h 0.2384 l 0.23013,-0.0069 0.21911,-0.01654"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path166"
+ d="m 62.190508,60.935885 -0.04961,-0.09371 -0.07579,-0.117133 -0.03859,0.0041 0.0083,0.0248 0.01517,0.02343 0.0069,0.04685 -0.0028,0.08819 -0.01654,0.146072 -0.02205,0.205327 -0.03306,0.241159 -0.02342,0.261824 0.0014,0.259073 0.0055,0.228756 -0.0083,0.202568 0.0193,0.176389 0.0372,0.15434 0.02067,0.139182 0.01654,0.107488 0.0441,0.05512 0.02893,0.0248 0.01654,0.0041 0.03721,-0.03443 0.04272,-0.03721 0.05375,-0.05099 0.06201,-0.07028 0.08268,-0.09784 0.09784,-0.159855 0.114374,-0.214972 0.129536,-0.230134 0.132292,-0.228752 0.09784,-0.214976 0.08682,-0.186034 0.09784,-0.159854 0.07855,-0.135047 0.04685,-0.08819 0.02755,-0.05099 0.02342,-0.0248 0.01379,0.0028 -0.0041,0.01792 -0.01101,0.0303 -0.0041,0.02343 -0.0028,0.01242 -0.0055,0.0193 -0.0069,0.05099 -0.0055,0.106109 -0.01242,0.172254 -0.0193,0.242535 -0.01379,0.270097 -0.01242,0.267338 0.02067,0.261825 0.02342,0.268718 0.02205,0.290766 0.03447,0.301791 0.04685,0.303167 0.03996,0.299035 0.0193,0.281122 0.0083,0.253559 -0.01101,0.2384 -0.0193,0.213596 -0.04134,0.190169 -0.04685,0.162609 -0.06063,0.117133 -0.0689,0.08406 -0.08819,0.06063 -0.07304,0.04272 -0.07304,0.0055 -0.07304,-0.01929 -0.08544,-0.03443 -0.135046,-0.05375 -0.128157,-0.08819 -0.111623,-0.122643 -0.118512,-0.147451 -0.100595,-0.15434 -0.08131,-0.151585 -0.06201,-0.128157 -0.04686,-0.09784 -0.0014,-0.07442 0.01517,-0.04823 0.02618,-0.03168 0.04823,-0.03305 0.05237,-0.0441 0.08131,-0.05099 0.09371,-0.06753 0.124023,-0.06615 0.170875,-0.06615 0.183279,-0.06339 0.197061,-0.05099 0.208083,-0.03447 0.201192,-0.0248 0.143316,0.01379"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path168"
+ d="m 68.74997,88.639956 -0.0083,-0.03305 -0.0014,-0.02617 -0.01379,0.0083 -0.0069,0.01929 0.0096,0.0028 -0.02205,-0.0083 0.0096,0.0013 0.01242,-0.01241 0.0041,0.0083 -0.0014,0.0028 0.0014,-0.0041 0.0055,-0.0069 0.01655,-0.01929 0.0083,-0.02479 -0.0096,-0.01654 0.0041,-0.02066 0.01517,-0.01378 -0.0014,-0.01791 0.0041,-0.01654 0.0069,-0.01241 0.0069,-0.01791 0.0055,-0.01101 v -0.01101 l -0.0028,-0.0097 -0.0014,-0.01101 0.0055,-0.02479 0.0303,-0.01378 0.01101,-0.02893 -0.01379,-0.03997 0.01101,-0.03859 0.0055,-0.03859 0.01242,-0.0372 0.0069,-0.03306 0.01242,-0.03583 0.02205,-0.03721 0.02205,-0.05099 0.02205,-0.04685 0.02067,-0.04548 0.01101,-0.04272 0.0248,-0.03447 0.02618,-0.04134 0.01242,-0.0303 0.0096,-0.01791 -0.0069,-0.01791 0.0014,-0.0055 -0.0055,0.0013 0.0014,0.0041 0.01242,-0.0013 0.0028,-0.01101 0.0069,-0.01516 0.0096,-0.02479 0.0083,-0.02479 0.0069,-0.02341 0.01379,-0.02893 0.02205,-0.03447 0.0303,-0.04272 0.02205,-0.05788 0.02893,-0.05099 0.03305,-0.05237 0.03306,-0.06615 0.02067,-0.04823 0.0069,-0.03996 0.01242,-0.02893 0.02205,-0.02893 0.0096,-0.03171 0.0014,-0.02617 0.0096,-0.03306 0.01101,-0.0303 0.0055,-0.02342 0.01792,-0.02066 0.03583,-0.03447 0.02618,-0.03721 0.02893,-0.0248 0.03447,-0.03721 0.04134,-0.04685 0.02893,-0.0441 0.03721,-0.05237 0.03858,-0.05374 0.03168,-0.05512 0.03583,-0.04961 0.03583,-0.0565 0.03721,-0.05788 0.05099,-0.0565 0.01792,-0.0441 -0.02618,-0.03721 v -0.02893 l 0.0041,-0.03859 0.02342,-0.03858 0.02205,-0.04961 0.02205,-0.05374 0.0441,-0.05788 0.03996,-0.07717 0.02205,-0.07717 0.03305,-0.06752 0.03996,-0.06339 0.03859,-0.07304 0.04685,-0.07028 0.03859,-0.07579 0.03583,-0.07441 0.02893,-0.06752 0.0193,-0.07166 0.02617,-0.06615 0.02205,-0.05926 0.02755,-0.0565 0.02342,-0.06477 0.03306,-0.137802 0.01654,-0.05512 0.03168,-0.05099 0.02755,-0.05237 0.02618,-0.05926 0.02618,-0.0565 0.04134,-0.05374 0.04823,-0.0689 0.04961,-0.06615 0.04134,-0.06477 0.03721,-0.06201 0.03447,-0.06063 0.02893,-0.0565 0.01792,-0.05788 0.03996,-0.05374 0.02342,-0.05512 0.02205,-0.05236 0.01379,-0.05375 0.01517,-0.04272 0.0069,-0.0441 0.02342,-0.05237 0.02755,-0.05926 0.01242,-0.05236 0.01792,-0.05512 0.02618,-0.06339 0.03583,-0.07992 0.08682,-0.08544 0.05788,-0.09371 0.0193,-0.0813 0.03996,-0.07028 0.04134,-0.07993 0.04961,-0.07304 0.0441,-0.06339 0.02618,-0.06339 0.03996,-0.06064 0.03583,-0.05925 0.03447,-0.05099 0.02755,-0.04961 0.0069,-0.05237 0.01792,-0.05374 0.05099,-0.06752 0.02893,-0.07028 0.01792,-0.06477 0.02893,-0.06064 0.03306,-0.06339 0.03996,-0.06201 0.03306,-0.06202 0.03859,-0.07441 0.03858,-0.07855 0.03305,-0.06477 0.04272,-0.05788 0.05236,-0.05788 0.05375,-0.06615 0.05374,-0.05374 0.0441,-0.05926 0.04823,-0.06615 0.04272,-0.06477 0.0193,-0.0565 0.02893,-0.06339 0.04823,-0.07028 0.04548,-0.07855 0.05099,-0.08544 0.07442,-0.09922 0.06477,-0.09646 0.05374,-0.07855 0.06064,-0.07441 0.06339,-0.07717 0.07028,-0.09233 0.07855,-0.08681 0.07166,-0.08819 0.06752,-0.09233 0.07442,-0.08682 0.07579,-0.07855 0.06615,-0.07717 0.05099,-0.07717 0.04961,-0.06339 0.05512,-0.06752 0.04548,-0.05788 0.02205,-0.05788 0.03583,-0.04823 0.04547,-0.04961 0.07993,-0.05237 0.07304,-0.06339 0.06201,-0.06615 0.07855,-0.06339 0.08957,-0.06477 0.09371,-0.07717 0.09508,-0.08131 0.08406,-0.07855 0.09922,-0.07579 0.108864,-0.07442 0.104733,-0.07441 0.09233,-0.06615 0.0813,-0.0565 0.07304,-0.05512 0.06477,-0.0565 0.05788,-0.05926 0.05926,-0.04547 0.06201,-0.0441 0.07166,-0.04548 0.0689,-0.04823 0.07028,-0.04961 0.07579,-0.04823 0.07855,-0.0441 0.08406,-0.04823 0.08406,-0.05926 0.09784,-0.05099 0.07855,-0.05926 0.07855,-0.04961 0.104729,-0.05375 0.09371,-0.05099 0.09233,-0.04823 0.08544,-0.05374 0.06477,-0.0441 0.03583,-0.03168 0.03858,-0.02893 0.03859,-0.0248 0.04823,-0.02618 0.05926,-0.03443 0.05926,-0.03306 0.07855,-0.02893 0.09095,-0.03171 0.173634,-0.07993 0.08544,-0.03858 0.08957,-0.03859 0.114378,-0.0441 0.129536,-0.04685 0.115757,-0.04685 0.106109,-0.05788 0.115753,-0.05099 0.146071,-0.04272 0.121268,-0.03583 0.07993,-0.02617 0.07992,-0.01379 0.08131,-0.01655 0.07855,-0.01242 0.08406,-0.0055 h 0.09095 l 0.09922,-0.0014 0.117133,-0.0041 0.115754,-0.0069 0.104732,-0.01379 0.111619,-0.01654 0.103353,-0.0083 0.08406,0.0014 0.0882,-0.01238 0.08957,-0.01517 0.179144,-0.02755 0.103353,-0.01379 0.103353,-0.0055 0.08131,-0.0041 0.08544,-0.0041 0.07855,0.0041 0.07028,0.0028 0.08544,0.0096 0.0689,0.01101 0.0689,0.0083 0.08268,0.01379 0.07166,0.01517 0.06615,0.01379 0.06891,0.0193 0.07579,0.01379 0.07579,0.0041 0.06891,0.0028 0.07303,0.0096 0.06752,0.01242 0.06615,0.0055 0.06615,0.01101 0.06064,0.0069 0.05237,-0.0028 0.04272,-0.0028 0.04272,0.0055 0.05099,0.0055 0.04823,0.0069 0.03583,0.0083 0.04961,0.02067 0.06615,0.02342 0.0689,0.0303 0.08131,0.0303 0.124022,0.02617 0.100598,0.03721 0.05374,0.0303 0.05926,0.03306 0.0565,0.03305 0.04823,0.0248 0.0441,0.02755 0.03583,0.01517 0.04134,0.02067 0.0565,0.02755 0.05512,0.01792 0.04961,0.03168 0.02893,0.03306 0.05788,0.03858 0.09508,0.04685 0.07855,0.05375 0.08131,0.04685 0.08406,0.05237 0.09371,0.04547 0.107484,0.03447 0.106109,0.03306 0.09784,0.02617 0.103353,0.01792 0.112998,0.01792 0.101974,0.02067 0.101974,0.02205 0.08957,0.01655 0.08544,0.01654 0.09922,0.0097 0.09922,0.0028 0.11162,0.0096 0.115758,0.01101 0.09646,0.02205 0.0882,0.01379 0.09922,0.01379 0.106109,0.0055 0.101973,0.01101 0.103354,0.0055 0.09922,0.0041 0.104727,0.0055 0.118512,0.01101 0.129538,0.0069 0.125402,0.0055 0.139181,0.0055 h 0.118512 l 0.09508,-0.0028 0.111619,-0.0014 0.117134,-0.0014 0.117131,-0.0083 0.115758,-0.0083 0.143317,-0.01654 0.119888,-0.02342 0.0689,-0.02342 0.08268,-0.01242 0.09922,-0.0193 0.106108,-0.02618 0.104733,-0.02755 0.100594,-0.0193 0.110242,-0.01654 0.129537,-0.01654 0.107487,-0.01792 0.101976,-0.01654 0.07579,-0.01654 0.07579,-0.0248 0.08957,-0.01792 0.08682,-0.01242 0.08957,-0.01792 0.09784,-0.01792 0.09095,-0.02755 0.06615,-0.01238 0.06477,-0.01654 0.06752,-0.02617 0.05788,-0.02755 0.0689,-0.02618 0.09371,-0.02618 0.08957,-0.03447 0.10473,-0.03168 0.09508,-0.03447 0.0565,-0.04134 0.07579,-0.04134 0.08682,-0.04685 0.108862,-0.04686 0.0937,-0.04547 0.07304,-0.04548 0.07304,-0.04685 0.07579,-0.0441 0.07855,-0.03447 0.07165,-0.02618 0.06339,-0.0248 0.04823,-0.0193 0.04686,-0.0193 0.0565,-0.01242 0.04685,-0.02342 0.05926,-0.01654 0.05788,-0.02618 0.06339,-0.03447 0.09233,-0.04134 0.107484,-0.05237 0.11438,-0.0441 0.122645,-0.05374 0.124023,-0.06201 0.125402,-0.06752 0.122648,-0.06753 0.118507,-0.05788 0.107489,-0.04548 0.09095,-0.04547 0.08131,-0.04272 0.05926,-0.04547 0.07166,-0.03859 0.08543,-0.03858 0.07442,-0.03583 0.0689,-0.02618 0.07717,-0.01792 0.101976,-0.0193 0.135049,-0.03583 0.146071,-0.04134 0.14056,-0.03447 0.139181,-0.03996 0.150207,-0.03858 0.143314,-0.03997 0.130913,-0.03858 0.117134,-0.02893 0.132291,-0.03447 0.15434,-0.03721 0.161234,-0.03721 0.140558,-0.03858 0.136424,-0.02205 0.125402,-0.01242 0.09646,-0.01242 0.0937,-0.0055 0.100597,-0.0069 0.130914,-0.0083 0.150206,-0.0041 0.143314,-0.0055 0.133671,-0.0055 0.137805,-0.0055 h 0.146071 l 0.140558,0.0014 0.117136,0.0083 0.132292,0.0096 0.168121,0.0069 0.162608,0.0083 0.158472,0.0069 0.16261,-0.0014 0.144696,0.01242 0.110241,0.02205 0.10473,0.02893 0.129537,0.02893 0.129535,0.04548 0.121269,0.03721 0.112996,0.03997 0.106108,0.0248 0.111623,0.02893 0.110241,0.02893 0.103354,0.03583 0.100595,0.03721 0.115757,0.05099 0.121267,0.04823 0.135046,0.05237 0.144695,0.05237 0.140557,0.04547 0.133673,0.03447 0.122645,0.04823 0.132292,0.0565 0.137803,0.05099 0.115758,0.05099 0.217725,0.112998 0.111623,0.06477 0.08681,0.06615 0.07579,0.06339 0.08682,0.06063 0.09508,0.07579 0.09509,0.07166 0.09233,0.07579 0.09922,0.08268 0.122645,0.08957 0.122645,0.0937 0.09784,0.09233 0.10197,0.09233 0.0909,0.08819 0.0896,0.07166 0.0854,0.07304 0.0951,0.0689 0.0841,0.07717 0.0675,0.08682 0.0675,0.07304 0.0675,0.06477 0.04,0.08544 0.0744,0.08682 0.10473,0.08957 0.0841,0.09371 0.0703,0.09646 0.0648,0.101974 0.0662,0.103353 0.0648,0.108864 0.073,0.114377 0.0896,0.122647 0.0785,0.124023 0.0896,0.112998 0.0909,0.108867 0.0813,0.115754 0.0717,0.130912 0.0717,0.133671 0.0689,0.146071 0.0648,0.143316 0.0703,0.144695 0.0799,0.143316 0.0689,0.139182 0.0662,0.125402 0.0648,0.136426 0.0593,0.148826 0.0744,0.143316 0.0744,0.16812 0.0551,0.177768 0.0524,0.169499 0.0661,0.161231 0.0524,0.168119 0.04,0.15572 0.0372,0.148826 0.0289,0.173634 0.0317,0.184658 0.0179,0.198437 0.0262,0.192924 0.0592,0.181903 0.0345,0.191548 0.0317,0.201192 0.0152,0.202572 -0.008,0.192924 0.0193,0.194303 0.008,0.197061 0.04,0.202573 0.007,0.206703 -0.0345,0.210841 -0.0152,0.225996 -0.0289,0.223245 -0.0331,0.198438 -0.0303,0.190168 -0.0427,0.181899 -0.0358,0.169499 -0.0234,0.166744 -0.0441,0.17501 -0.0455,0.170878 -0.0455,0.16123 -0.051,0.16123 -0.0675,0.150204 -0.0524,0.155721 -0.0565,0.163986 -0.0565,0.170878 -0.0717,0.169495 -0.0717,0.16261 -0.0841,0.159854 -0.0854,0.16674 -0.0868,0.154339 -0.11024,0.148831 -0.10611,0.151583 -0.11162,0.151585 -0.13918,0.136424 -0.11851,0.152961 -0.0909,0.154342 -0.11438,0.124026 -0.11576,0.122643 -0.14331,0.121266 -0.13781,0.119893 -0.113,0.106109 -0.11162,0.107487 -0.1254,0.11162 -0.11851,0.112998 -0.11438,0.108865 -0.12678,0.115756 -0.11851,0.129534 -0.12402,0.11438 -0.129537,0.110241 -0.132292,0.110244 -0.146071,0.108863 -0.140562,0.110244 -0.118513,0.118512 -0.125396,0.101973 -0.133673,0.108868 -0.136424,0.103354 -0.117134,0.104727 -0.137803,0.09233 -0.137806,0.09647 -0.09646,0.09233 -0.125402,0.07579 -0.157097,0.06615 -0.141935,0.05512 -0.115758,0.04409 -0.101973,0.03031 -0.108866,0.02341 -0.118512,0.02066 -0.111622,0.02617 -0.126778,0.01929 -0.128156,0.01516 -0.121267,0.02479 -0.108868,0.03305 -0.121266,0.03583 -0.137803,0.03583 -0.130914,0.02755 -0.129534,0.03306 -0.124024,0.03171 -0.115758,0.02479 -0.13091,0.02893 -0.126783,0.01654 -0.115753,0.0069 -0.124026,-0.0013 -0.129532,-0.0083 h -0.126783 l -0.108863,-0.0041 -0.117133,-0.01791 -0.110242,-0.0096 -0.09371,-0.0083 -0.09508,-0.01241 -0.09508,-0.0055 -0.10749,-0.0028 -0.107484,-0.0041 -0.106111,-0.01101 -0.104728,-0.01378 -0.112998,-0.0055 -0.114379,-0.01241 -0.121267,-0.02066 -0.12678,-0.02204 -0.122645,-0.02204 -0.111623,-0.02755 -0.107487,-0.02893 -0.114376,-0.02617 -0.115756,-0.03305 -0.117131,-0.03997 -0.137805,-0.03305 -0.117134,-0.03168 -0.0937,-0.03858 -0.09508,-0.03721 -0.104733,-0.03721 -0.09784,-0.04548 -0.09371,-0.03721 -0.09509,-0.03583 -0.08957,-0.04272 -0.08958,-0.04409 -0.104732,-0.0441 -0.09508,-0.0441 -0.100594,-0.04409 -0.104733,-0.0565 -0.117133,-0.05236 -0.117132,-0.05099 -0.114379,-0.05787 -0.126778,-0.0565 -0.115755,-0.05788 -0.05512,-0.06201 -0.09233,-0.05788 -0.143314,-0.05237 -0.133668,-0.06614 -0.129537,-0.06201 -0.132292,-0.06752 -0.115758,-0.05788 -0.100594,-0.05374 -0.101973,-0.0441 -0.126781,-0.04272 -0.119888,-0.05512 -0.110244,-0.06339 -0.08682,-0.05788 -0.108866,-0.05374 -0.144695,-0.04685 -0.130911,-0.05788 -0.126783,-0.04134 -0.117131,-0.04548 -0.108865,-0.04961 -0.126781,-0.04686 -0.125399,-0.04961 -0.104733,-0.0441 -0.09646,-0.03996 -0.103355,-0.03447 -0.101973,-0.03306 -0.09509,-0.04272 -0.0937,-0.04272 -0.09509,-0.0441 -0.09784,-0.03721 -0.0937,-0.02893 -0.115757,-0.03443 -0.112999,-0.03721 -0.09784,-0.02204 -0.08682,-0.01378 -0.0813,-0.01241 -0.07993,-0.01379 -0.08819,-0.0083 -0.07855,-0.0096 -0.07579,-0.01101 -0.06339,-0.0041 -0.04134,0.0028 -0.06202,-0.0028 -0.07441,-0.0069 -0.09922,-0.0055 -0.07717,-0.01654 -0.03583,-0.01791 -0.03996,-0.01379 -0.0565,-0.0069 -0.0565,-0.01238 -0.0689,-0.0055 -0.07166,-0.0041 -0.06063,0.01241 -0.06752,0.0041 -0.0565,0.0028 -0.06064,0.0083 -0.05237,0.01654 -0.05374,0.02342 -0.06615,0.01516 -0.06477,0.01379 -0.04961,0.01241 -0.0565,0.0028 -0.06201,0.01654 -0.05099,0.01241 -0.05236,0.0041 -0.04686,0.0028 -0.04685,0.01101 -0.05374,0.0055 -0.0565,0.01238 -0.05788,0.0069 -0.0303,0.01378 -0.04134,0.01238 -0.07441,0.02066 -0.06752,0.03306 -0.06477,0.02893 -0.05788,0.01929 -0.06063,0.03306 -0.07579,0.03997 -0.06752,0.02893 -0.06064,0.03721 -0.05787,0.03858 -0.06753,0.03031 -0.04134,0.03168 -0.05374,0.02617 -0.106109,0.02755 -0.08544,0.03443 -0.05099,0.0303 -0.05099,0.01929 -0.06477,0.02893 -0.03447,0.03443 -0.07165,0.02893 -0.132292,0.04547 -0.119891,0.05237 -0.09095,0.04823 -0.08957,0.0441 -0.08682,0.05926 -0.09784,0.06615 -0.114378,0.05926 -0.09646,0.05925 -0.09509,0.05512 -0.08957,0.05375 -0.114374,0.05926 -0.118513,0.04823 -0.09508,0.04823 -0.09233,0.05099 -0.08819,0.04685 -0.08268,0.03305 -0.09233,0.03858 -0.184655,0.05237 -0.08406,0.04134 -0.09233,0.04547 -0.100598,0.04548 -0.08268,0.04134 -0.0882,0.04272 -0.09233,0.05237 -0.107488,0.06063 -0.125401,0.04548 -0.114378,0.0441 -0.106108,0.04823 -0.111619,0.04823 -0.113002,0.04961 -0.130913,0.04134 -0.117132,0.04134 -0.08268,0.03443 -0.103354,0.02342 -0.117133,0.02617 -0.14745,0.02755 -0.135047,0.02204 -0.06752,0.03171 -0.115758,0.02755 -0.162609,0.03859 -0.136426,0.0372 -0.122643,0.03859 -0.118513,0.03859 -0.122646,0.03859 -0.128157,0.04548 -0.136426,0.05374 -0.139182,0.05374 -0.144692,0.05237 -0.146071,0.03583 -0.144695,0.03996 -0.14883,0.04134 -0.151582,0.03306 -0.143316,0.04134 -0.132291,0.03447 -0.117133,0.02755 -0.125402,0.04823 -0.152965,0.03858 -0.129532,0.02479 -0.104733,0.02755 -0.110243,0.03446 -0.126778,0.03031 -0.09233,0.04823 -0.113002,0.04548 -0.157095,0.04548 -0.140557,0.05788 -0.126782,0.05237 -0.128157,0.04961 -0.124022,0.05098 -0.135051,0.04823 -0.144691,0.03446 -0.139182,0.03996 -0.129536,0.03996 -0.114378,0.02617 -0.121267,0.01654 -0.119888,0.0041 -0.119892,0.01101 -0.114377,0.0069 -0.09509,0.0013 -0.107484,0.01654 -0.110243,0.02066 -0.106112,0.0083 -0.114374,0.02066 -0.126781,0.02204 -0.118513,0.02341 -0.117132,0.02066 -0.111619,0.01101 -0.115757,0.01791 -0.136426,0.01929 -0.125402,0.01101 -0.10335,0.0028 -0.108867,0.0083 -0.108864,0.01101 -0.114378,0.0041 -0.117133,-0.0028 -0.09922,-0.0041 -0.09095,-0.0028 -0.104732,-0.0083 -0.106109,-0.01654 -0.09922,-0.0083 -0.114377,0.0083 -0.104729,0.01101 -0.05788,-0.0041 -0.0813,-0.0055 h -0.129536 l -0.128157,-0.0069 -0.106109,-0.0069 -0.08957,-0.0013 -0.08681,-0.0069 -0.113002,-0.0055 -0.103353,-0.01654 -0.09784,-0.02204 -0.08957,-0.01516 -0.0937,-0.02066 -0.104733,-0.02893 -0.09508,-0.02893 -0.07579,-0.02755 -0.07855,-0.02479 -0.08268,-0.02341 -0.07855,-0.02479 -0.07717,-0.02341 -0.09095,-0.02204 -0.09784,-0.02479 -0.07855,-0.01791 -0.07579,-0.0083 -0.07028,-0.02204 -0.06477,-0.01929 -0.08819,-0.0083 -0.10473,-0.0028 -0.08268,-0.01929 -0.05788,-0.02066 -0.04272,-0.01929 -0.0441,-0.02755 -0.04685,-0.03583 -0.0441,-0.0441 -0.03721,-0.04272 -0.03859,-0.04823 -0.03447,-0.04823 -0.04823,-0.05099 -0.03996,-0.05374 -0.05237,-0.04272 -0.04548,-0.04823 -0.02342,-0.05099 -0.03305,-0.05375 -0.0441,-0.03443 -0.06615,-0.02341 -0.05099,-0.02617 -0.03721,-0.02617 -0.04686,-0.0096 -0.04961,-0.01241 -0.0441,-0.02204 -0.04134,-0.01791 -0.02755,-0.01101 -0.01655,-0.0096 -0.02893,-0.01791 -0.01517,-0.02204 -0.0055,-0.02066 -0.01101,-0.02479 -0.02342,-0.03447 -0.0055,-0.04547 -0.01792,-0.04961 -0.02755,-0.04961 -0.01517,-0.05512 -0.02067,-0.06752 0.01792,-0.06339 -0.01654,-0.05098 -0.04134,-0.0441 -0.03305,-0.04134 -0.03168,-0.03168 -0.0193,-0.02066 -0.01654,-0.02893 -0.0083,-0.03306 -0.01517,-0.03583 -0.01517,-0.0372 -0.01792,-0.03859 -0.02618,-0.03858 -0.02617,-0.04686 -0.0041,-0.04823 0.01242,-0.04548 v -0.0441 l -0.0028,-0.06201 -0.0055,-0.07028 -0.0069,-0.07028 0.01654,-0.05788 -0.0069,-0.04823 -0.02893,-0.04961 -0.01242,-0.04685 -0.01654,-0.04685 -0.0069,-0.0441 -0.0055,-0.04685 -0.0193,-0.04134 -0.0069,-0.03447 -0.0041,-0.03305 -0.0028,-0.03306 -0.01242,-0.02755 -0.03306,-0.03447 -0.0083,-0.05237 0.03996,-0.04823 0.0083,-0.04134 -0.0028,-0.04823 -0.0014,-0.05237 -0.0096,-0.04961 0.01242,-0.05374 0.0014,-0.05926 -0.02342,-0.05788 -0.0193,-0.05099 -0.01101,-0.03583 -0.01379,-0.02755 v -0.01654 l 0.01101,-0.02066 0.0055,-0.02617 -0.01101,-0.02893 0.0014,-0.03721 0.0014,-0.03583 -0.03447,-0.0441 0.01101,-0.05099 0.0937,-0.04961 0.03997,-0.07028 0.0028,-0.06752 0.01517,-0.07166 0.01654,-0.07579 0.0441,-0.06339 0.01101,-0.0689 -0.01517,-0.06752 0.0041,-0.07166 0.01517,-0.07579 0.02618,-0.0813 0.02205,-0.07717 0.01379,-0.07304 0.0193,-0.07855 0.02755,-0.07579 -0.0014,-0.08682 -0.03721,-0.06201"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path170"
+ d="m 68.667289,93.339068 -0.02067,0.02617 -0.02618,0.04547 -0.0069,0.02066 -0.0014,0.01791 -0.0069,0.0689 0.01101,0.0565 0.0041,0.06477 0.0096,0.05788 0.0096,0.05237 0.01517,0.04823 0.0069,0.04685"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path172"
+ d="m 68.630082,95.689999 0.0055,-0.0565 -0.02205,-0.0083 0.01655,0.07028 0.0069,0.06477 0.0083,0.07717 -0.0041,0.07717 -0.01242,0.07579 -0.0041,0.07304 -0.0014,0.06201 -0.0083,0.07028 -0.0069,0.05925 0.0069,0.05512 0.0028,0.06615 -0.0069,0.0813 v 0.07166 l 0.0096,0.05236 0.0083,0.05374"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path174"
+ d="m 68.605278,98.300005 -0.02067,0.129535 -0.03447,0.192923 -0.0193,0.07304 0.0014,0.01378 -0.02893,0.02755 0.0028,0.04961 0.02893,0.06064 0.02342,0.0813 -0.0041,0.114377 -0.0083,0.135049 -0.0028,0.122642 -0.0248,0.113001 -0.0028,0.114379 0.02205,0.106109 -0.0041,0.115752"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path176"
+ d="m 57.750471,91.20724 0.0055,-0.01101 h -0.0041 0.0055 l 0.0069,0.0013 -0.0028,0.0041 -0.0069,0.0028 0.01102,0.0028 h 0.01929 l 0.05374,-0.0083 0.09095,-0.0013 0.121267,-0.0013 0.152963,-0.0083 0.199815,-0.03721 0.213596,-0.04134 0.214974,-0.04685 0.228754,-0.05788"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path178"
+ d="m 60.849678,90.865489 -0.03445,0.05237 -0.02756,0.04823 0.0069,-0.02342 -0.0041,-0.0055 -0.0014,-0.0055 0.0096,-0.0041 0.03032,-0.0041 0.04685,-0.0083 0.06614,-0.0013 h 0.09922 l 0.137806,0.0083 0.16812,0.0028 0.191547,0.0097"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path180"
+ d="m 64.192797,90.769027 h -0.02755 0.01654 l 0.0096,0.0028 0.0441,0.0083 0.07028,0.01654 0.08406,0.01791 0.107488,0.01378 0.119888,0.02204 0.144695,0.01378 0.163985,-0.0013 0.17501,-0.02066"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path182"
+ d="m 67.137666,90.660161 0.07579,-0.0041 h 0.107488 l 0.0069,-0.0069 0.0193,0.0013 0.05099,0.0083 0.04961,0.0013 h 0.04547 l 0.04961,0.0069 0.04685,-0.0069 0.04272,-0.0013 0.04134,0.0069 h 0.04823 l 0.0565,0.0069 0.07304,0.02204 0.103353,0.0083 0.129533,0.0069"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path184"
+ d="m 101.46596,99.081351 0.0165,-0.01241 0.011,-0.0013 0.001,0.0013 -0.008,0.0013 -0.005,0.0013 -0.001,0.0013 0.0124,0.0069 0.0248,0.0083 0.0317,0.0083 0.04,0.0069 h 0.0468 l 0.0469,-0.0096 0.0482,-0.01791 0.0551,-0.01101 0.04,-0.0013 0.04,-0.0055 0.0317,0.0013 0.0207,-0.0055 0.0207,0.0013 0.0179,0.0028 0.0207,0.0013 0.0138,0.0096 0.007,0.01516 0.008,0.01516 0.0165,0.0083 -10e-4,0.01378 0.0124,0.01378 0.0386,0.0097 0.0372,0.01379 0.0275,0.0055 0.0317,0.0041 0.04,0.0028 0.0992,-0.0055 0.0537,-0.01791 0.0524,-0.0096 0.0579,-0.0083 h 0.0579 l 0.0565,-0.01241 0.11025,-0.01101 0.0537,0.0028 0.0413,0.01101 0.0303,0.0028 0.007,0.01791 0.0179,0.01516 0.0455,0.01516 0.0372,0.0083 0.04,-0.0028 0.0372,0.0097 0.04,0.01238 0.0331,-0.0013 0.0427,-0.01101 0.0537,-0.0041 0.0496,-0.01101 0.051,-0.0083 0.0372,-0.0083 0.04,0.0013 0.0606,0.0013 0.0496,-0.0041 0.0289,-0.0055 0.04,0.0013 0.051,-0.01378 0.0524,-0.01516 h 0.0634 l 0.0758,0.0013 0.0496,-0.01378 0.0386,0.0028 0.0482,-0.0055 0.0496,0.0013 0.0551,0.0013 0.0496,-0.0055 0.0482,0.0069 0.0413,0.0096 0.04,0.0013 0.0455,0.0069 0.051,0.0069 0.0386,0.0069 0.04,-0.0083 0.0413,-0.0096 0.0386,-0.0028 0.0345,-0.0013 0.0331,-0.0083 0.0358,-0.0069 0.0248,-0.0083 0.0248,0.0083 0.0482,0.0028 0.0372,0.0013 0.0248,-0.0055 h 0.007 l 0.01,0.0013 0.0193,0.0069 0.0262,0.0013 0.0331,-0.0083 0.0413,0.0055 h 0.0579 l 0.0469,0.0083 h 0.14882 l 0.0786,-0.0013 h 0.13781 l 0.0772,0.01378 0.0634,0.0013 0.0744,-0.0069 0.0813,-0.0013 0.0703,-0.0097 0.0634,0.01378 0.062,0.0096 0.0593,0.0083 0.0427,0.0083 h 0.0482 l 0.0579,-0.0028 0.0634,0.0055 0.0648,0.01379 h 0.0841 l 0.0772,-0.0013 0.0455,-0.0013 0.10472,-0.0028 0.0537,-0.0013 h 0.0455 l 0.04,-0.0069 0.0496,-0.0013 0.0565,0.0013 0.0661,-0.0069 0.0469,-0.0083 0.04,-0.01378 0.051,-0.01516 0.0524,-0.0069 0.0427,0.0013 0.0386,0.0028 0.0538,0.0028 0.0455,0.0028 0.0372,0.0028 0.0441,-0.0069 h 0.051 l 0.0469,-0.0013 0.0358,-0.0069 0.0331,-0.0083 h 0.0207 l 0.011,-0.0083 -0.0124,-0.0083 -0.0124,0.0013 -10e-4,-0.0055 -0.0606,0.01101"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path186"
+ d="m 108.26796,98.517736 -0.0551,0.01654 -0.12678,0.01929 -0.0896,0.01791 -0.0372,0.01241 -0.0179,0.01241 -0.0152,0.01101 0.007,-0.0041 0.0207,0.0028 0.0165,-0.0041 0.0276,0.0028 0.0992,0.07441 0.0841,0.04134 0.0841,0.03859 0.0992,0.02755 0.10336,0.02479 0.10197,0.02342 0.10197,0.02204 0.10611,0.01378 0.1006,0.01516 0.0882,0.02204 0.0978,0.01654 0.10887,0.01654 0.10059,0.02617 0.0634,0.02066 0.0234,0.02617 0.005,0.01101 -0.007,0.0097 -0.0152,0.0013 -0.0234,0.0055 -0.0179,0.02341 -0.04,0.04134 -0.0758,0.06752 -0.0882,0.07442 -0.0896,0.07028 -0.0951,0.07717 -0.0965,0.07717 -0.0896,0.07854 -0.091,0.07579 -0.0703,0.07579 -0.073,0.05788 -0.0841,0.05237 -0.051,0.0441 -0.022,0.02479 -0.003,0.01516 10e-4,0.0041 0.01,-0.0055 0.022,-0.01378 0.0179,-0.01654 -0.01,-0.01654 0.011,-0.0096"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path188"
+ d="m 112.16368,98.993155 -0.0372,-0.02893 -0.0909,-0.0083 -0.04,0.04272 0.0207,-0.02479 0.0179,-0.01238 0.0124,-0.0069 0.0165,-0.03446 0.022,-0.07028 0.0427,-0.110243 0.0496,-0.128157 0.0606,-0.144695 0.073,-0.154339 0.0854,-0.154342 0.091,-0.15434 0.0937,-0.154339 0.0992,-0.143317 0.0909,-0.110244 0.0868,-0.04961 0.0662,-0.01101 0.0606,0.0096 0.0455,0.02479 0.04,0.03721 0.0386,0.04134 0.0276,0.05512 0.0358,0.06753 0.0262,0.0937 0.0427,0.114377 0.0386,0.14056 0.0413,0.141938 0.0468,0.14056 0.0551,0.141936 0.0551,0.151585 0.0606,0.158475 0.0744,0.170876 0.0841,0.177768 0.0813,0.186034 0.0786,0.177768 0.0923,0.158475 0.0841,0.139181 0.0634,0.136428 0.0482,0.11713 0.0386,0.0813 0.0152,0.0468 0.007,0.0317 -0.011,0.004 -0.0234,-0.0234"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path190"
+ d="m 114.59178,97.865922 0.0165,-0.01101 -0.0248,0.01101 -0.062,0.04823 -0.0882,0.07993 -0.0992,0.1006 -0.11438,0.115752 -0.11851,0.122648 -0.11024,0.132292 -0.12265,0.152961 -0.1378,0.154339 -0.12265,0.151585 -0.0978,0.151585 -0.0937,0.146071 -0.0965,0.130913 -0.0675,0.107487 -0.0427,0.07993 -0.0289,0.05512 -0.0234,0.04272 -0.0372,0.02479 -0.0165,0.01791"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path192"
+ d="m 103.44207,84.588527 -0.001,0.01238 -0.008,0.0303 -0.007,0.02617 -0.005,0.02618 -0.0152,0.02893 -0.0152,0.03447 0.001,0.03443 0.004,0.05237 0.003,0.07028 0.011,0.08681 10e-4,0.08682 0.008,0.108864 0.007,0.132291 v 0.122647"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path194"
+ d="m 103.17198,89.158101 0.0138,-0.02893 0.0193,0.01654 0.005,0.02066 0.003,0.01241 0.0165,0.02755 0.0152,0.02479 0.0138,0.0303 0.0207,0.03996 0.005,0.04548 0.0124,0.05512 0.004,0.0689 0.004,0.07304 0.004,0.0689 0.004,0.07028 0.005,0.08406 -0.01,0.08544 -0.01,0.104727"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path196"
+ d="m 103.25604,91.711605 -0.007,0.05787 0.003,0.143317 v 0.09371 l 0.01,0.06063 0.001,0.06064 0.008,0.05926 v 0.06201 l -0.001,0.07028 0.007,0.07993 0.005,0.08819 v 0.09784 l 0.005,0.104733 0.007,0.104727 0.007,0.103354"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path198"
+ d="m 103.33596,94.560008 0.011,0.08406 0.0193,0.146071 0.062,0.07717 v 0.06615 l -0.0331,0.0689 -0.008,0.06063 -0.005,0.05237 0.0427,0.05236 0.003,0.07717 -0.0303,0.103352 0.001,0.117133 0.0152,0.237025"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path200"
+ d="m 103.37869,97.583423 0.011,0.05099 -0.0179,0.110244 -0.0193,0.0813 0.011,0.07166 0.0207,0.09095 0.011,0.111617 0.001,0.110244 0.022,0.09508 0.008,0.08957 -0.001,0.0937 0.004,0.09647 0.004,0.08268 0.006,0.07166 -0.003,0.07717 -0.0179,0.07441 0.004,0.06339 -0.008,0.06063 -0.008,0.06201"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path202"
+ d="m 103.58677,100.43183 h -0.01 l -0.005,-0.022 -0.004,-0.0179 -0.0165,-0.11575 v -0.13229 l 10e-4,-0.0758 -0.007,-0.08821 -0.007,-0.09646 v -0.119893 l -0.005,-0.1378 0.001,-0.151585 v -0.155718"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path204"
+ d="m 68.129853,90.891672 -0.0303,0.03171 -0.03583,0.0565 -0.01792,0.02893 0.01654,-0.0041 0.01654,-0.0096 0.02205,-0.0028 0.0303,0.0013 0.02617,-0.0041 0.04134,-0.0028 0.05926,-0.0013 0.05512,-0.0083 0.05374,-0.02204 0.05237,-0.02342 0.04272,-0.03858 0.03996,-0.03721 0.03168,-0.04272 0.03583,-0.05512 0.0193,-0.05926 -0.01379,-0.05512 -0.01517,-0.04272 -0.0041,-0.04134 -0.01517,-0.03172 -0.02755,-0.0303 -0.03996,-0.02479 -0.03168,-0.02617 -0.02755,-0.02066 -0.04548,0.0041 -0.04134,0.01238 -0.0441,0.01654 -0.03721,0.0303 -0.0193,0.04272 -0.03721,0.04685 -0.05788,0.06615 -0.04823,0.06201 -0.0303,0.06064 -0.03168,0.06201 -0.0055,0.05926 0.0303,0.04548 0.0303,0.07579 0.02755,0.0441 0.02755,0.03447 0.02205,0.01791 h 0.07303 l 0.04823,-0.0096 0.05374,-0.01516 0.04134,-0.02066 0.04685,-0.03168 0.07579,-0.04548 0.05788,-0.06477"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path206"
+ d="m 103.11272,85.179705 0.011,-0.0014 0.0124,0.0248 -0.001,0.05099 0.007,0.0441 -0.001,0.04961 0.007,0.04272 0.0234,0.03721 0.0165,0.02342 0.0234,0.0096 0.0289,-0.0055 0.0289,-0.0069 0.0207,-0.01101 0.011,-0.01517 0.0193,-0.01242 0.0303,-0.02342 0.0345,-0.03859 0.0537,-0.0441 0.0386,-0.05374 -0.0138,-0.05788 0.0165,-0.05788 0.0358,-0.06752 0.0124,-0.04823"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path208"
+ d="m 103.23399,87.928889 0.04,0.0055 0.0248,0.01101 -0.0275,-0.0028 -0.003,-0.01241 0.004,-0.02617 0.003,-0.06063 0.005,-0.09233 0.0152,-0.100597 0.007,-0.107484 0.022,-0.108868 0.0303,-0.122643 0.0234,-0.122647 0.006,-0.110241"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path210"
+ d="m 85.697079,82.956929 0.107487,-0.01792 0.154342,-0.04686 0.04961,-0.05512 0.0083,-0.04547 0.01101,-0.03447 0.0013,-0.04685 -0.01241,-0.0441 -0.01654,-0.03583 -0.02617,-0.03996 -0.03168,-0.04823 -0.03447,-0.0441 -0.05374,-0.03447 -0.07855,-0.0248 -0.09095,-0.01101 -0.100597,-0.0028 -0.110244,0.01238 -0.129537,0.04134 -0.136422,0.0565 -0.159854,0.06752 -0.15572,0.07855 -0.128156,0.08268 -0.11438,0.08819 -0.09922,0.09508 -0.09095,0.09095 -0.07579,0.101974 -0.04823,0.101974 -0.02617,0.09922 -0.01378,0.08957 0.02617,0.0689 0.05236,0.05099 0.07028,0.05926 0.09371,0.06615 0.117134,0.07717 0.126778,0.09784 0.12678,0.103354 0.139181,0.114377 0.170879,0.121267 0.17639,0.124023 0.154339,0.128157 0.144693,0.136426 0.175008,0.300415 0.01379,0.162606 v 0.151585 l -0.01791,0.135047 -0.0303,0.107488 -0.02204,0.07441 -0.03996,0.04685 -0.04823,0.03305 -0.05926,0.0096 -0.07441,0.0055 -0.09646,0.0083 -0.09922,0.0083 -0.107489,-0.01655 -0.118513,-0.03721 -0.119888,-0.04134 -0.136424,-0.0303 -0.130916,-0.02617 -0.114374,-0.0303 -0.103354,-0.02755 -0.09646,-0.02893 -0.08819,-0.04272 -0.07579,-0.03721 -0.05375,-0.0303 -0.04272,-0.03443 -0.04134,-0.02893 -0.01654,-0.03721 -0.0083,-0.04272 0.0096,-0.05099"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path212"
+ d="m 83.242793,79.328554 -0.10335,-0.0303 -0.101977,-0.04686 -0.01517,-0.0096 0.0069,0.01379 0.01238,0.0083 -0.0014,0.0069 -0.0055,0.0041 -0.0069,0.0028 -0.0041,0.0014 0.0014,-0.0014 0.0069,-0.0014 -0.0069,-0.0014 v -0.0069 l -0.0014,-0.0083 -0.0689,-0.0248 -0.02755,-0.01792 -0.02205,-0.0069 -0.0248,0.0028 -0.0248,-0.01101 -0.02067,-0.0069 -0.02755,0.0041 -0.03168,-0.0041 -0.04686,-0.0055 -0.04823,-0.0055 h -0.04272 l -0.0303,-0.0069 -0.03996,-0.0069 -0.03168,-0.0069 h -0.02067 l -0.01654,-0.0055 0.0014,-0.0083 -0.0028,-0.0055 -0.01792,-0.0055 -0.01517,-0.0083 -0.02067,-0.0055 -0.0193,-0.0055 -0.01379,-0.01379 -0.04961,-0.01238 0.0028,0.0014 -0.0083,0.0028 -0.02067,0.0028 -0.02618,0.01238 -0.03859,0.01792 -0.04272,0.02755 -0.03996,0.01654 -0.02893,0.01379 -0.02893,0.0193 -0.02342,0.0041 -0.0083,0.0028 h -0.01517 l -0.02893,0.0028 -0.02067,0.0041 -0.02342,-0.0028 -0.01792,0.0055 h -0.0303 l -0.03443,-0.0083 -0.02205,-0.01101 -0.0097,-0.0069 h -0.0193 l -0.02618,-0.0055 -0.02755,0.0014 -0.02617,0.0028 -0.01101,-0.0069 -0.02893,0.0014 -0.04548,0.0096 -0.03447,0.0097 -0.0248,0.0014 0.0083,-0.0096 -0.01654,-0.0014 -0.02755,-0.0014 h -0.05788 l -0.02617,-0.0083 -0.0193,-0.0096 -0.01517,-0.01379 -0.02205,-0.02205 -0.02617,-0.01654 -0.03168,-0.02067 -0.02893,-0.02205 -0.02617,-0.01238 -0.0303,-0.01654 -0.03997,-0.01792 -0.02755,-0.02067 -0.0096,-0.01242 -0.0303,-0.01379 -0.03306,-0.01792 -0.01517,-0.0069 -0.01792,0.0055 -0.04272,0.0069 -0.03306,0.01517 -0.0248,0.01101 -0.02205,0.0083 -0.02893,0.01379 -0.03306,0.0069 -0.0248,0.01242 -0.02205,0.01242 -0.01654,0.0041 -0.01517,0.0041 -0.02755,-0.0041 -0.0193,-0.01238 -0.03168,-0.0041 -0.0193,-0.0083 0.01101,-0.0083 0.0014,-0.0069 -0.0055,-0.01101 -0.03305,-0.01379 -0.0248,-0.01101 0.0028,-0.01242 -0.0096,-0.0041 -0.0041,-0.0097 -0.01242,-0.0055 -0.02755,-0.0041 -0.02342,-0.0055 -0.02342,0.0028 -0.0193,0.0028 -0.01792,0.0014 -0.03583,0.01792 h -0.01792 l -0.01792,-0.0014 -0.0096,-0.0014 -0.0014,-0.0096 -0.0083,-0.0014 -0.0041,-0.0014 0.01517,-0.01242 -0.0028,-0.01242 -0.04134,-0.01792 -0.02342,-0.02617 -0.0028,-0.02755 -0.01242,-0.0096 -0.01242,-0.0083 -0.01242,-0.01792 -0.0069,-0.01242 -0.0028,-0.0096 -0.0041,-0.0028 -0.01101,-0.0014 0.0014,0.0028 -0.01792,-0.0041 -0.04685,0.01242 -0.04272,0.0041 -0.03447,0.01101 -0.02342,-0.0028 -0.02342,0.0041 v 0.01517 l -0.01101,0.0041 -0.03305,-0.0096 -0.01792,-0.0028 -0.0069,0.0041 -0.0055,-0.0069 -0.0041,-0.01101 -0.0028,-0.0069 -0.0097,-0.0014 -0.0069,-0.01238 -0.0083,-0.0083 -0.0069,0.0014 -0.01792,-0.0097 -0.01792,-0.01655 0.01517,-0.0055 -0.0096,-0.0069 -0.01792,-0.0028 -0.0014,-0.0083 -0.01101,0.0028 -0.0028,0.0028 -0.0041,-0.0041 h -0.01654 l -0.0055,0.0014 0.0028,-0.0055 0.0014,-0.0014 h 0.0055 l 0.0083,-0.0041 0.0055,-0.0096 0.0041,-0.0014 0.0083,-0.0083 0.01101,-0.0055 h 0.0014 l 0.0055,-0.0055 h 0.03583 l 0.03859,0.0014 0.0248,-0.0069 0.03583,0.0014 0.03859,-0.0069 h 0.06063 l 0.05788,0.0014 0.0303,0.0014 h 0.03447 l 0.04823,-0.0069 0.05237,0.0069 0.115753,0.01654 0.05099,0.0083 0.04272,0.0083 0.0372,0.02067 0.03306,0.01517 0.0248,0.01379 0.01792,0.0055 -0.0041,0.0055 -0.0055,0.0014 0.0028,0.0028 0.0028,0.0041 0.0014,-0.0014 0.0041,-0.0028 0.0083,-0.0014 -0.0096,-0.01101 0.0014,-0.0083 0.0014,-0.01101 v 0.0096 l 0.0065,0.0032 h 0.0689 l 0.02067,0.0014 h -0.0069 0.0028 l 0.02205,-0.0014 h 0.01379 l 0.01379,0.0055 0.02342,0.0083 0.0248,0.0014 0.01517,0.0069 h 0.04272 l 0.0303,-0.0014 0.02893,-0.0014 0.01792,-0.0014 h 0.02205 l 0.0303,-0.0014 h 0.03447 l 0.01379,0.0014 h 0.04685 l 0.0096,-0.01101 0.0083,-0.0055 0.0028,-0.0083 -0.02893,0.01101 -0.0028,0.02067 h 0.0055 l 0.0014,-0.0014 -0.01242,-0.0014 -0.01101,-0.0014 -0.0041,0.0028 -0.01655,0.0014 -0.02617,-0.01517 -0.0248,-0.0097 -0.01517,0.0069 -0.01101,-0.0055 -0.0248,0.0014 -0.02205,0.0097 -0.01792,0.0096 -0.0248,0.0014 h -0.02618 l -0.03168,-0.0014 -0.03996,-0.0014 -0.03583,-0.0097 -0.04547,-0.0083 -0.04686,-0.01654 -0.05512,-0.0083 -0.04823,-0.0069 -0.04961,-0.0055 -0.05099,-0.0055 -0.06201,-0.01242 -0.05375,-0.0069 -0.04272,0.0028 -0.03583,-0.0041 -0.04548,0.0096 -0.04272,0.01101 -0.03447,0.0096 -0.03168,0.0083 -0.03996,0.0069 -0.03721,0.0069 -0.02893,0.0055 -0.03447,-0.0028 -0.03721,0.0055 -0.03858,0.0041 -0.03721,-0.0014 -0.03306,0.0069 -0.02205,-0.0014 -0.02617,-0.0096 -0.02893,-0.0083 -0.03168,0.0055 -0.0372,0.0014 -0.03447,0.0014 -0.03859,0.0014 -0.03168,0.0083 -0.0303,0.01517 -0.0303,0.0096 h -0.03583 l -0.0248,0.0055 -0.02755,0.0055 -0.01654,-0.0028 -0.01242,-0.0096 -0.03305,-0.0028 -0.02893,-0.0014 -0.02618,-0.0083 -0.0248,-0.0069 -0.01654,-0.01517 -0.02342,-0.0083 -0.0193,-0.0055 -0.02342,-0.0055 -0.03306,-0.0041 -0.02755,-0.0055 -0.0193,0.0014 -0.02893,0.0041 -0.05236,0.0097 -0.04823,0.01101 -0.02617,0.0248 -0.03306,0.01517 -0.0441,0.01379 -0.05926,0.0055 -0.03583,0.0041 -0.0069,0.0028 -0.01654,0.0083 -0.02205,0.0055 -0.02205,-0.0028 -0.01517,-0.0028 -0.02067,-0.0096 -0.01242,-0.0014 0.01101,-0.0069 0.0014,-0.0083 -0.0014,-0.0055 h -0.0014 l -0.0055,-0.0069 -0.0041,0.0014 -0.0055,-0.0055 -0.02893,0.0041 -0.02067,0.01242 -0.02067,0.0014 -0.0303,-0.0014 -0.0303,0.0055 0.01379,0.01655 -0.01792,0.02067 -0.0565,0.01517 -0.04272,0.02342 -0.03171,0.02618 -0.0248,0.02067 -0.02342,0.0193 -0.02067,0.0014 -0.01517,0.0083 -0.0193,0.0014 -0.02342,0.0028 -0.01101,0.01101 -0.04134,-0.0055 -0.01242,-0.0014 -0.02067,-0.01517 -0.01517,-0.01101 0.0028,-0.0014 -0.01792,-0.0055 -0.05374,-0.0041 -0.0441,-0.0069 -0.02755,0.0028 -0.01792,0.0096 -0.03583,0.01101 -0.03447,0.0097 -0.03168,0.0083 -0.02755,0.01517 -0.0303,0.02205 -0.03583,0.02893 -0.04685,0.0303 -0.04823,0.02067 -0.05099,0.0248 -0.03443,0.01101 -0.0193,0.0069 -0.02205,0.0069 -0.02067,0.0014 -0.02755,0.0014 -0.02205,0.0028 -0.0096,-0.01101 -0.0069,-0.0028 -0.0069,-0.0014 -0.0096,0.0014 -0.02617,0.0014 -0.0248,0.0014 -0.02205,0.0097 -0.02618,0.0083 -0.03583,0.01655 -0.02893,0.0248 -0.03997,0.0303 -0.03443,0.03859 -0.03859,0.03583 -0.04547,0.03443 -0.03306,0.03306 -0.02067,0.0303 -0.0248,0.02755 -0.02893,0.0303 v 0.0248 l -0.01101,0.0041 -0.03859,0.0028 h -0.03725 l -0.0014,0.0014 -0.0014,0.0041 -0.0096,0.0069 -0.0193,0.0069 -0.02067,0.0014 -0.02893,0.0069 -0.0303,0.0083 h -0.02893 l -0.02893,0.0069 -0.0248,0.0069 -0.03168,0.0069 -0.03996,0.02205 -0.04685,0.02342 -0.04272,0.01517 -0.0441,0.02755 -0.05788,0.04134 -0.0441,0.0248 -0.03306,0.01654 -0.02342,0.02205 -0.0248,0.01654 -0.0193,0.0083 -0.01792,0.0069 -0.01379,0.0014 v -0.0055 l -0.0055,-0.0055 0.0028,-0.0041 -0.0028,-0.0014 h -0.0014 l -0.0069,0.0055 -0.01242,0.0014 -0.01792,0.0069 -0.03996,0.0096 -0.03858,0.01792 -0.03583,0.03583 -0.0937,0.07028 -0.05375,0.04272 -0.04823,0.03443 -0.03583,0.03172 -0.03858,0.03443 -0.03447,0.0303 -0.03305,0.02067 -0.0248,0.02755 -0.02617,0.02067 -0.02755,0.02205 -0.02205,0.02205 -0.01517,0.0097 -0.01379,0.0069 -0.0083,0.0014 -0.0083,0.0083 -0.0041,-0.0028 -0.0028,0.0041 0.01792,0.0055 h -0.04272 l -0.01655,0.01242 -0.01379,0.0096 -0.02205,0.01517 -0.02205,0.01655 -0.03447,0.0069 -0.0441,0.02067 -0.0441,0.02893 -0.03721,0.02342 -0.03721,0.02617 -0.0372,0.03306 -0.02205,0.03583 -0.03306,0.03168 -0.04272,0.03859 -0.03305,0.02618 -0.02755,0.02893 -0.04134,0.02755 -0.02618,0.01792 -0.01379,0.0055 -0.01655,-0.0028 -0.0083,-0.0097 h -0.0069 l -0.0014,0.0041 -0.0014,-0.0083 0.0028,-0.0083 0.0028,-0.0055 h -0.0028 l -0.0028,-0.0041 h -0.01792 l -0.0028,0.0014 0.0055,0.0028 -0.0014,0.0014 0.0028,0.0014 -0.03305,0.01101 -0.02755,0.0248 -0.06201,0.07579 -0.03996,0.05099 -0.02893,0.05237 -0.03168,0.04823 -0.03721,0.05237 -0.03171,0.04547 -0.01517,0.02755 -0.01792,0.02067 -0.01379,0.0096 -0.0193,0.01379 -0.02342,0.0193 -0.01242,0.01654 -0.01655,0.0083 -0.02342,0.0083 -0.02067,0.0193 -0.02067,0.01242 0.0041,0.02893 -0.01517,0.03583 -0.03583,0.02342 -0.03062,0.03596 -0.03996,0.03859 -0.05099,0.04961 -0.03858,0.05237 -0.0083,0.04685 -0.02618,0.04272 -0.02893,0.03583 -0.02342,0.03443 -0.01517,0.01792 -0.0193,0.0097 -0.0097,0.02342 -0.01517,0.01517 -0.01792,0.01517 -0.0041,0.02342 -0.0096,0.0248 -0.01242,0.02893 -0.02067,0.0193 -0.02067,0.01792 -0.02618,0.0248 -0.0303,0.03305 -0.01517,0.0303 -0.05788,0.05788 -0.0193,0.01654 -0.02205,0.02617 -0.04961,0.06615 -0.0248,0.03858 -0.02342,0.04134 -0.0193,0.03306 -0.02893,0.03583 -0.0193,0.0248 -0.0096,0.01379 -0.0069,0.01654 -0.0014,0.01655 -0.0014,0.01517 -0.01655,0.01379 -0.01517,0.0193 -0.01379,0.01792 -0.01379,0.0193 -0.0069,0.02067 -0.01238,0.01101 -0.01242,0.01792 -0.0193,0.0193 -0.02205,0.0193 -0.01379,0.02755 -0.0193,0.02617 -0.01238,0.02893 -0.01792,0.03168 -0.01242,0.02755 -0.01101,0.01792 -0.0096,0.02067 -0.01101,0.02342 -0.01792,0.0303 -0.0055,0.02893 -0.01101,0.04272 -0.02067,0.04272 -0.01517,0.03583 -0.01792,0.03583 -0.01379,0.0248 -0.03583,0.03583 -0.02067,0.03859 -0.0055,0.03447 -0.01101,0.03168 -0.01792,0.0303 -0.02618,0.0303 -0.01379,0.02618 -0.01792,0.02067 -0.0193,0.02205 -0.0041,0.0248 -0.01655,0.02205 -0.01242,0.0248 -0.01101,0.0248 -0.0041,0.01792 -0.01792,0.02205 -0.0055,0.03306 -0.0055,0.02893 -0.0041,0.0248 -0.01238,0.03721 -0.0055,0.04272 -0.01517,0.03447 -0.02067,0.0303 -0.01379,0.0303 -0.01379,0.03447 -0.02067,0.03168 -0.0193,0.0441 -0.02067,0.03859 -0.01242,0.03168 -0.01654,0.03447 -0.01792,0.03721 -0.0193,0.0372 -0.0041,0.03171 -0.02342,0.02618 -0.02618,0.02893 -0.02205,0.0303 -0.0248,0.02893 -0.02067,0.03168 -0.01792,0.02342 -0.01654,0.02893 -0.0028,0.02617 -0.0014,0.02205 -0.0014,0.02342 -0.0097,0.0303 -0.0055,0.02755 -0.0055,0.0303 -0.01379,0.0248 -0.0083,0.03306 -0.01238,0.0372 -0.02342,0.03447 -0.01517,0.02617 0.0014,0.02755 -0.01654,0.03583 -0.02893,0.03996 -0.02205,0.03306 -0.02618,0.02893 -0.02067,0.03583 -0.0248,0.03859 -0.01242,0.02618 -0.01517,0.02617 -0.0303,0.04823 -0.02893,0.0441 -0.02755,0.0248 -0.02342,0.0193 -0.0083,0.03447 -0.0083,0.03168 -0.01654,0.0303 -0.01101,0.02342 -0.0096,0.01517 -0.0096,0.0193 0.0028,0.01792 -0.0028,0.01654 -0.02618,0.01517 -0.01792,0.02067 -0.0069,0.01792 -0.0055,0.02342 -0.0193,0.02893 -0.01517,0.02205 -0.01238,0.0248 -0.01792,0.0303 -0.02205,0.03583 -0.0193,0.04134 -0.01379,0.03447 -0.01654,0.0303 -0.0041,0.0303 -0.01654,0.02893 -0.03859,0.0441 -0.01238,0.02067 -0.0041,0.01654 -0.0097,0.01379 -0.01238,0.0097 -0.01101,0.01517 0.0028,0.0193 -0.0041,0.02617 -0.01379,0.02205 -0.0069,0.01379 -0.0055,0.0096 -0.0055,0.0014 -0.01242,0.01655 -0.0069,0.02067 -0.0069,0.02205 -0.01379,0.0193 -0.01379,0.02755 -0.02067,0.03443 -0.03583,0.03447 -0.0248,0.0303 -0.01242,0.0248 -0.0028,0.0083 v 0.0055 -0.0028 l 0.0083,-0.0069 0.0028,-0.01517 0.0028,-0.01655 0.01242,-0.01238 0.01379,-0.0055 0.0055,-0.01654 0.0041,-0.02617 0.01379,-0.03583 0.01242,-0.05099 0.0055,-0.07855 0.02755,-0.09095 0.05237,-0.08819 0.03168,-0.08544 0.0193,-0.06339 0.03583,-0.07442 0.03306,-0.0813 0.01654,-0.08131 0.02893,-0.07717 0.0303,-0.08544 0.02342,-0.100598 0.03721,-0.104729 0.03996,-0.124023 0.07992,-0.270097 0.04548,-0.143316 0.04548,-0.130912 0.03858,-0.103354 0.03447,-0.08544 0.03443,-0.05788 0.01242,-0.03305 -0.01242,-0.01101 0.0014,0.0096 -0.0014,0.01101 -0.0055,0.01101 0.0014,0.0041 -0.01517,0.0041 -0.0097,-0.0014 0.0097,-0.0041 h 0.0055 l 0.0041,-0.0041 -0.01242,-0.0041 0.0041,-0.0069 -0.0041,0.0083 -0.01101,0.01242 -0.01238,0.01242 -0.01792,0.02618 -0.0303,0.05237 -0.03172,0.0689 -0.01655,0.07717 -0.02618,0.07304 -0.02618,0.07028 -0.0193,0.05926 -0.0083,0.05237 -0.02067,0.05512 -0.01792,0.07304 -0.0096,0.06339 -0.0248,0.05237 -0.02617,0.0565 -0.02755,0.04548 -0.0193,0.03721 -0.03858,0.02755 -0.02067,0.03859 -0.0028,0.04134 -0.02205,0.03443 -0.0248,0.03583 -0.03306,0.0303 -0.01242,0.02342 0.02067,0.02618 0.0096,0.02342 -0.0014,0.01101 0.0028,0.0193 -0.0041,0.02893 -0.0014,0.03721 -0.0083,0.04134 -0.0097,0.04272 -0.0096,0.03583 v 0.01792 l -0.0055,0.02342 -0.01517,0.03583 -0.03583,0.04548 -0.03305,0.04961 -0.0083,0.04823 -0.0096,0.0441 -0.0248,0.03721 -0.0193,0.04272 -0.03447,0.0689 -0.01792,0.03447 -0.01101,0.02342 -0.0096,0.0248 -0.0028,0.02067 -0.0097,0.01517 -0.01101,0.01379 0.0014,0.01655 0.0041,0.01654 -0.01242,0.01792 -0.0083,0.02755 -0.0069,0.02755 -0.01379,0.03996 -0.0083,0.03996 -0.01517,0.02067 0.0014,0.01517 -0.0096,0.03168 -0.01379,0.04823 -0.0069,0.04547 -0.0055,0.03171 -0.01242,0.02067 -0.01238,0.02617 -0.01379,0.02205 -0.01379,0.02893 -0.02067,0.02205 -0.01379,0.01792 -0.0193,0.01379 -0.0193,0.02205 -0.01242,0.02618 -0.02618,0.02617 -0.02755,0.02618 -0.0193,0.02755 -0.01792,0.03168 -0.01792,0.03447 -0.01792,0.02617 -0.02342,0.0303 -0.01101,0.03171 0.01379,0.03168 v 0.03721 l -0.01101,0.03996 -0.0055,0.03305 -0.01242,0.03447 -0.02342,0.02342 -0.01517,0.02893 -0.02205,0.02067 -0.02067,0.02893 -0.02893,0.03721 -0.02205,0.02755 -0.0248,0.02205 -0.01792,0.02205 -0.02342,0.0303 -0.02618,0.03859 -0.03859,0.04823 -0.02205,0.03859 -0.0083,0.01655 -0.0055,0.01654 0.0083,0.01516 -0.0069,0.01929 -0.0028,0.02479 -0.0055,0.01791 -0.0055,0.01654 0.0014,0.02342 -0.0069,0.02066 -0.0014,0.01929 -0.0055,0.02341 -0.01517,0.02617 -0.02342,0.03443 -0.0248,0.04134 -0.0303,0.02755 -0.01517,0.03305 -0.01792,0.02893 -0.01792,0.02479 -0.01101,0.01516 0.0069,0.01378 v 0.01929 l -0.02342,0.0096 -0.0096,-0.0069 h 0.0028 l 0.01101,-0.0041 0.0055,0.01241 -0.02342,0.01654 -0.0083,0.02342 v 0.02066 l 0.0083,0.02341 -0.0055,0.0303 -0.01379,0.04272 -0.0083,0.04548 -0.0083,0.03443 -0.0069,0.03171 -0.0055,0.02893 0.0014,0.0096 -0.0041,0.0069 -0.0248,0.01791 -0.0193,0.02617 0.01654,0.0096 -0.0028,0.0083 -0.0069,0.01101 0.01101,0.0041 -0.0041,0.01378 -0.0096,0.02341 -0.0083,0.02342 -0.01379,0.01929 -0.01654,0.01379 -0.0014,0.02617 0.0028,0.02066 -0.0041,0.02066 -0.01101,0.04961 -0.0069,0.01929 -0.03306,0.02204 -0.01242,0.02204 0.02342,0.02204 -0.0014,0.02479 -0.0193,0.03306 -0.01517,0.03996 -0.02205,0.03443 -0.02205,0.03171 -0.0083,0.03306 -0.01101,0.02204 -0.01792,0.02755 -0.0193,0.03721 -0.02205,0.02617 -0.01101,0.02893 -0.0096,0.02342 -0.01101,0.01516 -0.01792,0.01378 -0.01101,0.01516 -0.0055,0.01791 -0.01655,0.01516 -0.0069,0.01516 -0.0041,0.0028 0.0069,0.03447 -0.01379,0.0083 -0.0069,0.01929 -0.0055,0.01791 -0.01517,0.02204 -0.0083,0.02893 -0.01379,0.03996 -0.01517,0.03859 -0.02067,0.03447 -0.02067,0.03168 -0.0055,0.03168 -0.01792,0.02893 -0.03996,0.03447 -0.03168,0.03996 -0.02067,0.02479 -0.02893,0.01791 -0.0193,0.02893 -0.0014,0.02479 0.0014,0.01516 -0.01379,0.01238 -0.01792,0.02341 -0.01242,0.01929 -0.0055,0.01791 -0.01101,0.01654 0.0014,0.02066 0.0041,0.01238 0.01101,0.0097 -0.0055,0.0096 v 0.02479 l -0.0083,0.02893 -0.0083,0.02755 0.0055,0.03583 -0.0069,0.02893 -0.01517,0.02479 -0.04272,0.02342 -0.01242,0.03306 0.03168,0.02204 v 0.0303 l -0.01242,0.03447 -0.01242,0.0303 -0.01517,0.02204 -0.01379,0.02342 -0.01517,0.02204 -0.0069,0.0303 -0.0041,0.03305 -0.0055,0.01929 -0.0041,0.0083 0.0028,0.01241 0.01101,0.01516 0.01101,0.03168 -0.01379,0.03721 -0.0014,0.0303 0.0055,0.03031 0.0083,0.02755 0.0096,0.01791 0.01379,0.02066 0.0069,0.02342 -0.0083,0.02479 -0.0028,0.01791 -0.0041,0.02617 -0.0014,0.03447 -0.0096,0.02204 -0.0083,0.01516 v 0.02893 l 0.0014,0.02755 0.0028,0.02617 -0.0069,0.01791 h -0.0193 l -0.0096,0.0069 0.0069,0.01379 -0.0041,0.01929 0.0014,0.0303 -0.0055,0.02755 -0.0069,0.02204 v 0.01241 l 0.0014,0.01516 0.0014,0.02341 -0.0069,0.02204 v 0.04961 l 0.0014,0.02755 v 0.02617 l -0.0069,0.02341 -0.01517,0.03168 -0.0096,0.03306 v 0.04088 l -0.01379,0.02617 0.0014,0.01791 0.02342,0.01654 0.0055,0.01791 0.0028,0.01654 0.0069,0.01379 v 0.02204 l -0.0014,0.02066 -0.0028,0.0055 0.01242,0.0013 0.0083,0.0083 0.0083,0.01378 0.0069,0.01241 -0.0014,0.01791 0.0041,0.02204 0.0055,0.02893 0.0069,0.03583 -0.0014,0.03168 -0.0028,0.04134 0.0069,0.0303 0.02342,0.02617 0.0014,0.03168 0.0069,0.02617 0.0083,0.0013 -0.0028,0.0028 0.0041,0.0069 0.0069,0.0028 -0.0028,0.0083 0.01242,0.01929 0.01517,0.02893 0.0083,0.01929 0.0069,0.02066 0.01792,0.03168 0.01654,0.03172 0.01242,0.04134 0.01379,0.04823 0.01242,0.03721 0.01242,0.0303 0.0041,0.02066 -0.0041,0.01929 -0.0041,0.0055 0.0028,0.0041 0.01242,0.01101 v 0.01238 l 0.01101,-0.0055 -0.0014,0.0013 -0.0083,-0.0028 -0.0028,0.0069 0.0028,0.0041 0.0096,0.01654 0.01242,0.01378 v 0.0083 l 0.0055,0.01238 0.0055,0.01378 -0.01379,0.01241 0.0055,0.01654 0.03859,0.0083 0.01792,0.0096 -0.0096,0.01241 0.0028,0.0096 0.0096,0.0096 -0.0083,0.0055 0.0041,0.01378 0.0193,0.0096 0.0014,0.01516 0.0096,0.0083 0.0041,0.0096 0.0055,0.01241 0.02067,0.01929 0.0014,0.01654 -0.0096,0.02479 -0.0041,0.02204 0.0055,0.01241 0.0069,0.01654 v 0.02066 l 0.02893,0.01654 0.02067,0.0041 -0.02205,0.0028 -0.0055,0.0041 0.0014,-0.0055 0.03583,-0.0083 -0.01654,0.0055 0.0014,0.01516 -0.0014,0.0069 0.0041,0.01516 0.0096,0.01929 v 0.01101 l -0.0014,0.0055 0.0069,0.0028 v 0.0041 l 0.0028,-0.0028 0.0055,-0.0028 0.0069,0.0041 h 0.01101 l 0.0041,-0.0013 h -0.0014 l 0.0055,-0.0013 0.0055,0.0013 0.0055,0.0069 0.0055,0.0083 0.0069,0.0013 0.0055,0.0055 0.0083,0.0096 -0.0014,0.01241 -0.0069,0.0013 -0.0083,-0.0013 0.0028,0.0028 0.0028,0.0013 0.0055,0.0083 -0.01242,0.01101 0.0083,0.01378 0.03168,0.0055 h 0.01792 l -0.01101,0.0083 -0.0028,0.0041 0.0014,0.0096 0.0193,0.01378 0.02067,0.0096 0.0083,0.0083 0.01792,0.01101 0.01379,0.01378 0.03306,0.01101 0.01101,0.01241 0.01792,0.0055 0.01242,0.0041 0.01792,-0.0013 0.01242,0.01101 -0.0041,0.0083 0.0014,0.0055 0.02755,0.0041 0.02893,0.0069 h 0.01379 l 0.01379,0.0041 h 0.0193 l 0.03305,-0.0013 0.02893,0.0069 h 0.01517 l 0.01379,-0.0013 0.01517,0.0069 0.01792,0.0083 0.02342,0.0069 0.01242,0.0083 0.01654,0.01378 0.03172,0.01379 0.03583,0.02204 0.0303,0.02342 0.02893,0.0096 0.01238,0.0028 0.01654,-0.0055 0.01792,-0.0041 0.0193,-0.01101 0.0303,-0.0028 0.03583,-0.0013 0.02342,-0.0069 0.02205,0.0013 0.03172,-0.0055 0.02755,0.0013 0.02342,0.0096 0.02893,0.0028 0.03168,0.0083 0.02618,0.0083 0.03721,0.0083 0.03305,-0.0013 0.02618,-0.0013 0.0014,0.0069 0.0083,0.0041 0.02618,-0.0013 0.02342,-0.0013 0.02618,0.0055 h 0.02618 l 0.02617,-0.0083 0.0193,-0.0083 0.0248,-0.0013 0.0248,-0.0069 h 0.0248 l 0.0248,0.0013 0.0248,-0.0055 0.0248,0.0013 h 0.05099 l 0.03996,0.0013 0.0041,0.01101 0.01379,0.0013 0.02755,0.0055 0.04134,0.0069 0.03721,0.0069 0.01101,0.0083 0.01792,0.0055 0.0303,-0.0013 0.02067,-0.0028 0.02342,0.0055 0.01101,-0.0013 0.01242,0.0055 h 0.02342 l 0.02755,0.0069 0.02755,0.0083 h 0.02755 l 0.01101,0.0069 h -0.0028 l 0.0083,-0.0013 0.03859,0.0041 0.02755,0.0096 0.02067,-0.0013 0.02893,0.0055 0.02205,0.01654 0.0041,0.0096 0.0055,-0.0013 0.01379,0.0028 0.02067,0.0069 0.02067,0.0055 0.01242,0.0069 0.01101,0.0055 0.02342,0.0055 0.0303,-0.0013 0.02893,-0.0013 0.01517,-0.0013 0.02755,-0.0013 0.05374,-0.0013 h 0.03583 l 0.01654,-0.0083 h 0.0303 l 0.02618,0.0013 0.01655,0.0013 0.0303,0.0069 0.04134,0.0013 0.03447,0.0013 h 0.03859 l 0.03168,0.0069 h 0.0248 l 0.02617,0.0069 h 0.02342 l 0.01654,-0.0013 0.0193,-0.0013 0.02342,-0.0013 h 0.04134 l 0.04548,-0.0013 h 0.03306 l 0.01379,0.0013 0.02342,0.0069 0.02618,0.0083 0.05099,0.0013 0.04547,0.0069 0.02893,0.0083 0.02618,0.0069 0.04961,0.01241 0.0303,-0.0013 0.01792,0.0055 0.0055,0.01238 h 0.02617 l 0.03306,-0.0028 0.02893,-0.0013 0.0083,-0.0013 0.01655,-0.0013 0.0372,-0.0013 0.03306,-0.0083 0.03997,-0.01516 0.03443,-0.0083 0.03996,-0.0069 0.03859,-0.01241 0.03168,-0.01378 0.02893,-0.01378 0.02893,-0.0055 0.02755,-0.0028 0.01517,-0.0055 0.0193,-0.0028 0.02205,-0.0055 0.02342,-0.0055 0.03859,-0.0055 h 0.02342 l 0.01654,-0.0055 0.0014,-0.0069 h 0.01242 l 0.0303,0.0013 0.01792,0.0013 0.01517,0.0013 0.01238,-0.0069 0.01792,-0.0083 0.03306,-0.0083 0.03171,-0.0083 0.03306,-0.01379 0.04134,-0.01516 0.04272,-0.01516 0.05374,-0.02066 0.04823,-0.02893 0.07993,-0.02066 0.05375,-0.01241 -0.0028,-0.02204 0.01238,-0.0041 0.02342,-0.0083 0.03306,-0.0097 0.01655,-0.0041 v -0.0041 l -0.0028,-0.0013 v 0.0013 l 0.0096,0.0013 0.0069,-0.0055 -0.04961,0.0041 0.01379,-0.01241 0.06339,-0.0013 0.0193,-0.01929 0.01238,-0.0041 0.0193,-0.0055 0.03583,-0.01378 0.0303,-0.0069 0.02755,-0.0055 0.0441,-0.0055 0.0303,-0.0055 0.02205,-0.01238 0.03305,-0.01241 0.03306,-0.01516 0.0248,-0.0069 0.0193,-0.0041 0.02067,-0.0041 0.02893,-0.0055 0.02617,0.0028 -0.05926,0.0028 h 0.01242 l 0.0937,-0.0028 0.04823,-0.0013 0.02755,-0.0069 0.02755,0.0041 0.0303,0.0013 0.0193,-0.0069 0.01242,-0.0069 0.02067,-0.0083 0.02342,-0.0083 0.02342,-0.0069 0.01792,-0.01516 0.01654,-0.0069 0.02342,-0.0055 0.02067,-0.0055 0.01101,-0.0055 0.01517,-0.0041 0.01792,-0.0055 -0.01517,0.0028 0.02755,-0.0041 0.07717,-0.01929 0.05099,-0.01929 0.03306,-0.01378 0.0303,-0.02066 0.03721,-0.02204 0.07717,-0.02755 0.06339,-0.02342 0.01792,-0.02204 0.02893,-0.01378 0.03996,-0.0083 0.03721,-0.01654 0.03858,-0.0097 0.03721,-0.01791 0.0303,-0.01101 0.0193,-0.01241 0.02618,-0.0096 0.0303,-0.01929 0.0028,-0.02479 0.0248,-0.01101 0.04685,-0.01101 0.03858,-0.01929 0.03996,-0.0041 0.04134,-0.01101 0.03996,-0.0041 0.0041,-0.0055 0.02067,-0.01516 0.04961,-0.02066 0.05926,-0.02479 0.04961,-0.02066 0.05237,-0.02755 0.04685,-0.02893 0.04272,-0.01929 0.03443,-0.01791 0.03859,-0.01516 0.04134,-0.02479 0.03721,-0.01101 -0.01101,-0.01241 0.01654,0.0013 h 0.06201 l 0.04548,-0.0028 0.02618,-0.0041 -0.0069,0.0028 0.0069,0.0013 h 0.05099 l 0.0193,-0.0083 0.0248,-0.0083 0.01517,-0.0013 0.0028,-0.0083 h 0.0193 l 0.02893,-0.01378 0.02893,-0.01654 0.02755,-0.0069 0.03306,-0.0055 0.03447,-0.01241 0.02755,-0.01378 0.03583,-0.01238 0.03443,-0.0055 0.03721,-0.01101 0.0441,-0.01241 0.06752,-0.02066 0.05926,-0.02204 0.03996,-0.01378 0.03858,-0.01101 0.03306,-0.0028 0.0441,-0.0097 0.0441,-0.01238 -0.01101,-0.01101 0.02342,-0.0069 0.07717,-0.01654 0.05099,-0.01791 0.04272,-0.01791 0.02893,-0.02066 0.0303,-0.01379 0.02618,-0.01101 0.02067,-0.01929 0.03306,-0.01791 0.03168,-0.02066 0.0248,-0.01929 0.04134,-0.01101 0.03583,-0.01791 0.01101,-0.01378 0.01655,-0.0013 0.03583,-0.0083 0.02893,-0.0041 0.03721,-0.0028 -0.02893,-0.01378 0.02617,-0.0055 0.107485,-0.0028 0.06752,-0.0083 0.04134,-0.01241 0.01792,-0.0069 0.03858,-0.02066 0.04823,-0.02342 0.04134,-0.0083 0.02618,-0.01238 0.02205,-0.01929 0.02755,-0.01241 0.03447,-0.0041 0.0248,-0.01101 0.01379,-0.01241 0.01379,0.0041 0.02205,-0.0028 0.01792,-0.0055 0.0303,-0.01241 0.04961,-0.0069 0.04823,-0.01516 0.03583,-0.01516 0.0303,-0.01378 0.03583,-0.02755 0.08544,-0.02893 0.05926,-0.03306 -0.0014,-0.03168 0.01517,-0.0055 0.0248,-0.0055 0.0193,-0.01516 0.01379,-0.0013 h 0.03306 l 0.02205,-0.01241 -0.0055,-0.01379 0.01242,-0.0041 0.01517,-0.0055 0.0041,-0.0055 0.0069,0.0013 0.0441,-0.01101 h 0.03583 l 0.03996,-0.0069 0.0303,-0.01516 0.05925,-0.0069 0.04823,-0.0083 0.01242,-0.01654 0.02617,-0.01654 0.0303,-0.02204 0.0372,-0.02204 0.02893,-0.01241 0.02205,-0.01929 0.02617,-0.01791 0.03168,-0.0041 0.0303,-0.0083 0.03168,-0.01791 0.0248,-0.01241 0.0303,-0.0041 0.03721,-0.01101 0.04823,-0.01241 0.04272,-0.0055 0.03859,-0.0041 0.04272,-0.01241 0.05237,-0.01378 0.04823,-0.02204 0.0303,-0.01516 0.0303,-0.01929 0.03306,-0.02066 0.03583,-0.02066 0.02205,-0.01929 -0.0565,-0.0097 0.0083,-0.0041 0.08682,-0.0041 0.04823,-0.0055 0.01379,-0.01101 0.01242,-0.01654 0.03168,-0.01654 0.07441,-0.01378 0.05236,-0.01516 0.01792,-0.02204 0.03447,-0.01101 0.04548,-0.01929 0.04547,-0.02066 0.0303,-0.0041 0.02617,-0.0096 0.01792,-0.0028 0.0193,-0.01101 0.02755,-0.0041 0.03168,-0.01241 -0.01379,-0.02479 0.02618,-0.01791 0.08268,-0.02066 0.05788,-0.03306 0.03447,-0.03996 0.02893,-0.03583 0.04272,-0.03306 0.06477,-0.03171 0.0565,-0.03168 0.02893,-0.04548 0.05099,-0.03583 0.05237,-0.02479 0.03583,-0.02066 0.03721,-0.01791 0.03996,-0.0055 0.0303,-0.0069 0.02342,-0.0069 0.02617,-0.0096 0.02893,0.0041 0.03721,-0.0041 0.03858,0.0013 0.05375,0.0013 0.0441,-0.0083 h 0.07993 l 0.04685,-0.0083 0.03859,-0.0083 h 0.04134 l 0.04272,-0.0069 0.04272,-0.01516 0.04961,-0.01516 0.02617,-0.01654 0.04272,-0.01929 0.07028,-0.02066 0.05512,-0.01516 0.04134,-0.01101 0.02617,-0.0096 0.03583,-0.01654 0.0689,-0.01791 0.04685,-0.0069 0.0055,-0.01241 0.01517,-0.0013 0.02067,-0.0028 0.05374,-0.0041 0.03172,-0.01378 -0.01655,-0.01791 0.0096,-0.0096 0.02618,-0.01378 0.02755,-0.01379 0.03168,-0.01791 0.03721,-0.01516 0.0441,-0.01238 0.04272,-0.01929 0.03447,-0.02066 0.03721,-0.01238 0.01101,-0.0041 0.02755,-0.0083 0.0689,-0.0096 0.03858,-0.01654 0.01379,-0.01101 0.02067,-0.0028 0.04272,-0.01241 0.08681,-0.01238 0.05374,-0.02479 -0.0083,-0.01929 0.02755,-0.01241 0.04685,-0.01929 0.04134,-0.02066 0.04134,-0.0096 0.01101,-0.02204 0.03583,-0.01516 0.06615,-0.0041 0.03583,-0.01241 0.03305,-0.0083 0.03447,-0.0041 0.01791,-0.0041 0.0028,-0.0041 0.01516,-0.01101 0.0303,-0.01516 0.04134,-0.02204 0.03583,-0.03168 0.03447,-0.02342 0.03305,-0.01929 0.07717,-0.05236 0.03306,-0.02617 0.03583,-0.01654 0.0303,-0.01654 0.02204,-0.0083 0.01929,-0.01378 0.02066,-0.0096 0.0083,-0.01241 0.0069,-0.0028 v -0.0028 l 0.0083,-0.0041 0.01791,-0.0041 0.0083,-0.0083 0.01241,-0.0055 0.01378,-0.01516 0.02204,-0.0069 0.04134,-0.0069 0.02755,-0.01516 0.01378,-0.01378 0.02755,-0.01241 0.02893,-0.02204 0.02617,-0.01378 0.02893,-0.01101 0.03306,-0.01101 0.03168,-0.0041 0.03168,-0.0028 0.01654,-0.0041 0.03305,-0.01101 0.03447,-0.01378 0.03858,-0.01378 0.04685,-0.0069 0.05375,-0.0055 0.0689,-0.01929 0.06477,-0.01516 0.05512,-0.01378 0.08544,-0.01241 0.05374,-0.01378 -0.01654,-0.01101 0.01241,-0.0096 0.03859,-0.01101 0.03858,-0.01378 0.02066,-0.0041 0.0083,-0.0041 -0.0028,-0.0041 0.0055,0.0013 0.0041,0.0028 0.0028,0.0028 0.01791,-0.0055 0.0096,0.0083 h -0.0041 l -0.0028,-0.0013 0.01378,-0.0013 h 0.02066 l 0.02755,-0.0013 h 0.03721 l 0.04686,-0.0013 h 0.09232 l 0.02755,-0.0069 0.03858,-0.0069 h 0.06753 l 0.01241,0.0013 0.0013,0.0013 0.0083,0.0069 0.07304,0.0083 0.04548,0.0013 -0.04134,0.0069 0.0013,0.0083 0.0083,-0.0013 0.01791,0.0041 0.02066,0.0083 0.01929,0.0055 0.01929,0.01378 0.0303,0.0069 0.02342,-0.0013 0.01929,-0.0013 -0.0041,0.0055 0.0069,-0.0013 0.0069,-0.0083 v -0.0013 l 0.0096,-0.0013 h 0.0055 -0.0013 0.09922 l 0.03583,0.02066 -0.100594,-0.0013 -0.0096,0.0097 -0.0013,-0.0041 0.0096,-0.0055 0.02479,0.0055 0.01791,0.0055 0.02204,0.0055 0.0441,0.0069 0.04272,0.01516 0.04685,0.0083 0.04823,-0.0013 0.02893,0.0069 -0.0069,-0.0013 0.0069,-0.0028 0.02617,-0.0028 0.01929,0.0069 0.02204,0.0069 0.04961,-0.0013 h 0.03031 -0.0013 l -0.0013,0.0096 0.01516,0.0096 0.03721,0.0083 0.03996,0.0083 0.0083,0.01929 0.03447,0.01101 0.06201,0.0041 0.05237,0.0055 0.02893,0.0055 0.03721,0.01101 0.0303,0.01516 -0.01929,-0.0013 -0.01378,-0.0028 h 0.0028 l 0.0069,0.0028 0.02066,0.0069 0.02341,0.0028 h 0.02617 l 0.03858,0.0069 h 0.03447 l 0.02204,0.0083 0.0028,0.0083 h 0.0069 l 0.01241,-0.0013 0.02479,0.0055 0.02893,0.0069 0.01929,0.01516 0.03168,0.0069 0.01516,0.0083 0.02893,0.0055 0.06063,0.01791 0.03721,0.01791 0.01791,0.0069 0.02204,0.0097 0.0303,0.01238 0.03858,0.0055 0.04548,0.0028 0.04272,-0.0028 0.03721,0.0041 0.03721,0.0055 0.03583,-0.0013 0.03583,0.0069 0.01654,0.0083 0.02204,0.0069 0.02066,0.0069 0.01654,0.0069 0.0069,0.01379 0.03447,0.0069 0.01378,0.02204 -0.01101,0.01516 0.01379,0.01101 0.01101,0.01101 0.02893,0.01929 0.03447,0.0055 0.02341,0.0041 0.01929,-0.0028 0.01101,0.0028 0.01516,0.0041 0.01654,0.0055 h 0.02479 l 0.01378,-0.0013 0.0096,0.0069 h 0.0097 l 0.0083,0.0069 0.01101,0.01378 0.0055,0.0096 0.0028,0.01378 0.01241,0.0069 0.0069,0.0069 0.01378,0.0055 0.02066,0.01101 0.02341,0.01379 0.02342,0.0069 0.01241,0.01241 0.02479,0.0055 0.04134,0.0041 0.04547,0.0041 0.0441,0.0055 0.01101,0.01654 0.03721,0.0041 0.06477,0.01241 0.03721,0.0083 0.02479,0.01378 0.02342,0.01241 0.02893,0.0055 0.02066,0.0055 0.02617,0.01101 0.02342,0.01379 0.02341,0.0055 0.0303,0.0055 0.03305,0.01101 0.03447,0.0069 0.04548,0.01241 0.04961,-0.0013 0.02342,-0.0028 0.01654,0.0041 0.01929,0.0069 -0.0096,0.0097 -0.0041,-0.0013 0.02893,0.0028 0.0013,0.01378 -0.01654,-0.0028 -0.0013,-0.0055 0.0028,-0.0028 h -0.0013 l 0.0028,-0.0041 h -0.0069 l 0.01791,0.0083 0.02066,-0.0013 h 0.02617 -0.0028 l 0.0041,0.0055 0.02479,0.0013 h 0.03583 l 0.02066,0.0069 0.0055,0.0083 H 89.516 l 0.01929,0.0069 0.01378,0.01516 0.02479,0.0069 0.03306,0.0055 0.0441,0.0055 0.0303,0.01516 0.01791,0.01378 0.02617,0.01929 0.03721,0.02066 0.04823,0.02204 0.04961,0.01929 0.05512,0.01241 0.03996,0.01929 0.02204,0.01101 0.01516,0.0097 0.01654,0.0096 0.01929,0.0028 0.0069,0.01101 0.0069,0.0041 0.01241,0.01101 0.0041,0.01379 0.01929,0.01378 0.02066,0.01238 h 0.03168 l 0.01654,0.0055 -0.0028,0.0055 0.0013,0.0041 0.0069,0.0096 -0.0028,0.0096 0.01379,0.0069 0.02479,0.01101 0.02893,0.0083 0.02479,-0.0013 0.02617,0.0041 0.03443,0.01378 0.06201,0.0055 0.04134,0.0083 0.01929,0.0069 0.01516,0.0055 0.01241,-0.0013 0.0055,-0.0028 -0.01101,0.0055 -0.01516,0.0041 -0.0083,0.0055 0.0069,0.0013 0.01101,0.0069 0.0096,0.02479 0.01929,0.0083 0.01654,0.0055 0.03583,0.0041 0.02893,0.01516 -0.0096,0.01379 0.0069,0.01101 0.0097,-0.0013 0.0041,0.0041 -0.0041,0.0069 0.0028,-0.0028 -0.0028,-0.0041 -0.01378,-0.0013 -0.01929,0.0055 -0.0069,0.0055 -0.01791,0.0069 -0.01929,0.0013 v 0.01101 l -0.01378,0.0055 -0.02893,0.01516 -0.03721,0.02342 -0.02204,0.02204 -0.0069,0.0096 0.0028,-0.0055 h 0.0013 l 0.0083,-0.0041 0.01241,-0.01241 0.01516,-0.0028 v -0.01516 l 0.0041,-0.0055 0.0055,0.0028 -0.0028,-0.0055 -0.02341,0.0041 0.01516,0.0028 0.02066,-0.0055 0.0041,-0.0055 -0.0013,-0.0041 0.01241,-0.0013 0.06063,0.0055 0.0565,0.0013 0.0013,-0.01238 0.01791,0.0028 -0.0041,0.01101 -0.01378,0.0028 h -0.0083 l -0.01516,0.0028 -0.01378,-0.0041 -0.03859,-0.02204 -0.05374,-0.04685 -0.05788,-0.05237 -0.03447,-0.0372 -0.0028,-0.0069 0.01791,0.0055 0.01654,0.0041 0.01101,0.0096 -0.0083,0.0013 0.05512,0.0028 0.02066,0.0041 -0.02617,0.0069 -0.01516,0.0013 -0.01101,-0.0013 -0.0069,-0.0013 -0.0013,-0.01516 h 0.0096 l -0.0041,0.0055 -0.0041,0.0028 -0.0096,0.0013 0.0083,-0.0028 0.04823,-0.0069 0.08268,-0.0083 0.07992,-0.0028 0.05788,0.0055 0.03858,0.01654 0.03996,0.01791 0.01929,0.0096 0.01241,0.0083 0.01929,0.0055 0.01241,-0.0028 -0.0028,0.0055 -0.0041,-0.0041 0.0055,-0.0028 0.01929,-0.0028 0.02479,-0.0096 0.01654,0.0069 0.02066,0.0083 0.01516,0.0013 -0.0013,0.01379 0.02893,0.01654 0.04961,0.02204 0.04272,0.03447 0.04548,0.02342 0.05926,0.02617 0.03168,0.02342 -0.0096,0.01791 0.01101,0.0055 0.01791,-0.0013 h 0.0565 l 0.03306,-0.01101 0.04134,-0.01101 0.04272,-0.0028 h 0.03996 l 0.01929,0.0028 0.0055,0.0028 0.0083,0.0013 0.03858,0.01929 0.0013,0.01654 0.02204,0.02066 0.03447,0.02204 0.04547,0.02204 0.05512,0.02066 0.03859,0.02204 0.03858,0.0096 0.0441,0.0083 0.03305,0.0028 0.02066,0.0013 -0.01929,-0.0041 0.0041,-0.0041 0.04134,-0.0041 0.02342,0.0041 0.01516,0.0013 -0.0028,0.0013 0.0013,0.0069 0.01929,0.0013 0.01929,0.0083 0.02617,0.0096 0.02617,0.0069 0.03583,0.01378 0.03721,0.0083 0.03443,0.0055 0.104733,0.01101 0.04134,-0.0028 0.03443,-0.0013 0.03306,0.0041 h 0.0013 l 0.0096,0.0055 h 0.0565 l 0.0303,0.0097 0.0013,0.0083 h -0.01791 l -0.0083,0.0041 0.02204,-0.0013 -0.0096,-0.0013 -0.02341,0.0069 h -0.0013 l 0.0055,-0.0013 0.04272,0.0097 0.02617,0.0303 -0.0055,0.01654 0.03168,0.03168 0.01516,0.01378 0.01929,0.01929 0.01241,0.01929 0.01791,0.01929 0.02617,0.01791 0.02066,0.01929 0.01378,0.0041 0.02066,0.0069 0.01378,0.0041 -0.01929,0.0028 -0.0013,0.0041 -0.0013,0.0013 0.0055,0.0069 0.01654,0.01516 0.03583,0.0069 0.02755,0.02342 0.0096,0.01791 0.01654,0.01791 0.01241,0.01379 0.01929,0.0055 0.03168,0.0083 0.01241,-0.0028 0.01378,-0.0041 0.03447,0.0096 0.02755,-0.0013 0.0097,-0.0013 -0.0069,0.0055 0.0041,0.0069 0.02755,0.0013 0.0096,0.01101 0.0097,-0.0013 0.0069,0.0041 0.01929,0.0083 0.04823,0.0055 0.03721,0.0083 0.01654,0.0083 0.02617,0.0055 0.02479,0.01378 0.03306,0.0069 0.02617,0.0055 0.0083,0.01378 0.01241,0.01238 0.01379,0.01241 0.01654,0.01378 0.01929,0.0055 0.01238,0.0055 0.0097,0.01101 0.0303,0.01101 0.01791,0.0083 -0.0028,0.0055 0.01379,0.0028 0.01929,-0.0013 0.04823,0.0013 0.03859,0.0083 h 0.0083 l 0.01516,0.0055 0.02342,0.0069 0.02755,0.0083 h 0.01791 l -0.0069,0.0069 0.01241,-0.0013 0.02893,0.0041 h 0.0069 -0.0041 l 0.01101,-0.0013 0.0028,-0.0013 h -0.02479 0.0028 -0.01516 0.07992 l 0.02893,-0.0083 0.03721,-0.0069 h 0.08544 l 0.03168,0.0028 0.03446,0.0083 0.03031,0.0013 0.01378,0.0096 0.0096,0.0069 h 0.01101 l 0.02066,0.0055 0.01101,0.0069 -0.0055,0.0069 0.01241,0.01101 0.02066,0.0069 0.02479,0.0055 0.0303,0.01379 0.0303,0.01516 0.03443,0.01238 0.03583,0.01378 0.02755,0.0069 0.02893,0.01791 0.01791,0.01516 0.02893,-0.0028 h 0.05512 l 0.04823,-0.0028 0.02066,-0.0028 0.0083,-0.0083 0.0041,-0.0028 0.04823,-0.0013 0.0097,0.0013 -0.06615,0.0013 -0.02204,0.01516 -0.01378,-0.0013 -0.0083,-0.0013 0.0041,-0.0013 0.0069,-0.0013 v -0.0013 h 0.01238 l 0.0055,-0.0013 0.0096,0.01101 0.02066,0.01654 0.01654,0.02617 0.02066,0.01241 0.0041,0.01238 0.0097,0.01241 0.05236,-0.0028 0.0303,0.0041 -0.03996,-0.0041 0.0041,0.0041 0.0096,-0.0028 0.01379,0.0041 h 0.02479 l -0.0083,0.0069 0.01654,0.0069 h 0.128158 l -0.0055,0.0069 0.0028,0.0013 0.02893,-0.0013 0.02479,0.0083 0.01516,0.0083 0.01101,0.0055 h 0.01791 l 0.01238,0.0055 0.02341,0.0069 0.03447,0.0055 h 0.02479 l 0.01238,-0.0013 0.02066,-0.0028 0.03168,-0.0083 0.0303,-0.0013 h 0.06339 l 0.03305,-0.0069 0.03168,0.0083 0.03168,0.0013 0.02342,0.0013 0.02755,0.0069 0.0303,0.0013 0.01791,0.0083 0.01929,0.0069 0.02342,0.0069 0.02341,0.01378 0.02617,0.0069 0.0097,0.01378 0.01654,0.0069 0.0083,0.01101 0.0096,0.01929 0.01929,0.01516 0.03305,0.0041 0.03168,0.01241 0.01378,0.02066 0.01791,0.01241 0.01654,0.0041 0.01791,0.0041 0.01101,0.01101 -0.0055,0.0069 -0.0055,-0.0041 0.0041,-0.0028 0.01516,-0.0028 0.01241,-0.0028 h 0.0041 l 0.01238,-0.0013 0.06064,-0.0303 0.03858,-0.01516 0.01101,-0.0096 0.01929,-0.0096 0.04272,-0.01101 0.01929,-0.01791 0.0069,-0.0013 0.0097,0.0041 0.01654,0.0055 0.02893,0.0028 0.0083,0.01241 -0.0096,0.0013 h -0.0013 v -0.0028 l 0.0083,-0.0028 0.02066,-0.0013 0.02066,-0.0096 0.01929,-0.02341 0.02341,-0.02479 0.03031,-0.01654 0.0069,-0.01516 0.02066,-0.0096 0.06477,-0.0083 0.03446,-0.0055 -0.02479,0.0069 h 0.0055 l 0.01929,0.0028 0.08131,0.0069 0.0303,0.0028 -0.0565,0.0013 h -0.0069 v -0.0055 l 0.0055,-0.0041 0.02617,-0.0083 0.03171,-0.01101 0.04134,-0.02342 0.03721,-0.01791 0.03721,-0.01516 0.03446,-0.01241 0.02617,-0.0041 0.02755,-0.0096 0.04823,-0.0097 0.03721,-0.0055 0.02893,0.01101 0.03168,0.01241 0.03721,0.01101 0.0441,0.0096 0.03305,0.01654 h 0.0041 l 0.0055,-0.0028 0.02342,-0.0041 0.02893,0.0041 0.02479,0.0041 0.01791,0.0069 0.03168,-0.0013 0.05374,-0.0013 0.0565,-0.0096 0.04548,-0.0013 0.0303,0.0013 h 0.03306 l 0.04823,0.0013 0.04686,-0.0069 0.03721,0.0069 0.02755,0.0013 0.0303,0.0013 h 0.04961 l 0.01654,-0.0013 0.01929,-0.0083 0.02066,-0.0013 0.03306,-0.0069 h 0.01929 l 0.0096,0.0013 0.02204,-0.0055 0.02755,-0.0083 0.02893,-0.01516 0.02617,-0.02204 0.03306,-0.0083 0.02755,-0.01378 0.01654,-0.01241 0.02066,-0.01101 0.01654,-0.02066 0.0303,-0.01929 0.02617,-0.02066 0.01929,-0.02066 0.02204,-0.0028 0.01101,-0.01101 v -0.0083 l 0.01378,-0.0028 -0.0028,-0.0083 0.01378,-0.0013 0.04823,-0.0028 0.02617,-0.0083 0.0055,-0.0055 0.01379,-0.01101 0.01378,-0.0096 0.01791,-0.01378 0.01791,-0.01516 0.01241,-0.02204 0.01101,-0.01516 0.01654,-0.01929 0.0055,-0.02066 0.02341,-0.01791 0.0565,-0.02479 0.03583,-0.0303 0.03447,-0.02479 0.01101,-0.02617 0.02755,-0.02342 0.0441,-0.01516 0.03583,-0.01791 0.01516,-0.01654 0.0069,-0.0083 0.0041,-0.0083 0.0055,-0.0028 0.0083,0.0041 0.0028,-0.0096 0.0096,-0.0055 0.01516,-0.0069 0.01516,-0.0083 0.01378,-0.0055 0.01379,-0.0069 0.02066,-0.0069 0.01516,-0.0083 0.01238,-0.0055 0.01791,-0.01241 0.02066,-0.0303 0.02755,-0.02342 0.04272,-0.01378 0.02893,-0.02066 0.0028,-0.02617 0.02066,-0.02479 0.02479,-0.02755 0.09646,-0.01516 0.03859,-0.02617 -0.05926,-0.01241 0.0096,-0.01929 0.0097,-0.01516 0.01101,-0.0055 h 0.0013 l 0.01791,-0.0028 0.01654,-0.01101 0.0083,-0.02204 0.02755,-0.01378 0.02617,-0.01516 0.02755,-0.02755 0.02066,-0.02893 0.02066,-0.0303 0.02342,-0.02617 0.01929,-0.02755 0.02893,-0.02342 0.03447,-0.02342 0.05236,-0.0303 0.03172,-0.03447 0.0013,-0.03306 0.01654,-0.01378 0.02204,-0.01516 0.0028,-0.0013 -0.0028,-0.0028 -0.01516,-0.0013 0.0083,-0.0097 0.02893,-0.0041 h 0.02479 l 0.01516,-0.0041 -0.0069,-0.01516 0.01929,-0.02204 0.0372,-0.0097 0.01791,-0.01791 0.01516,-0.0096 0.01929,-0.01379 0.02617,-0.02755 0.01241,-0.02342 0.0096,-0.02617 0.02341,-0.02617 0.01929,-0.03447 0.02617,-0.02617 0.02617,-0.02341 0.01929,-0.02479 0.02342,-0.02204 0.02617,-0.02341 0.01929,-0.02479 0.0303,-0.01516 0.02755,-0.0083 0.02341,-0.0083 0.03721,-0.01516 0.04823,-0.01929 0.03168,-0.0055 -0.0069,-0.0069 h -0.0013 l 0.0069,-0.01241 -0.0069,-0.01516 0.0069,-0.0055 0.01379,-0.02066 0.0069,-0.02204 0.01516,-0.02755 0.01654,-0.02479 0.02204,-0.02617 0.01516,-0.02617 0.02066,-0.02617 0.03996,-0.0303 0.03306,-0.03443 0.02755,-0.02479 0.0013,-0.02342 0.01379,-0.02066 0.03996,-0.03996 0.0096,-0.01516 0.01516,-0.01516 0.0055,-0.01238 0.0013,-0.0083 0.0096,-0.0096 0.01378,-0.01791 0.01241,-0.02755 0.02893,-0.03583 0.03168,-0.03996 0.03721,-0.03583 0.02893,-0.04134 0.03306,-0.03996 0.04,-0.05237 0.0345,-0.04823 0.0234,-0.04548 0.0207,-0.02066 0.007,-0.0028 -0.0124,0.0083 -0.005,0.0083 0.001,-0.0055 0.011,-0.0096 0.0152,-0.0055 10e-4,-0.0097 0.005,-0.0055 0.0152,-0.0069 0.022,-0.02204 0.0152,-0.0303 0.0234,-0.02617 0.0358,-0.02204 0.0165,-0.02204 0.01,-0.02342 0.01,-0.02617 0.01,-0.01929 0.062,-0.02066 0.022,-0.03172 -0.0496,-0.0069 h -0.003 l -0.0193,-0.0013 -0.004,0.0028 -0.001,0.0041 0.01,-0.0097 0.01,-0.0055 0.005,-0.02341 0.011,-0.02755 0.011,-0.01101 0.007,-0.0041 0.0124,-0.01654 0.0275,-0.01929 0.0248,-0.03171 0.0289,-0.02755 0.0275,-0.03447 0.0276,-0.03583 0.0579,-0.03721 0.0248,-0.04685 -0.0234,-0.03859 0.008,-0.02617 0.008,-0.01654 0.007,-0.0083 -0.005,-0.01654 -0.007,-0.02755 -10e-4,-0.0083 0.008,-0.0083 10e-4,-0.01241 0.008,-0.01101 0.0165,-0.02617 0.011,-0.03305 0.022,-0.03583 0.0303,-0.0441 0.0386,-0.0441 0.022,-0.04961 0.0331,-0.03996 0.0248,-0.03721 0.0165,-0.04272 0.0152,-0.02755 0.007,-0.02067 0.005,-0.01517 0.001,-0.0055 -0.0152,0.0028 -0.006,-0.0041 0.007,-0.0028 v -0.02605 l -0.007,-0.01654 -0.007,-0.01792 v -0.01517 l 0.003,-0.01517 -0.005,-0.01792 v -0.02068 l 10e-4,-0.01517 -0.007,-0.01101 -0.007,-0.02893 v -0.03721 l 0.001,-0.03168 v -0.03721 l -0.007,-0.03447 -0.008,-0.03306 -0.007,-0.03721 -0.008,-0.03858 0.01,-0.0303 0.001,-0.03583 -0.005,-0.02893 -0.0289,-0.02755 -0.003,-0.01792 0.0152,-0.01792 0.004,-0.01517 0.0165,-0.0055 0.003,-0.0083 0.001,-0.0096 -0.001,-0.01101 0.005,-0.0193 0.007,-0.01517 0.007,-0.0193 -0.001,-0.01517 0.0124,-0.02617 0.008,-0.0303 0.007,-0.03583 0.005,-0.02755 0.0138,-0.0193 0.0207,-0.02755 0.022,-0.03859 0.0372,-0.02617 0.0303,-0.03168 0.0193,-0.03168 0.0248,-0.03583 0.01,-0.03443 0.0289,-0.03583 0.0262,-0.03168 0.01,-0.03168 0.0152,-0.02067 0.01,-0.01379 0.008,-0.01242 0.01,-0.02067 0.0248,-0.0248 0.0165,-0.02067 -0.011,-0.01792 -0.005,-0.01101 0.011,-0.0014 0.007,-0.0097 0.005,-0.0096 0.0138,-0.01101 0.008,-0.02342 -0.008,-0.01517 0.006,-0.02618 -0.001,-0.03171 0.007,-0.02755 0.0138,-0.0248 0.0234,-0.03306 0.0234,-0.04685 0.0303,-0.04272 0.0303,-0.04823 0.0275,-0.04548 0.011,-0.04547 0.0234,-0.03583 0.0234,-0.02618 10e-4,-0.02067 -0.007,-0.0083 -0.001,-0.0028 -0.005,-0.01238 -0.0262,-0.0069 -0.004,-0.0069 0.0138,-0.0014 0.011,-0.0041 0.01,-0.0041 h 0.003 l -0.003,-0.0014 -0.003,-0.0096 -0.001,-0.01379 0.007,-0.02755 0.0165,-0.08544 0.0165,-0.02617 0.0207,-0.02342 0.008,-0.03859 0.0124,-0.05236 0.0207,-0.06477 0.0138,-0.0441 0.0262,-0.0193 0.011,-0.02205 -0.0262,-0.01655 -0.008,-0.01242 0.003,-0.0055 -0.003,-0.0041 -10e-4,-0.0055 -0.0138,-0.01101 v -0.0083 l 0.007,0.0028 0.01,-0.0041 h 0.0138 l 0.007,0.0014 -0.01,0.0055 -0.004,-0.0014 -0.005,-0.0014 -0.006,-0.0028 0.01,-0.01792 0.01,-0.03172 0.0165,-0.03996 0.0262,-0.0441 0.0248,-0.03305 -0.001,-0.01379 -0.004,0.0028 -0.0138,0.01101 0.005,0.0193 0.0152,0.0083 -0.0165,0.0069 -0.01,0.01792 -0.0179,0.01792 -0.003,0.04134 0.0179,0.06201 -0.005,0.05788 0.001,0.0565 -0.0138,0.04547 -0.0152,0.04134 v 0.04685 l -0.007,0.06064 -0.0138,0.05237 -0.0152,0.04823 -0.0207,0.05925 -0.0138,0.06477 -0.0289,0.06477 -0.0138,0.07028 -0.0248,0.08406 -0.0427,0.08819 -0.0289,0.08682 -0.01,0.06339 0.008,0.04134 0.003,0.02893 0.0234,0.0303 v 0.02617 l -0.0276,0.02893 -0.01,0.03447 -0.0179,0.02755 -0.008,0.03583 -0.008,0.03306 -0.005,0.03859 -0.0138,0.04685 -0.0207,0.07579 -0.007,0.08406 -0.0193,0.08681 -0.0275,0.08957 -0.022,0.08268 0.004,0.06201 -0.001,0.04134 0.007,0.01517 0.0124,0.0041 0.005,-0.0069 -0.005,-0.01792 -0.005,-0.01379 -0.011,-0.0083 -0.004,-0.0041 -0.005,0.0014 h 0.0138 l 0.0165,0.0028 0.004,-0.01379 0.01,0.0041 0.0207,0.0096 0.01,0.01242 0.004,0.0028 0.004,0.0014 -0.003,0.0055 -0.003,0.0069 -0.007,0.0041 -0.004,0.0055 -0.0207,0.0069 h -0.0124 l 0.01,-0.0014 0.005,0.0055 -0.005,0.01101 -0.006,0.0193 -0.001,0.02755 v 0.02755 l -0.007,0.02618 -0.007,0.02755 -0.0152,0.03305 -0.008,0.03583 0.001,0.02618 -0.006,0.02205 0.001,0.0097 0.003,0.0041 -0.004,0.0041 v 0.0028 h 0.007 l 0.008,0.01654 0.001,0.0248 -0.022,0.02205 -0.011,0.02205 0.005,0.02067 -0.007,0.02067 -0.0138,0.02755 v 0.03443 l -0.0138,0.03306 -0.007,0.02893 -0.005,0.01654 0.003,0.01379 h -0.005 l 0.005,-0.0096 v -0.0083 l 0.004,-0.0055 0.0152,-0.0041 v -0.01101 l 0.005,-0.01379 0.0152,0.0014 0.0152,-0.01242 0.005,-0.0303 0.0262,-0.04548 0.0317,-0.0565 0.0289,-0.05374 0.0345,-0.06064 0.0193,-0.07028 0.0165,-0.06201 0.008,-0.06339 0.0138,-0.05512 0.008,-0.03996 0.001,-0.02755 10e-4,-0.0248 -0.004,-0.04134 -0.004,-0.03721 -0.01,-0.02893 -10e-4,-0.03168 10e-4,-0.0441 -0.005,-0.04686 0.001,-0.06063 10e-4,-0.06477 -0.005,-0.06201 v -0.06615 l 0.01,-0.06615 10e-4,-0.07717 0.0165,-0.157095 0.007,-0.0689 -0.001,-0.07166 0.0138,-0.07304 0.007,-0.06752 -0.0165,-0.06339 -0.0124,-0.05099 -0.003,-0.04134 -0.001,-0.04134 -0.007,-0.02893 -0.007,-0.02205 -0.005,-0.02342 -0.007,-0.02617 -0.005,-0.03583 -0.005,-0.03996 -0.0124,-0.04134 v -0.03451 l -0.004,-0.05099 -0.005,-0.0565 0.001,-0.04961 -0.005,-0.05099 -0.007,-0.05788 v -0.06615 l -0.0138,-0.05926 -0.0152,-0.0565 -0.008,-0.05375 0.001,-0.06063 -0.004,-0.06201 0.001,-0.05512 0.003,-0.04685 -0.005,-0.03859 v -0.03583 l 0.008,-0.03171 0.01,-0.03168 v -0.03721 l -0.001,-0.02067 -0.001,-0.01655 -0.008,-0.02755 -0.008,-0.04134 -0.01,-0.03858 -0.008,-0.02893 -0.007,-0.03583 -0.0124,-0.04685 -0.0152,-0.0441 -0.0289,-0.03721 -0.007,-0.03858 0.0193,-0.03583 -0.008,-0.02755 -0.0124,-0.0193 0.008,-0.02617 0.004,-0.0303 0.0165,-0.02755 0.003,-0.03168 -0.007,-0.0441 0.005,-0.04272 0.007,-0.04272 -0.01,-0.0303 -0.0179,-0.01517 0.004,-0.01792 v -0.02068 l -0.0413,-0.01379 -0.0372,-0.0014 -0.0179,-0.01654 0.0124,-0.01792 -0.004,-0.02342 -0.0372,-0.0193 -0.008,-0.02618 -0.004,-0.02755 0.004,-0.01792 0.005,-0.02342 0.0193,-0.0248 -0.004,-0.02205 -0.0276,-0.02205 0.004,-0.02755 -0.01,-0.02617 -0.008,-0.01654 v -0.0083 l -0.005,-0.02755 -0.022,-0.02618 -0.0634,-0.05512 -0.0289,-0.02618 -0.0138,-0.0248 -0.0289,-0.02342 -0.0331,-0.01654 -0.007,-0.0055 0.003,-0.0041 0.003,-0.0069 0.008,-0.0096 -0.001,-0.01101 0.003,-0.0069 0.008,-0.01101 -0.005,-0.02067 0.005,-0.01517 -0.001,-0.0096 -0.008,-0.02342 -0.0165,-0.03583 -0.0124,-0.03447 v -0.02758 l -0.0138,-0.0303 -0.0152,-0.0193 -0.022,-0.01517 -0.0138,-0.02205 0.003,-0.01792 -0.01,-0.01379 0.004,-0.0083 0.004,-0.0028 h 0.003 l 0.003,-0.0083 0.001,-0.01379 -0.008,-0.0083 -0.008,-0.01238 v -0.02205 l -0.0234,-0.02342 -0.001,-0.01517 0.0275,-0.01101 0.007,-0.02067 -0.0193,-0.01101 -0.0165,-0.01792 -0.003,-0.02893 v -0.01379 l 0.001,-0.0069 -0.0124,-0.0083 -0.01,-0.0055 v -0.0041 l 0.003,-0.0028 -0.011,-0.0083 0.007,-0.01379 h 0.004 l -0.0124,-0.0055 -0.003,-0.01101 v -0.02067 l -0.005,-0.0041 -0.0165,-0.0041 0.007,-0.0069 0.0165,-0.01242 -0.004,-0.01238 v -0.03583 l 0.008,-0.0083 v -0.01101 l -0.01,-0.0041 -10e-4,-0.0055 -0.01,-0.01101 v -0.01238 l -0.022,-0.01242 V 81.7686 l 0.0165,-0.0069 0.011,-0.0041 0.006,0.0028 -0.0179,-0.0028 v 0.0028 l 0.04,0.0014 0.0289,-0.01379 0.01,-0.01517 0.0193,-0.0083 h 0.0138 l 0.01,0.0096 0.007,0.0083 0.003,0.02342 0.01,0.03168 0.0207,0.03447 0.0138,0.03168 -0.001,0.03583 -0.011,0.03305 0.003,0.03859 0.0207,0.0441 0.0165,0.04134 0.01,0.03171 -0.01,0.02618 0.0124,0.0193 0.0345,0.02342 0.001,0.03168 -0.0179,0.01792 -0.001,-0.0097 -0.007,-0.0096 -0.003,-0.0014 0.005,-0.0055 -0.004,-0.0028 V 82.1585 l 0.001,-0.01379 0.001,-0.02755 -0.0152,-0.02893 -0.001,-0.03447 0.001,-0.02893 v -0.01792 l 0.008,-0.01242 -0.005,-0.0096 V 81.9215 l 0.001,-0.0193 -0.008,-0.01792 V 81.7892 l -0.007,-0.03168 v -0.03583 l -0.007,-0.03305 -0.001,-0.0193 -0.0207,-0.01379 -0.01,-0.01517 0.0234,0.0014 0.004,-0.0028 -10e-4,0.0083 -0.011,0.0055 -0.007,0.0041 0.008,0.0014 h -0.001 l 0.008,-0.0055 0.004,-0.0041 0.003,-0.0193 -0.007,-0.01792 h -0.0124 l -0.01,-0.0083 10e-4,-0.01379 0.003,-0.01242 0.001,-0.01101 0.001,-0.01242 0.008,-0.0193 0.001,-0.01517 -0.007,-0.0193 -0.008,-0.02067 -0.001,-0.02755 0.007,-0.02618 10e-4,-0.02755 v -0.0193 l -0.007,-0.0083 -0.001,-0.0083 -0.008,-0.0041 v -0.0083 l -0.007,-0.01242 0.001,0.0014 -0.004,-0.0097 -0.007,-0.0193 v -0.02617 l -0.008,-0.03306 -0.0289,-0.02067 -0.001,-0.02893 0.01,-0.02755 0.004,-0.02342 0.003,-0.02342 0.001,-0.03721 -0.0138,-0.04272 -0.0248,-0.03443 -0.0165,-0.03721 -0.0303,-0.0441 -0.04,-0.03306 -0.0303,-0.02205 -0.0262,-0.0193 -0.0248,-0.0193 -0.0152,-0.02893 -0.007,-0.02342 -0.005,-0.01654 -0.007,-0.01517 -0.001,-0.01654 -0.01,-0.01655 -0.0124,-0.01101 -0.0138,-0.01101 -0.007,-0.01101 0.001,-0.01101 -0.004,-0.01101 -0.005,-0.01238 -0.0207,-0.01242 -0.0165,-0.02205 -0.008,-0.02342 -0.0193,-0.0193 -0.022,-0.0193 10e-4,-0.02755 -0.011,-0.02067 -0.0234,-0.02205 -0.0152,-0.02755 -0.022,-0.0193 -0.004,-0.02342 -0.003,-0.01792 0.005,-0.0083 -0.008,-0.02067 -0.0275,-0.01792 -0.0193,-0.01517 -0.022,-0.0096 0.0165,-0.01517 -0.008,-0.02067 -0.0372,-0.01101 -0.0179,-0.02893 -0.0179,-0.01654 -0.0193,-0.01655 -0.0179,-0.01792 -0.004,-0.02067 -0.004,-0.01379 -0.0152,-0.01517 -0.007,-0.02067 0.011,-0.01379 0.003,-0.0041 -0.0165,0.0069 -0.003,0.0041 v 0.01101 l -0.001,0.0055 0.004,-0.0028 0.011,-0.0028 -0.0124,-0.0096 -0.011,-0.0097 -0.007,-0.0083 -0.007,-0.0055 -0.005,-0.0083 -0.05099,0.0014 0.0055,-0.01517 0.0565,-0.0028 0.01,0.0014 0.003,-0.0069 -0.0193,-0.0069 -0.0207,0.0014 -0.007,-0.01379 -0.0152,-0.01517 -0.01,-0.01101 -0.02066,0.0028 -0.02066,-0.01242 0.0013,-0.0096 -0.0041,0.0028 -0.0013,0.0028 0.0028,-0.0041 -0.0055,-0.0083 -0.0303,0.0028 -0.01378,-0.0083 0.02204,-0.0055 -0.0028,-0.0083 -0.0083,-0.01101 -0.0013,-0.0096 v -0.0097 l 0.01238,-0.0028 -0.01238,-0.0055 -0.02755,-0.01792 -0.02204,-0.0193 -0.01929,-0.0069 0.0028,-0.0097 -0.01516,-0.01101 -0.03305,-0.0055 -0.02617,0.0041 -0.01378,-0.0055 v -0.0055 l -0.0069,0.0014 -0.02066,-0.0041 -0.02342,-0.0069 h -0.0083 v -0.0055 h -0.0028 l -0.01516,-0.0069 v -0.0083 l -0.01929,-0.0083 -0.01378,-0.0055 v -0.0083 l -0.0055,-0.01379 -0.0041,-0.01101 -0.0055,-0.01517 -0.0069,-0.01517 -0.0069,-0.01242 -0.01378,-0.0055 v -0.01101 l -0.01378,-0.0055 0.0013,-0.0028 -0.01241,-0.0041 -0.0069,-0.0055 0.0028,-0.0055 -0.0055,-0.0069 -0.0055,-0.0041 -0.03996,-0.0055 -0.0303,-0.01792 0.02342,-0.01379 -0.0096,-0.0083 -0.01516,-0.0041 -0.0069,-0.0055 -0.0069,-0.01379 -0.01791,-0.0041 -0.01379,-0.01242 0.0013,-0.02067 -0.01101,-0.02205 -0.01378,-0.01379 -0.01241,-0.0193 -0.0083,-0.01379 -0.0041,-0.01792 -0.0041,-0.01101 -0.0055,-0.0041 -0.0055,-0.0014 -0.0055,-0.0028 -0.0083,0.0041 -0.0041,-0.0041 0.0083,0.0014 0.0041,-0.01238 -0.0096,-0.01379 -0.0028,-0.01101 -0.01101,-0.01101 v -0.0055 l -0.01378,-0.0055 -0.0069,-0.0193 -0.01654,-0.01517 -0.01378,-0.01379 0.0013,-0.01242 -0.01241,-0.0055 -0.03168,-0.01517 -0.03306,-0.02205 -0.03305,-0.01517 -0.01241,-0.0041 -0.0069,-0.0028 V 79.2796 l -0.0013,-0.0069 -0.02617,0.0041 -0.0083,-0.01379 0.01929,-0.01242 -0.0083,-0.0193 -0.0055,-0.01379 -0.01654,-0.01517 -0.0083,-0.02205 -0.01654,-0.0055 -0.01378,-0.01101 v -0.01792 l -0.02617,-0.01242 -0.01516,-0.01242 -0.02066,-0.01101 -0.01379,-0.01238 0.01791,-0.0041 -0.0069,-0.0041 -0.0083,-0.0083 -0.01516,-0.0055 -0.0069,0.0014 -0.0055,-0.0055 0.0083,-0.0055 -0.0028,-0.01379 -0.01238,-0.0014 0.01238,-0.0055 -0.0083,-0.01101 -0.02479,-0.0041 -0.01101,-0.01379 -0.02617,-0.0083 -0.01378,-0.0055 -0.01929,-0.01792 -0.01378,-0.01655 -0.01791,-0.0055 -0.01101,-0.0041 -0.0041,-0.0055 -0.0013,-0.0041 0.0055,-0.0028 -0.0096,-0.0055 -0.01241,-0.0055 -0.02342,-0.0069 -0.0096,-0.0083 -0.0055,-0.0069 0.0083,-0.0041 -0.0096,-0.0069 -0.01791,-0.0055 v -0.0096 l -0.0083,-0.0069 -0.0013,0.0028 -0.0028,-0.0041 -0.01654,-0.01101 -0.03171,-0.01517 -0.03858,-0.0096 -0.02066,-0.01379 -0.01929,-0.0069 -0.0013,-0.01242 -0.0069,-0.0055 -0.01378,-0.0041 -0.0055,-0.0055 -0.0041,0.0028 -0.02066,-0.0083 0.0013,-0.0083 h -0.0041 l -0.01791,-0.0096 -0.01929,-0.0193 -0.0303,-0.01101 -0.02066,-0.0097 0.01654,-0.0193 -0.0083,-0.01517 -0.02342,-0.01101 -0.02342,-0.02067 -0.0083,-0.01792 -0.01101,-0.0096 -0.0041,-0.0083 -0.0041,-0.0041 -0.01101,0.0041 0.0013,0.0055 0.0041,-0.0041 -0.0013,-0.0028 h -0.0083 l -0.0097,-0.01101 -0.01654,-0.0083 h -0.01516 l -0.0055,-0.01242 -0.02204,-0.0083 h -0.0083 l 0.01516,0.0014 v -0.0083 l -0.0069,-0.0083 -0.01378,-0.01517 -0.01791,-0.0193 V 78.5245 l -0.01101,-0.01242 -0.02755,-0.01101 -0.01101,-0.0083 -0.01241,-0.01101 -0.0055,-0.0028 -0.0028,-0.01101 -0.0303,-0.01101 -0.01791,-0.01517 -0.0055,-0.01517 -0.01654,-0.01101 -0.01929,-0.01238 -0.02617,-0.02618 -0.0028,-0.0041 -0.02204,-0.01655 -0.04961,-0.01238 -0.03859,-0.0069 -0.03443,-0.0041 -0.02479,-0.01242 -0.01516,-0.01379 -0.0013,0.0014 -0.0013,0.0041 v -0.0041 l -0.0083,-0.0055 -0.0013,-0.01242 -0.01241,-0.0083 -0.0083,-0.0083 0.0013,-0.0055 -0.0055,-0.01242 -0.0069,-0.0083 -0.04134,-0.0041 -0.02342,-0.01792 0.0083,-0.02067 -0.0096,-0.01379 -0.0097,-0.01101 -0.02617,-0.01792 -0.04685,-0.01379 -0.03996,-0.01242 -0.02893,-0.0193 -0.0303,-0.01242 -0.01929,0.0041 -0.01238,-0.0028 -0.01929,-0.0028 -0.01654,-0.0041 -0.01378,-0.01379 -0.0028,-0.0083 0.01101,0.0014 0.0055,0.0028 0.0069,-0.0014 0.0083,-0.0055 0.0028,-0.01379 h 0.02066 l 0.0013,-0.01517 -0.03031,-0.0193 -0.01516,-0.0193 -0.01654,-0.0097 v -0.0083 l -0.01791,-0.0097 -0.0441,-0.0248 -0.02204,-0.0055 -0.01238,-0.0041 -0.0097,0.0041 -0.0083,0.0041 -0.01516,-0.01101 -0.01101,-0.01654 -0.01791,-0.0083 -0.02617,-0.0055 -0.02342,-0.0069 -0.01378,-0.0069 -0.03583,-0.0055 -0.03172,-0.0055 -0.0055,-0.01654 -0.01241,-0.0055 -0.02066,-0.01792 -0.01378,-0.01654 -0.01241,-0.0069 -0.02755,-0.0028 -0.01654,-0.0055 -0.0069,0.0041 0.0069,-0.0069 v -0.0083 h -0.01654 l -0.0069,0.01101 0.02066,0.0014 -0.01101,-0.01242 0.0083,0.01792 -0.02342,0.0028 -0.01654,-0.0028 -0.0041,-0.0041 -0.01378,-0.0028 v -0.0028 h -0.07993 l -0.02893,0.0014 h -0.09508 l -0.0097,-0.0014 -0.01238,-0.0069 h -0.01654 l -0.02342,-0.01517 -0.03447,-0.0083 -0.03583,-0.01517 0.0028,-0.01792 -0.02755,-0.0055 -0.05237,-0.0028 -0.05099,-0.0055 -0.03859,-0.0041 -0.02893,0.0028 -0.03447,0.0041 -0.04272,0.0028 -0.02755,0.0096 -0.02479,0.0014 -0.02617,-0.0014 -0.01516,0.0069 -0.0055,0.0069 -0.0041,-0.0014 -0.01378,-0.0014 -0.01101,-0.0096 -0.01241,-0.0014 -0.01791,-0.0014 -0.0083,-0.0083 h -0.02617 l -0.01654,-0.0055 0.0028,-0.01517 -0.01101,-0.0069 -0.01654,-0.0055 -0.01654,-0.0083 -0.02204,-0.0055 -0.03996,-0.0041 -0.04685,-0.0055 -0.05237,0.0028 -0.0441,0.0014 -0.03168,0.0097 -0.04685,0.0028 -0.02066,0.0083 0.02066,-0.0014 -0.01379,-0.0083 -0.02755,0.0069 -0.02755,0.0014 -0.01654,-0.0041 -0.01241,-0.0055 -0.01516,-0.0097 -0.02342,-0.0096 -0.02066,-0.0083 h -0.01378 l 0.02341,-0.0041 -0.01929,-0.0083 -0.06339,0.0055 -0.03721,-0.0096 -0.03858,-0.0055 -0.02342,0.0014 -0.0303,0.0014 -0.02341,0.0014 -0.01654,0.0014 h -0.0041 0.0013 l -0.0041,0.01379 -0.0096,0.01101 -0.01378,0.0083 0.01516,-0.0014 -0.0041,0.0041 -0.02342,0.0069 0.0041,-0.0014 -0.0097,-0.0083 0.05374,-0.0041 0.03168,-0.0014 -0.0689,0.0069 -0.03446,0.0014 -0.01654,0.0014 h -0.0055 l -0.01791,-0.0041 -0.0069,-0.0097 -0.01101,-0.0096 h -0.05512 l -0.02341,0.0014 -0.0055,0.0014 -0.01101,-0.0055 h -0.03583 l -0.02617,0.0096 h -0.01241 l -0.01378,0.0069 -0.01791,0.0083 -0.03583,0.01379 -0.03721,0.0069 -0.03172,-0.0014 -0.02755,0.0055 -0.02342,-0.0028 -0.03168,0.0055 h -0.05237 l -0.03305,-0.0014 -0.0028,-0.0014 -0.01791,-0.0014 -0.02342,-0.0083 h -0.03168 l -0.03171,-0.0069 -0.01378,-0.0083 h -0.02617 l -0.03858,-0.0041 -0.03859,0.0014 -0.03305,0.0014 0.01378,0.0014 h 0.0028 l -0.01791,-0.0055 -0.0055,-0.0014 -0.01101,-0.0041 -0.01791,-0.0014 -0.01791,-0.0083 0.0055,-0.0069 -0.0041,-0.0083 -0.01516,-0.0055 -0.01791,-0.0083 -0.01378,0.0014 -0.02341,-0.01101 -0.02204,-0.01655 0.01101,-0.0083 -0.0083,-0.01101 -0.02893,-0.01242 -0.02755,-0.01517 -0.02617,-0.0069 0.01654,-0.0041 -0.01791,-0.01101 -0.06339,-0.0041 -0.05099,-0.0055 -0.05374,0.0055 -0.04548,0.0096 -0.05374,0.0028 h -0.09784 l 0.02204,-0.0028 0.01516,-0.0014 0.01101,-0.0014 h 0.03996 l -0.0096,-0.0083 0.01378,-0.0069 0.03168,-0.01517 0.03583,-0.01517 0.04547,-0.01242 0.111622,-0.02893 0.08268,-0.03443 0.01379,-0.02755 0.03168,-0.0055 0.04409,-0.0069 0.04961,-0.0069 0.04547,-0.0083 0.04134,-0.0028 0.04685,-0.0028 0.0565,-0.0041 0.06615,-0.0055 0.07441,-0.01379 0.06891,-0.01654 0.08544,-0.02205 0.07441,-0.01517 0.0565,-0.02205 0.05512,-0.0193 0.04961,-0.01238 0.0441,-0.0028 0.07855,-0.0096 0.04548,0.0041 -0.05237,0.0069 -0.01101,0.0028 -0.0013,0.0028 -0.01238,0.0014 0.0096,-0.0014 0.03583,-0.0014 0.02204,-0.0014 0.01101,0.0055 0.01516,0.0069 0.0083,0.0083 h 0.01929 l 0.0083,0.0083 0.01378,-0.0014 0.01791,-0.0014 0.0069,-0.0014 0.01101,-0.0014 0.0028,-0.0014 h -0.0096 l -0.0028,-0.0041 -0.0028,-0.0014 h -0.0041 l -0.0083,0.0069 -0.0013,0.0041 0.01516,0.0028 0.0069,0.0014 h 0.01379 l 0.03583,0.0055 0.06201,0.0069 0.06752,-0.0069 0.0565,-0.0014 h 0.05374 l 0.05099,-0.0083 0.04272,-0.01655 0.03168,-0.02342 0.02893,-0.0083 0.02341,-0.01379 0.0083,-0.0055 0.0013,0.0041 -0.0055,-0.0096 -0.01929,0.0028 -0.0041,0.01379 0.0055,0.0014 -0.0013,0.01242 -0.01791,-0.0014 -0.01929,-0.01101 -0.01791,-0.0096 -0.02893,0.0041 -0.0303,0.02205 -0.0441,0.02618 -0.03858,0.02617 -0.02755,0.01517 -0.0069,0.0041 -0.0028,0.0014 -0.0028,0.0083 -0.01378,0.01242 -0.01238,-0.0028 -0.01516,-0.01101 -0.01241,-0.0041 0.0013,-0.0083 -0.01654,-0.0096 -0.02066,-0.01379 -0.01929,-0.0096 -0.03447,-0.01242 -0.02479,-0.01517 -0.03443,-0.0041 -0.02755,-0.0041 -0.04548,-0.0028 -0.07028,0.0041 -0.07579,0.01101 -0.09095,0.02618 -0.09371,0.0193 -0.08957,0.02342 -0.07717,0.02067 -0.07028,0.0193 -0.0689,0.02618 -0.06201,0.0248 -0.06064,0.01792 -0.06201,0.0083 -0.05099,0.0014 -0.04134,0.0069 -0.04685,0.0096 -0.04823,0.01101 -0.05374,0.01242 -0.0441,0.0069 -0.04134,0.0041 -0.04685,-0.0014 -0.03859,-0.0028 -0.03996,0.0055 -0.04272,-0.0014 -0.0441,0.0069 -0.0441,0.0083 h -0.103351 l -0.04548,-0.0014 -0.03583,0.0069 -0.02617,0.0069 -0.03721,0.0083 -0.04272,0.01517 h -0.02617 l -0.02341,-0.0028 -0.03996,-0.0014 -0.04134,-0.0028 -0.03996,0.0069 h -0.0441 l -0.04685,-0.0014 -0.04685,0.0069 h -0.121303 l -0.0477,0.01076 h -0.05236 l -0.04548,0.0083 -0.03583,0.0069 -0.01929,0.0069 -0.01516,0.0069 0.0028,0.0083 0.02342,-0.0014 -0.0013,-0.0028 -0.02204,0.0069 -0.0069,0.01379 -0.01101,0.01101 0.01654,0.0096 -0.0097,0.0083 -0.02204,0.0055 -0.01238,0.0055 -0.01241,0.0028 -0.01516,0.0055 -0.01654,0.0069 -0.0069,0.01238 -0.0303,0.0069 -0.05926,0.02067 -0.05788,0.0248 -0.0441,0.02205 -0.02617,0.01379 -0.01791,-0.0055 -0.0303,0.0014 -0.02204,0.0028 -0.0069,0.0041 -0.03859,0.0096 -0.0069,-0.0014 -0.01238,0.0055 -0.01654,0.0083 h -0.01516 l -0.0055,0.0083 -0.0028,0.0055 -0.01101,0.0083 -0.0083,0.0083 -0.0041,0.0055 -0.01101,0.01238 -0.03859,0.03859 -0.03443,0.0193 -0.03859,0.01379 -0.0303,0.02067 -0.03168,0.0097 -0.02066,0.01238 -0.01378,0.0014 -0.01241,-0.0055 -0.01516,0.0028 -0.0083,-0.0041 -0.0083,-0.0014 -0.01654,0.0055 h -0.01378 l 0.0028,0.0014 h 0.0055 l -0.0041,0.0014 -0.01654,0.0083 -0.02342,0.01379 -0.02617,0.0096 -0.02479,0.01517 -0.02204,0.01517 -0.02066,0.02205 -0.04548,0.02755 -0.06063,0.02205 -0.04548,0.02755 -0.05099,0.01792 -0.03996,0.01792 -0.04823,0.01517 -0.05512,0.01517 -0.04685,0.0193 -0.03996,0.0096 -0.02617,0.0014 -0.02204,0.0083 -0.01654,0.01101 -0.01929,0.0055 -0.01378,0.0055 -0.01238,-0.0028 -0.0097,0.0055 -0.0096,0.01379 h -0.0096 l -0.0028,0.0041 0.0013,0.0083 -0.01379,0.0083 h -0.02342 l -0.0096,0.0069 -0.01101,0.0041 -0.02755,0.01379 -0.04685,0.01517 -0.05374,0.02342 -0.05374,0.01517 -0.04272,0.02067 -0.03721,0.01242 -0.04134,0.0096 -0.03583,0.01101 -0.06615,0.02205 -0.04823,0.0028 -0.03306,-0.0028 -0.0069,0.0041 -0.01791,0.0041 -0.0303,0.0055 h -0.03306 l -0.01791,-0.0014 -0.01516,0.01379 -0.02893,0.0083 -0.04961,0.01654 -0.02066,0.0055 -0.01929,0.0069 -0.01101,0.0055 -0.0013,0.0069 -0.01241,0.01101 -0.03306,0.0069 -0.01929,-0.0014 -0.0028,0.0055 -0.0013,0.0041 -0.0028,0.0069 0.01378,0.0083 -0.01101,0.01242 -0.01654,0.01654 -0.0096,0.0083 -0.01101,0.0028 0.02204,0.01792 -0.0069,0.0096 -0.04686,0.01242 -0.01654,0.0083 -0.01791,0.0014 -0.01929,0.0028 -0.02893,-0.0028 -0.03447,0.0041 -0.04272,0.01379 -0.03721,0.01654 -0.03306,0.0069 -0.03583,0.02067 -0.03721,0.0303 -0.03859,0.01517 -0.0303,0.01238 -0.01929,0.0041 -0.01791,0.0083 -0.02755,0.0096 -0.03031,0.0041 -0.01101,0.02205 -0.02755,0.01101 -0.03305,0.0055 -0.02066,0.01379 -0.01516,0.01792 -0.02479,0.0069 -0.02617,0.0041 -0.03721,0.01101 -0.03583,0.01379 -0.02204,0.0069 -0.02755,0.0041 -0.03721,0.0041 -0.05512,0.0055 -0.03168,0.0055 -0.0069,0.0069 -0.0083,0.0041 -0.0055,0.0069 -0.01238,0.01379 -0.01654,0.0069 -0.02617,0.0069 -0.01378,0.0069 -0.0041,0.0055 -0.0303,0.01101 -0.01241,0.02067 -0.02617,0.01379 -0.0565,0.02205 -0.03721,0.01654 -0.0055,0.01379 -0.02341,0.0083 -0.03305,0.0041 -0.03306,0.0096 -0.0372,0.01792 -0.02755,0.0069 -0.03583,0.0041 -0.06339,0.01101 -0.0565,0.01379 -0.05925,0.02067 -0.04686,0.02205 -0.05512,0.02067 -0.07579,0.02067 -0.07028,0.02067 -0.07028,0.0248 -0.0689,0.02618 -0.06339,0.02755 -0.07166,0.02342 -0.06201,0.01792 -0.04548,0.01654 -0.03859,0.02205 -0.0303,0.01101 -0.02617,0.0083 -0.02893,0.0083 -0.04685,0.01792 -0.03443,0.0055 -0.01654,0.0041 -0.02204,0.0096 -0.02479,0.0069 -0.02479,0.01379 -0.0303,0.0055 -0.04685,0.01379 -0.04548,0.0069 -0.04134,0.0055 -0.04547,0.01238 -0.03996,0.02205 -0.07717,0.01379 -0.06201,0.01517 -0.02479,0.01379 -0.03583,0.0083 -0.04823,0.0041 -0.0565,0.0041 -0.03859,0.0028 0.0013,0.0083 -0.02617,0.0083 -0.05098,0.01517 -0.04685,0.0069 -0.04961,0.0055 -0.07304,0.01379 -0.06339,-0.0014 -0.03996,0.0055 -0.04134,0.0041 -0.04823,0.0055 -0.0441,-0.0014 -0.03858,0.0055 -0.09233,0.0069 -0.07304,0.0083 h -0.05237 l -0.03447,-0.0028 -0.02893,-0.0014 -0.04134,-0.0014 -0.04823,0.01379 -0.03721,0.0096 h -0.03996 l -0.04134,0.0069 h -0.04961 l -0.03447,0.0055 -0.05926,0.02067 -0.09646,0.02342 -0.0937,0.02618 -0.08406,0.02893 -0.07717,0.0193 -0.06891,0.0193 -0.108863,0.02342 -0.09922,0.02617 -0.04134,0.02893 -0.05374,-0.0014 -0.06615,-0.0014 -0.06753,-0.0083 -0.05099,-0.0069 -0.04134,-0.0055 -0.04134,-0.0096 -0.03168,-0.01654 -0.0303,-0.01517 -0.03859,0.0014 -0.0441,-0.01101 -0.04685,-0.0041 -0.05926,0.0041 -0.126777,0.0248 -0.06615,0.01792 -0.07304,0.02342 -0.151582,0.02342 -0.104733,0.03305 -0.0028,0.03583 -0.04961,0.0096 -0.07304,0.01517 -0.08957,0.01379 -0.08268,0.0069 -0.08406,0.0083 -0.06339,0.0014 -0.03447,-0.0055 -0.03447,-0.0193 -0.02755,-0.01379 -0.03997,-0.01654 -0.01516,-0.0097 0.01379,-0.0055 h 0.0096 l 0.0028,-0.0014 0.0028,0.0028 v 0.0028 l -0.0758,0.0096 -0.0055,0.0028 h 0.0689 l 0.02204,-0.0014 -0.01241,0.0096 -0.01791,0.01379 -0.04272,0.03721 -0.03996,0.04272 -0.04548,0.03306 -0.05237,0.02755 -0.03306,0.01242 -0.0083,-0.0014 0.02617,-0.0041 0.0055,-0.0193 h -0.01241 l 0.02204,-0.02067 0.01516,-0.0014 0.01654,0.0028 0.03168,0.0028 0.02342,-0.0055 0.05926,-0.01101 0.09784,-0.01379 0.07855,-0.0248 0.04823,-0.0055 0.03583,-0.0028 0.03996,0.0028 0.03858,0.0041 0.04134,0.01101 0.07303,0.01101 0.09095,0.0083 h 0.106108 l 0.119888,-0.0083 0.121269,-0.0193 0.129535,-0.01101 0.126778,-0.01654 0.128159,-0.02342 0.12678,-0.02893 0.136427,-0.0372 0.158475,-0.02893 0.176387,-0.03306 0.184655,-0.03306 0.18328,-0.03168 0.165364,-0.02205 0.143315,-0.02067 0.141941,-0.01379 0.15985,-0.0055 0.14056,-0.02205 0.132292,-0.01654 0.112998,-0.0028 0.110244,-0.0096 0.139181,-0.0193 0.14056,-0.02205 0.10749,-0.02893 0.08681,-0.02067 0.09095,-0.01242 0.1006,-0.02618 0.115755,-0.03306 0.148828,-0.04272 0.126781,-0.03721 0.08682,-0.03306 0.09095,-0.02893 0.100597,-0.02205 0.09233,-0.01379 0.07166,-0.01379 0.0689,-0.02067 0.06752,-0.01517 0.05374,-0.0096 0.04686,-0.0097 0.03305,-0.01101 0.03996,0.0041 0.03168,-0.01101 0.03996,-0.01379 0.05512,-0.02067 0.07166,-0.02342 0.06477,-0.0303 0.08131,-0.02893 0.103352,-0.03583 0.09646,-0.0441 0.0937,-0.03306 0.08957,-0.0303 0.07441,-0.02342 0.05925,-0.0193 0.05099,-0.02067 0.04961,-0.02067 0.04685,-0.0303 0.03583,-0.02618 0.02755,-0.0096 0.01378,-0.01517 0.0083,-0.0083 -0.0041,-0.0041 -0.0041,0.0069 -0.0055,0.0041 0.0028,-0.0014 h 0.0055 l 0.01241,-0.01655 0.02341,-0.01654 0.03443,-0.03859 0.04961,-0.03443 0.04272,-0.01517 0.04134,-0.0248 0.04685,-0.03306 0.05512,-0.02617 0.03996,-0.03447 0.02755,-0.0303 0.02341,-0.02342 0.01791,-0.02893 0.01654,-0.02342 0.03306,-0.01379 0.0096,-0.0248 -0.01516,-0.02342 0.01241,-0.0083 0.01101,-0.01654 0.01101,-0.02342 0.03447,-0.0248 0.04134,-0.02893 0.03305,-0.02755 0.02755,-0.02617 0.02617,-0.01792 0.03168,-0.0303 0.03859,-0.0193 0.04134,-0.01654 0.03168,-0.0083 0.02755,-0.01517 0.02204,-0.01792 0.02066,-0.01792 0.01516,-0.0041 0.01238,-0.0028 0.0013,-0.0041 -0.01791,0.0055 -0.0069,-0.0055 v 0.0014 l 0.01101,-0.0055 h 0.0041 l 0.0041,-0.01517 0.03031,-0.01655 0.03721,-0.0248 0.04823,-0.02342 0.03858,-0.02205 0.04272,-0.02067 0.04685,-0.0248 0.05374,-0.03443 0.05512,-0.02755 0.03172,-0.0096 -0.0055,-0.0083 v -0.0041 l 0.0097,-0.0083 -0.0013,-0.01242 0.0041,0.0055 -0.0028,0.0041 -0.0028,0.0069 -0.0028,0.0028 -0.0041,-0.0014 -0.0069,-0.0014 -0.0013,-0.0028 0.0069,-0.0014 0.02066,0.0041 h 0.0303 l 0.04134,-0.0069 0.0565,-0.01517 0.05788,-0.01792 0.05099,-0.01655 0.04547,-0.01379 0.02893,-0.02067 0.04272,-0.02618 0.08268,-0.02755 0.05512,-0.03171 0.0041,-0.02067 0.0055,-0.0041 0.01378,-0.0069 h 0.01101 l 0.0055,-0.0014 v -0.0028 l 0.0069,0.0041 0.0069,0.0014 -0.0013,0.0014 h 0.0096 l 0.01101,-0.0083 0.01654,-0.0014 0.03031,-0.0014 h 0.03305 l 0.02342,-0.0069 0.01378,-0.0083 h 0.0097 l 0.0028,-0.0069 -0.0013,-0.0069 0.02204,-0.0055 h 0.0097 l -0.0041,-0.0055 -0.0069,0.0014 -0.0028,0.0014 0.0041,0.0014 v -0.0055 0.0055 l 0.01101,0.0014 h 0.01791 l 0.01791,0.0069 0.04685,-0.0069 0.04961,-0.0014 0.02755,0.0083 0.01654,0.0083 0.01101,0.0069 0.01378,0.0083 h 0.01516 l 0.0097,-0.0014 0.0069,0.0041 0.0013,0.0069 h -0.0041 l -0.0041,-0.0083 0.02342,0.0028 h 0.05512 l 0.01654,0.0055 0.02066,0.0096 0.02204,0.0014 0.01791,0.0069 0.01929,0.0083 0.02479,0.0069 0.03172,0.0069 0.04272,0.0055 0.0303,0.0069 0.02341,-0.0014 0.01516,-0.0014 0.0069,0.0055 0.01101,0.0055 0.0083,0.01379 0.0013,0.01517 0.0028,0.0083 -0.0041,0.0041 -0.0028,0.01792 -0.0013,0.02342 -0.0013,0.02893 -0.0069,0.02342 -0.01378,0.02617 -0.01516,0.03306 -0.02893,0.03447 -0.0441,0.04685 -0.05374,0.05788 -0.06063,0.0565 -0.06477,0.06064 -0.08268,0.06615 -0.09233,0.0813 -0.110244,0.09509 -0.118512,0.110243 -0.136427,0.115753 -0.129532,0.122647 -0.17639,0.129533 -0.220485,0.139185 -0.231511,0.15434 -0.245292,0.162606 -0.261827,0.169499 -0.279741,0.166744 -0.286631,0.177765 -0.297656,0.177768 -0.301792,0.166744 -0.294902,0.135047 -0.288007,0.121268 -0.264583,0.09922 -0.238403,0.07028 -0.216352,0.06201 -0.224621,0.06615 -0.234265,0.07579 -0.249425,0.0689 -0.267338,0.06477 -0.286634,0.05926 -0.286631,0.0689 -0.281122,0.06201 -0.282496,0.08544 -0.296277,0.110243 -0.297657,0.119888 -0.334864,0.132292 -0.355531,0.146071 -0.344509,0.159854 -0.333489,0.15434 -0.285253,0.141937 -0.250804,0.118512 -0.216351,0.09784 -0.253559,0.08682 -0.288008,0.08406 -0.263207,0.08957 -0.24529,0.0813 -0.2384,0.06339 -0.227376,0.04961 -0.212217,0.0441 -0.191548,0.04685 -0.169499,0.05099 -0.152965,0.05512 -0.162605,0.07028 -0.177769,0.08268 -0.173633,0.08544 -0.172255,0.104729 -0.179144,0.103354 -0.170875,0.118512 -0.165364,0.135046 -0.184658,0.16261 -0.201193,0.172254 -0.206707,0.183279 -0.241159,0.183278 -0.239776,0.183283 -0.21911,0.184654 -0.216351,0.169499 -0.214973,0.152965 -0.212217,0.143316 -0.21773,0.147447 -0.253559,0.158475 -0.257694,0.195682 -0.261828,0.230131 -0.267339,0.242535 -0.272852,0.261828 -0.278363,0.267338 -0.248045,0.293526 -0.224621,0.288009 -0.214975,0.259072 -0.227376,0.224618 -0.238401,0.210842 -0.219106,0.191547 -0.191548,0.180523 -0.183279,0.175009 -0.170878,0.188793 -0.16812,0.17639 -0.150206,0.143314 -0.146071,0.130913 -0.132291,0.100597 -0.08957,0.07304 -0.08268,0.03858 -0.08681,0.03583 -0.08544,0.03168 -0.07166,0.02893 -0.05374,0.01378 -0.0248,0.01101 -0.0055,0.0041 -0.0028,0.0097 -0.0193,0.0041 -0.01792,0.0083 -0.01654,0.0083 -0.03168,0.01516 -0.03859,0.03996 -0.04685,0.05788 -0.05237,0.07855 -0.05237,0.0937 -0.07166,0.09646 -0.07166,0.09371 -0.07579,0.09233 -0.07166,0.08957 -0.05788,0.05926 -0.0565,0.03306 -0.05512,0.01654 -0.02342,0.01378 -0.03583,0.01101 -0.06477,0.02617 -0.06201,0.0372 -0.05926,0.03996 -0.04272,0.04134 -0.04134,0.03447 -0.01101,0.03583 -0.0193,0.02204 -0.03172,0.02204 -0.0303,0.02479 -0.02342,0.02204 -0.0069,0.04409 -0.01517,0.03721 -0.0193,0.01101 -0.0096,-0.0013 0.0069,-0.01101 0.01238,-0.01654 0.01242,-0.03996 0.04272,-0.05374 0.03447,-0.06615 0.02893,-0.09371 0.06201,-0.143317 0.07442,-0.183277 0.0813,-0.208084 0.07579,-0.223245 0.08819,-0.223239 0.09095,-0.2384 0.106109,-0.249426 0.118508,-0.264583 0.126782,-0.283877 0.0937,-0.32935 0.133672,-0.348642 0.180523,-0.34589 0.176389,-0.373446 0.179144,-0.413414 0.191548,-0.432703 0.202572,-0.460266 0.213596,-0.487824 0.2384,-0.451997 0.246669,-0.417544 0.235645,-0.398255 0.224618,-0.361047 0.214975,-0.270093 0.163985,-0.172254 0.133672,-0.07442 h 0.0813 l 0.01517,0.03858 -0.01101,0.0565 -0.03447,0.05099 -0.01655,0.03168 -0.02205,0.02205 -0.04134,0.0193 -0.0248,0.03305 -0.03721,0.06615 -0.05237,0.119892 -0.08957,0.172254 -0.121267,0.205327 -0.146072,0.225997 -0.15434,0.274232 -0.158475,0.352777 -0.169499,0.40101 -0.187413,0.436838 -0.217727,0.505738 -0.242535,0.558105 -0.23978,0.580154 -0.232889,0.547082 -0.225997,0.487822 -0.180523,0.413415 -0.129537,0.332107 -0.07992,0.220488 -0.05512,0.108863 -0.01654,0.03721 0.0055,-0.0041 0.01654,-0.01654 0.0193,-0.02066 0.02067,-0.01654 0.01238,-0.0083 0.0041,-0.02066 0.02205,-0.01378 0.04548,-0.02204 0.06752,-0.06477 0.09784,-0.139181 0.10473,-0.235646 0.152964,-0.31006 0.198437,-0.383096 0.191545,-0.421677 0.199817,-0.443727 0.242534,-0.486447 0.279742,-0.537435 0.299033,-0.585668 0.350022,-0.628385 0.396875,-0.631141 0.388606,-0.643544 0.355537,-0.610471 0.333484,-0.527788 0.293521,-0.412033 0.23978,-0.279743 0.181899,-0.165364 0.119892,-0.07579 0.05236,-0.0193 0.02618,0.01654 0.03447,0.02893 -0.0028,0.02755 -0.05099,0.03859 -0.03858,0.0441 -0.03996,0.06339 -0.05375,0.111619 -0.08406,0.188792 -0.121267,0.267339 -0.187413,0.343132 -0.225997,0.438214 -0.248048,0.511253 -0.270094,0.538811 -0.263204,0.581533 -0.254939,0.588423 -0.2384,0.54157 -0.226,0.500228 -0.227375,0.468531 -0.192924,0.456131 -0.139181,0.387228 -0.113002,0.290767 -0.08544,0.21635 -0.05374,0.165364 -0.02618,0.108868 -0.0028,0.07579 0.01655,0.03996 0.01517,-0.02755 0.01101,-0.05099 0.01379,-0.04409 0.01654,-0.05512 0.01792,-0.09233 0.03859,-0.143314 0.07579,-0.208087 0.09508,-0.294896 0.118512,-0.394121 0.16123,-0.48369 0.198438,-0.545705 0.22462,-0.615982 0.278363,-0.668348 0.305925,-0.669727 0.288012,-0.676618 0.285252,-0.673858 0.307302,-0.6463 0.321084,-0.560863 0.300411,-0.438217 0.24529,-0.308681 0.220486,-0.16812 0.195683,-0.05926 0.161229,-0.01101 0.117133,0.02893 0.100598,0.04823 0.08406,0.0441 0.02618,0.04823 -0.0303,0.07028 -0.04547,0.125402 -0.07993,0.221865 -0.09508,0.314191 -0.16812,0.39412 -0.228755,0.486445 -0.249425,0.552595 -0.281117,0.580153 -0.299036,0.587044 -0.301791,0.606336 -0.297656,0.606337 -0.303167,0.574643 -0.292146,0.582909 -0.259069,0.602203 -0.226,0.585666 -0.186034,0.50436 -0.130912,0.406524 -0.100598,0.32108 -0.0565,0.23151 0.0028,0.154342 0.0028,0.08957 0.0014,0.05237 v 0.01101 l 0.01101,-0.02066 0.0028,-0.03858 0.0083,-0.04409 0.02205,-0.03996 0.03306,-0.06753 0.06752,-0.121266 0.108864,-0.188789 0.157099,-0.282501 0.188789,-0.374827 0.194303,-0.458885 0.214976,-0.509873 0.227375,-0.559483 0.278363,-0.606336 0.327974,-0.664217 0.363802,-0.705556 0.417545,-0.716579 0.424437,-0.741384 0.436838,-0.730359 0.429948,-0.651814 0.413409,-0.552591 0.381716,-0.417548 0.300415,-0.256314 0.217728,-0.108864 0.163988,-0.01379 0.128158,0.02618 0.09922,0.02067 0.08682,0.0096 0.101973,0.0083 0.06891,0.01654 0.02618,0.03859 -0.01517,0.08544 -0.05926,0.158475 -0.108864,0.249425 -0.173634,0.332105 -0.243914,0.435461 -0.292142,0.544326 -0.305926,0.643541 -0.311435,0.712445 -0.359668,0.740008 -0.403768,0.737249 -0.381716,0.69729 -0.358288,0.632518 -0.319705,0.582909 -0.292146,0.520898 -0.237021,0.417544 -0.150206,0.307306 -0.08544,0.220485 -0.03447,0.137803 -0.0014,0.06752 0.01238,0.02066 0.02893,-0.01378 0.03168,-0.06339 0.02618,-0.0565 0.04272,-0.04823 0.06339,-0.08406 0.08544,-0.141941 0.146071,-0.217731 0.180523,-0.330729 0.210838,-0.432702 0.282501,-0.486445 0.307301,-0.552594 0.351399,-0.602203 0.374826,-0.646299 0.355533,-0.680752 0.425817,-0.693152 0.491959,-0.719335 0.465776,-0.724849 0.480935,-0.694531 0.504363,-0.636654 0.450617,-0.536057 0.377581,-0.363802 0.303171,-0.213596 0.209461,-0.114374 0.130913,-0.0014 0.07717,0.08406 0.08681,0.108864 0.03583,0.118512 -0.06339,0.136426 -0.09646,0.190169 -0.151581,0.286632 -0.195682,0.370691 -0.249425,0.456131 -0.272852,0.544326 -0.312815,0.624251 -0.351399,0.666969 -0.38034,0.657327 -0.351399,0.662834 -0.307301,0.63252 -0.272852,0.547081 -0.221866,0.4768 -0.168119,0.395499 -0.108864,0.325215 -0.06201,0.231511 -0.03306,0.152961 -0.09784,0.08544 -0.02342,0.0441 0.09509,-0.01929 0.0303,-0.05236 0.02617,-0.05237 0.02755,-0.04272 0.04134,-0.05099 0.07166,-0.100594 0.108863,-0.191548 0.159855,-0.290766 0.205327,-0.385853 0.257693,-0.450617 0.297657,-0.514008 0.305921,-0.574643 0.31006,-0.584288 0.337619,-0.604958 0.367937,-0.62563 0.395495,-0.607712 0.416169,-0.580154 0.412034,-0.523656 0.412034,-0.421679 0.369314,-0.271473 0.281119,-0.139182 0.205328,-0.01379 0.141938,0.07028 0.08682,0.108867 0.05374,0.119888 0.02066,0.115754 -0.01379,0.122646 -0.04823,0.16123 -0.108865,0.221866 -0.169498,0.321081 -0.259069,0.402388 -0.31695,0.48369 -0.319706,0.545705 -0.333485,0.542947 -0.333487,0.523652 -0.344509,0.527791 -0.333485,0.512628 -0.2949,0.450621 -0.230132,0.374827 -0.152964,0.303166 -0.08406,0.201192 -0.0193,0.103354 0.02618,0.02755 0.05512,-0.02341 0.04961,-0.05788 0.03858,-0.06615 0.04823,-0.05512 0.06615,-0.07166 0.06753,-0.103353 0.121267,-0.146072 0.202572,-0.206706 0.220487,-0.281118 0.242534,-0.340374 0.281118,-0.376206 0.333485,-0.396875 0.345888,-0.414789 0.354158,-0.4644 0.388605,-0.487825 0.428572,-0.504363 0.453374,-0.507118 0.457509,-0.463021 0.438214,-0.409275 0.391364,-0.323839 0.307303,-0.191548 0.216349,-0.04134 0.135052,0.06477 0.0937,0.115753 0.02342,0.136427 -0.02066,0.137805 -0.01791,0.155716 -0.08268,0.208086 -0.146073,0.261825 -0.25907,0.333488 -0.315571,0.421679 -0.341752,0.480934 -0.381717,0.496094 -0.387231,0.482311 -0.391361,0.446486 -0.35829,0.417544 -0.288007,0.345888 -0.228756,0.288012 -0.179145,0.225996 -0.115757,0.173634 -0.05926,0.114377 -0.0096,0.06615 0.02066,0.01379 0.0565,-0.03583 0.0565,-0.07166 0.05512,-0.07855 0.08819,-0.115757 0.129537,-0.177764 0.186037,-0.243914 0.230132,-0.322461 0.301792,-0.356912 0.337618,-0.381716 0.341752,-0.425813 0.372073,-0.456132 0.399629,-0.485069 0.39274,-0.498849 0.443727,-0.509873 0.515388,-0.518142 0.489204,-0.512632 0.465777,-0.403765 0.412033,-0.270097 0.337619,-0.141937 0.25218,-0.03447 0.166743,0.06202 0.110244,0.112998 0.05512,0.130912 0.03306,0.133671 0.02479,0.148826 -0.02342,0.183279 -0.10473,0.217731 -0.157096,0.281121 -0.232889,0.355533 -0.31419,0.438217 -0.363802,0.498849 -0.350023,0.529167 -0.347268,0.496094 -0.326594,0.457507 -0.235645,0.432703 -0.165362,0.361047 -0.118513,0.267338 -0.0813,0.188793 -0.03306,0.126781 -0.01516,0.07717 -0.0096,0.02205 0.01516,-0.03306 0.03306,-0.06477 0.126778,-0.05788 0.06615,-0.06477 -0.0441,-0.06891 0.09922,-0.121267 0.187415,-0.234266 0.253558,-0.303167 0.301792,-0.355536 0.340373,-0.440972 0.395499,-0.494715 0.424434,-0.508497 0.436838,-0.533298 0.464399,-0.552594 0.48369,-0.570509 0.505741,-0.551215 0.526409,-0.48507 0.467157,-0.434079 0.413409,-0.340377 0.356912,-0.228756 0.26045,-0.09646 0.125402,0.0083 0.05237,0.07855 0.01791,0.114377 -0.01101,0.119888 -0.0303,0.106109 -0.05512,0.111622 -0.08682,0.146071 -0.197056,0.210842 -0.23427,0.31557 -0.271473,0.40652 -0.380336,0.460266 -0.435462,0.505738 -0.394118,0.54984 -0.449241,0.582908 -0.553969,0.593934 -0.504365,0.587047 -0.431326,0.556725 -0.381717,0.505739 -0.338995,0.398254 -0.170878,0.312815 -0.190167,0.221866 -0.271473,0.15434 -0.155721,0.10335 -0.07304,0.0193 -0.01378,-0.04823 0.04272,-0.07441 0.05926,-0.07304 0.07993,-0.09646 0.121267,-0.176389 0.190169,-0.260449 0.264584,-0.332109 0.409278,-0.383095 0.416169,-0.436838 0.402386,-0.497473 0.518141,-0.547081 0.552596,-0.589798 0.592555,-0.613227 0.600824,-0.61185 0.551215,-0.585664 0.587044,-0.520898 0.600826,-0.463021 0.502984,-0.413413 0.410654,-0.321081 0.326594,-0.186037 0.235646,-0.07579 0.122645,0.01101 0.02479,0.08957 -0.03306,0.118512 -0.06615,0.139182 -0.09095,0.176389 -0.18604,0.235645 -0.253558,0.32246 -0.322461,0.439596 -0.436837,0.511253 -0.493337,0.523652 -0.540192,0.541571 -0.531921,0.574639 -0.522277,0.604958 -0.438216,0.61323 -0.305922,0.584288 -0.267343,0.523653 -0.249425,0.440972 -0.181899,0.348643 -0.158474,0.259073 -0.137806,0.191548 -0.06477,0.130912 -0.02755,0.06477 0.01791,0.0055 0.05926,-0.05099 0.08406,-0.07855 0.07993,-0.09095 0.08819,-0.122646 0.165364,-0.195683 0.239782,-0.294897 0.330729,-0.376206 0.389985,-0.429948 0.391361,-0.479555 0.453374,-0.514012 0.541568,-0.559481 0.559485,-0.592557 0.567748,-0.602202 0.596691,-0.604957 0.542946,-0.580154 0.468535,-0.502987 0.420301,-0.41341 0.365181,-0.344509 0.296278,-0.239779 0.188791,-0.108864 -0.02204,0.0303 -0.0813,0.137805 -0.04548,0.166744 -0.137803,0.213593 -0.201191,0.282498 -0.274233,0.37896 -0.362424,0.457511 -0.438216,0.491959 -0.428569,0.527788 -0.416169,0.559484 -0.421677,0.564994 -0.366556,0.55535 -0.35278,0.523653 -0.323839,0.518143 -0.304546,0.490583 -0.272852,0.414789 -0.212217,0.361047 -0.184658,0.32108 -0.147449,0.263209 -0.159851,0.191547 -0.06753,0.135046 0.05512,0.05926 0.03168,-0.0097 0.04961,-0.0565 0.05374,-0.06063 0.0813,-0.0689 0.137806,-0.118512 0.194302,-0.18879 0.250801,-0.260448 0.305924,-0.329354 0.344509,-0.391361 0.388609,-0.412033 0.41479,-0.412035 0.435457,-0.420302 0.465778,-0.469911 0.49885,-0.493339 0.496094,-0.474045 0.469911,-0.442348 0.416165,-0.381716 0.37896,-0.30179 0.336244,-0.225997 0.219106,-0.115757 0.09371,0.0014 0.02204,0.0813 -0.0303,0.115753 -0.07304,0.119888 -0.06064,0.130916 -0.07579,0.177765 -0.122648,0.249428 -0.206703,0.350019 -0.330729,0.447862 -0.420301,0.502984 -0.457507,0.508497 -0.450623,0.512628 -0.414787,0.498853 -0.340376,0.439593 -0.28112,0.374826 -0.243911,0.338998 -0.190172,0.300412 -0.125399,0.239781 -0.09233,0.165364 -0.05374,0.112999 -0.03305,0.06752 -0.02755,0.02341 -0.02204,-0.0041 0.01378,-0.02342 0.03446,-0.03859 0.03031,-0.0303 0.06063,-0.04272 0.0303,-0.08681 0.146071,-0.14056 0.293521,-0.223242 0.294902,-0.294901 0.322461,-0.300411 0.318325,-0.330729 0.319704,-0.359668 0.332108,-0.369316 0.34589,-0.373447 0.365177,-0.389985 0.370692,-0.414789 0.369316,-0.425813 0.348642,-0.421683 0.350022,-0.398251 0.296278,-0.304546 0.199816,-0.168119 0.0937,-0.02205 v 0.104729 l -0.07441,0.157095 -0.06063,0.184658 -0.100597,0.24667 -0.184656,0.32246 -0.214976,0.389985 -0.274228,0.432703 -0.297656,0.461645 -0.341754,0.48507 -0.354156,0.46991 -0.341754,0.414789 -0.31419,0.395496 -0.301792,0.407899 -0.286631,0.418922 -0.239781,0.403765 -0.254934,0.384472 -0.249428,0.354158 -0.221861,0.3073 -0.18328,0.264583 -0.106108,0.192929 -0.05099,0.09922 -0.03583,0.02204 0.0303,-0.0303 0.08682,-0.06752 0.05374,-0.06477 0.04134,-0.05926 0.07304,-0.07441 0.119888,-0.113004 0.159851,-0.163983 0.213595,-0.217731 0.24805,-0.237022 0.250804,-0.214976 0.241154,-0.188789 0.25907,-0.147449 0.254939,-0.132292 0.221864,-0.111622 0.214973,-0.07028 0.198438,-0.05099 0.152961,-0.03721 0.107487,-0.01238 0.0565,0.0096 0.02617,0.01791 0.02479,0.02204 0.02204,0.02342 0.01929,0.0083 -0.01791,0.0303"
+ style="fill:none;stroke:#5b85db;stroke-width:3.35817313;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:10;stroke-opacity:0.25263157" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path214"
+ d="m 103.14855,84.733219 -0.0386,0.0097 -0.0799,0.04547 -0.0331,0.07579 -0.022,0.06615 -0.011,0.08957 -0.004,0.07993 0.011,0.04547 0.01,0.03171 0.0152,0.03583 0.0138,0.03583 0.0262,0.02755 0.0386,0.02067 0.0455,0.0083 0.0717,0.0069 0.0758,-0.0069 0.0785,-0.0083 0.0799,-0.01242 0.0675,-0.02618 0.0496,-0.04547 0.0413,-0.05375 0.0455,-0.06615 0.0427,-0.07441 0.0276,-0.09233 0.0289,-0.09095 0.0317,-0.09509 0.0179,-0.08544 -0.01,-0.07166 -0.0193,-0.06063 -0.0345,-0.03721 -0.0593,-0.01792 -0.0717,-0.01242 -0.0744,0.01242 -0.0648,0.03583 -0.0896,0.05237 -0.11162,0.05788 -0.11162,0.06477 -0.11162,0.05788 -0.0882,0.06063 -0.0579,0.0565 -0.0441,0.05099 -0.0317,0.0441 -0.0179,0.03443 0.011,0.04134 0.022,0.05099 0.04,0.05512 0.0441,0.05788 0.0358,0.05236 0.0496,0.03996 0.0565,0.02618 0.0744,0.01517 0.0813,0.0083 0.10197,-0.0055 0.10335,-0.0248 0.073,-0.02342 0.0524,-0.03583 0.0413,-0.03168 0.0275,-0.04548 0.0138,-0.0565 v -0.06477 l 0.004,-0.0689 10e-4,-0.07441 -0.0165,-0.07441 -0.022,-0.0565 -0.0413,-0.03583 -0.04,-0.0248 -0.0441,-0.01792 -0.0551,-0.01101 -0.0758,-0.0055 -0.0854,-0.01101 -0.10335,-0.01242 -0.11162,-0.01101 -0.0841,0.01242 -0.0551,0.01792 -0.0345,0.02617 -0.011,0.0248 -0.001,0.02893 0.003,0.03447 -0.0124,0.04272 0.004,0.07028 0.0165,0.09371 0.0207,0.09095 0.0248,0.07855 0.051,0.05926 0.0468,0.04272 0.0289,0.0193 0.0469,0.01792 0.0372,0.03168"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path216"
+ d="m 90.175702,72.08283 0.02479,-0.02067 0.01241,-0.01792 -0.02617,0.01517 -0.01929,0.0248 -0.03583,0.0303 -0.02755,0.03583 -0.01241,0.04823 -0.02342,0.07855 -0.04272,0.09095 -0.04272,0.09646 -0.03306,0.110243 -0.0303,0.110243 -0.02204,0.107484 -0.0041,0.08682 -0.01101,0.08544 -0.0055,0.09233 -0.0083,0.08406 0.0055,0.07855 0.02066,0.06615 0.02893,0.0441 0.03447,0.02755 0.03996,0.0069 0.04272,-0.0083 0.02204,-0.0096 0.04548,-0.02618 0.08682,-0.04548 0.07992,-0.06339 0.06753,-0.08406 0.06339,-0.101974 0.06063,-0.124022 0.0882,-0.126781 0.07855,-0.125402 0.07304,-0.115754 0.07855,-0.115757 0.07992,-0.128157 0.07441,-0.125402 0.06615,-0.114377 0.06201,-0.10335 0.05099,-0.07579 0.02479,-0.04961 0.02479,-0.01792 0.01241,0.0028 -0.0083,0.01379 -0.0096,0.02205 -0.0097,0.01517 -0.0083,0.01101 -0.0055,0.0096 -0.0083,0.02067 -0.01378,0.0441 -0.01378,0.07028 -0.01929,0.09646 -0.02066,0.113001 -0.0041,0.124023 -0.0013,0.133668 0.0055,0.143316 0.0055,0.155719 0.0041,0.177768 0.0013,0.195679 0.0013,0.213597 v 0.21222 l -0.0083,0.192924 -0.0013,0.175009 -0.0303,0.161234 -0.05512,0.152961 -0.04272,0.146071 -0.04548,0.126781 -0.03583,0.09922 -0.04548,0.08681 -0.06752,0.07166 -0.06201,0.0565 -0.05237,0.03583 -0.06064,0.02342 -0.07028,0.0069 -0.07166,-0.0014 -0.0689,-0.0069 -0.07579,-0.02342 -0.07028,-0.02893 -0.05375,-0.03305 -0.03858,-0.0565 -0.03306,-0.07304 -0.03305,-0.08544 -0.01516,-0.09922 0.01516,-0.111619 0.01516,-0.110243 0.02479,-0.104732 0.01378,-0.106109 0.03168,-0.104733 0.04685,-0.07717 0.04272,-0.04685 0.06752,-0.0248 0.06339,-0.02205 0.06891,-0.01242 0.08406,-0.01517 0.110242,-0.0069 0.119888,0.0014 h 0.117133 l 0.111623,0.0028 0.100597,0.0083 0.107484,0.0069 0.129538,0.01379 0.111622,0.02205 0.0937,0.02755 0.09371,0.02067 0.02204,0.06201"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path218"
+ d="m 88.761835,73.619343 -0.0689,-0.02893 -0.100598,-0.03443 -0.0689,-0.01517 -0.06201,-0.0014 -0.04961,0.01655 -0.05925,0.0069 -0.05926,0.02067 -0.05237,0.02618 -0.0565,0.03996 -0.06615,0.04685 -0.05512,0.06064 -0.06615,0.06477 -0.06752,0.08544 -0.0565,0.100598 -0.05237,0.111619 -0.05925,0.117133 -0.04686,0.128157 -0.03858,0.139185 -0.0303,0.139182 -0.02342,0.140557 -0.0083,0.144695 -0.01791,0.150206 -0.01241,0.158475 -0.0013,0.144695 -0.0083,0.130912 -0.01101,0.126782 -0.02893,0.122643 -0.0372,0.121267 -0.05512,0.103353 -0.06064,0.0937 -0.06752,0.08682 -0.05788,0.07579 -0.01654,0.07166 -0.05099,0.06063 -0.09095,0.05926 -0.06615,0.05237 -0.05512,0.04823 -0.04547,0.04961 -0.05237,0.04685 -0.05926,0.03306 -0.04823,0.03447 -0.04547,0.0193 -0.02479,0.0041 -0.01378,-0.0041 -0.02479,-0.0083 -0.01516,-0.01654 0.0083,-0.01242 -0.0013,-0.01379 -0.0083,-0.01379"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path220"
+ d="m 81.54505,93.475492 -0.0055,-0.02755 -0.02755,-0.02755 -0.02205,0.0096 0.02205,-0.0083 0.01654,-0.0028 0.0083,0.0013 0.02893,0.0028 0.04961,-0.01791 0.07166,-0.03859 0.09646,-0.02617 0.114374,-0.01516 0.110243,-0.0041 0.110243,-0.0013 0.09922,0.0055 0.09784,0.02066 0.0689,0.02066 0.04685,0.03447 0.03447,0.03996 0.01654,0.04685 0.01792,0.05512 -0.0055,0.07717 -0.02342,0.07993 -0.01242,0.09509 -0.01517,0.117131 -0.01655,0.140563 -0.01517,0.141936 -0.03306,0.128156 -0.0097,0.118512 0.0069,0.114379 0.02617,0.09784 0.04134,0.07442 0.03996,0.04823 0.04134,0.03858 0.04685,0.02893 0.05099,0.0055 0.05926,0.01241 0.07442,0.01378 0.07579,0.02893 0.06615,0.02066 0.07855,0.01791 0.110243,0.02066 0.100595,0.02204 0.06339,0.0083 0.06201,-0.0097 0.07993,-0.0055"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path222"
+ d="m 84.775173,94.495238 0.0055,-0.02204 0.01378,-0.02479 -0.0041,0.01241 -0.0028,0.02204 -0.01516,0.02755 -0.02479,0.05788 -0.04272,0.07579 -0.03306,0.09508 -0.02204,0.106109 -0.01791,0.110244 -0.04685,0.206705 -0.01654,0.100595 -0.01378,0.09646 v 0.08819 l 0.01516,0.07166 0.02479,0.04134 0.02893,0.02755 0.04134,0.0096 0.04686,0.0055 0.06477,-0.0055 0.05512,-0.02066 0.04548,-0.03305 0.05236,-0.04823 0.04961,-0.06477 0.06201,-0.0813 0.07028,-0.0882 0.06339,-0.09922 0.05512,-0.08819 0.04547,-0.0813 0.04272,-0.08958 0.04547,-0.07992 0.05374,-0.06063 0.03996,-0.04961 0.02479,-0.04409 0.0303,-0.02893 0.02755,-0.02342 0.01378,-0.0069 -0.0028,0.0083 0.0069,0.01929 -0.0041,0.01791 -0.01516,0.01791 -0.0055,0.0083 0.0041,0.02479 -0.0055,0.05099 0.0013,0.07717 -0.0055,0.08957 -0.01379,0.09646 -0.02066,0.111622 -0.02204,0.133671 -0.02204,0.152961 -0.02066,0.159853 -0.01929,0.168121 -0.01929,0.170874 -0.0096,0.168124 -0.0013,0.161229 v 0.163986 l -0.0096,0.163986 -0.01241,0.151585 -0.0055,0.132292 0.0096,0.135046 -0.01929,0.119891 -0.0303,0.09233 -0.02342,0.06614 -0.0303,0.04961 -0.0441,0.03996 -0.03721,0.03996 -0.04134,0.02342 -0.04685,0.01791 -0.04685,0.0083 -0.05099,-0.0097 -0.05787,-0.01791 -0.07166,-0.02755 -0.06201,-0.04272 -0.05512,-0.06615 -0.05926,-0.08268 -0.04134,-0.09095 -0.0083,-0.08544 -0.0041,-0.08406 0.0096,-0.0813 0.02066,-0.07304 0.01101,-0.06201 0.03447,-0.05788 0.04961,-0.05236 0.0689,-0.0441 0.06752,-0.04823 0.06477,-0.05099 0.08544,-0.05237 0.09646,-0.0565 0.117134,-0.04134 0.101975,-0.04961 0.08131,-0.0441 0.09922,-0.03168 0.112999,-0.02617 0.09646,-0.0041 0.06614,0.01929 0.06339,0.03305 0.04272,0.0565 0.01241,0.06891"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path224"
+ d="m 88.752191,94.37535 -0.03583,0.07304 -0.06339,0.09371 -0.04823,0.04134 -0.04134,0.03583 -0.04272,0.06201 -0.06201,0.08268 -0.0441,0.112998 -0.05512,0.126781 -0.05788,0.133673 -0.04134,0.162605 -0.03721,0.192926 -0.03171,0.190169 -0.02342,0.186034 -0.02479,0.177768 -0.01791,0.166743 0.0028,0.140558 0.01101,0.117133 0.01791,0.08958 0.02066,0.06477 0.03446,0.0441 0.05374,0.03305 0.05375,0.03583"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path226"
+ d="m 89.291002,95.887061 -0.01101,-0.06615 -0.03721,-0.0565 0.0055,-0.01791 0.02204,-0.0013 0.02066,-0.0055 0.02617,-0.03306 0.04685,-0.0689 0.06339,-0.09922 0.07855,-0.108866 0.07441,-0.110241 0.07717,-0.106108 0.07993,-0.08544 0.07166,-0.05512 0.05788,-0.01929 0.03171,0.01654 0.0055,0.03721 0.0028,0.04547 0.01654,0.06063 0.01101,0.08544 0.0069,0.09784 0.0096,0.09784 0.02755,0.108868 0.03721,0.122643 0.03306,0.128161 0.04685,0.108863 0.03859,0.0937 0.0565,0.06615 0.07166,0.06753 0.0565,0.07028 0.0441,0.07166 0.03859,0.06477 0.03168,0.0565 0.02204,0.05375 0.01516,0.03858 0.01654,0.02617 -0.01378,0.03168"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path228"
+ d="m 90.502296,95.164968 -0.01654,0.0689 -0.09095,0.128156 -0.09371,0.08682 -0.07579,0.07854 -0.0882,0.08957 -0.07992,0.107487 -0.08957,0.11162 -0.0882,0.122648 -0.09508,0.117131 -0.07855,0.104732 -0.05788,0.09922 -0.0565,0.09095 -0.05236,0.07717 -0.03859,0.06201 -0.02342,0.05374 -0.02617,0.03447 v 0.02893 l 0.01378,0.0041"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path230"
+ d="m 91.686031,94.963773 0.01654,0.08131 0.0937,0.104727 0.07441,0.05788 0.07028,0.03859 0.06476,0.05926 0.06477,0.07855 0.05926,0.108866 0.05236,0.125402 0.02755,0.139181 -0.0055,0.163986 -0.02066,0.173633 -0.05788,0.16261 -0.05375,0.152961 -0.0565,0.146071 -0.08406,0.141942 -0.09784,0.136421 -0.0937,0.126781 -0.100597,0.111622 -0.106108,0.06752 -0.08682,0.0441 -0.08544,0.01929"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path232"
+ d="m 95.155933,70.999693 h -0.03172 l -0.05099,0.0083 -0.05099,0.02342 -0.0565,0.03306 -0.06063,0.05099 -0.07028,0.0689 -0.07579,0.08406 -0.08819,0.108867 -0.07717,0.152961 -0.06064,0.183279 -0.0565,0.195682 -0.04685,0.202572 -0.03306,0.195679 -0.02341,0.191547 -0.01241,0.166744 0.0028,0.141937 0.0069,0.128157 0.01791,0.128157 0.03858,0.126781 0.05099,0.129537 0.04823,0.108864 0.04272,0.09233 0.06063,0.0689 0.06201,0.0441"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path234"
+ d="m 95.986889,72.482464 -0.01516,-0.08268 -0.02893,-0.07717 0.02893,0.01654 -0.0069,0.0083 -0.0041,0.01101 v -0.02618 l 0.0083,-0.02618 0.01516,-0.05237 0.03306,-0.0565 0.03305,-0.07579 0.0303,-0.07855 0.03583,-0.07304 0.04823,-0.05236 0.04134,-0.03859 0.02342,-0.03447 0.04547,-0.03858 0.05512,-0.03168 0.05512,-0.0083 0.04823,0.0014 0.04961,0.02067 0.04823,0.02617 0.04272,0.0303 0.04548,0.05374 0.04272,0.07166 0.04823,0.08957 0.04272,0.108864 0.03446,0.124022 0.0441,0.113002 0.04961,0.103353 0.05237,0.106109 0.05926,0.09646 0.08268,0.08406 0.06339,0.07855 0.04134,0.07028 0.05788,0.06615 0.05512,0.05926 0.04823,0.03996 0.04548,0.02205 0.02479,0.0028 0.02066,-0.01101 0.02066,-0.04547"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path236"
+ d="m 97.425561,71.969832 -0.01791,0.02342 -0.100597,0.03858 -0.08268,0.04686 -0.06064,0.05099 -0.07165,0.06477 -0.07304,0.07304 -0.08406,0.07579 -0.103354,0.09371 -0.09371,0.104733 -0.06615,0.110242 -0.06477,0.101975 -0.06064,0.09508 -0.05236,0.08268 -0.03859,0.06615 -0.05926,0.05926 -0.04823,0.03859 -0.0013,0.01517 h 0.0055 l 0.01929,-0.02067"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path238"
+ d="m 98.50043,71.206399 0.03168,0.08544 0.04823,0.119888 0.06615,0.06477 0.05512,0.06615 0.06201,0.07579 0.06201,0.07717 0.0565,0.08131 0.04823,0.08131 0.02893,0.09922 0.01238,0.103349 -0.01791,0.117137 -0.02617,0.129533 -0.04547,0.14056 -0.06339,0.139182 -0.0689,0.128157 -0.06063,0.136426 -0.0565,0.129537 -0.04961,0.108863 -0.03858,0.08544 -0.04134,0.07579 -0.05099,0.06477 -0.05374,0.04547"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path240"
+ d="m 67.905233,102.9495 -0.08957,0.0758 -0.137802,0.11024 -0.04134,-0.0358 0.0303,-0.0441 0.02205,-0.0606 0.01379,-0.0841 0.02067,-0.10059 0.0303,-0.113 0.05788,-0.13092 0.08681,-0.15571 0.09508,-0.15159 0.08681,-0.13918 0.09509,-0.10749 0.08406,-0.0785 0.08544,-0.0551 0.08406,-0.0193 0.0689,0.0234 0.04685,0.0496 0.02755,0.0593 0.03168,0.0689 0.02617,0.0772 0.02067,0.10335 0.03305,0.10887 0.01379,0.13091 0.0303,0.14332 0.04685,0.15985 0.03583,0.17501 0.03583,0.17226 0.02618,0.16536 0.0303,0.16537 0.03996,0.14607 0.03306,0.13091 0.03721,0.11438 0.03168,0.10748 0.03858,0.0744 0.0303,0.051 0.02755,0.0358 0.02205,0.022 0.01242,0.011 0.01242,-0.0138"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path242"
+ d="m 69.513402,102.09512 -0.06201,0.0455 -0.143316,0.12816 -0.122643,0.14332 -0.09922,0.12677 -0.110243,0.12954 -0.100598,0.14883 -0.112999,0.1502 -0.139181,0.15297 -0.107488,0.16123 -0.08957,0.16123 -0.08819,0.14469 -0.06752,0.12816 -0.05237,0.10335 -0.0303,0.0841 -0.0096,0.0579 0.0028,0.0358 0.01242,0.0179 v 0.0138 l 0.01379,0.0207"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path244"
+ d="m 70.767418,103.91413 -0.0069,-0.0675 -0.04961,-0.005 -0.01101,0.11989 -0.0248,0.10473 -0.04134,0.0978 -0.05374,0.0978 -0.05237,0.10748 -0.04272,0.10611 -0.03721,0.1006 -0.04134,0.0882 -0.01242,0.0799 0.04685,0.0537"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path246"
+ d="m 102.96252,103.64265 -0.0579,0.0234 -0.11714,0.0551 -0.0455,0.0427 0.0124,-0.0138 0.0317,-0.0207 0.0345,-0.0248 0.0427,-0.0427 0.0634,-0.0593 0.0772,-0.0923 0.0992,-0.11024 0.113,-0.12127 0.13091,-0.10886 0.12403,-0.11438 0.11713,-0.12953 0.0978,-0.13092 0.0978,-0.13229 0.113,-0.11575 0.10749,-0.10474 0.0937,-0.0675 0.0827,-0.0372 0.0882,-0.0303 0.0813,-0.007 0.073,0.0138 0.0648,0.0276 0.0413,0.0468 0.0138,0.0606 0.0138,0.0758 0.0124,0.10336 0.003,0.1254 -10e-4,0.1378 -0.0207,0.13918 -0.0124,0.13918 -0.01,0.14057 -0.005,0.14469 -0.004,0.13642 0.004,0.13092 0.0207,0.12264 -0.0165,0.11576 0.0179,0.0882 0.0551,0.0717 0.0372,0.0634 0.0234,0.0606 0.011,0.0482"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path248"
+ d="m 105.36995,102.70559 -0.0758,0.001 -0.18466,0.0772 -0.15847,0.14608 -0.15296,0.13229 -0.14056,0.13504 -0.15572,0.12816 -0.15848,0.12954 -0.12815,0.12126 -0.13505,0.12954 -0.14883,0.13367 -0.11713,0.13091 -0.10198,0.10887 -0.0868,0.113 -0.0896,0.11575 -0.0758,0.1006 -0.0386,0.0703 0.008,0.0413 0.0152,0.0193 0.0317,0.007 0.01,0.005"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path250"
+ d="m 105.63453,104.36061 -0.003,-0.0606 -0.0207,-0.0882 0.0345,-0.0193 0.0413,-0.0152 0.0427,-0.0138 0.0675,-0.0331 0.0854,-0.0234 0.0896,-0.0234 0.0841,-0.0152 0.0799,-0.007 0.0675,0.008 0.0482,0.022 0.0441,0.0289 0.0427,0.0496 -0.003,0.0593 -0.0345,0.0524 -0.0551,0.0648 -0.0827,0.0909 -0.10473,0.10887 -0.113,0.11437 -0.113,0.11714 -0.10197,0.1254 -0.0951,0.11714 -0.0758,0.0923 -0.0455,0.0744 -0.0193,0.0661 -0.011,0.0579 -0.003,0.0413 0.022,0.0276 0.0276,0.007 0.04,0.005 0.0524,0.005 0.0689,0.004 0.0882,0.001 0.0951,-0.01 0.10336,-0.0152 0.10748,-0.007 0.0909,-0.005 0.1006,0.011 0.11162,0.0276"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path252"
+ d="m 86.969008,96.190228 v -0.04272 l -0.02755,-0.0083 v 0.0882 l -0.01791,0.0937 -0.03447,0.09233 -0.02617,0.08682 -0.02342,0.08682 -0.02617,0.08958 -0.01929,0.08819 -0.01654,0.08544 -0.0083,0.07579 0.0083,0.05236 0.0083,0.03305 0.01516,0.01791 0.0041,0.01241 0.0013,0.0096"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path254"
+ d="m 92.293747,73.318931 0.0083,-0.03306 -0.0028,-0.03447 -0.0028,-0.0041 0.01516,-0.01654 0.01516,-0.01792 0.0303,-0.0248 0.03858,-0.04686 0.06615,-0.06615 0.08682,-0.05374 0.08406,-0.04961 0.07717,-0.03583 0.07855,-0.02618 0.07028,-0.01654 0.05788,0.0069 0.05237,0.02067 0.05374,0.04134 0.02617,0.07166 0.0028,0.08957 -0.0041,0.107489 -0.0303,0.126781 -0.0441,0.126777 -0.07028,0.115758 -0.05788,0.114374 -0.06063,0.103353 -0.05374,0.09233 -0.04272,0.07442 -0.03721,0.0565 -0.02066,0.05099 -0.03443,0.0441 -0.0303,0.05099 -0.02617,0.0565 -0.01929,0.03997 -0.02066,0.01655 h -0.0069 0.0013 l 0.0083,-0.0028 0.01378,0.0014 0.01929,-0.0041 0.04548,0.0028 0.05237,0.0028 0.06614,-0.01379 0.06615,-0.02067 0.07717,-0.01517 0.09509,-0.02067 0.09233,-0.01379 0.09095,-0.01101"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ </g>
+</svg>
diff --git a/img/hsrlogo-bw.eps b/img/hsrlogo-bw.eps
deleted file mode 100644
index 709aacd..0000000
--- a/img/hsrlogo-bw.eps
+++ /dev/null
Binary files differ
diff --git a/img/hsrlogo-color.eps b/img/hsrlogo-color.eps
deleted file mode 100644
index d86aef7..0000000
--- a/img/hsrlogo-color.eps
+++ /dev/null
Binary files differ
diff --git a/img/lagrange-multipliers.pdf b/img/lagrange-multipliers.pdf
new file mode 100644
index 0000000..b0a741d
--- /dev/null
+++ b/img/lagrange-multipliers.pdf
Binary files differ
diff --git a/img/lagrange-multipliers.svg b/img/lagrange-multipliers.svg
new file mode 100644
index 0000000..745d3e2
--- /dev/null
+++ b/img/lagrange-multipliers.svg
@@ -0,0 +1,446 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="53.740433mm"
+ height="53.693851mm"
+ viewBox="0 0 53.740433 53.693851"
+ version="1.1"
+ id="svg4186"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="lagrange-multipliers.svg">
+ <defs
+ id="defs4180" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.8"
+ inkscape:cx="123.70222"
+ inkscape:cy="99.272869"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1920"
+ inkscape:window-height="1017"
+ inkscape:window-x="0"
+ inkscape:window-y="30"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata4183">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-63.276946,-50.738169)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4"
+ d="m 65.303428,57.963281 h 0.0124 -0.02343 0.01791 l -0.01653,0.0014 -0.0055,-0.01101 -0.01654,0.0041 0.0055,-0.0014 0.0041,0.01654 0.0041,0.02205 0.0028,0.03447 0.0028,0.05512 v 0.187413 l 0.0124,0.115757 0.0014,0.09784 v 0.09508 l -0.0014,0.122647 -0.0014,0.130912 -0.0014,0.139182 v 0.370691 l -0.0248,0.129537 0.0096,0.151585 0.03996,0.146071 0.0055,0.132292 -0.0124,0.137805 -0.0027,0.148827 0.0083,0.15434 -0.0124,0.15434 0.0096,0.152961 0.0248,0.139185 0.02618,0.157095 0.01378,0.154342 0.02343,0.150204 0.0096,0.147451 0.03307,0.139182 0.01102,0.144691 -0.0055,0.129537 -0.0069,0.09095 -0.0069,0.09922 -0.0055,0.111622 -0.01516,0.110244 -0.04961,0.147451 -0.01791,0.15572 -0.02343,0.141936 -0.03307,0.141937 -0.01929,0.157099 -0.0069,0.158471 -0.01516,0.15434 -0.0041,0.16261 -0.0055,0.132291 0.0069,0.130916 -0.0055,0.121264 0.01516,0.122647 -0.0096,0.143316 v 0.135047 l 0.02343,0.126781 0.0014,0.137802 -0.0014,0.15434 -0.0027,0.158475 -0.0028,0.135047 0.0096,0.136426 0.0124,0.137806 -0.0124,0.151585 -0.0014,0.163985 -0.0028,0.157095 -0.0124,0.151585 0.01102,0.137803 0.01516,0.144695 0.01378,0.139181 0.01378,0.147451 v 0.148791 l -0.0014,0.152965 -0.01516,0.150205 -0.0041,0.130912 0.02343,0.121268 0.0014,0.122647 v 0.136426 l -0.02618,0.140561 0.0083,0.15434 0.04961,0.176389 0.01929,0.197058 v 0.198437 l 0.0096,0.190169 0.0096,0.184658 -0.0041,0.192923 0.0083,0.192927 -0.01516,0.180524 -0.0027,0.152961 -0.01516,0.144695 -0.01378,0.136426 -0.0014,0.126778 0.05237,0.103353 0.02067,0.09508 -0.03307,0.115756 -0.0069,0.119888 -0.0041,0.119888 0.01102,0.121268 0.0124,0.125402 -0.02343,0.112999 -0.0028,0.121267 0.0124,0.132292 0.0248,0.157095 0.01654,0.176389 -0.01102,0.133671 -0.0027,0.15572 -0.0041,0.195678 -0.01516,0.191549 -0.01378,0.198436 0.02343,0.165365 0.0055,0.132291 -0.01102,0.119892 0.0124,0.101974 0.02618,0.08957 0.01516,0.0689 0.01102,0.06063 0.02205,0.05099 0.01102,0.0565 -0.0041,0.05512 0.0041,0.08681 -0.0041,0.144695 -0.0055,0.141937 -0.01516,0.09784 0.0096,0.09784 -0.0096,0.100598 -0.0248,0.112999 -0.0124,0.133671 -0.02343,0.16123 -0.0124,0.146071 0.0055,0.09095 -0.01791,0.06891 0.01516,0.08268 0.03032,0.09095 0.01929,0.09508 0.01378,0.110243 v 0.114378 l -0.0041,0.136426 0.0055,0.154341 -0.01516,0.146071 -0.0041,0.09508 -0.0014,0.07442 -0.0124,0.09371 0.02343,0.09646 -0.02067,0.117133 -0.03858,0.177768 -0.01654,0.177769 -0.02618,0.101973 -0.03169,0.07166 0.0028,0.05926 0.0689,0.05788 0.0028,0.09095 -0.03307,0.144692 -0.04134,0.161234 -0.01791,0.139181 -0.0248,0.104729 v 0.103351 l 0.03032,0.106109 0.0083,0.09784 0.0041,0.114374 0.0014,0.121269 -0.0124,0.13367 -0.01378,0.126781 -0.01516,0.07992 0.01102,0.06201 0.01378,0.07304 -0.0096,0.08544 -0.04823,0.08682 -0.0055,0.09095 0.0124,0.121269 -0.01929,0.146074 -0.0124,0.119888 -0.0096,0.0689 0.0041,0.06201 0.01654,0.06752 0.0055,0.106109 -0.03445,0.159853 -0.02894,0.16674 -0.01516,0.117134 0.0014,0.06064 0.01654,0.03447 0.0069,0.0565 0.0028,0.09233 0.02756,0.09508 0.0014,0.124023 -0.02618,0.14745 -0.01791,0.129537 -0.0027,0.06201 0.02343,0.02755 0.0041,0.03583 0.0014,0.0565 v 0.07717 l -0.01378,0.09371 -0.0028,0.152961 -0.01378,0.183279 -0.02756,0.14056 -0.01102,0.08268 0.0027,0.06063 0.01516,0.114377 -0.01791,0.1695 v 0.173625 l 0.0027,0.130913 -0.02067,0.09233 0.01102,0.07166 0.01516,0.09095 0.01516,0.104727 0.0014,0.1006 -0.0014,0.104728 0.0096,0.09095 0.01102,0.07579 -0.0014,0.0813 -0.0027,0.07855 0.03307,0.08682 0.0027,0.07166 -0.0027,0.06615 0.0083,0.07303 -0.01378,0.0813 -0.01516,0.09508 -0.0041,0.10749 -0.0124,0.119888 -0.0124,0.133671 0.0248,0.143317 0.0055,0.152961 -0.0083,0.111621 0.01378,0.06753 0.02618,0.0441 -0.0096,0.05788 -0.0028,0.08957 0.03307,0.111622 -0.0124,0.141936 -0.0041,0.118512 -0.0028,0.07166 -0.0014,0.05374 -0.0014,0.0565 0.01102,0.06201 0.01378,0.09508 -0.0124,0.121271 -0.01378,0.158474 -0.02756,0.122642 -0.0014,0.07166 0.0028,0.05099 0.01516,0.06477 0.01654,0.08406 0.01516,0.100594 -0.02205,0.147453 -0.06615,0.15296 -0.02067,0.106111 0.0124,0.05925 0.0069,0.04961 0.01654,0.09646 -0.0055,0.147447 -0.01102,0.130915 -0.0124,0.08268 v 0.07717 l 0.0014,0.09233 0.0027,0.09095 -0.0124,0.09784 0.0124,0.100594 -0.01102,0.101977 -0.0124,0.103354 -0.0014,0.09095 0.0014,0.07579 -0.02343,0.06063 v 0.07028 l 0.01378,0.06477 0.0027,0.05512 0.0028,0.03168 0.0014,0.02617 -0.0014,0.03996 -0.0124,0.07166 -0.0028,0.0813 0.0124,0.07166 0.0014,0.08544 0.0124,0.07993 -0.01102,0.07441 -0.0014,0.06063 -0.0014,0.05374 v 0.03306 l 0.0124,0.03721 0.02756,0.02066 0.01378,0.02066 -0.0124,0.04134 -0.0055,0.06477 -0.0055,0.13367 -0.02756,0.165365 -0.01791,0.117133 0.0014,0.07028 0.0028,0.08819 -0.03169,0.15434 -0.03721,0.184658 -0.0248,0.172254 -0.03445,0.136427 -0.01929,0.124024 -0.0055,0.110241 -0.0041,0.09646 -0.02756,0.0937 0.0041,0.07717 0.01929,0.05237 0.0069,0.02893 0.0041,0.03996 0.0124,0.02893 0.03583,0.03997 0.02618,0.05098 0.01378,0.03443 0.01654,0.04686 0.01791,0.07717 0.0069,0.08682 -0.0055,0.09508 0.0041,0.101974 -0.01654,0.135048 -0.02894,0.173633 -0.03169,0.125402 0.02618,0.06477 -0.0055,0.05374 -0.03169,0.07304 -0.0124,0.114376 -0.01102,0.10473 -0.0096,0.07993 0.01791,0.04961 0.0055,0.05374 -0.01929,0.07303 -0.01378,0.06201 0.02618,0.03306 0.03858,0.03583 0.0041,0.06063 0.01102,0.07441 -0.0028,0.09784 -0.0041,0.09646 0.03169,0.100598 0.0248,0.110244 -0.0014,0.111617 -0.0041,0.09646 0.02067,0.07441 0.05788,0.07993 -0.0096,0.07855 -0.03996,0.09509 -0.02205,0.130911 -0.0441,0.199818 -0.0565,0.195681 -0.02894,0.110244 0.0069,0.06752 0.0014,0.09508 -0.0028,0.115758 0.02343,0.08682 0.02067,0.06477 0.01791,0.06339 0.01516,0.06064 0.02343,0.07028 0.03445,0.07992 0.01102,0.06339 0.0055,0.0565 0.0041,0.0441 0.01654,0.0441 -0.0041,0.05788 -0.01929,0.06201 -0.01791,0.04272 -0.03858,0.04272 -0.02894,0.03858"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6"
+ d="m 64.184461,58.187901 -0.04961,0.09095 -0.08819,0.163989 -0.06615,0.03996 0.0096,-0.0303 0.02205,-0.02893 0.03169,-0.04272 0.02894,-0.05237 0.03583,-0.06201 0.06615,-0.08406 0.07855,-0.114378 0.110243,-0.15572 0.121268,-0.205327 0.118511,-0.230131 0.146072,-0.206706 0.165365,-0.202572 0.115755,-0.210842 0.06752,-0.212217 0.0813,-0.216351 0.07441,-0.221866 0.06615,-0.197058 0.06614,-0.166744 0.0689,-0.170875 0.07579,-0.188792 0.05926,-0.179144 0.0689,-0.139182 0.02067,-0.111622 -0.0055,-0.07579 0.01654,-0.03721 0.02343,-0.0055 -0.0083,0.02205 -0.0083,0.03583 0.0027,0.03721 -0.0069,0.03168 0.0083,0.02893 -0.0083,0.01242 -0.02067,0.01379 -0.01378,0.0041 0.02343,0.02067 0.01929,0.06064 0.01791,0.110243 0.02618,0.126777 0.0248,0.132292 0.01102,0.151585 0.03169,0.191548 0.04548,0.23151 0.02343,0.234266 0.03032,0.241155 0.03169,0.235645 0.01792,0.216352 0.02894,0.194306 0.03032,0.173631 0.01792,0.150205 0.0041,0.135051 0.01792,0.08268 0.01792,0.0303 0.0069,0.0041 0.01792,-0.0096 0.03032,-0.0014 0.03721,-0.0083 0.0055,-0.0096 0.0014,-0.01517 0.01516,-0.01101 0.01103,-0.01242"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path8"
+ d="m 65.743022,95.401816 -0.05926,0.01101 h -0.08957 l -0.04272,0.01654 -0.01378,0.0083 0.02067,-0.0013 0.0248,-0.01516 0.02756,-0.02066 h 0.02756 l 0.03169,0.0013 0.04548,-0.0083 0.07028,0.0013 0.08544,0.0013 0.09508,-0.0097 0.09233,-0.02479 0.09784,-0.01241 0.212218,-0.04685 0.112999,-0.03443 0.114377,-0.01101 0.08957,-0.0069 0.08957,0.0069 0.114377,-0.0041 0.104731,0.01654 0.09784,0.01791 0.09508,0.01516 0.108867,0.02617 0.101974,0.02479 0.100595,0.01101 0.119891,0.0069 0.117133,0.0055 0.146071,-0.0055 0.163989,-0.01929 0.146071,-0.0303 0.143316,-0.04134 0.16261,-0.02755 0.147447,-0.02479 0.136426,-0.0069 0.143316,0.0069 0.139181,0.0097 0.135051,0.0096 0.125398,0.0069 0.09095,0.02893 0.101974,0.02617 0.112998,0.02617 0.110243,0.02342 0.118512,0.03168 0.112999,0.02066 0.100598,0.0055 0.117133,-0.0083 0.125402,-0.02204 0.14745,-0.03306 0.152961,-0.03305 0.140561,-0.05374 0.151585,-0.04961 0.115753,-0.03583 0.09784,-0.02893 0.08268,-0.02479 0.09646,-0.01241 0.06063,0.01241 0.03996,0.0013 0.04823,0.02204 0.0303,0.03305 0.01654,0.03031 0.01654,0.02479 0.01242,0.02204 0.02755,0.01929 0.03306,0.01791 0.01379,0.0083 0.02893,0.01241 0.04686,0.01654 0.05236,0.0069 0.04961,-0.0041 0.04548,-0.01791 0.06339,-0.0055 0.08957,-0.0028 0.09508,-0.02479 0.08957,-0.0013 0.07579,0.0028 0.07717,-0.0069 0.06752,0.0028 0.06477,0.0028 0.05237,0.02755 0.06201,0.02755 0.07717,0.01516 h 0.08544 l 0.09646,0.0069 0.08682,0.02066 0.0937,0.0096 0.104733,0.0083 0.09784,0.0083 0.09095,0.0096 0.06752,-0.0028 0.0689,-0.0041 0.08544,-0.0028 0.08131,-0.0028 0.08819,-0.0013 0.101974,-0.0013 0.118512,-0.01101 0.130912,-0.02479 0.144696,-0.02617 0.143316,-0.02479 0.128157,-0.01101 0.117133,0.01791 0.125402,0.01929 0.16123,0.0069 0.183278,0.0041 0.165365,0.01378 0.162609,0.02479 0.150206,0.02617 0.16812,0.01101 0.226,0.0069 0.183279,0.0083 0.125402,-0.0041 0.144691,-0.0055 0.146075,-0.01791 0.15434,-0.01654 0.166741,-0.02755 0.186033,-0.02755 0.188793,-0.02342 0.177768,-0.02204 0.202572,-0.0083 0.221862,-0.0041 0.194303,0.0069 0.165365,0.02066 0.157095,0.01929 0.139185,0.0303 0.15434,0.02755 0.143316,0.03721 0.133668,0.02204 0.107488,0.03168 0.125402,0.02893 0.16123,0.0041 0.162609,0.01516 0.147451,0.0028 0.140557,0.0041 0.150206,-0.0055 0.30868,-0.03583 0.172258,-0.02617 0.179144,-0.05099 0.16812,-0.02617 0.180523,-0.02066 0.163985,-0.03031 0.146072,-0.01654 0.159854,-0.0028 0.14745,0.02204 0.144692,0.02204 0.130916,0.02204 0.132292,0.04134 0.114377,0.03997 0.118509,0.04823 0.137805,0.02066 0.135047,0.01654 0.100598,0.01516 0.118513,0.01241 0.141936,0.02617 0.129537,0.03168 0.121267,-0.0055 0.148826,-0.0083 0.151586,-0.0083 0.126777,-0.03168 0.143316,-0.02755 0.135051,-0.0028 0.139181,-0.0096 0.14745,-0.0083 0.155717,-0.0083 0.15434,-0.0069 0.151585,-0.0083 0.140561,0.01654 0.135046,0.01791 0.125402,0.01654 0.132292,0.0028 0.159851,0.02204 0.14883,0.01238 0.140557,0.02204 0.14745,0.0097 0.154341,0.0083 0.143316,-0.0055 0.158474,-0.01654 0.165365,-0.0069 0.15572,-0.03996 0.128157,-0.02893 0.128157,-0.02479 0.133671,-0.02342 0.14745,-0.0069 0.151582,-0.01791 0.143316,-0.0303 0.118512,-0.0069 0.119888,-0.01654 0.135051,-0.01929 0.15434,-0.0083 0.190168,-0.0069 0.177765,0.0041 0.115757,0.0069 0.121267,-0.0083 0.133671,-0.0096 0.129533,-0.0013 0.143316,0.0013 h 0.15434 l 0.144696,0.01238 0.140561,0.0013 0.128157,-0.01241 0.125402,-0.0013 0.292141,-0.02755 0.130914,-0.01378 0.136427,-0.02342 0.151585,-0.01238 0.198437,-0.02204 0.201192,-0.02342 0.152964,-0.0083 0.150206,-0.01791 0.15434,-0.0083 0.15985,-0.0069 0.166746,0.01654 0.150204,0.0069 0.154342,0.0041 0.14745,0.0028 0.292142,0.02479 0.148831,-0.0013 0.170873,0.0096 0.199819,-0.0028 0.166743,-0.0028 0.135046,0.0096 0.147452,0.01101 0.180523,-0.01241 0.190169,-0.01516 0.157094,-0.0028 h 0.100599 l 0.112999,0.0013 0.151585,0.0013 0.157093,-0.01241 h 0.154342 l 0.151586,0.0013 0.141935,0.01378 0.137803,0.01516 0.14745,0.02479 0.154339,0.0028 0.163989,-0.0013 0.155718,0.0083 0.151585,-0.0028 0.137806,-0.0028 0.133667,-0.0028 0.144695,-0.0028 0.14056,0.01101 0.147447,0.01241 0.151585,0.0013 h 0.141936 l 0.148831,-0.0013 0.16261,-0.0013 0.188788,-0.0013 0.18328,0.01101 0.155718,0.0013 0.163986,-0.01101 0.170878,-0.0028 0.194302,-0.01241 0.188794,-0.02617 0.192923,-0.01378 0.194302,-0.01101 0.172255,-0.0096 0.192929,-0.0083 0.235643,-0.0096 0.219107,0.0041 0.212217,-0.02066 0.210841,-0.0096 0.201194,0.0013 0.205324,0.0041 0.19707,-0.0096 0.19567,0.01378 0.19569,0.0028 0.21773,0.0013 0.21635,-0.0013 h 0.22462 l 0.21497,-0.01378 0.19982,-0.01378 0.1943,-0.01378 h 0.18328 l 0.1819,-0.01101 0.18328,-0.01101 0.18603,-0.02204 0.17777,-0.01241 0.17501,0.0028 0.19844,0.0028 0.26045,0.0041 0.2384,-0.0097 0.16674,-0.0096 0.16812,-0.0097 h 0.1819 l 0.18742,0.01378 0.17501,0.01516 0.16261,0.03858 0.16261,0.02755 0.15296,0.02479 0.15434,0.02204 0.16674,0.0069 0.17226,0.01654 0.14331,0.0069 0.14194,-0.0055 0.16536,-0.0083 0.16812,-0.0303 0.15297,-0.01929 0.14745,-0.02617 0.0937,-0.01241 0.0758,-0.01929 0.0978,-0.0083 0.0841,0.0055 0.0675,0.0069 0.0551,0.01791 0.0482,0.03031 0.0289,0.01791 0.006,0.01378 0.0358,0.01791 0.0124,-0.0013 -0.01,-0.0055 -0.0248,0.0028 -0.007,-0.0028 0.0179,-0.0041 0.0207,-0.0013 0.004,-0.02479 -0.0138,0.0055 0.004,0.0028 0.0262,-0.0069 v 0.0041 l -0.005,0.0013 0.008,0.0013 0.006,0.0013 0.0275,-0.0083 0.0469,-0.0028 0.0469,-0.0013 0.0496,-0.0013 h 0.0482 l 0.0455,0.01378 0.062,0.0013 0.0455,0.01378 0.0248,0.03583 0.0537,0.03721 0.062,0.04961 0.0992,0.04823 0.062,0.06339"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path10"
+ d="m 107.94681,94.161581 -0.008,-0.144695 -0.0537,-0.129535 -0.0868,0.03306 -0.0469,0.04823 -0.0234,0.04685 -0.0152,0.02755 -0.008,0.01791 0.0234,-0.0013 0.0138,-0.0041 0.01,0.0083 0.0317,0.01929 0.0345,0.03721 0.0386,0.07028 0.0262,0.07028 0.0524,0.06615 0.0813,0.06615 0.11851,0.07441 0.13505,0.08819 0.13091,0.0882 0.13367,0.07166 0.12816,0.0689 0.12264,0.06615 0.15021,0.06339 0.1571,0.07855 0.14745,0.05925 0.1378,0.05375 0.1006,0.0689 0.0937,0.05788 0.0606,0.05926 0.0593,0.04548 0.0717,0.04272 0.062,0.06064 0.0413,0.05099 0.0413,0.01238 0.0303,0.0069 0.0317,0.02066 0.0179,0.0055 -0.0193,-0.0096 h -0.0152 l -0.0124,-0.0028 -0.005,-0.0028 h 0.008 l -0.0289,-0.01378 0.005,0.02204 h 0.0289 l -0.04,-0.01791 -0.0276,0.0303 -0.0413,0.02066 -0.0593,0.02479 -0.0593,-0.0055 -0.0551,0.0041 -0.0303,0.0069 -0.0317,0.0069 -0.0372,0.0083 -0.0689,0.0096 -0.0799,0.02342 -0.0703,0.02479 -0.062,0.02342 -0.0813,0.03305 -0.0868,0.04823 -0.0978,0.05925 -0.11851,0.05788 -0.113,0.05788 -0.11438,0.07579 -0.11437,0.08958 -0.113,0.101973 -0.11025,0.111622 -0.0882,0.08819 0.005,0.08131 -0.0524,0.0565 -0.0827,0.05926 -0.0262,0.04685 -0.0138,-0.0041 0.0179,-0.0028 h -0.004 l -0.0152,0.01101 -0.022,-0.0069 -0.011,0.0055 v 0.01101 l 0.001,0.02479 -0.0262,0.0055 -10e-4,0.02893 0.0234,0.02204 0.005,0.01654 0.003,0.02617 0.0152,-0.0055 -0.001,-0.02204 -0.001,0.0069 -0.04,0.04272"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12"
+ d="m 97.68456,58.322948 -0.09095,0.05512 -0.192924,0.07441 -0.143317,0.07304 -0.08819,0.06615 -0.08269,0.06339 -0.05926,0.06339 -0.06339,0.0937 -0.09095,0.119892 -0.07993,0.117133 -0.08544,0.117132 -0.08544,0.158475 -0.103354,0.169496 -0.0813,0.188792 -0.05237,0.217731 -0.06201,0.231511 -0.05374,0.230131 -0.02893,0.241159 -0.02893,0.239776 -0.0069,0.246669 0.0041,0.242535 0.02617,0.261828 0.02342,0.275608 0.07028,0.246669 0.04272,0.242535 -0.01516,0.234265 0.04961,0.209462 0.05374,0.203948 0.06615,0.227379 0.09095,0.241156 0.115755,0.24391 0.1254,0.276987 0.124026,0.31006 0.133667,0.303167 0.151585,0.292146 0.162611,0.274228 0.197056,0.265963 0.208087,0.253559 0.228751,0.2384 0.26045,0.234265 0.283877,0.227376 0.294899,0.208083 0.332105,0.168123 0.341755,0.169499 0.337621,0.177765 0.3514,0.170878 0.36931,0.17501 0.39274,0.166744 0.40377,0.192924 0.46715,0.181902 0.48369,0.137802 0.4644,0.107488 0.51952,0.08682 0.54984,0.0565 0.50574,0.04823 0.40101,0.01654 0.30041,0.02205 0.28112,0.0014 0.25356,0.0083 0.21773,0.0014 0.18603,-0.0069 0.1447,-0.0028"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path14"
+ d="m 91.187113,56.484648 -0.07717,0.03168 -0.146071,0.04272 -0.05512,0.03721 -0.03306,0.01792 -0.04134,0.0041 -0.04823,0.01792 -0.03583,0.03171 -0.04548,0.0069 -0.04823,0.0069 -0.04685,0.01654 -0.03859,0.02067 -0.04823,0.02067 -0.02893,0.03583 -0.02342,0.04686 -0.03721,0.04685 -0.05237,0.04685 -0.03168,0.0565 0.0096,0.0565 -0.0441,0.08268 -0.0813,0.117133 -0.06477,0.111622 -0.07993,0.09508 -0.04548,0.07304 -0.05926,0.07028 -0.05926,0.08268 -0.07579,0.06753 -0.07166,0.06201 -0.04961,0.05237 -0.0441,0.03858 -0.0303,0.03996 -0.03168,0.03168 -0.02205,0.03306 -0.03306,0.03447 -0.02755,0.04134 -0.0028,0.04272 -0.02618,0.03996 -0.0069,0.06752 -0.0303,0.06891 -0.0689,0.07855 -0.0303,0.06339 -0.0303,0.0565 -0.01792,0.09095 -0.02893,0.124023 -0.05512,0.117133 -0.03306,0.133671 -0.02893,0.129536 -0.02755,0.139182 -0.02755,0.136422 -0.07579,0.119892 -0.04685,0.108864 -0.01655,0.07717 -0.03447,0.07993 -0.02893,0.07855 -0.07304,0.100598 -0.03447,0.115753 0.02205,0.106109 -0.02067,0.08682 -0.03996,0.07717 -0.03168,0.07441 -0.0193,0.115757 -0.04272,0.165364 -0.03447,0.180524 0.0041,0.181899 -0.01379,0.176389 -0.0055,0.181903 0.0193,0.176389 0.0083,0.183279 0.0055,0.151585 0.0014,0.136422 v 0.124026 l -0.01379,0.115754 -0.02755,0.103353 -0.01792,0.08406 -0.0014,0.07166 0.03859,0.05099 0.0069,0.02342 -0.03168,0.02755 -0.0055,0.06063 0.02205,0.08544 0.01379,0.126781 0.01379,0.150206 0.0248,0.158475 0.01242,0.175009 0.02205,0.183279 0.04823,0.188793 0.02342,0.205327 0.03306,0.203948 0.02067,0.186037 0.0303,0.152961 0.03171,0.121268 0.01792,0.09508 0.01517,0.09095 0.01655,0.07717 0.02755,0.07855 0.0193,0.07717 0.0193,0.07166 0.0055,0.07303 0.02893,0.07855 0.01101,0.06201 0.0193,0.0565 0.02067,0.05512 0.03447,0.04823 0.0441,0.07855 0.02342,0.10335 0.0441,0.104733 0.0441,0.110243 0.05512,0.133667 0.09371,0.122647 0.06063,0.121267 0.05099,0.111623 0.05788,0.126778 0.04823,0.125401 0.04685,0.09784 0.04686,0.06615 0.05788,0.04961 0.04823,0.05237 0.04823,0.04547 0.05926,0.04686 0.04961,0.06615 0.03721,0.07441 0.05926,0.06201 0.03721,0.08544 0.07166,0.09922 0.08957,0.114377 0.104727,0.114378 0.09233,0.122647 0.05099,0.121267 0.05237,0.112998 0.05374,0.09922 0.07717,0.09233 0.06201,0.07303 0.03447,0.04685 0.02617,0.03858 0.01929,0.02205 0.04272,0.0097 0.03859,0.01517 0.01654,0.03721 0.01516,0.01792 0.01378,0.01517 0.0041,0.0193 0.01929,0.0097 -0.01378,0.0083 0.0041,0.02205 0.06339,0.0083 0.03996,0.01379 0.02204,-0.0028 0.02341,-0.0028 0.03168,0.0096 0.05512,0.0097 -0.01654,0.03721"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path16"
+ d="m 91.360748,68.882854 0.03583,-0.0069 -0.0069,0.02755 v 0.01792"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path18"
+ d="m 103.73277,75.813007 0.0675,0.05788 0.0179,0.06615 0.0565,0.05099 0.0703,0.0689 0.0923,0.07304 0.0978,0.07441 0.073,0.08682 0.0799,0.09508 0.0827,0.09784 0.0909,0.130912 0.0965,0.14745 0.11989,0.133671 0.0965,0.140561 0.091,0.136426 0.0882,0.141937 0.051,0.144696 0.0841,0.126777 0.0799,0.07993 0.12127,0.06477 0.0841,0.09784 0.0207,0.09922 0.0648,0.09922 0.0758,0.121269 0.0951,0.152961 0.0978,0.168122 0.0868,0.15985 0.0717,0.150207 0.0565,0.121266 0.0276,0.111623 0.0262,0.119888 0.004,0.125402 0.0413,0.115757 0.051,0.101974 0.0537,0.101975 0.091,0.112999 0.0593,0.136424 0.0675,0.136427 0.051,0.14745 0.0606,0.137803 0.0606,0.13367 0.0469,0.143317 0.0593,0.132291 0.0496,0.106109 0.0344,0.07717 0.022,0.04961 0.01,0.01378 0.011,-0.02342 v -0.03305 l -0.0234,-0.06063 -0.0372,-0.05788 -0.0813,0.04134"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path20"
+ d="m 83.089764,55.791493 -0.0441,-0.0083 -0.04685,0.0069 -0.0565,0.0083 -0.02755,0.02893 0.0028,0.01101 -0.01792,0.01654 -0.03859,0.02067 -0.03305,0.02205 -0.02755,0.03172 -0.01792,0.03443 -0.02893,0.03305 -0.01792,0.03306 -0.02893,0.03996 -0.02067,0.03305 -0.02893,0.02893 -0.04134,0.04823 -0.04823,0.04548 -0.0565,0.05237 -0.0565,0.06615 -0.06752,0.07855 -0.05512,0.09233 -0.08682,0.08819 -0.07717,0.110243 -0.06064,0.13505 -0.104729,0.143316 -0.08957,0.136423 -0.07166,0.103353 -0.05099,0.08819 -0.03859,0.06753 -0.04823,0.07166 -0.04272,0.06891 -0.04548,0.04823 -0.0441,0.0565 -0.03721,0.07579 -0.07304,0.0813 -0.05926,0.07855 -0.03996,0.08406 -0.04823,0.08268 -0.05099,0.08543 -0.08406,0.09371 -0.06752,0.119888 -0.06339,0.133671 -0.07441,0.132292 -0.06064,0.141936 -0.07028,0.136426 -0.05926,0.135047 -0.07993,0.118512 -0.04823,0.115757 -0.0303,0.101974 -0.0303,0.08819 -0.0069,0.07717 -0.0193,0.07579 -0.02342,0.08131 -0.01792,0.08682 -0.0303,0.07855 -0.03171,0.07717 -0.04547,0.08957 -0.04823,0.117133 -0.04685,0.124023 -0.03583,0.09095 -0.06201,0.06064 -0.01792,0.06201 0.02342,0.0689 -0.01792,0.08544 -0.04134,0.117133 -0.03168,0.155719 -0.03447,0.152961 -0.02067,0.135047 -0.0055,0.113002 -0.02755,0.0937 -0.0193,0.09922 -0.0069,0.0937 -0.0069,0.100598 0.0055,0.107489 -0.0069,0.07854 -0.02067,0.06753 -0.03583,0.0689 -0.01379,0.08544 -0.02342,0.101974 -0.0372,0.08682 0.0028,0.0813 -0.0055,0.06615 -0.01792,0.08544 -0.0083,0.09508 0.02893,0.115757 0.0083,0.143316 -0.0096,0.151585 v 0.165364 l -0.01242,0.17501 0.0097,0.165365 0.0028,0.112998 0.01242,0.0689 0.0014,0.04961 0.0097,0.07304 0.01101,0.09922 -0.0014,0.101974 -0.02618,0.100598 -0.01792,0.08131 -0.0028,0.08544 v 0.08957 l 0.0014,0.104732 0.0028,0.117133 0.0028,0.130912 0.02618,0.141941 -0.0083,0.133667 -0.03721,0.135047 -0.0041,0.15434 0.01242,0.139185 -0.0097,0.107484 v 0.09646 l 0.0014,0.09646 0.03859,0.08957 0.01792,0.07993 0.01379,0.05788 0.02205,0.0441 0.02205,0.05512 0.02067,0.06615 -0.0041,0.07166 0.02755,0.09371 0.04548,0.100595 0.04961,0.104733 0.02342,0.07992 0.0055,0.07579 0.01379,0.06615 0.03859,0.08544 0.03447,0.08268 0.0083,0.07166 0.0028,0.07304 0.02893,0.06615 0.03305,0.06752 0.03443,0.0565 0.03305,0.06615 0.0303,0.07992 0.05512,0.09508 0.03447,0.09095 0.05512,0.07166 0.07717,0.06477 0.03305,0.08406 0.0014,0.08131 0.0193,0.07717 0.02342,0.07992 0.03858,0.06891 0.0303,0.07854 0.01655,0.101974 0.0193,0.07717 0.02893,0.05512 0.0303,0.05926 0.03306,0.06752 0.02067,0.05926 0.01792,0.05374 0.04134,0.05512 0.04548,0.05788 0.04547,0.07304 0.0069,0.08682 0.01517,0.08819 0.06339,0.06063 0.03447,0.06064 0.04134,0.06752 0.04134,0.07993 0.08268,0.16812 0.01792,0.05099 0.02342,0.03721 0.03583,0.04823 0.03168,0.04823 0.01654,0.0565 0.02618,0.0689 -0.0069,0.08819 0.02893,0.07993 0.07855,0.07028 0.05375,0.08819 0.04685,0.09784 0.05512,0.08406 0.0303,0.07166 0.02617,0.05237 0.03306,0.05925 0.01379,0.06752 0.02618,0.0565 0.02617,0.05374 0.0041,0.04685 0.02755,0.0441 0.03168,0.03306 0.0083,0.04685 0.03168,0.03859 0.03172,0.04823 0.03305,0.06477 0.03443,0.0689 0.04272,0.08682 0.02205,0.07304 0.01654,0.07304 0.02755,0.07028 0.08819,0.06752 0.05236,0.09784 0.0055,0.111619 0.0248,0.08406 0.02617,0.05512 0.03859,0.03583 0.02893,0.04685 0.03858,0.06339 0.0441,0.05926 0.05375,0.06752 0.05512,0.07442 0.0441,0.07579 0.03996,0.06339 0.03721,0.05788 0.03583,0.07993 0.02755,0.07579 0.03721,0.08268 0.02617,0.08406 0.02893,0.07304 0.06201,0.07579 0.03306,0.08406 -0.0069,0.07304 0.02342,0.07304 0.03996,0.07717 0.04823,0.06063 0.03305,0.05512 0.02893,0.06339 0.04134,0.05788 0.05512,0.05512 0.0441,0.06064 0.06477,0.05788 0.04548,0.05099 0.04961,0.04548 0.05926,0.05788 0.06339,0.07441 0.05099,0.08957 0.06201,0.06615 0.05926,0.08131 0.08268,0.09646 0.0689,0.07855 0.03443,0.0813 0.05375,0.06477 0.05925,0.05374 0.04823,0.05374 0.04823,0.02893 0.03306,0.03858 0.03306,0.05512 0.05099,0.02617 0.06064,0.02067 0.07717,0.0248 0.02342,0.03443 0.06339,0.03583 0.183279,0.03583 0.113002,0.07028 0.0014,0.06615 0.04685,0.03306 0.03859,0.04961 0.06615,0.05099 0.04961,0.05374 0.0303,0.07304 0.0565,0.07441 0.06339,0.06477 0.06615,0.04961 0.06339,0.0441 0.02755,0.05926 0.05788,0.03306 0.0937,0.02893 0.06201,0.03996 0.04961,0.03721 -0.0041,0.03721 0.05788,0.02342 0.148829,0.02067 0.0937,0.05237 0.0441,0.03447 0.04272,0.01242 0.04134,0.02755 0.03168,0.03171 0.04134,0.02755 0.0565,0.01792 0.06615,0.0055 0.05237,0.02893 0.03996,0.03306 0.0441,0.04272 0.04961,0.04686 0.08406,0.07855 0.0937,0.08682 0.08544,0.06201 0.06201,0.05099 0.100598,0.03168 0.06752,0.03583 0.04272,0.0441 0.04823,0.03306 0.05236,0.02205 0.07855,0.0096 0.09646,0.02342 0.05788,0.03306 0.04272,0.01792 0.06064,0.0041 0.08406,-0.0069 0.09922,0.0041 0.09095,0.0096 0.05237,-0.0014 0.01517,0.01101 0.03996,0.02205 0.06615,0.02617 0.05237,0.05237 0.06063,0.04961 0.07304,0.04823 0.0565,0.03583 0.05788,0.05099 0.06201,0.05375 0.03859,0.05512 0.04685,0.02618 0.05788,0.0096 0.06201,0.02067 0.05375,0.02617 0.04685,0.02618 0.07855,0.03721 0.09095,0.04548 0.02205,0.04272 0.07028,0.02342 0.147451,0.03447 0.157095,0.05788 0.04961,0.02204 0.03997,0.04134 0.03858,0.0441 0.04961,0.04134 0.0689,0.04272 0.06477,0.0441 0.06201,0.04134 0.06201,0.02755 0.05237,0.01516 0.03583,0.01238 0.04272,0.02341 0.08131,0.0041 0.09232,0.02755 0.114379,0.02066 0.103352,0.05788 0.118512,0.08268 0.111623,0.08957 0.125399,0.08406 0.14056,0.06752 0.117133,0.07579 0.09508,0.07166 0.09095,0.0565 0.06615,0.06615 0.06339,0.07717 0.07993,0.07992 0.09922,0.05788 0.10473,0.05374 0.0813,0.0689 0.0565,0.06064 0.08268,0.05237 0.112998,0.05512 0.09095,0.07717 0.07992,0.08406 0.07717,0.07441 0.09922,0.07166 0.08406,0.07304 0.08957,0.07028 0.09095,0.0565 0.07855,0.07992 0.06477,0.08406 0.06615,0.05926 0.06339,0.04272 0.07579,0.05099 0.07992,0.07992 0.09509,0.09784 0.09784,0.08957 0.09508,0.108868 0.06063,0.101974 0.07441,0.09095 0.1006,0.08819 0.08543,0.09371 0.08957,0.09922 0.09233,0.0882 0.0689,0.09095 0.05237,0.07442 0.03583,0.08406 0.04961,0.08682 0.05512,0.07993 0.04823,0.06615 0.05788,0.05099 0.07304,0.06201 0.07717,0.06752 0.05512,0.06201 0.05926,0.05512 0.04547,0.07028 0.05926,0.07304 0.104733,0.0813 0.07028,0.09371 0.06063,0.09784 0.07855,0.09371 0.07441,0.08543 0.04548,0.08131 0.05374,0.07441 0.07855,0.06201 0.06064,0.0882 0.07166,0.0813 0.05926,0.07992 0.05788,0.06615 0.0096,0.06891 0.06201,0.07304 0.08544,0.07992 0.04548,0.08957 0.05926,0.07993 0.07304,0.06752 0.06339,0.08131 0.03858,0.07166 0.03447,0.05512 0.0303,0.05099 0.0565,0.06339 0.05237,0.07304 0.06614,0.06063 0.05099,0.07028 0.02755,0.07303 0.05788,0.07028 0.06339,0.07166 0.06477,0.08406 0.03996,0.08682 0.02479,0.07304 0.04272,0.07579 0.07442,0.06752 0.0813,0.0565 0.06477,0.08957 0.03858,0.09784 0.05926,0.07166 0.0565,0.07717 0.06201,0.07028 0.06201,0.06752 0.05787,0.0882 0.06064,0.08406 0.06201,0.07028 0.07028,0.06614 0.08543,0.06477 0.0758,0.07028 0.05926,0.08131 0.06752,0.0813 0.0565,0.09508 0.101973,0.0937 0.06752,0.0882 0.02066,0.09371 0.05926,0.08544 0.06753,0.112998 0.122642,0.10473 0.08682,0.08682 0.02479,0.05512 0.03447,0.03858 0.01654,0.03447 0.02755,0.04823 0.0441,0.05374 0.06339,0.05926 0.06891,0.06201 0.07717,0.08682 0.09095,0.101978 0.05926,0.09784 0.04685,0.08544 0.07717,0.09095 0.09922,0.09371 0.07855,0.08543 0.07993,0.08544 0.07855,0.09922 0.05926,0.09509 0.108866,0.08406 0.07441,0.09233 0.0083,0.07166 0.03031,0.07579 0.06201,0.08544 0.06201,0.09508 0.06477,0.0813 0.08406,0.07579 0.100595,0.08819 0.09371,0.09647 0.08682,0.0813 0.08406,0.05512 0.06753,0.05099 0.08544,0.06063 0.115755,0.05512 0.108863,0.07028 0.0813,0.07441 0.08544,0.05926 0.073,0.07028 0.10887,0.07028 0.0951,0.07579 0.0675,0.07441 0.0923,0.06752 0.10198,0.09233 0.12953,0.09784 0.14607,0.07166 0.15434,0.07855 0.1447,0.05788 0.12402,0.05237 0.1254,0.06339 0.14883,0.07855 0.23289,0.0689 0.17914,0.07717 0.0854,0.06615 0.10749,0.04823 0.11575,0.0689 0.1571,0.09371 0.18879,0.09784 0.19982,0.08682 0.18466,0.08406 0.18603,0.07993 0.22049,0.06476 0.20532,0.06753 0.17364,0.04272 0.15847,0.02617 0.17777,0.02617 0.14745,0.03305 0.12126,0.05926 0.15021,0.07304 0.14883,0.08268 0.19017,0.07854 0.18328,0.07992 0.16812,0.07717 0.1819,0.05788 0.16536,0.05788 0.12954,0.02066 -0.0455,0.135051"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path22"
+ d="m 74.144921,56.601781 0.02342,0.07028 0.0014,0.06477 -0.03859,-0.01101 -0.01517,-0.01242 h -0.02067 l -0.02618,0.0041 -0.03721,0.03447 -0.03721,0.05099 -0.0248,0.04272 -0.0303,0.03305 -0.01654,0.05375 -0.01517,0.04685 -0.01654,0.04272 -0.02755,0.04961 -0.0303,0.06477 -0.03447,0.0441 -0.04272,0.04685 -0.06615,0.05788 -0.03996,0.04547 -0.01654,0.04548 -0.03447,0.05512 -0.06477,0.05237 -0.06752,0.06339 -0.06615,0.09509 -0.06615,0.106108 -0.06477,0.104729 -0.04823,0.119892 -0.03305,0.122643 -0.03168,0.128157 -0.0193,0.137806 -0.0096,0.128157 0.0028,0.09784 -0.01242,0.07579 -0.01654,0.08406 -0.0083,0.09095 -0.0096,0.07442 0.01379,0.07028 -0.02067,0.06063 -0.06063,0.06064 -0.03168,0.0689 -0.0248,0.06752 -0.02342,0.05926 -0.0303,0.06891 -0.02067,0.07303 -0.02893,0.08406 -0.0193,0.07717 -0.02755,0.0937 -0.0303,0.108867 -0.03168,0.101974 -0.0193,0.104729 -0.05099,0.122647 -0.04685,0.144695 0.0055,0.122644 -0.02618,0.07442 -0.01517,0.05099 -0.0041,0.05926 -0.02755,0.07717 -0.0689,0.09922 -0.04134,0.09922 -0.0083,0.112999 -0.03996,0.118512 -0.03168,0.122647 -0.0303,0.115753 -0.03996,0.124023 -0.05374,0.136426 -0.03168,0.14883 -0.01654,0.148826 -0.03859,0.112998 -0.03858,0.110243 -0.0055,0.101978 -0.03583,0.108863 -0.06753,0.117133 -0.04685,0.121268 -0.04272,0.14056 -0.08957,0.147451 -0.03583,0.143316 0.01379,0.130912 -0.0055,0.14883 -0.0096,0.137802 -0.02617,0.117133 -0.02893,0.110243 -0.03305,0.122647 -0.03447,0.139181 -0.05926,0.135047 -0.04685,0.14194 -0.04548,0.143316 -0.07855,0.143316 -0.05788,0.122643 -0.0028,0.103353 -0.02893,0.09508 -0.04823,0.08957 -0.02617,0.09233 -0.02617,0.07993 -0.07304,0.08131 -0.03306,0.100594 0.0083,0.114378 -0.05926,0.126781 -0.04548,0.136426 -0.0193,0.130913 -0.0028,0.101974 -0.0248,0.09508 -0.01654,0.114377 -0.0055,0.143316 -0.0069,0.151585 -0.03168,0.150206 -0.03447,0.166744 -0.03583,0.150206 -0.04823,0.118512 -0.02205,0.09784 -0.0041,0.09233 -0.02755,0.09646 -0.01792,0.101974 -0.0303,0.104729 -0.03306,0.09922 0.0055,0.107488 -0.01517,0.111622 -0.0069,0.106109 -0.0069,0.119887 -0.02067,0.14883 -0.03447,0.157096 v 0.162609 l 0.0041,0.172254 -0.0069,0.161231 -0.02067,0.162609 -0.04685,0.16123 -0.0014,0.151581 0.04134,0.130916 0.0096,0.129537 -0.03306,0.141936 -0.02617,0.137802 -0.0028,0.114378 0.0248,0.107488 0.0055,0.100598 0.01379,0.101974 0.01379,0.0937 0.01101,0.104732 0.01101,0.121268 0.0096,0.139181 0.02205,0.130912 0.02342,0.125402 0.0096,0.154341 0.03168,0.175009 0.02205,0.165365 -0.0028,0.146074 0.01792,0.146072 0.03168,0.136426 0.02342,0.125402 0.0083,0.129533 0.0069,0.125402 0.03168,0.09095 0.08131,0.08957 0.03996,0.104733 0.0083,0.09922 0.03721,0.09095 0.04134,0.09646 0.02893,0.124022 0.04961,0.150206 0.117136,0.143316 0.07855,0.125402 0.02893,0.100598 0.04134,0.08544 0.04272,0.122646 0.0689,0.146072 0.03858,0.163988 -0.01379,0.141937 0.04272,0.106109 0.06201,0.08681 0.05512,0.108867 0.05375,0.150205 0.0565,0.140561 0.05512,0.101974 0.03859,0.07717 0.04823,0.07441 0.08544,0.06477 0.07855,0.08268 0.06477,0.08957 0.0248,0.07166 0.03996,0.06063 0.07717,0.06201 0.06752,0.06064 0.06339,0.05788 -0.01379,0.07028 0.03859,0.0689 0.07855,0.08131 0.07304,0.09095 0.06752,0.100598 0.07304,0.128157 0.08957,0.126778 0.09233,0.09922 0.08406,0.08682 0.08406,0.07166 0.08819,0.09233 0.08131,0.09922 0.0813,0.07855 0.06477,0.04961 0.0937,0.05375 0.07028,0.07855 0.04548,0.06064 0.05788,0.03996 0.05374,0.05374 0.06752,0.07028 0.08268,0.07304 0.08819,0.07717 0.05512,0.05512 0.0193,0.04685 0.05926,0.03996 0.06064,0.05788 0.08681,0.06063 0.07993,0.05099 0.05099,0.05099 0.06615,0.04547 0.07028,0.06063 0.06064,0.07579 0.05788,0.07717 0.09371,0.04961 0.06477,0.06201 0.04548,0.06063 0.06615,0.03306 0.0565,0.05512 0.08268,0.04685 0.09646,0.05788 0.06477,0.07855 0.0689,0.07441 0.07993,0.06201 0.07304,0.05099 0.0689,0.04548 0.0565,0.03447 0.05375,0.04272 0.08681,0.0565 0.06477,0.06752 0.06064,0.04134 0.05374,0.04548 0.07717,0.05925 0.09095,0.04134 0.08682,0.03721 0.114378,0.0565 0.101974,0.07992 0.09784,0.06753 0.09922,0.06201 0.09233,0.05099 0.09784,0.05788 0.09922,0.05926 0.100594,0.06063 0.08957,0.04823 0.09508,0.0565 0.132292,0.05788 0.119888,0.08819 0.103353,0.08957 0.140561,0.08268 0.176389,0.05926 0.170875,0.05788 0.150206,0.03171 0.161233,0.01516 0.130912,0.0303 0.09922,0.03583 0.110243,0.03447 0.130913,0.02755 0.110243,0.0303 0.110243,0.02755 0.124022,0.04134 0.124026,0.05788 0.110243,0.05787 0.10473,0.07992 0.129536,0.07993 0.115753,0.0937 0.121268,0.08819 0.176389,0.07028 0.159854,0.09508 0.15985,0.09371 0.168124,0.07855 0.15434,0.09095 0.107484,0.07028 0.111623,0.07028 0.139181,0.07304 0.152961,0.09095 0.14194,0.106109 0.151585,0.0937 0.152961,0.104732 0.130912,0.107485 0.136427,0.101978 0.139181,0.08957 0.117133,0.08957 0.144695,0.08268 0.187414,0.08268 0.163985,0.115752 0.144695,0.117137 0.146071,0.112998 0.136426,0.115752 0.135047,0.125402 0.136426,0.112999 0.125402,0.111622 0.121268,0.129537 0.136426,0.146071 0.133671,0.126781 0.117133,0.130913 0.125402,0.139181 0.141937,0.143317 0.136426,0.13367 0.106108,0.152961 0.0813,0.132292 0.110243,0.122648 0.09508,0.125396 0.07166,0.129538 0.08131,0.124023 0.07304,0.118512 0.08957,0.09095 0.100598,0.08682 0.09508,0.0937 0.0813,0.09646 0.100595,0.106109 0.103353,0.136427 0.104733,0.15572 0.107484,0.133668 0.103353,0.113001 0.04134,0.09922 0.06752,0.07579 0.103349,0.08406 0.08544,0.09922 0.07028,0.07579 0.08406,0.07855 0.05788,0.07855 0.04272,0.06615 0.05788,0.0813 0.05788,0.09509 0.07166,0.09646 0.07304,0.09509 0.08681,0.09371 0.08406,0.125402 0.07717,0.124023 0.05926,0.118512 0.05512,0.100595 0.06752,0.09509 0.0689,0.09509 0.05926,0.08682 0.05512,0.09233 0.03306,0.09784 0.0193,0.111622 0.04134,0.132292 0.111623,0.117133 0.07579,0.09784 -0.0083,0.07579 0.03858,0.07304 0.04548,0.09233 0.05374,0.09233 0.05237,0.100594 0.06339,0.101976 0.0565,0.08268 0.03859,0.06477 0.05788,0.06891 0.07304,0.09922 0.06752,0.09784 0.03858,0.09646 0.0565,0.08819 0.06063,0.07993 0.0248,0.07992 0.03168,0.07579 0.04685,0.06339 0.04961,0.06477 0.04961,0.09784 0.05375,0.110244 0.05236,0.121266 0.04134,0.100598 0.03859,0.07992 0.03721,0.06063 -0.01101,0.05099 0.01101,0.02342 0.06615,0.01516 0.04134,0.03168 0.03168,0.04686 0.05099,0.05788 0.0565,0.06752 0.06615,0.103355 0.0565,0.111622 0.03168,0.08682 0.03583,0.04823 0.01101,0.02893 0.03168,0.02341 0.03859,0.02617 0.03996,0.04272 0.0565,0.02342 0.05512,0.02479 0.05512,0.01378 0.04134,0.02893 0.0248,0.05237 0.06753,0.0565 0.110243,0.0937 0.111618,0.114377 0.106113,0.124023 0.143315,0.111622 0.08406,0.09646 0.0013,0.08957 0.0565,0.08682 0.07304,0.08682 -0.0565,0.166743"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path24"
+ d="m 66.252896,78.372021 0.0055,0.01929 -0.03032,0.01929 -0.01378,0.01654 0.02756,0.0069 -0.0041,0.02204 -0.01653,0.01516 0.01792,0.0083 0.0027,0.0028 0.01378,0.02204 -0.0124,0.01101 -0.0014,0.0096 -0.0014,0.0055 v 0.0083 l -0.0014,0.01241 v 0.0096 l 0.0041,-0.0028 -0.0014,0.0055 -0.0014,0.02479 0.01103,0.02617 0.0124,0.03168 v 0.112998 l -0.0014,0.04961 0.01102,0.05374 0.02481,0.05374 0.01378,0.05375 v 0.04961 l -0.01516,0.03583 -0.0041,0.02342 0.0083,0.0069 v 0.02893 l 0.01378,0.02066 -0.0014,0.01516 -0.0014,0.0028 0.02205,0.0041 0.01653,-0.0055 -0.02205,-0.0041 -0.0069,0.01379 -0.0041,0.0041 -0.01103,0.02066 -0.0027,0.02479 0.01102,0.03306 0.01516,0.04961 -0.0124,0.03306 0.0014,0.02066 0.0124,0.01238 0.0027,0.02755 v 0.02204 l 0.01103,0.01654 v 0.0041 l -0.0014,0.01516 0.0124,0.0069 0.0096,0.01791 0.03721,0.02066 -0.0124,0.02617 -0.02618,0.02066 -0.0069,0.0096 0.0069,0.01516 0.01653,0.01241 0.0014,0.02204 0.0124,0.02204 0.0124,0.01929 -0.01103,0.0303 0.0083,0.04823 0.01102,0.03583 -0.0124,0.03168 -0.0028,0.04272 0.01103,0.03168 0.0124,0.02755 0.0014,0.02893 0.01103,0.02755 0.0124,0.02617 0.05788,0.01378 0.0055,0.01378 h -0.04547 l -0.01378,0.01654 0.01378,0.02479 v 0.05374 l 0.02343,0.02893 0.01516,0.04548 0.02756,0.04961 0.01378,0.04686 0.01103,0.04272 0.0083,0.03996 0.03169,0.04961 0.04685,0.06339 0.02618,0.05926 0.0083,0.03996 -0.03032,0.02066 0.01103,0.02066 0.03996,0.01791 0.03307,0.09922 0.0069,0.02755 0.02067,0.03031 0.03583,0.0303 0.03583,0.04272 0.02481,0.04823 0.03169,0.04272 0.03307,0.03031 0.03032,0.03996 0.04272,0.03996 0.02343,0.02066 -0.0096,0.03305 0.0096,0.03859 0.01516,0.05237 0.04272,0.0441 0.0248,0.04547 0.0083,0.05098 0.0303,0.04134 0.0096,0.03859 0.0303,0.0372 0.04548,0.03721 0.03583,0.04134 0.03447,0.03996 0.01792,0.03859 0.03859,0.02755 0.0193,0.02755 0.01654,0.02755 0.03721,0.02479 0.0441,0.03997 0.05788,0.04409 0.0689,0.04272 0.05788,0.0565 0.04134,0.06891 0.05926,0.06615 0.07442,0.06476 0.07855,0.06477 0.05099,0.07579 0.03306,0.07304 0.04134,0.0813 0.04548,0.07166 0.03721,0.06063 0.04685,0.04134 0.03721,0.03996 0.04134,0.01929 0.04685,0.02617 0.04272,0.02342 0.01654,0.02755 -0.0014,0.03583 0.06477,0.04961 0.09784,0.05788 0.05788,0.05512 0.06339,0.04134 0.07303,0.03859 0.06477,0.06477 0.06202,0.05512 0.05788,0.05099 0.06615,0.06063 0.06063,0.06339 0.0689,0.07304 0.104729,0.07304 0.101974,0.08682 0.08819,0.08819 0.09233,0.07166 0.09371,0.05512 0.04272,0.07028 0.07993,0.06201 0.112998,0.05374 0.07855,0.04823 0.05237,0.0441 0.03721,0.01929 0.03721,0.0069 0.0372,0.0303 0.0441,0.05099 0.07166,0.04272 0.08819,0.0441 0.05926,0.05926 0.07304,0.05512 0.09646,0.05236 0.0937,0.04272 0.09784,0.04961 0.104729,0.06201 0.108864,0.06477 0.09371,0.05374 0.08682,0.04823 0.118512,0.04409 0.139182,0.03583 0.07855,0.02755 0.05099,0.0441 0.07304,0.03583 0.07579,0.02755 0.06339,0.02755 0.07166,0.04961 0.09233,0.04272 0.09646,0.04272 0.107487,0.04134 0.09922,0.04272 0.09508,0.02893 0.04548,0.04272 0.07579,0.05788 0.121268,0.06477 0.08406,0.06339 0.07579,0.05099 0.07304,0.03583 0.08819,0.05787 0.09233,0.06201 0.08406,0.05237 0.09922,0.04547 0.104729,0.04823 0.117133,0.05926 0.108867,0.03996 0.112999,0.03446 0.144695,0.03447 0.132292,0.05099 0.112998,0.05374 0.103353,0.06201 0.0937,0.05512 0.06753,0.06477 0.08681,0.04961 0.117133,0.04823 0.08544,0.05237 0.07304,0.04823 0.05926,0.05788 0.06339,0.04961 0.08682,0.03583 0.04823,0.05099 0.0303,0.06063 0.04961,0.05926 0.0813,0.06201 0.07855,0.08957 0.09095,0.07855 0.110244,0.07303 0.0813,0.07579 0.08268,0.05788 0.05512,0.05512 0.07304,0.06339 0.112999,0.05512 0.07717,0.06339 0.05512,0.04685 0.06752,0.06339 0.06752,0.07304 0.0937,0.05099 0.04686,0.07304 0.0193,0.06477 0.05788,0.05374 0.04685,0.08268 0.05237,0.06615 0.05926,0.0689 0.05099,0.07166 0.05236,0.07165 0.07442,0.0565 0.05375,0.05926 0.04961,0.0565 -0.01242,0.0689 0.04134,0.04685 0.14745,0.02479 0.0689,0.04686 0.0028,0.03858 0.02067,0.02479 0.0303,0.04685 0.04823,0.06615 0.04272,0.05926 0.05099,0.06477 0.05237,0.06477 0.03306,0.0565 0.01379,0.04823 0.01101,0.0441 0.0014,0.0372 0.01242,0.04272 0.05237,0.05788 0.03996,0.0565 0.03721,0.04134 -0.0055,0.0565 0.02618,0.06201 0.15434,0.0441 0.07579,0.05374 -0.0565,0.04961 0.01101,0.05237 0.0303,0.04961 0.06201,0.04686 0.03721,0.06752 0.02755,0.07579 0.04961,0.08406 0.04685,0.0689 0.05237,0.07028 0.04134,0.0813 0.0041,0.09784 0.02342,0.08406 0.07303,0.06615 0.04961,0.04548 0.0303,0.03996 0.02342,0.05788 0.02755,0.04685 0.0372,0.0441 0.02618,0.0689 -0.0069,0.05788 0.0014,0.03721 0.0014,0.05236 0.0069,0.07442 0.02342,0.05926 0.03583,0.04961 0.0248,0.05788 0.01238,0.05374 -0.0028,0.0565 0.0303,0.04961 -0.03859,0.02479 0.0041,0.02341 0.05237,0.01516 0.0193,0.03996 0.01379,0.04548 0.03168,0.04823 0.01101,0.04547 0.0097,0.03447 0.01654,0.04547 0.0083,0.05512 0.02067,0.0565 0.0083,0.05374 0.02205,0.03997 0.02205,0.02479 0.0096,0.03305 0.0097,0.01654 0.0083,-0.0013 -0.0055,-0.0028 0.0055,0.01378 -0.0028,0.01791 0.0097,0.02204 0.02205,0.03443 0.01379,0.04961 0.02342,0.07441 0.08406,0.07166 0.0193,0.0813 -0.02755,0.06752 0.02342,0.0689 0.0055,0.07165 0.0069,0.07304 0.0069,0.0689 0.0097,0.03583 0.0096,0.01378 h 0.02067 v -0.03858 l -0.0014,-0.01654 -0.0248,-0.0096 -0.01238,-0.0041 h 0.01379 l 0.01101,0.0041 -0.01101,-0.01101 h 0.01654 l 0.0083,0.0028 0.02205,0.01101 0.0041,0.0055 -0.02618,0.01238 0.0041,0.02755 0.02893,0.03443 0.04823,0.05926 -0.107487,0.232889"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path26"
+ d="m 63.50371,79.865816 0.248047,-0.117131 0.259071,-0.130916 0.289388,-0.143317 0.312814,-0.154339 0.32384,-0.139182 0.316948,-0.121269 0.338998,-0.101973 0.319704,-0.112998 0.276986,-0.126781 0.261827,-0.103354 0.238401,-0.09095 0.22462,-0.09095 0.249426,-0.07993 0.275607,-0.05926 0.264584,-0.06064 0.25769,-0.07441 0.282501,-0.09095 0.312811,-0.08406 0.299036,-0.08544 0.285253,-0.107484 0.30317,-0.106114 0.30868,-0.108863 0.304546,-0.118512 0.32246,-0.126778 0.297656,-0.117133 0.272853,-0.09922 0.264583,-0.0813 0.257694,-0.09233 0.257694,-0.09371 0.263203,-0.07304 0.23289,-0.06063 0.194303,-0.06064 0.184658,-0.06063 0.194303,-0.06615 0.191548,-0.07028 0.183279,-0.04823 0.203948,-0.0565 0.248048,-0.05925 0.263204,-0.07442 0.281118,-0.08819 0.303171,-0.09922 0.316949,-0.100598 0.310057,-0.110243 0.311439,-0.09508 0.305922,-0.103354 0.301791,-0.101974 0.296276,-0.08681 0.283877,-0.07304 0.268718,-0.05926 0.243914,-0.04686 0.241155,-0.04685 0.265963,-0.03996 0.271473,-0.04272 0.261825,-0.02205 0.276987,-0.03447 0.276987,-0.02618 0.254935,-0.02893 0.232889,-0.01654 0.249425,-0.01655 0.228755,-0.0069 0.199814,-0.01792 0.232889,-0.02067 0.253559,-0.02205 0.228756,-0.02342 0.234265,-0.03306 0.23151,-0.03583 0.190169,-0.0097 0.137806,-0.0055 0.108863,0.0083 0.08681,0.0083 0.05926,0.0193 0.04685,0.02893 0.06753,0.02618 0.06201,0.02617 0.06752,0.0096 0.04685,0.0193 0.0689,0.0055 0.08819,0.01517 0.09508,0.0193 0.146075,-0.0041 0.137802,0.0055 0.117133,-0.0041 0.111623,-0.01517 0.121267,-0.01517 0.103353,-0.0028 0.09095,-0.01101 0.08819,0.0014 0.08131,0.01517 0.07028,0.0041 0.06752,0.01517 0.05099,0.02755 0.03859,0.02617 0.04685,0.02342 0.0565,0.03447 0.08544,0.02205 0.09095,0.0303 0.0937,0.02067 0.07855,0.01792 0.08131,0.01655 0.104729,0.01517 0.08957,0.0069 0.09095,-0.01792 0.08819,-0.0083 0.0813,-0.0041 0.06201,-0.0028 h 0.05926 l 0.06201,-0.01101 0.03306,0.01379 -0.03443,0.01517 0.0055,0.0028 0.03721,0.0096 0.03996,0.02755 0.04272,0.0014 0.07166,0.01792 0.05512,0.03997 0.0248,0.03996 0.04548,0.01792 0.05374,0.0303 0.08819,0.05374 0.09922,0.03583 0.08131,0.03168 0.07166,0.02755 0.07028,0.01517 0.0565,0.0028 0.05099,0.01242 0.0193,0.0193 0.02205,0.01654 0.07166,-0.0041 0.06201,-0.0055 0.0303,0.0083 0.0193,0.0096 0.03168,0.02067 0.03996,0.01517 0.05237,0.02342 0.0565,0.0248 0.04685,0.0248 0.07166,0.03168 0.0813,0.03583 0.08268,0.02205 0.06477,0.0303 0.07993,0.0303 0.07441,0.01792 0.03583,0.03168 0.0372,0.01654 0.03721,0.02755 0.03447,0.0193 0.05512,0.01655 0.0303,0.02067 0.01238,0.0193 0.0097,0.0055 0.03306,0.01517 0.06752,0.0193 0.05512,0.0248 0.03447,0.02342 0.04823,0.0083 0.06477,0.02893 0.08131,0.03583 0.08268,0.0097 0.06477,0.0193 0.05926,0.03168 0.05788,0.0096 0.03447,0.0069 0.01517,0.01792 0.0041,0.0193 -0.0069,0.0193 -0.0028,0.0083 0.02205,0.01792 0.04685,0.02067 0.05374,0.03583 0.04272,0.0248 0.05512,0.0193 0.05788,0.04272 0.05926,0.04823 0.06615,0.0441 0.05374,0.04547 0.0248,0.05512 0.05512,0.03996 0.08268,0.03583 0.0689,0.04134 0.0303,0.0303 0.01517,0.02067 0.01654,0.01242 -0.0041,0.03447 0.02342,0.0303 0.02618,0.04134 0.0193,0.04548 0.04685,0.03168 0.03447,0.04134 0.02342,0.04548 0.03168,0.02893 0.05237,0.03721 0.07028,0.06339 0.06477,0.04823 0.06615,0.03996 0.03996,0.03859 0.04685,0.04961 0.09922,0.07028 0.06477,0.06339 -0.0028,0.06477 0.02342,0.06615 0.0193,0.07441 0.04685,0.07442 0.01792,0.05374 -0.02205,0.04272 0.01101,0.04961 0.0055,0.06752 0.0083,0.06477 0.02342,0.04961 0.01242,0.04547 0.0248,0.04548 0.04823,0.05788 0.05099,0.06339 0.04961,0.07579 0.04686,0.07717 0.04272,0.0758 0.03858,0.08406 0.02755,0.08682 v 0.07441 l 0.02067,0.07579 0.01517,0.0689 0.02755,0.07855 0.0069,0.0689 -0.0193,0.07717 0.01654,0.07993 0.03443,0.0689 0.02617,0.0689 0.03859,0.04548 -0.01242,0.04134 0.02755,0.03996 0.07855,0.05099 0.03306,0.04685 0.02067,0.03858 -0.02067,0.0303 0.0096,0.03721 0.07028,0.04548 0.05237,0.08268 0.01101,0.111622 0.01517,0.104728 0.02893,0.09233 0.02893,0.09509 0.01929,0.08544 0.01929,0.06615 0.0041,0.09095 -0.0069,0.09371 0.0055,0.07992 0.01929,0.06201 0.04685,0.05926 0.02893,0.05512 0.0096,0.06339 0.01929,0.06752 0.03305,0.05926 0.03305,0.05788 0.0441,0.0689 0.0441,0.09646 0.03168,0.115755 0.01929,0.08268 0.03859,0.05512 0.01791,0.03996 0.0028,0.02893 0.0013,0.03305 0.0013,0.05236 0.0055,0.07304 -0.0041,0.06752 0.0083,0.07441 -0.0013,0.06615 -0.03583,0.07166 -0.0041,0.08682 0.06063,0.106108 0.01101,0.106109 0.0028,0.0882 0.05926,0.06201 0.01654,0.06339 -0.05099,0.05099 -0.01101,0.06063 -0.0083,0.06339 0.0096,0.05788 v 0.203951 l 0.0013,0.04961 0.0013,0.03172 0.01241,0.04134 -0.0096,0.05788 -0.0013,0.07579 -0.01378,0.04685 0.0096,0.05512 0.03858,0.06064 0.0055,0.06614 v 0.05374 l -0.01378,0.04409 -0.0041,0.0565 -0.0028,0.05099 0.0096,0.0689 -0.01101,0.08819 -0.01378,0.09095 -0.02617,0.07717 -0.02479,0.05925 -0.01241,0.05374 -0.0096,0.04272 -0.0069,0.0303 -0.0083,0.01791 -0.01791,0.02617 -0.01101,0.03721 0.03996,0.04961 0.0083,0.0689 -0.02204,0.06201 -0.01378,0.06614 -0.01379,0.06339 0.02342,0.05512 0.0041,0.05926 -0.04685,0.06063 -0.01791,0.07441 -0.02617,0.07028 -0.02479,0.07304 -0.02204,0.06202 0.01654,0.04547 0.0083,0.06201 -0.0055,0.06201 -0.0083,0.05926 -0.02066,0.06753 -0.02617,0.06201 -0.01241,0.07166 -0.01101,0.05099 -0.0096,0.0565 -0.03305,0.03446 0.0013,0.01379 0.0055,0.01241 0.06202,0.02893 0.01241,0.04823 -0.06615,0.04134 0.0013,0.05788 0.01929,0.07441 0.01516,0.10473 0.02617,0.136425 -0.02342,0.122648 0.0083,0.111619 0.01101,0.0813 -0.01241,0.07028 -0.0028,0.07993 -0.03859,0.06063 -0.02893,0.0689 -0.01379,0.07304 -0.01101,0.07855 -0.0083,0.07992 -0.0069,0.07166 -0.0083,0.04548 0.01791,0.02893 0.0069,0.02617 -0.0083,0.02204 v 0.05512 l 0.01241,0.04272 -0.01101,0.06752 -0.01516,0.07304 -0.0028,0.06201 -0.01241,0.06339 -0.01241,0.05374 -0.01241,0.07028 -0.03447,0.08544 -0.02617,0.08957 0.06477,0.07166 -0.01241,0.07166 -0.07855,0.09922 -0.04548,0.112998 -0.02755,0.106109 0.01654,0.0813 -0.01379,0.07442 -0.02893,0.07304 0.0028,0.07441 0.0069,0.06339 0.0069,0.05237 -0.0083,0.03031 -0.0096,0.02479 v 0.03858 l -0.0248,0.04823 -0.01517,0.06615 -0.0248,0.07717 -0.04823,0.103352 -0.01517,0.132291 0.06752,0.118513 0.0014,0.10473 -0.0441,0.0689 -0.0248,0.05788 -0.0014,0.05374 0.0014,0.05926 -0.02067,0.05237 -0.0248,0.05099 -0.02342,0.06477 -0.03447,0.103351 -0.03721,0.118512 -0.0372,0.08406 -0.05375,0.07855 -0.0441,0.07993 0.02067,0.05926 -0.0097,0.05926 -0.01379,0.07441 -0.04272,0.07028 -0.02205,0.05788 0.0303,0.05374 -0.01379,0.06615 -0.03447,0.07304 -0.0372,0.06339 -0.02342,0.07855 -0.04685,0.08544 -0.03583,0.110244 -0.04547,0.135046 -0.0565,0.14883 -0.0441,0.180523 -0.05374,0.18328 -0.06339,0.187412 -0.06477,0.159851 -0.05099,0.114376 -0.02205,0.09784 -0.0303,0.09784 -0.0096,0.115753 -0.02205,0.124026 -0.03858,0.117134 0.0193,0.118509 -0.01242,0.129535 -0.07855,0.133673 -0.05236,0.172254 -0.03859,0.198438 -0.03168,0.213595 -0.05375,0.221861 -0.0689,0.195683 -0.05374,0.181904 -0.06201,0.172254 -0.06339,0.173633 -0.08544,0.203949 -0.122643,0.248047 -0.118512,0.252179 -0.06201,0.243912 -0.06064,0.232889 -0.07304,0.252179 -0.08957,0.237025 -0.04272,0.187415 0.03721,0.163983 -0.03996,0.187415 -0.09371,0.21635 -0.09508,0.205327 -0.107485,0.175014 -0.07993,0.158475"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path28"
+ d="m 102.11909,59.875999 0.0207,0.0937 0.003,0.165365 -0.0193,0.08957 10e-4,0.02067 0.001,-0.0193 0.001,-0.02893 v -0.03583 l 0.0165,-0.03447 v -0.0441 l -0.003,-0.02755 -10e-4,-0.05099 -0.001,-0.08131 -0.0124,-0.09508 -0.0386,-0.113002 -0.0275,-0.117133 -0.0648,-0.09784 -0.062,-0.100598 -0.0482,-0.100594 -0.0675,-0.08544 -0.0551,-0.06063 -0.0841,-0.04134 -0.11989,-0.05375 -0.12127,-0.03996 -0.11024,-0.04134 -0.1254,-0.01654 -0.12954,0.0028 -0.11438,0.02893 -0.0841,0.06477 -0.0634,0.08406 -0.0496,0.115753 -0.0262,0.150206 -0.0179,0.191548 -0.011,0.237024 -0.0165,0.271473 0.0358,0.308681 0.051,0.348643 0.0455,0.391365 0.0744,0.440968 0.0978,0.474046 0.13367,0.467155 0.0827,0.429948 0.008,0.405144 0.0565,0.391361 0.062,0.350023 0.0413,0.283876 0.0537,0.202572 0.0565,0.129537 0.0331,0.07579 0.022,0.0055 -0.005,-0.0248"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path30"
+ d="m 100.18984,62.860828 h -0.0358 l -0.0124,-0.03305 -10e-4,-0.01792 0.0358,-0.04685 0.0717,-0.04272 0.0813,-0.03858 0.11162,-0.04685 0.0827,-0.03721 0.12953,-0.02755 0.18328,-0.0248 0.19568,-0.0028 0.1819,0.01101 0.19017,0.01238 0.22324,0.0083 0.24943,0.0055 0.2384,0.0028 0.21635,-0.01101 0.20395,-0.02755"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path32"
+ d="m 105.19211,59.921473 -0.1502,0.01517 -0.29353,0.07717 -0.2067,0.198437 -0.14607,0.203952 -0.14056,0.234265 -0.1695,0.24529 -0.16674,0.293522 -0.0923,0.327974 -0.007,0.361047 -0.0276,0.344508 -0.003,0.332105 0.051,0.285257 0.0565,0.246669 0.0455,0.237021 0.0937,0.220486 0.1626,0.186033 0.17364,0.177769 0.16674,0.143316 0.17225,0.129536"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path34"
+ d="m 106.20359,62.381272 -0.0813,0.07717 -0.0923,0.0565 0.011,-0.07579 0.005,-0.08819 0.011,-0.110243 0.022,-0.157096 0.0179,-0.162609 0.0289,-0.158475 0.0496,-0.143316 0.0744,-0.144695 0.0482,-0.173631 0.0675,-0.187413 0.0813,-0.144695 0.0882,-0.0937 0.0841,-0.03447 0.0703,0.01654 0.073,0.02755 0.0758,0.04961 0.10198,0.06201 0.10886,0.06752 0.11713,0.111622 0.10887,0.136426 0.10335,0.165365 0.11025,0.203948 0.11713,0.199817 0.12402,0.194303 0.11162,0.187413 0.14469,0.176389 0.12541,0.176389 0.11024,0.162609 0.12816,0.130913 0.10748,0.121267 0.0799,0.124023"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path36"
+ d="m 108.57382,61.136902 0.0248,0.08819 -0.0593,0.223245 -0.16536,0.223241 -0.14745,0.180524 -0.1571,0.155716 -0.1447,0.184658 -0.13918,0.208082 -0.14607,0.208086 -0.14056,0.202572 -0.14607,0.195679 -0.11162,0.197062 -0.0193,0.186034 -0.0234,0.143315 -0.0317,0.104733 0.0207,0.0813 0.0427,0.04548 0.0593,0.0248"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path38"
+ d="m 110.07726,62.965561 0.0152,0.01517 0.0345,0.02893 0.0193,0.02067 -0.008,0.01792 0.007,0.03721 -0.0289,0.0565 -0.007,0.07579 -0.0165,0.104733 -0.0372,0.132292 -0.0413,0.136422 -0.0482,0.113002 -0.0579,0.101974 -0.0441,0.09646 -0.0427,0.07166 -0.0386,0.04272 -0.0138,0.0055"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path40"
+ d="m 111.77086,60.740027 -0.0634,0.01517 -0.14607,0.06201 -0.0703,0.122647 -0.0469,0.121268 -0.0537,0.159854 -0.0317,0.169495 0.008,0.158475 0.0358,0.166744 0.0207,0.166741 0.0138,0.163988 0.0441,0.155716 0.0675,0.130916 0.051,0.125402 0.0717,0.0937 0.0786,0.06477 0.0772,0.03168 0.0634,-0.0028 0.0634,-0.0248 0.0772,-0.05099 0.0813,-0.08268 0.0813,-0.08957 0.1447,-0.268718 0.0675,-0.163986 0.0661,-0.191547 0.0675,-0.190169 0.0689,-0.180523 0.0565,-0.16123 0.005,-0.151585 0.004,-0.125402 0.0289,-0.09922 0.0124,-0.06339 0.0262,-0.0248 0.0179,-0.0028 0.008,0.03721 -0.004,0.04685 0.005,0.0441 0.0193,0.06615 0.0262,0.101974 0.0606,0.180524 0.0289,0.259073 0.0496,0.299032 0.0717,0.31006 0.0593,0.318325 0.0317,0.329354 v 0.359667 l -0.003,0.372071 0.0207,0.363799 -0.011,0.372071 -0.0579,0.395499 -0.0248,0.387227 -0.0165,0.314194 -0.022,0.254935 -0.0207,0.213596 -0.0179,0.150206 -0.0303,0.08957 -0.0179,0.03306 -0.0179,-0.01517 -0.0262,-0.04134 0.003,-0.03168 -0.0124,-0.06201 -0.0358,-0.09922 -0.0593,-0.104733 -0.0482,-0.144691 -0.04,-0.197062 -0.0331,-0.234266 -0.0179,-0.250803 -0.0413,-0.256314 -0.0551,-0.235646 -0.0207,-0.212217 -0.0138,-0.176388 0.011,-0.15572 v -0.152961 l -0.0152,-0.137802 0.0165,-0.117136 0.0193,-0.09646 0.0289,-0.05375 0.0262,-0.03858 0.0358,-0.03306 0.0703,-0.0193 0.0854,-0.02618 0.11713,-0.03305 0.12264,-0.01792 0.13919,-0.02067 0.17776,-0.0083 0.18604,0.01242 0.17914,0.01654"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path42"
+ d="m 115.67622,59.630706 0.11438,0.02893 0.12403,0.07855 0.0248,0.05788 0.008,0.04134 0.0496,0.118512 0.0882,0.186034 0.14193,0.212217 0.17915,0.235645 0.17914,0.268718 0.11025,0.299036 0.073,0.289387 0.0248,0.294901 -0.0275,0.290763 -0.0413,0.260452 -0.0841,0.24529 -0.0882,0.231511 -0.11438,0.209462 -0.0675,0.206706 -0.113,0.198438 -0.1695,0.170875 -0.12677,0.132291"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path44"
+ d="m 86.650614,76.070701 0.01792,0.04547 0.02342,0.0813 0.0055,0.07717 0.02342,0.05237 0.02893,0.04823 0.0303,0.04134 0.03859,0.03721 0.0441,0.03859 0.04548,0.02893 0.04823,0.0083 0.0565,-0.0041 0.05374,-0.01242 0.05099,-0.02342 0.04685,-0.03171 0.04272,-0.03583 0.03447,-0.04823 0.02205,-0.05374 0.02618,-0.0565 0.0303,-0.06339 0.0083,-0.07166 0.0014,-0.07304 -0.0028,-0.07579 -0.01379,-0.07166 -0.0303,-0.06752 -0.03583,-0.06063 -0.03721,-0.05926 -0.04272,-0.04272 -0.04548,-0.02893 -0.04823,-0.01101 -0.0565,-0.0055 -0.07442,-0.0069 -0.07717,-0.0014 -0.07028,0.01517 -0.06752,0.01792 -0.06339,0.02893 -0.05512,0.03172 -0.05788,0.03996 -0.06615,0.04547 -0.05788,0.06201 -0.06063,0.07717 -0.05099,0.09095 -0.03306,0.101973 -0.01242,0.101974 -0.01379,0.106109 -0.0096,0.09233 0.01101,0.08131 0.02342,0.06339 0.02617,0.0565 0.03996,0.05099 0.04548,0.0372 0.05788,0.02342 0.06752,0.02617 0.07304,0.02755 0.07579,0.02342 0.07717,0.0096 0.0813,0.0028 0.09646,-0.0055 0.08957,-0.01101 0.07855,-0.02205 0.06752,-0.02618 0.0565,-0.04272 0.04272,-0.05374 0.03168,-0.05788 0.02067,-0.06339 0.01517,-0.06477 0.0028,-0.07992 -0.01379,-0.08131 -0.0096,-0.07855 -0.0069,-0.07992 -0.02067,-0.0689 -0.0193,-0.06477 -0.03996,-0.06614 -0.05237,-0.06064 -0.04823,-0.04961 -0.04823,-0.02755 -0.06201,-0.02067 -0.07028,-0.0248 -0.07579,-0.01517 -0.07442,-0.0069 -0.07579,0.01654 -0.07028,0.02205 -0.05512,0.03168 -0.0565,0.03859 -0.04823,0.04272 -0.0303,0.04823 -0.01654,0.04134 -0.0041,0.05099 0.0096,0.06201 0.01517,0.0689 0.0028,0.07442 0.02205,0.07855 0.03168,0.08268 0.02618,0.07304 0.0565,0.05375 0.08544,0.04823 0.09371,0.02342 0.101974,0.0014 0.0937,0.0041"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path46"
+ d="m 87.320338,75.779934 -0.04547,-0.03583 -0.0565,-0.01379 -0.01517,0.04548 -0.0083,0.01379 -0.0014,-0.0055 -0.0028,-0.0041 0.0028,-0.0028 0.0096,-0.0069 0.01792,-0.01242 0.01101,-0.01792 0.01792,-0.0248 0.03583,-0.03996 0.04272,-0.04961"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path48"
+ d="m 64.312618,84.089502 -0.03721,0.03996 -0.07304,0.05098 -0.01929,0.0069 0.02343,-0.01101 0.0248,-0.01929 0.03996,-0.02342 0.04685,-0.01929 0.06752,-0.01379 0.08957,-0.02204 0.119889,-0.03443 0.14056,-0.05237 0.151584,-0.07028 0.166743,-0.07028 0.16812,-0.07855 0.177767,-0.0813 0.195681,-0.06615 0.201194,-0.06891 0.203949,-0.07165 0.183279,-0.06753 0.165365,-0.04823 0.141938,-0.03858 0.117133,-0.03305 0.103353,-0.03583 0.106109,-0.04272 0.09922,-0.04961 0.100597,-0.05099 0.07579,-0.04134 0.04823,-0.03306 0.04134,-0.01929 0.03583,-0.0069 0.02342,0.02755"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path50"
+ d="m 69.037912,82.452393 -0.0069,-0.0013 h -0.01517 l 0.0069,0.0013 0.02755,-0.02066 0.04272,-0.03168 0.04961,-0.04272 0.06753,-0.03721 0.07855,-0.04548 0.08268,-0.04548 0.08819,-0.04272 0.101974,-0.04548 0.09646,-0.05099 0.09233,-0.03996 0.09784,-0.02893 0.103353,-0.03996 0.09922,-0.0441 0.107488,-0.03721 0.119888,-0.03721 0.122646,-0.05099 0.115754,-0.05237 0.09784,-0.05236 0.07442,-0.04548 0.06339,-0.04272 0.07166,-0.03031 0.04961,-0.02479 0.02755,-0.0303 0.02893,-0.02341 0.02893,-0.01516 0.01101,-0.01654 0.0041,-0.0028 -0.0041,0.0069 -0.0082,0.0013 -0.0014,0.0041 0.0014,0.0028 h -0.0083 l -0.0028,-0.0013 0.01101,-0.0028 0.01101,-0.0013"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path52"
+ d="m 72.686953,81.103293 0.0303,-0.03996 0.03583,-0.04272 0.02893,-0.02755 0.04547,-0.02479 0.05512,-0.02204 0.07442,-0.02893 0.08544,-0.02341 0.10473,-0.02893 0.124022,-0.04134 0.135051,-0.03168 0.140557,-0.03447 0.14883,-0.03446 0.157096,-0.02893 0.155719,-0.02755 0.154341,-0.03305 0.15296,-0.02893 0.150206,-0.04548 0.139182,-0.04272 0.133671,-0.03583 0.112998,-0.03447 0.08268,-0.02755 0.08682,-0.03721 0.09095,-0.02204 0.06063,-0.01654 0.04961,-0.01378 0.04961,-0.0097 0.03168,-0.0055 0.0041,0.01378 -0.0193,0.0096 -0.03583,0.03168"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path54"
+ d="m 76.957494,80.439081 -0.0014,0.0069 0.0028,0.0096 0.0096,-0.01241 0.0303,-0.01929 0.04685,-0.04134 0.06477,-0.04685 0.07855,-0.04272 0.09233,-0.04961 0.103353,-0.0565 0.122643,-0.05236 0.139182,-0.05099 0.14194,-0.04272 0.152961,-0.03996 0.157095,-0.03446 0.158475,-0.03306 0.170879,-0.02893 0.157095,-0.02479 0.128157,-0.01929 0.117133,-0.0069 0.118512,-0.0083 0.122647,-0.0041 0.130912,-0.0069 0.136426,-0.01516 0.133668,-0.01654 0.122647,-0.01101 0.118512,-0.02342 0.104729,-0.01791 0.08957,-0.0096 0.07579,-0.01516 0.07166,-0.0083 0.06201,0.0028 0.04823,0.0055 0.0303,0.01654 0.0193,0.02066"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path56"
+ d="m 81.857796,80.076654 -0.0083,0.0055 -0.02893,0.0013 0.0083,-0.0013 h 0.0096 l 0.01792,-0.0041 0.03443,-0.01241 0.05512,-0.0083 0.06615,-0.0013 h 0.06752 l 0.07855,0.0083 0.08957,0.0083 0.104733,0.01929 0.110243,0.02066 0.111619,0.03168 0.103353,0.03721 0.09646,0.04134 0.100594,0.03858 0.110243,0.04272 0.09784,0.05512 0.08957,0.05374 0.100599,0.04272 0.0937,0.03859 0.08406,0.03583 0.0813,0.03996 0.07304,0.04272 0.06752,0.03859 0.05512,0.0303 0.03996,0.03168 0.02617,0.03168 0.02205,0.03721 0.02067,0.02341 0.01101,0.02204 0.01238,0.01378 0.0055,0.01101 -0.0055,0.0096 v 0.0096 l 0.0097,0.0083 0.0069,0.0083 0.0083,0.0041 0.02205,0.0028"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path58"
+ d="m 84.915663,82.078944 -0.0055,0.0069 -0.0014,0.0055 v 0.0096 l 0.0014,0.0028 0.01379,0.0069 0.02067,0.0096 0.0248,0.03031 0.03721,0.03168 0.04548,0.04548 0.04823,0.05512 0.0441,0.06477 0.04272,0.06752 0.04548,0.07166 0.03858,0.07028 0.04272,0.07717 0.03168,0.08268 0.04134,0.0813 0.06063,0.08406 0.04134,0.0813 0.02617,0.07855 0.02342,0.07855 0.01242,0.08268 0.0055,0.08268 0.0014,0.07717 -0.0028,0.0813 -0.0069,0.0937 -0.0097,0.103354 -0.0096,0.08819 -0.01242,0.07579 -0.0096,0.06339 -0.01654,0.05374 -0.0096,0.0441 -0.01379,0.03858 -0.0096,0.02342 -0.01379,0.0055 -0.0028,-0.0041"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path60"
+ d="m 85.238124,85.555733 -0.02618,0.0069 h -0.02067 l -0.0069,-0.0013 0.0083,0.0028 0.0055,0.0096 0.0041,0.0069 0.0028,0.02066 0.0014,0.03858 -0.01242,0.0565 -0.01379,0.08131 -0.01379,0.09233 -0.01792,0.100595 -0.0248,0.09784 -0.02342,0.08957 -0.02755,0.08958 -0.03168,0.0937 -0.02755,0.09784 -0.0303,0.108862 -0.0303,0.115753 -0.0248,0.122648 -0.0041,0.121266 -0.02618,0.104733 -0.04685,0.101975 -0.02067,0.104728 -0.02342,0.09509 -0.0303,0.08544 -0.02342,0.08544 -0.02893,0.09233 -0.02618,0.08268 -0.0303,0.05099 -0.01101,0.02341 0.0014,-0.0069 0.0041,-0.01516 0.0083,-0.01929 0.0096,-0.01929 0.0041,-0.01654 v -0.01101 h 0.01101 l 0.01101,-0.0028"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path62"
+ d="m 84.16739,89.571336 0.0028,0.0013 -0.01517,0.01791 -0.01379,0.01378 -0.0014,0.02066 -0.01517,0.03305 -0.0248,0.0565 -0.02893,0.08957 -0.03583,0.114379 -0.03447,0.122643 -0.0441,0.125401 -0.03859,0.125402 -0.03443,0.125402 -0.03447,0.119888 -0.0441,0.117134 -0.03996,0.118512 -0.03858,0.114377 -0.06201,0.100594 -0.04685,0.100598 -0.02618,0.09509 -0.0303,0.08957 -0.0248,0.08131 v 0.06477 l -0.01654,0.05099 -0.03306,0.03996 -0.02067,0.03447 -0.01238,0.02755 -0.0069,0.01516 -0.0028,-0.0069 0.0014,-0.02066 0.0041,-0.01654"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path64"
+ d="m 82.720448,93.699936 -0.0248,0.01516 -0.03583,0.0303 -0.02067,0.02893 -0.01792,0.03168 -0.01517,0.04134 -0.01792,0.04548 -0.0193,0.04961 -0.0248,0.06477 -0.02618,0.08131 -0.03171,0.09646 -0.03721,0.111622 -0.0441,0.121267 -0.03858,0.126778 -0.04134,0.121269 -0.04685,0.115755 -0.04548,0.111622 -0.03996,0.110244 -0.0441,0.107485 -0.03721,0.108868 -0.03168,0.114376 -0.03583,0.11162 -0.03859,0.09508 -0.03306,0.08957 -0.0083,0.08682 -0.01792,0.07028 -0.02205,0.05788 -0.01655,0.04685 -0.01101,0.03721 -0.01379,0.02204 -0.0014,0.01101 0.0055,-0.0028 v -0.01378 l 0.0014,-0.0055 0.0014,-0.0041 v -0.0013 l 0.0069,0.01378 -0.0083,0.02204 -0.01242,0.04272 -0.0096,0.04823 -0.01379,0.04823 -0.01242,0.04823 -0.01101,0.04409 -0.0041,0.03721 -0.0083,0.02617 -0.02617,0.0303 -0.0028,-0.0083"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path66"
+ d="m 64.245095,89.649885 -0.02205,0.0069 h -0.03858 l 0.0055,-0.0097 0.0041,0.0013 h 0.02618 l 0.03307,-0.01516 0.03721,-0.01929 0.05237,-0.02066 0.06615,-0.02341 0.07717,-0.02893 0.09646,-0.03443 0.108865,-0.03859 0.13367,-0.05098 0.150206,-0.05512 0.150206,-0.06753 0.151584,-0.06477 0.158474,-0.07441 0.173633,-0.07855 0.175011,-0.07304 0.175011,-0.0813 0.16812,-0.07993 0.141938,-0.0813 0.124024,-0.07028 0.115755,-0.07028 0.111621,-0.06476 0.115755,-0.05788 0.115755,-0.05374"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path68"
+ d="m 68.934558,87.837765 0.0096,-0.05237 0.02893,-0.07165 0.03859,-0.03996 0.03447,-0.03306 0.0303,-0.02893 0.04134,-0.04272 0.0565,-0.03168 0.06615,-0.03171 0.06064,-0.03168 0.07166,-0.04272 0.09095,-0.04548 0.100595,-0.04685 0.112998,-0.05237 0.129537,-0.05788 0.14194,-0.05788 0.150206,-0.0689 0.152961,-0.0689 0.144695,-0.07303 0.141936,-0.07717 0.141937,-0.07166 0.133671,-0.0689 0.130912,-0.06615 0.130916,-0.06063 0.122643,-0.06064"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path70"
+ d="m 72.808221,86.732579 0.0096,-0.02342 0.04685,-0.04134 0.06201,-0.04685 0.07579,-0.05512 0.0813,-0.05512 0.09646,-0.05374 0.117133,-0.05512 0.132291,-0.06201 0.143316,-0.05512 0.154341,-0.05788 0.152964,-0.06477 0.163985,-0.05788 0.157095,-0.05099 0.152965,-0.03859 0.152961,-0.02479 0.148826,-0.02617 0.147451,-0.02066 0.14194,-0.01791 0.146071,-0.02066 0.144695,-0.0096 0.129533,-0.01791 0.133671,-0.0069 0.124023,-0.0013 0.115757,-0.0083 0.110243,-0.0096 0.106108,-0.01101 0.09646,-0.0055 0.09095,0.0013 0.08957,-0.0041 0.07993,-0.0055 0.05512,-0.0041 0.03858,0.0069"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path72"
+ d="m 77.525244,86.219949 0.02205,0.0069 h 0.03172 l 0.01792,-0.0013 h 0.05788 l 0.05788,-0.0069 0.06063,0.0055 h 0.07166 l 0.07855,0.0069 0.08681,0.02342 0.09095,0.03858 0.09508,0.0441 0.0937,0.04961 0.09371,0.06339 0.09508,0.07028 0.07717,0.07441 0.05374,0.0813 0.03859,0.08958 0.03443,0.09508 0.02617,0.0937 0.02205,0.09095 0.02067,0.08682 0.01101,0.08131 -0.0028,0.07304 0.0041,0.06615 0.01792,0.06477 0.01101,0.05788 0.01242,0.05099 0.0055,0.05236 0.01101,0.04823 0.03583,0.03859 0.0193,0.03583 0.0055,0.01929 0.0083,0.0096 0.0069,-0.0013 0.01379,-0.0097 0.0096,-0.01516 0.01517,-0.01101"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path74"
+ d="m 78.923955,89.377034 -0.01517,0.01378 -0.01517,0.0069 -0.0028,0.02341 -0.0041,0.03583 -0.0028,0.05374 -0.01101,0.0565 -0.0041,0.07304 -0.01101,0.09095 -0.02205,0.108863 -0.0303,0.124023 -0.0303,0.117131 -0.03996,0.119894 -0.09095,0.256312 -0.04272,0.128159 -0.05788,0.137806 -0.05926,0.135046 -0.05099,0.148825 -0.06063,0.148831 -0.06752,0.146071 -0.06615,0.135046 -0.06615,0.112998 -0.05788,0.08958 -0.04961,0.07441 -0.04961,0.06477 -0.03305,0.05788 -0.0303,0.05374 -0.03305,0.04823 -0.0193,0.03721 0.01379,0.02342 0.0014,0.01378 -0.0083,0.01654 -0.0028,0.01101 0.0028,0.0096 -0.0041,0.02341"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path76"
+ d="m 76.814179,94.200166 -0.01654,0.01929 -0.04272,0.03721 -0.03583,0.02755 -0.0303,0.03859 -0.03306,0.04134 -0.02893,0.06201 -0.02342,0.0689 -0.03306,0.07855 -0.04685,0.101975 -0.04823,0.114377 -0.107484,0.264584 -0.06202,0.136427 -0.0689,0.139181 -0.0689,0.143314 -0.06615,0.144693 -0.05926,0.139181 -0.06339,0.118513 -0.04547,0.09646 -0.03583,0.09095 -0.03447,0.09922 -0.03447,0.08682 -0.03447,0.06615 -0.04134,0.05375 -0.03721,0.05099 -0.02893,0.05512 -0.0441,0.05374"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path78"
+ d="m 63.976377,74.596199 0.0069,0.02893 -0.01378,0.03996 0.0124,-0.0069 -0.0014,-0.0028 0.0069,0.0041 0.0028,-0.0028 0.0028,-0.0083 0.02756,-0.0097 0.04547,-0.01517 0.07166,-0.0248 0.0813,-0.03721 0.09646,-0.03583 0.110243,-0.05237 0.14056,-0.05099 0.148828,-0.04961 0.143316,-0.05926 0.139182,-0.0565 0.144693,-0.04823 0.139182,-0.04823 0.139182,-0.04548 0.148828,-0.04548 0.169499,-0.03996 0.188791,-0.04134 0.172255,-0.0372 0.146072,-0.03583 0.28801,-0.06752"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path80"
+ d="m 68.388854,73.335294 -0.0303,-0.0096 -0.04547,0.0055 -0.02618,0.01655 -0.0055,0.0041 0.01792,-0.0069 0.01654,-0.0041 0.01654,-0.0028 0.01792,-0.0096 0.03306,-0.0055 0.04823,-0.0248 0.06752,-0.0303 0.09233,-0.04272 0.118512,-0.04823 0.140561,-0.05788 0.159851,-0.06339 0.179144,-0.07166 0.181902,-0.07166 0.17501,-0.07855 0.181903,-0.07166 0.191544,-0.06201 0.179147,-0.04823 0.151582,-0.02893 0.144695,-0.0014 0.137806,0.01517 0.124022,0.01792 0.100595,0.02067 0.0882,0.02617 0.07579,0.02755"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path82"
+ d="m 72.583604,72.299009 -0.0055,0.0041 0.0041,0.01101 0.03306,-0.0028 0.0441,-0.0097 0.06063,-0.02205 0.0689,-0.03305 0.08131,-0.03858 0.09646,-0.03583 0.100598,-0.02755 0.112998,-0.02342 0.126782,-0.03447 0.144691,-0.04685 0.151585,-0.04823 0.157096,-0.04134 0.14883,-0.03996 0.141936,-0.03721 0.133671,-0.03168 0.121268,-0.03171 0.100594,-0.0248 0.09095,-0.0193 0.08268,-0.01379 0.06477,-0.0096 0.03997,0.0028"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path84"
+ d="m 76.742522,71.481835 0.01101,0.03168 -0.0055,0.04823 0.01242,-0.0083 -0.0028,-0.0069 0.0055,-0.0069 -0.0014,-0.01517 0.02067,-0.0069 0.03858,-0.01379 0.05099,-0.01792 0.07441,-0.01101 0.09922,-0.01654 0.108864,-0.02205 0.119891,-0.0083 0.135047,-0.01379 0.132292,-0.0193 0.146071,-0.02618 0.14194,-0.03858 0.16123,-0.03306 0.17501,-0.05099 0.180523,-0.05099 0.203948,-0.04823 0.188793,-0.05375 0.16123,-0.03443"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path86"
+ d="m 81.846772,70.75423 -0.0055,0.0041 0.02067,0.0014 0.04823,-0.01654 0.05926,-0.0069 0.07579,-0.0055 0.08268,-0.0055 0.101974,0.0014 0.124023,-0.0041 0.144695,0.0069 0.146071,0.0083 0.163986,0.0083 0.186037,0.0014 h 0.183279 l 0.173633,-0.0069 0.170875,-0.0014 0.14883,0.0055 0.129533,0.0069 0.118512,0.01792"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path88"
+ d="m 96.56008,78.581483 0.01101,0.146074 -0.01238,0.125399 0.0055,0.09509 0.03447,0.0689 0.01654,0.0565 0.0097,0.04272 0.01516,0.02617 0.0096,0.02479 0.0083,0.02479 0.01101,0.01654 0.0028,0.0055"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path90"
+ d="m 96.688242,80.869028 0.02893,-0.02341 0.03858,-0.01378 -0.0069,0.0303 v 0.03168 l -0.0055,0.04823 -0.0041,0.06339 0.0028,0.07579 -0.0013,0.0882 -0.0069,0.09784 -0.0069,0.111623 -0.01241,0.125401 v 0.129538 l -0.0041,0.132292 -0.02204,0.137802 -0.01654,0.137801 -0.01241,0.133673 -0.01516,0.119888 -0.02066,0.114376 -0.02204,0.104733 -0.0083,0.08681 -0.01379,0.07855 -0.02479,0.07992 -0.02204,0.0813 -0.01516,0.07717 -0.01241,0.07855 -0.0083,0.07717 -0.01929,0.07165 -0.01378,0.06201 0.02342,0.03171 0.01241,0.0096 -0.01101,0.0028 0.0055,-0.0041 0.0055,-0.01378 v -0.0096 l 0.0055,-0.01378"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path92"
+ d="m 96.041942,84.72891 0.01241,0.02617 0.0083,0.04409 -0.01791,0.0303 -0.01241,0.02204 -0.02341,0.05236 -0.02617,0.07166 -0.01791,0.0937 -0.01516,0.115755 -0.02617,0.137803 -0.02755,0.152963 -0.0441,0.166741 -0.0441,0.179149 -0.03168,0.187412 -0.02893,0.177766 -0.0441,0.162608 -0.05787,0.144695 -0.04686,0.140557 -0.02755,0.151585 -0.03721,0.139182 -0.03859,0.118512 -0.03168,0.09095 -0.01929,0.06615 -0.01791,0.06063 -0.0083,0.04685 -0.0041,0.02617 -0.01516,0.0083 -0.0013,0.0096 0.02755,0.0013 0.01516,-0.0083 -0.0041,-0.0013 v -0.0013"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path94"
+ d="m 94.819619,89.630592 -0.03858,-0.03168 -0.04548,-0.02755 -0.0055,0.02204 0.0028,0.01241 -0.0028,0.02479 -0.01241,0.04134 -0.0083,0.0565 -0.01241,0.09371 -0.02342,0.121267 -0.02341,0.135046 -0.02893,0.147452 -0.03447,0.157094 -0.03997,0.161231 -0.06752,0.177769 -0.05788,0.194302 -0.04272,0.192923 -0.0565,0.180523 -0.04409,0.168121 -0.05237,0.14745 -0.04134,0.136427 -0.04134,0.126781 -0.04134,0.106108 -0.02341,0.08819 -0.02204,0.07717 -0.01791,0.06614 -0.02066,0.04685 0.0028,0.03305 0.02755,0.01654 -0.0028,0.0041 -0.0083,0.0028 h 0.0055"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path96"
+ d="m 93.616596,93.954876 -0.0069,0.02893 -0.03447,0.07855 -0.04134,0.08406 -0.04134,0.0937 -0.03858,0.117133 -0.0441,0.132292 -0.04134,0.154339 -0.03858,0.17639 -0.03996,0.180523 -0.04961,0.177768 -0.04961,0.181898 -0.0441,0.1695 -0.04272,0.151585 -0.03031,0.133671 -0.01101,0.106108 -0.02204,0.0882 -0.0372,0.07441 -0.01101,0.05788 -0.0041,0.0303 -0.0041,0.0041 0.0013,-0.0055 -0.0069,-0.01516"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path98"
+ d="m 86.971695,75.224584 -0.0441,-0.01792 -0.0193,-0.04134 0.0096,-0.0096 -0.0014,0.02342 0.0041,0.0069 0.0041,-0.0028 -0.0055,0.0028 -0.0014,-0.0014 -0.0069,-0.0014 h -0.0014 v -0.0055 l -0.0028,-0.0014 -0.0014,-0.0014 0.0014,-0.0014 0.0014,-0.0041 -0.0055,-0.0069 0.0083,-0.0014 0.0069,0.0014 v -0.0083 l 0.0041,-0.01101 -0.0069,-0.02205 0.01792,-0.01792 0.04547,-0.02617 0.03168,-0.03306 0.01242,-0.02893 0.02342,-0.02893 0.03168,-0.03305 0.03305,-0.0303 0.03583,-0.03443 0.03583,-0.04686 0.04272,-0.04961 0.05237,-0.04685 0.0441,-0.04686 0.03306,-0.03996 0.03583,-0.0303 0.03171,-0.02342 0.01379,-0.0303 0.02342,-0.0303 0.02617,-0.03305 0.03447,-0.03443 0.03583,-0.03996 0.04823,-0.04134 0.03996,-0.0441 0.0248,-0.03583 0.04134,-0.03721 0.04272,-0.03996 0.05788,-0.04548 0.05512,-0.04548 0.05237,-0.04685 0.06063,-0.0441 0.05099,-0.0565 0.05512,-0.04547 0.05374,-0.03172 0.04685,-0.04134 0.0565,-0.04686 0.06063,-0.03996 0.04961,-0.03858 0.04548,-0.05237 0.05237,-0.05788 0.04823,-0.05374 0.0248,-0.05788 0.03721,-0.04823 0.05374,-0.04134 0.04685,-0.04823 0.0441,-0.04272 0.03859,-0.04134 0.04272,-0.03583 0.04548,-0.03583 0.03996,-0.02617 0.03721,-0.02342 0.03721,-0.0303 0.04823,-0.03447 0.05374,-0.03583 0.05237,-0.04272 0.06201,-0.04134 0.06477,-0.04823 0.06201,-0.04823 0.06064,-0.05788 0.04961,-0.04823 0.04961,-0.04961 0.05099,-0.04823 0.03996,-0.05512 0.04548,-0.04961 0.0565,-0.05237 0.05788,-0.04961 0.04961,-0.03721 0.04134,-0.03859 0.05237,-0.03996 0.0441,-0.0441 0.05374,-0.03721 0.06201,-0.0372 0.06752,-0.04961 0.05926,-0.04685 0.04823,-0.04134 0.06064,-0.04134 0.06615,-0.04547 0.06752,-0.03996 0.05925,-0.04272 0.05237,-0.0441 0.05512,-0.0441 0.05237,-0.03996 0.05099,-0.04272 0.04548,-0.0441 0.04685,-0.04548 0.03583,-0.0441 0.02893,-0.03858 0.02893,-0.03172 0.02893,-0.03583 0.0372,-0.03859 0.03721,-0.03306 0.02204,-0.03996 0.0441,-0.03168 0.06615,-0.03305 0.04823,-0.04272 0.03996,-0.03859 0.03859,-0.03447 0.03721,-0.03443 0.03168,-0.02755 0.03583,-0.02618 0.03721,-0.02618 0.03447,-0.02342 0.03168,-0.02205 0.03306,-0.02205 0.02342,-0.01792 0.02479,-0.02342 0.02204,-0.0303 0.02893,-0.0372 0.02479,-0.03996 0.03031,-0.03859 0.0303,-0.03721 0.0303,-0.03583 0.02479,-0.03447 0.02893,-0.02755 0.0303,-0.02618 0.02479,-0.02067 0.02204,-0.02067 0.01791,-0.0096 0.0055,0.0014 -0.0028,0.0041 -0.0028,0.0055 -0.0083,0.0055 -0.0041,0.0014 v -0.0014 l 0.0028,-0.0014 0.01241,-0.01517 0.01378,-0.01517 0.02479,-0.01517 0.01516,-0.0193 v -0.01517 l 0.0028,-0.0083 0.0041,-0.0097 0.0069,-0.0014 0.0041,-0.0014 0.0028,0.0041 -0.0013,0.0069 -0.0041,0.01242 v -0.0097 h 0.0013 -0.01101 v 0.0014 l -0.0041,-0.0041 h 0.0069 l 0.0013,0.0055 -0.0055,0.0055 -0.04823,0.05788"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path100"
+ d="m 91.046553,70.570952 -0.03583,-0.02067 -0.05788,0.0069 -0.03168,0.0441 -0.01516,0.03306 -0.0069,0.0303 -0.01101,0.01379 0.0013,-0.0014 0.0055,-0.01101 0.0028,-0.0083 0.0096,-0.01101 v -0.0055 l 0.0083,-0.0069 0.0083,-0.01379 0.01791,-0.0069 0.03583,-0.02205 0.05374,-0.02205 0.06752,-0.02893 0.07166,-0.03447 0.07993,-0.02755 0.0937,-0.0303 0.1006,-0.0248 0.09646,-0.01655 0.101975,-0.01517 0.111617,-0.01101 0.103355,-0.0041 0.0813,-0.0041 0.07166,-0.0069 0.06339,-0.01379 0.05237,-0.0041 0.05099,-0.0041 0.04961,-0.0097 0.05236,-0.01101 0.05099,-0.01238 0.05099,-0.02342 0.0441,-0.0248 0.02066,-0.0193 0.01379,-0.01379 0.01654,-0.0069 0.0096,0.0041 0.0028,0.0055 -0.0028,0.01101 -0.0083,0.0083 -0.01929,0.0083 -0.0083,0.0028 -0.0028,0.0041 -0.0028,0.01379 -0.0096,0.03168 -0.03446,0.03583 -0.03031,0.03721 -0.01791,0.0303 -0.01791,0.01655 -0.01929,0.01654 -0.01241,0.01654 -0.01241,0.0096 -0.02204,0.02067 -0.01516,0.03721 -0.01929,0.04548 -0.02479,0.06752 -0.03446,0.07855 -0.03306,0.08819 -0.03306,0.09508 -0.03721,0.106108 -0.03721,0.114378 -0.02341,0.101974 -0.02204,0.08268 -0.01378,0.05926 -0.0083,0.04272 -0.0028,0.03583 -0.0041,0.02893 0.0055,0.0193 0.0041,0.01101 0.0096,-0.0014 0.0083,-0.0069 0.01101,-0.0096 0.0013,-0.0041"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path102"
+ d="m 87.387863,75.971482 -0.0303,-0.0097 -0.04961,-0.0055 -0.02205,0.0041 0.0028,-0.01792 -0.0014,-0.0041 0.0028,-0.0083 -0.0055,-0.01654 -0.0028,-0.01242 -0.0028,-0.01517 -0.0041,-0.01654 v -0.0055 l -0.0041,-0.0014 0.0055,-0.0028 0.0014,0.0069 -0.0014,0.0028 -0.0028,-0.0014 v 0.0083 l -0.0014,-0.01238 0.0083,-0.0083 -0.0014,0.0028 0.0096,0.0028 0.0014,0.0014 -0.0041,0.0014 -0.0028,0.0014 -0.0028,-0.0028 0.0028,-0.0096 0.01238,-0.01517 0.0083,-0.02755 0.01242,-0.0248 0.0193,-0.0303 0.02342,-0.0303 0.01792,-0.02755 0.02205,-0.0193 0.03168,-0.02067 0.01654,-0.02618 0.0193,-0.01654 0.03858,-0.02067 0.0248,-0.02067 0.02342,-0.01792 0.02755,-0.01101 0.01379,-0.01379 -0.0014,-0.01792 0.01379,-0.01792 0.0248,-0.02205 0.02205,-0.02205 0.0248,-0.0193 0.01654,-0.02755 0.0193,-0.03168 0.03168,-0.03859 0.02755,-0.03996 0.02617,-0.03721 0.01379,-0.04134 0.01654,-0.03583 0.01792,-0.03306 0.02342,-0.03858 0.03721,-0.03306 0.03447,-0.03306 0.03168,-0.03305 0.04685,-0.0248 0.02893,-0.0248 0.01101,-0.01517 0.02617,-0.01655 0.03168,-0.0248 0.0303,-0.0193 0.03306,-0.01655 0.0303,-0.03171 0.0303,-0.02755 0.0193,-0.02755 0.01517,-0.0193 0.01517,-0.02342 0.01101,-0.03583 0.02342,-0.03305 0.03171,-0.03172 0.02067,-0.04134 0.0096,-0.03858 0.01792,-0.03447 0.0248,-0.03306 0.02067,-0.02893 0.03583,-0.0248 0.05099,-0.03168 0.05375,-0.02893 0.05099,-0.02893 0.04823,-0.02893 0.04547,-0.02205 0.03859,-0.02342 0.0303,-0.02342 0.02893,-0.01101 0.01792,-0.01655 0.01792,-0.01238 0.01242,-0.01242 0.0193,-0.0248 0.02067,-0.01101 0.0069,-0.01517 0.01101,-0.01792 0.0193,-0.02755 0.01654,-0.0303 0.01654,-0.02755 0.02618,-0.0248 0.02205,-0.03721 0.03858,-0.03721 0.04134,-0.03858 0.03996,-0.03583 0.04272,-0.03443 0.04272,-0.02755 0.0303,-0.01654 0.0248,-0.01792 0.03447,-0.0193 0.03996,-0.02342 0.05237,-0.01792 0.04272,-0.01792 0.03305,-0.0193 0.0372,-0.0193 0.02755,-0.02067 0.06339,-0.03858 0.03306,-0.03306 0.03447,-0.03306 0.03447,-0.03859 0.0303,-0.03306 0.02204,-0.03168 0.01516,-0.02205 0.02066,-0.02617 0.03305,-0.02205 0.02204,-0.0248 0.0055,-0.01655 0.02066,-0.0083 0.02066,-0.01101 0.01929,-0.0069 0.01929,-0.0055 0.01516,-0.01379 0.01929,-0.01517 0.01654,-0.0055 0.01791,-0.0028 0.01378,-0.0041 0.0041,-0.0041 v -0.0041 l 0.0055,-0.0041 -0.0055,0.0014 -0.01791,-0.0041 0.0028,-0.0069 h 0.02342 l 0.0041,-0.0069 v -0.01792 l 0.01241,-0.02893 0.01378,-0.02205 0.0055,-0.01101 -0.0013,-0.0069 -0.0041,-0.01242 0.0096,-0.0083 0.0013,0.0041 -0.0055,0.0055 0.0055,0.0041 0.0028,0.0083 -0.0041,0.0069 -0.0041,0.01101 -0.02755,0.02617"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path104"
+ d="m 89.031864,72.937043 -0.0303,0.0193 -0.05099,0.03721 -0.0055,0.0193 0.0097,-0.0096 0.01238,-0.0083 0.0083,-0.01655 0.0041,-0.01379 0.0096,0.0014 0.0193,-0.0097 0.02205,-0.0096 0.0303,-0.0055 0.04547,-0.0096 0.05375,-0.01517 0.0689,-0.01654 0.07579,-0.01654 0.07304,-0.01654 0.07855,-0.01379 0.08406,-0.0096 0.08268,0.0041 0.08957,-0.0055 0.07717,-0.0083 0.05374,-0.0041 0.05099,-0.0083 0.04961,-0.01654 0.04134,-0.0193 0.03446,-0.01101 0.04134,-0.01654 0.03031,-0.01101 0.02341,-0.0096 0.02342,-0.0014 0.01654,-0.0028 0.01378,0.0041 0.0069,0.0028 -0.01101,0.0069 -0.0028,0.0083 0.0013,0.0055 0.0096,0.0069 0.01516,0.01792 0.02066,0.01238 0.01101,-0.0014 -0.01101,0.0014 0.0013,0.0041 0.0013,-0.0028 0.01929,-0.0028 0.0013,0.0096 -0.01101,-0.0028 -0.0083,-0.0028 -0.0055,-0.0014 h -0.0055 l 0.0028,-0.0014 h 0.0028 v 0.0014 h 0.0013 -0.0013 l 0.0055,-0.0014 0.0055,-0.0028 h 0.0028 -0.01654 0.01101 -0.0041 0.0083 -0.0041 0.0041 l -0.0041,0.0041 0.0055,-0.0041 0.01241,-0.0041 0.01378,-0.0055 0.0083,-0.0014 0.01929,-0.0069 h 0.02893 l 0.02755,-0.01242 0.01929,-0.0055 0.03583,0.0028 0.0083,-0.0041 v 0.0014 l 0.0083,0.0014 -0.0041,0.0069 -0.0028,0.0014 -0.0041,0.0014 -0.0069,0.0014 0.0055,0.0014 0.0028,-0.0014 0.0013,0.0041 -0.0096,-0.0014 0.0028,-0.0055 v 0.0069 l 0.0013,-0.0028 0.0055,-0.0041 0.0041,-0.0028 -0.0055,-0.0069 -0.0013,-0.0014 h 0.0096 l 0.0096,0.0014 -0.01241,0.0014 -0.01101,0.0014 0.0055,-0.0028 0.0055,-0.0014 -0.0096,0.0055 -0.0055,0.0028 0.0013,0.0014 h 0.0069 l 0.0055,-0.0014 0.0083,0.0028 -0.0041,-0.0041 h 0.0028 l -0.0028,-0.0055 h -0.01378 l -0.0028,-0.0028 0.0096,-0.0041 0.0028,0.0028 h 0.0041 l -0.0041,0.0055 0.0096,0.0014 h -0.0041 0.0096 l -0.0041,-0.0014 -0.0069,0.0028 v 0.0055 l -0.01379,0.01517 v 0.0097 h -0.0013 l -0.0055,0.0083 0.0055,0.03171 0.0083,0.0441 -0.01241,0.03168 -0.01101,0.04134 -0.0055,0.03858 -0.0069,0.05099 -0.01101,0.05099 -0.01791,0.05374 -0.01791,0.05788 -0.01101,0.06339 -0.01516,0.07855 -0.05099,0.152961 -0.0083,0.06752 -0.0055,0.07166 -0.0055,0.08406 -0.01379,0.09233 -0.01516,0.09371 -0.0083,0.08681 -0.0028,0.0813 -0.0083,0.09233 -0.01654,0.08544 -0.01101,0.06615 -0.0096,0.04823 -0.0028,0.0303 0.0083,0.01792 -0.0083,0.01379 -0.01654,0.0069 -0.0069,-0.0014 0.0013,-0.0055 0.0069,-0.0069 0.0028,-0.01101 h 0.0096 v -0.0083 l -0.0069,-0.0014 -0.0013,-0.0014 0.0013,0.0041 h -0.0013 v 0.0028 l -0.01101,-0.0055 -0.0055,-0.01101"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path106"
+ d="m 93.412645,72.792348 h 0.0013 l 0.01101,-0.0055 0.0083,-0.0069 -0.0083,-0.0083 v 0.01101 h 0.0055 l -0.0028,0.01101 h 0.0083 l -0.0041,0.0041 -0.01101,-0.0014 -0.0069,-0.0014 h 0.0041 l 0.0096,-0.0014 0.0055,-0.0014 h 0.0096 l -0.0013,0.0041 0.01654,0.02618 0.05099,0.06752 0.05512,0.09646 0.03996,0.106108 0.05237,0.112999 0.04685,0.118512 0.06201,0.111622 0.05374,0.115753 0.05788,0.118513 0.06201,0.114377 0.06201,0.107488 0.09233,0.184655 0.0055,0.07304 0.02479,0.05925 0.0372,0.04272 0.02066,0.02617 0.01654,0.02205 0.0096,0.01101 0.01654,-0.0097 -0.0069,-0.0069 -0.0055,-0.0083 -0.0041,-0.01238 -0.0303,-0.03859"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path108"
+ d="m 93.407133,72.675215 -0.04685,-0.0014 -0.03583,-0.0193 0.01378,-0.0014 0.01241,-0.0014 v -0.0096 l 0.01929,-0.01242 0.05374,-0.02205 0.06753,-0.02205 0.08544,-0.0248 0.110241,-0.02067 0.103352,-0.01379 0.104732,-0.01517 0.121267,-0.0096 0.128156,-0.0014 0.1006,-0.0028 0.104727,-0.0083 0.135049,-0.01655 0.12678,-0.0069 0.128156,-0.01101 0.136428,-0.01792 0.132291,-0.01242 0.106109,-0.0248 0.09784,-0.0248 0.09233,-0.01792 0.07993,-0.01238 0.05926,-0.0097 0.05374,-0.01101 0.0565,-0.0041 h 0.05099 l 0.04272,0.01238 0.0303,0.01101 0.01654,0.01101 0.0028,0.01379 -0.0055,0.0055 -0.0097,0.0028 -0.0069,0.0014 -0.0069,-0.0014 0.0055,-0.0028 0.0041,-0.0014 -0.01101,0.0069 -0.0028,0.0041 v 0.0028 l -0.0096,0.0028 v 0.0014 h 0.0055 -0.0096 v -0.0014 h 0.0096 -0.0013 v 0.0028 l 0.0013,0.0055 v 0.0028 l -0.01101,0.0055 -0.02066,0.0248 -0.02479,0.03306 -0.02755,0.04272 -0.03306,0.03447 -0.03996,0.02617 -0.02893,0.03447 -0.01378,0.04134 -0.02341,0.03996 -0.02342,0.0565 -0.07717,0.15434 -0.0565,0.07441 -0.04685,0.07717 -0.01929,0.07304 -0.0441,0.06339 -0.05374,0.07579 -0.06752,0.08819 -0.06339,0.101974 -0.03721,0.106108 -0.04961,0.106109 -0.05788,0.100598 -0.05237,0.103353 -0.06201,0.100595 -0.04685,0.09095 -0.03859,0.08269 -0.04134,0.06201 -0.04823,0.06477 -0.02755,0.08682 -0.03447,0.06339 -0.05512,0.03583 -0.03583,0.02617 -0.01654,0.02067 0.0055,0.01242 -0.0055,0.0083 -0.01516,-0.01101 0.01654,-0.01379 0.0083,-0.0041 0.0096,-0.0069 0.0069,-0.0096 0.02617,-0.01242 0.02755,-0.02342 -0.0069,-0.03306 0.0083,-0.03306"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path110"
+ d="m 93.768176,71.717476 -0.01654,0.0248 -0.05237,0.02893 -0.0096,0.0096 0.0096,-0.0083 0.01378,-0.01655 0.01654,-0.01379 0.02617,-0.0055 0.117133,-0.02755 0.0937,-0.01655 0.111623,-0.01517 0.118512,-0.0055 0.118507,-0.01517 0.128161,-0.01654 0.122642,-0.01654 0.119894,-0.0096 0.100594,-0.0097 0.09922,-0.0096 0.103352,-0.0041 h 0.07855 l 0.05788,0.0014 0.03858,0.0041 0.02617,-0.0014 v 0.0014 l -0.0013,-0.0055 -0.0055,0.0055 -0.0096,-0.0014 -0.01791,0.0069"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path112"
+ d="m 97.089247,72.162583 0.05099,-0.0055 0.07166,-0.04272 0.03447,-0.04547 0.01378,-0.04134 0.0069,-0.04134 0.0028,-0.04823 0.0028,-0.04685 -0.0013,-0.04961 0.0013,-0.05099 -0.01516,-0.04961 -0.01516,-0.04272 -0.01791,-0.04686 -0.02893,-0.04685 -0.02755,-0.04961 -0.03306,-0.0441 -0.04272,-0.03721 -0.05374,-0.03171 -0.05236,-0.01517 -0.05099,-0.01242 -0.04961,-0.01379 -0.05099,0.0014 -0.04272,0.0069 -0.03443,0.01792 -0.03447,0.02755 -0.03446,0.03168 -0.02617,0.0441 -0.02341,0.0565 -0.02204,0.07441 -0.02342,0.08544 -0.01929,0.09095 -0.01516,0.09646 -0.0083,0.110243 0.0013,0.133668 v 0.14194 l 0.01238,0.144692 0.01516,0.159854 0.02755,0.16812 0.03168,0.181899 0.02893,0.192927 0.02755,0.181899 0.03168,0.172258 0.0303,0.163985 0.02893,0.165365 0.02893,0.157095 0.02204,0.150206 0.01101,0.132292 -0.0013,0.108867 -0.01929,0.08406 v 0.05926 l 0.01654,0.04547 -0.0028,0.02205 -0.0083,0.0014 0.0083,-0.0041 0.0013,-0.0096 0.01241,-0.01101 0.0083,-0.01792 -0.01929,-0.01379 -0.01791,-0.0055 0.0013,-0.01792 -0.0013,-0.02893 -0.03446,-0.08544"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path114"
+ d="m 96.194902,73.500658 -0.08406,-0.0028 -0.08131,-0.0028 0.0069,-0.0097 h 0.01378 l 0.01241,-0.0028 0.02066,-0.0055 0.01516,-0.0028 0.04134,-0.0069 0.06063,-0.01792 0.07304,-0.01101 0.07855,-0.0096 0.08544,-0.0083 0.09784,-0.0055 0.104733,-0.0055 0.09646,-0.0069 0.09371,-0.0055 h 0.08682 l 0.06753,-0.0014 0.08268,-0.0055 0.117136,-0.0028 0.0937,-0.0014 0.06752,-0.0028 0.0565,0.0028"
+ style="fill:none;stroke:#bdbdbd;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path116"
+ d="m 99.153553,73.262258 -0.0069,-0.0083 -0.0096,-0.0096 0.0028,-0.01379 0.01791,-0.0083 0.0083,-0.0083 0.01241,-0.0069 0.01654,-0.0041 0.04134,-0.01238 0.06063,-0.01517 0.07028,-0.0097 0.07717,-0.01379 0.07579,-0.01379 0.09095,-0.01242 0.104733,-0.01238 0.114374,-0.01101 0.113003,-0.01654 0.118507,-0.02342 0.113,-0.01792 0.10335,-0.01792 0.0978,-0.02205"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path118"
+ d="m 99.371278,73.930606 -0.02479,0.0193 -0.03721,0.02205 0.01378,-0.0028 0.0055,-0.0083 0.01241,-0.01242 0.01378,-0.0028 0.01101,-0.0055 h 0.03168 l 0.0441,-0.0097 0.06064,-0.0096 0.07717,-0.0097 0.09509,-0.0083 h 0.0937 l 0.08819,-0.0069 0.09784,-0.01792 0.115752,-0.0248 0.113,-0.03306 0.10749,-0.0248 0.0965,-0.0248 0.0882,-0.01654 0.0744,-0.0083 0.062,-0.0083 0.0827,0.01101"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path120"
+ d="m 102.64136,73.182333 -0.004,0.0193 -0.0344,0.09508 -0.0537,0.106109 -0.0317,0.09233 -0.0413,0.09095 -0.04,0.0937 -0.0386,0.09233 -0.0372,0.09646 -0.0413,0.09646 -0.0358,0.07993 -0.0276,0.06752 -0.0262,0.04961 -0.01,0.03859 -0.001,0.02755 0.01,0.0097 0.008,-0.0083 0.0179,-0.01655 0.0165,-0.01379"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path122"
+ d="m 101.59543,71.999977 -0.0331,-0.03859 -0.0248,-0.07442 0.0138,-0.04685 0.0138,-0.03447 0.0234,-0.02067 0.022,-0.02755 0.0262,-0.03721 0.0386,-0.02067 0.0413,-0.01654 0.0441,-0.01792 0.0606,-0.0014 0.0675,-0.0014 0.0717,0.0083 0.0689,0.0193 0.0703,0.03721 0.0758,0.03583 0.0758,0.04685 0.0758,0.06615 0.0689,0.06752 0.0524,0.0689 0.0537,0.07028 0.0441,0.07993 0.0386,0.09508 0.04,0.101977 0.0303,0.107485 0.0413,0.114377 0.0455,0.121268 0.0482,0.125402 0.0469,0.129536 0.0455,0.158475 0.0358,0.16812 0.0234,0.137805 0.0262,0.121268 0.0152,0.114374 0.04,0.09784 0.0345,0.07993 0.0124,0.07579 0.0262,0.06477 0.0317,0.06063 0.0289,0.04823 0.0179,0.03447 0.0317,0.02067 0.0358,0.0193 0.0372,0.02342 0.0317,0.01101 0.0289,-0.0069 0.0331,-0.0055 0.0358,-0.01517 0.0303,-0.02755 0.0345,-0.02893 0.0469,-0.02342 0.0386,-0.02067"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path124"
+ d="m 104.14342,72.05234 -0.0372,-0.01792 -0.0496,-0.01517 -0.0207,0.02342 v 0.01242 l 0.0207,-0.0028 0.01,0.0097 0.0165,0.03583 0.0372,0.06063 0.0482,0.08131 0.0496,0.100598 0.0551,0.103354 0.0579,0.114377 0.0606,0.124023 0.0593,0.136426 0.073,0.140561 0.073,0.152961 0.0427,0.163985 0.0496,0.14883 0.0923,0.112998 0.0524,0.09922 0.0289,0.0813 0.0427,0.05512 0.0469,0.04134 0.04,0.02893 0.0331,0.02067 0.04,0.0069 0.0262,0.0028 0.0138,-0.0055 -0.005,-0.0069"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path126"
+ d="m 104.0318,71.969659 0.0193,0.0096 0.0317,0.0069 0.0661,0.0083 0.0965,0.0069 0.10336,0.0014 0.10886,-0.0097 0.12816,-0.01655 0.1447,-0.01654 0.15709,-0.01517 0.17088,-0.01242 0.18465,0.0028 0.17777,0.0097 0.15985,0.01101 0.13918,0.01517 0.113,0.02067 0.091,0.0248 0.0772,0.02755 0.0813,0.02618 0.0537,0.01792 0.01,0.02067 v 0.01654 l -0.008,0.02205 -0.0124,0.01792 -0.011,0.02205 0.005,0.0248 -0.011,0.0193 -0.0262,0.02342 -0.022,0.02618 -0.022,0.0193 -0.0179,0.01238 -0.0193,0.02205 -0.0179,0.0248 -0.0193,0.02617 -0.0138,0.03168 -0.0124,0.03721 -0.0193,0.0441 -0.0152,0.05512 -0.022,0.06614 -0.0413,0.07717 -0.0372,0.08957 -0.0317,0.08819 -0.0386,0.08268 -0.04,0.09508 -0.0386,0.114378 -0.04,0.110243 -0.0317,0.09646 -0.04,0.0813 -0.0358,0.08544 -0.0303,0.08268 -0.0234,0.06615 -0.0344,0.06063 -0.0234,0.04961 -0.0179,0.03721 -0.0165,0.0248 -0.0124,0.02342 -0.006,0.0083 v -0.01238 l 0.006,-0.0083 0.004,-0.0069 0.003,-0.01655 0.011,-0.0096 -0.001,-0.0083"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path128"
+ d="m 104.1007,71.195203 -0.0152,0.0055 -0.0358,0.01379 -0.0165,0.0069 0.003,-0.0028 0.0124,-0.0014 0.0179,-0.0055 0.0248,0.0014 0.0537,0.01101 0.0813,0.0041 0.0799,-0.0041 0.0896,-0.01517 0.091,-0.01655 0.0992,-0.02205 0.1006,-0.02755 0.0923,-0.03306 0.0923,-0.0248 0.091,-0.01101 h 0.2384 l 0.11576,0.0055 0.10198,0.0083 0.0923,0.01517 0.0923,0.01238 0.0923,0.01101 0.0675,0.01379 0.0386,0.0193 0.04,0.01101 0.0413,0.01517 0.0413,0.01101 0.0331,0.0028 0.003,-0.0055 -0.005,-0.0041 0.004,-0.0041 -0.0124,0.0028 -0.008,-0.0055 v -0.0069 l -0.005,-0.0083 -0.0248,-0.0083 h -0.0427"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path130"
+ d="m 107.0814,72.157072 -0.005,0.01101 -0.022,0.02893 -0.0152,0.04961 -0.006,0.04823 -0.004,0.06064 10e-4,0.0689 0.001,0.06752 v 0.0689 l -0.001,0.08131 -0.007,0.09508 -0.004,0.09646 -0.003,0.09646 -0.008,0.09646 -0.004,0.09922 0.003,0.09922 0.005,0.08819 -0.007,0.0565 -0.001,0.02755 0.022,0.01517 0.003,0.0055 -0.0179,-0.0041 -0.001,-0.01654 0.001,-0.01654 v -0.04685 l -0.005,-0.02205 -0.01,-0.05099 -0.01,-0.07441 -0.004,-0.08819 0.011,-0.101978 0.0317,-0.115753 0.0262,-0.112998 0.0165,-0.104733 0.0262,-0.101974 0.0317,-0.08544 0.0179,-0.0689 0.0317,-0.04685 0.0662,-0.03583 0.0565,-0.03858 0.051,-0.03583 0.0579,-0.03172 0.0648,-0.03721 0.0758,-0.03996 0.0813,-0.03858 0.0854,-0.02617 0.0896,-0.0248 0.0827,-0.01517 0.0827,0.01101 0.0606,0.02893 0.0565,0.05099 0.0303,0.07579 0.005,0.09509 0.003,0.119888 -0.008,0.132292 -0.007,0.137802 -0.0248,0.151585 -0.0524,0.14883 -0.0345,0.148826 -0.0275,0.14194 -0.0165,0.128157 -0.0248,0.09646 -0.0165,0.07579 0.001,0.07166 0.008,0.05374 0.001,0.04547 0.01,0.04686 0.0152,0.04547 0.0248,0.04272 0.0289,0.04547 0.0289,0.05099 0.033,0.03721 0.0372,0.01654 0.0358,0.01379 0.051,0.0028 0.0455,-0.0069 0.0248,-0.01242 0.0358,-0.01517 0.0455,-0.02618 0.0469,-0.03721 0.0413,-0.03583 0.0441,-0.02067"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path132"
+ d="m 81.835748,99.924534 0.0193,0.0096 0.02205,0.01929 0.0055,0.03446 0.01101,0.06477 0.0055,0.10749 0.0041,0.13643 -0.01101,0.14193 -0.0041,0.1323 -0.0083,0.12815 -0.01654,0.13505 -0.0083,0.13505 -0.01517,0.14332 -0.0055,0.13091 -0.0041,0.1254 -0.0041,0.11162 0.0028,0.0896 0.0193,0.0662 0.0193,0.0372 0.01101,0.004 v -0.0248 l -0.0028,-0.0358 0.0014,-0.0331 0.0083,-0.0317 0.0083,-0.0565 0.0055,-0.0978 0.01379,-0.12677 0.02205,-0.15159 0.02893,-0.15572 0.02205,-0.15434 0.03996,-0.1502 0.04961,-0.15434 0.04134,-0.15021 0.0689,-0.1254 0.0689,-0.0992 0.07166,-0.0868 0.07166,-0.08131 0.0689,-0.07304 0.08131,-0.06201 0.113002,-0.04823 0.08957,-0.03031 0.06339,-0.0055 0.02893,0.01241 0.03306,0.03583 0.05374,0.05512 0.03721,0.07717 0.01517,0.07717 0.01242,0.0882 0.0096,0.11438 -0.0014,0.1378 -0.0083,0.15021 0.0014,0.15158 -0.0014,0.15296 -0.0083,0.16123 -0.0069,0.14883 0.0014,0.13919 0.01101,0.13504 0.0041,0.12403 0.0028,0.10197 0.01517,0.0841 0.0248,0.0634 0.05236,0.0441 0.05512,0.0317 0.06477,0.0289 0.05237,0.0179 0.0303,0.007 0.05237,-0.008 0.06339,-0.0234 0.07166,-0.0289 0.08957,-0.04"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path134"
+ d="m 85.176112,99.318199 -0.0193,0.0013 -0.06615,0.03443 -0.07166,0.06064 -0.06477,0.07717 -0.06063,0.1006 -0.06339,0.121266 -0.06201,0.141936 -0.05237,0.151589 -0.04134,0.17087 -0.04134,0.18466 -0.02755,0.1819 -0.01101,0.17915 0.0028,0.19292 0.02893,0.19568 0.03583,0.19431 0.05374,0.18879 0.04961,0.1819 0.06615,0.16674 0.08544,0.14194 0.08957,0.11162 0.114377,0.0813"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path136"
+ d="m 86.104909,101.14961 0.01242,-0.003 -0.01654,-0.0138 -0.03168,-0.0496 -0.0069,-0.0606 -0.0055,-0.0799 0.01379,-0.0909 0.0055,-0.10473 0.0096,-0.12264 0.0303,-0.14056 0.04134,-0.13643 0.04685,-0.11851 0.04961,-0.11025 0.06339,-0.0937 0.07579,-0.07579 0.07579,-0.03996 0.08268,0.0083 0.07992,0.02204 0.06753,0.02755 0.06752,0.04823 0.0689,0.0565 0.06202,0.0785 0.0565,0.0882 0.06064,0.10198 0.07855,0.10059 0.06752,0.10473 0.05926,0.11025 0.04961,0.12264 0.04961,0.12403 0.04272,0.13504 0.04961,0.14194 0.06063,0.14194 0.05512,0.13367 0.04685,0.12953 0.07028,0.10749 0.04961,0.0978 0.0028,0.0772 0.0028,0.0978"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path138"
+ d="m 87.728237,99.873549 -0.03996,0.02617 -0.06063,0.04134 -0.02755,0.0441 -0.03168,0.05788 -0.03996,0.0744 -0.07441,0.10611 -0.07166,0.12264 -0.07441,0.13918 -0.09095,0.16124 -0.07028,0.17776 -0.07166,0.18328 -0.07855,0.17915 -0.07717,0.17225 -0.08268,0.17915 -0.08406,0.17914 -0.06339,0.17914 -0.0441,0.16261 -0.03721,0.13918 -0.01517,0.10749 -0.0014,0.0634 0.01101,0.0193 0.0303,-0.0124"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path140"
+ d="m 89.19447,101.77662 0.07304,0.0124 0.07579,0.0565 -0.01379,0.0427 -0.02205,0.0234 -0.01792,0.0606 -0.01792,0.0813 -0.01242,0.0937 -0.01792,0.091 -0.02205,0.0978 -0.02067,0.10197 -0.01792,0.10198 -0.01792,0.11024 -0.0014,0.0854 0.0083,0.0565"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path142"
+ d="m 90.442972,99.879063 -0.0565,0.03996 -0.0689,0.07304 -0.04823,0.0689 -0.02617,0.073 -0.01516,0.11163 -0.03996,0.14193 -0.02893,0.16261 -0.01241,0.17088 -0.01791,0.18327 -0.01241,0.17502 -0.0069,0.16674 -0.01378,0.14469 0.01241,0.12541 0.0441,0.0868 0.06063,0.0469 0.06477,0.0165 0.07304,-0.001 0.07717,-0.0207 0.07304,-0.0482 0.07441,-0.0537 0.07993,-0.0744 0.103354,-0.11714 0.08957,-0.14883 0.07855,-0.1502 0.08544,-0.15848 0.07993,-0.17501 0.05237,-0.18189 0.06339,-0.16537 0.09371,-0.15158 0.05788,-0.13643 0.01791,-0.115753 0.01379,-0.09095 0.0096,-0.05926 0.01241,-0.04272 0.0028,-0.02755 -0.02617,0.0069 -0.0069,0.02204 -0.0013,0.02342 0.0069,0.02066 0.0041,0.02755 -0.01929,0.04961 -0.0083,0.08268 0.01378,0.132283 0.01241,0.17639 0.02755,0.20533 0.01791,0.21222 0.02893,0.22875 0.0441,0.24942 0.03583,0.27286 0.03997,0.28938 0.03168,0.30455 0.0083,0.30179 -0.0041,0.28663 -0.02479,0.26321 -0.02617,0.23564 -0.0303,0.22187 -0.04272,0.20395 -0.02479,0.19154 -0.04134,0.16813 -0.07579,0.12126 -0.06201,0.0868 -0.05237,0.0524 -0.06614,0.0207 -0.07579,0.003 -0.0689,-0.0248 -0.06339,-0.0482 -0.08131,-0.0661 -0.08268,-0.0813 -0.07993,-0.11024 -0.06477,-0.12678 -0.05512,-0.13504 -0.04685,-0.1447 -0.01101,-0.15985 0.02204,-0.15158 0.02755,-0.12541 0.03721,-0.1061 0.05374,-0.11576 0.06615,-0.11713 0.07579,-0.10473 0.08268,-0.10198 0.114377,-0.11162 0.118512,-0.10611 0.130913,-0.0978 0.168124,-0.0813 0.169495,-0.0785 0.117136,-0.005"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path144"
+ d="m 93.007499,99.396749 -0.02617,-0.03306 -0.0441,-0.03171 -0.02755,0.02066 0.01241,0.02066 0.0083,-0.0069 0.01241,0.0041 0.0096,0.0096 0.03168,0.01791 0.06339,0.0441 0.09508,0.07028 0.122642,0.09784 0.126783,0.128156 0.114377,0.141939 0.103354,0.140556 0.08819,0.15434 0.06063,0.17777 0.0441,0.18879 0.0041,0.21222 -0.01654,0.23151 -0.04134,0.23151 -0.04548,0.23564 -0.05099,0.22049 -0.06477,0.18466 -0.06615,0.14745 -0.0441,0.12815 -0.06063,0.0937 -0.05926,0.062 -0.04134,0.0413 -0.04685,0.0207"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path146"
+ d="m 95.618883,100.16982 -0.07166,0.0345 -0.115753,0.0441 -0.03721,-0.022 0.0069,-0.01 0.01516,-0.004 0.01929,-0.007 0.01791,-0.004 0.03447,-0.011 0.05512,-0.008 0.08131,-0.0152 0.09922,-0.008 0.122645,10e-4 0.141938,0.003 0.158475,0.011 0.175009,0.0179 0.179147,0.0193 0.15985,0.0248 0.141939,0.008 0.113001,0.0124 0.09508,0.004"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path148"
+ d="m 95.693295,101.07106 -0.03858,-0.01 -0.07028,-0.01 0.03168,0.003 0.02479,10e-4 0.02479,-0.003 0.05512,-0.007 0.101976,-0.0152 0.11989,-0.0179 0.147447,-0.007 0.172257,-0.005 0.18328,-0.006 0.194302,0.003 0.227378,0.011 0.22462,0.0179"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path150"
+ d="m 98.955115,100.09128 -0.09922,0.16812 -0.147452,0.33486 -0.04272,0.22186 0.01101,0.12817 0.02755,0.10748 0.05512,0.10611 0.07855,0.0965 0.08957,0.0841 0.09508,0.073 0.110244,0.0469 0.115755,0.0289 0.130913,0.004 0.141936,-0.0234 0.146076,-0.0496 0.136425,-0.073 0.114374,-0.10473 0.122644,-0.13367 0.11989,-0.15296 0.0978,-0.1695 0.0744,-0.17501 0.0455,-0.17364 0.008,-0.16123 -0.004,-0.1502 -0.0138,-0.152966 -0.0345,-0.168119 -0.051,-0.16674 -0.0593,-0.17639 -0.0537,-0.1695 -0.0978,-0.130916 -0.119887,-0.0813 -0.118512,-0.03443 -0.115753,0.0028 -0.118512,0.02893 -0.115753,0.05374 -0.104732,0.07166 -0.106109,0.08819 -0.112998,0.122648 -0.09647,0.14745 -0.08544,0.180519 -0.07028,0.216353 -0.06063,0.226001 -0.03305,0.20946 -0.01654,0.19982 -0.01238,0.19292 0.01791,0.19706 0.03996,0.17777 0.07166,0.15571 0.08268,0.13505 0.10749,0.0937 0.115752,0.0634 0.135046,0.0358 0.154342,-0.001"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path152"
+ d="m 113.25915,95.484498 -0.0427,0.04823 -0.14608,0.103354 -0.0799,0.04548 -0.001,-0.0041 0.008,-0.01791 0.008,-0.03583 0.0276,-0.05788 0.0165,-0.07304 0.0193,-0.09095 0.051,-0.146071 0.0785,-0.19017 0.0896,-0.199816 0.1199,-0.195683 0.13091,-0.17639 0.1254,-0.151579 0.13918,-0.125402 0.13918,-0.0882 0.10198,-0.03721 0.0827,-0.01654 0.0951,0.01101 0.0703,0.03721 0.051,0.02893 0.0386,0.05099 0.0565,0.06752 0.0427,0.0882 0.0565,0.103351 0.0358,0.136427 0.0606,0.170876 0.091,0.184658 0.0565,0.214974 0.0648,0.223242 0.0882,0.214971 0.091,0.197062 0.0868,0.197059 0.0841,0.184658 0.0841,0.158472 0.0675,0.130916 0.0537,0.0937 0.0606,0.07717 0.0579,0.02755 0.0524,0.01379 0.0179,0.01241 0.005,-0.0013 -0.0234,-0.02479"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path154"
+ d="m 116.17783,93.500123 -0.113,0.129535 -0.24529,0.26734 -0.18879,0.23151 -0.13643,0.227378 -0.15158,0.25218 -0.19155,0.261826 -0.17639,0.276987 -0.15571,0.292142 -0.16261,0.297657 -0.17639,0.294902 -0.16675,0.289388 -0.17639,0.272851 -0.11024,0.217728 -0.0248,0.146074 -0.0276,0.103349 -0.0179,0.05926 -0.001,0.01791 0.0152,-0.02342 0.0193,-0.03859"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path156"
+ d="m 67.96993,50.96285 -0.08131,0.02067 -0.144692,0.07717 -0.05512,0.108864 -0.03168,0.06339 -0.02755,0.100598 -0.0303,0.126777 -0.0193,0.14883 -0.0083,0.158475 0.02755,0.163985 0.02755,0.150206 0.02342,0.129537 0.04134,0.119888 0.05237,0.108863 0.08544,0.09371 0.07579,0.06339 0.05374,0.04823 0.05788,0.0248 0.06891,0.0041 0.07166,-0.0248 0.08957,-0.03306 0.08682,-0.06477 0.09233,-0.08406 0.103353,-0.111622 0.0937,-0.170875 0.08131,-0.184658 0.02755,-0.187413 0.06752,-0.183279 0.111623,-0.179144 0.04823,-0.166744 0.01654,-0.128157 0.01242,-0.09508 0.02893,-0.04823 h 0.01101 l -0.0028,0.01792 -0.0014,0.03996 -0.0055,0.0303 -0.0014,0.0193 0.0096,0.02755 0.01517,0.04686 0.0041,0.07855 0.01379,0.121267 0.01379,0.15434 -0.01101,0.201193 0.0096,0.238404 0.06201,0.235641 0.01654,0.265963 -0.0014,0.276987 0.0069,0.268714 0.0069,0.265963 0.0565,0.260449 0.02755,0.237024 -0.02755,0.213593 -0.02205,0.198437 -0.02205,0.177768 -0.04272,0.176389 -0.04272,0.172255 -0.02618,0.157095 -0.07028,0.121268 -0.08131,0.130915 -0.06064,0.110244 -0.05374,0.05099 -0.08819,0.0041 -0.06477,-0.03721 0.0028,-0.06064 -0.01519,-0.06615 -0.03859,-0.117133 -0.06201,-0.15985 -0.07166,-0.16812 -0.04272,-0.195682 -0.05236,-0.216352 -0.06477,-0.23289 -0.03168,-0.197058 -0.0014,-0.143316 0.0028,-0.08957 0.02617,-0.03721 0.03721,-0.02893 0.04685,-0.0303 0.09095,-0.05236 0.106109,-0.07166 0.136426,-0.08131 0.135047,-0.06615 0.177768,-0.06201 0.2384,-0.07579 0.208082,-0.05788 0.190169,-0.01238 0.197062,-0.0193 0.192923,-0.0096 0.15434,0.01242"
+ style="fill:none;stroke:#000000;stroke-width:0.44775647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
+ </g>
+</svg>