Skip to content
Snippets Groups Projects
Commit bc3b760d authored by Orestis's avatar Orestis
Browse files

ajouts sur les stats

parents b125cc57 43003c4c
No related branches found
No related tags found
No related merge requests found
......@@ -2994,10 +2994,308 @@ le moins complexe. Et la plus grande difficulté tient dans le ``représentatif
Il existe différentes façon de représenter les caractères d'une population selon que sa nature est \textit{discrète}
ou \textit{continue}. Dans le cas discret d'un caractère pouvant prendre $k\in\natural$ valeur différentes $\{x_i\}_{i=0}^{k-1}$,
on représente le nombre d'indivius pouvant prendre la valeur $x_k$ par le nombre $n_k$. On a donc un ensemble $\{n_i\}_{i=0}^{n-1}$
on représente le nombre d'indivius pouvant prendre la valeur $x_i$ par le nombre $n_i$. On a donc un ensemble $\{n_i\}_{i=0}^{k-1}$
d'indivius pour les $k$ valeurs des caratères de la population. Dans le cas continu le nombre d'individus d'un caractère
correspondrant à une subdivision en $k$ parties de l'ensemble des valeurs possibles pour le dit caractère. On peut résumer les deux
représentation sous la forme de tableaux. Dans le cas discret, on reprendre l'exemple de
correspondrait à une subdivision en $k$ parties de l'ensemble des valeurs possibles pour le dit caractère.
\begin{exemples}\hfill\break
\begin{enumerate}
\item Cas discret: On étudie la distribution de salaires annuels dans une entreprise.
Les salaires possibles sont $40'000$, $50'000$, $60'000$ et $1'000'000$ de CHF.
\begin{itemize}
\item Il y a 35 personnes payées $40'000$ CHF.
\item Il y a 20 personnes payées $50'000$ CHF.
\item Il y a 5 personnes payées $60'000$ CHF.
\item Il y a 1 personne payée $1'000'000$ CHF.
\end{itemize}
\item Cas continu: Lors du benchmark d'une application, $A$, nous effetuons plusieurs mesures (la population) du temps d'exécution (le caractère) de l'application.
Les résultats obtenus sont les suivants:
\begin{itemize}
\item 7 exécutions ont pris entre 50 et 51 secondes.
\item 12 exécutions ont pris entre 51 et 52 secondes.
\item 8 exécutions ont pris entre 52 et 53 secondes.
\item 23 exécutions ont pris entre 53 et 54 secondes.
\end{itemize}
\end{enumerate}
\end{exemples}
Pour représenter de façon un peu plus parlante ces valeurs, deux méthodes principales existent: le tableau ou le graphique.
Pour illustrer les exemples précédents sous forme de tableau on obtient pour le cas des salaires (voir Tabl.~\ref{fig_salaires})
\begin{table}
\begin{center}
\begin{tabular}{|c|c|}
\hline
Salaire & Nombre de salairés \\
\hline\hline
40000 & 35 \\
\hline
50000 & 20 \\
\hline
60000 & 5 \\
\hline
1000000 & 1 \\
\hline
\end{tabular}
\end{center}
\caption{Tableau du nombre de salariés par salaire.}\label{table_salaires}
\end{table}
et du benchmark de l'application (voir Tabl.~\ref{fig_exec})
\begin{table}
\begin{center}
\begin{tabular}{|c|c|}
\hline
Temps d'exécution & Nombre \\
\hline\hline
[50,51) & 7 \\
\hline
[51,52) & 12 \\
\hline
[52,53) & 8 \\
\hline
[53,54) & 23 \\
\hline
\end{tabular}
\end{center}
\caption{Tableau des temps d'exécution.}\label{table_exec}
\end{table}
Sous forme de graphique on peut représenter le tableau des salaires sous la forme d'un graphique bâton (voir Fig.~\ref{fig_salaires})
\begin{figure}[htp]
\begin{center}
\includegraphics[width=0.5\textwidth]{figs/graph_salaires.pdf}
\caption{Nombre salariés en fonction du salaire.}\label{fig_salaires}
\end{center}
\end{figure}
ou d'un histogramme pour le temps d'exécution de l'application (voir Fig.~\ref{fig_exec}).
\begin{figure}[htp]
\begin{center}
\includegraphics[width=0.5\textwidth]{figs/graph_exec.pdf}
\caption{Nombre d'exécutions en fonction du temps d'exécution.}\label{fig_exec}
\end{center}
\end{figure}
\subsection{Fréquences}
Plutôt que de faire apparaître le nombre d'individus d'une population
possédant un caractère, il peut être plus intéressant et parlant de faire intervenir
la \textit{fréquence} ou le nombre relatif à la place. En effet, la fréquence donne
immédiatement la proportion d'individu plutôt qu'un nombre absolu qui n'est pas forcément
très interprétable tout seul.
La population totale, $n$, est donnée par
\begin{equation}
n=\sum_{i=0}^{k-1}n_i.
\end{equation}
On peut donc définir la fréquence d'un caractère $i$, $f_i$ comme
\begin{equation}
f_i=\frac{n_i}{n}.
\end{equation}
\begin{exemples}{Fréquence}
Les tableaux de fréquence des deux exemples précédents sont donnés par
\begin{enumerate}
\item Cas discret: la population totale est de
\begin{equation}
% n=40'000+50'000+60'000+1'000'000=1'150'000.
n=35+20+5+1=61.
\end{equation}
\begin{table}[htp]
\begin{center}
\begin{tabular}{|c|c|c|}
\hline
Salaire & Nombre de salairés & Fréquence\\
\hline\hline
40000 & 35 & $35/61\cong0.573770$\\
\hline
50000 & 20 & $20/61\cong0.327869$\\
\hline
60000 & 5 & $5/61\cong0.081967$ \\
\hline
1000000 & 1 & $1/61\cong0.19568$ \\
\hline
\end{tabular}
\end{center}
\caption{Tableau des salaires, du nombre de salariés et la fréquence.}
\end{table}
\item Cas continu: la population totale est de
\begin{equation}
n=7+12+8+23=50.
\end{equation}
Le tableau \ref{table_exec_freq} affiche les différentes fréquences des temps d'exécution.
\begin{table}[htp]
\begin{center}
\begin{tabular}{|c|c|c|}
\hline
Temps d'exécution & Nombre & Fréquence \\
\hline\hline
[50,51) & 7 & $7/50=0.14$\\
\hline
[51,52) & 12 & $12/50=0.24$ \\
\hline
[52,53) & 8 & $8/50=0.16$ \\
\hline
[53,54) & 23 & $23/50=0.46$ \\
\hline
\end{tabular}
\end{center}
\caption{Tableau des temps d'exécution et la fréquence des temps d'exécution.}\label{table_exec_freq}
\end{table}
\end{enumerate}
\end{exemples}
La fréquence possède un certain nombre de propriétés que nous retrouverons
dans les sections suivantes qui sont assez intuitives
\begin{proprietes}{Propriétés de la fréquence}
\begin{enumerate}
\item Les fréquences sont toujours dans l'intervalle $[0,1]$
\begin{equation}
0\leq f_i\leq 1.
\end{equation}
\item La somme de toutes les fréquences donne toujours $1$
\begin{equation}
\sum_{i=0}^{k-1} f_i = 1.
\end{equation}
\end{enumerate}
\end{proprietes}
Relié avec la propriété $2$ ci-dessus, il peut également être intéressant d'obtenir la
\textit{fréquence cumulée}, notée $F(x)$, d'un caractère qui se définit comme la fréquence des individus
qui présentent une valeur de caractère $x_i\leq x$. Les tableaux ocrrespondants aux tableaux
\ref{table_salaires} et \ref{table_exec} (voir Tabls. \ref{table_salaires_freqcum} et \ref{table_exec_freqcum})
\begin{table}[htp]
\begin{center}
\begin{tabular}{|c|c|c|c|}
\hline
Salaire & Nombre de salairés & Fréquence & Fréquence cumulée\\
\hline\hline
40000 & 35 & $35/61\cong0.573770$ & $35/61\cong0.573770$\\
\hline
50000 & 20 & $20/61\cong0.327869$ & $(20+35)/61\cong0.90164$\\
\hline
60000 & 5 & $5/61\cong0.081967$ & $(20+35+5+1)/61\cong0.98361$\\
\hline
1000000 & 1 & $1/61\cong0.19568$ & $(20+35+5+1)/61=1$\\
\hline
\end{tabular}
\end{center}
\caption{Tableau des salaires, du nombre de salariés, et la fréquence et fréquence cumulée des salaires.}\label{table_salaires_freqcum}
\end{table}
\begin{table}[htp]
\begin{center}
\begin{tabular}{|c|c|c|c|}
\hline
Temps d'exécution & Nombre & Fréquence & Fréquence cumulée \\
\hline\hline
[50,51) & 7 & $7/50=0.14$ & $7/50=0.14$ \\
\hline
[51,52) & 12 & $12/50=0.24$ & $(7+12)/50=0.38$ \\
\hline
[52,53) & 8 & $8/50=0.16$ & $(7+12+8)/50=0.54$ \\
\hline
[53,54) & 23 & $23/50=0.46$ & $(7+12+8+23)/50=1$ \\
\hline
\end{tabular}
\end{center}
\caption{Tableau des temps d'exécution et la fréquence et fréquences cumulées des temps d'exécution.}\label{table_exec_freqcum}
\end{table}
\begin{exercices}{Fréquence cumulée}
\begin{enumerate}
\item Tracer les graphes de la fréquence cumulée pour les deux exemples que nous avons vus.
\item Que pouvons-nous déduire de la forme de la fonction (croissance, valeur maximale)?
\end{enumerate}
\end{exercices}
\subsection{Mesures de tendance centrale}
Jusqu'ici le nombre de valeurs étudiées était limité et il est assez simple d'avoir
une vue d'ensemble de la distribution des valeurs des caractères de notre population.
Il est plus aisé d'utiliser une nombre de valeurs beaucoup plus resreint permettant
de résumer les différents caractères et nous allons en voir deux différents qui nous donne une tendance dite centrale:
la moyenne, la médiane.
La \textit{moyenne}, notée $\bar{x}$ d'un jeu de données s'obtient par la formule suivante
\begin{equation}
\bar{x}=\frac{1}{n}\sum_{i=0}^{k-1}x_i\cdot n_i.
\end{equation}
La moyenne peut également être calculée via les fréquences
\begin{equation}
\bar{x}=\sum_{i=0}^{k-1}f_i\cdot x_i.
\end{equation}
\begin{exercices}{Propriétés de la moyenne}
\begin{enumerate}
\item Démontrer la relation précédente.
\item Démontrer que la moyenne des écart $x_i-\bar{x}$ est nulle.
\end{enumerate}
\end{exercices}
\begin{exemple}{Moyenne}
Pour l'exemple des salaires la moyenne est donnée par
\begin{equation}
\bar{x}_{\textrm{salaire}}=\frac{35\cdot40000+20\cdot50000+5\cdot60000+1\cdot1000000}{61}=60656.
\end{equation}
\end{exemple}
On remarque ici que la moyenne des salaires donne une impression erronnée de la situation car elle est très sensible aux valeurs extrême de la distribution.
En effet, tous les salaires à l'exception d'un sont inférieurs à la moyenne. En effet, si on retire le salaire d'un million de notre ensemble de valeurs,
la moyenne de l'échantillon restant devient
\begin{equation}
\bar{x}_{\textrm{salaire}}=\frac{35\cdot40000+20\cdot50000+5\cdot60000}{60}=45000.
\end{equation}
La différence est de l'ordre de $25\%$ par rapport aux $60'000$ CHF obtenus avec toute la population.
Il est donc nécessaire d'utiliser une autre mesure pour illustrer mieux le salaire caractéristique de notre population.
De façon plus générale la moyenne est peu robuste à des valeurs extrêmes dans l'étude d'échantillon.
Une mesure qui est plus parlante est la \textit{médiane}, notée $\tilde{x}$. La médiane se définit comme la valeur $\tilde{x}$ qui est telle que
la moitié des individus de la population sont ont un $x_i\leq \tilde{x}$ et le reste est telle que $x_i\geq\tilde{x}$.
Pour l'exemple des salaires le salaire médian est de $40000 CHF$, ce qui reflète beaucoup mieux la distribution des salaire de notre population.
\begin{exercice}{Moyenne, médiane}
Calculer la moyenne et la médiane pour l'exemple du temps d'exécution (prendre la borne inférieure des intervalles pour chaque temps
d'exécution\footnote{Il y a 7 temps de 50s, 12 de 51s, 8 de 52s et 23 de 53s.}).
\end{exercice}
\subsection{Mesures de dispersion}
Nous avons vu deux mesures donnant une tendance générale des caractères d'une population. Hors cette valeur ne nous dit absolument rien
sur la manière dont ces caractères sont distribués. Sont-ils proches de la moyenne ou de la médiane? Ou en sont-ils au contraire éloignés?
Nous allons voir deux mesures diffréentes dans cette sous-section: la variance (écart-type), et l'intervalle inter-quantile.
Nous cherchons d'abord à calculer la moyenne des écarts à la moyenne.
Hors, comme on l'a vu dans la sous-section précédente l'écart à la moyenne $x_i-\bar{x}$ est nul en moyenne. Cette grandeurs ne nous apprend rien.
On peut donc s'intéresser plutôt à la moyenne de l'écart quadratique $(x_i-\bar{x})^2$ qui est une quantité toujours positive et donc la moyenne sera
de cette écart quadratique aura toujours une valeurs qui sera positive ou nulle (elle sera nulle uniquement si
$x_i-\bar{x}=0,\forall i$)\footnote{on pourrait aussi étudier la moyenne de $|x_i-\bar{x}|$, mais cela est moins pratique à étudier théoriquement.}.
On définit donc la \textit{variance}, $v$, comme étant la moyenne des écarts quadratiques
\begin{equation}
v=\frac{1}{n}\sum_{i=0}^{k-1}n_i(x_i-\bar{x})^2.
\end{equation}
Si on considère plutôt la racine carrée de la variance, on obtient \textit{l'écart-type}
\begin{equation}
s=\sqrt{v}.
\end{equation}
\begin{exercices}{Variance, écart-type}
Démontrer les réations suivantes
\begin{enumerate}
\item On peut également calculer la variance avec la fréquence
\begin{equation}
v=\sum_{i=0}^{k-1}f_i(x_i-\bar{x})^2.
\end{equation}
\item On peut également calculer la variance à l'aide de la formule suivante
\begin{equation}
v=\frac{1}{n}\sum_{i=0}^{k-1}n_ix_i^2-\bar{x}^2.
\end{equation}
\end{enumerate}
\end{exercices}
......@@ -3009,7 +3307,7 @@ Les nombres aléatoires, bien que pas directement reliés aux probabilités, son
qui vont de la cryptographie aux simulations physiques. Nous allons voir une introdution simplifiée à la génération de nombres aléatoires
sur un ordinateur et les différentes problématiques reliées à leur génération.
Une très bonne référence concernant les nombre aléatoires est le site \texttt{http://www.random.org}.
Une très bonne référence concernant les nombre aléatoires est le site \break \texttt{http://www.random.org}.
\subsection{Générateurs algorithmiques: une introduction (très) générale}
......
File added
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:ns0="http://www.iki.fi/pav/software/textext/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg2"
xml:space="preserve"
width="816"
height="1056"
viewBox="0 0 816 1056"
sodipodi:docname="graph_exec.svg"
inkscape:version="0.92.1 r15371"><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview4"
showgrid="false"
showguides="false"
inkscape:zoom="0.63211061"
inkscape:cx="145.15219"
inkscape:cy="533.27782"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g10" /><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs6"><g
id="g4777-6"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768-8" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1-7"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771-9" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774-0" /></symbol></g><g
id="g4777-8"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0-9"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768-7" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1-3"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771-6" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774-2" /></symbol></g><g
id="g4777-4"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768-0" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1-36"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771-1" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774-6" /></symbol></g><g
id="g4777-5"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768-76" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771-69" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2-3"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774-7" /></symbol></g><g
id="g4777-3"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768-78" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771-8" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2-8"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774-4" /></symbol></g><g
id="g4777-2"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768-6" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771-95" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2-04"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774-8" /></symbol></g><g
id="g4777-1"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0-06"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768-1" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1-59"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771-4" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2-9"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774-09" /></symbol></g><g
id="g4777-7"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0-67"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768-3" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1-65"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771-63" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2-94"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774-81" /></symbol></g><g
id="g4777-38"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0-56"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768-11" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1-598"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771-48" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2-10"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774-3" /></symbol></g></defs><g
id="g10"
inkscape:groupmode="layer"
inkscape:label="graph_exec"
transform="matrix(1.3333333,0,0,-1.3333333,0,1056)"><path
inkscape:connector-curvature="0"
id="path18"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="M 90.7996,238.31 H 669.467"
sodipodi:nodetypes="cc" /><path
inkscape:connector-curvature="0"
id="path20"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="M 90.7996,581.425 H 669.467"
sodipodi:nodetypes="cc" /><path
inkscape:connector-curvature="0"
id="path22"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="M 90.7996,238.31 V 581.425" /><path
inkscape:connector-curvature="0"
id="path24"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="M 669.467,238.31 V 581.425" /><path
inkscape:connector-curvature="0"
id="path26"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 90.7996,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path28"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 90.7996,581.425 v -4.342" /><path
inkscape:connector-curvature="0"
id="path30"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 163.133,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path32"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 163.133,581.425 v -4.342" /><path
inkscape:connector-curvature="0"
id="path34"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 235.467,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path36"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 235.467,581.425 v -4.342" /><path
inkscape:connector-curvature="0"
id="path38"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 307.8,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path40"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 307.8,581.425 v -4.342" /><path
inkscape:connector-curvature="0"
id="path42"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 380.133,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path44"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 380.133,581.425 v -4.342" /><path
inkscape:connector-curvature="0"
id="path46"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 452.467,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path48"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 452.467,581.425 v -4.342" /><path
inkscape:connector-curvature="0"
id="path50"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 524.8,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path52"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 524.8,581.425 v -4.342" /><path
inkscape:connector-curvature="0"
id="path60"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 90.7996,238.31 h 4.3406" /><path
inkscape:connector-curvature="0"
id="path62"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 524.8,238.31 h -4.34" /><path
inkscape:connector-curvature="0"
id="path64"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 90.7996,324.089 h 4.3406" /><path
inkscape:connector-curvature="0"
id="path66"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 669.31483,324.089 h -4.34" /><path
inkscape:connector-curvature="0"
id="path68"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 90.7996,409.868 h 4.3406" /><path
inkscape:connector-curvature="0"
id="path70"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 669.31483,409.868 h -4.34" /><path
inkscape:connector-curvature="0"
id="path72"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 90.7996,495.646 h 4.3406" /><path
inkscape:connector-curvature="0"
id="path74"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 669.31483,495.646 h -4.34" /><path
inkscape:connector-curvature="0"
id="path76"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 90.7996,581.425 h 4.3406" /><path
inkscape:connector-curvature="0"
id="path78"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 524.8,581.425 h -4.34" /><path
inkscape:connector-curvature="0"
id="path42-3"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 524.8,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path46-6"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 597.134,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path50-7"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 669.467,238.31 v 4.342" /><path
inkscape:connector-curvature="0"
id="path62-5"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 669.467,238.31 h -4.34" /><path
inkscape:connector-curvature="0"
id="path42-2"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 524.8,577.083 v 4.342" /><path
inkscape:connector-curvature="0"
id="path46-7"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 597.134,577.083 v 4.342" /><path
inkscape:connector-curvature="0"
id="path50-0"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
d="m 669.467,577.083 v 4.342" /><path
style="fill:none;stroke:#000000;stroke-width:2.25000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 524.8,238.31 v 308.28747 l 144.289,0"
id="path4681"
inkscape:connector-curvature="0" /><path
style="fill:none;stroke:#000000;stroke-width:2.25000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 380.133,238.31 0,52.39763 h 144.289"
id="path4681-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" /><path
style="fill:none;stroke:#000000;stroke-width:2.25000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 235.467,238.31 v 119.51628 h 144.289 l 0,-119.55509"
id="path4681-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" /><path
style="fill:none;stroke:#000000;stroke-width:2.25000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 91.178,238.31 v 33.94001 l 144.289,0 0,-33.97882"
id="path4681-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" /><g
transform="matrix(3.3526202,0,0,-3.3526202,-678.43281,653.65636)"
ns0:text="$50$"
ns0:preamble=""
id="g4788"><defs
id="defs4779"><g
id="g4777"><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path4768" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path4771" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-3d1ea10f-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path4774" /></symbol></g></defs><g
id="textext-3d1ea10f-3"><g
style="fill:#000000;fill-opacity:1"
id="g4785"><use
height="100%"
width="100%"
xlink:href="#textext-3d1ea10f-1"
x="223.43201"
y="134.765"
id="use4781" /><use
height="100%"
width="100%"
xlink:href="#textext-3d1ea10f-2"
x="228.4133"
y="134.765"
id="use4783" /></g></g></g><g
id="g5541"
transform="matrix(3.3526202,0,0,-3.3526202,-700.94376,1022.4758)"
ns0:preamble=""
ns0:text="$25$"><defs
id="defs5532"><g
id="g5530"><symbol
id="textext-db4aed49-0"
overflow="visible"
style="overflow:visible"><path
id="path5521"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-db4aed49-1"
overflow="visible"
style="overflow:visible"><path
id="path5524"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-db4aed49-2"
overflow="visible"
style="overflow:visible"><path
id="path5527"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-db4aed49-3"><g
id="g5538"
style="fill:#000000;fill-opacity:1"><use
id="use5534"
y="134.765"
x="223.43201"
xlink:href="#textext-db4aed49-1"
width="100%"
height="100%" /><use
id="use5536"
y="134.765"
x="228.4133"
xlink:href="#textext-db4aed49-2"
width="100%"
height="100%" /></g></g></g><g
ns0:text="$20$"
ns0:preamble=""
transform="matrix(3.3526202,0,0,-3.3526202,-700.94376,936.69681)"
id="g6036"><defs
id="defs6027"><g
id="g6025"><symbol
overflow="visible"
id="textext-ba401d57-0"
style="overflow:visible"><path
style="stroke:none"
d=""
id="path6016"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-ba401d57-1"
style="overflow:visible"><path
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path6019"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-ba401d57-2"
style="overflow:visible"><path
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path6022"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-ba401d57-3"><g
style="fill:#000000;fill-opacity:1"
id="g6033"><use
xlink:href="#textext-ba401d57-1"
x="223.43201"
y="134.765"
id="use6029"
width="100%"
height="100%" /><use
xlink:href="#textext-ba401d57-2"
x="228.4133"
y="134.765"
id="use6031"
width="100%"
height="100%" /></g></g></g><g
id="g6531"
transform="matrix(3.3526202,0,0,-3.3526202,-702.25338,850.91881)"
ns0:preamble=""
ns0:text="$15$"><defs
id="defs6522"><g
id="g6520"><symbol
id="textext-3c4fecf2-0"
overflow="visible"
style="overflow:visible"><path
id="path6511"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-3c4fecf2-1"
overflow="visible"
style="overflow:visible"><path
id="path6514"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-3c4fecf2-2"
overflow="visible"
style="overflow:visible"><path
id="path6517"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-3c4fecf2-3"><g
id="g6528"
style="fill:#000000;fill-opacity:1"><use
id="use6524"
y="134.765"
x="223.43201"
xlink:href="#textext-3c4fecf2-1"
width="100%"
height="100%" /><use
id="use6526"
y="134.765"
x="228.4133"
xlink:href="#textext-3c4fecf2-2"
width="100%"
height="100%" /></g></g></g><g
ns0:text="$10$"
ns0:preamble=""
transform="matrix(3.3526202,0,0,-3.3526202,-702.25338,765.13981)"
id="g7026"><defs
id="defs7017"><g
id="g7015"><symbol
overflow="visible"
id="textext-b7a7f081-0"
style="overflow:visible"><path
style="stroke:none"
d=""
id="path7006"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-b7a7f081-1"
style="overflow:visible"><path
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path7009"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-b7a7f081-2"
style="overflow:visible"><path
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path7012"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-b7a7f081-3"><g
style="fill:#000000;fill-opacity:1"
id="g7023"><use
xlink:href="#textext-b7a7f081-1"
x="223.43201"
y="134.765"
id="use7019"
width="100%"
height="100%" /><use
xlink:href="#textext-b7a7f081-2"
x="228.4133"
y="134.765"
id="use7021"
width="100%"
height="100%" /></g></g></g><g
id="g7516"
transform="matrix(3.3526202,0,0,-3.3526202,-700.94376,679.36081)"
ns0:preamble=""
ns0:text="$5$"><defs
id="defs7509"><g
id="g7507"><symbol
id="textext-b0ade6ba-0"
overflow="visible"
style="overflow:visible"><path
id="path7501"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-b0ade6ba-1"
overflow="visible"
style="overflow:visible"><path
id="path7504"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-b0ade6ba-2"><g
id="g7513"
style="fill:#000000;fill-opacity:1"><use
id="use7511"
y="134.765"
x="223.43201"
xlink:href="#textext-b0ade6ba-1"
width="100%"
height="100%" /></g></g></g><g
ns0:text="$51$"
ns0:preamble=""
transform="matrix(3.3526202,0,0,-3.3526202,-529.35213,653.65636)"
id="g7998"><defs
id="defs7989"><g
id="g7987"><symbol
overflow="visible"
id="textext-7ac8e0a5-0"
style="overflow:visible"><path
style="stroke:none"
d=""
id="path7978"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-7ac8e0a5-1"
style="overflow:visible"><path
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path7981"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-7ac8e0a5-2"
style="overflow:visible"><path
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path7984"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-7ac8e0a5-3"><g
style="fill:#000000;fill-opacity:1"
id="g7995"><use
xlink:href="#textext-7ac8e0a5-1"
x="223.43201"
y="134.765"
id="use7991"
width="100%"
height="100%" /><use
xlink:href="#textext-7ac8e0a5-2"
x="228.4133"
y="134.765"
id="use7993"
width="100%"
height="100%" /></g></g></g><g
id="g8473"
transform="matrix(3.3526202,0,0,-3.3526202,-376.23773,653.65636)"
ns0:preamble=""
ns0:text="$52$"><defs
id="defs8464"><g
id="g8462"><symbol
id="textext-60c3c05f-0"
overflow="visible"
style="overflow:visible"><path
id="path8453"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-60c3c05f-1"
overflow="visible"
style="overflow:visible"><path
id="path8456"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-60c3c05f-2"
overflow="visible"
style="overflow:visible"><path
id="path8459"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-60c3c05f-3"><g
id="g8470"
style="fill:#000000;fill-opacity:1"><use
id="use8466"
y="134.765"
x="223.43201"
xlink:href="#textext-60c3c05f-1"
width="100%"
height="100%" /><use
id="use8468"
y="134.765"
x="228.4133"
xlink:href="#textext-60c3c05f-2"
width="100%"
height="100%" /></g></g></g><g
ns0:text="$53$"
ns0:preamble=""
transform="matrix(3.3526202,0,0,-3.3526202,-244.93687,653.65636)"
id="g8948"><defs
id="defs8939"><g
id="g8937"><symbol
overflow="visible"
id="textext-140dc5a0-0"
style="overflow:visible"><path
style="stroke:none"
d=""
id="path8928"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-140dc5a0-1"
style="overflow:visible"><path
style="stroke:none"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
id="path8931"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-140dc5a0-2"
style="overflow:visible"><path
style="stroke:none"
d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0"
id="path8934"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-140dc5a0-3"><g
style="fill:#000000;fill-opacity:1"
id="g8945"><use
xlink:href="#textext-140dc5a0-1"
x="223.43201"
y="134.765"
id="use8941"
width="100%"
height="100%" /><use
xlink:href="#textext-140dc5a0-2"
x="228.4133"
y="134.765"
id="use8943"
width="100%"
height="100%" /></g></g></g><g
id="g9423"
transform="matrix(3.3526202,0,0,-3.3526202,-94.758904,653.47301)"
ns0:preamble=""
ns0:text="$54$"><defs
id="defs9414"><g
id="g9412"><symbol
id="textext-2541a996-0"
overflow="visible"
style="overflow:visible"><path
id="path9403"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-2541a996-1"
overflow="visible"
style="overflow:visible"><path
id="path9406"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-2541a996-2"
overflow="visible"
style="overflow:visible"><path
id="path9409"
d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-2541a996-3"><g
id="g9420"
style="fill:#000000;fill-opacity:1"><use
id="use9416"
y="134.765"
x="223.43201"
xlink:href="#textext-2541a996-1"
width="100%"
height="100%" /><use
id="use9418"
y="134.765"
x="228.4133"
xlink:href="#textext-2541a996-2"
width="100%"
height="100%" /></g></g></g></g></svg>
\ No newline at end of file
File added
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:ns0="http://www.iki.fi/pav/software/textext/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg2"
xml:space="preserve"
width="816"
height="1056"
viewBox="0 0 816 1056"
sodipodi:docname="graph_salaires.svg"
inkscape:version="0.92.1 r15371"><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview4"
showgrid="false"
inkscape:zoom="0.89393939"
inkscape:cx="374.45108"
inkscape:cy="456.38354"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g10" /><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs6"><g
id="g4755-5"><symbol
id="textext-c678d1ad-0-6"
overflow="visible"
style="overflow:visible"><path
id="path4746-2"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-1-9"
overflow="visible"
style="overflow:visible"><path
id="path4749-1"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-2-2"
overflow="visible"
style="overflow:visible"><path
id="path4752-7"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g><g
id="g4755-7"><symbol
id="textext-c678d1ad-0-9"
overflow="visible"
style="overflow:visible"><path
id="path4746-20"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-1-2"
overflow="visible"
style="overflow:visible"><path
id="path4749-3"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-2-7"
overflow="visible"
style="overflow:visible"><path
id="path4752-5"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g><g
id="g4755-3"><symbol
id="textext-c678d1ad-0-1"
overflow="visible"
style="overflow:visible"><path
id="path4746-9"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-1-4"
overflow="visible"
style="overflow:visible"><path
id="path4749-7"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-2-8"
overflow="visible"
style="overflow:visible"><path
id="path4752-4"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g><g
id="g4755-6"><symbol
id="textext-c678d1ad-0-5"
overflow="visible"
style="overflow:visible"><path
id="path4746-6"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-1-93"
overflow="visible"
style="overflow:visible"><path
id="path4749-74"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-2-5"
overflow="visible"
style="overflow:visible"><path
id="path4752-2"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g><g
id="g4755-4"><symbol
id="textext-c678d1ad-0-3"
overflow="visible"
style="overflow:visible"><path
id="path4746-1"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-1-49"
overflow="visible"
style="overflow:visible"><path
id="path4749-2"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-2-0"
overflow="visible"
style="overflow:visible"><path
id="path4752-6"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g><g
id="g4755-72"><symbol
id="textext-c678d1ad-0-2"
overflow="visible"
style="overflow:visible"><path
id="path4746-61"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-1-0"
overflow="visible"
style="overflow:visible"><path
id="path4749-6"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-c678d1ad-2-1"
overflow="visible"
style="overflow:visible"><path
id="path4752-59"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g><g
id="g5432-7"><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-0-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5402-7" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-1-3"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path5405-6" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-2-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path5408-6" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-3-3"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path5411-9" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-4-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5414-8" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-5-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path5417-2" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-6-9"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5420-3" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-7-9"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path5423-0" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-8-8"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5426-8" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-9-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path5429-0" /></symbol></g><g
id="g5432-0"><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-0-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5402-4" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-1-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path5405-4" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-2-7"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path5408-63" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-3-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path5411-7" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-4-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5414-9" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-5-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path5417-21" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-6-7"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5420-8" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-7-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path5423-7" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-8-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5426-1" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-9-8"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path5429-5" /></symbol></g><g
id="g5432-8"><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-0-8"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5402-9" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-1-7"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path5405-7" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-2-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path5408-4" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-3-30"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path5411-3" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-4-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5414-92" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-5-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path5417-4" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-6-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5420-5" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-7-94"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path5423-6" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-8-9"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5426-2" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-9-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path5429-4" /></symbol></g><g
id="g5432-08"><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-0-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5402-0" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-1-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path5405-46" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-2-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path5408-5" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-3-8"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path5411-6" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-4-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5414-84" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-5-7"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path5417-24" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-6-06"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5420-2" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-7-99"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path5423-08" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-8-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5426-3" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-9-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path5429-1" /></symbol></g><g
id="g5432-4"><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-0-62"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5402-6" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-1-75"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path5405-69" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-2-8"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path5408-7" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-3-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path5411-8" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-4-29"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5414-96" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-5-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path5417-27" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-6-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5420-1" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-7-3"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path5423-2" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-8-15"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5426-9" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-9-9"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path5429-14" /></symbol></g><g
id="g5432-05"><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-0-52"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5402-90" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-1-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path5405-8" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-2-3"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path5408-8" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-3-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path5411-4" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-4-09"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5414-1" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-5-9"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path5417-6" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-6-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5420-54" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-7-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path5423-9" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-8-93"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5426-6" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-791eb30f-9-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path5429-50" /></symbol></g><g
id="g6959-2"><symbol
style="overflow:visible"
id="textext-7008435c-0-8"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6953-8"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-7008435c-1-8"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6956-6"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g><g
id="g6959-3"><symbol
style="overflow:visible"
id="textext-7008435c-0-80"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6953-4"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-7008435c-1-7"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6956-68"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g><g
id="g6959-33"><symbol
style="overflow:visible"
id="textext-7008435c-0-3"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6953-7"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-7008435c-1-3"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6956-2"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g><g
id="g6959-8"><symbol
style="overflow:visible"
id="textext-7008435c-0-7"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6953-9"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-7008435c-1-6"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6956-0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g><g
id="g6959-7"><symbol
style="overflow:visible"
id="textext-7008435c-0-0"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6953-86"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-7008435c-1-2"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6956-4"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g><g
id="g6959-83"><symbol
style="overflow:visible"
id="textext-7008435c-0-01"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6953-78"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-7008435c-1-9"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6956-1"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g><g
id="g6959-4"><symbol
style="overflow:visible"
id="textext-7008435c-0-9"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6953-94"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-7008435c-1-5"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6956-9"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g><g
id="g6959-78"><symbol
style="overflow:visible"
id="textext-7008435c-0-2"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6953-5"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-7008435c-1-34"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6956-90"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g></defs><g
transform="matrix(1.3333333,0,0,-1.3333333,0,1056)"
inkscape:label="graph_salaires"
inkscape:groupmode="layer"
id="g10"><path
sodipodi:nodetypes="cc"
d="M 92.8801,228.52 H 628.56"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path18"
inkscape:connector-curvature="0" /><path
sodipodi:nodetypes="cc"
d="M 92.8801,580.6 H 628.56"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path20"
inkscape:connector-curvature="0" /><path
d="M 92.8801,228.52 V 580.6"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path22"
inkscape:connector-curvature="0" /><path
d="M 628.56,228.52 V 580.6"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path24"
inkscape:connector-curvature="0" /><path
d="m 92.8801,228.52 v 4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path26"
inkscape:connector-curvature="0" /><path
d="m 92.8801,580.6 v -4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path28"
inkscape:connector-curvature="0" /><path
d="m 182.16,228.52 v 4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path30"
inkscape:connector-curvature="0" /><path
d="m 182.16,580.6 v -4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path32"
inkscape:connector-curvature="0" /><path
d="m 271.44,228.52 v 4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path34"
inkscape:connector-curvature="0" /><path
d="m 271.44,580.6 v -4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path36"
inkscape:connector-curvature="0" /><path
d="m 360.72,228.52 v 4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path38"
inkscape:connector-curvature="0" /><path
d="m 360.72,580.6 v -4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path40"
inkscape:connector-curvature="0" /><path
d="m 450,228.52 v 4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path42"
inkscape:connector-curvature="0" /><path
d="m 450,580.6 v -4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path44"
inkscape:connector-curvature="0" /><path
d="m 539.28,228.52 v 4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path46"
inkscape:connector-curvature="0" /><path
d="m 539.28,580.6 v -4.465"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path48"
inkscape:connector-curvature="0" /><path
d="M 92.8801,228.52 H 97.348"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path56"
inkscape:connector-curvature="0" /><path
d="m 541.514,228.52 h -4.468"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path58"
inkscape:connector-curvature="0" /><path
d="M 92.8801,278.818 H 97.348"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path60"
inkscape:connector-curvature="0" /><path
d="m 628.51333,278.818 h -4.468"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path62"
inkscape:connector-curvature="0" /><path
d="M 92.8801,329.114 H 97.348"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path64"
inkscape:connector-curvature="0" /><path
d="m 628.51333,329.114 h -4.468"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path66"
inkscape:connector-curvature="0" /><path
d="M 92.8801,379.412 H 97.348"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path68"
inkscape:connector-curvature="0" /><path
d="m 628.51333,379.412 h -4.468"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path70"
inkscape:connector-curvature="0" /><path
d="M 92.8801,429.708 H 97.348"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path72"
inkscape:connector-curvature="0" /><path
d="m 628.51333,429.708 h -4.468"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path74"
inkscape:connector-curvature="0" /><path
d="M 92.8801,480.006 H 97.348"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path76"
inkscape:connector-curvature="0" /><path
d="m 628.51333,480.006 h -4.468"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path78"
inkscape:connector-curvature="0" /><path
d="M 92.8801,530.303 H 97.348"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path80"
inkscape:connector-curvature="0" /><path
d="m 628.51333,530.303 h -4.468"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path82"
inkscape:connector-curvature="0" /><path
d="M 92.8801,580.6 H 97.348"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path84"
inkscape:connector-curvature="0" /><path
d="m 539.28,580.6 h -4.468"
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path86"
inkscape:connector-curvature="0" /><path
d="m 107.736,583.6 6,-6"
style="fill:none;stroke:#000000;stroke-width:3.00000008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path108"
inkscape:connector-curvature="0" /><path
d="m 107.736,577.6 6,6"
style="fill:none;stroke:#000000;stroke-width:3.00000008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path110"
inkscape:connector-curvature="0" /><path
d="m 112.2,432.708 6,-6"
style="fill:none;stroke:#000000;stroke-width:3.00000008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path112"
inkscape:connector-curvature="0" /><path
d="m 112.2,426.708 6,6"
style="fill:none;stroke:#000000;stroke-width:3.00000008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path114"
inkscape:connector-curvature="0" /><path
d="m 116.664,281.817 6,-6"
style="fill:none;stroke:#000000;stroke-width:3.00000008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path116"
inkscape:connector-curvature="0" /><path
d="m 116.664,275.817 6,6"
style="fill:none;stroke:#000000;stroke-width:3.00000008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path118"
inkscape:connector-curvature="0" /><path
d="m 536.28,241.58 6,-6"
style="fill:none;stroke:#000000;stroke-width:3.00000008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path120"
inkscape:connector-curvature="0" /><path
d="m 536.28,235.58 6,6"
style="fill:none;stroke:#000000;stroke-width:3.00000008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path122"
inkscape:connector-curvature="0" /><path
inkscape:connector-curvature="0"
id="path4654"
d="M 119.24337,278.82779 V 228.99474"
style="fill:none;stroke:#000000;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path4656"
d="M 115.09062,429.81008 V 228.69811"
style="fill:none;stroke:#000000;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path4658"
d="M 110.64124,580.49573 V 228.40149"
style="fill:none;stroke:#000000;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
d="m 539.28,228.52 v 4.465"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path42-3"
inkscape:connector-curvature="0" /><path
d="m 628.56,228.52 v 4.465"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path46-6"
inkscape:connector-curvature="0" /><path
d="m 628.56,228.52 h -4.468"
style="fill:none;stroke:#000000;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:16, 0;stroke-dashoffset:0;stroke-opacity:1"
id="path58-7"
inkscape:connector-curvature="0" /><path
inkscape:connector-curvature="0"
id="path4681"
d="m 539.28,228.52 v 9.85607"
style="fill:none;stroke:#000000;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><g
ns0:text="$1.2\\cdot10^6$"
ns0:preamble=""
transform="matrix(1.3299829,0,0,-1.3299829,308.55231,391.17775)"
id="g5463-9"><defs
id="defs5434-7"><g
id="g5858"><symbol
style="overflow:visible"
overflow="visible"
id="symbol5820"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5818" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="symbol5824"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path5822" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="symbol5828"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path5826" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="symbol5832"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path5830" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="symbol5836"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5834" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="symbol5840"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path5838" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="symbol5844"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5842" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="symbol5848"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path5846" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="symbol5852"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path5850" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="symbol5856"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path5854" /></symbol></g></defs><g
id="textext-791eb30f-10-9"><g
style="fill:#000000;fill-opacity:1"
id="g5438-6"><use
height="100%"
width="100%"
xlink:href="#textext-791eb30f-1-3"
x="223.43201"
y="134.765"
id="use5436-3" /></g><g
style="fill:#000000;fill-opacity:1"
id="g5442-8"><use
height="100%"
width="100%"
xlink:href="#textext-791eb30f-5-1"
x="228.41299"
y="134.765"
id="use5440-5" /></g><g
style="fill:#000000;fill-opacity:1"
id="g5446-6"><use
height="100%"
width="100%"
xlink:href="#textext-791eb30f-2-5"
x="231.181"
y="134.765"
id="use5444-1" /></g><g
style="fill:#000000;fill-opacity:1"
id="g5450-1"><use
height="100%"
width="100%"
xlink:href="#textext-791eb30f-7-9"
x="238.37601"
y="134.765"
id="use5448-5" /></g><g
style="fill:#000000;fill-opacity:1"
id="g5456-9"><use
height="100%"
width="100%"
xlink:href="#textext-791eb30f-1-3"
x="243.35699"
y="134.765"
id="use5452-8" /><use
height="100%"
width="100%"
xlink:href="#textext-791eb30f-3-3"
x="248.3383"
y="134.765"
id="use5454-4" /></g><g
style="fill:#000000;fill-opacity:1"
id="g5460-8"><use
height="100%"
width="100%"
xlink:href="#textext-791eb30f-9-5"
x="253.32001"
y="131.14999"
id="use5458-1" /></g></g></g><g
id="g6968"
transform="matrix(1.6400912,0,0,-1.6400912,-277.64337,433.03734)"
ns0:preamble=""
ns0:text="$0$"><defs
id="defs6961"><g
id="g6959"><symbol
style="overflow:visible"
id="textext-7008435c-0"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6953"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-7008435c-1"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path6956"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g></defs><g
id="textext-7008435c-2"><g
id="g6965"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use6963"
y="134.765"
x="223.43201"
xlink:href="#textext-7008435c-1" /></g></g></g><g
ns0:text="$0.2\\cdot10^6$"
ns0:preamble=""
transform="matrix(1.3299829,0,0,-1.3299829,-137.5152,391.17775)"
id="g7922"><defs
id="defs7893"><g
id="g7891"><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path7861" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path7864" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path7867" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-3"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path7870" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path7873" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path7876" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path7879" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-7"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path7882" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-8"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path7885" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-ba2aeffa-9"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path7888" /></symbol></g></defs><g
id="textext-ba2aeffa-10"><g
style="fill:#000000;fill-opacity:1"
id="g7897"><use
height="100%"
width="100%"
xlink:href="#textext-ba2aeffa-1"
x="223.43201"
y="134.765"
id="use7895" /></g><g
style="fill:#000000;fill-opacity:1"
id="g7901"><use
height="100%"
width="100%"
xlink:href="#textext-ba2aeffa-5"
x="228.41299"
y="134.765"
id="use7899" /></g><g
style="fill:#000000;fill-opacity:1"
id="g7905"><use
height="100%"
width="100%"
xlink:href="#textext-ba2aeffa-2"
x="231.181"
y="134.765"
id="use7903" /></g><g
style="fill:#000000;fill-opacity:1"
id="g7909"><use
height="100%"
width="100%"
xlink:href="#textext-ba2aeffa-7"
x="238.37601"
y="134.765"
id="use7907" /></g><g
style="fill:#000000;fill-opacity:1"
id="g7915"><use
height="100%"
width="100%"
xlink:href="#textext-ba2aeffa-3"
x="243.35699"
y="134.765"
id="use7911" /><use
height="100%"
width="100%"
xlink:href="#textext-ba2aeffa-1"
x="248.3383"
y="134.765"
id="use7913" /></g><g
style="fill:#000000;fill-opacity:1"
id="g7919"><use
height="100%"
width="100%"
xlink:href="#textext-ba2aeffa-9"
x="253.32001"
y="131.14999"
id="use7917" /></g></g></g><g
id="g8876"
transform="matrix(1.3299829,0,0,-1.3299829,-48.235198,391.17775)"
ns0:preamble=""
ns0:text="$0.4\\cdot10^6$"><defs
id="defs8847"><g
id="g8845"><symbol
style="overflow:visible"
id="textext-377b353b-0"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8815"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-377b353b-1"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8818"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-377b353b-2"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8821"
d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-377b353b-3"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8824"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-377b353b-4"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8827"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-377b353b-5"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8830"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-377b353b-6"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8833"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-377b353b-7"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8836"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-377b353b-8"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8839"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-377b353b-9"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path8842"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
style="stroke:none" /></symbol></g></defs><g
id="textext-377b353b-10"><g
id="g8851"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use8849"
y="134.765"
x="223.43201"
xlink:href="#textext-377b353b-1" /></g><g
id="g8855"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use8853"
y="134.765"
x="228.41299"
xlink:href="#textext-377b353b-5" /></g><g
id="g8859"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use8857"
y="134.765"
x="231.181"
xlink:href="#textext-377b353b-2" /></g><g
id="g8863"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use8861"
y="134.765"
x="238.37601"
xlink:href="#textext-377b353b-7" /></g><g
id="g8869"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use8865"
y="134.765"
x="243.35699"
xlink:href="#textext-377b353b-3" /><use
height="100%"
width="100%"
id="use8867"
y="134.765"
x="248.3383"
xlink:href="#textext-377b353b-1" /></g><g
id="g8873"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use8871"
y="131.14999"
x="253.32001"
xlink:href="#textext-377b353b-9" /></g></g></g><g
ns0:text="$0.6\\cdot10^6$"
ns0:preamble=""
transform="matrix(1.3299829,0,0,-1.3299829,41.044802,391.17775)"
id="g9830"><defs
id="defs9801"><g
id="g9799"><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path9769" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path9772" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.3125,-3.265625 v -0.25 c 0,-2.515625 1.234375,-2.875 1.75,-2.875 0.234375,0 0.65625,0.0625 0.875,0.40625 -0.15625,0 -0.546875,0 -0.546875,0.4375 0,0.3125 0.234375,0.46875 0.453125,0.46875 0.15625,0 0.46875,-0.09375 0.46875,-0.484375 0,-0.59375 -0.4375,-1.078125 -1.265625,-1.078125 -1.28125,0 -2.625,1.28125 -2.625,3.484375 0,2.671875 1.15625,3.375 2.078125,3.375 1.109375,0 2.0625,-0.9375 2.0625,-2.25 0,-1.265625 -0.890625,-2.21875 -2,-2.21875 -0.671875,0 -1.046875,0.5 -1.25,0.984375 z M 2.5,-0.0625 c -0.625,0 -0.921875,-0.59375 -0.984375,-0.75 -0.1875,-0.46875 -0.1875,-1.265625 -0.1875,-1.4375 0,-0.78125 0.328125,-1.78125 1.21875,-1.78125 0.171875,0 0.625,0 0.9375,0.625 0.171875,0.359375 0.171875,0.875 0.171875,1.359375 0,0.484375 0,0.984375 -0.171875,1.34375 C 3.1875,-0.109375 2.734375,-0.0625 2.5,-0.0625 Z m 0,0"
id="path9775" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-3"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path9778" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path9781" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path9784" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path9787" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-7"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path9790" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-8"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path9793" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-4d452efd-9"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path9796" /></symbol></g></defs><g
id="textext-4d452efd-10"><g
style="fill:#000000;fill-opacity:1"
id="g9805"><use
height="100%"
width="100%"
xlink:href="#textext-4d452efd-1"
x="223.43201"
y="134.765"
id="use9803" /></g><g
style="fill:#000000;fill-opacity:1"
id="g9809"><use
height="100%"
width="100%"
xlink:href="#textext-4d452efd-5"
x="228.41299"
y="134.765"
id="use9807" /></g><g
style="fill:#000000;fill-opacity:1"
id="g9813"><use
height="100%"
width="100%"
xlink:href="#textext-4d452efd-2"
x="231.181"
y="134.765"
id="use9811" /></g><g
style="fill:#000000;fill-opacity:1"
id="g9817"><use
height="100%"
width="100%"
xlink:href="#textext-4d452efd-7"
x="238.37601"
y="134.765"
id="use9815" /></g><g
style="fill:#000000;fill-opacity:1"
id="g9823"><use
height="100%"
width="100%"
xlink:href="#textext-4d452efd-3"
x="243.35699"
y="134.765"
id="use9819" /><use
height="100%"
width="100%"
xlink:href="#textext-4d452efd-1"
x="248.3383"
y="134.765"
id="use9821" /></g><g
style="fill:#000000;fill-opacity:1"
id="g9827"><use
height="100%"
width="100%"
xlink:href="#textext-4d452efd-9"
x="253.32001"
y="131.14999"
id="use9825" /></g></g></g><g
id="g10784"
transform="matrix(1.3299829,0,0,-1.3299829,130.3248,391.17775)"
ns0:preamble=""
ns0:text="$0.8\\cdot10^6$"><defs
id="defs10755"><g
id="g10753"><symbol
style="overflow:visible"
id="textext-4921b6cf-0"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10723"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-4921b6cf-1"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10726"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-4921b6cf-2"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10729"
d="m 1.625,-4.5625 c -0.453125,-0.296875 -0.5,-0.625 -0.5,-0.796875 0,-0.609375 0.65625,-1.03125 1.359375,-1.03125 0.71875,0 1.359375,0.515625 1.359375,1.234375 0,0.578125 -0.390625,1.046875 -0.984375,1.390625 z m 1.453125,0.953125 C 3.796875,-3.984375 4.28125,-4.5 4.28125,-5.15625 c 0,-0.921875 -0.875,-1.484375 -1.78125,-1.484375 -1,0 -1.8125,0.734375 -1.8125,1.671875 0,0.171875 0.015625,0.625 0.4375,1.09375 0.109375,0.109375 0.484375,0.359375 0.734375,0.53125 C 1.28125,-3.046875 0.421875,-2.5 0.421875,-1.5 c 0,1.046875 1.015625,1.71875 2.0625,1.71875 1.125,0 2.078125,-0.828125 2.078125,-1.890625 0,-0.359375 -0.109375,-0.8125 -0.5,-1.234375 C 3.875,-3.109375 3.71875,-3.203125 3.078125,-3.609375 Z m -1,0.421875 1.234375,0.78125 c 0.28125,0.1875 0.75,0.484375 0.75,1.09375 0,0.734375 -0.75,1.25 -1.5625,1.25 -0.859375,0 -1.578125,-0.609375 -1.578125,-1.4375 0,-0.578125 0.3125,-1.21875 1.15625,-1.6875 z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-4921b6cf-3"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10732"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-4921b6cf-4"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10735"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-4921b6cf-5"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10738"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-4921b6cf-6"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10741"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-4921b6cf-7"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10744"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-4921b6cf-8"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10747"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="textext-4921b6cf-9"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path10750"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
style="stroke:none" /></symbol></g></defs><g
id="textext-4921b6cf-10"><g
id="g10759"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use10757"
y="134.765"
x="223.43201"
xlink:href="#textext-4921b6cf-1" /></g><g
id="g10763"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use10761"
y="134.765"
x="228.41299"
xlink:href="#textext-4921b6cf-5" /></g><g
id="g10767"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use10765"
y="134.765"
x="231.181"
xlink:href="#textext-4921b6cf-2" /></g><g
id="g10771"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use10769"
y="134.765"
x="238.37601"
xlink:href="#textext-4921b6cf-7" /></g><g
id="g10777"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use10773"
y="134.765"
x="243.35699"
xlink:href="#textext-4921b6cf-3" /><use
height="100%"
width="100%"
id="use10775"
y="134.765"
x="248.3383"
xlink:href="#textext-4921b6cf-1" /></g><g
id="g10781"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use10779"
y="131.14999"
x="253.32001"
xlink:href="#textext-4921b6cf-9" /></g></g></g><g
ns0:text="$1.0\\cdot10^6$"
ns0:preamble=""
transform="matrix(1.3299829,0,0,-1.3299829,219.27231,391.17775)"
id="g11735"><defs
id="defs11706"><g
id="g11704"><symbol
style="overflow:visible"
overflow="visible"
id="textext-058e7111-0"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path11677" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-058e7111-1"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path11680" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-058e7111-2"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path11683" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-058e7111-3"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path11686" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-058e7111-4"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
id="path11689" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-058e7111-5"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path11692" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-058e7111-6"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.90625,-2.5 c 0,-0.28125 -0.234375,-0.515625 -0.515625,-0.515625 -0.296875,0 -0.53125,0.234375 -0.53125,0.515625 0,0.296875 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.234375 0.515625,-0.53125 z m 0,0"
id="path11695" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-058e7111-7"><path
inkscape:connector-curvature="0"
style="stroke:none"
d=""
id="path11698" /></symbol><symbol
style="overflow:visible"
overflow="visible"
id="textext-058e7111-8"><path
inkscape:connector-curvature="0"
style="stroke:none"
d="m 1.046875,-2.28125 c 0,-0.5625 0.046875,-1.078125 0.3125,-1.515625 0.234375,-0.375 0.609375,-0.625 1.0625,-0.625 0.203125,0 0.484375,0.046875 0.625,0.234375 C 2.875,-4.171875 2.71875,-4.046875 2.71875,-3.84375 c 0,0.171875 0.125,0.328125 0.328125,0.328125 0.21875,0 0.34375,-0.140625 0.34375,-0.34375 0,-0.40625 -0.296875,-0.765625 -0.984375,-0.765625 -1,0 -2.03125,0.921875 -2.03125,2.421875 0,1.796875 0.84375,2.34375 1.625,2.34375 0.84375,0 1.578125,-0.65625 1.578125,-1.5625 0,-0.890625 -0.703125,-1.546875 -1.515625,-1.546875 -0.5625,0 -0.859375,0.375 -1.015625,0.6875 z M 2,-0.078125 c -0.359375,0 -0.625,-0.203125 -0.78125,-0.515625 C 1.125,-0.796875 1.0625,-1.15625 1.0625,-1.5625 c 0,-0.6875 0.40625,-1.203125 0.96875,-1.203125 0.3125,0 0.53125,0.125 0.703125,0.375 0.171875,0.265625 0.171875,0.5625 0.171875,0.96875 0,0.390625 0,0.6875 -0.1875,0.96875 -0.15625,0.234375 -0.390625,0.375 -0.71875,0.375 z m 0,0"
id="path11701" /></symbol></g></defs><g
id="textext-058e7111-9"><g
style="fill:#000000;fill-opacity:1"
id="g11710"><use
height="100%"
width="100%"
xlink:href="#textext-058e7111-1"
x="223.43201"
y="134.765"
id="use11708" /></g><g
style="fill:#000000;fill-opacity:1"
id="g11714"><use
height="100%"
width="100%"
xlink:href="#textext-058e7111-4"
x="228.41299"
y="134.765"
id="use11712" /></g><g
style="fill:#000000;fill-opacity:1"
id="g11718"><use
height="100%"
width="100%"
xlink:href="#textext-058e7111-2"
x="231.181"
y="134.765"
id="use11716" /></g><g
style="fill:#000000;fill-opacity:1"
id="g11722"><use
height="100%"
width="100%"
xlink:href="#textext-058e7111-6"
x="238.37601"
y="134.765"
id="use11720" /></g><g
style="fill:#000000;fill-opacity:1"
id="g11728"><use
height="100%"
width="100%"
xlink:href="#textext-058e7111-1"
x="243.35699"
y="134.765"
id="use11724" /><use
height="100%"
width="100%"
xlink:href="#textext-058e7111-2"
x="248.3383"
y="134.765"
id="use11726" /></g><g
style="fill:#000000;fill-opacity:1"
id="g11732"><use
height="100%"
width="100%"
xlink:href="#textext-058e7111-8"
x="253.32001"
y="131.14999"
id="use11730" /></g></g></g><g
id="g6968-8"
transform="matrix(1.6400912,0,0,-1.6400912,-284.92973,444.28066)"
ns0:preamble=""
ns0:text="$0$"><defs
id="defs6961-9"><g
id="g12245"><symbol
style="overflow:visible"
id="symbol12239"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path12237"
d=""
style="stroke:none" /></symbol><symbol
style="overflow:visible"
id="symbol12243"
overflow="visible"><path
inkscape:connector-curvature="0"
id="path12241"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none" /></symbol></g></defs><g
id="textext-7008435c-2-8"><g
id="g6965-3"
style="fill:#000000;fill-opacity:1"><use
height="100%"
width="100%"
id="use6963-8"
y="134.765"
x="223.43201"
xlink:href="#textext-7008435c-1-8" /></g></g></g><g
id="g13078"
transform="matrix(1.6400912,0,0,-1.6400912,-292.92012,796.36066)"
ns0:preamble=""
ns0:text="$35$"><defs
id="defs13069"><g
id="g13067"><symbol
id="textext-e223c5bc-0"
overflow="visible"
style="overflow:visible"><path
id="path13058"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-e223c5bc-1"
overflow="visible"
style="overflow:visible"><path
id="path13061"
d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-e223c5bc-2"
overflow="visible"
style="overflow:visible"><path
id="path13064"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-e223c5bc-3"><g
id="g13075"
style="fill:#000000;fill-opacity:1"><use
id="use13071"
y="134.765"
x="223.43201"
xlink:href="#textext-e223c5bc-1"
width="100%"
height="100%" /><use
id="use13073"
y="134.765"
x="228.4133"
xlink:href="#textext-e223c5bc-2"
width="100%"
height="100%" /></g></g></g><g
ns0:text="$30$"
ns0:preamble=""
transform="matrix(1.6400912,0,0,-1.6400912,-293.0995,746.06366)"
id="g14254"><defs
id="defs14245"><g
id="g14243"><symbol
overflow="visible"
id="textext-6cecec8e-0"
style="overflow:visible"><path
style="stroke:none"
d=""
id="path14234"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-6cecec8e-1"
style="overflow:visible"><path
style="stroke:none"
d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0"
id="path14237"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-6cecec8e-2"
style="overflow:visible"><path
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path14240"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-6cecec8e-3"><g
style="fill:#000000;fill-opacity:1"
id="g14251"><use
xlink:href="#textext-6cecec8e-1"
x="223.43201"
y="134.765"
id="use14247"
width="100%"
height="100%" /><use
xlink:href="#textext-6cecec8e-2"
x="228.4133"
y="134.765"
id="use14249"
width="100%"
height="100%" /></g></g></g><g
id="g15436"
transform="matrix(1.6400912,0,0,-1.6400912,-292.92012,695.76666)"
ns0:preamble=""
ns0:text="$25$"><defs
id="defs15427"><g
id="g15425"><symbol
id="textext-db4aed49-0"
overflow="visible"
style="overflow:visible"><path
id="path15416"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-db4aed49-1"
overflow="visible"
style="overflow:visible"><path
id="path15419"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-db4aed49-2"
overflow="visible"
style="overflow:visible"><path
id="path15422"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-db4aed49-3"><g
id="g15433"
style="fill:#000000;fill-opacity:1"><use
id="use15429"
y="134.765"
x="223.43201"
xlink:href="#textext-db4aed49-1"
width="100%"
height="100%" /><use
id="use15431"
y="134.765"
x="228.4133"
xlink:href="#textext-db4aed49-2"
width="100%"
height="100%" /></g></g></g><g
ns0:text="$20$"
ns0:preamble=""
transform="matrix(1.6400912,0,0,-1.6400912,-293.0995,645.46866)"
id="g16624"><defs
id="defs16615"><g
id="g16613"><symbol
overflow="visible"
id="textext-ba401d57-0"
style="overflow:visible"><path
style="stroke:none"
d=""
id="path16604"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-ba401d57-1"
style="overflow:visible"><path
style="stroke:none"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
id="path16607"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-ba401d57-2"
style="overflow:visible"><path
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path16610"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-ba401d57-3"><g
style="fill:#000000;fill-opacity:1"
id="g16621"><use
xlink:href="#textext-ba401d57-1"
x="223.43201"
y="134.765"
id="use16617"
width="100%"
height="100%" /><use
xlink:href="#textext-ba401d57-2"
x="228.4133"
y="134.765"
id="use16619"
width="100%"
height="100%" /></g></g></g><g
id="g17818"
transform="matrix(1.6400912,0,0,-1.6400912,-292.92012,595.17266)"
ns0:preamble=""
ns0:text="$15$"><defs
id="defs17809"><g
id="g17807"><symbol
id="textext-3c4fecf2-0"
overflow="visible"
style="overflow:visible"><path
id="path17798"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-3c4fecf2-1"
overflow="visible"
style="overflow:visible"><path
id="path17801"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-3c4fecf2-2"
overflow="visible"
style="overflow:visible"><path
id="path17804"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-3c4fecf2-3"><g
id="g17815"
style="fill:#000000;fill-opacity:1"><use
id="use17811"
y="134.765"
x="223.43201"
xlink:href="#textext-3c4fecf2-1"
width="100%"
height="100%" /><use
id="use17813"
y="134.765"
x="228.4133"
xlink:href="#textext-3c4fecf2-2"
width="100%"
height="100%" /></g></g></g><g
ns0:text="$10$"
ns0:preamble=""
transform="matrix(1.6400912,0,0,-1.6400912,-293.0995,544.87466)"
id="g19018"><defs
id="defs19009"><g
id="g19007"><symbol
overflow="visible"
id="textext-b7a7f081-0"
style="overflow:visible"><path
style="stroke:none"
d=""
id="path18998"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-b7a7f081-1"
style="overflow:visible"><path
style="stroke:none"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
id="path19001"
inkscape:connector-curvature="0" /></symbol><symbol
overflow="visible"
id="textext-b7a7f081-2"
style="overflow:visible"><path
style="stroke:none"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
id="path19004"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-b7a7f081-3"><g
style="fill:#000000;fill-opacity:1"
id="g19015"><use
xlink:href="#textext-b7a7f081-1"
x="223.43201"
y="134.765"
id="use19011"
width="100%"
height="100%" /><use
xlink:href="#textext-b7a7f081-2"
x="228.4133"
y="134.765"
id="use19013"
width="100%"
height="100%" /></g></g></g><g
id="g20219"
transform="matrix(1.6400912,0,0,-1.6400912,-284.75035,494.57866)"
ns0:preamble=""
ns0:text="$5$"><defs
id="defs20212"><g
id="g20210"><symbol
id="textext-b0ade6ba-0"
overflow="visible"
style="overflow:visible"><path
id="path20204"
d=""
style="stroke:none"
inkscape:connector-curvature="0" /></symbol><symbol
id="textext-b0ade6ba-1"
overflow="visible"
style="overflow:visible"><path
id="path20207"
d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0"
style="stroke:none"
inkscape:connector-curvature="0" /></symbol></g></defs><g
id="textext-b0ade6ba-2"><g
id="g20216"
style="fill:#000000;fill-opacity:1"><use
id="use20214"
y="134.765"
x="223.43201"
xlink:href="#textext-b0ade6ba-1"
width="100%"
height="100%" /></g></g></g></g></svg>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment