- Commit
- 4857371dbf5b38522b422ef5fa813329768b18cd
- Parent
- 767423e07eeb26015ee810fd2b085f0532203db6
- Author
- Pablo <pablo-escobar@riseup.net>
- Date
Fixed some of the TikZ drawings
My personal LaTeX setup 🦁️⚙️
Fixed some of the TikZ drawings
26 files changed, 88 insertions, 1415 deletions
diff --git a/images/26-nodes-diagram.tikz b/images/26-nodes-diagram.tikz @@ -1,4 +1,5 @@ % This picture represents the 26-nodes diagram +% Copyright Pablo (C) 2021 \begin{tikzpicture} % Draw the nodes \foreach \i in {1,2,3,4,5,6,7,8,9,10,11,12,13}
diff --git a/images/complex-surreal-venn.tikz b/images/complex-surreal-venn.tikz @@ -1,15 +1,16 @@ % This picture represents the relationshipt between the real, complex and % surreal numbers +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The reals - \draw (0.75,0) node{\(\RR\)} - (0,0) circle (1.5); + \draw (0.75, 0) node{$\mathbb{R}$} + ( 0, 0) circle (1.5); % The complex numbers - \draw (-1.5,0) node[left]{\(\CC\)} - (1.5,0) circle (1.5); + \draw (-1.5, 0) node[left]{$\mathbb{C}$} + ( 1.5, 0) circle (1.5); % The surreal numbers - \draw (3,0) node[right]{\No}; + \draw (3,0) node[right]{$\mathbf{No}$}; \end{tikzpicture}
diff --git a/images/coxerter-group-reflections.tikz b/images/coxerter-group-reflections.tikz @@ -1,6 +1,7 @@ % This picture represents the action of the action of the generators of the % Coxerter group of the complete graph of four vertices corresponding to the % nodes in a maximal free 3-gon +% Copyright Pablo (C) 2021 \begin{tikzpicture}[scale=.85] \draw (-1.17265, 0) -- (4, 0) node[above]{$a$};
diff --git a/images/dihedral-representation-is-irreducible.tikz b/images/dihedral-representation-is-irreducible.tikz @@ -1,5 +1,6 @@ % An ilustration of the proof that the representation of the Dihidral group is % irreducible +% Copyright Pablo (C) 2021 \begin{tikzpicture}[scale=1.2] % The axis \draw[->] (-1,0)--(3,0) node[right]{$x$};
diff --git a/images/dihedral-representation.tikz b/images/dihedral-representation.tikz @@ -1,4 +1,5 @@ % This picture represents the action of the dihedral group in the real plain +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The axis \draw[->] (-3,0)--(3,0) node[right]{$x$};
diff --git a/images/euclidian-plane.tikz b/images/euclidian-plane.tikz @@ -1,4 +1,5 @@ % This picture represents the cartesian plain +% Copyright Pablo (C) 2021 \begin{tikzpicture} \draw (0, 0) node[left]{$\mathbb{R}^2$} -- (2, 0) --
diff --git a/images/galois-lattice-antisomorphism.tikz b/images/galois-lattice-antisomorphism.tikz @@ -1,18 +1,18 @@ % This picture represents the lattice antisomorphism between the lattice of the % subgroups of the Galois group of a Galois extension and the lattice of % intermediary subfields of such extension. -% -% NOTE: This diagram requires the xalgebra package (for \Gal and \mfrac) +% Copyright Pablo (C) 2021 \begin{tikzpicture}[ampersand replacement=\&] % The elements of both lattices \matrix(m)[matrix of math nodes,row sep=2em,column sep=2em,minimum width=2em] - { \& K \& \& \{e\} \& \\ - \& L_1 \cdot L_2 \& \& H_1 \cap H_2 \& \\ - L_1 \& \& H_1 \& \& \\ - \& \& L_2 \& \& H_2 \\ - \& L_1 \cap L_2 \& \& \langle H_1, H_2 \rangle \& \\ - \& k \& \& \Gal(\mfrac{K}{k}) \& \\ - }; + { + \& K \& \& \{e\} \& \\ + \& L_1 \cdot L_2 \& \& H_1 \cap H_2 \& \\ + L_1 \& \& H_1 \& \& \\ + \& \& L_2 \& \& H_2 \\ + \& L_1 \cap L_2 \& \& \langle H_1, H_2 \rangle \& \\ + \& k \& \& \operatorname{Gal}(\mathlarger{\sfrac{K}{k}}) \& \\ + }; % The relations of both lattices \draw (m-1-2) -- (m-2-2)
diff --git a/images/geodesic.tikz b/images/geodesic.tikz @@ -1,4 +1,5 @@ % This picture represents the fact that geodesics locally minimize distances +% Copyright Pablo (C) 2021 \begin{tikzpicture}[scale=0.5] % The cirference \draw (0, 0) circle (3);
diff --git a/images/hyperbolic-plane-disc.tikz b/images/hyperbolic-plane-disc.tikz @@ -1,4 +1,5 @@ % This picture represents the Poincaré disc model of the hyperbolic plane +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The disk \draw (0, 0) circle (1);
diff --git a/images/k4.tikz b/images/k4.tikz @@ -1,4 +1,5 @@ % This picture represents the complete graph of four vertices +% Copyright Pablo (C) 2021 \begin{tikzpicture}[scale=0.75] % The vertices \coordinate (a) at (0,0);
diff --git a/images/natural-number-line.tikz b/images/natural-number-line.tikz @@ -1,4 +1,5 @@ % This picture represents the natural number line +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The line \draw[-latex] (0,0) -- (6, 0) node[right]{$\mathbb{N}$};
diff --git a/images/ordinal-number-line.tikz b/images/ordinal-number-line.tikz @@ -1,4 +1,5 @@ % This picture represents the ordinal number line +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The line \draw[-latex] (0,0) -- (6.5,0) node[right]{$\mathbf{Ord}$};
diff --git a/images/projective-system-universal-property.tikz b/images/projective-system-universal-property.tikz @@ -3,6 +3,7 @@ % functor between I^op and the category of obejcts of the projective system % given my the projective system itself (for each index i it yields X_i and for % each inequality i <= j it yeilds \varphi_{i, j} +% Copyright Pablo (C) 2021 \begin{tikzpicture}[ampersand replacement=\&] % The objects \matrix(m)[matrix of math nodes,row sep=3em,column sep=3em,minimum width=2em]
diff --git a/images/projective-system.tikz b/images/projective-system.tikz @@ -1,5 +1,6 @@ % This picture represents the behaviour of the morphisms of a projective system % (X_i, \phi_{i, j} +% Copyright Pablo (C) 2021 \begin{tikzpicture}[ampersand replacement=\&] % The objects \matrix(m)[matrix of math nodes,row sep=2em,column sep=2em,minimum width=2em]
diff --git a/images/quaternion-rotation.tikz b/images/quaternion-rotation.tikz @@ -1,5 +1,6 @@ % This drawing represents the correspondance between conjugation by unitary % quaternions and rotations in the 3-dimensional euclidian space +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The rotation axis \begin{scope}[rotate=-60]
diff --git a/images/real-number-line.tikz b/images/real-number-line.tikz @@ -1,4 +1,5 @@ % This picture represents the real number line +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The line \draw[latex-latex] (-3,0) -- (3,0) node[right]{$\mathbb{R}$};
diff --git a/images/real-ordinal-surreal-venn.tikz b/images/real-ordinal-surreal-venn.tikz @@ -1,5 +1,6 @@ % This picture represents the relationshipt between the real, ordinal and % surreal numbers +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The reals \draw (0,0) circle (1)
diff --git a/images/riemannian-metric.tikz b/images/riemannian-metric.tikz @@ -1,5 +1,6 @@ % This picture is a comparison between the euclian distance and the Riemannian % distance in a three-dimensional sphere +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The cirference \draw (0, 0) circle (3);
diff --git a/images/smooth-function.tikz b/images/smooth-function.tikz @@ -1,12 +1,21 @@ % This picture represents the definition of a smooth map between manifolds +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The manifolds \begin{scope}[shift={(-2, 0)}] - \path pic {manifold}; + \draw (-1.5, -0.5) to[relative, out=20, in=160] + +( 2, 0) to[relative, out=20, in=160] + +( 1, 1) to[relative, out=-20, in=-160] + +( -2, 0) to[relative, out=-20, in=-160] + cycle; \draw (0.5, -0.5) node[right]{$M$}; \end{scope} \begin{scope}[shift={(2, 0)}] - \path pic {manifold}; + \draw (-1.5, -0.5) to[relative, out=20, in=160] + +( 2, 0) to[relative, out=20, in=160] + +( 1, 1) to[relative, out=-20, in=-160] + +( -2, 0) to[relative, out=-20, in=-160] + cycle; \draw (0.5, -0.5) node[right]{$N$}; \end{scope} @@ -18,8 +27,8 @@ \draw[->] ( 2, -0.7) -- node[left]{$\psi$} +(0, -1); % The open sets in euclidian space - \draw[dash dot] (-2, -3) node{$\varphi(U)$} ellipse (1 and 0.5); - \draw[dash dot] ( 2, -3) node{$\psi(V)$} ellipse (1 and 0.5); + \draw[dashed] (-2, -3) node{$\varphi(U)$} ellipse (1 and 0.5); + \draw[dashed] ( 2, -3) node{$\psi(V)$} ellipse (1 and 0.5); \draw (-3.5, -4) node[left]{$\mathbb{R}^m$} rectangle +(3, 2); \draw ( 0.5, -4) node[left]{$\mathbb{R}^n$} rectangle +(3, 2); \end{tikzpicture}
diff --git a/images/smooth-manifold.tikz b/images/smooth-manifold.tikz @@ -1,9 +1,13 @@ % This picture represents the definition of a smooth manifold +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The manifold \begin{scope}[shift={(-0.5, 0)}] % The frontire - \path pic {big-manifold}; + \draw (-4, 2) to[relative, out=20, in=160] + ( 2, 0) to[relative, out=20, in=160] + ( 4, 3) to[relative, out=-20, in=-160] + cycle; \draw (-4, 2) node[below]{$M$}; % The open sets of the manifold and their intersection
diff --git a/images/sphere-quotient.tikz b/images/sphere-quotient.tikz @@ -1,39 +1,40 @@ % This picture represents the isomorphism between the n-dimensional sphere and % the quotient of the (n + 1)-dimensional simple orthogonal group by the % n-dimensional simple orthogonal group +% Copyright Pablo (C) 2021 \begin{tikzpicture}[scale=0.5] - % The sphere - \draw (0, 0) circle (3); - - % The equator - \begin{scope} - \clip (-3, 0) rectangle (3, -3); - \draw ellipse (3 and 1); - \end{scope} - - % The equator (on the other side of the sphere) - \begin{scope} - \clip (-3, 0) rectangle (3, 3); - \draw[dotted] ellipse (3 and 1); - \end{scope} - - % Greenwhich - \begin{scope} - \clip (-3, -3) rectangle (0, 3); - \draw ellipse (1 and 3); - \end{scope} - - % Greenwhich (on the other side of the sphere) - \begin{scope} - \clip (3, -3) rectangle (0, 3); - \draw[dotted] ellipse (1 and 3); - \end{scope} - - \draw (-3, 2.625) -- (1.5, 2.625) - -- (3, 3.375) - node[right]{$T_p S^n$} - -- (-1.5, 3.375) - -- cycle; - \filldraw[black] (0, 3) circle (2pt) node[right]{$p$}; - \draw (0, 3.375) node[above]{$\SO_n(\RR)$}; + % The sphere + \draw (0, 0) circle (3); + + % The equator + \begin{scope} + \clip (-3, 0) rectangle (3, -3); + \draw ellipse (3 and 1); + \end{scope} + + % The equator (on the other side of the sphere) + \begin{scope} + \clip (-3, 0) rectangle (3, 3); + \draw[dotted] ellipse (3 and 1); + \end{scope} + + % Greenwhich + \begin{scope} + \clip (-3, -3) rectangle (0, 3); + \draw ellipse (1 and 3); + \end{scope} + + % Greenwhich (on the other side of the sphere) + \begin{scope} + \clip (3, -3) rectangle (0, 3); + \draw[dotted] ellipse (1 and 3); + \end{scope} + + \draw (-3, 2.625) -- (1.5, 2.625) + -- (3, 3.375) + node[right]{$T_p \mathbb{S}^n$} + -- (-1.5, 3.375) + -- cycle; + \filldraw[black] (0, 3) circle (2pt) node[right]{$p$}; + \draw (0, 3.375) node[above]{$\operatorname{SO}_n(\mathbb{R})$}; \end{tikzpicture}
diff --git a/images/sphere.tikz b/images/sphere.tikz @@ -1,4 +1,5 @@ % This picture represents a three-dimentional sphere +% Copyright Pablo (C) 2021 \begin{tikzpicture}[scale=0.4] % The cirference \draw (0, 0) circle (3);
diff --git a/images/sporadic-groups.svg b/images/sporadic-groups.svg @@ -1,1362 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="289" - height="240.57851" - viewBox="0 0 289 240.57851" - version="1.1" - id="svg2" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)" - sodipodi:docname="SporadicGroups.svg"> - <metadata - id="metadata352"> - <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="defs350"> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker16116" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path16114" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker15273" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path15271" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker14237" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path14235" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker12593" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path12591" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker10589" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path10587" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker10277" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path10275" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker9971" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path9969" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker9671" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path9669" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker9377" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path9375" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker7211" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path7209" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker5969" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5967" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker5779" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5777" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker5499" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path5497" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker3795" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path3793" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3485" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3483" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker2079" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path2077" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker1889" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path1887" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="TriangleOutL" - orient="auto" - refY="0" - refX="0" - id="marker1280" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path1159" - d="M 5.77,0 -2.88,5 V -5 Z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1" - transform="scale(0.8)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="TriangleOutL" - orient="auto" - refY="0" - refX="0" - id="TriangleOutL" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path1780" - d="M 5.77,0 -2.88,5 V -5 Z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1" - transform="scale(0.8)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker2054" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path2052" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <inkscape:path-effect - effect="powerstroke" - id="path-effect1978" - is_visible="true" - offset_points="1,0.5" - sort_points="true" - interpolator_type="CubicBezierJohan" - interpolator_beta="0.2" - start_linecap_type="zerowidth" - linejoin_type="extrp_arc" - miter_limit="4" - end_linecap_type="zerowidth" /> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path1665" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path1659" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <inkscape:path-effect - effect="powerstroke" - id="path-effect1636" - is_visible="true" - offset_points="1,0.5" - sort_points="true" - interpolator_type="CubicBezierJohan" - interpolator_beta="0.2" - start_linecap_type="zerowidth" - linejoin_type="extrp_arc" - miter_limit="4" - end_linecap_type="zerowidth" /> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 251.73333 : 1" - inkscape:vp_y="0 : 1066.6667 : 0" - inkscape:vp_z="746.66667 : 251.73333 : 1" - inkscape:persp3d-origin="373.33334 : 167.82222 : 1" - id="perspective354" /> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker3795-8" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path3793-2" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3485-5" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3483-1" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker2079-8" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path2077-1" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker1889-3" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path1887-9" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker5969-6" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5967-4" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker5779-2" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5777-9" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker14237-7" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path14235-3" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - </defs> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="1" - gridtolerance="1" - guidetolerance="1" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1655" - inkscape:window-height="888" - id="namedview348" - showgrid="false" - inkscape:zoom="2" - inkscape:cx="222.87628" - inkscape:cy="120.08907" - inkscape:window-x="23" - inkscape:window-y="-2" - inkscape:window-maximized="0" - inkscape:current-layer="layer3" - fit-margin-top="6.668625" - fit-margin-left="6.668625" - fit-margin-right="6.668625" - fit-margin-bottom="6.668625" /> - <g - inkscape:groupmode="layer" - id="layer1" - inkscape:label="corners" - transform="translate(-255.29985,-115.93511)" - style="display:none" - sodipodi:insensitive="true"> - <rect - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:1;fill-rule:nonzero;stroke:#00ff00;stroke-width:0.40031248;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="rect1001" - width="10" - height="10" - x="60" - y="33.575481" - transform="scale(1,-1)" /> - <rect - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00ff00;fill-opacity:1;fill-rule:nonzero;stroke:#00ff00;stroke-width:0.40031248;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="rect1003" - width="10" - height="10" - x="730" - y="-516.42456" - transform="scale(1,-1)" /> - </g> - <g - inkscape:groupmode="layer" - id="layer7" - inkscape:label="arrows" - style="display:inline" - transform="translate(-205.5,-179.71075)" - sodipodi:insensitive="true"> - <path - inkscape:connector-curvature="0" - id="path1531" - d="M 392.475,399.60388 V 370.93325" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 392.475,357.12887 V 328.45825" - id="path1603" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 273.44082,233.16283 341.8134,198.23694" - id="path2483" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path2783" - d="M 426.69653,233.16225 358.3246,198.02515" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.34082422;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path3017" - d="m 273.44082,275.63784 68.37258,-34.9259" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 426.69685,275.63784 -68.37257,-34.9259" - id="path3019" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path3319" - d="m 358.39082,360.58784 68.37258,-34.9259" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 315.91582,403.06284 68.37258,-34.9259" - id="path3481" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path3791" - d="m 299.27185,403.06284 -68.37257,-34.9259" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path3983" - d="m 395.69989,315.36379 35.85183,-72.2277" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 395.69989,357.83879 35.85183,-72.2277" - id="path5105" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path5297" - d="m 395.69989,400.31379 35.85183,-72.2277" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 304.36656,400.31379 -35.85183,-72.2277" - id="path5495" - inkscape:connector-curvature="0" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 222.575,399.60388 V 370.93325" - id="path1015" - inkscape:connector-curvature="0" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 434.95,314.65387 V 285.98325" - id="path1711" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path1713" - d="M 434.95,272.17887 V 243.50825" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path1791" - d="M 350,272.17887 V 243.50825" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 350,229.70387 V 201.03325" - id="path1793" - inkscape:connector-curvature="0" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 265.05,314.65387 V 285.98325" - id="path1883" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path1885" - d="M 265.05,272.17887 V 243.50825" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path2075" - d="M 392.475,314.65387 V 285.98325" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path2219" - d="M 307.525,357.12887 V 328.45825" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 350,357.12887 V 285.98325" - id="path2345" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path7207" - d="m 304.36762,315.36438 -35.4292,-72.37047" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 355.62016,358.41665 31.02102,-31.02103" - id="path7465" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path8239" - d="m 313.14516,273.46664 31.02102,-31.02102" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 228.19516,273.46664 31.02102,-31.02102" - id="path8509" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path8773" - d="M 472.06683,273.46563 440.94165,242.02189" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 259.69182,358.41562 228.22154,327.317" - id="path9067" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path9373" - d="M 313.14739,400.89121 344.30383,369.4517" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path9667" - d="M 259.75533,316.0041 228.39888,284.75385" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path9967" - d="M 301.59954,400.89256 270.72255,369.4492" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path10273" - d="M 344.42925,358.6278 313.41066,326.97209" - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path10585" - d="m 261.89156,357.83879 -35.85183,-72.2277" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path10903" - d="M 385.29566,317.27744 272.14615,241.23443" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 384.6161,360.14898 272.52839,283.68102" - id="path11935" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path12253" - d="M 385.42954,402.34111 272.52805,326.15665" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path12589" - d="M 342.1411,360.14898 230.05339,283.68102" - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 383.59248,403.52526 274.2314,366.93017" - id="path12943" - inkscape:connector-curvature="0" /> - <path - style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 243.73135,321.05553 18.72742,-35.22275" - id="path15263" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.33986604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 315.74522,313.17983 230.81384,282.51986" - id="path14629" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.3398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 273.44082,318.11284 68.37258,-34.9259" - id="path16112" - inkscape:connector-curvature="0" /> - </g> - <g - inkscape:groupmode="layer" - id="layer6" - inkscape:label="ellipses" - style="display:inline" - transform="translate(-205.5,-179.71075)" - sodipodi:insensitive="true"> - <ellipse - cy="363.71249" - cx="265.04999" - id="circle1509" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#80ff80;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1559" - cx="222.575" - cy="363.71249" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1561" - cx="434.95001" - cy="321.23749" /> - <ellipse - cy="321.23749" - cx="222.575" - id="ellipse1585" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#80ff80;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1587" - cx="222.575" - cy="278.76251" /> - <ellipse - cy="406.1875" - cx="222.575" - id="ellipse1589" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#80ff80;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1591" - cx="307.52499" - cy="363.71249" /> - <ellipse - cy="363.71249" - cx="350" - id="ellipse1593" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1595" - cx="392.47501" - cy="363.71249" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#80ff80;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1597" - cx="307.52499" - cy="321.23749" /> - <ellipse - cy="321.23749" - cx="265.04999" - id="ellipse1599" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#80ff80;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - cy="321.23749" - cx="477.42499" - id="ellipse1601" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1603" - cx="392.47501" - cy="321.23749" /> - <ellipse - cy="321.23749" - cx="434.95001" - id="ellipse1605" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#aaccff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - cy="278.76251" - cx="307.52499" - id="ellipse1607" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#aaccff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#80ff80;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1609" - cx="265.04999" - cy="278.76251" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#aaccff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1611" - cx="350" - cy="278.76251" /> - <ellipse - cy="278.76251" - cx="392.47501" - id="ellipse1613" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#aaccff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1615" - cx="434.95001" - cy="278.76251" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1617" - cx="307.52499" - cy="406.1875" /> - <ellipse - cy="236.28751" - cx="265.04999" - id="ellipse1619" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#80ff80;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - cy="236.28751" - cx="350" - id="ellipse1621" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#aaccff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1623" - cx="392.47501" - cy="406.1875" /> - <ellipse - cy="236.28751" - cx="434.95001" - id="ellipse1625" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#aaccff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - cy="406.1875" - cx="477.42499" - id="ellipse1627" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - cy="278.76251" - cx="477.42499" - id="ellipse1629" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#aaccff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - ry="7.2207499" - rx="10.194" /> - <ellipse - rx="10.194" - ry="7.2207499" - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#aaccff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.42475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="ellipse1631" - cx="350" - cy="193.8125" /> - </g> - <g - inkscape:groupmode="layer" - id="layer3" - inkscape:label="names" - style="display:inline" - transform="translate(-255.5,-122.92334)"> - <g - aria-label="J3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1003"> - <path - d="m 524.23687,349.48724 0.6775,-0.0929 q 0.0271,0.6504 0.2439,0.89043 0.2168,0.24003 0.60007,0.24003 0.28262,0 0.4878,-0.12776 0.20519,-0.13163 0.28261,-0.3523 0.0774,-0.22454 0.0774,-0.71234 v -3.91013 h 0.75106 v 3.86755 q 0,0.71234 -0.17422,1.10335 -0.17034,0.39101 -0.54587,0.5962 -0.37165,0.20518 -0.87494,0.20518 -0.74718,0 -1.14594,-0.42972 -0.39488,-0.42973 -0.3794,-1.27757 z" - style="stroke-width:0.18136825" - id="path1363" /> - <path - d="m 528.18921,351.70963 0.45295,-0.0604 q 0.078,0.38501 0.26423,0.55613 0.18873,0.1686 0.45799,0.1686 0.31958,0 0.53851,-0.22144 0.22144,-0.22145 0.22144,-0.54858 0,-0.31204 -0.20383,-0.51335 -0.20383,-0.20383 -0.51838,-0.20383 -0.12834,0 -0.31958,0.0503 l 0.0503,-0.39759 q 0.0453,0.005 0.073,0.005 0.28939,0 0.5209,-0.15098 0.23151,-0.15099 0.23151,-0.46554 0,-0.24913 -0.1686,-0.41269 -0.1686,-0.16357 -0.43534,-0.16357 -0.26422,0 -0.44037,0.16608 -0.17615,0.16609 -0.22648,0.49825 l -0.45296,-0.0805 q 0.083,-0.45547 0.37747,-0.7046 0.29442,-0.25164 0.73227,-0.25164 0.30197,0 0.55613,0.13085 0.25416,0.12834 0.38753,0.3523 0.13589,0.22396 0.13589,0.4756 0,0.23906 -0.12834,0.43535 -0.12834,0.19628 -0.37998,0.31203 0.32714,0.0755 0.50832,0.31455 0.18118,0.23655 0.18118,0.59388 0,0.48315 -0.3523,0.82035 -0.3523,0.33469 -0.89081,0.33469 -0.48567,0 -0.80777,-0.28939 -0.31959,-0.28939 -0.36488,-0.74989 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1365" /> - </g> - <g - aria-label="Ly" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1023"> - <path - d="m 269.11396,266.91611 v -5.6755 h 0.75106 v 5.00574 h 2.79516 v 0.66976 z" - style="stroke-width:0.18136825" - id="path1368" /> - <path - d="m 273.14411,268.49952 -0.0774,-0.65427 q 0.22842,0.0619 0.39876,0.0619 0.23228,0 0.37166,-0.0774 0.13937,-0.0774 0.22841,-0.2168 0.0658,-0.10453 0.21293,-0.51877 0.0194,-0.0581 0.0619,-0.17034 l -1.56018,-4.11919 h 0.75105 l 0.85559,2.38092 q 0.16647,0.45296 0.2981,0.95237 0.12001,-0.48005 0.28648,-0.93688 l 0.87881,-2.39641 h 0.69686 l -1.56405,4.18113 q -0.25165,0.6775 -0.39102,0.93301 -0.18583,0.34456 -0.42585,0.50329 -0.24003,0.1626 -0.57297,0.1626 -0.20132,0 -0.44909,-0.0852 z" - style="stroke-width:0.18136825" - id="path1370" /> - </g> - <g - aria-label="Ru" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1027"> - <path - d="m 522.97673,267.31946 v -5.6755 h 2.51642 q 0.7588,0 1.15368,0.15485 0.39489,0.15099 0.63104,0.53813 0.23616,0.38714 0.23616,0.85559 0,0.60394 -0.39101,1.01818 -0.39102,0.41424 -1.20789,0.52651 0.2981,0.14324 0.45296,0.28261 0.32907,0.30198 0.6233,0.75493 l 0.98721,1.5447 h -0.94463 l -0.75105,-1.18078 q -0.32907,-0.51103 -0.542,-0.78203 -0.21293,-0.271 -0.38327,-0.3794 -0.16647,-0.1084 -0.34068,-0.15099 -0.12776,-0.0271 -0.41812,-0.0271 h -0.87107 v 2.5203 z m 0.75105,-3.17069 h 1.61438 q 0.5149,0 0.80526,-0.10453 0.29036,-0.1084 0.44134,-0.34069 0.15099,-0.23615 0.15099,-0.51102 0,-0.40263 -0.29423,-0.66202 -0.29036,-0.25938 -0.9214,-0.25938 h -1.79634 z" - style="stroke-width:0.18136825" - id="path1373" /> - <path - d="m 531.30028,267.31946 v -0.60394 q -0.48006,0.69685 -1.30467,0.69685 -0.36391,0 -0.68137,-0.13937 -0.31358,-0.13937 -0.46844,-0.34843 -0.15099,-0.21292 -0.21293,-0.51877 -0.0426,-0.20518 -0.0426,-0.6504 v -2.54739 h 0.69685 v 2.28027 q 0,0.54587 0.0426,0.73557 0.0658,0.27487 0.27874,0.4336 0.21293,0.15485 0.52651,0.15485 0.31359,0 0.58846,-0.15873 0.27487,-0.1626 0.38714,-0.43747 0.11614,-0.27874 0.11614,-0.80525 v -2.20284 h 0.69686 v 4.11145 z" - style="stroke-width:0.18136825" - id="path1375" /> - </g> - <g - aria-label="J4" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1031"> - <path - d="m 439.28689,223.21078 0.6775,-0.0929 q 0.0271,0.6504 0.2439,0.89043 0.2168,0.24003 0.60007,0.24003 0.28261,0 0.4878,-0.12776 0.20518,-0.13163 0.28261,-0.3523 0.0774,-0.22454 0.0774,-0.71234 v -3.91013 h 0.75106 v 3.86755 q 0,0.71234 -0.17422,1.10335 -0.17034,0.39101 -0.54587,0.5962 -0.37165,0.20518 -0.87494,0.20518 -0.74718,0 -1.14594,-0.42972 -0.39488,-0.42973 -0.3794,-1.27757 z" - style="stroke-width:0.18136825" - id="path1378" /> - <path - d="m 444.68868,226.40702 v -0.88326 h -1.60044 v -0.41521 l 1.68349,-2.3906 h 0.36991 v 2.3906 h 0.49825 v 0.41521 h -0.49825 v 0.88326 z m 0,-1.29847 v -1.66336 l -1.15503,1.66336 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1380" /> - </g> - <g - aria-label="M11" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1039"> - <path - d="m 352.12978,351.06122 v -5.6755 h 1.13046 l 1.34338,4.01853 q 0.18583,0.56136 0.271,0.8401 0.0968,-0.30971 0.30197,-0.90978 l 1.35887,-3.94885 h 1.01044 v 5.6755 h -0.72396 v -4.75023 l -1.64922,4.75023 h -0.6775 l -1.64148,-4.83153 v 4.83153 z" - style="stroke-width:0.18136825" - id="path1383" /> - <path - d="m 360.07374,352.64695 h -0.45295 v -2.88633 q -0.16357,0.15601 -0.43031,0.31203 -0.26423,0.15602 -0.47561,0.23403 v -0.43786 q 0.37998,-0.17866 0.66434,-0.43282 0.28436,-0.25416 0.40263,-0.49322 h 0.2919 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1385" /> - <path - d="m 362.55997,352.64695 h -0.45296 v -2.88633 q -0.16357,0.15601 -0.43031,0.31203 -0.26422,0.15602 -0.4756,0.23403 v -0.43786 q 0.37998,-0.17866 0.66434,-0.43282 0.28435,-0.25416 0.40262,-0.49322 h 0.29191 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1387" /> - </g> - <g - aria-label="M22" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1045"> - <path - d="m 436.88855,351.01453 v -5.6755 h 1.13045 l 1.34339,4.01853 q 0.18582,0.56135 0.27099,0.8401 0.0968,-0.30972 0.30198,-0.90979 l 1.35886,-3.94884 h 1.01044 v 5.6755 h -0.72395 v -4.75024 l -1.64923,4.75024 h -0.67749 L 437.6125,346.183 v 4.83153 z" - style="stroke-width:0.18136825" - id="path1390" /> - <path - d="m 445.50691,352.16492 v 0.43534 h -2.43842 q -0.005,-0.16357 0.0528,-0.31455 0.0931,-0.24913 0.29694,-0.49071 0.20634,-0.24157 0.59387,-0.55864 0.60143,-0.49322 0.81281,-0.78009 0.21138,-0.28939 0.21138,-0.54607 0,-0.26925 -0.19377,-0.45295 -0.19125,-0.18622 -0.50077,-0.18622 -0.32713,0 -0.52341,0.19628 -0.19628,0.19628 -0.1988,0.54355 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79267 0.31204,-0.27429 0.83797,-0.27429 0.53097,0 0.84049,0.29442 0.30952,0.29442 0.30952,0.72976 0,0.22145 -0.0906,0.43534 -0.0906,0.2139 -0.30197,0.45044 -0.20886,0.23654 -0.69705,0.64924 -0.40766,0.34223 -0.52341,0.46554 -0.11576,0.12078 -0.19125,0.24409 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1392" /> - <path - d="m 448.37563,352.16492 v 0.43534 h -2.43841 q -0.005,-0.16357 0.0528,-0.31455 0.0931,-0.24913 0.29694,-0.49071 0.20635,-0.24157 0.59387,-0.55864 0.60143,-0.49322 0.81281,-0.78009 0.21138,-0.28939 0.21138,-0.54607 0,-0.26925 -0.19377,-0.45295 -0.19124,-0.18622 -0.50076,-0.18622 -0.32714,0 -0.52342,0.19628 -0.19628,0.19628 -0.1988,0.54355 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79267 0.31204,-0.27429 0.83797,-0.27429 0.53097,0 0.84049,0.29442 0.30952,0.29442 0.30952,0.72976 0,0.22145 -0.0906,0.43534 -0.0906,0.2139 -0.30197,0.45044 -0.20886,0.23654 -0.69704,0.64924 -0.40767,0.34223 -0.52342,0.46554 -0.11576,0.12078 -0.19125,0.24409 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1394" /> - </g> - <g - aria-label="M23" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1051"> - <path - d="m 436.88855,309.03049 v -5.6755 h 1.13045 l 1.34339,4.01853 q 0.18582,0.56136 0.27099,0.8401 0.0968,-0.30972 0.30198,-0.90979 l 1.35886,-3.94884 h 1.01044 v 5.6755 h -0.72395 v -4.75023 l -1.64923,4.75023 h -0.67749 l -1.64149,-4.83153 v 4.83153 z" - style="stroke-width:0.18136825" - id="path1397" /> - <path - d="m 445.50691,310.18088 v 0.43534 h -2.43842 q -0.005,-0.16357 0.0528,-0.31455 0.0931,-0.24913 0.29694,-0.4907 0.20634,-0.24158 0.59387,-0.55865 0.60143,-0.49322 0.81281,-0.78009 0.21138,-0.28939 0.21138,-0.54606 0,-0.26926 -0.19377,-0.45296 -0.19125,-0.18622 -0.50077,-0.18622 -0.32713,0 -0.52341,0.19628 -0.19628,0.19629 -0.1988,0.54355 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79267 0.31204,-0.27429 0.83797,-0.27429 0.53097,0 0.84049,0.29442 0.30952,0.29442 0.30952,0.72976 0,0.22145 -0.0906,0.43534 -0.0906,0.2139 -0.30197,0.45044 -0.20886,0.23655 -0.69705,0.64924 -0.40766,0.34223 -0.52341,0.46554 -0.11576,0.12078 -0.19125,0.24409 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1399" /> - <path - d="m 445.99761,309.64236 0.45296,-0.0604 q 0.078,0.38501 0.26422,0.55613 0.18873,0.1686 0.45799,0.1686 0.31958,0 0.53851,-0.22144 0.22145,-0.22145 0.22145,-0.54858 0,-0.31204 -0.20383,-0.51335 -0.20383,-0.20384 -0.51838,-0.20384 -0.12834,0 -0.31959,0.0503 l 0.0503,-0.39759 q 0.0453,0.005 0.073,0.005 0.28939,0 0.5209,-0.15098 0.23151,-0.15099 0.23151,-0.46554 0,-0.24913 -0.1686,-0.4127 -0.1686,-0.16356 -0.43534,-0.16356 -0.26422,0 -0.44037,0.16608 -0.17615,0.16609 -0.22648,0.49825 l -0.45295,-0.0805 q 0.083,-0.45548 0.37746,-0.7046 0.29442,-0.25164 0.73228,-0.25164 0.30197,0 0.55613,0.13085 0.25416,0.12834 0.38753,0.3523 0.13588,0.22396 0.13588,0.4756 0,0.23906 -0.12833,0.43534 -0.12834,0.19629 -0.37998,0.31204 0.32713,0.0755 0.50831,0.31455 0.18119,0.23655 0.18119,0.59388 0,0.48315 -0.3523,0.82035 -0.3523,0.33469 -0.89082,0.33469 -0.48567,0 -0.80777,-0.28939 -0.31958,-0.28939 -0.36488,-0.7499 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1401" /> - </g> - <g - aria-label="M12" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1057"> - <path - d="m 394.41354,308.99402 v -5.6755 h 1.13046 l 1.34338,4.01853 q 0.18583,0.56136 0.271,0.8401 0.0968,-0.30971 0.30197,-0.90978 l 1.35887,-3.94885 h 1.01044 v 5.6755 h -0.72396 v -4.75023 l -1.64922,4.75023 h -0.6775 l -1.64148,-4.83153 v 4.83153 z" - style="stroke-width:0.18136825" - id="path1404" /> - <path - d="m 402.3575,310.57975 h -0.45296 v -2.88633 q -0.16356,0.15601 -0.4303,0.31203 -0.26423,0.15602 -0.47561,0.23403 v -0.43786 q 0.37998,-0.17866 0.66434,-0.43282 0.28435,-0.25416 0.40263,-0.49322 h 0.2919 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1406" /> - <path - d="m 405.90062,310.14441 v 0.43534 h -2.43841 q -0.005,-0.16357 0.0528,-0.31455 0.0931,-0.24913 0.29694,-0.4907 0.20635,-0.24158 0.59388,-0.55865 0.60142,-0.49322 0.8128,-0.78009 0.21138,-0.28939 0.21138,-0.54606 0,-0.26926 -0.19376,-0.45296 -0.19125,-0.18621 -0.50077,-0.18621 -0.32714,0 -0.52342,0.19628 -0.19628,0.19628 -0.19879,0.54354 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79267 0.31203,-0.27429 0.83797,-0.27429 0.53096,0 0.84048,0.29442 0.30952,0.29442 0.30952,0.72976 0,0.22145 -0.0906,0.43534 -0.0906,0.2139 -0.30197,0.45044 -0.20886,0.23655 -0.69705,0.64924 -0.40766,0.34223 -0.52342,0.46554 -0.11575,0.12079 -0.19124,0.24409 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1408" /> - </g> - <g - aria-label="M24" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1063"> - <path - d="m 436.88855,266.88855 v -5.6755 h 1.13045 l 1.34339,4.01853 q 0.18582,0.56136 0.27099,0.8401 0.0968,-0.30971 0.30198,-0.90978 l 1.35886,-3.94885 h 1.01044 v 5.6755 h -0.72395 v -4.75023 l -1.64923,4.75023 h -0.67749 l -1.64149,-4.83153 v 4.83153 z" - style="stroke-width:0.18136825" - id="path1411" /> - <path - d="m 445.50691,268.03894 v 0.43534 h -2.43842 q -0.005,-0.16356 0.0528,-0.31455 0.0931,-0.24913 0.29694,-0.4907 0.20634,-0.24158 0.59387,-0.55865 0.60143,-0.49322 0.81281,-0.78009 0.21138,-0.28939 0.21138,-0.54606 0,-0.26926 -0.19377,-0.45296 -0.19125,-0.18621 -0.50077,-0.18621 -0.32713,0 -0.52341,0.19628 -0.19628,0.19628 -0.1988,0.54354 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79267 0.31204,-0.27429 0.83797,-0.27429 0.53097,0 0.84049,0.29442 0.30952,0.29442 0.30952,0.72976 0,0.22145 -0.0906,0.43534 -0.0906,0.2139 -0.30197,0.45044 -0.20886,0.23655 -0.69705,0.64924 -0.40766,0.34223 -0.52341,0.46554 -0.11576,0.12079 -0.19125,0.24409 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1413" /> - <path - d="m 447.44707,268.47428 v -0.88326 h -1.60045 v -0.41521 l 1.68349,-2.3906 h 0.36992 v 2.3906 h 0.49825 v 0.41521 h -0.49825 v 0.88326 z m 0,-1.29847 v -1.66336 l -1.15504,1.66336 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1415" /> - </g> - <g - aria-label="J2" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1069"> - <path - d="m 354.33688,307.42169 0.6775,-0.0929 q 0.0271,0.6504 0.2439,0.89043 0.2168,0.24003 0.60007,0.24003 0.28261,0 0.4878,-0.12776 0.20518,-0.13163 0.28261,-0.3523 0.0774,-0.22454 0.0774,-0.71234 v -3.91013 h 0.75105 v 3.86754 q 0,0.71234 -0.17421,1.10336 -0.17034,0.39101 -0.54587,0.5962 -0.37166,0.20518 -0.87494,0.20518 -0.74718,0 -1.14594,-0.42973 -0.39489,-0.42972 -0.3794,-1.27756 z" - style="stroke-width:0.18136825" - id="path1418" /> - <path - d="m 360.66723,310.18259 v 0.43534 h -2.43841 q -0.005,-0.16357 0.0528,-0.31455 0.0931,-0.24913 0.29694,-0.49071 0.20635,-0.24157 0.59388,-0.55864 0.60142,-0.49322 0.8128,-0.78009 0.21138,-0.28939 0.21138,-0.54607 0,-0.26925 -0.19376,-0.45295 -0.19125,-0.18622 -0.50077,-0.18622 -0.32714,0 -0.52342,0.19628 -0.19628,0.19628 -0.1988,0.54355 l -0.46553,-0.0478 q 0.0478,-0.5209 0.35984,-0.79267 0.31204,-0.27429 0.83797,-0.27429 0.53097,0 0.84049,0.29442 0.30952,0.29442 0.30952,0.72976 0,0.22144 -0.0906,0.43534 -0.0906,0.2139 -0.30197,0.45044 -0.20887,0.23654 -0.69705,0.64924 -0.40766,0.34223 -0.52342,0.46554 -0.11575,0.12078 -0.19125,0.24409 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1420" /> - </g> - <g - aria-label="HS" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1075"> - <path - d="m 310.172,267.41238 v -5.6755 h 0.75105 v 2.3306 h 2.95003 v -2.3306 h 0.75105 v 5.6755 h -0.75105 v -2.67515 h -2.95003 v 2.67515 z" - style="stroke-width:0.18136825" - id="path1423" /> - <path - d="m 315.62296,265.58895 0.70847,-0.062 q 0.0503,0.42586 0.23228,0.70073 0.18583,0.271 0.57297,0.44134 0.38714,0.16647 0.87107,0.16647 0.42973,0 0.7588,-0.12775 0.32907,-0.12776 0.4878,-0.34843 0.1626,-0.22454 0.1626,-0.4878 0,-0.26713 -0.15486,-0.46457 -0.15485,-0.20131 -0.51103,-0.33681 -0.22841,-0.089 -1.01044,-0.27488 -0.78202,-0.18969 -1.09561,-0.35617 -0.4065,-0.21292 -0.60781,-0.52651 -0.19744,-0.31746 -0.19744,-0.70847 0,-0.42973 0.2439,-0.80138 0.2439,-0.37553 0.71234,-0.5691 0.46844,-0.19357 1.04141,-0.19357 0.63104,0 1.1111,0.20518 0.48392,0.20132 0.74331,0.5962 0.25938,0.39489 0.27874,0.8943 l -0.72008,0.0542 q -0.0581,-0.53813 -0.39489,-0.813 -0.33294,-0.27487 -0.98721,-0.27487 -0.68137,0 -0.99495,0.25164 -0.30972,0.24777 -0.30972,0.60007 0,0.30584 0.22067,0.50329 0.2168,0.19744 1.13046,0.4065 0.91752,0.20518 1.25821,0.36004 0.49554,0.22841 0.7317,0.58071 0.23615,0.34843 0.23615,0.80526 0,0.45295 -0.25938,0.85558 -0.25939,0.39876 -0.74718,0.6233 -0.48393,0.22067 -1.09175,0.22067 -0.77041,0 -1.29305,-0.22454 -0.51877,-0.22455 -0.81687,-0.67363 -0.29423,-0.45296 -0.30971,-1.02205 z" - style="stroke-width:0.18136825" - id="path1425" /> - </g> - <g - aria-label="McL" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1079"> - <path - d="m 308.14338,309.79446 v -5.6755 h 1.13045 l 1.34338,4.01854 q 0.18583,0.56135 0.271,0.84009 0.0968,-0.30971 0.30197,-0.90978 l 1.35887,-3.94885 h 1.01044 v 5.6755 h -0.72395 v -4.75023 l -1.64923,4.75023 h -0.6775 l -1.64148,-4.83153 v 4.83153 z" - style="stroke-width:0.18136825" - id="path1428" /> - <path - d="m 317.37284,308.28848 0.68524,0.089 q -0.11227,0.70847 -0.57684,1.1111 -0.4607,0.39876 -1.13433,0.39876 -0.84397,0 -1.35887,-0.54974 -0.51102,-0.55362 -0.51102,-1.58341 0,-0.66589 0.22067,-1.1653 0.22067,-0.49941 0.66975,-0.74718 0.45296,-0.25165 0.98334,-0.25165 0.66976,0 1.09562,0.34069 0.42585,0.33681 0.54587,0.96011 l -0.6775,0.10453 q -0.0968,-0.41424 -0.34456,-0.6233 -0.2439,-0.20906 -0.59233,-0.20906 -0.52651,0 -0.85558,0.3794 -0.32907,0.37553 -0.32907,1.1924 0,0.82848 0.31746,1.20401 0.31745,0.37553 0.82848,0.37553 0.41037,0 0.68524,-0.25164 0.27487,-0.25165 0.34843,-0.77429 z" - style="stroke-width:0.18136825" - id="path1430" /> - <path - d="m 318.71235,309.79446 v -5.6755 h 0.75106 v 5.00575 h 2.79516 v 0.66975 z" - style="stroke-width:0.18136825" - id="path1432" /> - </g> - <g - aria-label="Suz" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1083"> - <path - d="m 351.04424,265.58895 0.70847,-0.062 q 0.0503,0.42586 0.23228,0.70073 0.18583,0.271 0.57297,0.44134 0.38714,0.16647 0.87107,0.16647 0.42973,0 0.7588,-0.12775 0.32907,-0.12776 0.4878,-0.34843 0.1626,-0.22454 0.1626,-0.4878 0,-0.26713 -0.15486,-0.46457 -0.15485,-0.20131 -0.51103,-0.33681 -0.22841,-0.089 -1.01044,-0.27488 -0.78202,-0.18969 -1.09561,-0.35617 -0.4065,-0.21292 -0.60781,-0.52651 -0.19744,-0.31746 -0.19744,-0.70847 0,-0.42973 0.2439,-0.80138 0.2439,-0.37553 0.71234,-0.5691 0.46844,-0.19357 1.04141,-0.19357 0.63104,0 1.1111,0.20518 0.48392,0.20132 0.74331,0.5962 0.25938,0.39489 0.27874,0.8943 l -0.72008,0.0542 q -0.0581,-0.53813 -0.39489,-0.813 -0.33294,-0.27487 -0.98721,-0.27487 -0.68137,0 -0.99495,0.25164 -0.30972,0.24777 -0.30972,0.60007 0,0.30584 0.22067,0.50329 0.2168,0.19744 1.13046,0.4065 0.91752,0.20518 1.25821,0.36004 0.49554,0.22841 0.7317,0.58071 0.23615,0.34843 0.23615,0.80526 0,0.45295 -0.25938,0.85558 -0.25939,0.39876 -0.74718,0.6233 -0.48393,0.22067 -1.09174,0.22067 -0.77042,0 -1.29306,-0.22454 -0.51877,-0.22455 -0.81687,-0.67363 -0.29423,-0.45296 -0.30971,-1.02205 z" - style="stroke-width:0.18136825" - id="path1435" /> - <path - d="m 359.20132,267.41238 v -0.60394 q -0.48006,0.69686 -1.30467,0.69686 -0.36391,0 -0.68137,-0.13937 -0.31358,-0.13937 -0.46844,-0.34843 -0.15099,-0.21293 -0.21293,-0.51877 -0.0426,-0.20519 -0.0426,-0.6504 v -2.54739 h 0.69685 v 2.28026 q 0,0.54587 0.0426,0.73557 0.0658,0.27487 0.27874,0.4336 0.21293,0.15486 0.52651,0.15486 0.31359,0 0.58846,-0.15873 0.27487,-0.1626 0.38714,-0.43747 0.11614,-0.27874 0.11614,-0.80526 v -2.20283 h 0.69686 v 4.11144 z" - style="stroke-width:0.18136825" - id="path1437" /> - <path - d="m 360.55244,267.41238 v -0.56522 l 2.61708,-3.00422 q -0.44521,0.0232 -0.7859,0.0232 h -1.67632 v -0.56522 h 3.36039 v 0.4607 l -2.22606,2.60933 -0.42973,0.47619 q 0.46844,-0.0348 0.87881,-0.0348 h 1.90087 v 0.60007 z" - style="stroke-width:0.18136825" - id="path1439" /> - </g> - <g - aria-label="Co2" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1087"> - <path - d="m 313.03537,222.96639 0.75105,0.1897 q -0.23616,0.92527 -0.85171,1.41307 -0.61169,0.48392 -1.49824,0.48392 -0.91753,0 -1.49437,-0.37165 -0.57297,-0.37553 -0.87494,-1.084 -0.2981,-0.70847 -0.2981,-1.52147 0,-0.88655 0.33681,-1.54469 0.34069,-0.66202 0.96399,-1.0027 0.62717,-0.34456 1.37822,-0.34456 0.85172,0 1.43243,0.4336 0.58071,0.4336 0.80913,1.2195 l -0.73945,0.17421 q -0.19744,-0.61942 -0.57297,-0.90204 -0.37552,-0.28261 -0.94462,-0.28261 -0.65427,0 -1.09561,0.31358 -0.43747,0.31359 -0.61556,0.84397 -0.17808,0.52652 -0.17808,1.08787 0,0.72396 0.20905,1.26596 0.21293,0.53812 0.65814,0.80525 0.44522,0.26713 0.96399,0.26713 0.63104,0 1.06851,-0.36391 0.43747,-0.36392 0.59233,-1.08013 z" - style="stroke-width:0.18136825" - id="path1442" /> - <path - d="m 314.36713,222.90058 q 0,-1.14207 0.63492,-1.69181 0.53038,-0.45683 1.29305,-0.45683 0.84784,0 1.38597,0.55748 0.53813,0.55361 0.53813,1.53308 0,0.79364 -0.24003,1.25047 -0.23616,0.45296 -0.69299,0.7046 -0.45295,0.25164 -0.99108,0.25164 -0.86333,0 -1.39758,-0.55361 -0.53039,-0.55361 -0.53039,-1.59502 z m 0.71622,0 q 0,0.78976 0.34455,1.18465 0.34456,0.39101 0.8672,0.39101 0.51877,0 0.86333,-0.39488 0.34455,-0.39489 0.34455,-1.20401 0,-0.76267 -0.34842,-1.15369 -0.34456,-0.39488 -0.85946,-0.39488 -0.52264,0 -0.8672,0.39101 -0.34455,0.39102 -0.34455,1.18079 z" - style="stroke-width:0.18136825" - id="path1444" /> - <path - d="m 321.11173,226.10669 v 0.43534 h -2.43842 q -0.005,-0.16357 0.0528,-0.31455 0.0931,-0.24913 0.29694,-0.4907 0.20634,-0.24158 0.59387,-0.55865 0.60143,-0.49322 0.81281,-0.78009 0.21137,-0.28939 0.21137,-0.54606 0,-0.26926 -0.19376,-0.45296 -0.19125,-0.18621 -0.50077,-0.18621 -0.32713,0 -0.52341,0.19628 -0.19628,0.19628 -0.1988,0.54354 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79267 0.31204,-0.27429 0.83797,-0.27429 0.53096,0 0.84048,0.29442 0.30952,0.29442 0.30952,0.72976 0,0.22145 -0.0906,0.43534 -0.0906,0.2139 -0.30197,0.45044 -0.20886,0.23655 -0.69705,0.64924 -0.40766,0.34223 -0.52341,0.46554 -0.11576,0.12079 -0.19125,0.24409 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1446" /> - </g> - <g - aria-label="Co3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1095"> - <path - d="m 270.73028,223.00292 0.75106,0.1897 q -0.23616,0.92527 -0.85172,1.41307 -0.61168,0.48392 -1.49824,0.48392 -0.91752,0 -1.49436,-0.37165 -0.57297,-0.37553 -0.87494,-1.084 -0.2981,-0.70847 -0.2981,-1.52147 0,-0.88655 0.33681,-1.54469 0.34069,-0.66202 0.96398,-1.0027 0.62717,-0.34456 1.37823,-0.34456 0.85171,0 1.43242,0.4336 0.58072,0.4336 0.80913,1.2195 l -0.73944,0.17421 q -0.19744,-0.61942 -0.57297,-0.90204 -0.37553,-0.28261 -0.94463,-0.28261 -0.65427,0 -1.09561,0.31358 -0.43747,0.31359 -0.61555,0.84397 -0.17809,0.52652 -0.17809,1.08787 0,0.72396 0.20906,1.26596 0.21293,0.53812 0.65814,0.80525 0.44521,0.26713 0.96398,0.26713 0.63104,0 1.06851,-0.36392 0.43747,-0.36391 0.59233,-1.08012 z" - style="stroke-width:0.18136825" - id="path1449" /> - <path - d="m 272.06205,222.9371 q 0,-1.14206 0.63491,-1.69181 0.53039,-0.45682 1.29306,-0.45682 0.84784,0 1.38596,0.55748 0.53813,0.55361 0.53813,1.53308 0,0.79364 -0.24003,1.25047 -0.23615,0.45296 -0.69298,0.7046 -0.45296,0.25164 -0.99108,0.25164 -0.86333,0 -1.39759,-0.55361 -0.53038,-0.55361 -0.53038,-1.59503 z m 0.71621,0 q 0,0.78977 0.34456,1.18466 0.34455,0.39101 0.8672,0.39101 0.51877,0 0.86332,-0.39488 0.34456,-0.39489 0.34456,-1.20401 0,-0.76267 -0.34843,-1.15369 -0.34456,-0.39488 -0.85945,-0.39488 -0.52265,0 -0.8672,0.39101 -0.34456,0.39102 -0.34456,1.18078 z" - style="stroke-width:0.18136825" - id="path1451" /> - <path - d="m 276.42862,225.60471 0.45296,-0.0604 q 0.078,0.38501 0.26422,0.55613 0.18873,0.1686 0.45799,0.1686 0.31959,0 0.53852,-0.22144 0.22144,-0.22145 0.22144,-0.54858 0,-0.31204 -0.20383,-0.51335 -0.20383,-0.20383 -0.51838,-0.20383 -0.12834,0 -0.31959,0.0503 l 0.0503,-0.39759 q 0.0453,0.005 0.073,0.005 0.28939,0 0.5209,-0.15098 0.23151,-0.15099 0.23151,-0.46554 0,-0.24913 -0.1686,-0.41269 -0.1686,-0.16357 -0.43534,-0.16357 -0.26423,0 -0.44038,0.16608 -0.17615,0.16609 -0.22648,0.49825 l -0.45295,-0.0805 q 0.083,-0.45547 0.37746,-0.7046 0.29442,-0.25164 0.73228,-0.25164 0.30197,0 0.55613,0.13085 0.25416,0.12834 0.38753,0.3523 0.13589,0.22396 0.13589,0.47561 0,0.23906 -0.12834,0.43534 -0.12834,0.19628 -0.37998,0.31203 0.32713,0.0755 0.50832,0.31456 0.18118,0.23654 0.18118,0.59387 0,0.48315 -0.3523,0.82035 -0.3523,0.33469 -0.89081,0.33469 -0.48567,0 -0.80778,-0.28939 -0.31958,-0.28939 -0.36488,-0.74989 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1453" /> - </g> - <g - aria-label="Co1" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1101"> - <path - d="m 313.20526,180.91614 0.75105,0.1897 q -0.23615,0.92527 -0.85171,1.41307 -0.61168,0.48393 -1.49824,0.48393 -0.91753,0 -1.49437,-0.37166 -0.57297,-0.37553 -0.87494,-1.084 -0.2981,-0.70847 -0.2981,-1.52146 0,-0.88656 0.33682,-1.5447 0.34068,-0.66201 0.96398,-1.0027 0.62717,-0.34455 1.37822,-0.34455 0.85172,0 1.43243,0.43359 0.58071,0.4336 0.80913,1.2195 l -0.73944,0.17422 q -0.19745,-0.61943 -0.57297,-0.90205 -0.37553,-0.28261 -0.94463,-0.28261 -0.65427,0 -1.09561,0.31359 -0.43747,0.31358 -0.61556,0.84397 -0.17808,0.52651 -0.17808,1.08786 0,0.72396 0.20905,1.26596 0.21293,0.53813 0.65814,0.80525 0.44522,0.26713 0.96399,0.26713 0.63104,0 1.06851,-0.36391 0.43747,-0.36392 0.59233,-1.08013 z" - style="stroke-width:0.18136825" - id="path1456" /> - <path - d="m 314.53703,180.85033 q 0,-1.14207 0.63491,-1.69181 0.53038,-0.45683 1.29305,-0.45683 0.84784,0 1.38597,0.55748 0.53813,0.55362 0.53813,1.53309 0,0.79364 -0.24003,1.25047 -0.23616,0.45295 -0.69298,0.70459 -0.45296,0.25165 -0.99109,0.25165 -0.86332,0 -1.39758,-0.55362 -0.53038,-0.55361 -0.53038,-1.59502 z m 0.71621,0 q 0,0.78977 0.34455,1.18465 0.34456,0.39102 0.8672,0.39102 0.51877,0 0.86333,-0.39489 0.34455,-0.39488 0.34455,-1.20401 0,-0.76267 -0.34842,-1.15368 -0.34456,-0.39489 -0.85946,-0.39489 -0.52264,0 -0.8672,0.39102 -0.34455,0.39101 -0.34455,1.18078 z" - style="stroke-width:0.18136825" - id="path1458" /> - <path - d="m 320.60722,184.49178 h -0.45296 v -2.88633 q -0.16357,0.15602 -0.43031,0.31204 -0.26422,0.15601 -0.4756,0.23402 v -0.43786 q 0.37998,-0.17866 0.66433,-0.43282 0.28436,-0.25416 0.40263,-0.49322 h 0.29191 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1460" /> - </g> - <g - aria-label="Fi22" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1105"> - <path - d="m 479.4255,266.91824 v -5.6755 h 3.82883 v 0.66976 h -3.07778 v 1.75762 h 2.66354 v 0.66976 h -2.66354 v 2.57836 z" - style="stroke-width:0.18136825" - id="path1463" /> - <path - d="m 484.14863,262.04413 v -0.80139 h 0.69685 v 0.80139 z m 0,4.87411 v -4.11144 h 0.69685 v 4.11144 z" - style="stroke-width:0.18136825" - id="path1465" /> - <path - d="m 487.98191,268.06864 v 0.43534 h -2.43841 q -0.005,-0.16357 0.0528,-0.31456 0.0931,-0.24912 0.29693,-0.4907 0.20635,-0.24157 0.59388,-0.55864 0.60142,-0.49322 0.8128,-0.7801 0.21138,-0.28938 0.21138,-0.54606 0,-0.26926 -0.19376,-0.45295 -0.19125,-0.18622 -0.50077,-0.18622 -0.32713,0 -0.52342,0.19628 -0.19628,0.19628 -0.19879,0.54355 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79268 0.31203,-0.27429 0.83797,-0.27429 0.53096,0 0.84048,0.29442 0.30952,0.29443 0.30952,0.72977 0,0.22144 -0.0906,0.43534 -0.0906,0.21389 -0.30197,0.45044 -0.20886,0.23654 -0.69705,0.64923 -0.40766,0.34224 -0.52342,0.46554 -0.11575,0.12079 -0.19124,0.2441 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1467" /> - <path - d="m 490.85064,268.06864 v 0.43534 h -2.43842 q -0.005,-0.16357 0.0529,-0.31456 0.0931,-0.24912 0.29693,-0.4907 0.20635,-0.24157 0.59388,-0.55864 0.60143,-0.49322 0.8128,-0.7801 0.21138,-0.28938 0.21138,-0.54606 0,-0.26926 -0.19376,-0.45295 -0.19125,-0.18622 -0.50077,-0.18622 -0.32713,0 -0.52341,0.19628 -0.19629,0.19628 -0.1988,0.54355 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79268 0.31203,-0.27429 0.83797,-0.27429 0.53096,0 0.84048,0.29442 0.30952,0.29443 0.30952,0.72977 0,0.22144 -0.0906,0.43534 -0.0906,0.21389 -0.30197,0.45044 -0.20886,0.23654 -0.69705,0.64923 -0.40766,0.34224 -0.52341,0.46554 -0.11576,0.12079 -0.19125,0.2441 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1469" /> - </g> - <g - aria-label="Fi23" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1113"> - <path - d="m 479.4255,224.85782 v -5.6755 h 3.82883 v 0.66975 h -3.07778 v 1.75763 h 2.66354 v 0.66975 h -2.66354 v 2.57837 z" - style="stroke-width:0.18136825" - id="path1472" /> - <path - d="m 484.14863,219.9837 v -0.80138 h 0.69685 v 0.80138 z m 0,4.87412 v -4.11145 h 0.69685 v 4.11145 z" - style="stroke-width:0.18136825" - id="path1474" /> - <path - d="m 487.98191,226.00821 v 0.43534 h -2.43841 q -0.005,-0.16357 0.0528,-0.31455 0.0931,-0.24913 0.29693,-0.4907 0.20635,-0.24158 0.59388,-0.55865 0.60142,-0.49322 0.8128,-0.78009 0.21138,-0.28939 0.21138,-0.54606 0,-0.26926 -0.19376,-0.45296 -0.19125,-0.18621 -0.50077,-0.18621 -0.32713,0 -0.52342,0.19628 -0.19628,0.19628 -0.19879,0.54354 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79267 0.31203,-0.27429 0.83797,-0.27429 0.53096,0 0.84048,0.29442 0.30952,0.29442 0.30952,0.72976 0,0.22145 -0.0906,0.43534 -0.0906,0.2139 -0.30197,0.45044 -0.20886,0.23655 -0.69705,0.64924 -0.40766,0.34223 -0.52342,0.46554 -0.11575,0.12079 -0.19124,0.24409 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1476" /> - <path - d="m 488.47262,225.4697 0.45295,-0.0604 q 0.078,0.38501 0.26423,0.55613 0.18873,0.1686 0.45799,0.1686 0.31958,0 0.53851,-0.22144 0.22144,-0.22145 0.22144,-0.54858 0,-0.31204 -0.20383,-0.51335 -0.20383,-0.20383 -0.51838,-0.20383 -0.12834,0 -0.31958,0.0503 l 0.0503,-0.39759 q 0.0453,0.005 0.073,0.005 0.28939,0 0.5209,-0.15098 0.23151,-0.15099 0.23151,-0.46554 0,-0.24913 -0.1686,-0.41269 -0.1686,-0.16357 -0.43534,-0.16357 -0.26422,0 -0.44037,0.16608 -0.17615,0.16609 -0.22648,0.49825 l -0.45296,-0.0805 q 0.083,-0.45547 0.37746,-0.7046 0.29443,-0.25164 0.73228,-0.25164 0.30197,0 0.55613,0.13085 0.25416,0.12834 0.38753,0.3523 0.13589,0.22396 0.13589,0.47561 0,0.23906 -0.12834,0.43534 -0.12834,0.19628 -0.37998,0.31203 0.32714,0.0755 0.50832,0.31456 0.18118,0.23654 0.18118,0.59387 0,0.48315 -0.3523,0.82035 -0.3523,0.33469 -0.89081,0.33469 -0.48567,0 -0.80777,-0.28939 -0.31959,-0.28939 -0.36488,-0.74989 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1478" /> - </g> - <g - aria-label="Th" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1119"> - <path - d="m 354.9505,224.93739 v -5.00574 h -1.8699 v -0.66976 h 4.49859 v 0.66976 h -1.87763 v 5.00574 z" - style="stroke-width:0.18136825" - id="path1481" /> - <path - d="m 358.26443,224.93739 v -5.6755 h 0.69686 v 2.03637 q 0.4878,-0.56523 1.23111,-0.56523 0.45683,0 0.79364,0.18196 0.33682,0.17808 0.48006,0.49554 0.14711,0.31746 0.14711,0.9214 v 2.60546 h -0.69685 v -2.60546 q 0,-0.52264 -0.22842,-0.7588 -0.22454,-0.24003 -0.63878,-0.24003 -0.30971,0 -0.58459,0.1626 -0.27099,0.15873 -0.38714,0.4336 -0.11614,0.27487 -0.11614,0.7588 v 2.24929 z" - style="stroke-width:0.18136825" - id="path1483" /> - </g> - <g - aria-label="He" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1123"> - <path - d="m 522.98834,224.84448 v -5.6755 h 0.75106 v 2.3306 h 2.95002 v -2.3306 h 0.75105 v 5.6755 h -0.75105 v -2.67515 h -2.95002 v 2.67515 z" - style="stroke-width:0.18136825" - id="path1486" /> - <path - d="m 531.42029,223.52046 0.72009,0.089 q -0.17035,0.63104 -0.63104,0.97947 -0.4607,0.34843 -1.17692,0.34843 -0.90204,0 -1.43242,-0.55362 -0.52651,-0.55748 -0.52651,-1.56018 0,-1.03754 0.53425,-1.61051 0.53426,-0.57297 1.38597,-0.57297 0.82461,0 1.34725,0.56136 0.52265,0.56135 0.52265,1.57954 0,0.0619 -0.004,0.18582 h -3.06616 q 0.0387,0.6775 0.38327,1.03754 0.34456,0.36005 0.85946,0.36005 0.38327,0 0.65427,-0.20132 0.27099,-0.20131 0.42972,-0.64265 z m -2.28801,-1.12659 h 2.29576 q -0.0465,-0.51877 -0.26326,-0.77815 -0.33294,-0.40263 -0.86333,-0.40263 -0.48005,0 -0.80912,0.32133 -0.3252,0.32133 -0.36005,0.85945 z" - style="stroke-width:0.18136825" - id="path1488" /> - </g> - <g - aria-label="HN" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1127"> - <path - d="m 394.90521,224.93739 v -5.6755 h 0.75106 v 2.3306 h 2.95002 v -2.3306 h 0.75105 v 5.6755 h -0.75105 v -2.67515 h -2.95002 v 2.67515 z" - style="stroke-width:0.18136825" - id="path1491" /> - <path - d="m 400.60394,224.93739 v -5.6755 h 0.77041 l 2.981,4.45601 v -4.45601 h 0.72008 v 5.6755 h -0.77041 l -2.98099,-4.45987 v 4.45987 z" - style="stroke-width:0.18136825" - id="path1493" /> - </g> - <g - aria-label="Fi24" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1131"> - <path - d="m 479.4255,182.76256 v -5.6755 h 3.82883 v 0.66975 h -3.07778 v 1.75763 h 2.66354 v 0.66975 h -2.66354 v 2.57837 z" - style="stroke-width:0.18136825" - id="path1496" /> - <path - d="m 484.14863,177.88844 v -0.80138 h 0.69685 v 0.80138 z m 0,4.87412 v -4.11145 h 0.69685 v 4.11145 z" - style="stroke-width:0.18136825" - id="path1498" /> - <path - d="m 487.98191,183.91295 v 0.43534 h -2.43841 q -0.005,-0.16357 0.0528,-0.31455 0.0931,-0.24913 0.29693,-0.4907 0.20635,-0.24158 0.59388,-0.55865 0.60142,-0.49322 0.8128,-0.78009 0.21138,-0.28939 0.21138,-0.54606 0,-0.26926 -0.19376,-0.45296 -0.19125,-0.18622 -0.50077,-0.18622 -0.32713,0 -0.52342,0.19629 -0.19628,0.19628 -0.19879,0.54354 l -0.46554,-0.0478 q 0.0478,-0.5209 0.35985,-0.79267 0.31203,-0.27429 0.83797,-0.27429 0.53096,0 0.84048,0.29442 0.30952,0.29442 0.30952,0.72976 0,0.22145 -0.0906,0.43534 -0.0906,0.2139 -0.30197,0.45044 -0.20886,0.23655 -0.69705,0.64924 -0.40766,0.34223 -0.52342,0.46554 -0.11575,0.12079 -0.19124,0.24409 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1500" /> - <path - d="m 489.92208,184.34829 v -0.88326 h -1.60045 v -0.41521 l 1.68349,-2.3906 h 0.36991 v 2.3906 h 0.49825 v 0.41521 h -0.49825 v 0.88326 z m 0,-1.29847 v -1.66336 l -1.15504,1.66336 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1502" /> - </g> - <g - aria-label="B" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1139"> - <path - d="m 397.93266,182.4624 v -5.6755 h 2.12928 q 0.6504,0 1.04141,0.17422 0.39489,0.17034 0.61556,0.53038 0.22454,0.35617 0.22454,0.74718 0,0.36392 -0.19744,0.68525 -0.19744,0.32132 -0.5962,0.51877 0.5149,0.15098 0.78977,0.51489 0.27874,0.36392 0.27874,0.85946 0,0.39876 -0.17034,0.74331 -0.16647,0.34069 -0.41424,0.52651 -0.24777,0.18583 -0.6233,0.28262 -0.37166,0.0929 -0.91365,0.0929 z m 0.75106,-3.2907 h 1.22724 q 0.49941,0 0.71621,-0.0658 0.28648,-0.0852 0.42973,-0.28261 0.14711,-0.19744 0.14711,-0.49554 0,-0.28262 -0.1355,-0.49555 -0.1355,-0.21679 -0.38714,-0.29422 -0.25164,-0.0813 -0.86333,-0.0813 h -1.13432 z m 0,2.62095 h 1.41307 q 0.36391,0 0.51102,-0.0271 0.25939,-0.0465 0.4336,-0.15486 0.17422,-0.1084 0.28649,-0.31358 0.11227,-0.20906 0.11227,-0.48006 0,-0.31746 -0.1626,-0.54974 -0.1626,-0.23616 -0.45296,-0.32907 -0.28648,-0.0968 -0.82848,-0.0968 h -1.31241 z" - style="stroke-width:0.18136825" - id="path1505" /> - </g> - <g - aria-label="M" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1145"> - <path - d="m 397.28226,139.9874 v -5.6755 h 1.13046 l 1.34338,4.01853 q 0.18583,0.56135 0.271,0.8401 0.0968,-0.30972 0.30197,-0.90979 l 1.35887,-3.94884 h 1.01044 v 5.6755 h -0.72396 v -4.75024 l -1.64922,4.75024 h -0.6775 l -1.64148,-4.83153 v 4.83153 z" - style="stroke-width:0.18136825" - id="path1508" /> - </g> - <g - aria-label="J1" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1011"> - <path - d="m 269.3869,349.48895 0.6775,-0.0929 q 0.0271,0.6504 0.2439,0.89043 0.2168,0.24003 0.60007,0.24003 0.28261,0 0.4878,-0.12776 0.20518,-0.13163 0.28261,-0.3523 0.0774,-0.22454 0.0774,-0.71234 v -3.91013 h 0.75105 v 3.86754 q 0,0.71235 -0.17421,1.10336 -0.17034,0.39101 -0.54587,0.5962 -0.37166,0.20518 -0.87494,0.20518 -0.74719,0 -1.14594,-0.42973 -0.39489,-0.42972 -0.3794,-1.27756 z" - style="stroke-width:0.18136825" - id="path1511" /> - <path - d="m 275.04285,352.68519 h -0.45296 v -2.88634 q -0.16357,0.15602 -0.43031,0.31204 -0.26422,0.15602 -0.4756,0.23403 v -0.43786 q 0.37998,-0.17867 0.66434,-0.43282 0.28435,-0.25416 0.40262,-0.49322 h 0.29191 z" - style="font-size:5.15363264px;baseline-shift:sub;stroke-width:0.18136825" - id="path1513" /> - </g> - <g - aria-label="ON" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.92866659px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.18136825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - id="text1017"> - <path - d="m 267.01178,307.12707 q 0,-1.41307 0.7588,-2.21058 0.7588,-0.80138 1.95894,-0.80138 0.7859,0 1.41694,0.37553 0.63104,0.37552 0.96011,1.04915 0.33294,0.66976 0.33294,1.52147 0,0.86332 -0.34843,1.54469 -0.34842,0.68137 -0.98721,1.03367 -0.63878,0.34843 -1.37822,0.34843 -0.80139,0 -1.43243,-0.38714 -0.63104,-0.38714 -0.95624,-1.0569 -0.3252,-0.66975 -0.3252,-1.41694 z m 0.77429,0.0116 q 0,1.02592 0.54974,1.61825 0.55361,0.58846 1.38597,0.58846 0.84784,0 1.39371,-0.5962 0.54974,-0.5962 0.54974,-1.69181 0,-0.69299 -0.23616,-1.20789 -0.23228,-0.51877 -0.68524,-0.80138 -0.44908,-0.28648 -1.01044,-0.28648 -0.79751,0 -1.37435,0.54974 -0.57297,0.54587 -0.57297,1.82731 z" - style="stroke-width:0.18136825" - id="path1516" /> - <path - d="m 273.39575,309.89127 v -5.6755 h 0.77042 l 2.98099,4.456 v -4.456 h 0.72008 v 5.6755 h -0.77041 l -2.98099,-4.45988 v 4.45988 z" - style="stroke-width:0.18136825" - id="path1518" /> - </g> - </g> -</svg>
diff --git a/images/standard-sets-venn.tikz b/images/standard-sets-venn.tikz @@ -1,4 +1,5 @@ % This diagram represents the relationship between standard number sets +% Copyright Pablo (C) 2021 \begin{tikzpicture} % The complex numbers \draw (-3,-2.5) rectangle (3,2.5)
diff --git a/images/unit-circle-covering.tikz b/images/unit-circle-covering.tikz @@ -1,4 +1,5 @@ % This picture represents the universal convering of the unit circle +% Copyright Pablo (C) 2021 \begin{tikzpicture}[scale=0.75] \begin{scope}[shift={(-3.5, -1)}] \begin{axis}[view={0}{60}, axis lines=none, ymin=-2, ymax=5, xmin=-2, xmax=2]
diff --git a/images/unit-circle.tikz b/images/unit-circle.tikz @@ -1,4 +1,5 @@ % This picture represents the unit complex circle +% Copyright Pablo (C) 2021 \begin{tikzpicture}[scale=1.2] \node[above] (O) at (0,1) {$i$}; \node[right] (O) at (1,0) {$1$};