\(\text{www.the}\beta\text{etafunction.com}\)
Home
Login
Questions: Algebra BusinessCalculus

Please login to create an exam or a quiz.

Algebra
functions
New Random

Graph the function \(\displaystyle f(x)=\begin{cases} - \frac{3 x}{5} - 7,& x \leq -2\\ 9 - \frac{2 \left(x - 1\right)^{2}}{5},& -2 < x < 5\\ 6 - \frac{3 x}{5},& x \geq 5 \\ \end{cases}\)


The graph has three parts. It is a line on \(\displaystyle (-\infty, -2]\), a parabola on \(\displaystyle (-2,5)\), and a line on \(\displaystyle [5, \infty)\). Graphing each part gives:

Download Tikz \( \LaTeX \)

\begin{tikzpicture}[font=\Large, scale=.4]
	\draw[very thick, color=blue, opacity=0.3, xstep=1, ystep=1] (-10,-10) grid (10,10);
	\draw[latex-latex, very thick] (-10.4,0)--(10.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-10.4)--(0,10.4) node[above]{$y$};
	\foreach \x in { -10,-8,...,10 }{
		\pgfmathsetmacro{\xtick}{\x != 0 ? "\x" : ""}
		\draw (\x, .2) -- (\x,-.2) node[below]{$\xtick$};
		}
	\foreach \y in { -10,-8,...,10 }{
		\pgfmathsetmacro{\ytick}{\y != 0 ? "\y" : ""}
		\draw (.2, \y) -- (-.2, \y) node[left]{$\ytick$};
		}
	\draw[thick, color=blue, domain={-10.0}:{-2.0}, latex-, samples =350] plot(\x, {-3*(\x)/5 - 7});
	\draw[thick, color=blue, domain={-2.0}:{5.0}, samples =350] plot(\x, {9 - 2*((\x) - 1)^2/5});
	\draw[thick, color=blue, domain={5.0}:{10.0}, -latex, samples =350] plot(\x, {6 - 3*(\x)/5});
		\draw[fill=black] (-2,-29/5) circle (5pt);
		\draw[fill=white] (-2,27/5) circle (5pt);
		\draw[fill=white] (5,13/5) circle (5pt);
		\draw[fill=black] (5,3) circle (5pt);
\end{tikzpicture}

Download \(\LaTeX\)

\begin{question}Graph the function $f(x)=\begin{cases} - \frac{3 x}{5} - 7,& x \leq -2\\ 9 - \frac{2 \left(x - 1\right)^{2}}{5},& -2 < x < 5\\ 6 - \frac{3 x}{5},& x \geq 5 \\ \end{cases}$\newline
\begin{tikzpicture}[font=\Large, scale=.4]
	\draw[very thick, color=blue, opacity=0.3, xstep=1, ystep=1] (-10,-10) grid (10,10);
	\draw[latex-latex, very thick] (-10.4,0)--(10.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-10.4)--(0,10.4) node[above]{$y$};
	\foreach \x in { -10,-8,...,10 }{
		\pgfmathsetmacro{\xtick}{\x != 0 ? "\x" : ""}
		\draw (\x, .2) -- (\x,-.2) node[below]{$\xtick$};
		}
	\foreach \y in { -10,-8,...,10 }{
		\pgfmathsetmacro{\ytick}{\y != 0 ? "\y" : ""}
		\draw (.2, \y) -- (-.2, \y) node[left]{$\ytick$};
		}
\end{tikzpicture}

    \soln{0cm}{The graph has three parts. It is a line on $(-\infty, -2]$, a parabola on $(-2,5)$, and a line on $[5, \infty)$.  Graphing each part gives:\newline
\begin{tikzpicture}[font=\Large, scale=.4]
	\draw[very thick, color=blue, opacity=0.3, xstep=1, ystep=1] (-10,-10) grid (10,10);
	\draw[latex-latex, very thick] (-10.4,0)--(10.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-10.4)--(0,10.4) node[above]{$y$};
	\foreach \x in { -10,-8,...,10 }{
		\pgfmathsetmacro{\xtick}{\x != 0 ? "\x" : ""}
		\draw (\x, .2) -- (\x,-.2) node[below]{$\xtick$};
		}
	\foreach \y in { -10,-8,...,10 }{
		\pgfmathsetmacro{\ytick}{\y != 0 ? "\y" : ""}
		\draw (.2, \y) -- (-.2, \y) node[left]{$\ytick$};
		}
	\draw[thick, color=blue, domain={-10.0}:{-2.0}, latex-, samples =350] plot(\x, {-3*(\x)/5 - 7});
	\draw[thick, color=blue, domain={-2.0}:{5.0}, samples =350] plot(\x, {9 - 2*((\x) - 1)^2/5});
	\draw[thick, color=blue, domain={5.0}:{10.0}, -latex, samples =350] plot(\x, {6 - 3*(\x)/5});
		\draw[fill=black] (-2,-29/5) circle (5pt);
		\draw[fill=white] (-2,27/5) circle (5pt);
		\draw[fill=white] (5,13/5) circle (5pt);
		\draw[fill=black] (5,3) circle (5pt);
\end{tikzpicture}
}

\end{question}

Download Question and Solution Environment\(\LaTeX\)
\documentclass{article}
\usepackage{tikz}
\usepackage{amsmath}
\usepackage[margin=2cm]{geometry}
\usepackage{tcolorbox}

\newcounter{ExamNumber}
\newcounter{questioncount}
\stepcounter{questioncount}

\newenvironment{question}{{\noindent\bfseries Question \arabic{questioncount}.}}{\stepcounter{questioncount}}
\renewcommand{\labelenumi}{{\bfseries (\alph{enumi})}}

\newif\ifShowSolution
\newcommand{\soln}[2]{%
\ifShowSolution%
\noindent\begin{tcolorbox}[colframe=blue,title=Solution]#2\end{tcolorbox}\else%
\vspace{#1}%
\fi%
}%
\newcommand{\hideifShowSolution}[1]{%
\ifShowSolution%
%
\else%
#1%
\fi%
}%
\everymath{\displaystyle}
\ShowSolutiontrue

\begin{document}\begin{question}(10pts) The question goes here!
    \soln{9cm}{The solution goes here.}

\end{question}\end{document}
HTML for Canvas
<p> <p>Graph the function  <img class="equation_image" title=" \displaystyle f(x)=\begin{cases} - \frac{3 x}{5} - 7,& x \leq -2\\ 9 - \frac{2 \left(x - 1\right)^{2}}{5},& -2 < x < 5\\ 6 - \frac{3 x}{5},& x \geq 5 \\ \end{cases} " src="/equation_images/%20%5Cdisplaystyle%20f%28x%29%3D%5Cbegin%7Bcases%7D%20-%20%5Cfrac%7B3%20x%7D%7B5%7D%20-%207%2C%26%20x%20%5Cleq%20-2%5C%5C%209%20-%20%5Cfrac%7B2%20%5Cleft%28x%20-%201%5Cright%29%5E%7B2%7D%7D%7B5%7D%2C%26%20-2%20%3C%20x%20%3C%205%5C%5C%206%20-%20%5Cfrac%7B3%20x%7D%7B5%7D%2C%26%20x%20%5Cgeq%205%20%5C%5C%20%5Cend%7Bcases%7D%20" alt="LaTeX:  \displaystyle f(x)=\begin{cases} - \frac{3 x}{5} - 7,& x \leq -2\\ 9 - \frac{2 \left(x - 1\right)^{2}}{5},& -2 < x < 5\\ 6 - \frac{3 x}{5},& x \geq 5 \\ \end{cases} " data-equation-content=" \displaystyle f(x)=\begin{cases} - \frac{3 x}{5} - 7,& x \leq -2\\ 9 - \frac{2 \left(x - 1\right)^{2}}{5},& -2 < x < 5\\ 6 - \frac{3 x}{5},& x \geq 5 \\ \end{cases} " /> <br>
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="262.448pt" height="256.049pt" viewBox="0 0 262.448 256.049" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.796875 -5.859375 C 6.34375 -5.765625 6.171875 -5.421875 6.171875 -5.15625 C 6.171875 -4.8125 6.4375 -4.6875 6.640625 -4.6875 C 7.078125 -4.6875 7.375 -5.0625 7.375 -5.453125 C 7.375 -6.046875 6.6875 -6.328125 6.078125 -6.328125 C 5.203125 -6.328125 4.71875 -5.46875 4.59375 -5.1875 C 4.265625 -6.265625 3.375 -6.328125 3.109375 -6.328125 C 1.65625 -6.328125 0.875 -4.453125 0.875 -4.125 C 0.875 -4.078125 0.9375 -4 1.03125 -4 C 1.140625 -4 1.171875 -4.09375 1.203125 -4.140625 C 1.6875 -5.734375 2.65625 -6.03125 3.0625 -6.03125 C 3.71875 -6.03125 3.84375 -5.4375 3.84375 -5.09375 C 3.84375 -4.78125 3.765625 -4.453125 3.578125 -3.765625 L 3.09375 -1.796875 C 2.890625 -0.9375 2.46875 -0.140625 1.703125 -0.140625 C 1.640625 -0.140625 1.28125 -0.140625 0.96875 -0.328125 C 1.484375 -0.4375 1.609375 -0.859375 1.609375 -1.03125 C 1.609375 -1.3125 1.390625 -1.484375 1.125 -1.484375 C 0.78125 -1.484375 0.40625 -1.1875 0.40625 -0.734375 C 0.40625 -0.125 1.078125 0.140625 1.6875 0.140625 C 2.375 0.140625 2.875 -0.40625 3.171875 -0.984375 C 3.40625 -0.140625 4.109375 0.140625 4.640625 0.140625 C 6.109375 0.140625 6.890625 -1.734375 6.890625 -2.046875 C 6.890625 -2.125 6.828125 -2.1875 6.734375 -2.1875 C 6.609375 -2.1875 6.59375 -2.109375 6.5625 -2 C 6.171875 -0.734375 5.328125 -0.140625 4.6875 -0.140625 C 4.1875 -0.140625 3.921875 -0.515625 3.921875 -1.109375 C 3.921875 -1.421875 3.96875 -1.65625 4.203125 -2.59375 L 4.703125 -4.546875 C 4.921875 -5.40625 5.40625 -6.03125 6.0625 -6.03125 C 6.09375 -6.03125 6.5 -6.03125 6.796875 -5.859375 Z M 6.796875 -5.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.765625 1.609375 C 3.390625 2.15625 2.828125 2.640625 2.125 2.640625 C 1.953125 2.640625 1.265625 2.609375 1.046875 1.953125 C 1.09375 1.96875 1.15625 1.96875 1.1875 1.96875 C 1.625 1.96875 1.90625 1.59375 1.90625 1.265625 C 1.90625 0.9375 1.640625 0.8125 1.421875 0.8125 C 1.1875 0.8125 0.6875 0.984375 0.6875 1.6875 C 0.6875 2.421875 1.3125 2.921875 2.125 2.921875 C 3.5625 2.921875 5 1.609375 5.40625 0.015625 L 6.8125 -5.578125 C 6.828125 -5.65625 6.859375 -5.734375 6.859375 -5.828125 C 6.859375 -6.03125 6.6875 -6.1875 6.46875 -6.1875 C 6.34375 -6.1875 6.03125 -6.125 5.921875 -5.6875 L 4.859375 -1.484375 C 4.796875 -1.21875 4.796875 -1.1875 4.671875 -1.03125 C 4.390625 -0.625 3.921875 -0.140625 3.234375 -0.140625 C 2.421875 -0.140625 2.359375 -0.9375 2.359375 -1.3125 C 2.359375 -2.140625 2.734375 -3.234375 3.125 -4.28125 C 3.28125 -4.6875 3.375 -4.890625 3.375 -5.171875 C 3.375 -5.78125 2.9375 -6.328125 2.234375 -6.328125 C 0.921875 -6.328125 0.390625 -4.25 0.390625 -4.125 C 0.390625 -4.078125 0.4375 -4 0.546875 -4 C 0.671875 -4 0.6875 -4.0625 0.75 -4.265625 C 1.09375 -5.46875 1.640625 -6.03125 2.1875 -6.03125 C 2.328125 -6.03125 2.5625 -6.03125 2.5625 -5.5625 C 2.5625 -5.1875 2.40625 -4.78125 2.1875 -4.234375 C 1.484375 -2.359375 1.484375 -1.875 1.484375 -1.53125 C 1.484375 -0.171875 2.46875 0.140625 3.1875 0.140625 C 3.59375 0.140625 4.109375 0.015625 4.625 -0.515625 L 4.640625 -0.5 C 4.421875 0.34375 4.28125 0.90625 3.765625 1.609375 Z M 3.765625 1.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 9.453125 -3.296875 C 9.703125 -3.296875 9.953125 -3.296875 9.953125 -3.578125 C 9.953125 -3.875 9.703125 -3.875 9.453125 -3.875 L 1.6875 -3.875 C 1.453125 -3.875 1.1875 -3.875 1.1875 -3.578125 C 1.1875 -3.296875 1.453125 -3.296875 1.6875 -3.296875 Z M 9.453125 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 4.125 -9.1875 C 4.125 -9.53125 4.125 -9.53125 3.84375 -9.53125 C 3.5 -9.15625 2.78125 -8.625 1.3125 -8.625 L 1.3125 -8.203125 C 1.640625 -8.203125 2.359375 -8.203125 3.140625 -8.578125 L 3.140625 -1.109375 C 3.140625 -0.59375 3.09375 -0.421875 1.84375 -0.421875 L 1.390625 -0.421875 L 1.390625 0 C 1.78125 -0.03125 3.171875 -0.03125 3.640625 -0.03125 C 4.109375 -0.03125 5.5 -0.03125 5.875 0 L 5.875 -0.421875 L 5.4375 -0.421875 C 4.171875 -0.421875 4.125 -0.59375 4.125 -1.109375 Z M 4.125 -9.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 6.421875 -4.59375 C 6.421875 -5.78125 6.359375 -6.9375 5.84375 -8.03125 C 5.25 -9.21875 4.21875 -9.53125 3.515625 -9.53125 C 2.6875 -9.53125 1.65625 -9.125 1.140625 -7.9375 C 0.734375 -7.03125 0.59375 -6.140625 0.59375 -4.59375 C 0.59375 -3.203125 0.6875 -2.15625 1.203125 -1.140625 C 1.765625 -0.046875 2.75 0.296875 3.5 0.296875 C 4.75 0.296875 5.46875 -0.4375 5.875 -1.28125 C 6.390625 -2.359375 6.421875 -3.765625 6.421875 -4.59375 Z M 3.5 0.015625 C 3.046875 0.015625 2.109375 -0.25 1.84375 -1.8125 C 1.671875 -2.671875 1.671875 -3.765625 1.671875 -4.765625 C 1.671875 -5.9375 1.671875 -7 1.90625 -7.84375 C 2.15625 -8.8125 2.890625 -9.25 3.5 -9.25 C 4.046875 -9.25 4.875 -8.921875 5.15625 -7.6875 C 5.328125 -6.875 5.328125 -5.734375 5.328125 -4.765625 C 5.328125 -3.796875 5.328125 -2.71875 5.171875 -1.84375 C 4.90625 -0.265625 4 0.015625 3.5 0.015625 Z M 3.5 0.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.28125 -5.171875 C 4.984375 -5.5625 6.03125 -6.21875 6.03125 -7.4375 C 6.03125 -8.671875 4.828125 -9.53125 3.515625 -9.53125 C 2.09375 -9.53125 0.96875 -8.484375 0.96875 -7.1875 C 0.96875 -6.703125 1.125 -6.203125 1.515625 -5.71875 C 1.671875 -5.53125 1.6875 -5.515625 2.703125 -4.8125 C 1.3125 -4.171875 0.59375 -3.21875 0.59375 -2.171875 C 0.59375 -0.640625 2.03125 0.296875 3.5 0.296875 C 5.09375 0.296875 6.421875 -0.875 6.421875 -2.375 C 6.421875 -3.84375 5.390625 -4.484375 4.28125 -5.171875 Z M 2.328125 -6.46875 C 2.140625 -6.59375 1.5625 -6.96875 1.5625 -7.671875 C 1.5625 -8.609375 2.53125 -9.1875 3.5 -9.1875 C 4.53125 -9.1875 5.453125 -8.453125 5.453125 -7.421875 C 5.453125 -6.546875 4.8125 -5.84375 3.984375 -5.375 Z M 3 -4.625 L 4.734375 -3.484375 C 5.109375 -3.234375 5.765625 -2.796875 5.765625 -1.921875 C 5.765625 -0.828125 4.65625 -0.09375 3.515625 -0.09375 C 2.296875 -0.09375 1.25 -0.96875 1.25 -2.171875 C 1.25 -3.28125 2.0625 -4.1875 3 -4.625 Z M 3 -4.625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 1.765625 -4.984375 C 1.765625 -8.625 3.53125 -9.1875 4.296875 -9.1875 C 4.8125 -9.1875 5.328125 -9.03125 5.609375 -8.609375 C 5.4375 -8.609375 4.890625 -8.609375 4.890625 -8.015625 C 4.890625 -7.703125 5.109375 -7.4375 5.484375 -7.4375 C 5.84375 -7.4375 6.078125 -7.640625 6.078125 -8.0625 C 6.078125 -8.8125 5.53125 -9.53125 4.28125 -9.53125 C 2.484375 -9.53125 0.59375 -7.6875 0.59375 -4.53125 C 0.59375 -0.59375 2.3125 0.296875 3.53125 0.296875 C 5.09375 0.296875 6.421875 -1.0625 6.421875 -2.921875 C 6.421875 -4.828125 5.09375 -6.109375 3.65625 -6.109375 C 2.375 -6.109375 1.90625 -5 1.765625 -4.609375 Z M 3.53125 -0.09375 C 2.625 -0.09375 2.1875 -0.890625 2.0625 -1.1875 C 1.9375 -1.5625 1.796875 -2.265625 1.796875 -3.265625 C 1.796875 -4.40625 2.3125 -5.828125 3.59375 -5.828125 C 4.390625 -5.828125 4.8125 -5.296875 5.015625 -4.8125 C 5.25 -4.28125 5.25 -3.5625 5.25 -2.9375 C 5.25 -2.203125 5.25 -1.5625 4.984375 -1.015625 C 4.625 -0.328125 4.109375 -0.09375 3.53125 -0.09375 Z M 3.53125 -0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 5.171875 -9.34375 C 5.171875 -9.609375 5.171875 -9.6875 4.984375 -9.6875 C 4.859375 -9.6875 4.8125 -9.6875 4.703125 -9.515625 L 0.390625 -2.8125 L 0.390625 -2.390625 L 4.15625 -2.390625 L 4.15625 -1.09375 C 4.15625 -0.5625 4.125 -0.421875 3.078125 -0.421875 L 2.796875 -0.421875 L 2.796875 0 C 3.125 -0.03125 4.265625 -0.03125 4.65625 -0.03125 C 5.0625 -0.03125 6.203125 -0.03125 6.546875 0 L 6.546875 -0.421875 L 6.25 -0.421875 C 5.21875 -0.421875 5.171875 -0.5625 5.171875 -1.09375 L 5.171875 -2.390625 L 6.625 -2.390625 L 6.625 -2.8125 L 5.171875 -2.8125 Z M 4.234375 -8.21875 L 4.234375 -2.8125 L 0.75 -2.8125 Z M 4.234375 -8.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 6.3125 -2.40625 L 6 -2.40625 C 5.953125 -2.171875 5.84375 -1.375 5.6875 -1.140625 C 5.59375 -1.015625 4.78125 -1.015625 4.34375 -1.015625 L 1.6875 -1.015625 C 2.078125 -1.34375 2.953125 -2.265625 3.328125 -2.609375 C 5.515625 -4.625 6.3125 -5.359375 6.3125 -6.78125 C 6.3125 -8.4375 5 -9.53125 3.34375 -9.53125 C 1.671875 -9.53125 0.703125 -8.125 0.703125 -6.890625 C 0.703125 -6.15625 1.328125 -6.15625 1.375 -6.15625 C 1.671875 -6.15625 2.046875 -6.375 2.046875 -6.828125 C 2.046875 -7.234375 1.78125 -7.5 1.375 -7.5 C 1.25 -7.5 1.21875 -7.5 1.171875 -7.484375 C 1.453125 -8.46875 2.21875 -9.125 3.15625 -9.125 C 4.375 -9.125 5.125 -8.109375 5.125 -6.78125 C 5.125 -5.5625 4.421875 -4.5 3.59375 -3.578125 L 0.703125 -0.34375 L 0.703125 0 L 5.9375 0 Z M 6.3125 -2.40625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M -113.385125 -113.383812 L 113.384406 -113.383812 M -113.385125 -102.047875 L 113.384406 -102.047875 M -113.385125 -90.708031 L 113.384406 -90.708031 M -113.385125 -79.368187 L 113.384406 -79.368187 M -113.385125 -68.03225 L 113.384406 -68.03225 M -113.385125 -56.692406 L 113.384406 -56.692406 M -113.385125 -45.352562 L 113.384406 -45.352562 M -113.385125 -34.016625 L 113.384406 -34.016625 M -113.385125 -22.676781 L 113.384406 -22.676781 M -113.385125 -11.336937 L 113.384406 -11.336937 M -113.385125 -0.001 L 113.384406 -0.001 M -113.385125 11.338844 L 113.384406 11.338844 M -113.385125 22.678688 L 113.384406 22.678688 M -113.385125 34.014625 L 113.384406 34.014625 M -113.385125 45.354469 L 113.384406 45.354469 M -113.385125 56.694313 L 113.384406 56.694313 M -113.385125 68.03025 L 113.384406 68.03025 M -113.385125 79.370094 L 113.384406 79.370094 M -113.385125 90.709938 L 113.384406 90.709938 M -113.385125 102.045875 L 113.384406 102.045875 M -113.385125 113.381813 L 113.384406 113.381813 M -113.385125 -113.383812 L -113.385125 113.385719 M -102.045281 -113.383812 L -102.045281 113.385719 M -90.709344 -113.383812 L -90.709344 113.385719 M -79.3695 -113.383812 L -79.3695 113.385719 M -68.029656 -113.383812 L -68.029656 113.385719 M -56.693719 -113.383812 L -56.693719 113.385719 M -45.353875 -113.383812 L -45.353875 113.385719 M -34.014031 -113.383812 L -34.014031 113.385719 M -22.678094 -113.383812 L -22.678094 113.385719 M -11.33825 -113.383812 L -11.33825 113.385719 M 0.00159375 -113.383812 L 0.00159375 113.385719 M 11.337531 -113.383812 L 11.337531 113.385719 M 22.677375 -113.383812 L 22.677375 113.385719 M 34.017219 -113.383812 L 34.017219 113.385719 M 45.353156 -113.383812 L 45.353156 113.385719 M 56.693 -113.383812 L 56.693 113.385719 M 68.032844 -113.383812 L 68.032844 113.385719 M 79.368781 -113.383812 L 79.368781 113.385719 M 90.708625 -113.383812 L 90.708625 113.385719 M 102.048469 -113.383812 L 102.048469 113.385719 M 113.3805 -113.383812 L 113.3805 113.385719 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -112.182 -0.001 L 112.181281 -0.001 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 11.386719 134.125 C 13.085938 134.441406 15.847656 135.398438 17.761719 136.515625 L 17.761719 131.734375 C 15.847656 132.847656 13.085938 133.804688 11.386719 134.125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 247.226562 134.125 C 245.527344 133.804688 242.765625 132.847656 240.851562 131.734375 L 240.851562 136.515625 C 242.765625 135.398438 245.527344 134.441406 247.226562 134.125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="251.145" y="137.212"/>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00159375 -112.180687 L 0.00159375 112.182594 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.308594 252.042969 C 129.625 250.34375 130.582031 247.582031 131.699219 245.667969 L 126.914062 245.667969 C 128.03125 247.582031 128.988281 250.34375 129.308594 252.042969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.308594 16.203125 C 128.988281 17.902344 128.03125 20.667969 126.914062 22.578125 L 131.699219 22.578125 C 130.582031 20.667969 129.625 17.902344 129.308594 16.203125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-2" x="125.625" y="9.497"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -113.385125 2.268531 L -113.385125 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="3.32" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="14.479" y="149.157"/>
  <use xlink:href="#glyph2-2" x="21.5029" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -90.709344 2.268531 L -90.709344 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="29.509" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="40.667" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -68.029656 2.268531 L -68.029656 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="52.186" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="63.344" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -45.353875 2.268531 L -45.353875 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="74.863" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="86.021" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -22.678094 2.268531 L -22.678094 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="97.54" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="108.698" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00159375 2.268531 L 0.00159375 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.677375 2.268531 L 22.677375 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="148.472" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 45.353156 2.268531 L 45.353156 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="171.149" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.032844 2.268531 L 68.032844 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="193.826" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.708625 2.268531 L 90.708625 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="216.503" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.384406 2.268531 L 113.384406 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="235.668" y="149.157"/>
  <use xlink:href="#glyph2-2" x="242.6919" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -113.383812 L -2.267938 -113.383812 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="98.314" y="251.533"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="109.473" y="251.533"/>
  <use xlink:href="#glyph2-2" x="116.4969" y="251.533"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -90.708031 L -2.267938 -90.708031 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="228.856"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="116.496" y="228.856"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -68.03225 L -2.267938 -68.03225 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="206.179"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="116.496" y="206.179"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -45.352562 L -2.267938 -45.352562 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="183.503"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="116.496" y="183.503"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -22.676781 L -2.267938 -22.676781 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="160.826"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="116.496" y="160.826"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -0.001 L -2.267938 -0.001 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 22.678688 L -2.267938 22.678688 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="116.496" y="116.07"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 45.354469 L -2.267938 45.354469 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="116.496" y="93.393"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 68.03025 L -2.267938 68.03025 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="116.496" y="70.716"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 90.709938 L -2.267938 90.709938 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="116.496" y="48.039"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 113.385719 L -2.267938 113.385719 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="109.473" y="25.363"/>
  <use xlink:href="#glyph2-2" x="116.4969" y="25.363"/>
</g>
</g>
</svg>
</p> </p>
HTML for Canvas
<p> <p>The graph has three parts. It is a line on  <img class="equation_image" title=" \displaystyle (-\infty, -2] " src="/equation_images/%20%5Cdisplaystyle%20%28-%5Cinfty%2C%20-2%5D%20" alt="LaTeX:  \displaystyle (-\infty, -2] " data-equation-content=" \displaystyle (-\infty, -2] " /> , a parabola on  <img class="equation_image" title=" \displaystyle (-2,5) " src="/equation_images/%20%5Cdisplaystyle%20%28-2%2C5%29%20" alt="LaTeX:  \displaystyle (-2,5) " data-equation-content=" \displaystyle (-2,5) " /> , and a line on  <img class="equation_image" title=" \displaystyle [5, \infty) " src="/equation_images/%20%5Cdisplaystyle%20%5B5%2C%20%5Cinfty%29%20" alt="LaTeX:  \displaystyle [5, \infty) " data-equation-content=" \displaystyle [5, \infty) " /> .  Graphing each part gives:<br>
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="262.448pt" height="256.049pt" viewBox="0 0 262.448 256.049" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.796875 -5.859375 C 6.34375 -5.765625 6.171875 -5.421875 6.171875 -5.15625 C 6.171875 -4.8125 6.4375 -4.6875 6.640625 -4.6875 C 7.078125 -4.6875 7.375 -5.0625 7.375 -5.453125 C 7.375 -6.046875 6.6875 -6.328125 6.078125 -6.328125 C 5.203125 -6.328125 4.71875 -5.46875 4.59375 -5.1875 C 4.265625 -6.265625 3.375 -6.328125 3.109375 -6.328125 C 1.65625 -6.328125 0.875 -4.453125 0.875 -4.125 C 0.875 -4.078125 0.9375 -4 1.03125 -4 C 1.140625 -4 1.171875 -4.09375 1.203125 -4.140625 C 1.6875 -5.734375 2.65625 -6.03125 3.0625 -6.03125 C 3.71875 -6.03125 3.84375 -5.4375 3.84375 -5.09375 C 3.84375 -4.78125 3.765625 -4.453125 3.578125 -3.765625 L 3.09375 -1.796875 C 2.890625 -0.9375 2.46875 -0.140625 1.703125 -0.140625 C 1.640625 -0.140625 1.28125 -0.140625 0.96875 -0.328125 C 1.484375 -0.4375 1.609375 -0.859375 1.609375 -1.03125 C 1.609375 -1.3125 1.390625 -1.484375 1.125 -1.484375 C 0.78125 -1.484375 0.40625 -1.1875 0.40625 -0.734375 C 0.40625 -0.125 1.078125 0.140625 1.6875 0.140625 C 2.375 0.140625 2.875 -0.40625 3.171875 -0.984375 C 3.40625 -0.140625 4.109375 0.140625 4.640625 0.140625 C 6.109375 0.140625 6.890625 -1.734375 6.890625 -2.046875 C 6.890625 -2.125 6.828125 -2.1875 6.734375 -2.1875 C 6.609375 -2.1875 6.59375 -2.109375 6.5625 -2 C 6.171875 -0.734375 5.328125 -0.140625 4.6875 -0.140625 C 4.1875 -0.140625 3.921875 -0.515625 3.921875 -1.109375 C 3.921875 -1.421875 3.96875 -1.65625 4.203125 -2.59375 L 4.703125 -4.546875 C 4.921875 -5.40625 5.40625 -6.03125 6.0625 -6.03125 C 6.09375 -6.03125 6.5 -6.03125 6.796875 -5.859375 Z M 6.796875 -5.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.765625 1.609375 C 3.390625 2.15625 2.828125 2.640625 2.125 2.640625 C 1.953125 2.640625 1.265625 2.609375 1.046875 1.953125 C 1.09375 1.96875 1.15625 1.96875 1.1875 1.96875 C 1.625 1.96875 1.90625 1.59375 1.90625 1.265625 C 1.90625 0.9375 1.640625 0.8125 1.421875 0.8125 C 1.1875 0.8125 0.6875 0.984375 0.6875 1.6875 C 0.6875 2.421875 1.3125 2.921875 2.125 2.921875 C 3.5625 2.921875 5 1.609375 5.40625 0.015625 L 6.8125 -5.578125 C 6.828125 -5.65625 6.859375 -5.734375 6.859375 -5.828125 C 6.859375 -6.03125 6.6875 -6.1875 6.46875 -6.1875 C 6.34375 -6.1875 6.03125 -6.125 5.921875 -5.6875 L 4.859375 -1.484375 C 4.796875 -1.21875 4.796875 -1.1875 4.671875 -1.03125 C 4.390625 -0.625 3.921875 -0.140625 3.234375 -0.140625 C 2.421875 -0.140625 2.359375 -0.9375 2.359375 -1.3125 C 2.359375 -2.140625 2.734375 -3.234375 3.125 -4.28125 C 3.28125 -4.6875 3.375 -4.890625 3.375 -5.171875 C 3.375 -5.78125 2.9375 -6.328125 2.234375 -6.328125 C 0.921875 -6.328125 0.390625 -4.25 0.390625 -4.125 C 0.390625 -4.078125 0.4375 -4 0.546875 -4 C 0.671875 -4 0.6875 -4.0625 0.75 -4.265625 C 1.09375 -5.46875 1.640625 -6.03125 2.1875 -6.03125 C 2.328125 -6.03125 2.5625 -6.03125 2.5625 -5.5625 C 2.5625 -5.1875 2.40625 -4.78125 2.1875 -4.234375 C 1.484375 -2.359375 1.484375 -1.875 1.484375 -1.53125 C 1.484375 -0.171875 2.46875 0.140625 3.1875 0.140625 C 3.59375 0.140625 4.109375 0.015625 4.625 -0.515625 L 4.640625 -0.5 C 4.421875 0.34375 4.28125 0.90625 3.765625 1.609375 Z M 3.765625 1.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 9.453125 -3.296875 C 9.703125 -3.296875 9.953125 -3.296875 9.953125 -3.578125 C 9.953125 -3.875 9.703125 -3.875 9.453125 -3.875 L 1.6875 -3.875 C 1.453125 -3.875 1.1875 -3.875 1.1875 -3.578125 C 1.1875 -3.296875 1.453125 -3.296875 1.6875 -3.296875 Z M 9.453125 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 4.125 -9.1875 C 4.125 -9.53125 4.125 -9.53125 3.84375 -9.53125 C 3.5 -9.15625 2.78125 -8.625 1.3125 -8.625 L 1.3125 -8.203125 C 1.640625 -8.203125 2.359375 -8.203125 3.140625 -8.578125 L 3.140625 -1.109375 C 3.140625 -0.59375 3.09375 -0.421875 1.84375 -0.421875 L 1.390625 -0.421875 L 1.390625 0 C 1.78125 -0.03125 3.171875 -0.03125 3.640625 -0.03125 C 4.109375 -0.03125 5.5 -0.03125 5.875 0 L 5.875 -0.421875 L 5.4375 -0.421875 C 4.171875 -0.421875 4.125 -0.59375 4.125 -1.109375 Z M 4.125 -9.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 6.421875 -4.59375 C 6.421875 -5.78125 6.359375 -6.9375 5.84375 -8.03125 C 5.25 -9.21875 4.21875 -9.53125 3.515625 -9.53125 C 2.6875 -9.53125 1.65625 -9.125 1.140625 -7.9375 C 0.734375 -7.03125 0.59375 -6.140625 0.59375 -4.59375 C 0.59375 -3.203125 0.6875 -2.15625 1.203125 -1.140625 C 1.765625 -0.046875 2.75 0.296875 3.5 0.296875 C 4.75 0.296875 5.46875 -0.4375 5.875 -1.28125 C 6.390625 -2.359375 6.421875 -3.765625 6.421875 -4.59375 Z M 3.5 0.015625 C 3.046875 0.015625 2.109375 -0.25 1.84375 -1.8125 C 1.671875 -2.671875 1.671875 -3.765625 1.671875 -4.765625 C 1.671875 -5.9375 1.671875 -7 1.90625 -7.84375 C 2.15625 -8.8125 2.890625 -9.25 3.5 -9.25 C 4.046875 -9.25 4.875 -8.921875 5.15625 -7.6875 C 5.328125 -6.875 5.328125 -5.734375 5.328125 -4.765625 C 5.328125 -3.796875 5.328125 -2.71875 5.171875 -1.84375 C 4.90625 -0.265625 4 0.015625 3.5 0.015625 Z M 3.5 0.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.28125 -5.171875 C 4.984375 -5.5625 6.03125 -6.21875 6.03125 -7.4375 C 6.03125 -8.671875 4.828125 -9.53125 3.515625 -9.53125 C 2.09375 -9.53125 0.96875 -8.484375 0.96875 -7.1875 C 0.96875 -6.703125 1.125 -6.203125 1.515625 -5.71875 C 1.671875 -5.53125 1.6875 -5.515625 2.703125 -4.8125 C 1.3125 -4.171875 0.59375 -3.21875 0.59375 -2.171875 C 0.59375 -0.640625 2.03125 0.296875 3.5 0.296875 C 5.09375 0.296875 6.421875 -0.875 6.421875 -2.375 C 6.421875 -3.84375 5.390625 -4.484375 4.28125 -5.171875 Z M 2.328125 -6.46875 C 2.140625 -6.59375 1.5625 -6.96875 1.5625 -7.671875 C 1.5625 -8.609375 2.53125 -9.1875 3.5 -9.1875 C 4.53125 -9.1875 5.453125 -8.453125 5.453125 -7.421875 C 5.453125 -6.546875 4.8125 -5.84375 3.984375 -5.375 Z M 3 -4.625 L 4.734375 -3.484375 C 5.109375 -3.234375 5.765625 -2.796875 5.765625 -1.921875 C 5.765625 -0.828125 4.65625 -0.09375 3.515625 -0.09375 C 2.296875 -0.09375 1.25 -0.96875 1.25 -2.171875 C 1.25 -3.28125 2.0625 -4.1875 3 -4.625 Z M 3 -4.625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 1.765625 -4.984375 C 1.765625 -8.625 3.53125 -9.1875 4.296875 -9.1875 C 4.8125 -9.1875 5.328125 -9.03125 5.609375 -8.609375 C 5.4375 -8.609375 4.890625 -8.609375 4.890625 -8.015625 C 4.890625 -7.703125 5.109375 -7.4375 5.484375 -7.4375 C 5.84375 -7.4375 6.078125 -7.640625 6.078125 -8.0625 C 6.078125 -8.8125 5.53125 -9.53125 4.28125 -9.53125 C 2.484375 -9.53125 0.59375 -7.6875 0.59375 -4.53125 C 0.59375 -0.59375 2.3125 0.296875 3.53125 0.296875 C 5.09375 0.296875 6.421875 -1.0625 6.421875 -2.921875 C 6.421875 -4.828125 5.09375 -6.109375 3.65625 -6.109375 C 2.375 -6.109375 1.90625 -5 1.765625 -4.609375 Z M 3.53125 -0.09375 C 2.625 -0.09375 2.1875 -0.890625 2.0625 -1.1875 C 1.9375 -1.5625 1.796875 -2.265625 1.796875 -3.265625 C 1.796875 -4.40625 2.3125 -5.828125 3.59375 -5.828125 C 4.390625 -5.828125 4.8125 -5.296875 5.015625 -4.8125 C 5.25 -4.28125 5.25 -3.5625 5.25 -2.9375 C 5.25 -2.203125 5.25 -1.5625 4.984375 -1.015625 C 4.625 -0.328125 4.109375 -0.09375 3.53125 -0.09375 Z M 3.53125 -0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 5.171875 -9.34375 C 5.171875 -9.609375 5.171875 -9.6875 4.984375 -9.6875 C 4.859375 -9.6875 4.8125 -9.6875 4.703125 -9.515625 L 0.390625 -2.8125 L 0.390625 -2.390625 L 4.15625 -2.390625 L 4.15625 -1.09375 C 4.15625 -0.5625 4.125 -0.421875 3.078125 -0.421875 L 2.796875 -0.421875 L 2.796875 0 C 3.125 -0.03125 4.265625 -0.03125 4.65625 -0.03125 C 5.0625 -0.03125 6.203125 -0.03125 6.546875 0 L 6.546875 -0.421875 L 6.25 -0.421875 C 5.21875 -0.421875 5.171875 -0.5625 5.171875 -1.09375 L 5.171875 -2.390625 L 6.625 -2.390625 L 6.625 -2.8125 L 5.171875 -2.8125 Z M 4.234375 -8.21875 L 4.234375 -2.8125 L 0.75 -2.8125 Z M 4.234375 -8.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 6.3125 -2.40625 L 6 -2.40625 C 5.953125 -2.171875 5.84375 -1.375 5.6875 -1.140625 C 5.59375 -1.015625 4.78125 -1.015625 4.34375 -1.015625 L 1.6875 -1.015625 C 2.078125 -1.34375 2.953125 -2.265625 3.328125 -2.609375 C 5.515625 -4.625 6.3125 -5.359375 6.3125 -6.78125 C 6.3125 -8.4375 5 -9.53125 3.34375 -9.53125 C 1.671875 -9.53125 0.703125 -8.125 0.703125 -6.890625 C 0.703125 -6.15625 1.328125 -6.15625 1.375 -6.15625 C 1.671875 -6.15625 2.046875 -6.375 2.046875 -6.828125 C 2.046875 -7.234375 1.78125 -7.5 1.375 -7.5 C 1.25 -7.5 1.21875 -7.5 1.171875 -7.484375 C 1.453125 -8.46875 2.21875 -9.125 3.15625 -9.125 C 4.375 -9.125 5.125 -8.109375 5.125 -6.78125 C 5.125 -5.5625 4.421875 -4.5 3.59375 -3.578125 L 0.703125 -0.34375 L 0.703125 0 L 5.9375 0 Z M 6.3125 -2.40625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M -113.385125 -113.383812 L 113.384406 -113.383812 M -113.385125 -102.047875 L 113.384406 -102.047875 M -113.385125 -90.708031 L 113.384406 -90.708031 M -113.385125 -79.368187 L 113.384406 -79.368187 M -113.385125 -68.03225 L 113.384406 -68.03225 M -113.385125 -56.692406 L 113.384406 -56.692406 M -113.385125 -45.352562 L 113.384406 -45.352562 M -113.385125 -34.016625 L 113.384406 -34.016625 M -113.385125 -22.676781 L 113.384406 -22.676781 M -113.385125 -11.336937 L 113.384406 -11.336937 M -113.385125 -0.001 L 113.384406 -0.001 M -113.385125 11.338844 L 113.384406 11.338844 M -113.385125 22.678688 L 113.384406 22.678688 M -113.385125 34.014625 L 113.384406 34.014625 M -113.385125 45.354469 L 113.384406 45.354469 M -113.385125 56.694313 L 113.384406 56.694313 M -113.385125 68.03025 L 113.384406 68.03025 M -113.385125 79.370094 L 113.384406 79.370094 M -113.385125 90.709938 L 113.384406 90.709938 M -113.385125 102.045875 L 113.384406 102.045875 M -113.385125 113.381813 L 113.384406 113.381813 M -113.385125 -113.383812 L -113.385125 113.385719 M -102.045281 -113.383812 L -102.045281 113.385719 M -90.709344 -113.383812 L -90.709344 113.385719 M -79.3695 -113.383812 L -79.3695 113.385719 M -68.029656 -113.383812 L -68.029656 113.385719 M -56.693719 -113.383812 L -56.693719 113.385719 M -45.353875 -113.383812 L -45.353875 113.385719 M -34.014031 -113.383812 L -34.014031 113.385719 M -22.678094 -113.383812 L -22.678094 113.385719 M -11.33825 -113.383812 L -11.33825 113.385719 M 0.00159375 -113.383812 L 0.00159375 113.385719 M 11.337531 -113.383812 L 11.337531 113.385719 M 22.677375 -113.383812 L 22.677375 113.385719 M 34.017219 -113.383812 L 34.017219 113.385719 M 45.353156 -113.383812 L 45.353156 113.385719 M 56.693 -113.383812 L 56.693 113.385719 M 68.032844 -113.383812 L 68.032844 113.385719 M 79.368781 -113.383812 L 79.368781 113.385719 M 90.708625 -113.383812 L 90.708625 113.385719 M 102.048469 -113.383812 L 102.048469 113.385719 M 113.3805 -113.383812 L 113.3805 113.385719 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -112.182 -0.001 L 112.181281 -0.001 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 11.386719 134.125 C 13.085938 134.441406 15.847656 135.398438 17.761719 136.515625 L 17.761719 131.734375 C 15.847656 132.847656 13.085938 133.804688 11.386719 134.125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 247.226562 134.125 C 245.527344 133.804688 242.765625 132.847656 240.851562 131.734375 L 240.851562 136.515625 C 242.765625 135.398438 245.527344 134.441406 247.226562 134.125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="251.145" y="137.212"/>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00159375 -112.180687 L 0.00159375 112.182594 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.308594 252.042969 C 129.625 250.34375 130.582031 247.582031 131.699219 245.667969 L 126.914062 245.667969 C 128.03125 247.582031 128.988281 250.34375 129.308594 252.042969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.308594 16.203125 C 128.988281 17.902344 128.03125 20.667969 126.914062 22.578125 L 131.699219 22.578125 C 130.582031 20.667969 129.625 17.902344 129.308594 16.203125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-2" x="125.625" y="9.497"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -113.385125 2.268531 L -113.385125 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="3.32" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="14.479" y="149.157"/>
  <use xlink:href="#glyph2-2" x="21.5029" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -90.709344 2.268531 L -90.709344 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="29.509" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="40.667" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -68.029656 2.268531 L -68.029656 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="52.186" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="63.344" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -45.353875 2.268531 L -45.353875 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="74.863" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="86.021" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -22.678094 2.268531 L -22.678094 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="97.54" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="108.698" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00159375 2.268531 L 0.00159375 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.677375 2.268531 L 22.677375 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="148.472" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 45.353156 2.268531 L 45.353156 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="171.149" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.032844 2.268531 L 68.032844 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="193.826" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.708625 2.268531 L 90.708625 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="216.503" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.384406 2.268531 L 113.384406 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="235.668" y="149.157"/>
  <use xlink:href="#glyph2-2" x="242.6919" y="149.157"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -113.383812 L -2.267938 -113.383812 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="98.314" y="251.533"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="109.473" y="251.533"/>
  <use xlink:href="#glyph2-2" x="116.4969" y="251.533"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -90.708031 L -2.267938 -90.708031 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="228.856"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="116.496" y="228.856"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -68.03225 L -2.267938 -68.03225 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="206.179"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="116.496" y="206.179"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -45.352562 L -2.267938 -45.352562 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="183.503"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="116.496" y="183.503"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -22.676781 L -2.267938 -22.676781 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="160.826"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="116.496" y="160.826"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 -0.001 L -2.267938 -0.001 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 22.678688 L -2.267938 22.678688 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="116.496" y="116.07"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 45.354469 L -2.267938 45.354469 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="116.496" y="93.393"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 68.03025 L -2.267938 68.03025 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="116.496" y="70.716"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 90.709938 L -2.267938 90.709938 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="116.496" y="48.039"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.267219 113.385719 L -2.267938 113.385719 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="109.473" y="25.363"/>
  <use xlink:href="#glyph2-2" x="116.4969" y="25.363"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M -109.389031 -13.739281 L -113.127313 -11.493187 L -112.865594 -11.649437 L -112.607781 -11.805687 L -112.084344 -12.118187 L -111.826531 -12.274437 L -111.564813 -12.430687 L -111.307 -12.586937 L -111.045281 -12.743187 L -110.787469 -12.899437 L -110.52575 -13.055687 L -110.267938 -13.208031 L -110.006219 -13.364281 L -109.748406 -13.520531 L -109.486688 -13.676781 L -109.228875 -13.833031 L -108.967156 -13.989281 L -108.709344 -14.145531 L -108.447625 -14.301781 L -108.189813 -14.458031 L -107.928094 -14.614281 L -107.670281 -14.770531 L -107.408563 -14.922875 L -107.146844 -15.079125 L -106.889031 -15.235375 L -106.627313 -15.391625 L -106.3695 -15.547875 L -106.107781 -15.704125 L -105.849969 -15.860375 L -105.58825 -16.016625 L -105.330438 -16.172875 L -105.068719 -16.329125 L -104.810906 -16.485375 L -104.549188 -16.641625 L -104.291375 -16.793969 L -104.029656 -16.950219 L -103.771844 -17.106469 L -103.510125 -17.262719 L -103.252313 -17.418969 L -102.990594 -17.575219 L -102.732781 -17.731469 L -102.471063 -17.887719 L -102.21325 -18.043969 L -101.689813 -18.356469 L -101.432 -18.512719 L -101.170281 -18.665062 L -100.912469 -18.821312 L -100.65075 -18.977562 L -100.392938 -19.133812 L -100.131219 -19.290062 L -99.873406 -19.446312 L -99.611688 -19.602562 L -99.353875 -19.758812 L -99.092156 -19.915062 L -98.834344 -20.071312 L -98.572625 -20.227562 L -98.314813 -20.383812 L -98.053094 -20.536156 L -97.795281 -20.692406 L -97.533563 -20.848656 L -97.27575 -21.004906 L -96.752313 -21.317406 L -96.4945 -21.473656 L -96.232781 -21.629906 L -95.974969 -21.786156 L -95.71325 -21.942406 L -95.455438 -22.098656 L -95.193719 -22.251 L -94.935906 -22.40725 L -94.674188 -22.5635 L -94.416375 -22.71975 L -94.154656 -22.876 L -93.896844 -23.03225 L -93.635125 -23.1885 L -93.377313 -23.34475 L -93.115594 -23.501 L -92.857781 -23.65725 L -92.596063 -23.8135 L -92.33825 -23.96975 L -92.076531 -24.122094 L -91.814813 -24.278344 L -91.557 -24.434594 L -91.295281 -24.590844 L -91.037469 -24.747094 L -90.77575 -24.903344 L -90.517938 -25.059594 L -90.256219 -25.215844 L -89.998406 -25.372094 L -89.736688 -25.528344 L -89.478875 -25.684594 L -89.217156 -25.840844 L -88.959344 -25.993187 L -88.697625 -26.149437 L -88.439813 -26.305687 L -88.178094 -26.461937 L -87.920281 -26.618187 L -87.658563 -26.774437 L -87.40075 -26.930687 L -87.139031 -27.086937 L -86.881219 -27.243187 L -86.357781 -27.555687 L -86.099969 -27.711937 L -85.83825 -27.864281 L -85.580438 -28.020531 L -85.318719 -28.176781 L -85.060906 -28.333031 L -84.799188 -28.489281 L -84.541375 -28.645531 L -84.279656 -28.801781 L -84.021844 -28.958031 L -83.760125 -29.114281 L -83.502313 -29.270531 L -83.240594 -29.426781 L -82.982781 -29.583031 L -82.721063 -29.735375 L -82.46325 -29.891625 L -82.201531 -30.047875 L -81.943719 -30.204125 L -81.420281 -30.516625 L -81.162469 -30.672875 L -80.90075 -30.829125 L -80.642938 -30.985375 L -80.381219 -31.141625 L -80.123406 -31.297875 L -79.861688 -31.450219 L -79.603875 -31.606469 L -79.342156 -31.762719 L -79.084344 -31.918969 L -78.822625 -32.075219 L -78.564813 -32.231469 L -78.303094 -32.387719 L -78.045281 -32.543969 L -77.783563 -32.700219 L -77.52575 -32.856469 L -77.264031 -33.012719 L -77.006219 -33.168969 L -76.7445 -33.321312 L -76.482781 -33.477562 L -76.224969 -33.633812 L -75.96325 -33.790062 L -75.705438 -33.946312 L -75.443719 -34.102562 L -75.185906 -34.258812 L -74.924188 -34.415062 L -74.666375 -34.571312 L -74.404656 -34.727562 L -74.146844 -34.883812 L -73.885125 -35.040062 L -73.627313 -35.192406 L -73.365594 -35.348656 L -73.107781 -35.504906 L -72.846063 -35.661156 L -72.58825 -35.817406 L -72.326531 -35.973656 L -72.068719 -36.129906 L -71.807 -36.286156 L -71.549188 -36.442406 L -71.02575 -36.754906 L -70.767938 -36.911156 L -70.506219 -37.0635 L -70.248406 -37.21975 L -69.986688 -37.376 L -69.728875 -37.53225 L -69.467156 -37.6885 L -69.209344 -37.84475 L -68.947625 -38.001 L -68.689813 -38.15725 L -68.428094 -38.3135 L -68.170281 -38.46975 L -67.908563 -38.626 L -67.65075 -38.78225 L -67.389031 -38.934594 L -67.131219 -39.090844 L -66.8695 -39.247094 L -66.611688 -39.403344 L -66.08825 -39.715844 L -65.830438 -39.872094 L -65.568719 -40.028344 L -65.310906 -40.184594 L -65.049188 -40.340844 L -64.791375 -40.497094 L -64.529656 -40.649437 L -64.271844 -40.805687 L -64.010125 -40.961937 L -63.752313 -41.118187 L -63.490594 -41.274437 L -63.232781 -41.430687 L -62.971063 -41.586937 L -62.71325 -41.743187 L -62.451531 -41.899437 L -62.193719 -42.055687 L -61.932 -42.211937 L -61.674188 -42.368187 L -61.412469 -42.520531 L -61.15075 -42.676781 L -60.892938 -42.833031 L -60.631219 -42.989281 L -60.373406 -43.145531 L -60.111688 -43.301781 L -59.853875 -43.458031 L -59.592156 -43.614281 L -59.334344 -43.770531 L -59.072625 -43.926781 L -58.814813 -44.083031 L -58.553094 -44.239281 L -58.295281 -44.391625 L -58.033563 -44.547875 L -57.77575 -44.704125 L -57.514031 -44.860375 L -57.256219 -45.016625 L -56.9945 -45.172875 L -56.736688 -45.329125 L -56.474969 -45.485375 L -56.217156 -45.641625 L -55.693719 -45.954125 L -55.435906 -46.110375 L -55.174188 -46.262719 L -54.916375 -46.418969 L -54.654656 -46.575219 L -54.396844 -46.731469 L -54.135125 -46.887719 L -53.877313 -47.043969 L -53.615594 -47.200219 L -53.357781 -47.356469 L -53.096063 -47.512719 L -52.83825 -47.668969 L -52.576531 -47.825219 L -52.318719 -47.977562 L -52.057 -48.133812 L -51.799188 -48.290062 L -51.537469 -48.446312 L -51.279656 -48.602562 L -50.756219 -48.915062 L -50.498406 -49.071312 L -50.236688 -49.227562 L -49.978875 -49.383812 L -49.717156 -49.540062 L -49.459344 -49.696312 L -49.197625 -49.848656 L -48.939813 -50.004906 L -48.678094 -50.161156 L -48.420281 -50.317406 L -48.158563 -50.473656 L -47.90075 -50.629906 L -47.639031 -50.786156 L -47.381219 -50.942406 L -47.1195 -51.098656 L -46.861688 -51.254906 L -46.599969 -51.411156 L -46.342156 -51.567406 L -46.080438 -51.71975 L -45.818719 -51.876 L -45.560906 -52.03225 L -45.299188 -52.1885 L -45.041375 -52.34475 L -44.779656 -52.501 L -44.521844 -52.65725 L -44.260125 -52.8135 L -44.002313 -52.96975 L -43.740594 -53.126 L -43.482781 -53.28225 L -43.221063 -53.4385 L -42.96325 -53.590844 L -42.701531 -53.747094 L -42.443719 -53.903344 L -42.182 -54.059594 L -41.924188 -54.215844 L -41.662469 -54.372094 L -41.404656 -54.528344 L -41.142938 -54.684594 L -40.885125 -54.840844 L -40.361688 -55.153344 L -40.103875 -55.309594 L -39.842156 -55.461937 L -39.584344 -55.618187 L -39.322625 -55.774437 L -39.064813 -55.930687 L -38.803094 -56.086937 L -38.545281 -56.243187 L -38.283563 -56.399437 L -38.02575 -56.555687 L -37.764031 -56.711937 L -37.506219 -56.868187 L -37.2445 -57.024437 L -36.986688 -57.176781 L -36.724969 -57.333031 L -36.467156 -57.489281 L -36.205438 -57.645531 L -35.947625 -57.801781 L -35.424188 -58.114281 L -35.166375 -58.270531 L -34.904656 -58.426781 L -34.646844 -58.583031 L -34.385125 -58.739281 L -34.127313 -58.895531 L -33.865594 -59.051781 L -33.607781 -59.204125 L -33.346063 -59.360375 L -33.08825 -59.516625 L -32.826531 -59.672875 L -32.568719 -59.829125 L -32.307 -59.985375 L -32.049188 -60.141625 L -31.787469 -60.297875 L -31.529656 -60.454125 L -31.267938 -60.610375 L -31.010125 -60.766625 L -30.748406 -60.918969 L -30.486688 -61.075219 L -30.228875 -61.231469 L -29.967156 -61.387719 L -29.709344 -61.543969 L -29.447625 -61.700219 L -29.189813 -61.856469 L -28.928094 -62.012719 L -28.670281 -62.168969 L -28.408563 -62.325219 L -28.15075 -62.481469 L -27.889031 -62.637719 L -27.631219 -62.790062 L -27.3695 -62.946312 L -27.111688 -63.102562 L -26.849969 -63.258812 L -26.592156 -63.415062 L -26.330438 -63.571312 L -26.072625 -63.727562 L -25.810906 -63.883812 L -25.553094 -64.040062 L -25.029656 -64.352562 L -24.771844 -64.508812 L -24.510125 -64.661156 L -24.252313 -64.817406 L -23.990594 -64.973656 L -23.732781 -65.129906 L -23.471063 -65.286156 L -23.21325 -65.442406 L -22.951531 -65.598656 L -22.693719 -65.754906 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 15.921875 145.460938 C 16.972656 146.394531 18.496094 148.21875 19.363281 149.796875 L 21.363281 146.464844 C 19.5625 146.441406 17.238281 145.953125 15.921875 145.460938 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M -22.678094 61.229469 L -22.451531 61.772438 L -22.221063 62.3115 L -21.9945 62.850563 L -21.767938 63.381813 L -21.314813 64.4365 L -21.084344 64.959938 L -20.631219 65.991188 L -20.404656 66.502906 L -20.178094 67.010719 L -19.947625 67.514625 L -19.721063 68.014625 L -19.4945 68.510719 L -19.267938 69.002906 L -19.041375 69.491188 L -18.810906 69.975563 L -18.584344 70.459938 L -18.131219 71.413063 L -17.904656 71.881813 L -17.674188 72.350563 L -17.221063 73.272438 L -16.9945 73.729469 L -16.767938 74.182594 L -16.537469 74.631813 L -16.310906 75.077125 L -16.084344 75.518531 L -15.857781 75.956031 L -15.631219 76.389625 L -15.40075 76.819313 L -15.174188 77.249 L -14.721063 78.09275 L -14.4945 78.506813 L -14.264031 78.920875 L -13.810906 79.733375 L -13.584344 80.135719 L -13.357781 80.534156 L -13.127313 80.928688 L -12.90075 81.319313 L -12.674188 81.706031 L -12.447625 82.088844 L -12.221063 82.46775 L -11.990594 82.84275 L -11.764031 83.21775 L -11.310906 83.952125 L -11.084344 84.3115 L -10.853875 84.670875 L -10.40075 85.374 L -10.174188 85.721656 L -9.947625 86.065406 L -9.717156 86.40525 L -9.490594 86.741188 L -9.264031 87.073219 L -9.037469 87.401344 L -8.810906 87.725563 L -8.580438 88.045875 L -8.353875 88.366188 L -7.90075 88.991188 L -7.674188 89.295875 L -7.443719 89.600563 L -6.990594 90.194313 L -6.764031 90.487281 L -6.537469 90.776344 L -6.307 91.0615 L -6.080438 91.34275 L -5.853875 91.620094 L -5.627313 91.893531 L -5.40075 92.163063 L -5.170281 92.428688 L -4.943719 92.694313 L -4.490594 93.209938 L -4.264031 93.459938 L -4.033563 93.709938 L -3.580438 94.194313 L -3.353875 94.432594 L -3.127313 94.666969 L -2.670281 95.124 L -2.443719 95.346656 L -2.217156 95.565406 L -1.990594 95.78025 L -1.760125 95.991188 L -1.533563 96.202125 L -1.080438 96.608375 L -0.853875 96.803688 L -0.623406 96.999 L -0.170281 97.374 L 0.0562812 97.557594 L 0.282844 97.737281 L 0.513312 97.913063 L 0.739875 98.084938 L 0.966437 98.252906 L 1.193 98.416969 L 1.419562 98.577125 L 1.650031 98.733375 L 1.876594 98.889625 L 2.103156 99.038063 L 2.556281 99.327125 L 2.782844 99.46775 L 3.013312 99.600563 L 3.239875 99.733375 L 3.466437 99.862281 L 3.693 99.987281 L 3.919562 100.104469 L 4.150031 100.221656 L 4.603156 100.448219 L 4.829719 100.553688 L 5.056281 100.65525 L 5.28675 100.752906 L 5.513312 100.850563 L 5.966437 101.03025 L 6.193 101.112281 L 6.423469 101.194313 L 6.650031 101.272438 L 6.876594 101.346656 L 7.329719 101.479469 L 7.560187 101.541969 L 7.78675 101.600563 L 8.239875 101.709938 L 8.466437 101.756813 L 8.696906 101.799781 L 8.923469 101.84275 L 9.376594 101.913063 L 9.603156 101.940406 L 9.833625 101.96775 L 10.060187 101.991188 L 10.513312 102.022438 L 10.739875 102.034156 L 10.970344 102.041969 L 11.196906 102.045875 L 11.423469 102.045875 L 11.876594 102.038063 L 12.107062 102.026344 L 12.560187 101.995094 L 13.013312 101.948219 L 13.243781 101.920875 L 13.696906 101.850563 L 13.923469 101.8115 L 14.150031 101.768531 L 14.3805 101.721656 L 14.607062 101.670875 L 14.833625 101.616188 L 15.060187 101.557594 L 15.28675 101.495094 L 15.517219 101.432594 L 15.970344 101.291969 L 16.423469 101.135719 L 16.653937 101.049781 L 16.8805 100.963844 L 17.107062 100.874 L 17.333625 100.78025 L 17.560187 100.682594 L 17.790656 100.581031 L 18.017219 100.475563 L 18.243781 100.366188 L 18.470344 100.252906 L 18.696906 100.135719 L 18.927375 100.014625 L 19.153937 99.893531 L 19.607062 99.635719 L 19.833625 99.499 L 20.064094 99.362281 L 20.290656 99.221656 L 20.743781 98.924781 L 20.970344 98.772438 L 21.200812 98.616188 L 21.427375 98.456031 L 21.653937 98.291969 L 22.107062 97.956031 L 22.337531 97.78025 L 22.790656 97.420875 L 23.243781 97.045875 L 23.47425 96.854469 L 23.927375 96.456031 L 24.153937 96.252906 L 24.3805 96.045875 L 24.610969 95.834938 L 24.837531 95.620094 L 25.064094 95.401344 L 25.290656 95.178688 L 25.517219 94.952125 L 25.747687 94.725563 L 25.97425 94.491188 L 26.427375 94.014625 L 26.653937 93.772438 L 26.884406 93.522438 L 27.110969 93.272438 L 27.337531 93.018531 L 27.790656 92.495094 L 28.021125 92.229469 L 28.47425 91.690406 L 28.700812 91.413063 L 28.927375 91.131813 L 29.157844 90.846656 L 29.384406 90.5615 L 29.837531 89.975563 L 30.064094 89.674781 L 30.294562 89.374 L 30.747687 88.756813 L 30.97425 88.444313 L 31.200812 88.127906 L 31.431281 87.807594 L 31.657844 87.483375 L 31.884406 87.15525 L 32.110969 86.823219 L 32.337531 86.487281 L 32.568 86.151344 L 33.021125 85.463844 L 33.47425 84.760719 L 33.704719 84.401344 L 33.931281 84.041969 L 34.157844 83.678688 L 34.384406 83.3115 L 34.610969 82.9365 L 34.841437 82.5615 L 35.294562 81.803688 L 35.521125 81.416969 L 35.747687 81.026344 L 35.978156 80.631813 L 36.204719 80.237281 L 36.657844 79.432594 L 37.110969 78.612281 L 37.341437 78.194313 L 37.568 77.776344 L 37.794562 77.354469 L 38.021125 76.928688 L 38.247687 76.499 L 38.478156 76.065406 L 38.704719 75.627906 L 38.931281 75.1865 L 39.384406 74.295875 L 39.614875 73.84275 L 39.841437 73.389625 L 40.294562 72.46775 L 40.521125 71.999 L 40.751594 71.53025 L 40.978156 71.057594 L 41.431281 70.096656 L 41.657844 69.612281 L 41.888312 69.124 L 42.341437 68.139625 L 42.568 67.639625 L 42.794562 67.135719 L 43.025031 66.631813 L 43.251594 66.120094 L 43.704719 65.088844 L 43.931281 64.569313 L 44.16175 64.041969 L 44.388312 63.514625 L 44.614875 62.983375 L 44.841437 62.448219 L 45.068 61.909156 L 45.298469 61.366188 L 45.525031 60.819313 L 45.751594 60.268531 L 45.978156 59.713844 L 46.204719 59.15525 L 46.435187 58.596656 L 46.888312 57.463844 L 47.341437 56.315406 L 47.571906 55.737281 L 48.025031 54.565406 L 48.251594 53.975563 L 48.478156 53.381813 L 48.708625 52.784156 L 48.935187 52.182594 L 49.388312 50.971656 L 49.614875 50.358375 L 49.845344 49.741188 L 50.071906 49.124 L 50.525031 47.874 L 50.751594 47.241188 L 50.982062 46.608375 L 51.208625 45.971656 L 51.435187 45.331031 L 51.888312 44.034156 L 52.118781 43.381813 L 52.571906 42.069313 L 52.798469 41.40525 L 53.025031 40.737281 L 53.2555 40.065406 L 53.482062 39.393531 L 53.935187 38.034156 L 54.16175 37.350563 L 54.392219 36.659156 L 54.618781 35.96775 L 54.845344 35.272438 L 55.071906 34.573219 L 55.298469 33.870094 L 55.528937 33.163063 L 55.7555 32.452125 L 55.982062 31.737281 L 56.208625 31.018531 L 56.435187 30.295875 L 56.665656 29.573219 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 56.693 34.014625 L 56.853156 33.916969 L 57.181281 33.721656 L 57.341437 33.627906 L 57.5055 33.53025 L 57.665656 33.432594 L 57.829719 33.334938 L 57.989875 33.237281 L 58.153937 33.139625 L 58.314094 33.041969 L 58.478156 32.944313 L 58.638312 32.846656 L 58.966437 32.651344 L 59.126594 32.553688 L 59.290656 32.456031 L 59.450812 32.362281 L 59.614875 32.264625 L 59.775031 32.166969 L 59.939094 32.069313 L 60.09925 31.971656 L 60.263312 31.874 L 60.423469 31.776344 L 60.751594 31.581031 L 60.91175 31.483375 L 61.075812 31.385719 L 61.235969 31.288063 L 61.400031 31.190406 L 61.560187 31.09275 L 61.72425 30.999 L 61.884406 30.901344 L 62.048469 30.803688 L 62.208625 30.706031 L 62.53675 30.510719 L 62.696906 30.413063 L 62.860969 30.315406 L 63.021125 30.21775 L 63.185187 30.120094 L 63.345344 30.022438 L 63.509406 29.924781 L 63.669562 29.827125 L 63.833625 29.729469 L 63.993781 29.635719 L 64.321906 29.440406 L 64.482062 29.34275 L 64.646125 29.245094 L 64.806281 29.147438 L 64.970344 29.049781 L 65.1305 28.952125 L 65.294562 28.854469 L 65.454719 28.756813 L 65.618781 28.659156 L 65.778937 28.5615 L 65.943 28.463844 L 66.107062 28.370094 L 66.267219 28.272438 L 66.431281 28.174781 L 66.591437 28.077125 L 66.7555 27.979469 L 66.915656 27.881813 L 67.079719 27.784156 L 67.239875 27.6865 L 67.403937 27.588844 L 67.564094 27.491188 L 67.892219 27.295875 L 68.052375 27.198219 L 68.216437 27.100563 L 68.376594 27.006813 L 68.540656 26.909156 L 68.700812 26.8115 L 68.864875 26.713844 L 69.025031 26.616188 L 69.189094 26.518531 L 69.34925 26.420875 L 69.677375 26.225563 L 69.837531 26.127906 L 70.001594 26.03025 L 70.16175 25.932594 L 70.325812 25.834938 L 70.485969 25.737281 L 70.650031 25.643531 L 70.810187 25.545875 L 70.97425 25.448219 L 71.134406 25.350563 L 71.462531 25.15525 L 71.622687 25.057594 L 71.78675 24.959938 L 71.946906 24.862281 L 72.110969 24.764625 L 72.271125 24.666969 L 72.435187 24.569313 L 72.595344 24.471656 L 72.759406 24.374 L 72.919562 24.28025 L 73.247687 24.084938 L 73.407844 23.987281 L 73.571906 23.889625 L 73.732062 23.791969 L 73.896125 23.694313 L 74.056281 23.596656 L 74.220344 23.499 L 74.3805 23.401344 L 74.544562 23.303688 L 74.704719 23.206031 L 74.868781 23.108375 L 75.032844 23.014625 L 75.193 22.916969 L 75.357062 22.819313 L 75.517219 22.721656 L 75.681281 22.624 L 75.841437 22.526344 L 76.0055 22.428688 L 76.165656 22.331031 L 76.329719 22.233375 L 76.489875 22.135719 L 76.818 21.940406 L 76.978156 21.84275 L 77.142219 21.745094 L 77.302375 21.651344 L 77.466437 21.553688 L 77.626594 21.456031 L 77.790656 21.358375 L 77.950812 21.260719 L 78.114875 21.163063 L 78.275031 21.065406 L 78.603156 20.870094 L 78.763312 20.772438 L 78.927375 20.674781 L 79.087531 20.577125 L 79.251594 20.479469 L 79.41175 20.381813 L 79.575812 20.288063 L 79.735969 20.190406 L 79.900031 20.09275 L 80.060187 19.995094 L 80.388312 19.799781 L 80.548469 19.702125 L 80.712531 19.604469 L 80.872687 19.506813 L 81.03675 19.409156 L 81.196906 19.3115 L 81.360969 19.213844 L 81.521125 19.116188 L 81.685187 19.018531 L 81.845344 18.924781 L 82.173469 18.729469 L 82.333625 18.631813 L 82.497687 18.534156 L 82.657844 18.4365 L 82.821906 18.338844 L 82.982062 18.241188 L 83.146125 18.143531 L 83.306281 18.045875 L 83.470344 17.948219 L 83.6305 17.850563 L 83.794562 17.752906 L 83.958625 17.659156 L 84.118781 17.5615 L 84.282844 17.463844 L 84.443 17.366188 L 84.607062 17.268531 L 84.767219 17.170875 L 84.931281 17.073219 L 85.091437 16.975563 L 85.2555 16.877906 L 85.415656 16.78025 L 85.743781 16.584938 L 85.903937 16.487281 L 86.068 16.389625 L 86.228156 16.295875 L 86.392219 16.198219 L 86.552375 16.100563 L 86.716437 16.002906 L 86.876594 15.90525 L 87.040656 15.807594 L 87.200812 15.709938 L 87.528937 15.514625 L 87.689094 15.416969 L 87.853156 15.319313 L 88.013312 15.221656 L 88.177375 15.124 L 88.337531 15.026344 L 88.501594 14.932594 L 88.66175 14.834938 L 88.825812 14.737281 L 88.985969 14.639625 L 89.314094 14.444313 L 89.47425 14.346656 L 89.638312 14.249 L 89.798469 14.151344 L 89.962531 14.053688 L 90.122687 13.956031 L 90.28675 13.858375 L 90.446906 13.760719 L 90.610969 13.666969 L 90.771125 13.569313 L 91.09925 13.374 L 91.259406 13.276344 L 91.423469 13.178688 L 91.583625 13.081031 L 91.747687 12.983375 L 91.907844 12.885719 L 92.071906 12.788063 L 92.232062 12.690406 L 92.396125 12.59275 L 92.556281 12.495094 L 92.720344 12.397438 L 92.884406 12.303688 L 93.044562 12.206031 L 93.208625 12.108375 L 93.368781 12.010719 L 93.532844 11.913063 L 93.693 11.815406 L 93.857062 11.71775 L 94.017219 11.620094 L 94.181281 11.522438 L 94.341437 11.424781 L 94.5055 11.327125 L 94.665656 11.229469 L 94.829719 11.131813 L 94.993781 11.038063 L 95.153937 10.940406 L 95.318 10.84275 L 95.478156 10.745094 L 95.642219 10.647438 L 95.802375 10.549781 L 95.966437 10.452125 L 96.126594 10.354469 L 96.290656 10.256813 L 96.450812 10.159156 L 96.778937 9.963844 L 96.939094 9.866188 L 97.103156 9.768531 L 97.263312 9.670875 L 97.427375 9.577125 L 97.587531 9.479469 L 97.751594 9.381813 L 97.91175 9.284156 L 98.075812 9.1865 L 98.235969 9.088844 L 98.564094 8.893531 L 98.72425 8.795875 L 98.888312 8.698219 L 99.048469 8.600563 L 99.212531 8.502906 L 99.372687 8.40525 L 99.53675 8.3115 L 99.696906 8.213844 L 99.860969 8.116188 L 100.021125 8.018531 L 100.34925 7.823219 L 100.509406 7.725563 L 100.673469 7.627906 L 100.833625 7.53025 L 100.997687 7.432594 L 101.157844 7.334938 L 101.321906 7.237281 L 101.482062 7.139625 L 101.646125 7.041969 L 101.806281 6.948219 L 102.134406 6.752906 L 102.294562 6.65525 L 102.458625 6.557594 L 102.618781 6.459938 L 102.782844 6.362281 L 102.943 6.264625 L 103.107062 6.166969 L 103.267219 6.069313 L 103.431281 5.971656 L 103.591437 5.874 L 103.7555 5.776344 L 103.919562 5.682594 L 104.079719 5.584938 L 104.243781 5.487281 L 104.403937 5.389625 L 104.568 5.291969 L 104.728156 5.194313 L 104.892219 5.096656 L 105.052375 4.999 L 105.216437 4.901344 L 105.376594 4.803688 L 105.704719 4.608375 L 105.864875 4.510719 L 106.028937 4.413063 L 106.189094 4.315406 L 106.353156 4.221656 L 106.513312 4.124 L 106.677375 4.026344 L 106.837531 3.928688 L 107.001594 3.831031 L 107.16175 3.733375 L 107.489875 3.538063 L 107.650031 3.440406 L 107.814094 3.34275 L 107.97425 3.245094 L 108.138312 3.147438 L 108.298469 3.049781 L 108.462531 2.956031 L 108.622687 2.858375 L 108.78675 2.760719 L 108.946906 2.663063 L 109.275031 2.46775 L 109.435187 2.370094 L 109.59925 2.272438 L 109.759406 2.174781 L 109.923469 2.077125 L 110.083625 1.979469 L 110.247687 1.881813 L 110.407844 1.784156 L 110.571906 1.6865 L 110.732062 1.59275 L 111.060187 1.397438 L 111.220344 1.299781 L 111.384406 1.202125 L 111.544562 1.104469 L 111.708625 1.006813 L 111.868781 0.909156 L 112.032844 0.8115 L 112.193 0.713844 L 112.357062 0.616188 L 112.517219 0.518531 L 112.681281 0.420875 L 112.845344 0.327125 L 113.0055 0.229469 L 113.169562 0.131813 L 109.333625 2.432594 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.636719 134.089844 C 241.585938 133.15625 240.0625 131.335938 239.195312 129.757812 L 237.195312 133.089844 C 238.996094 133.113281 241.320312 133.601562 242.636719 134.089844 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -20.685906 -65.762719 C -20.685906 -64.661156 -21.576531 -63.770531 -22.678094 -63.770531 C -23.77575 -63.770531 -24.670281 -64.661156 -24.670281 -65.762719 C -24.670281 -66.864281 -23.77575 -67.754906 -22.678094 -67.754906 C -21.576531 -67.754906 -20.685906 -66.864281 -20.685906 -65.762719 Z M -20.685906 -65.762719 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -20.685906 61.229469 C -20.685906 62.327125 -21.576531 63.221656 -22.678094 63.221656 C -23.77575 63.221656 -24.670281 62.327125 -24.670281 61.229469 C -24.670281 60.127906 -23.77575 59.237281 -22.678094 59.237281 C -21.576531 59.237281 -20.685906 60.127906 -20.685906 61.229469 Z M -20.685906 61.229469 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 58.685187 29.479469 C 58.685187 30.581031 57.794562 31.471656 56.693 31.471656 C 55.591437 31.471656 54.700812 30.581031 54.700812 29.479469 C 54.700812 28.377906 55.591437 27.487281 56.693 27.487281 C 57.794562 27.487281 58.685187 28.377906 58.685187 29.479469 Z M 58.685187 29.479469 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 58.685187 34.014625 C 58.685187 35.116188 57.794562 36.006813 56.693 36.006813 C 55.591437 36.006813 54.700812 35.116188 54.700812 34.014625 C 54.700812 32.916969 55.591437 32.022438 56.693 32.022438 C 57.794562 32.022438 58.685187 32.916969 58.685187 34.014625 Z M 58.685187 34.014625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
</g>
</svg>
</p> </p>