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


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

Download \(\LaTeX\)

\begin{question}Graph the function $f(x)=\begin{cases} x + 9,& x \leq -3\\ 7 - \frac{3 \left(x - 1\right)^{2}}{5},& -3 < x < 3\\ \frac{x}{5} + 6,& x \geq 3 \\ \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,3)$, and a line on $[3, \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, {(\x) + 9});
	\draw[thick, color=blue, domain={-3.0}:{3.0}, samples =350] plot(\x, {7 - 3*((\x) - 1)^2/5});
	\draw[thick, color=blue, domain={3.0}:{10.0}, -latex, samples =350] plot(\x, {(\x)/5 + 6});
		\draw[fill=black] (-3,6) circle (5pt);
		\draw[fill=white] (-3,-13/5) circle (5pt);
		\draw[fill=white] (3,23/5) circle (5pt);
		\draw[fill=black] (3,33/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} x + 9,& x \leq -3\\ 7 - \frac{3 \left(x - 1\right)^{2}}{5},& -3 < x < 3\\ \frac{x}{5} + 6,& x \geq 3 \\ \end{cases} " src="/equation_images/%20%5Cdisplaystyle%20f%28x%29%3D%5Cbegin%7Bcases%7D%20x%20%2B%209%2C%26%20x%20%5Cleq%20-3%5C%5C%207%20-%20%5Cfrac%7B3%20%5Cleft%28x%20-%201%5Cright%29%5E%7B2%7D%7D%7B5%7D%2C%26%20-3%20%3C%20x%20%3C%203%5C%5C%20%5Cfrac%7Bx%7D%7B5%7D%20%2B%206%2C%26%20x%20%5Cgeq%203%20%5C%5C%20%5Cend%7Bcases%7D%20" alt="LaTeX:  \displaystyle f(x)=\begin{cases} x + 9,& x \leq -3\\ 7 - \frac{3 \left(x - 1\right)^{2}}{5},& -3 < x < 3\\ \frac{x}{5} + 6,& x \geq 3 \\ \end{cases} " data-equation-content=" \displaystyle f(x)=\begin{cases} x + 9,& x \leq -3\\ 7 - \frac{3 \left(x - 1\right)^{2}}{5},& -3 < x < 3\\ \frac{x}{5} + 6,& x \geq 3 \\ \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,3) " src="/equation_images/%20%5Cdisplaystyle%20%28-3%2C3%29%20" alt="LaTeX:  \displaystyle (-3,3) " data-equation-content=" \displaystyle (-3,3) " /> , and a line on  <img class="equation_image" title=" \displaystyle [3, \infty) " src="/equation_images/%20%5Cdisplaystyle%20%5B3%2C%20%5Cinfty%29%20" alt="LaTeX:  \displaystyle [3, \infty) " data-equation-content=" \displaystyle [3, \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 -110.08825 -8.040062 L -113.158563 -11.110375 L -112.932 -10.883812 L -112.701531 -10.65725 L -112.474969 -10.430687 L -112.248406 -10.200219 L -111.568719 -9.520531 L -111.33825 -9.293969 L -111.111688 -9.0635 L -110.432 -8.383812 L -110.201531 -8.15725 L -109.974969 -7.926781 L -109.295281 -7.247094 L -109.064813 -7.020531 L -108.83825 -6.790062 L -108.158563 -6.110375 L -107.928094 -5.883812 L -107.701531 -5.653344 L -107.021844 -4.973656 L -106.791375 -4.747094 L -106.564813 -4.516625 L -105.885125 -3.836937 L -105.654656 -3.610375 L -105.428094 -3.379906 L -104.748406 -2.700219 L -104.517938 -2.473656 L -104.291375 -2.243187 L -103.611688 -1.5635 L -103.381219 -1.336937 L -103.154656 -1.106469 L -102.474969 -0.426781 L -102.2445 -0.200219 L -102.017938 0.03025 L -101.33825 0.709938 L -101.107781 0.9365 L -100.881219 1.166969 L -100.201531 1.846656 L -99.971063 2.073219 L -99.7445 2.303688 L -99.064813 2.983375 L -98.834344 3.209938 L -98.607781 3.4365 L -98.381219 3.666969 L -97.928094 4.120094 L -97.697625 4.346656 L -97.471063 4.573219 L -97.2445 4.803688 L -96.791375 5.256813 L -96.560906 5.483375 L -96.334344 5.709938 L -96.107781 5.940406 L -95.654656 6.393531 L -95.424188 6.620094 L -95.197625 6.846656 L -94.971063 7.077125 L -94.517938 7.53025 L -94.287469 7.756813 L -94.060906 7.983375 L -93.834344 8.213844 L -93.381219 8.666969 L -93.15075 8.893531 L -92.924188 9.120094 L -92.697625 9.350563 L -92.2445 9.803688 L -92.014031 10.03025 L -91.787469 10.256813 L -91.560906 10.487281 L -91.107781 10.940406 L -90.877313 11.166969 L -90.65075 11.393531 L -90.424188 11.624 L -89.971063 12.077125 L -89.740594 12.303688 L -89.514031 12.53025 L -89.287469 12.760719 L -88.834344 13.213844 L -88.603875 13.440406 L -88.377313 13.666969 L -88.15075 13.897438 L -87.697625 14.350563 L -87.467156 14.577125 L -87.240594 14.803688 L -87.014031 15.034156 L -86.560906 15.487281 L -86.330438 15.713844 L -86.103875 15.940406 L -85.877313 16.170875 L -85.424188 16.624 L -85.193719 16.850563 L -84.967156 17.077125 L -84.740594 17.307594 L -84.287469 17.760719 L -84.057 17.987281 L -83.830438 18.213844 L -83.603875 18.444313 L -83.15075 18.897438 L -82.920281 19.124 L -82.693719 19.350563 L -82.467156 19.581031 L -82.014031 20.034156 L -81.783563 20.260719 L -81.557 20.487281 L -81.330438 20.71775 L -80.877313 21.170875 L -80.646844 21.397438 L -80.420281 21.624 L -80.193719 21.854469 L -79.740594 22.307594 L -79.510125 22.534156 L -79.283563 22.760719 L -79.057 22.991188 L -78.603875 23.444313 L -78.373406 23.670875 L -78.146844 23.897438 L -77.920281 24.127906 L -77.240594 24.807594 L -77.010125 25.034156 L -76.783563 25.264625 L -76.103875 25.944313 L -75.873406 26.170875 L -75.646844 26.401344 L -74.967156 27.081031 L -74.736688 27.307594 L -74.510125 27.538063 L -73.830438 28.21775 L -73.599969 28.444313 L -73.373406 28.674781 L -72.693719 29.354469 L -72.46325 29.581031 L -72.236688 29.8115 L -71.557 30.491188 L -71.326531 30.71775 L -71.099969 30.948219 L -70.420281 31.627906 L -70.189813 31.854469 L -69.96325 32.084938 L -69.283563 32.764625 L -69.053094 32.991188 L -68.826531 33.221656 L -68.146844 33.901344 L -67.916375 34.127906 L -67.689813 34.358375 L -67.010125 35.038063 L -66.779656 35.264625 L -66.553094 35.495094 L -65.873406 36.174781 L -65.642938 36.401344 L -65.416375 36.627906 L -65.189813 36.858375 L -64.736688 37.3115 L -64.506219 37.538063 L -64.279656 37.764625 L -64.053094 37.995094 L -63.599969 38.448219 L -63.3695 38.674781 L -63.142938 38.901344 L -62.916375 39.131813 L -62.46325 39.584938 L -62.232781 39.8115 L -62.006219 40.038063 L -61.779656 40.268531 L -61.326531 40.721656 L -61.096063 40.948219 L -60.8695 41.174781 L -60.642938 41.40525 L -60.189813 41.858375 L -59.959344 42.084938 L -59.732781 42.3115 L -59.506219 42.541969 L -59.053094 42.995094 L -58.822625 43.221656 L -58.596063 43.448219 L -58.3695 43.678688 L -57.916375 44.131813 L -57.685906 44.358375 L -57.459344 44.584938 L -57.232781 44.815406 L -56.779656 45.268531 L -56.549188 45.495094 L -56.322625 45.721656 L -56.096063 45.952125 L -55.642938 46.40525 L -55.412469 46.631813 L -55.185906 46.858375 L -54.959344 47.088844 L -54.506219 47.541969 L -54.27575 47.768531 L -54.049188 47.995094 L -53.822625 48.225563 L -53.3695 48.678688 L -53.139031 48.90525 L -52.912469 49.131813 L -52.685906 49.362281 L -52.232781 49.815406 L -52.002313 50.041969 L -51.77575 50.268531 L -51.549188 50.499 L -51.096063 50.952125 L -50.865594 51.178688 L -50.639031 51.40525 L -50.412469 51.635719 L -49.959344 52.088844 L -49.728875 52.315406 L -49.502313 52.541969 L -49.27575 52.772438 L -48.822625 53.225563 L -48.592156 53.452125 L -48.365594 53.678688 L -48.139031 53.909156 L -47.685906 54.362281 L -47.455438 54.588844 L -47.228875 54.815406 L -47.002313 55.045875 L -46.549188 55.499 L -46.318719 55.725563 L -46.092156 55.952125 L -45.865594 56.182594 L -45.412469 56.635719 L -45.182 56.862281 L -44.955438 57.088844 L -44.728875 57.319313 L -44.049188 57.999 L -43.818719 58.225563 L -43.592156 58.456031 L -42.912469 59.135719 L -42.682 59.362281 L -42.455438 59.59275 L -41.77575 60.272438 L -41.545281 60.499 L -41.318719 60.729469 L -40.639031 61.409156 L -40.408563 61.635719 L -40.182 61.866188 L -39.502313 62.545875 L -39.271844 62.772438 L -39.045281 63.002906 L -38.365594 63.682594 L -38.135125 63.909156 L -37.908563 64.139625 L -37.228875 64.819313 L -36.998406 65.045875 L -36.771844 65.276344 L -36.092156 65.956031 L -35.861688 66.182594 L -35.635125 66.413063 L -34.955438 67.09275 L -34.724969 67.319313 L -34.498406 67.549781 L -34.045281 68.002906 " 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 17.082031 144.667969 19.21875 143.632812 20.957031 143.171875 L 18.210938 140.425781 C 17.753906 142.164062 16.714844 144.300781 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 -34.014031 -29.481469 L -33.822625 -28.547875 L -33.627313 -27.618187 L -33.432 -26.692406 L -33.236688 -25.770531 L -32.846063 -23.942406 L -32.65075 -23.03225 L -32.455438 -22.126 L -32.264031 -21.227562 L -32.068719 -20.329125 L -31.678094 -18.547875 L -31.287469 -16.78225 L -30.896844 -15.03225 L -30.705438 -14.165062 L -30.510125 -13.297875 L -30.314813 -12.4385 L -29.924188 -10.727562 L -29.728875 -9.879906 L -29.533563 -9.036156 L -29.33825 -8.196312 L -29.146844 -7.356469 L -28.951531 -6.524437 L -28.756219 -5.696312 L -28.560906 -4.872094 L -28.365594 -4.051781 L -28.170281 -3.235375 L -27.974969 -2.422875 L -27.783563 -1.614281 L -27.58825 -0.809594 L -27.392938 -0.0088125 L -27.197625 0.788063 L -27.002313 1.581031 L -26.807 2.370094 L -26.611688 3.15525 L -26.416375 3.932594 L -26.224969 4.709938 L -26.029656 5.483375 L -25.834344 6.252906 L -25.443719 7.776344 L -25.248406 8.534156 L -24.857781 10.034156 L -24.666375 10.776344 L -24.471063 11.518531 L -24.080438 12.987281 L -23.689813 14.440406 L -23.4945 15.159156 L -23.299188 15.874 L -23.107781 16.588844 L -22.912469 17.295875 L -22.717156 17.999 L -22.326531 19.397438 L -22.131219 20.088844 L -21.935906 20.776344 L -21.740594 21.459938 L -21.549188 22.139625 L -21.353875 22.815406 L -21.158563 23.487281 L -20.96325 24.15525 L -20.767938 24.819313 L -20.572625 25.479469 L -20.377313 26.135719 L -20.185906 26.788063 L -19.990594 27.4365 L -19.795281 28.081031 L -19.599969 28.721656 L -19.209344 29.987281 L -19.014031 30.616188 L -18.818719 31.237281 L -18.627313 31.858375 L -18.432 32.475563 L -18.041375 33.694313 L -17.846063 34.299781 L -17.455438 35.495094 L -17.260125 36.084938 L -17.068719 36.670875 L -16.873406 37.256813 L -16.482781 38.413063 L -16.287469 38.983375 L -15.896844 40.116188 L -15.701531 40.674781 L -15.510125 41.229469 L -15.314813 41.78025 L -15.1195 42.327125 L -14.728875 43.413063 L -14.533563 43.948219 L -14.33825 44.479469 L -14.142938 45.006813 L -13.951531 45.53025 L -13.756219 46.049781 L -13.560906 46.565406 L -13.170281 47.581031 L -12.974969 48.084938 L -12.779656 48.584938 L -12.58825 49.081031 L -12.392938 49.573219 L -12.002313 50.541969 L -11.807 51.022438 L -11.416375 51.96775 L -11.221063 52.4365 L -11.029656 52.897438 L -10.834344 53.358375 L -10.443719 54.264625 L -10.053094 55.15525 L -9.857781 55.59275 L -9.662469 56.026344 L -9.471063 56.459938 L -9.27575 56.885719 L -8.885125 57.729469 L -8.689813 58.143531 L -8.4945 58.553688 L -8.299188 58.959938 L -8.103875 59.362281 L -7.912469 59.760719 L -7.521844 60.549781 L -7.326531 60.9365 L -7.131219 61.319313 L -6.935906 61.698219 L -6.545281 62.440406 L -6.353875 62.807594 L -6.158563 63.170875 L -5.96325 63.53025 L -5.767938 63.885719 L -5.572625 64.237281 L -5.182 64.924781 L -4.986688 65.264625 L -4.795281 65.596656 L -4.599969 65.928688 L -4.404656 66.256813 L -4.014031 66.897438 L -3.623406 67.522438 L -3.432 67.827125 L -3.236688 68.131813 L -3.041375 68.428688 L -2.65075 69.014625 L -2.455438 69.299781 L -2.064813 69.862281 L -1.873406 70.135719 L -1.678094 70.40525 L -1.482781 70.670875 L -1.092156 71.194313 L -0.896844 71.448219 L -0.701531 71.698219 L -0.506219 71.944313 L -0.314813 72.1865 L -0.1195 72.424781 L 0.0758125 72.659156 L 0.271125 72.889625 L 0.466437 73.116188 L 0.857062 73.553688 L 1.052375 73.768531 L 1.243781 73.979469 L 1.439094 74.1865 L 1.829719 74.584938 L 2.025031 74.78025 L 2.415656 75.15525 L 2.610969 75.338844 L 2.802375 75.514625 L 2.997687 75.690406 L 3.388312 76.026344 L 3.778937 76.346656 L 3.97425 76.499 L 4.165656 76.647438 L 4.360969 76.795875 L 4.556281 76.9365 L 4.946906 77.209938 L 5.142219 77.338844 L 5.337531 77.463844 L 5.532844 77.584938 L 5.72425 77.702125 L 5.919562 77.815406 L 6.114875 77.924781 L 6.5055 78.135719 L 6.896125 78.323219 L 7.091437 78.413063 L 7.282844 78.499 L 7.478156 78.581031 L 7.673469 78.659156 L 7.868781 78.733375 L 8.064094 78.803688 L 8.454719 78.928688 L 8.650031 78.987281 L 8.841437 79.041969 L 9.232062 79.135719 L 9.427375 79.178688 L 9.818 79.249 L 10.208625 79.303688 L 10.400031 79.323219 L 10.790656 79.354469 L 11.181281 79.370094 L 11.376594 79.370094 L 11.571906 79.366188 L 11.763312 79.358375 L 11.958625 79.350563 L 12.153937 79.334938 L 12.34925 79.315406 L 12.544562 79.291969 L 12.739875 79.264625 L 13.1305 79.202125 L 13.321906 79.163063 L 13.517219 79.120094 L 13.712531 79.073219 L 13.907844 79.022438 L 14.298469 78.90525 L 14.493781 78.84275 L 14.689094 78.776344 L 14.8805 78.706031 L 15.075812 78.631813 L 15.466437 78.46775 L 15.66175 78.381813 L 16.052375 78.194313 L 16.247687 78.096656 L 16.439094 77.991188 L 16.634406 77.885719 L 17.025031 77.659156 L 17.415656 77.416969 L 17.806281 77.159156 L 17.997687 77.022438 L 18.388312 76.741188 L 18.583625 76.59275 L 18.778937 76.440406 L 19.169562 76.127906 L 19.360969 75.963844 L 19.556281 75.795875 L 19.751594 75.624 L 19.946906 75.448219 L 20.142219 75.268531 L 20.337531 75.084938 L 20.532844 74.897438 L 20.728156 74.706031 L 20.919562 74.510719 L 21.114875 74.3115 L 21.310187 74.108375 L 21.5055 73.901344 L 21.896125 73.471656 L 22.091437 73.252906 L 22.28675 73.03025 L 22.478156 72.799781 L 22.673469 72.569313 L 22.868781 72.334938 L 23.259406 71.850563 L 23.454719 71.604469 L 23.845344 71.096656 L 24.03675 70.834938 L 24.232062 70.573219 L 24.427375 70.303688 L 24.818 69.756813 L 25.013312 69.475563 L 25.403937 68.90525 L 25.595344 68.612281 L 25.790656 68.315406 L 26.181281 67.713844 L 26.376594 67.40525 L 26.571906 67.09275 L 26.767219 66.776344 L 26.958625 66.456031 L 27.153937 66.131813 L 27.34925 65.803688 L 27.544562 65.471656 L 27.739875 65.135719 L 27.935187 64.795875 L 28.1305 64.452125 L 28.325812 64.104469 L 28.517219 63.749 L 28.712531 63.393531 L 28.907844 63.034156 L 29.103156 62.670875 L 29.493781 61.928688 L 29.689094 61.553688 L 29.884406 61.170875 L 30.075812 60.788063 L 30.271125 60.401344 L 30.66175 59.612281 L 31.052375 58.807594 L 31.247687 58.397438 L 31.443 57.983375 L 31.634406 57.569313 L 32.025031 56.725563 L 32.220344 56.295875 L 32.415656 55.862281 L 32.806281 54.987281 L 33.001594 54.541969 L 33.193 54.09275 L 33.388312 53.639625 L 33.583625 53.182594 L 33.778937 52.721656 L 33.97425 52.256813 " 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 34.017219 74.834938 L 34.243781 74.877906 L 34.696906 74.971656 L 34.923469 75.014625 L 35.153937 75.0615 L 35.3805 75.108375 L 35.607062 75.151344 L 36.060187 75.245094 L 36.290656 75.288063 L 36.743781 75.381813 L 36.970344 75.424781 L 37.196906 75.471656 L 37.427375 75.514625 L 37.8805 75.608375 L 38.107062 75.651344 L 38.333625 75.698219 L 38.564094 75.745094 L 38.790656 75.788063 L 39.243781 75.881813 L 39.470344 75.924781 L 39.700812 75.971656 L 39.927375 76.014625 L 40.3805 76.108375 L 40.607062 76.151344 L 40.837531 76.198219 L 41.064094 76.245094 L 41.290656 76.288063 L 41.743781 76.381813 L 41.97425 76.424781 L 42.427375 76.518531 L 42.653937 76.5615 L 42.8805 76.608375 L 43.110969 76.651344 L 43.564094 76.745094 L 43.790656 76.788063 L 44.017219 76.834938 L 44.247687 76.881813 L 44.47425 76.924781 L 44.927375 77.018531 L 45.153937 77.0615 L 45.384406 77.108375 L 45.610969 77.151344 L 46.064094 77.245094 L 46.290656 77.288063 L 46.521125 77.334938 L 46.747687 77.381813 L 46.97425 77.424781 L 47.427375 77.518531 L 47.657844 77.5615 L 48.110969 77.65525 L 48.337531 77.698219 L 48.564094 77.745094 L 48.794562 77.788063 L 49.247687 77.881813 L 49.47425 77.924781 L 49.927375 78.018531 L 50.157844 78.0615 L 50.610969 78.15525 L 50.837531 78.198219 L 51.064094 78.245094 L 51.294562 78.288063 L 51.747687 78.381813 L 51.97425 78.424781 L 52.200812 78.471656 L 52.431281 78.518531 L 52.657844 78.5615 L 53.110969 78.65525 L 53.337531 78.698219 L 53.568 78.745094 L 53.794562 78.791969 L 54.021125 78.834938 L 54.247687 78.881813 L 54.47425 78.924781 L 54.704719 78.971656 L 54.931281 79.018531 L 55.157844 79.0615 L 55.610969 79.15525 L 55.841437 79.198219 L 56.294562 79.291969 L 56.521125 79.334938 L 56.747687 79.381813 L 56.978156 79.424781 L 57.431281 79.518531 L 57.657844 79.5615 L 57.884406 79.608375 L 58.114875 79.65525 L 58.341437 79.698219 L 58.794562 79.791969 L 59.021125 79.834938 L 59.251594 79.881813 L 59.478156 79.928688 L 59.704719 79.971656 L 59.931281 80.018531 L 60.157844 80.0615 L 60.388312 80.108375 L 60.614875 80.15525 L 60.841437 80.198219 L 61.294562 80.291969 L 61.525031 80.334938 L 61.978156 80.428688 L 62.204719 80.471656 L 62.431281 80.518531 L 62.66175 80.5615 L 63.114875 80.65525 L 63.341437 80.698219 L 63.568 80.745094 L 63.798469 80.791969 L 64.025031 80.834938 L 64.478156 80.928688 L 64.704719 80.971656 L 64.935187 81.018531 L 65.16175 81.065406 L 65.388312 81.108375 L 65.614875 81.15525 L 65.841437 81.198219 L 66.071906 81.245094 L 66.298469 81.291969 L 66.525031 81.334938 L 66.978156 81.428688 L 67.208625 81.471656 L 67.66175 81.565406 L 67.888312 81.608375 L 68.114875 81.65525 L 68.345344 81.698219 L 68.798469 81.791969 L 69.025031 81.834938 L 69.251594 81.881813 L 69.482062 81.928688 L 69.708625 81.971656 L 70.16175 82.065406 L 70.388312 82.108375 L 70.618781 82.15525 L 70.845344 82.198219 L 71.298469 82.291969 L 71.525031 82.334938 L 71.7555 82.381813 L 71.982062 82.428688 L 72.208625 82.471656 L 72.66175 82.565406 L 72.892219 82.608375 L 73.345344 82.702125 L 73.571906 82.745094 L 73.798469 82.791969 L 74.028937 82.834938 L 74.482062 82.928688 L 74.708625 82.971656 L 74.935187 83.018531 L 75.165656 83.065406 L 75.392219 83.108375 L 75.845344 83.202125 L 76.071906 83.245094 L 76.302375 83.291969 L 76.528937 83.334938 L 76.982062 83.428688 L 77.208625 83.471656 L 77.439094 83.518531 L 77.665656 83.565406 L 77.892219 83.608375 L 78.345344 83.702125 L 78.575812 83.745094 L 79.028937 83.838844 L 79.2555 83.881813 L 79.482062 83.928688 L 79.712531 83.971656 L 80.165656 84.065406 L 80.392219 84.108375 L 80.618781 84.15525 L 80.84925 84.202125 L 81.075812 84.245094 L 81.528937 84.338844 L 81.7555 84.381813 L 81.985969 84.428688 L 82.212531 84.471656 L 82.665656 84.565406 L 82.892219 84.608375 L 83.122687 84.65525 L 83.34925 84.702125 L 83.575812 84.745094 L 84.028937 84.838844 L 84.2555 84.881813 L 84.485969 84.928688 L 84.712531 84.975563 L 84.939094 85.018531 L 85.165656 85.065406 L 85.392219 85.108375 L 85.622687 85.15525 L 85.84925 85.202125 L 86.075812 85.245094 L 86.528937 85.338844 L 86.759406 85.381813 L 87.212531 85.475563 L 87.439094 85.518531 L 87.665656 85.565406 L 87.896125 85.608375 L 88.34925 85.702125 L 88.575812 85.745094 L 88.802375 85.791969 L 89.032844 85.838844 L 89.259406 85.881813 L 89.712531 85.975563 L 89.939094 86.018531 L 90.169562 86.065406 L 90.396125 86.112281 L 90.622687 86.15525 L 90.84925 86.202125 L 91.075812 86.245094 L 91.306281 86.291969 L 91.532844 86.338844 L 91.759406 86.381813 L 92.212531 86.475563 L 92.443 86.518531 L 92.896125 86.612281 L 93.122687 86.65525 L 93.34925 86.702125 L 93.579719 86.745094 L 94.032844 86.838844 L 94.259406 86.881813 L 94.485969 86.928688 L 94.716437 86.975563 L 94.943 87.018531 L 95.396125 87.112281 L 95.622687 87.15525 L 95.853156 87.202125 L 96.079719 87.249 L 96.306281 87.291969 L 96.532844 87.338844 L 96.759406 87.381813 L 96.989875 87.428688 L 97.216437 87.475563 L 97.443 87.518531 L 97.896125 87.612281 L 98.126594 87.65525 L 98.579719 87.749 L 98.806281 87.791969 L 99.032844 87.838844 L 99.263312 87.881813 L 99.716437 87.975563 L 99.943 88.018531 L 100.169562 88.065406 L 100.400031 88.112281 L 100.626594 88.15525 L 101.079719 88.249 L 101.306281 88.291969 L 101.53675 88.338844 L 101.763312 88.385719 L 101.989875 88.428688 L 102.216437 88.475563 L 102.443 88.518531 L 102.673469 88.565406 L 102.900031 88.612281 L 103.126594 88.65525 L 103.579719 88.749 L 103.810187 88.791969 L 104.263312 88.885719 L 104.489875 88.928688 L 104.716437 88.975563 L 104.946906 89.018531 L 105.400031 89.112281 L 105.626594 89.15525 L 105.853156 89.202125 L 106.083625 89.249 L 106.310187 89.291969 L 106.763312 89.385719 L 106.989875 89.428688 L 107.220344 89.475563 L 107.446906 89.522438 L 107.673469 89.565406 L 107.900031 89.612281 L 108.126594 89.65525 L 108.357062 89.702125 L 108.583625 89.749 L 108.810187 89.791969 L 109.263312 89.885719 L 109.493781 89.928688 L 109.720344 89.975563 L 109.946906 90.018531 L 110.400031 90.112281 L 110.6305 90.15525 L 111.083625 90.249 L 111.310187 90.291969 L 111.53675 90.338844 L 111.767219 90.385719 L 111.993781 90.428688 L 112.446906 90.522438 L 112.673469 90.565406 L 112.903937 90.612281 L 113.1305 90.65525 L 108.782844 89.791969 " 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.664062 43.421875 C 241.257812 43.4375 238.90625 43.113281 237.203125 42.53125 L 237.964844 46.339844 C 239.308594 45.148438 241.359375 43.945312 242.664062 43.421875 "/>
<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 68.03025 C -32.021844 69.131813 -32.916375 70.022438 -34.014031 70.022438 C -35.115594 70.022438 -36.006219 69.131813 -36.006219 68.03025 C -36.006219 66.932594 -35.115594 66.038063 -34.014031 66.038063 C -32.916375 66.038063 -32.021844 66.932594 -32.021844 68.03025 Z M -32.021844 68.03025 " 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 -29.481469 C -32.021844 -28.379906 -32.916375 -27.489281 -34.014031 -27.489281 C -35.115594 -27.489281 -36.006219 -28.379906 -36.006219 -29.481469 C -36.006219 -30.579125 -35.115594 -31.473656 -34.014031 -31.473656 C -32.916375 -31.473656 -32.021844 -30.579125 -32.021844 -29.481469 Z M -32.021844 -29.481469 " 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 36.009406 52.159156 C 36.009406 53.256813 35.114875 54.151344 34.017219 54.151344 C 32.915656 54.151344 32.025031 53.256813 32.025031 52.159156 C 32.025031 51.057594 32.915656 50.163063 34.017219 50.163063 C 35.114875 50.163063 36.009406 51.057594 36.009406 52.159156 Z M 36.009406 52.159156 " 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 36.009406 74.834938 C 36.009406 75.9365 35.114875 76.827125 34.017219 76.827125 C 32.915656 76.827125 32.025031 75.9365 32.025031 74.834938 C 32.025031 73.733375 32.915656 72.84275 34.017219 72.84275 C 35.114875 72.84275 36.009406 73.733375 36.009406 74.834938 Z M 36.009406 74.834938 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
</g>
</svg>
</p> </p>