\(\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} - 4,& x \leq -3\\ \frac{4 \left(x - 1\right)^{2}}{5} - 9,& -3 < x < 5\\ 6 - \frac{x}{5},& x \geq 5 \\ \end{cases}\)


The graph has three parts. It is a line on \(\displaystyle (-\infty, -3]\), a parabola on \(\displaystyle (-3,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}:{-3.0}, latex-, samples =350] plot(\x, {-3*(\x)/5 - 4});
	\draw[thick, color=blue, domain={-3.0}:{5.0}, samples =350] plot(\x, {4*((\x) - 1)^2/5 - 9});
	\draw[thick, color=blue, domain={5.0}:{10.0}, -latex, samples =350] plot(\x, {6 - (\x)/5});
		\draw[fill=black] (-3,-11/5) circle (5pt);
		\draw[fill=white] (-3,19/5) circle (5pt);
		\draw[fill=white] (5,19/5) circle (5pt);
		\draw[fill=black] (5,5) circle (5pt);
\end{tikzpicture}

Download \(\LaTeX\)

\begin{question}Graph the function $f(x)=\begin{cases} - \frac{3 x}{5} - 4,& x \leq -3\\ \frac{4 \left(x - 1\right)^{2}}{5} - 9,& -3 < x < 5\\ 6 - \frac{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, -3]$, a parabola on $(-3,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}:{-3.0}, latex-, samples =350] plot(\x, {-3*(\x)/5 - 4});
	\draw[thick, color=blue, domain={-3.0}:{5.0}, samples =350] plot(\x, {4*((\x) - 1)^2/5 - 9});
	\draw[thick, color=blue, domain={5.0}:{10.0}, -latex, samples =350] plot(\x, {6 - (\x)/5});
		\draw[fill=black] (-3,-11/5) circle (5pt);
		\draw[fill=white] (-3,19/5) circle (5pt);
		\draw[fill=white] (5,19/5) circle (5pt);
		\draw[fill=black] (5,5) 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} - 4,& x \leq -3\\ \frac{4 \left(x - 1\right)^{2}}{5} - 9,& -3 < x < 5\\ 6 - \frac{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-%204%2C%26%20x%20%5Cleq%20-3%5C%5C%20%5Cfrac%7B4%20%5Cleft%28x%20-%201%5Cright%29%5E%7B2%7D%7D%7B5%7D%20-%209%2C%26%20-3%20%3C%20x%20%3C%205%5C%5C%206%20-%20%5Cfrac%7Bx%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} - 4,& x \leq -3\\ \frac{4 \left(x - 1\right)^{2}}{5} - 9,& -3 < x < 5\\ 6 - \frac{x}{5},& x \geq 5 \\ \end{cases} " data-equation-content=" \displaystyle f(x)=\begin{cases} - \frac{3 x}{5} - 4,& x \leq -3\\ \frac{4 \left(x - 1\right)^{2}}{5} - 9,& -3 < x < 5\\ 6 - \frac{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, -3] " src="/equation_images/%20%5Cdisplaystyle%20%28-%5Cinfty%2C%20-3%5D%20" alt="LaTeX:  \displaystyle (-\infty, -3] " data-equation-content=" \displaystyle (-\infty, -3] " /> , a parabola on  <img class="equation_image" title=" \displaystyle (-3,5) " src="/equation_images/%20%5Cdisplaystyle%20%28-3%2C5%29%20" alt="LaTeX:  \displaystyle (-3,5) " data-equation-content=" \displaystyle (-3,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 20.276344 L -113.158563 22.541969 L -112.932 22.40525 L -112.701531 22.268531 L -111.568719 21.584938 L -111.33825 21.448219 L -110.885125 21.174781 L -110.658563 21.041969 L -110.432 20.90525 L -110.201531 20.768531 L -109.295281 20.221656 L -109.064813 20.084938 L -108.158563 19.538063 L -107.928094 19.40525 L -107.021844 18.858375 L -106.791375 18.721656 L -105.885125 18.174781 L -105.654656 18.038063 L -105.201531 17.764625 L -104.974969 17.631813 L -104.748406 17.495094 L -104.517938 17.358375 L -103.611688 16.8115 L -103.381219 16.674781 L -102.474969 16.127906 L -102.2445 15.995094 L -101.33825 15.448219 L -101.107781 15.3115 L -100.201531 14.764625 L -99.971063 14.627906 L -99.517938 14.354469 L -99.291375 14.221656 L -99.064813 14.084938 L -98.834344 13.948219 L -97.928094 13.401344 L -97.697625 13.264625 L -96.791375 12.71775 L -96.560906 12.584938 L -95.654656 12.038063 L -95.424188 11.901344 L -94.517938 11.354469 L -94.287469 11.21775 L -94.060906 11.081031 L -93.834344 10.948219 L -93.381219 10.674781 L -93.15075 10.538063 L -92.2445 9.991188 L -92.014031 9.854469 L -91.107781 9.307594 L -90.877313 9.174781 L -89.971063 8.627906 L -89.740594 8.491188 L -88.834344 7.944313 L -88.603875 7.807594 L -88.377313 7.670875 L -88.15075 7.538063 L -87.697625 7.264625 L -87.467156 7.127906 L -86.560906 6.581031 L -86.330438 6.444313 L -85.424188 5.897438 L -85.193719 5.764625 L -84.287469 5.21775 L -84.057 5.081031 L -83.15075 4.534156 L -82.920281 4.397438 L -82.693719 4.260719 L -82.467156 4.127906 L -82.014031 3.854469 L -81.783563 3.71775 L -80.877313 3.170875 L -80.646844 3.034156 L -79.967156 2.624 L -79.740594 2.491188 L -79.510125 2.354469 L -78.603875 1.807594 L -78.373406 1.670875 L -77.240594 0.987281 L -77.010125 0.854469 L -76.103875 0.307594 L -75.873406 0.170875 L -74.967156 -0.376 L -74.736688 -0.512719 L -74.283563 -0.786156 L -74.057 -0.918969 L -73.830438 -1.055687 L -73.599969 -1.192406 L -72.693719 -1.739281 L -72.46325 -1.876 L -71.557 -2.422875 L -71.326531 -2.555687 L -70.420281 -3.102562 L -70.189813 -3.239281 L -69.283563 -3.786156 L -69.053094 -3.922875 L -68.826531 -4.059594 L -68.599969 -4.192406 L -68.146844 -4.465844 L -67.916375 -4.602562 L -67.010125 -5.149437 L -66.779656 -5.286156 L -65.873406 -5.833031 L -65.642938 -5.965844 L -64.736688 -6.512719 L -64.506219 -6.649437 L -63.599969 -7.196312 L -63.3695 -7.333031 L -63.142938 -7.46975 L -62.916375 -7.602562 L -62.46325 -7.876 L -62.232781 -8.012719 L -61.326531 -8.559594 L -61.096063 -8.696312 L -60.189813 -9.243187 L -59.959344 -9.376 L -59.053094 -9.922875 L -58.822625 -10.059594 L -57.916375 -10.606469 L -57.685906 -10.743187 L -57.459344 -10.879906 L -57.232781 -11.012719 L -56.779656 -11.286156 L -56.549188 -11.422875 L -55.642938 -11.96975 L -55.412469 -12.106469 L -54.732781 -12.516625 L -54.506219 -12.649437 L -54.27575 -12.786156 L -53.3695 -13.333031 L -53.139031 -13.46975 L -52.232781 -14.016625 L -52.002313 -14.153344 L -51.77575 -14.290062 L -51.549188 -14.422875 L -51.096063 -14.696312 L -50.865594 -14.833031 L -49.959344 -15.379906 L -49.728875 -15.516625 L -49.049188 -15.926781 L -48.822625 -16.059594 L -48.592156 -16.196312 L -47.685906 -16.743187 L -47.455438 -16.879906 L -46.549188 -17.426781 L -46.318719 -17.5635 L -46.092156 -17.700219 L -45.865594 -17.833031 L -45.412469 -18.106469 L -45.182 -18.243187 L -44.049188 -18.926781 L -43.818719 -19.0635 L -43.365594 -19.336937 L -43.139031 -19.46975 L -42.912469 -19.606469 L -42.682 -19.743187 L -41.77575 -20.290062 L -41.545281 -20.426781 L -40.639031 -20.973656 L -40.408563 -21.106469 L -39.502313 -21.653344 L -39.271844 -21.790062 L -38.365594 -22.336937 L -38.135125 -22.473656 L -37.682 -22.747094 L -37.455438 -22.879906 L -37.228875 -23.016625 L -36.998406 -23.153344 L -36.092156 -23.700219 L -35.861688 -23.836937 L -34.955438 -24.383812 L -34.724969 -24.516625 L -34.045281 -24.926781 " 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 111.445312 C 16.972656 112.378906 18.496094 114.203125 19.363281 115.777344 L 21.363281 112.449219 C 19.5625 112.425781 17.238281 111.9375 15.921875 111.445312 "/>
<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 -34.014031 43.084938 L -33.756219 41.428688 L -33.4945 39.78025 L -33.236688 38.139625 L -32.974969 36.510719 L -32.717156 34.889625 L -32.455438 33.28025 L -32.197625 31.678688 L -31.935906 30.084938 L -31.678094 28.502906 L -31.416375 26.932594 L -31.158563 25.370094 L -30.896844 23.815406 L -30.639031 22.272438 L -30.377313 20.737281 L -30.1195 19.209938 L -29.857781 17.694313 L -29.596063 16.190406 L -29.33825 14.694313 L -29.076531 13.206031 L -28.818719 11.729469 L -28.557 10.260719 L -28.299188 8.803688 L -28.037469 7.354469 L -27.779656 5.916969 L -27.517938 4.487281 L -27.260125 3.065406 L -26.998406 1.65525 L -26.740594 0.252906 L -26.478875 -1.137719 L -26.221063 -2.520531 L -25.959344 -3.891625 L -25.701531 -5.254906 L -25.439813 -6.606469 L -25.182 -7.954125 L -24.920281 -9.286156 L -24.658563 -10.610375 L -24.40075 -11.926781 L -24.139031 -13.231469 L -23.881219 -14.528344 L -23.6195 -15.817406 L -23.361688 -17.09475 L -23.099969 -18.360375 L -22.842156 -19.618187 L -22.580438 -20.868187 L -22.322625 -22.106469 L -22.060906 -23.336937 L -21.803094 -24.555687 L -21.541375 -25.766625 L -21.283563 -26.965844 L -21.021844 -28.15725 L -20.764031 -29.340844 L -20.502313 -30.512719 L -20.2445 -31.676781 L -19.982781 -32.829125 L -19.724969 -33.973656 L -19.46325 -35.106469 L -19.201531 -36.231469 L -18.943719 -37.348656 L -18.682 -38.454125 L -18.424188 -39.547875 L -18.162469 -40.637719 L -17.904656 -41.711937 L -17.642938 -42.78225 L -17.385125 -43.836937 L -17.123406 -44.887719 L -16.865594 -45.926781 L -16.603875 -46.954125 L -16.346063 -47.973656 L -16.084344 -48.985375 L -15.826531 -49.985375 L -15.564813 -50.977562 L -15.307 -51.958031 L -15.045281 -52.930687 L -14.787469 -53.895531 L -14.52575 -54.848656 L -14.264031 -55.790062 L -14.006219 -56.727562 L -13.7445 -57.649437 L -13.486688 -58.5635 L -13.224969 -59.46975 L -12.967156 -60.368187 L -12.705438 -61.254906 L -12.447625 -62.129906 L -12.185906 -62.997094 L -11.928094 -63.856469 L -11.666375 -64.704125 L -11.408563 -65.543969 L -11.146844 -66.372094 L -10.889031 -67.192406 L -10.627313 -68.001 L -10.3695 -68.801781 L -10.107781 -69.59475 L -9.849969 -70.376 L -9.58825 -71.149437 L -9.326531 -71.911156 L -9.068719 -72.665062 L -8.807 -73.40725 L -8.549188 -74.141625 L -8.287469 -74.864281 L -8.029656 -75.579125 L -7.767938 -76.286156 L -7.510125 -76.981469 L -7.248406 -77.668969 L -6.990594 -78.34475 L -6.728875 -79.012719 L -6.471063 -79.668969 L -6.209344 -80.317406 L -5.951531 -80.958031 L -5.689813 -81.586937 L -5.432 -82.208031 L -5.170281 -82.817406 L -4.912469 -83.418969 L -4.65075 -84.008812 L -4.392938 -84.590844 L -4.131219 -85.161156 L -3.8695 -85.723656 L -3.611688 -86.278344 L -3.349969 -86.821312 L -3.092156 -87.356469 L -2.572625 -88.395531 L -2.310906 -88.899437 L -2.053094 -89.395531 L -1.791375 -89.879906 L -1.533563 -90.356469 L -1.271844 -90.825219 L -1.014031 -91.28225 L -0.752313 -91.731469 L -0.4945 -92.168969 L -0.232781 -92.598656 L 0.0250312 -93.020531 L 0.28675 -93.430687 L 0.544562 -93.829125 L 0.806281 -94.21975 L 1.068 -94.602562 L 1.325812 -94.973656 L 1.587531 -95.336937 L 1.845344 -95.6885 L 2.107062 -96.03225 L 2.364875 -96.364281 L 2.626594 -96.692406 L 2.884406 -97.004906 L 3.146125 -97.309594 L 3.403937 -97.606469 L 3.665656 -97.891625 L 3.923469 -98.168969 L 4.185187 -98.434594 L 4.443 -98.692406 L 4.704719 -98.942406 L 4.962531 -99.180687 L 5.22425 -99.40725 L 5.482062 -99.629906 L 5.743781 -99.836937 L 6.001594 -100.040062 L 6.263312 -100.231469 L 6.525031 -100.411156 L 6.782844 -100.583031 L 7.044562 -100.747094 L 7.302375 -100.899437 L 7.564094 -101.040062 L 7.821906 -101.176781 L 8.083625 -101.297875 L 8.341437 -101.415062 L 8.603156 -101.520531 L 8.860969 -101.614281 L 9.122687 -101.700219 L 9.3805 -101.778344 L 9.642219 -101.84475 L 9.900031 -101.903344 L 10.16175 -101.950219 L 10.419562 -101.989281 L 10.681281 -102.016625 L 10.939094 -102.036156 L 11.200812 -102.043969 L 11.462531 -102.047875 L 11.720344 -102.036156 L 11.982062 -102.016625 L 12.239875 -101.989281 L 12.501594 -101.950219 L 12.759406 -101.903344 L 13.021125 -101.848656 L 13.278937 -101.78225 L 13.540656 -101.704125 L 13.798469 -101.618187 L 14.060187 -101.524437 L 14.318 -101.418969 L 14.579719 -101.305687 L 14.837531 -101.180687 L 15.09925 -101.047875 L 15.357062 -100.90725 L 15.618781 -100.754906 L 15.876594 -100.59475 L 16.138312 -100.422875 L 16.400031 -100.239281 L 16.657844 -100.051781 L 16.919562 -99.852562 L 17.177375 -99.641625 L 17.439094 -99.422875 L 17.696906 -99.192406 L 17.958625 -98.958031 L 18.216437 -98.708031 L 18.478156 -98.450219 L 18.735969 -98.184594 L 18.997687 -97.90725 L 19.2555 -97.622094 L 19.517219 -97.329125 L 19.775031 -97.024437 L 20.03675 -96.708031 L 20.294562 -96.387719 L 20.556281 -96.051781 L 20.814094 -95.708031 L 21.075812 -95.356469 L 21.333625 -94.997094 L 21.595344 -94.626 L 21.857062 -94.243187 L 22.114875 -93.852562 L 22.376594 -93.454125 L 22.634406 -93.043969 L 22.896125 -92.626 L 23.153937 -92.196312 L 23.415656 -91.758812 L 23.673469 -91.309594 L 23.935187 -90.852562 L 24.193 -90.387719 L 24.454719 -89.911156 L 24.712531 -89.422875 L 24.97425 -88.930687 L 25.232062 -88.422875 L 25.493781 -87.911156 L 25.751594 -87.387719 L 26.013312 -86.852562 L 26.271125 -86.309594 L 26.532844 -85.758812 L 26.794562 -85.196312 L 27.052375 -84.626 L 27.314094 -84.043969 L 27.571906 -83.454125 L 27.833625 -82.852562 L 28.091437 -82.243187 L 28.353156 -81.626 L 28.610969 -80.997094 L 28.872687 -80.356469 L 29.1305 -79.708031 L 29.392219 -79.051781 L 29.650031 -78.387719 L 29.91175 -77.708031 L 30.169562 -77.024437 L 30.431281 -76.329125 L 30.689094 -75.622094 L 30.950812 -74.90725 L 31.208625 -74.184594 L 31.470344 -73.450219 L 31.732062 -72.708031 L 31.989875 -71.958031 L 32.251594 -71.192406 L 32.509406 -70.422875 L 32.771125 -69.641625 L 33.028937 -68.852562 L 33.290656 -68.051781 L 33.548469 -67.239281 L 33.810187 -66.422875 L 34.068 -65.59475 L 34.329719 -64.754906 L 34.587531 -63.90725 L 34.84925 -63.047875 L 35.107062 -62.184594 L 35.368781 -61.305687 L 35.626594 -60.418969 L 35.888312 -59.524437 L 36.146125 -58.618187 L 36.407844 -57.704125 L 36.665656 -56.78225 L 36.927375 -55.848656 L 37.189094 -54.903344 L 37.446906 -53.950219 L 37.708625 -52.989281 L 37.966437 -52.016625 L 38.228156 -51.036156 L 38.485969 -50.047875 L 38.747687 -49.047875 L 39.0055 -48.036156 L 39.267219 -47.016625 L 39.525031 -45.989281 L 39.78675 -44.950219 L 40.044562 -43.903344 L 40.306281 -42.84475 L 40.564094 -41.778344 L 40.825812 -40.700219 L 41.083625 -39.614281 L 41.345344 -38.520531 L 41.603156 -37.415062 L 41.864875 -36.297875 L 42.126594 -35.176781 L 42.384406 -34.040062 L 42.646125 -32.899437 L 42.903937 -31.747094 L 43.165656 -30.583031 L 43.423469 -29.411156 L 43.685187 -28.231469 L 43.943 -27.040062 L 44.204719 -25.836937 L 44.462531 -24.629906 L 44.72425 -23.411156 L 44.982062 -22.180687 L 45.243781 -20.942406 L 45.501594 -19.692406 L 45.763312 -18.434594 L 46.021125 -17.168969 L 46.282844 -15.891625 L 46.540656 -14.606469 L 46.802375 -13.309594 L 47.064094 -12.004906 L 47.321906 -10.692406 L 47.583625 -9.368187 L 47.841437 -8.03225 L 48.103156 -6.6885 L 48.360969 -5.336937 L 48.622687 -3.973656 L 48.8805 -2.602562 L 49.142219 -1.21975 L 49.400031 0.170875 L 49.66175 1.569313 L 49.919562 2.979469 L 50.181281 4.401344 L 50.439094 5.831031 L 50.700812 7.268531 L 50.958625 8.71775 L 51.220344 10.174781 L 51.478156 11.639625 L 51.739875 13.116188 L 51.997687 14.604469 L 52.259406 16.100563 L 52.521125 17.604469 L 52.778937 19.120094 L 53.040656 20.643531 L 53.298469 22.178688 L 53.560187 23.721656 L 53.818 25.276344 L 54.079719 26.838844 L 54.337531 28.409156 L 54.59925 29.991188 L 54.857062 31.581031 L 55.118781 33.182594 L 55.376594 34.791969 L 55.638312 36.413063 L 55.896125 38.041969 L 56.157844 39.682594 L 56.415656 41.327125 L 56.677375 42.987281 " 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 56.694313 L 56.853156 56.659156 L 57.181281 56.596656 L 57.341437 56.5615 L 57.5055 56.53025 L 57.665656 56.499 L 57.829719 56.463844 L 57.989875 56.432594 L 58.153937 56.401344 L 58.314094 56.370094 L 58.478156 56.334938 L 58.638312 56.303688 L 58.802375 56.272438 L 58.966437 56.237281 L 59.126594 56.206031 L 59.290656 56.174781 L 59.450812 56.139625 L 59.614875 56.108375 L 59.775031 56.077125 L 59.939094 56.041969 L 60.09925 56.010719 L 60.263312 55.979469 L 60.423469 55.948219 L 60.587531 55.913063 L 60.751594 55.881813 L 60.91175 55.850563 L 61.075812 55.815406 L 61.235969 55.784156 L 61.400031 55.752906 L 61.560187 55.71775 L 61.72425 55.6865 L 61.884406 55.65525 L 62.048469 55.620094 L 62.208625 55.588844 L 62.372687 55.557594 L 62.53675 55.522438 L 62.696906 55.491188 L 62.860969 55.459938 L 63.021125 55.428688 L 63.185187 55.393531 L 63.345344 55.362281 L 63.509406 55.331031 L 63.669562 55.295875 L 63.833625 55.264625 L 63.993781 55.233375 L 64.157844 55.198219 L 64.321906 55.166969 L 64.482062 55.135719 L 64.646125 55.100563 L 64.806281 55.069313 L 64.970344 55.038063 L 65.1305 55.006813 L 65.294562 54.971656 L 65.454719 54.940406 L 65.618781 54.909156 L 65.778937 54.874 L 66.107062 54.8115 L 66.267219 54.776344 L 66.431281 54.745094 L 66.591437 54.713844 L 66.7555 54.678688 L 66.915656 54.647438 L 67.079719 54.616188 L 67.239875 54.584938 L 67.403937 54.549781 L 67.564094 54.518531 L 67.728156 54.487281 L 67.892219 54.452125 L 68.052375 54.420875 L 68.216437 54.389625 L 68.376594 54.354469 L 68.540656 54.323219 L 68.700812 54.291969 L 68.864875 54.256813 L 69.025031 54.225563 L 69.189094 54.194313 L 69.34925 54.163063 L 69.513312 54.127906 L 69.677375 54.096656 L 69.837531 54.065406 L 70.001594 54.03025 L 70.16175 53.999 L 70.325812 53.96775 L 70.485969 53.932594 L 70.650031 53.901344 L 70.810187 53.870094 L 70.97425 53.834938 L 71.134406 53.803688 L 71.462531 53.741188 L 71.622687 53.706031 L 71.78675 53.674781 L 71.946906 53.643531 L 72.110969 53.608375 L 72.271125 53.577125 L 72.435187 53.545875 L 72.595344 53.510719 L 72.759406 53.479469 L 72.919562 53.448219 L 73.083625 53.413063 L 73.247687 53.381813 L 73.407844 53.350563 L 73.571906 53.315406 L 73.732062 53.284156 L 73.896125 53.252906 L 74.056281 53.221656 L 74.220344 53.1865 L 74.3805 53.15525 L 74.544562 53.124 L 74.704719 53.088844 L 75.032844 53.026344 L 75.193 52.991188 L 75.357062 52.959938 L 75.517219 52.928688 L 75.681281 52.893531 L 75.841437 52.862281 L 76.0055 52.831031 L 76.165656 52.799781 L 76.329719 52.764625 L 76.489875 52.733375 L 76.653937 52.702125 L 76.818 52.666969 L 76.978156 52.635719 L 77.142219 52.604469 L 77.302375 52.569313 L 77.466437 52.538063 L 77.626594 52.506813 L 77.790656 52.471656 L 77.950812 52.440406 L 78.114875 52.409156 L 78.275031 52.377906 L 78.439094 52.34275 L 78.603156 52.3115 L 78.763312 52.28025 L 78.927375 52.245094 L 79.087531 52.213844 L 79.251594 52.182594 L 79.41175 52.147438 L 79.575812 52.116188 L 79.735969 52.084938 L 79.900031 52.049781 L 80.060187 52.018531 L 80.388312 51.956031 L 80.548469 51.920875 L 80.712531 51.889625 L 80.872687 51.858375 L 81.03675 51.823219 L 81.196906 51.791969 L 81.360969 51.760719 L 81.521125 51.725563 L 81.685187 51.694313 L 81.845344 51.663063 L 82.009406 51.627906 L 82.173469 51.596656 L 82.333625 51.565406 L 82.497687 51.53025 L 82.657844 51.499 L 82.821906 51.46775 L 82.982062 51.4365 L 83.146125 51.401344 L 83.306281 51.370094 L 83.470344 51.338844 L 83.6305 51.303688 L 83.958625 51.241188 L 84.118781 51.206031 L 84.282844 51.174781 L 84.443 51.143531 L 84.607062 51.108375 L 84.767219 51.077125 L 84.931281 51.045875 L 85.091437 51.014625 L 85.2555 50.979469 L 85.415656 50.948219 L 85.579719 50.916969 L 85.743781 50.881813 L 85.903937 50.850563 L 86.068 50.819313 L 86.228156 50.784156 L 86.392219 50.752906 L 86.552375 50.721656 L 86.716437 50.6865 L 86.876594 50.65525 L 87.040656 50.624 L 87.200812 50.59275 L 87.364875 50.557594 L 87.528937 50.526344 L 87.689094 50.495094 L 87.853156 50.459938 L 88.013312 50.428688 L 88.177375 50.397438 L 88.337531 50.362281 L 88.501594 50.331031 L 88.66175 50.299781 L 88.825812 50.264625 L 88.985969 50.233375 L 89.314094 50.170875 L 89.47425 50.135719 L 89.638312 50.104469 L 89.798469 50.073219 L 89.962531 50.038063 L 90.122687 50.006813 L 90.28675 49.975563 L 90.446906 49.940406 L 90.610969 49.909156 L 90.771125 49.877906 L 90.935187 49.84275 L 91.09925 49.8115 L 91.259406 49.78025 L 91.423469 49.745094 L 91.583625 49.713844 L 91.747687 49.682594 L 91.907844 49.651344 L 92.071906 49.616188 L 92.232062 49.584938 L 92.396125 49.553688 L 92.556281 49.518531 L 92.884406 49.456031 L 93.044562 49.420875 L 93.208625 49.389625 L 93.368781 49.358375 L 93.532844 49.323219 L 93.693 49.291969 L 93.857062 49.260719 L 94.017219 49.229469 L 94.181281 49.194313 L 94.341437 49.163063 L 94.5055 49.131813 L 94.665656 49.096656 L 94.993781 49.034156 L 95.153937 48.999 L 95.318 48.96775 L 95.478156 48.9365 L 95.642219 48.901344 L 95.802375 48.870094 L 95.966437 48.838844 L 96.126594 48.807594 L 96.290656 48.772438 L 96.450812 48.741188 L 96.614875 48.709938 L 96.778937 48.674781 L 96.939094 48.643531 L 97.103156 48.612281 L 97.263312 48.577125 L 97.427375 48.545875 L 97.587531 48.514625 L 97.751594 48.479469 L 97.91175 48.448219 L 98.075812 48.416969 L 98.235969 48.385719 L 98.400031 48.350563 L 98.564094 48.319313 L 98.72425 48.288063 L 98.888312 48.252906 L 99.048469 48.221656 L 99.212531 48.190406 L 99.372687 48.15525 L 99.53675 48.124 L 99.696906 48.09275 L 99.860969 48.057594 L 100.021125 48.026344 L 100.185187 47.995094 L 100.34925 47.959938 L 100.509406 47.928688 L 100.673469 47.897438 L 100.833625 47.866188 L 100.997687 47.831031 L 101.157844 47.799781 L 101.321906 47.768531 L 101.482062 47.733375 L 101.646125 47.702125 L 101.806281 47.670875 L 101.970344 47.635719 L 102.134406 47.604469 L 102.294562 47.573219 L 102.458625 47.538063 L 102.618781 47.506813 L 102.782844 47.475563 L 102.943 47.444313 L 103.107062 47.409156 L 103.267219 47.377906 L 103.431281 47.346656 L 103.591437 47.3115 L 103.919562 47.249 L 104.079719 47.213844 L 104.243781 47.182594 L 104.403937 47.151344 L 104.568 47.116188 L 104.728156 47.084938 L 104.892219 47.053688 L 105.052375 47.022438 L 105.216437 46.987281 L 105.376594 46.956031 L 105.540656 46.924781 L 105.704719 46.889625 L 105.864875 46.858375 L 106.028937 46.827125 L 106.189094 46.791969 L 106.353156 46.760719 L 106.513312 46.729469 L 106.677375 46.694313 L 106.837531 46.663063 L 107.001594 46.631813 L 107.16175 46.600563 L 107.325812 46.565406 L 107.489875 46.534156 L 107.650031 46.502906 L 107.814094 46.46775 L 107.97425 46.4365 L 108.138312 46.40525 L 108.298469 46.370094 L 108.462531 46.338844 L 108.622687 46.307594 L 108.78675 46.272438 L 108.946906 46.241188 L 109.110969 46.209938 L 109.275031 46.174781 L 109.435187 46.143531 L 109.59925 46.112281 L 109.759406 46.081031 L 109.923469 46.045875 L 110.083625 46.014625 L 110.247687 45.983375 L 110.407844 45.948219 L 110.571906 45.916969 L 110.732062 45.885719 L 110.896125 45.850563 L 111.060187 45.819313 L 111.220344 45.788063 L 111.384406 45.752906 L 111.544562 45.721656 L 111.708625 45.690406 L 111.868781 45.659156 L 112.032844 45.624 L 112.193 45.59275 L 112.357062 45.5615 L 112.517219 45.526344 L 112.845344 45.463844 L 113.0055 45.428688 L 113.169562 45.397438 L 108.759406 46.28025 " 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 88.757812 C 241.332031 88.234375 239.285156 87.03125 237.941406 85.835938 L 237.175781 89.644531 C 238.878906 89.0625 241.230469 88.742188 242.636719 88.757812 "/>
<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 -32.021844 -24.946312 C -32.021844 -23.84475 -32.916375 -22.954125 -34.014031 -22.954125 C -35.115594 -22.954125 -36.006219 -23.84475 -36.006219 -24.946312 C -36.006219 -26.043969 -35.115594 -26.9385 -34.014031 -26.9385 C -32.916375 -26.9385 -32.021844 -26.043969 -32.021844 -24.946312 Z M -32.021844 -24.946312 " 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 -32.021844 43.084938 C -32.021844 44.1865 -32.916375 45.077125 -34.014031 45.077125 C -35.115594 45.077125 -36.006219 44.1865 -36.006219 43.084938 C -36.006219 41.987281 -35.115594 41.09275 -34.014031 41.09275 C -32.916375 41.09275 -32.021844 41.987281 -32.021844 43.084938 Z M -32.021844 43.084938 " 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 43.084938 C 58.685187 44.1865 57.794562 45.077125 56.693 45.077125 C 55.591437 45.077125 54.700812 44.1865 54.700812 43.084938 C 54.700812 41.987281 55.591437 41.09275 56.693 41.09275 C 57.794562 41.09275 58.685187 41.987281 58.685187 43.084938 Z M 58.685187 43.084938 " 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 56.694313 C 58.685187 57.791969 57.794562 58.6865 56.693 58.6865 C 55.591437 58.6865 54.700812 57.791969 54.700812 56.694313 C 54.700812 55.59275 55.591437 54.702125 56.693 54.702125 C 57.794562 54.702125 58.685187 55.59275 58.685187 56.694313 Z M 58.685187 56.694313 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
</g>
</svg>
</p> </p>