Amélioration des procédures PlaceXXX, application au placement des noms des îles...
authorJean-Michel Sarlat <jm.sarlat@gmail.com>
Thu, 8 Nov 2012 07:22:50 +0000 (08:22 +0100)
committerJean-Michel Sarlat <jm.sarlat@gmail.com>
Thu, 8 Nov 2012 07:22:50 +0000 (08:22 +0100)
cartes/32U/postscript/LISTE.txt
cartes/32U/postscript/carte1.pdf
cartes/32U/postscript/carte1.png
cartes/32U/postscript/carte1.ps
cartes/32U/postscript/carte1.svg
cartes/32U/postscript/iles.ps [deleted file]
cartes/32U/postscript/noms-fleuves.ps [new file with mode: 0644]
cartes/32U/postscript/noms-iles.ps [new file with mode: 0644]
cartes/32U/postscript/villes.ps

index 03c5775..c83ed86 100644 (file)
@@ -1,9 +1,12 @@
-== Fichiers de données adaptées à la zone 32U
+== Fichiers de données adaptées à la zone 32U
 pays.ps
 fleuves.ps
 lacs.ps
 lander.ps
 villes.ps
 pays.ps
 fleuves.ps
 lacs.ps
 lander.ps
 villes.ps
+== Noms des fleuves et des îles pour placement
+noms-fleuves.ps
+nom-iles.ps
 == Cartes
 carte1.ps::Allemagne 1 (ps)
 carte1.pdf::Allemagne 1 (pdf)
 == Cartes
 carte1.ps::Allemagne 1 (ps)
 carte1.pdf::Allemagne 1 (pdf)
index da5935e..9cede90 100644 (file)
Binary files a/cartes/32U/postscript/carte1.pdf and b/cartes/32U/postscript/carte1.pdf differ
index 242b39b..bae7991 100644 (file)
Binary files a/cartes/32U/postscript/carte1.png and b/cartes/32U/postscript/carte1.png differ
index 7fedf9d..bbdc7df 100644 (file)
@@ -1,4 +1,4 @@
-%! PS
+%!PS
 
 << /PageSize [750 900] >> setpagedevice
 % ------------------------------------------------------------------------------
 
 << /PageSize [750 900] >> setpagedevice
 % ------------------------------------------------------------------------------
@@ -20,12 +20,13 @@ gsave                                                         %% Couleur du fond
 grestore
 % ------------------------------------------------------------------------------
 
 grestore
 % ------------------------------------------------------------------------------
 
-(pays.ps)    run
-(lander.ps)  run
-(fleuves.ps) run
-(lacs.ps)    run
-(villes.ps)  run
-(iles.ps)    run
+(pays.ps)         run
+(lander.ps)       run
+(fleuves.ps)      run
+(lacs.ps)         run
+(villes.ps)       run
+(noms-iles.ps)    run
+(noms-fleuves.ps) run
 
 % ------------------------------------------------------------------------------
 /Pas 1 def
 
 % ------------------------------------------------------------------------------
 /Pas 1 def
@@ -48,21 +49,32 @@ grestore
        } for
 } def
 
        } for
 } def
 
+/concatstrings {
+       exch dup length    
+    2 index length add string    
+    dup dup 4 2 roll copy length
+       4 -1 roll putinterval
+} bind def
+
 %% PlacePoint et PlaceNom ------------------------------------------------------
 %% PlacePoint et PlaceNom ------------------------------------------------------
-%% [e n (nom) angle] PlacePoint ensuite PlaceNom récupére ce qu'il lui faut dans
-%% dictionnaire disquedict
-/disquedict 10 dict def
-disquedict /mtrx matrix put
-
-/Nom (Ville) def
-/Position -1 def
-/PlacePoint {  
-       aload pop
-       /Position exch def
-       /Nom exch def
-       newpath
-       disquedict begin
+%% [e n (nom) angle] PlacePoint ensuite PlaceNom récupère ce qu'il lui faut dans
+%% dictionnaire placedict
+%%
+%% Usage : [e n (nom) pos (proc)] PlacePoint .... PlaceNom
+%% Le cinquième argument est facultatif....
+
+/placedict 10 dict def
+placedict /mtrx matrix put
+
+/PlacePoint {
+       placedict begin
+               /argv exch def /argn argv length def
+               argv aload pop
+               /proc (Place_Defaut) def
+               argn 4 gt { (Place_) exch concatstrings /proc exch def } if
+               /pos exch def /nom exch def
                /Y exch def /X exch def
                /Y exch def /X exch def
+               newpath
                /savematrix mtrx currentmatrix def
                X Y translate RayonDisque dup scale
                0 0 1 0 360 arc
                /savematrix mtrx currentmatrix def
                X Y translate RayonDisque dup scale
                0 0 1 0 360 arc
@@ -71,40 +83,77 @@ disquedict /mtrx matrix put
 } def
 
 /PlaceNom {
 } def
 
 /PlaceNom {
-       Position -1 gt {
-               disquedict begin
+       placedict begin
+               pos -1 gt {
                        /savematrix mtrx currentmatrix def                      
                        X Y translate
                        %% Dimension (largeur) du nom -------------------------                 
                        /savematrix mtrx currentmatrix def                      
                        X Y translate
                        %% Dimension (largeur) du nom -------------------------                 
-                       Nom stringwidth pop /WX exch def
+                       nom stringwidth pop /wx exch def
                        %% ----------------------------------------------------
                        %% ----------------------------------------------------
-                       Position cos LabelOffset mul /X exch def
-                       Position sin LabelOffset mul /Y exch def
-                       X 0 gt {
-                               %% Nom à droite
-                               X Y HauteurCaractere 2 sub moveto
-                       } {
-                               X 0 lt {
-                                       %% Nom à gauche
-                                       X WX sub Y HauteurCaractere 2 div  sub moveto
-                               } {
-                                       Y 0 gt {
-                                               %% Nom au dessus
-                                               X WX 2 div sub Y moveto
-                                       } {
-                                               %% Nom en dessous
-                                               X WX 2 div sub Y HauteurCaractere sub moveto
-                                       } ifelse
-                               } ifelse                
-                       } ifelse
-                       %% Présentation du nom --------------------------------                        
-                       0.7 setgray Nom show
-                       CouleurNom WX neg 0.65 sub 0.65 rmoveto Nom show
+                       proc cvx exec
                        %% ----------------------------------------------------
                        savematrix setmatrix
                        %% ----------------------------------------------------
                        savematrix setmatrix
-               end
-       } if
+               } if
+       end
+} def
+
+/Place_Defaut_Position {
+       pos cos LabelOffset mul /X exch def
+       pos sin LabelOffset mul /Y exch def
+       X 0 gt {
+               %% Nom Ã  droite
+               X Y HauteurCaractere 2 div sub moveto
+       } {
+               X 0 lt {
+                       %% Nom Ã  gauche
+                       X wx sub Y HauteurCaractere 2 div sub moveto
+               } {
+                       Y 0 gt {
+                               %% Nom au dessus
+                               X wx 2 div sub Y moveto
+                       } {
+                               %% Nom en dessous
+                               X wx 2 div sub Y HauteurCaractere sub moveto
+                       } ifelse
+               } ifelse                
+       } ifelse
+} def
+
+/Place_Defaut {
+       Place_Defaut_Position
+       %% Présentation du nom --------------------------------                        
+       0.7 setgray nom show
+       CouleurNom wx neg 0.65 sub 0.65 rmoveto nom show        
+} def
+
+/Place_Centering {
+       wx 2 div neg wx 2 div neg rmoveto
+       %% Présentation du nom --------------------------------                        
+       0.7 setgray nom show
+       CouleurNom wx neg 0.65 sub 0.65 rmoveto nom show
 } def
 } def
+
+/Place_Rotate {
+       pos cos 0 ge {
+               pos rotate 
+               LabelOffset HauteurCaractere 2 div neg moveto
+       } {
+               pos 180 sub rotate
+               LabelOffset wx add neg HauteurCaractere 2 div neg moveto
+       } ifelse
+       %% Présentation du nom --------------------------------                        
+       0.7 setgray nom show
+       CouleurNom wx neg 0.65 sub 0.65 rmoveto nom show
+} def
+
+/Place_RotateCentering {
+       pos rotate wx 2 div neg HauteurCaractere 2 div neg moveto
+       %% Présentation du nom --------------------------------                        
+       0.7 setgray nom show
+       CouleurNom wx neg 0.65 sub 0.65 rmoveto nom show
+} def
+
+
 % ------------------------------------------------------------------------------
 
 1 setlinejoin
 % ------------------------------------------------------------------------------
 
 1 setlinejoin
@@ -130,7 +179,7 @@ allemagne { Construction closepath gsave LightGoldenrod fill grestore} forall
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Länder (frontières) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 lander { Construction closepath WhiteSmoke 0.5 setlinewidth stroke} forall
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Länder (frontières) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 lander { Construction closepath WhiteSmoke 0.5 setlinewidth stroke} forall
 
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Fleuves et rivières %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Fleuves et riviÃ\83¨res %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 [rhin saone elbe neckar rhone doubs danube oder saale mosel weser ems main] {
        { Construction DarkBlue 0.25 setlinewidth stroke} forall
 } forall
 [rhin saone elbe neckar rhone doubs danube oder saale mosel weser ems main] {
        { Construction DarkBlue 0.25 setlinewidth stroke} forall
 } forall
@@ -141,7 +190,10 @@ lander { Construction closepath WhiteSmoke 0.5 setlinewidth stroke} forall
 /CouleurNom       {DarkRed} def
 /RayonDisque      2 def
 /LabelOffset      5 def
 /CouleurNom       {DarkRed} def
 /RayonDisque      2 def
 /LabelOffset      5 def
-V_allemagne { PlacePoint gsave DarkRed fill grestore} forall
+[V_allemagne V_hollande V_belgique V_luxembourg V_france V_suisse V_autriche
+V_tchequie V_pologne] {
+       { PlacePoint gsave DarkRed fill grestore PlaceNom} forall
+} forall
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Capitales %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 /Helvetica-Bold   findfont 14 scalefont ISOEncode setfont
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Capitales %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 /Helvetica-Bold   findfont 14 scalefont ISOEncode setfont
@@ -153,14 +205,30 @@ V_allemagne_capitales_lander {
        PlacePoint gsave YellowGreen fill grestore PlaceNom
 } forall
 
        PlacePoint gsave YellowGreen fill grestore PlaceNom
 } forall
 
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Iles %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Iles (Noms) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 /Helvetica-Bold   findfont 6 scalefont ISOEncode setfont
 /HauteurCaractere 5 def
 /CouleurNom       {DarkBlue} def
 /RayonDisque      3 def         
 /LabelOffset      5 def
 I_allemagne {
 /Helvetica-Bold   findfont 6 scalefont ISOEncode setfont
 /HauteurCaractere 5 def
 /CouleurNom       {DarkBlue} def
 /RayonDisque      3 def         
 /LabelOffset      5 def
 I_allemagne {
-       PlacePoint pop PlaceNom
+       PlacePoint PlaceNom
 } forall
 
 } forall
 
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Rivières (Noms) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+/Helvetica-Bold   findfont 6 scalefont ISOEncode setfont
+/HauteurCaractere 5 def
+/CouleurNom       {DarkBlue} def       
+R_allemagne {
+       PlacePoint PlaceNom
+} forall
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Autres annotations %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+/mo /moveto load def
+/Helvetica-Bold findfont 20 scalefont setfont 
+/shm { gsave DarkBlue show grestore } def
+90.412 368.266 mo (Nordsee)shm
+630.412 418.266 mo (Ostsee)shm
+
+
 showpage
 showpage
index 0457639..03133da 100644 (file)
@@ -9,22 +9,22 @@
    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"
    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"
-   id="svg7047"
+   id="svg3004"
    version="1.1"
    inkscape:version="0.48.2 r9819"
    width="938.75"
    height="1126.25"
    version="1.1"
    inkscape:version="0.48.2 r9819"
    width="938.75"
    height="1126.25"
-   onload='init(evt)'
    xml:space="preserve"
    xml:space="preserve"
+   onload='init(evt)'
    sodipodi:docname="carte1.pdf"><metadata
    sodipodi:docname="carte1.pdf"><metadata
-     id="metadata7053"><rdf:RDF><cc:Work
+     id="metadata3010"><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
          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="defs7051"><clipPath
+     id="defs3008"><clipPath
        clipPathUnits="userSpaceOnUse"
        clipPathUnits="userSpaceOnUse"
-       id="clipPath7063"><path
+       id="clipPath3020"><path
          d="M 0,0 750,0 750,900 0,900 0,0 z"
          d="M 0,0 750,0 750,900 0,900 0,0 z"
-         id="path7065" /></clipPath></defs><sodipodi:namedview
+         id="path3022" /></clipPath></defs><sodipodi:namedview
      pagecolor="#ffffff"
      bordercolor="#666666"
      borderopacity="1"
      pagecolor="#ffffff"
      bordercolor="#666666"
      borderopacity="1"
      guidetolerance="10"
      inkscape:pageopacity="0"
      inkscape:pageshadow="2"
      guidetolerance="10"
      inkscape:pageopacity="0"
      inkscape:pageshadow="2"
-     inkscape:window-width="954"
-     inkscape:window-height="925"
-     id="namedview7049"
+     inkscape:window-width="775"
+     inkscape:window-height="807"
+     id="namedview3006"
      showgrid="false"
      showgrid="false"
-     inkscape:zoom="1"
-     inkscape:cx="359.06842"
-     inkscape:cy="692.71115"
-     inkscape:window-x="343"
-     inkscape:window-y="20"
+     inkscape:zoom="0.62064373"
+     inkscape:cx="469.375"
+     inkscape:cy="861.14437"
+     inkscape:window-x="231"
+     inkscape:window-y="36"
      inkscape:window-maximized="0"
      inkscape:window-maximized="0"
-     inkscape:current-layer="g7055" />
+     inkscape:current-layer="g3012" />
 <style>
     .caption{ font-size: 14px; font-family: Georgia, serif; }
     .tooltip{ font-size: 12px; }
 <style>
     .caption{ font-size: 14px; font-family: Georgia, serif; }
     .tooltip{ font-size: 12px; }
     }
     ]]>
 </script>
     }
     ]]>
 </script>
-    <g
-     id="g7055"
-     onmousemove="ShowTooltip(evt, 'The amazing blue box')" onmouseout="HideTooltip(evt)"
+     <g
+     id="g3012"
+     onmousemove="ShowTooltip(evt, '')" onmouseout="HideTooltip(evt)"
      inkscape:groupmode="layer"
      inkscape:label="carte1"
      transform="matrix(1.25,0,0,-1.25,0,1126.25)"><g
      inkscape:groupmode="layer"
      inkscape:label="carte1"
      transform="matrix(1.25,0,0,-1.25,0,1126.25)"><g
-       id="g7057"
+       id="g3014"
        transform="translate(0,1)"><g
        transform="translate(0,1)"><g
-         id="g7059"><g
-           id="g7061"
-           clip-path="url(#clipPath7063)"><g
-             id="g7067"
+         id="g3016"><g
+           id="g3018"
+           clip-path="url(#clipPath3020)"><g
+             id="g3024"
              transform="scale(0.1,0.1)"><path
                d="m 0,4500 7500,0 0,9000 -7500,0 0,-9000 z"
                style="fill:#00bfff;fill-opacity:1;fill-rule:nonzero;stroke:none"
              transform="scale(0.1,0.1)"><path
                d="m 0,4500 7500,0 0,9000 -7500,0 0,-9000 z"
                style="fill:#00bfff;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7069" /><path
+               id="path3026" /><path
                d="m 1311.87,7315.06 0,0 4.58,-6.76 4.31,-10.78 -5.7,3.69 -8.3,10.56 -5.54,2.25 -6.88,-0.99 -9.95,-4.8 -4.01,-1.08 -11.64,6.36 -8.68,13.29 -2.17,13.13 7.93,5.67 50.87,13.78 24.81,1.18 8.28,-17.64 -14.91,-1.72 -23.36,-9.33 -12.27,-2.54 -0.22,-6.9 7.3,-3.11 5.55,-4.26"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 1311.87,7315.06 0,0 4.58,-6.76 4.31,-10.78 -5.7,3.69 -8.3,10.56 -5.54,2.25 -6.88,-0.99 -9.95,-4.8 -4.01,-1.08 -11.64,6.36 -8.68,13.29 -2.17,13.13 7.93,5.67 50.87,13.78 24.81,1.18 8.28,-17.64 -14.91,-1.72 -23.36,-9.33 -12.27,-2.54 -0.22,-6.9 7.3,-3.11 5.55,-4.26"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7071" /><path
+               id="path3028" /><path
                d="m 1542.4,7429.23 0,0 -140.24,-11.9 24.8,11.46 90.27,9.12 25.17,-8.68"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 1542.4,7429.23 0,0 -140.24,-11.9 24.8,11.46 90.27,9.12 25.17,-8.68"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7073" /><path
+               id="path3030" /><path
                d="m 1715.79,7465.2 0,0 -1.05,-1.25 -1.84,0.16 -30.98,-11.63 -80.96,-8.69 -26.42,8.05 30.68,16.98 35.74,5.08 74.62,-3.35 0.21,-5.35"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 1715.79,7465.2 0,0 -1.05,-1.25 -1.84,0.16 -30.98,-11.63 -80.96,-8.69 -26.42,8.05 30.68,16.98 35.74,5.08 74.62,-3.35 0.21,-5.35"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7075" /><path
+               id="path3032" /><path
                d="m 1766.18,7476.24 0,0 8.37,-7.03 -2.28,-4.37 -2.15,-1.62 -5.15,-1.5 -26.27,8.82 -9.56,-0.3 10.88,7.34 13.48,1.82 12.68,-3.16"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 1766.18,7476.24 0,0 8.37,-7.03 -2.28,-4.37 -2.15,-1.62 -5.15,-1.5 -26.27,8.82 -9.56,-0.3 10.88,7.34 13.48,1.82 12.68,-3.16"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7077" /><path
+               id="path3034" /><path
                d="m 2260.13,7458.4 0,0 -10.49,-10.17 -3.3,-2.26 -5.78,1.56 -3.52,2.63 -4.01,0.57 -7.02,-4.52 0.1,7.54 8.42,14.27 13.03,5.59 14.83,-2.53 13.79,-10.22 -9.48,0.11 -6.57,-2.57"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2260.13,7458.4 0,0 -10.49,-10.17 -3.3,-2.26 -5.78,1.56 -3.52,2.63 -4.01,0.57 -7.02,-4.52 0.1,7.54 8.42,14.27 13.03,5.59 14.83,-2.53 13.79,-10.22 -9.48,0.11 -6.57,-2.57"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7079" /><path
+               id="path3036" /><path
                d="m 1901.45,7492.13 0,0 -0.97,-1.13 -1.64,0.14 -1.79,-1 -48.01,2.45 -22.47,-4.99 -2.04,-19.46 -19.46,-0.62 -5.68,5.47 -1.85,15.05 3.54,12.63 8.08,4.95 20.25,0.38 58.74,-0.67 13.12,-8.37 0.18,-4.83"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 1901.45,7492.13 0,0 -0.97,-1.13 -1.64,0.14 -1.79,-1 -48.01,2.45 -22.47,-4.99 -2.04,-19.46 -19.46,-0.62 -5.68,5.47 -1.85,15.05 3.54,12.63 8.08,4.95 20.25,0.38 58.74,-0.67 13.12,-8.37 0.18,-4.83"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7081" /><path
+               id="path3038" /><path
                d="m 2014.99,7518.36 0,0 -14.88,-9.17 -18.66,-7.5 -18.96,-0.75 -15.95,11.04 -6.09,-8.57 -5.94,-4.2 -5.58,0.16 -5.03,4.75 17.08,20.73 27.83,5.65 55.7,-4.65 -0.12,-7.64 -9.4,0.15"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2014.99,7518.36 0,0 -14.88,-9.17 -18.66,-7.5 -18.96,-0.75 -15.95,11.04 -6.09,-8.57 -5.94,-4.2 -5.58,0.16 -5.03,4.75 17.08,20.73 27.83,5.65 55.7,-4.65 -0.12,-7.64 -9.4,0.15"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7083" /><path
+               id="path3040" /><path
                d="m 2101.14,7535.04 0,0 17.34,-11.01 -6.25,1.24 -7.09,-0.7 -27.62,6.75 -11.79,-0.44 -1.23,-13.33 -12.59,9.41 2.97,6.91 11.85,4.18 13.84,1.33 10.74,-1.2 9.83,-3.14"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2101.14,7535.04 0,0 17.34,-11.01 -6.25,1.24 -7.09,-0.7 -27.62,6.75 -11.79,-0.44 -1.23,-13.33 -12.59,9.41 2.97,6.91 11.85,4.18 13.84,1.33 10.74,-1.2 9.83,-3.14"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7085" /><path
+               id="path3042" /><path
                d="m 4443.02,7814.7 0,0 -17.47,-58.63 -6.62,-10.64 -7.93,-0.45 -0.87,7.74 3.87,19.52 -3.3,12.84 -5.48,-0.13 -3.27,-9.5 3.51,-15.3 -9.35,-8.38 -10.53,0.28 -10.78,5.85 -10.33,8.51 8.77,25.62 23.07,21.21 26.76,9.91 19.95,-8.45"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 4443.02,7814.7 0,0 -17.47,-58.63 -6.62,-10.64 -7.93,-0.45 -0.87,7.74 3.87,19.52 -3.3,12.84 -5.48,-0.13 -3.27,-9.5 3.51,-15.3 -9.35,-8.38 -10.53,0.28 -10.78,5.85 -10.33,8.51 8.77,25.62 23.07,21.21 26.76,9.91 19.95,-8.45"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7087" /><path
+               id="path3044" /><path
                d="m 4468.94,7853.66 0,0 -3.72,-0.13 -4.37,20.04 0.03,2.71 3.22,8.34 43.69,23 8.79,9.3 -10.43,-16.1 -29.2,-28.92 -8.01,-18.24"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 4468.94,7853.66 0,0 -3.72,-0.13 -4.37,20.04 0.03,2.71 3.22,8.34 43.69,23 8.79,9.3 -10.43,-16.1 -29.2,-28.92 -8.01,-18.24"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7089" /><path
+               id="path3046" /><path
                d="m 6068.27,7954.81 0,0 20.75,-11.11 124.17,-118.2 11.86,-7.49 -8.92,-30.68 -5.15,-4.13 -6.11,-2.3 12.5,-13.28 6.72,-17.23 -73.69,-14.02 -14.74,1.08 -11.55,7.02 -14.11,-18.38 -18.36,-12.55 -36.98,-12.75 -41.52,-3.57 -23.58,5.42 -13.14,15.6 8.27,3.8 13,11.39 20.71,6.1 21.83,14.67 5.71,6.98 2.57,32.55 -27.53,44.42 -0.36,28.72 33.17,0.23 11.98,-4 -3.82,-8.58 1.99,-6.09 -3.69,-22.08 0.42,-17.63 8.89,18.92 8.07,5.19 26.49,1.76 -3.19,-2.88 -2.44,-3.06 -1.48,-4.15 -0.63,-6.39 22.84,-5.24 -6.31,14.03 6.45,27.88 -3.27,29.55 -10.38,17.79 -14.77,-7.4 -6.56,17.71 -8.23,14.48 -9.68,11.09 -10.92,7.54 -13.2,2.31 -12.83,-3.84 -6.17,-8.92 6.92,-13.54 0.57,-8.21 -5.39,-3.49 -5.47,-7.36 -4.21,-8.9 -1.32,-8.4 -3.83,-2.63 -22.2,-10.3 0.26,15.08 4.37,9.53 4.75,6.96 1.33,7.31 -4.38,13.26 -4.97,1.16 -5.33,-4.41 -20.39,-10.75 -8.72,-13.57 -8.52,-9.64 -13.66,4.15 3.88,21.84 15.22,37.85 1.73,29.43 -6.84,16.67 -28.68,26.21 -8.8,11.92 5.15,12.99 9.32,11.36 11.81,5.53 12.55,-4.28 6.53,-10.4 15.78,-35.44 8.74,-13.83 18.5,-16.49 44.77,-22.22 25.45,-7.67"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 6068.27,7954.81 0,0 20.75,-11.11 124.17,-118.2 11.86,-7.49 -8.92,-30.68 -5.15,-4.13 -6.11,-2.3 12.5,-13.28 6.72,-17.23 -73.69,-14.02 -14.74,1.08 -11.55,7.02 -14.11,-18.38 -18.36,-12.55 -36.98,-12.75 -41.52,-3.57 -23.58,5.42 -13.14,15.6 8.27,3.8 13,11.39 20.71,6.1 21.83,14.67 5.71,6.98 2.57,32.55 -27.53,44.42 -0.36,28.72 33.17,0.23 11.98,-4 -3.82,-8.58 1.99,-6.09 -3.69,-22.08 0.42,-17.63 8.89,18.92 8.07,5.19 26.49,1.76 -3.19,-2.88 -2.44,-3.06 -1.48,-4.15 -0.63,-6.39 22.84,-5.24 -6.31,14.03 6.45,27.88 -3.27,29.55 -10.38,17.79 -14.77,-7.4 -6.56,17.71 -8.23,14.48 -9.68,11.09 -10.92,7.54 -13.2,2.31 -12.83,-3.84 -6.17,-8.92 6.92,-13.54 0.57,-8.21 -5.39,-3.49 -5.47,-7.36 -4.21,-8.9 -1.32,-8.4 -3.83,-2.63 -22.2,-10.3 0.26,15.08 4.37,9.53 4.75,6.96 1.33,7.31 -4.38,13.26 -4.97,1.16 -5.33,-4.41 -20.39,-10.75 -8.72,-13.57 -8.52,-9.64 -13.66,4.15 3.88,21.84 15.22,37.85 1.73,29.43 -6.84,16.67 -28.68,26.21 -8.8,11.92 5.15,12.99 9.32,11.36 11.81,5.53 12.55,-4.28 6.53,-10.4 15.78,-35.44 8.74,-13.83 18.5,-16.49 44.77,-22.22 25.45,-7.67"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7091" /><path
+               id="path3048" /><path
                d="m 2734.07,8281.73 0,0 -28.21,-2.14 -13.32,4.87 -7.13,12.55 7.11,3.83 1.15,6.33 -3,6.79 -5.2,5.19 20.45,19.73 22.97,10.42 25.48,1.4 28.36,-7.56 -2.95,-1.38 -1.47,-3.39 -0.27,-4.88 0.67,-6.27 -11.79,-11.44 -8.32,-13.67 -9.45,-12.58 -15.08,-7.8"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2734.07,8281.73 0,0 -28.21,-2.14 -13.32,4.87 -7.13,12.55 7.11,3.83 1.15,6.33 -3,6.79 -5.2,5.19 20.45,19.73 22.97,10.42 25.48,1.4 28.36,-7.56 -2.95,-1.38 -1.47,-3.39 -0.27,-4.88 0.67,-6.27 -11.79,-11.44 -8.32,-13.67 -9.45,-12.58 -15.08,-7.8"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7093" /><path
+               id="path3050" /><path
                d="m 4268.07,8316.48 0,0 40.33,-70.91 -81.97,11.13 -11.65,-7.2 3.02,-4.4 2.95,-1.92 -26.04,-2.47 -17.18,2.3 -7.59,8.98 0.53,22.69 -3.21,8.65 -9.34,3.17 -17.04,0.02 -6.9,-2.45 -4.63,-6.69 -4.83,-0.14 -2.24,8.11 -2.41,4.47 -3.42,0.19 -7.7,-5.11 -2.18,15.3 16.78,45.53 24.63,25.46 31.13,6.28 55.97,-22.16 17.05,-13.73 5.23,-6.62 10.71,-18.48"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 4268.07,8316.48 0,0 40.33,-70.91 -81.97,11.13 -11.65,-7.2 3.02,-4.4 2.95,-1.92 -26.04,-2.47 -17.18,2.3 -7.59,8.98 0.53,22.69 -3.21,8.65 -9.34,3.17 -17.04,0.02 -6.9,-2.45 -4.63,-6.69 -4.83,-0.14 -2.24,8.11 -2.41,4.47 -3.42,0.19 -7.7,-5.11 -2.18,15.3 16.78,45.53 24.63,25.46 31.13,6.28 55.97,-22.16 17.05,-13.73 5.23,-6.62 10.71,-18.48"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7095" /><path
+               id="path3052" /><path
                d="m 2592.47,8319.72 0,0 -18.53,-10.49 -14.49,0.36 -8.23,7.35 -6.56,16.14 4.15,17.92 11.72,8.96 4.79,2.22 4.59,2.96 41.64,17.6 1.28,-12.08 -5.23,-27.26 -15.13,-23.68"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2592.47,8319.72 0,0 -18.53,-10.49 -14.49,0.36 -8.23,7.35 -6.56,16.14 4.15,17.92 11.72,8.96 4.79,2.22 4.59,2.96 41.64,17.6 1.28,-12.08 -5.23,-27.26 -15.13,-23.68"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7097" /><path
+               id="path3054" /><path
                d="m 5492.39,8493.98 0,0 0.41,-1.36 -0.3,-1.57 -0.11,2.93"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 5492.39,8493.98 0,0 0.41,-1.36 -0.3,-1.57 -0.11,2.93"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7099" /><path
+               id="path3056" /><path
                d="m 5492.39,8493.98 0,0 -0.48,1.36 -1.94,2.25 -2.69,0.07 0.9,-15.23 -4,-0.23 -1.35,22.75 -14.98,-13.91 -2.74,-18.38 0.67,-21.64 -5,-23.46 -4.25,-6.42 -8.69,-8.52 -3.31,-8.95 -1.78,-10.95 -0.56,-11.15 0.56,-23.66 -4.48,-0.26 -0.88,15.17 0.33,25.72 16,74.26 2.69,28.35 4.28,8.09 10.45,3.38 8.84,0.92 7.28,-0.78 4.45,-6.25 0.68,-12.53"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 5492.39,8493.98 0,0 -0.48,1.36 -1.94,2.25 -2.69,0.07 0.9,-15.23 -4,-0.23 -1.35,22.75 -14.98,-13.91 -2.74,-18.38 0.67,-21.64 -5,-23.46 -4.25,-6.42 -8.69,-8.52 -3.31,-8.95 -1.78,-10.95 -0.56,-11.15 0.56,-23.66 -4.48,-0.26 -0.88,15.17 0.33,25.72 16,74.26 2.69,28.35 4.28,8.09 10.45,3.38 8.84,0.92 7.28,-0.78 4.45,-6.25 0.68,-12.53"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7101" /><path
+               id="path3058" /><path
                d="m 5638.83,8572.91 0,0 -4.01,-16.05 3.22,-19.53 6.4,-15.51 9.3,-11.7 11.53,-8.5 27.47,-7.49 82.64,21.49 29.3,-4.42 20.86,-20.31 6.11,-28.38 -15.05,-28 -27.47,-21.19 -13.28,-14.72 -5.02,-16.71 3.55,-18.45 7.1,-19.1 8.31,-16.07 7.35,-9.44 13.73,-6.13 31.19,-5.44 14.25,-8.74 19.25,-30.5 12.12,-13.84 16.39,-5.12 -8.3,-6.85 -7.75,-11.03 -5.47,-14.9 -1.34,-18.27 1.19,-17.75 -1.55,-7.08 -6.76,0.18 -14.56,4.11 7.66,0.51 5.79,3.85 2.12,7.58 -3.42,11.77 -4.5,-0.3 -6.13,-7.74 -9.76,-4.45 -10.41,-0.81 -8.16,3.09 -0.51,7.59 23.37,11.87 9.44,8.71 4.59,13 -33.65,-4.49 -14.73,-5.76 -12.25,-9.63 34.19,27.58 11.81,5.92 -0.51,7.64 -17.56,0.5 -8.99,-1.52 -6.01,-5.01 -8.11,-10.86 -5.67,2.17 -5.59,7.01 -7.52,3.78 -64.21,-11.82 -11.07,-8.09 -32.46,-32.62 -6.6,-11.95 -6.52,-17.6 -15.66,-4.26 -13.86,-8.41 -0.71,-29.86 8.41,8.07 -0.15,5.65 -1.44,1.46 -1.82,0.01 -1.14,0.96 30.73,7.34 4.56,-1.68 6.37,-25.09 -0.6,-11.86 -10,-5.53 -18.75,1.66 -21.12,6.07 -23.94,13.76 4.75,6.23 2.69,13.31 5.75,17.42 -9.2,-6.27 -4.03,-4.69 -3.62,-5.99 2.82,-2.94 2.04,-3.68 -13.12,0.41 -6.64,-1.79 -4.6,-4.31 -5.6,-3.46 -6.78,3.97 -6.45,6.13 -4.3,3.08 -9.59,1.16 -11.83,4.88 -7.71,9.23 2.86,14.35 -9.58,2.37 -19.31,-11.06 -6.55,-1.08 -4.94,8.3 3.52,7.76 8.48,3.79 10.25,-3.55 -0.4,6.84 -42.2,28.7 7.53,24.42 11.65,20.46 16,8.39 20.56,-11.87 4.05,7.8 7.95,-6.85 8.82,2.21 18.58,14.44 -10.33,0.58 -8.16,6.89 -3.87,10.72 2.32,11.73 -0.42,6.89 -8.76,0.34 -5.22,5.11 -4.52,5.9 -6.73,2.42 -28.29,-9.29 9.82,23.76 4.4,6.25 17.35,5.36 18.85,11.63 13.17,3.16 -0.46,7.64 0.79,0.22 3.81,2.48 3.77,5.36 -18.42,5.92 -8.07,4.7 -5.75,9.63 2.06,2.72 1.96,1.96 0.78,3.74 -0.94,7.78 -18.66,-8.73 -11.5,-1.95 -5.31,4.75 -1.61,3.43 -3.13,0.67 -3.16,2.35 -1.91,8.48 -1.37,9.61 -2.82,5.65 -4.29,2.28 -5.81,-0.34 14.4,8 49.05,10.32 10.84,-1.77 3.88,-6.51 7.73,-2.58 7.9,-5.23 4.36,-14.38 3.23,-7.76 4.75,4.56 1.56,12.78 -6.33,16.97 8.48,13.5 11,12.96 11.64,10.06 10.62,4.87 -5.74,-23.08 -4.33,-10.13 -5.23,-6.55 4.2,0.37 3.52,-0.53 3.16,-2.28 3.33,-4.98 -2.95,-5.44 -5.01,-16.57 9.39,0.01 7.39,3.11 5.38,7.37 3.1,12.59 -5.64,1.21 -6.46,4.61 -5.71,1.38 -0.48,7.58 8.3,8.88 8.07,-14.43 12.27,-13.83 8.71,-14.73 -3.15,-17.16 14,-17.68 16.41,-4.73 33.33,2.93 -5.35,8.02 5.28,15.05 2.84,4.91 4.05,3.72 -0.52,8.22 -6.14,15.12 -3.98,7.64 -5.42,6.06 -0.49,7.58 3.5,2.99 2.05,2.56 2.48,2.06 5.06,1.59 -0.44,6.84 -8.11,-1.04 -4.9,-5.1 -3.63,-6.23 -4.42,-4.21 -7,-1.71 -22.25,-0.15 -3.56,3.35 -4.04,7.65 -4.96,7.53 -6.36,3.12 -9.88,1.57 -4.41,5.14 -2.6,7.28 -4.76,7.49 -8.16,10.56 -1.75,4.45 -8.22,-7.78 -4.67,-5.65 -9.51,-15.07 -14.59,-10.06 -10.21,-12.74 -11.08,-9.44 -13.28,3.4 -3.06,13.02 3.3,20.73 7.33,19.24 8.63,8.89 1.51,4.82 2.16,10.63 0.82,10.54 -2.22,4.59 -28.33,-9.27 -9.06,-7.18 -4.21,1.01 -0.37,12.89 3.14,7.75 6.41,7.82 7.39,6.1 86.76,31.19 18.03,1.36 17.49,-8.18 0.43,-6.83 -9.35,-8.61 -12.83,-8.54 -11.14,-11.08"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 5638.83,8572.91 0,0 -4.01,-16.05 3.22,-19.53 6.4,-15.51 9.3,-11.7 11.53,-8.5 27.47,-7.49 82.64,21.49 29.3,-4.42 20.86,-20.31 6.11,-28.38 -15.05,-28 -27.47,-21.19 -13.28,-14.72 -5.02,-16.71 3.55,-18.45 7.1,-19.1 8.31,-16.07 7.35,-9.44 13.73,-6.13 31.19,-5.44 14.25,-8.74 19.25,-30.5 12.12,-13.84 16.39,-5.12 -8.3,-6.85 -7.75,-11.03 -5.47,-14.9 -1.34,-18.27 1.19,-17.75 -1.55,-7.08 -6.76,0.18 -14.56,4.11 7.66,0.51 5.79,3.85 2.12,7.58 -3.42,11.77 -4.5,-0.3 -6.13,-7.74 -9.76,-4.45 -10.41,-0.81 -8.16,3.09 -0.51,7.59 23.37,11.87 9.44,8.71 4.59,13 -33.65,-4.49 -14.73,-5.76 -12.25,-9.63 34.19,27.58 11.81,5.92 -0.51,7.64 -17.56,0.5 -8.99,-1.52 -6.01,-5.01 -8.11,-10.86 -5.67,2.17 -5.59,7.01 -7.52,3.78 -64.21,-11.82 -11.07,-8.09 -32.46,-32.62 -6.6,-11.95 -6.52,-17.6 -15.66,-4.26 -13.86,-8.41 -0.71,-29.86 8.41,8.07 -0.15,5.65 -1.44,1.46 -1.82,0.01 -1.14,0.96 30.73,7.34 4.56,-1.68 6.37,-25.09 -0.6,-11.86 -10,-5.53 -18.75,1.66 -21.12,6.07 -23.94,13.76 4.75,6.23 2.69,13.31 5.75,17.42 -9.2,-6.27 -4.03,-4.69 -3.62,-5.99 2.82,-2.94 2.04,-3.68 -13.12,0.41 -6.64,-1.79 -4.6,-4.31 -5.6,-3.46 -6.78,3.97 -6.45,6.13 -4.3,3.08 -9.59,1.16 -11.83,4.88 -7.71,9.23 2.86,14.35 -9.58,2.37 -19.31,-11.06 -6.55,-1.08 -4.94,8.3 3.52,7.76 8.48,3.79 10.25,-3.55 -0.4,6.84 -42.2,28.7 7.53,24.42 11.65,20.46 16,8.39 20.56,-11.87 4.05,7.8 7.95,-6.85 8.82,2.21 18.58,14.44 -10.33,0.58 -8.16,6.89 -3.87,10.72 2.32,11.73 -0.42,6.89 -8.76,0.34 -5.22,5.11 -4.52,5.9 -6.73,2.42 -28.29,-9.29 9.82,23.76 4.4,6.25 17.35,5.36 18.85,11.63 13.17,3.16 -0.46,7.64 0.79,0.22 3.81,2.48 3.77,5.36 -18.42,5.92 -8.07,4.7 -5.75,9.63 2.06,2.72 1.96,1.96 0.78,3.74 -0.94,7.78 -18.66,-8.73 -11.5,-1.95 -5.31,4.75 -1.61,3.43 -3.13,0.67 -3.16,2.35 -1.91,8.48 -1.37,9.61 -2.82,5.65 -4.29,2.28 -5.81,-0.34 14.4,8 49.05,10.32 10.84,-1.77 3.88,-6.51 7.73,-2.58 7.9,-5.23 4.36,-14.38 3.23,-7.76 4.75,4.56 1.56,12.78 -6.33,16.97 8.48,13.5 11,12.96 11.64,10.06 10.62,4.87 -5.74,-23.08 -4.33,-10.13 -5.23,-6.55 4.2,0.37 3.52,-0.53 3.16,-2.28 3.33,-4.98 -2.95,-5.44 -5.01,-16.57 9.39,0.01 7.39,3.11 5.38,7.37 3.1,12.59 -5.64,1.21 -6.46,4.61 -5.71,1.38 -0.48,7.58 8.3,8.88 8.07,-14.43 12.27,-13.83 8.71,-14.73 -3.15,-17.16 14,-17.68 16.41,-4.73 33.33,2.93 -5.35,8.02 5.28,15.05 2.84,4.91 4.05,3.72 -0.52,8.22 -6.14,15.12 -3.98,7.64 -5.42,6.06 -0.49,7.58 3.5,2.99 2.05,2.56 2.48,2.06 5.06,1.59 -0.44,6.84 -8.11,-1.04 -4.9,-5.1 -3.63,-6.23 -4.42,-4.21 -7,-1.71 -22.25,-0.15 -3.56,3.35 -4.04,7.65 -4.96,7.53 -6.36,3.12 -9.88,1.57 -4.41,5.14 -2.6,7.28 -4.76,7.49 -8.16,10.56 -1.75,4.45 -8.22,-7.78 -4.67,-5.65 -9.51,-15.07 -14.59,-10.06 -10.21,-12.74 -11.08,-9.44 -13.28,3.4 -3.06,13.02 3.3,20.73 7.33,19.24 8.63,8.89 1.51,4.82 2.16,10.63 0.82,10.54 -2.22,4.59 -28.33,-9.27 -9.06,-7.18 -4.21,1.01 -0.37,12.89 3.14,7.75 6.41,7.82 7.39,6.1 86.76,31.19 18.03,1.36 17.49,-8.18 0.43,-6.83 -9.35,-8.61 -12.83,-8.54 -11.14,-11.08"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7103" /><path
+               id="path3060" /><path
                d="m 2394.82,8552.36 0,0 -1.08,-1.14 -1.79,0.19 -1.81,-1.19 -7.19,-7.3 -6.55,-8.5 31.65,-61.02 12.21,-7.06 -8.94,-7.52 -22.02,-7.68 -15.02,13.89 -11.86,22.37 -12.7,17.6 18.94,35.07 11.78,12.54 14.16,5.16 0.22,-5.41"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2394.82,8552.36 0,0 -1.08,-1.14 -1.79,0.19 -1.81,-1.19 -7.19,-7.3 -6.55,-8.5 31.65,-61.02 12.21,-7.06 -8.94,-7.52 -22.02,-7.68 -15.02,13.89 -11.86,22.37 -12.7,17.6 18.94,35.07 11.78,12.54 14.16,5.16 0.22,-5.41"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7105" /><path
+               id="path3062" /><path
                d="m 2532.16,8534.01 0,0 -5.38,-7.67 -8.81,-2.71 -10.99,1.28 -9.77,3.92 -5.56,4.64 -16.84,-6.26 -20.87,6.65 -37.36,23.71 12.91,23.18 14.68,14.03 17.62,6.76 21.5,1.74 35.83,-2.43 14.52,-9.06 11.39,-19.96 -0.04,-7.59 -5.38,-8.94 -7.45,-21.29"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2532.16,8534.01 0,0 -5.38,-7.67 -8.81,-2.71 -10.99,1.28 -9.77,3.92 -5.56,4.64 -16.84,-6.26 -20.87,6.65 -37.36,23.71 12.91,23.18 14.68,14.03 17.62,6.76 21.5,1.74 35.83,-2.43 14.52,-9.06 11.39,-19.96 -0.04,-7.59 -5.38,-8.94 -7.45,-21.29"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7107" /><path
+               id="path3064" /><path
                d="m 2744.83,8759.96 0,0 50.37,-20.75 136.16,-32.03 10.78,-9.51 2.96,-11.2 1.97,-15.52 4.76,-13.22 11.37,-4.56 46.91,0.02 9.63,1.82 6.21,6.53 9.15,2.58 7.01,6.36 11.61,2.71 13.02,-12.18 10.9,-1.2 9.48,3.28 9.7,0 38.12,19.65 12.03,15.32 15.62,6.34 8.04,14.67 8.31,6.85 2.32,-40.06 31.24,-11.23 39.47,-1.76 26.82,-11.63 11.38,-8.39 16.89,-7.06 15.28,-10.75 6.87,-19.13 7.57,-10.32 16.79,3.07 29.12,11.69 -2.75,23.09 15.13,1.23 21.04,-12.66 15.02,-18.6 9.31,-37.89 4.12,-8.74 6.05,-8.48 12.24,-12.88 -8.17,-6.45 -8.61,0.92 -7.91,3.62 -6.08,1.47 0.43,-2.41 -15.81,-12.87 -2.07,-0.14 -4.16,-2.81 -2.73,0.13 -1.5,-2.32 -0.2,-10.24 9.47,-0.5 16.73,5.28 16.78,1.16 9.98,-12.85 6.85,6.08 7.32,0.62 3.7,-6.73 -4.44,-15.71 3.63,-15.3 0.66,-22.02 -3.06,-46.22 -2.92,-19.77 -4.25,-15.77 -6.03,-12.91 -8.06,-11.96 -20.6,-19.78 -25.71,-14.9 -28,-9.5 -27.15,-3.44 0.09,-7.53 28.18,-14.32 155.9,39.66 12.18,-4.23 39.68,-33.61 -12.57,-13.16 0.07,-12.07 5.46,-13.66 3.65,-17.76 -3.5,-15.02 -8.96,-13.95 -11.52,-10.26 -11.22,-3.51 1.79,-2.51 2.24,-1.8 0.33,-3.44 -4.11,-7.49 7.04,-7.36 2.16,-9.34 -2.31,-10.56 -6.28,-10.69 14.23,5.58 10.53,13.35 14.66,34.93 8.09,37 4.47,9.45 6.43,4.43 24.43,3.02 8.82,5.45 4.18,6.12 3.24,6.21 5.86,6.15 7.39,2.55 27.66,-1.89 14.41,-6.85 39.93,-30.72 103.33,-43.43 59.26,-53.32 26.92,-6.14 29.65,6.32 21.56,14.18 36.25,35.64 20.98,14.48 22.09,10.04 54.03,8.59 0.22,-7.64 -11.6,-0.85 -16.3,-0.58 11.42,-4.8 11.17,4 15.47,-10.2 44.75,29.45 20.63,-7.14 -23.28,-27.92 -6.6,-10.95 -3.85,2.99 -10.14,4.13 7.59,-17.96 7.29,-44.03 5.74,-21 -4.43,-14.17 1.1,-18.84 5.26,-31.95 -2.27,-19.11 -5.9,-10.3 -6.07,-7.2 -2.61,-9.8 -74.37,-51.48 -25.35,-34.4 -11.22,-7.73 -26.18,-9.84 -5.07,-0.01 -5.48,-5.09 -4.55,3.1 -4.59,4.89 -5.96,0.42 -5.12,-3.47 -2.55,-3.06 -24.23,-39.95 -6.51,-7.7 0.17,-6.96 9.27,-21.51 9.88,-15.69 12.93,-10.25 18.03,-5.12 25.26,3.25 6.51,-2.42 4.91,-11.49 1.1,-13.26 2.65,-10.17 9.84,-2.61 10.18,-0.36 3.24,0.72 8.22,6.96 18.77,20.65 10.65,4.55 12.33,2.94 34.41,19.8 79.31,12.95 5.89,-2.06 4.73,-6.13 4.62,-15.62 4.92,-7.56 23.58,-5.76 3.63,-5.46 -2.11,-25.5 1.86,-11.51 8.36,-4.51 19.64,-0.75 5.45,1.56 25.71,23.57 5.12,-3.23 7.24,-15.53 4.26,-3.42 27.33,0.92 0.39,-3.5 26.26,-30.98 5.14,-3.17 7.33,0.26 0.55,11.7 6.02,18.16 4.31,22.43 -3.61,17.71 4.67,8.33 6.19,5.23 5.44,1.57 -1.4,4.96 -2.13,12.47 -1.34,5.19 21.54,23.55 -0.3,8.34 -4.46,-0.16 -0.25,6.9 17.03,-6.42 5.62,0.32 12.84,10.31 10.62,29.97 8.56,6.53 5.21,2.03 4.14,5.05 3.12,7.2 2.53,8.32 0.13,5.59 -4.94,3.67 -0.21,5.81 1.88,5.71 2.56,3.95 2.39,3.02 15.04,29.86 20.17,15.27 25.36,4.66 54.97,-7.52 154.15,39.91 23.79,16.81 4.7,-31.75 -1.15,-30.97 2.64,-26.26 15.98,-17.2 -6.87,13.11 -4.51,28.83 -3.98,10.65 6.31,13.23 18.34,11.58 4.87,15.19 -7.32,0.48 -7.02,-1.58 -6.55,-3.17 -5.95,-4.46 4.53,10.62 20.89,30.06 12.66,12.6 14.32,26.73 8.82,6.39 8.43,2.86 47.88,29.1 23.64,21.85 9.14,11.89 21.28,46.63 36.32,58.5 3.76,10.95 24.38,47.87 8.8,29.64 6.94,10.08 12.98,7.34 0.35,-6.9 -4.48,-0.23 14.9,-21.54 28.51,-10.08 147.53,7.78 25.02,-10.45 14.33,9.38 18.94,-3.62 8.93,-11.95 -15.18,-15.89 -16.49,-4.54 -69.75,2.26 -28.3,8.98 -17.07,1.47 -4.98,-2.51 -6.37,-10.53 -3.6,-3.01 -13.21,-0.69 -16.92,2.41 -6.05,-3.89 -3.26,-15.03 -4.44,8.01 -3.25,-2.24 -5.51,-5.23 -4.1,-1.42 1.69,-9.48 2.9,-4.11 4.16,-1.18 5.34,-0.47 -2.25,-0.75 -1.8,-0.15 -0.87,-1.48 0.44,-4.76 -12.82,6.14 -13.88,-2.03 -11.21,-8.45 -5.26,-13.06 -11.27,12.86 -13.07,5.8 -23.72,1.08 -10.21,-5.63 -8.23,-13.24 -3.34,-17.16 4.42,-17.41 -9.43,1.44 -3.84,1.49 -4.83,3.85 -4.06,-7.85 4.87,-13.02 -2.46,-13.42 -7.73,-10.05 -10.56,-3.04 5.29,-14.83 6.01,-11.7 1.89,-9.7 -6.99,-9.09 29.35,-18.4 16.08,-3.37 13.44,9.36 -9.94,-0.83 -7.99,3.35 -13.89,11.19 3.6,13.37 5.65,9.83 15.49,16.77 3.71,2.78 7.01,2.7 2.73,2.04 1.8,5.68 -0.08,13.99 1.12,4.66 10.62,9.86 41.07,22.51 -9.06,6.11 -4.14,0.83 -0.39,7.64 11.79,5.03 4.44,-0.06 5.51,-3.87 -0.38,7.53 12.63,-10.13 19.13,6.05 34.37,22.06 -1.6,3.6 -2.18,8.3 -1.55,3.78 6.51,5.36 7.42,3.38 7.99,1.52 8.29,-0.43 0.43,-8.22 -9.58,-3.1 -6.18,-9.14 -3.16,-12.9 -0.81,-13.98 7.44,14.56 2.5,7.57 1.75,8.9 6.25,-10.21 7.3,-9.47 7.42,-3 6.79,8.94 7.94,-6.43 6.9,0.71 6.09,5.57 5.33,8.47 2.27,-8.58 3.52,-7.76 4.41,-6.96 11.84,-13.54 2.52,-1.88 2.29,1.33 6.56,1.8 12.46,-0.12 6.54,2.31 6.76,6.83 5.14,9.33 5.78,18.36 5.16,11.29 15.57,17.41 24.93,18.17 25.18,11.06 16.68,-3.89 -7.77,-8.51 0.42,-13.3 5.7,-13.79 8.33,-10.42 28.87,-12.91 8.22,-7.08 -11.01,-22.6 3.61,-16.97 20.36,-28.96 2.51,-11.91 0.71,-12.12 2.36,-9.2 7.49,-3.42 29.04,1.71 0.49,-8.22 -6.11,-0.53 -4.19,-2.15 -7.05,-5.26 21.21,3.21 35.12,-17.27 23.01,-4.1 17.18,-8.12 24.31,-42.86 18.48,-14.6 -9.6,-7.74 -7.19,-8.52 16.31,1.12 23.49,13.97 13.11,-4.14 -4.3,-13.42 -2.85,-5.31 -4.77,-4.97 7.97,-4.12 4.63,2.94 4.02,3.83 6.04,-1.24 3.92,-5.29 11.04,-24.85 9.34,-15.96 10.5,-12.72 12.52,-7.16 15.41,0.69 -0.48,7.64 -5.73,4.77 -8.16,12.16 -5.78,4.6 -0.49,7.69 79.6,21.05 18.7,10.22 31.87,24.95 18.15,7.5 3.22,-5.56 -0.69,-4.95 -4.07,-3.85 -6.26,-2.14 0.46,-6.95 20.48,-8.96 54.83,-39.97 0.52,-7.58 -8.34,-17.01 -3.89,-21.79 -6.85,-20.08 -16.84,-12.15 8.25,-5.51 20.58,-23.07 7.68,-10.9 4.05,-2.61 19.01,-6.55 4.76,-2.97 3.43,-7.32 2.65,-8.01 2.19,-5.1 1.01,-3.86 -0.46,-5.11 0.09,-4.32 2.7,-1.72 9.16,1.5 2.36,-0.7 3.6,-2.76 4.23,-2.13 4.31,-1.32 3.7,-0.32 8.44,-3.91 1.88,-10.43 -3.26,-12.87 -6.68,-10.85 -44.41,-42.11 -5.75,-14.76 6.76,-13.15 12.7,-5.14 12.5,-2.09 5.71,-3.7 4.98,-11.83 10.62,-13.41 11.25,-8.63 6.97,1.93 51.32,-37.22 22.13,-3.4 11.63,-12.62 2.76,-2.29 15.77,2.4 4.92,-0.92 17.19,-8.81 8.27,-2.64 53.25,-0.11 18.18,6.99 6.63,15.9 4.71,3.76 10.7,-1.29 7,-5.77 3.21,-2.71 3.25,-17.89 -4.63,-8.66 -0.77,-0.63 -28.32,-23.74 8.6,-4.16 9.86,-2.68 10.8,-0.64 4.66,0.98 3.12,-31.01 -1.44,-17.48 11.58,-21.02 17.07,-42.15 2.05,-10.88 1.26,-40.78 2.31,-24.6 6.5,-22.55 17.96,-23.72 8.66,-22.67 15.68,-22.44 11.26,-57.01 24.89,-84.24 1.75,-9.34 1.94,-20.12 2.89,-10.75 4.6,-6.76 10.84,-7.87 3.09,-6 9.29,-7.37 -14.75,-35.6 -4.34,-7.69 -6.74,-4.33 -5.87,-10.4 -3.74,-13.94 -0.74,-14.92 3.77,-17.88 5.19,-15.43 2.6,-15.97 -15.31,-64.41 -1.17,-9.44 -7.5,-20.74 -18.95,-23.09 -37.14,-34.41 -39.26,-24.34 -30.7,-26.49 0.5,-6.92 4.82,-10.88 11.03,-38.83 2.53,-13.78 -1.27,-21.22 -5.98,-13.96 -16.75,-16.82 8.84,-15.06 12.34,-8.35 14.44,-3.41 15.04,-0.01 13.93,-4.99 23.89,-24.41 19.1,-8.49 75.53,-47.54 11.38,-11.47 26.52,-43.85 7.57,-6.27 13.29,-5.02 21.44,-25.11 41.67,-12.94 46.89,-45.16 22.41,-15.69 -15.85,-41.35 -3.24,-26.22 13.51,-10.55 4.08,-11.61 -9.17,-26.94 -14.39,-27.37 -32.76,-33.75 7.19,-43.82 19.9,-47.24 16.78,-31.22 -2.52,-20.52 16.62,-16.01 24.03,-10.09 19.72,-2.99 19.75,-6.85 12.12,-18.68 1.58,-22.75 -11.94,-18.68 0.55,-6.88 11.09,-14.7 -1.35,-16.08 -5.76,-20.78 -1.9,-29.15 8.11,-15.39 47.12,-29.83 -11.34,-16.7 -4.49,-9.86 -1.41,-10.13 -0.47,-10.29 -2.07,-10.74 -12.68,-28.06 -2.84,-11.08 2.92,-68.02 -4.12,-22.19 -9.01,-20.83 -11.33,-17.95 -36.34,-43.27 -7.55,-19.96 3.87,-23.38 12.65,-16.43 13.13,-7.68 10.54,-12.07 4.98,-29.09 9.32,-27.69 16.97,-17.05 35.72,-25.3 10.44,-18.5 9.01,-27.66 3.45,-29.15 -6.4,-22.89 -11.78,-22.38 -3.96,-22.03 5.33,-19.42 16.59,-14.82 46.48,-11.66 15.45,-9.28 0.01,-0.12 16.57,-7.8 33.32,-7.03 16.31,-6.25 11.51,-7.62 13.94,-12.44 8.42,-14.72 -4.75,-14.37 12.97,-75.82 0.08,-1.03 4.65,-19.67 2.56,-7.51 14.73,-21.59 17.28,-17.28 11.94,-20.95 -0.95,-32.52 2.81,-3.24 3.14,-2.86 -10.04,-24.49 -7.03,-30.36 -3.15,-31.64 1.5,-28.13 -0.28,-14.38 -4.02,-7.78 -5.01,-5.58 -3.13,-8 -0.34,-11.04 1.59,-21.36 -1.06,-12.91 -24.87,-81.83 -28.65,-87.04 -22.76,-29.77 -8.65,-17.2 1.56,-20.67 -8.78,-30.67 -5.68,-13.39 -6.22,-8.4 -11.1,-3.99 -15.32,-0.62 -26.57,3.83 -28.48,18.36 -10.46,4.8 -24.96,5.02 -4.05,8.07 0.96,20.05 9.78,28.87 2.93,15.06 -4.73,12.29 -8.51,-0.48 -37.61,-19.08 -8.53,5.76 2.82,13.84 7.21,16.6 4.43,13.78 0.04,16.81 -3,10.69 -6.03,8.37 -9.26,9.64 -9.13,6.12 -19.27,3.34 -9.15,5.44 -7.27,8.6 -2.89,6.48 -2.02,6.58 -4.76,9.11 -4.93,-15.81 -7.66,-4.73 -25.53,-0.44 -18.99,-10.15 -7.76,-0.39 -7.91,3.57 -5,5.73 -4.15,5.9 -5.63,4.44 -26.69,6.63 -22.04,-5.14 -15.57,-18.32 -7.57,-32.68 -7.02,-11.87 8.58,-4.81 23.92,-1.41 14.41,-4.67 -0.93,-2.32 -5.65,-4.56 0.19,-11.71 19.2,-16.44 26.45,-5.76 19.52,-9.49 -2.19,-27.98 -19.35,-19.01 -55.45,0.39 -24.91,-7.09 -7.09,-8.06 -11.49,-20.32 -8.01,-8.64 -106.19,-57.96 -13.48,-1.84 -25.98,1.58 -13.56,-3.91 -7.2,-5.91 -9.85,-14.5 -6.85,-5.88 -8.8,-1.91 -6.98,1.61 -5.95,-0.63 -5.95,-8.41 -2.28,-10.99 1.5,-9.36 2.19,-7.7 0.03,-5.88 -4.36,-7.21 -3.98,-1.7 -4.3,-0.4 -19.57,-14.09 -12.52,-3.41 -32.6,1.51 -15.14,-2.53 -26.19,-11.65 -13.43,-3.57 -63.39,-3.64 -31.64,-8.01 -27.82,-19.23 9.22,-16.56 -1.86,-15.16 -8.67,-12.75 -11.22,-9.62 4.64,-8.65 -0.25,-6.76 -3.92,-5.48 -6.78,-4.39 -11.35,-16.07 -11.33,-11.64 -12.96,-4.06 -16.25,6.81 -5.03,5.58 -10.93,16.12 -4.06,4.08 -8.81,2.65 -1.89,-1.49 -0.2,-4.05 -3.96,-4.84 -25.43,-20.4 -3.54,-7.29 -6.22,-22.95 -14.41,-8.44 -12.07,4.54 -11.95,7.38 -13.82,0.48 -19.98,-64.35 -9.14,-19.01 -16.7,-14.02 -37.48,0.1 -19.63,-7.99 -0.14,-0.13 -0.07,0 -6.35,-2.14 -6.64,-0.88 -6.63,0.21 -6.32,1.5 -5.73,3.84 -5.93,0.94 -5.85,-1.75 -5.64,-4.4 -2.17,-45.57 -3.53,-20.52 -9.42,-12.43 -20.09,-22.04 -24.37,0.09 -67.85,36.6 -6.03,1.48 -6.31,-1.65 -9.64,-7.12 -4.32,-1.94 -12.78,1.13 -11.34,-1.27 -11.38,-4.77 -8.64,-9.48 -14.5,-25.14 -7.55,-8.03 -9.2,-1.5 -38.3,5.03 -52.97,-6.53 -28.24,-9.81 -18.89,-17.81 -5.08,-4.84 -2.24,-5.63 -1.2,-5.7 -1.68,-5.09 0.25,-2.29 1.13,-3.69 0.65,-4.34 -1.36,-4.15 -2.79,-1.69 -6.41,-0.07 -2.5,-1.61 -8.11,-7.97 -20.34,-12.68 -7.31,-7.93 -20.25,-41.16 -7.71,-8.87 -7.7,-5.93 -5.43,-8.93 -1.13,-17.72 -13.27,-18.67 -3.36,-10.62 -1.34,-19.86 2.75,-13.69 4.66,-11.71 0.44,-9.88 -9.64,-7.68 -12.24,1.02 -7.73,10.94 -9.9,30.24 -0.99,5.71 -1.54,6.44 -3.26,7.11 -3.28,4.05 -13,12.04 -1.96,2.51 -0.84,2.43 0.56,2.27 1.83,2.21 0.85,0.84 0.93,0.68 0.94,0.38 1.1,0.22 2.89,6.4 0.15,5.13 -2.53,3.92 -5.21,2.59 -20.5,-0.36 -10.52,2.77 -8.25,6.66 -3.17,8.56 -0.59,19.08 -4.63,10.1 -14.1,9.13 -52.25,1.67 17.12,-16.44 6.15,-9.64 3.31,-15.74 -0.73,-14.3 -4.57,-5.37 -7.16,-5.14 -8.36,-13.81 7.92,-12.9 36.15,-20.53 18.29,-18.45 8.57,-12.06 6.02,-12.98 2.78,-16.63 -3.94,-25.49 1.15,-16.64 6.93,-16.56 10.52,-8.82 11.74,-6.11 10.73,-8.51 6.84,-10.7 1.97,-11.31 0.59,-10.1 2.6,-6.97 110.94,-53.19 0.74,0.03 11.46,-10.3 26.49,-1.54 12.61,-10.93 2.61,-16.17 -4.27,-15.22 -0.26,-12.1 30.17,-15.86 10.42,-3.49 4.83,-7.83 -1.21,-21.7 -4.99,-17.27 -15.13,-31.39 -4.47,-17.42 -14.62,3.75 -3.66,-15.88 0.7,-23.33 -1.46,-18.38 -10.93,-12.12 -29.18,-14 -7.73,-17.09 4.1,-11.56 8.09,-13.91 15.87,-20.74 10.79,-8.89 11.37,-7.02 24.53,-10.38 10.24,-4.76 6.51,-11.5 1.21,-14.74 -5.48,-13.89 1.93,-1.41 5.88,-2.55 -3.03,-8.89 -0.39,-2.72 7.81,-8.62 17.68,-8.66 8.01,-8.03 5.65,-11.82 4.53,-24.48 3.53,-12.9 5.27,-13.11 5.03,-9.72 6.08,-8.05 8.24,-7.84 8.27,-2.08 7.58,1.46 5.59,-4.11 1.88,-18.68 3.85,-36.37 4.46,-17.86 9.02,-15.68 14.73,-11.09 34.2,-14.1 15.36,-14.38 26.43,-52.06 12.08,-11.31 14.67,-4.5 43.11,-4.09 13.5,2.53 -3.96,14.14 9.82,3.67 28.16,-6.2 12.66,-5.97 10.95,-7.95 21.57,-20.57 12.9,-4.56 4.53,-8.86 1.55,-10.69 3.86,-10.16 24.7,-26.38 0,-0.06 0.16,-0.1 9.3,-4.63 73.22,-88.93 10.77,-21.35 12.64,-18.03 21.33,-10.91 44.22,0.4 14.95,-4.8 9.34,-7.19 23.87,-28.42 32.84,-29.8 9.27,-18.88 2.26,-31.15 11.49,-16.45 22.17,-18.47 24.12,-15.24 17.58,-7.2 6.42,19.79 6.23,12.65 9.86,5.25 16.99,-2.56 13.33,-7.09 13,-9.19 12.9,-6.13 13.22,2.3 3.1,-20.91 9.02,-19.74 12.49,-16.64 13.26,-11.69 14.26,-5.7 27.58,-2.62 10.66,-5.1 18.71,-25.52 39.85,-68.4 15.29,-13.96 -19.03,-47.67 -1,-10.67 3.71,1.62 8.8,-14.95 3.86,-3.16 9.48,-3.84 -9.22,-9.98 -1.06,-13.38 6.14,-35.64 0.65,-18.69 -1.28,-16.17 -3.65,-14.87 -10.92,-28.18 -3.18,-5.48 -5.72,-6.43 -5.71,-2.9 -15.17,-3.42 -2.55,0.42 -5.46,-13.05 -4.73,-30.06 -1.7,1.59 -31.09,11.78 -12.34,16.65 -12.51,8.17 -13.31,6.16 -77.71,16.78 -24.49,-4.79 -23.55,-10.45 -6.27,-6.53 -3.59,-7.96 0.69,-4 2.5,-4.86 4.14,-19.87 7.49,-10.31 2.17,-9.67 -1.43,-10.94 -8.69,-21.62 -2.92,-10.4 -0.77,-10.41 3.19,-31.3 -0.85,-11.66 -2.85,-7.83 -3.03,-5.94 -1.12,-5.82 -2.84,-23.82 -9.33,-17.91 -68.81,-67.4 -24.12,-15.31 -101.16,-23.44 -75.27,-34.65 -11.51,-9.15 -26.23,-27.97 -23.26,-14.59 -11.03,-9.89 1.13,-2.6 -40.74,-10.1 -10.91,-6.57 -6.38,-7.74 -12.52,-22.1 -9.13,-11.63 -28.56,-22.19 -2.82,-3.82 -9.79,-17.15 -4.44,-2.29 -4.85,0 -4.69,-1.87 -4.15,-8.21 -0.73,-15.06 4.48,-14.46 7.27,-13.05 7.46,-10.63 55.16,-52.31 12.41,-24.25 2.92,-13.44 4.59,-11.43 6.46,-8.51 18.43,-9.84 15.83,-14.77 6.19,-2.94 13.21,-11.71 28.34,-57.5 17.4,-23.279 3.65,-3.332 -44.29,-79.93 -3.66,-8.937 -1.12,-7.141 0.13,-7.133 -0.94,-7.41 -4.41,-8.109 0.01,-0.059 -0.15,-0.121 -12.86,-22.238 12.87,-11.813 42.18,-5.66 11.14,2.5 18.56,9.34 11.72,-1.269 9.66,-6.52 9.81,-10.68 15.97,-24.328 6.82,-15.82 2.85,-14.129 0.24,-13.523 -0.92,-13.52 -1.74,-2.508 -7.77,-22.492 -0.31,-3.09 -11.28,-16.539 -2.06,0.641 1.93,-25.172 1.6,0.711 -0.77,-1.649 -6.22,-18.371 -1.71,-3 1,-19.351 0.98,-6.86 2.03,-6 2.71,-5.55 2.3,-6.649 0.71,-9.23 -20.16,-26.61 -4.99,-4.808 -8.08,-0.793 -4.82,2.64 -4.43,4.2 -7.44,3.511 -7.85,-0.64 -6.06,-3.7 -6.27,-2.539 -8.42,2.938 -38.3,26 -36.27,36.152 -6.63,4.797 -7.2,2.184 -11.69,1.437 -19.32,14.071 -5.3,27.23 7.92,26.199 20,11.172 -15.62,13.68 -20.11,11.91 -12.5,13.898 6.82,19.782 -12.8,-2.289 -42.64,8.828 -26.76,-1.27 -26.46,-7.68 -13.94,-7.851 -32.07,-31.399 -11.48,-5.742 -15.7,-3.816 -15.47,-0.293 -10.79,4.723 -23.16,16.968 -6.37,6.989 -4.52,8.921 -8.88,23.34 -3.78,6.25 -12.43,1.871 -28.97,-12.609 -12.63,-2.613 -43.75,7.383 -16.26,-3.051 -16.39,-9.461 -8.09,-1.578 -7.72,6.32 -4.62,12.09 2.15,7.859 4.53,6.86 2.27,8.898 1.44,11.941 2.11,5.18 -1.84,-0.461 -10.73,-5.25 -6.34,-4.347 -17.43,-15.793 -11.66,-5.309 1.84,-9.012 2.66,-6.047 5.81,-7.07 6.37,-5.832 3.91,-2.398 2.35,-6.032 2.47,-29.629 -0.35,-10.429 -2.42,-7.199 -20.3,-28.391 -5.93,-1.481 -172.96,0.719 -62.59,-15.211 -8.28,-5.367 -6.85,-19.172 -7.68,-2.859 -42.66,7.172 -61.25,-1.891 -33.01,5.418 -13.93,-0.008 -2.45,-3.301 -20.37,-18.91 -4.74,-11.949 -5.06,-25.922 -3.47,-10.398 -13.19,-15.672 -16.13,-7.027 -35.14,-7 -17.22,4.859 -18.6,1.937 -16.99,-4.546 -34.25,-41.954 9.35,-2.25 8.34,-5.109 3.14,-8.187 -6.13,-11.223 -12.07,-5.629 -32.71,-1.758 -13.89,-4.902 -14.17,-13.981 -9.59,-13.73 -10.42,-11.859 -16.24,-8 -18.15,1.55 0.78,30.262 -16.33,6.137 -18.87,-5.731 -48.34,-35.457 -14.62,-4.91 -78.73,-0.902 -10.68,5.883 -8.1,14.847 1.79,0.16 2.29,5.172 1.52,7.739 -0.42,7.46 -2.39,4.989 -38.64,39.613 -39.21,17.039 -5.35,8.688 23.88,17.152 6.12,7.789 -17.59,12.59 -8.12,4.351 -10.44,0.469 -10.58,-3.301 -30.02,-14.609 -22.2,-3.199 -6.5,1.801 -3.85,5.199 -2.62,5.687 -3.11,3.434 -100.12,35.418 -18.2,-0.141 -10.27,-7.48 -14.82,-21.578 -9.41,-7.891 -8.84,-1.719 -32.14,4.258 -11.85,5.172 -6.23,4.25 -4.06,5.039 -1.5,9.512 2.67,7.109 3.55,5.41 0.85,4.379 -3.54,10.309 -2.68,2.019 -5.71,-2.379 -12.55,-2.5 -11.18,-4.66 1.26,-9.57 6.75,-12.141 5.21,-12.34 -0.74,-10.296 -6.82,-44.454 10.7,-5.578 6.59,-7.05 4.23,-9.719 3.37,-13.699 0.61,-23.832 -6.4,-25.11 -10.58,-22.68 -12.25,-16.91 -6.4,-4.488 -15.82,-5.82 -7.71,-5.403 -4.4,-7.05 -16.2,-34.028 -13.27,-18.5 -14.54,-13.742 -33.49,-21.32 -16.39,-6.668 -60,-8.27 -3.39,1.899 2.94,6.992 6.77,12.648 3.02,2.149 9.95,3.133 3.62,3.679 1.76,7.43 -0.49,6.66 -1.83,7.27 13.03,41.328 0.24,20.023 -14.01,7.278 -33.06,-6.532 -8.83,-10.039 -3.17,-2.508 -3.9,-0.031 -7.87,4.629 -3.75,0.43 -9.85,-4.879 -5.71,-4.36 -5.07,-0.3 -7.44,7.019 -4.2,10.571 -0.87,11.941 -2.18,11.508 -8.4,9.543 16.97,13.578 3.35,11.738 -6.81,12.942 -37.8,53.781 -8.52,-4.02 -6.62,-5.949 -6.58,-2.953 -8.32,4.832 -1.25,6.48 -0.27,3.379 -0.05,3.36 -7.03,14.879 -9.54,9.3 -7.98,10.301 -2.33,18.352 -9.01,-7.41 -11.33,-2.372 -22.42,1.52 -22.73,8.129 -3.8,-1.078 -9.19,-6.071 -6.07,-0.531 -15.4,7.77 -3,11.711 1.33,13.539 -2.62,13.133 -8.88,9.5 -10.69,3.738 -11.25,-1.379 -10.83,-5.902 -16.22,-19.227 -9.14,-20.301 -10.73,-17.101 -20.45,-9.95 -48.24,-1.23 -47.32,12.602 -208.69,128.429 -29.21,6.66 -28.09,-0.113 -10.2,15.852 -41.51,-0.078 -83.72,9.339 -14.2,-5.632 -11.95,-12.977 -27.32,-8.711 -29.42,-2.762 -18.38,4.852 -21.78,16.32 -11.15,11.188 -0.06,7.73 13.81,3.18 -19.35,18.391 -24.46,14.332 -20.15,0.98 -6.81,-21.781 6.1,-6.879 -39.63,-0.442 -1.44,7.239 -1.83,8.48 -5.94,7.403 -3.15,9.089 2.51,7.25 10.05,14.989 2.03,4.179 -4.91,11.25 -7.36,1.461 -8.29,-1.691 -7.74,1.781 -5.54,8.871 -5.83,12.891 -7.15,10.976 -9.66,3.262 -6.85,-7.101 -3.99,-24.207 -9.32,-6.051 -7.33,5.531 -2.56,13.508 -0.63,14.359 -1.12,8.102 -13.82,6.34 -18.64,1.129 -11.96,-6.758 6.86,-17.563 -11.34,-5.679 -40.39,-7.782 -8.37,0.282 -5.91,-3.461 -10.25,-14.86 -3.54,-8.07 -5.82,-22.188 -8.04,-7.41 -19.07,-10.281 -7.43,-8.359 -0.92,-8.2 3.12,-8.152 1.79,-9.488 -4.91,-12 11.76,-4.43 3.72,-0.601 19.14,-14.821 15.46,-8.949 13.36,0.48 11.14,5.668 10.45,7.372 11.29,5.589 36.51,5.993 10.46,-1.84 12,-5 6.83,-0.703 -4.4,-26.309 -4.88,2.488 -0.43,6.84 -0.69,1.781 -3.26,-0.089 -3.97,-1.481 -2.73,-2.34 -1.74,-6.129 1.21,-5.058 1.77,-4.352 0.29,-3.82 -0.98,-7.57 0.35,-7.899 -0.9,-8.332 -4.94,-8.559 -10.12,-3.332 -8.26,10.274 -8.84,15.098 -11.51,10.929 -22.53,-2.16 -23.1,-15.059 -8.91,-18.949 -0.97,-5.281 -23.19,-3.73 -48.1,0.66 -28.46,7.832 -7.34,4.886 -5.19,10.762 -3.94,10.75 -3.99,4.86 -8.69,1 -19.44,6.152 -13.59,0.078 -40.61,-6.418 -3.91,-2.492 -3.79,-5.379 -5.18,-5.383 -13.8,-3.949 -16.41,-8.641 -6.19,-4.687 -6.46,-7.25 -3.1,-5.602 -3.39,-4.777 -7.37,-4.883 -33.91,-7.18 -97.88,1.289 -1.96,4.743 -1.33,10.449 -2.26,10.449 -4.52,4.832 -48.44,3.641 -10.49,5.558 -14.01,-21.179 -12.19,-14.153 -14.28,-7.808 -62.89,-11.981 -16.52,2.492 -38.52,21.25 19.67,-0.531 8.14,7.59 10.35,27.648 -17.05,-1.476 -38.59,-10.801 3.32,11.258 1.86,3.961 -1.44,10.621 -3.86,5.871 -4.74,4.277 -4.4,5.723 -16.29,34.137 -9.9,14.371 -10.99,6.012 -2.85,5.168 -2.17,12.019 -1.64,23.961 2.77,6.609 12.65,12.981 4.56,7.262 0.73,18.148 -8.56,39.082 2.31,15.379 11.36,35.809 4.27,5.269 10.24,5.352 1.85,12.398 -3.48,20.75 0.25,4.941 -0.57,2.821 -0.33,2.82 0.94,4.641 2.33,4.777 5.03,4.711 3.12,5.43 4.91,11.05 1.48,4.942 -0.59,18.078 4.29,14.78 20.29,20.74 7.34,13.26 -1,34.72 -31.18,57.33 -1.46,45.9 5.1,21.6 5.31,16.85 5.56,9.84 5.2,6.62 3.93,8.66 1.75,16 5.16,13.5 48.15,64.96 8.11,16.01 5,18.76 1.91,22.54 5.53,23.27 12.12,9.59 13.76,7.18 10.46,16.18 1.17,15.52 -3.51,14.88 -4.59,14.26 -2.15,13.43 1.08,14.57 5.91,29.26 3.95,12.61 5.3,10.45 4.93,7.11 3.91,10.73 1.87,21.15 3.98,10.02 9,8.93 18.7,14.3 0.12,7.64 -8.33,23.74 0.68,38.66 6.82,36.2 31.81,48.07 8.69,5.96 12.23,3.78 11.41,9.6 20.5,23.84 8.82,5.56 9.87,9.35 8.05,10.46 3.39,8.74 1.2,21.18 4.01,9.89 8.39,2.64 20.66,0.08 5.65,1.88 4.22,3.56 1.68,6.13 1.72,10.43 3.5,5.88 3.45,3.23 1.63,2.73 6.46,0.21 27.12,14.14 4.52,3.8 9.29,15.23 34.33,91.24 23.34,43.06 15.55,17.47 -8.39,8.08 -71.76,15.75 -115.14,63.38 -13.19,1.68 -41.69,-3.76 -60.53,18.59 -8.11,-2.05 -17.3,-9.08 -8.96,-2.15 -7,1.15 -15.39,5.78 -8.06,1.52 -9.25,-1.8 -8.6,-3.52 -8.8,-2.09 -10.08,2.48 -6.69,5.93 -6.84,14.54 -5.24,6.77 -16.07,8.74 -31.83,6.18 -15.73,10.42 -9.34,12.3 -15.99,27.16 -10.04,10.89 1.36,3.65 1.86,2.49 5.49,3.4 -4.5,16.18 -13.09,5.09 -31.45,2.78 -2.9,12.47 -14.14,1.51 -17.21,-4.81 -12.28,-6.63 -3.51,-5.44 -5.63,-16.03 -3.83,-6.06 -5.56,-2.46 -14.97,-1.57 -6.54,-2.09 -4.72,-5.47 -8.05,-15.51 -4.4,-4.33 -4.58,0.8 -19.4,9.64 -62.89,2.07 -11.36,4.19 -11.32,6.26 -27.38,20.97 -3.99,0.62 -6.8,-6.38 0.45,-6.16 2.19,-5.86 -1.27,-5.6 -22.76,-13.56 -15.74,13.05 -7.64,30.73 1.4,39.22 -15.71,1.22 -44.79,26.96 -8.02,1.43 -21.28,-1.48 -30.22,7.81 -7.35,-1.57 -4.66,-15.33 4.98,-18.14 2.26,-18.52 -13.06,-16.35 -9.33,-1.86 -28.1,11.34 -32.47,1.25 -8.48,3.94 -8.87,15.85 2.45,13.55 4.11,13.96 -4.05,17.78 -2.94,0.03 -9.98,-6.14 -3.25,-0.24 -1.83,4.02 -1.17,8.78 -0.75,2.49 -2.19,4.73 -5.08,20.79 -2.98,3.32 -9.97,3.93 -3.81,3.16 -0.69,4.51 1.85,11.21 -0.98,4.75 -46.87,48.17 -11.69,15.16 -4.16,13.07 4.3,10.04 12.93,0.21 3.44,8.86 -2.26,6.75 -34.04,38.59 -4.78,7.58 1.44,0.41 0.06,6.21 -1.65,9.25 -4.19,9.4 -12.041,12.42 -65.39,35.51 -7.957,1.65 -5.992,-2.09 -14.11,-9 -7.769,-1.22 -6.121,0.91 0.289,8.15 -1.059,33.74 7.781,46.37 1.239,35.21 4.539,12.1 11.5,16.73 19.632,22.55 7.829,14.8 5.718,7.85 2.121,4.94 -0.418,7.37 -4.261,4.46 -4.508,3.32 -1.141,3.72 11.719,15.3 54.172,32.55 -1.344,2.46 -4.726,5.85 2.636,5.32 3.41,1.55 6.182,-2.67 -4.908,7.06 -3.16,8.1 -1.34,9.13 0.859,9.92 7.199,5.91 0.44,4.3 -1.77,5.01 0.34,7.86 4.23,24.07 1.07,0.72 0.38,9.36 1.62,1.5 0.21,-0.24 -3.73,4.32 -2.82,0.27 -21.93,7.29 -34.508,1.18 -12.442,3.88 -11.922,8.18 -19.968,20.43 -11.918,8.13 -6.313,0.4 -11.008,-6.16 -5.769,0.72 -0.613,3.76 -6.52,19.45 -3.187,6.21 -10.231,7.16 -23.949,11.75 -10.793,11.79 -21.469,57.75 -11.558,20.4 -8.293,-14.99 -5.34,9.92 -9.699,31.67 -11.641,19.31 -2.77,9.14 2.481,12.28 -3.551,23.38 -4.301,9.31 -7.597,4.78 7.16,12.73 2.808,3.51 -1.621,0.29 -4.308,-0.23 -1.219,0.85 5.719,31.08 4.07,15.14 5.57,15.89 6.789,7.39 1.711,5.36 0.61,1.9 0.039,0.13 -2.25,6.93 -7.008,6.14 1.758,5.4 1.222,5.29 1.629,7.08 0.621,1.54 0.848,2.09 5.02,2.85 1.25,0.71 14.281,0.6 3.91,2.32 1.539,0.92 4.68,10.35 0.922,12.51 -2.731,9.96 -0.769,2.83 -9.11,10.93 0.141,0.17 7.598,9.2 3.921,2.56 12.649,8.26 2.199,3.12 5.211,7.41 15.07,6.46 12.918,3.11 18.051,4.36 13.512,11.32 0.027,0.03 -2.789,10.12 1.883,11.14 5.098,10.52 2.589,2.93 4.789,5.43 5.704,3.02 4.136,2.2 7.922,-0.98 2.641,-1.14 5.34,-2.31 9.507,-2.07 18.942,2.76 0.09,0.02 3.09,3.06 6.109,6.06 0.043,0.04 -0.922,15.56 -0.059,0.11 -23.121,43.74 -0.48,13.19 5.449,14.71 0.289,1.23 5.723,24.78 0.929,14.71 0.231,3.63 0.008,0.2 -1.16,1.75 -1.418,2.14 -0.969,0.22 -4.063,0.94 -3.808,6.83 -1.922,3.44 -3.481,11.4 -1.339,8 -0.348,2.07 1.5,6.39 0.578,2.45 8.152,7.43 0.047,0.04 -12.879,1.21 -30.461,8.19 -10.66,5.57 -1.547,1.61 -0.132,0.05 -1.457,0.58 -1.75,-0.5 -0.032,-0.01 -0.379,-0.36 -1.222,-1.13 -0.098,-0.03 -3.41,-0.92 -20.731,-5.57 -4.921,0.43 -2.11,0.18 -1.777,1.55 -3.692,3.2 -3.878,8.94 -1.723,3.99 -0.09,0.09 -1.527,1.52 -3.903,3.89 0,0 0.012,0.01 6,9.37 -0.223,0.02 -8.039,0.92 -5.621,2.63 0,0.03 -0.758,5.07 5.891,8.34 -11.141,15.23 -0.082,0.1 13.813,19.96 9.008,6.93 14.011,10.78 16.161,8.83 0.14,3.93 0.008,0.09 8.41,9.46 1.403,2.56 3.937,7.14 -1.367,6.73 -48.781,3.04 -14.262,8.19 -7.641,16.29 9.653,5.67 -0.063,0.1 -32.949,54.87 -7.438,12.42 -13.043,14.09 -11.699,1.56 -28.25,-6.58 -9.289,1.47 -0.879,3.43 -1.519,5.98 3.097,11.62 0.012,2.51 0.059,8.19 -4.051,2.33 -7.438,4.29 -0.339,0.77 -0.602,1.34 0.012,2.01 0.519,2 0.668,1.08 0.442,0.71 0.14,0.23 2.117,14.41 -4.32,6.97 -6.789,5.17 -5.008,9.52 -2.402,14.37 10.59,-3.14 10.511,9.07 4.25,13.06 -1.121,10.29 -0.257,9.62 6.636,10.9 9.891,5.12 15.812,-2.02 8.231,9.11 4.75,11.26 0.566,8.84 -5.047,23.1 1.598,7.31 3.941,5.88 1.559,4.43 -22.629,8.9 -16.14,11.07 -5.129,6.13 -1.461,8.93 -0.36,16.07 3.059,9.14 4.66,9.19 -1.211,5.86 -25.297,-2.02 -18.172,6.85 -9.668,1.73 -9.621,-2.3 -18.582,-8.26 -9.66,-1.55 0.461,28.07 -9.437,32.43 -2.872,26.19 20.059,9.51 9.481,-5.87 7.871,-11.18 8.988,-8.95 12.949,0.84 9.024,9.12 14.636,27.74 9.852,10.47 66.808,48.17 40.692,20.06 10.941,13.42 -14.133,14.27 16.473,12.45 5.688,3.03 -15.821,6.14 -35.758,-22.56 -16.031,9.79 -4.16,20.73 3.012,24.74 6.879,21.91 7.629,11.98 15.421,17.37 38.329,64.58 7.55,6.87 18.18,11.67 7.289,9.54 4.274,13.7 3.089,24.28 4.399,9.61 -10.02,12.96 1.719,20.44 6.223,23.44 3.359,21.91 -2.609,20.3 -3.551,36.61 -26.711,33.43 -43.609,65.31 -2.461,13.76 4.351,15.74 9.071,24.56 -45.993,22.48 -15.031,20.87 10.57,31.1 -6.57,7.35 -14.93,12.33 -7.769,4.12 -20.07,0.37 -6.731,3.08 1.07,11.92 15.981,14.62 2.141,22.41 -8.29,21.9 -15.171,12.7 2.769,9.81 11.813,7.65 28.328,3.82 13.551,5.14 14.671,10.02 10.11,4.88 28.34,6.43 22.109,-6.87 16.07,-4.8 10.989,-3.2 -8.68,14.96 -24.609,28.02 -8.282,6.83 23.903,11.77 21.769,-11.35 21.418,-18.82 22.902,-10.46 21.668,3.93 5.661,-0.91 4.73,-4.95 7.102,-13.96 2.988,-3.94 26.262,-5 10.937,-6.93 1.434,-17.4 26.108,6.28 3.25,10.99 -4.72,25.28 43.66,-14.64 14.02,-0.49 11.57,4.77 34.75,24.87 69.27,21.17 60.96,0.01 18.94,9.5 16.58,18.61 16.57,28.03 5.8,6 5.28,0.76 3.58,3.29 1.05,13.57 -1.48,7.55 -3.39,5.48 -17.16,19.33 -44.04,26.5 -14.89,4.93 -10.67,8.08 -0.88,17 5.12,11.43 6.26,2.73 7.24,0.29 8.35,3.88 5.74,6.8 6.04,13.99 3.81,6.21 11.98,11.74 11.16,5.81 44.52,3.65 8.87,7.65 16.05,30.46 13.7,13.55 29.7,12.03 13.98,11.74 16.77,25.63 7.59,8.39 30.86,17.67 2.06,5.67 -5.43,10.7 -5.41,23.93 0.98,20.36 5.39,16.65 14.53,31.41 6.87,40.38 -8.79,28.86 -39.53,68.52 -4.34,-1.89 -4.42,-7.35 -6.5,-5.8 -17.14,-4.51 -17.88,-0.67 -19.08,3.7 -34.72,14.49 -53.56,9.27 -17.63,9.33 -12.91,16.06 -3.61,16.71 -0.36,19.63 -1.74,19.93 -7.78,17.71 11.24,0.64 38.23,17.86 -21.61,19.52 -4.53,7.31 0.08,9.26 3.38,9.13 1.64,9.92 -5.29,11.82 24.39,16.57 22.88,6.34 64.22,-0.91 35.55,-11.91 33.5,4.02 10.09,-4.6 23.92,-8.23 12.96,23.46 6.03,39.06 9.53,119.89 6.86,37.03 12.95,33.5 57.48,85.55 15.53,36.87 7.07,35.31 2.04,39.84 -4.22,79.79 -2.24,9.78 -3.11,5.89 -2.38,7.13 -0.14,13.32 1.89,8.92 10.09,24.25 5.04,19.03 2.51,17.27 -0.24,17.87 -0.73,31.31 6.64,3.51 7.72,7.94 6.06,7.99 6.22,11.72 2.67,13.23 -4.65,12.36 17.5,25.19 9.06,4.33 15.56,-0.09 14.3,-4.14 22.58,-15.13 12.62,-5.38 -15.56,23.99 -26.2,10.34 -151.46,9.19 -24.23,12.88 -8.98,31.23 2.21,82.42 3.4,18.66 13.75,33.33 3.34,16.59 5.69,9.97 13.08,-0.52 26.57,-6.52 3.79,8.81 6.39,3.23 5.08,10.74 -0.73,14.11 -5.68,8.09 -19.11,10.28 -8.38,9.08 -0.98,14.64 9.7,12.11 21.73,14.26 24.62,26.28 13.07,8.59 25.23,25.01 52.65,19.08 101.88,9.19 7.06,-5.1 6.61,-9.86 15.56,-3.96 97.86,18.35 198.49,24.43 52.58,-16.16 -0.12,-8.28 -4.72,-31.21 17.9,-40.55 26.88,-35.43 21.97,-15.8 -0.08,-6.9 -5.86,-14.01 10.28,-5.13 14.59,-4.43 7.26,-11.64 -2.22,-20.04 -6.42,-10.16 -14.45,-10.58 -12.07,-6.12 -26.15,-1.97 -11.81,-7.2 11.72,-37.24 5.86,-14.11 8.87,-9.77 8.49,3.98 7.66,3.12 11.11,-0.53 7.77,-4.41 12.46,-14.87 4.63,-3.1 5.37,-4.83 5.31,-10.52 6.89,-10.49 9.57,-4.82 11.06,0.23 8.13,1.69 7.19,4.24 8.19,7.91 14.38,23.25 15.06,38.21 3.99,38.02 -18.96,22.61 -26.11,-6.64 -13.95,2.51 1.47,16.25 5.88,18.17 5.19,37.78 5.78,15.75 8.78,9.28 11.33,4.31 27.63,1.11 12.66,-5.98 9.66,-13.66 7.93,-15.3 7.92,-11 26.71,-13.9 56.46,-11.63 25.53,-12.53 -0.05,-8.28 -16.05,-13.58 -14.58,-17.61 -10.93,-23.95 -4.35,-32.28 0.24,-62.5 3.79,-27.45 8.86,-20.59 2.12,27.47 -6.66,69.56 0.85,32.76 10.31,24.13 15.23,10.71 13.99,13.31 6.3,31.69 -3.26,5.54 -16.83,43.63 -5.02,6.53 -6.6,15.05 -5.84,16.77 -4.5,21.19 -9.17,25.36 -1.99,18.53 1.64,18.79 4.14,16.3 25.03,61.63 18,66.87 11.4,29.77 9.46,14.09 12.92,12.23 14.65,8.78 14.82,3.26 13.79,-1.05 7.66,-3.42 16.16,-18.47 23.23,-19.98 24.85,-13.02 51.45,-12.9 28.16,0.76 47.89,11.86 26.32,-2.12 12.37,14.55 52.26,12.87 52.13,-0.4 11.06,8.19 8.99,-6.75 10.81,-1.92 22.29,1.17 5.72,-3.77 14.56,-19.03 64.77,-113.28 26.65,-31.12 18.65,-15.12 9.16,-11.66 9.31,-33.57 45.81,-66.64 10.27,-9.23 12.36,-5.42 15.69,-1.76 8.24,-3.95 39.75,-26.71 81.2,-17.25 8.59,3.72 -8.39,14.4 -25.08,14.26 -59.41,6.34 -24.31,9.37 -48.08,30.57 -21.86,24.49 -8,35.42 -2.14,30.22 -2.8,19.47 -6.67,5.99 -31.15,17.15 -9.84,3.44 -16.18,14.67 -15.53,33.31 -10.69,35.99 -1.14,22.13 -23.99,9.36 -41.7,35.86 -24.86,15.08 -24.68,5.66 -83.42,1.72 -25.07,11.64 -16.7,4.65 -7.61,-4.95 -6.92,-11.33 -15.22,5.06 -23.14,17.72 -21.83,27.22 -54.02,110.31 25.2,11.56 12.32,0.96 15.69,-4.39 25.57,-17.33 14.15,-4.72 14.29,6.9 5.07,12.13 5.35,22.02 3.51,23.8 -0.08,17.31 -7.63,11.44 -12.03,10.75 -8.98,11.39 1.89,12.7 0.01,6.9 -16,4.96 -22.75,-4.24 -21.35,-10.26 -11.71,-13.15 -4.46,0.01 -17.76,31.03 -11.54,25.04 -1.81,5.41 5.32,22.35 10.09,19.18 6.84,17.47 -4.67,16.97 0.01,7.53 8.1,6.08 27.48,7.94 11.37,1.14 6.81,5.62 10.24,13.85 10.04,17.59 6.46,16.78 -14.73,-2.92 -24.63,-21.3 -13.94,-6.14 1.35,3.62 1.77,7.99 1.35,3.62 -19.85,-2.32 -33.92,-10.38 -19.99,-2.36 -23.33,4.11 -9.97,-3.99 -21.76,-20.84 -7.68,-2.49 -17.27,6.35 -18.48,17.05 -13.32,24.51 -1.65,28.99 9.2,11.45 17.84,8.01 19.9,3.93 15.31,-0.93 0.04,7.59 -11.61,2.93 -8.89,8.49 -8.58,2.75 -10.48,-13.98 -5.44,12.33 2.01,12.53 6.04,11.52 6.55,9.23 13.86,-6.28 52.59,14.22 71.36,-0.2 16.51,4.46 13.69,8.54 27.38,24.24 25.13,12.3 10.72,8.27 4.42,18.06 0,26.97 -16.33,25.59 -52.89,57.13 -7.47,11.92 -3.12,11.79 -5.93,5.19 -13.35,-0.44 -13.63,-3.82 -7.16,-5.05 -4.45,8.35 22.06,15.13 -22.27,60.49 -8.35,15.55 -18.42,11.78 -34.78,30.6 -21.79,11.08 0.04,7.59 3.74,20.11 -8.41,22.63 -12.32,22.37 -8.54,19.31 -3.51,29.29 3.05,25.8 8.92,32.33 22.04,-7.06 23.66,-1.13 43.74,16.3 14.98,2.26 51.21,-8.95"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2744.83,8759.96 0,0 50.37,-20.75 136.16,-32.03 10.78,-9.51 2.96,-11.2 1.97,-15.52 4.76,-13.22 11.37,-4.56 46.91,0.02 9.63,1.82 6.21,6.53 9.15,2.58 7.01,6.36 11.61,2.71 13.02,-12.18 10.9,-1.2 9.48,3.28 9.7,0 38.12,19.65 12.03,15.32 15.62,6.34 8.04,14.67 8.31,6.85 2.32,-40.06 31.24,-11.23 39.47,-1.76 26.82,-11.63 11.38,-8.39 16.89,-7.06 15.28,-10.75 6.87,-19.13 7.57,-10.32 16.79,3.07 29.12,11.69 -2.75,23.09 15.13,1.23 21.04,-12.66 15.02,-18.6 9.31,-37.89 4.12,-8.74 6.05,-8.48 12.24,-12.88 -8.17,-6.45 -8.61,0.92 -7.91,3.62 -6.08,1.47 0.43,-2.41 -15.81,-12.87 -2.07,-0.14 -4.16,-2.81 -2.73,0.13 -1.5,-2.32 -0.2,-10.24 9.47,-0.5 16.73,5.28 16.78,1.16 9.98,-12.85 6.85,6.08 7.32,0.62 3.7,-6.73 -4.44,-15.71 3.63,-15.3 0.66,-22.02 -3.06,-46.22 -2.92,-19.77 -4.25,-15.77 -6.03,-12.91 -8.06,-11.96 -20.6,-19.78 -25.71,-14.9 -28,-9.5 -27.15,-3.44 0.09,-7.53 28.18,-14.32 155.9,39.66 12.18,-4.23 39.68,-33.61 -12.57,-13.16 0.07,-12.07 5.46,-13.66 3.65,-17.76 -3.5,-15.02 -8.96,-13.95 -11.52,-10.26 -11.22,-3.51 1.79,-2.51 2.24,-1.8 0.33,-3.44 -4.11,-7.49 7.04,-7.36 2.16,-9.34 -2.31,-10.56 -6.28,-10.69 14.23,5.58 10.53,13.35 14.66,34.93 8.09,37 4.47,9.45 6.43,4.43 24.43,3.02 8.82,5.45 4.18,6.12 3.24,6.21 5.86,6.15 7.39,2.55 27.66,-1.89 14.41,-6.85 39.93,-30.72 103.33,-43.43 59.26,-53.32 26.92,-6.14 29.65,6.32 21.56,14.18 36.25,35.64 20.98,14.48 22.09,10.04 54.03,8.59 0.22,-7.64 -11.6,-0.85 -16.3,-0.58 11.42,-4.8 11.17,4 15.47,-10.2 44.75,29.45 20.63,-7.14 -23.28,-27.92 -6.6,-10.95 -3.85,2.99 -10.14,4.13 7.59,-17.96 7.29,-44.03 5.74,-21 -4.43,-14.17 1.1,-18.84 5.26,-31.95 -2.27,-19.11 -5.9,-10.3 -6.07,-7.2 -2.61,-9.8 -74.37,-51.48 -25.35,-34.4 -11.22,-7.73 -26.18,-9.84 -5.07,-0.01 -5.48,-5.09 -4.55,3.1 -4.59,4.89 -5.96,0.42 -5.12,-3.47 -2.55,-3.06 -24.23,-39.95 -6.51,-7.7 0.17,-6.96 9.27,-21.51 9.88,-15.69 12.93,-10.25 18.03,-5.12 25.26,3.25 6.51,-2.42 4.91,-11.49 1.1,-13.26 2.65,-10.17 9.84,-2.61 10.18,-0.36 3.24,0.72 8.22,6.96 18.77,20.65 10.65,4.55 12.33,2.94 34.41,19.8 79.31,12.95 5.89,-2.06 4.73,-6.13 4.62,-15.62 4.92,-7.56 23.58,-5.76 3.63,-5.46 -2.11,-25.5 1.86,-11.51 8.36,-4.51 19.64,-0.75 5.45,1.56 25.71,23.57 5.12,-3.23 7.24,-15.53 4.26,-3.42 27.33,0.92 0.39,-3.5 26.26,-30.98 5.14,-3.17 7.33,0.26 0.55,11.7 6.02,18.16 4.31,22.43 -3.61,17.71 4.67,8.33 6.19,5.23 5.44,1.57 -1.4,4.96 -2.13,12.47 -1.34,5.19 21.54,23.55 -0.3,8.34 -4.46,-0.16 -0.25,6.9 17.03,-6.42 5.62,0.32 12.84,10.31 10.62,29.97 8.56,6.53 5.21,2.03 4.14,5.05 3.12,7.2 2.53,8.32 0.13,5.59 -4.94,3.67 -0.21,5.81 1.88,5.71 2.56,3.95 2.39,3.02 15.04,29.86 20.17,15.27 25.36,4.66 54.97,-7.52 154.15,39.91 23.79,16.81 4.7,-31.75 -1.15,-30.97 2.64,-26.26 15.98,-17.2 -6.87,13.11 -4.51,28.83 -3.98,10.65 6.31,13.23 18.34,11.58 4.87,15.19 -7.32,0.48 -7.02,-1.58 -6.55,-3.17 -5.95,-4.46 4.53,10.62 20.89,30.06 12.66,12.6 14.32,26.73 8.82,6.39 8.43,2.86 47.88,29.1 23.64,21.85 9.14,11.89 21.28,46.63 36.32,58.5 3.76,10.95 24.38,47.87 8.8,29.64 6.94,10.08 12.98,7.34 0.35,-6.9 -4.48,-0.23 14.9,-21.54 28.51,-10.08 147.53,7.78 25.02,-10.45 14.33,9.38 18.94,-3.62 8.93,-11.95 -15.18,-15.89 -16.49,-4.54 -69.75,2.26 -28.3,8.98 -17.07,1.47 -4.98,-2.51 -6.37,-10.53 -3.6,-3.01 -13.21,-0.69 -16.92,2.41 -6.05,-3.89 -3.26,-15.03 -4.44,8.01 -3.25,-2.24 -5.51,-5.23 -4.1,-1.42 1.69,-9.48 2.9,-4.11 4.16,-1.18 5.34,-0.47 -2.25,-0.75 -1.8,-0.15 -0.87,-1.48 0.44,-4.76 -12.82,6.14 -13.88,-2.03 -11.21,-8.45 -5.26,-13.06 -11.27,12.86 -13.07,5.8 -23.72,1.08 -10.21,-5.63 -8.23,-13.24 -3.34,-17.16 4.42,-17.41 -9.43,1.44 -3.84,1.49 -4.83,3.85 -4.06,-7.85 4.87,-13.02 -2.46,-13.42 -7.73,-10.05 -10.56,-3.04 5.29,-14.83 6.01,-11.7 1.89,-9.7 -6.99,-9.09 29.35,-18.4 16.08,-3.37 13.44,9.36 -9.94,-0.83 -7.99,3.35 -13.89,11.19 3.6,13.37 5.65,9.83 15.49,16.77 3.71,2.78 7.01,2.7 2.73,2.04 1.8,5.68 -0.08,13.99 1.12,4.66 10.62,9.86 41.07,22.51 -9.06,6.11 -4.14,0.83 -0.39,7.64 11.79,5.03 4.44,-0.06 5.51,-3.87 -0.38,7.53 12.63,-10.13 19.13,6.05 34.37,22.06 -1.6,3.6 -2.18,8.3 -1.55,3.78 6.51,5.36 7.42,3.38 7.99,1.52 8.29,-0.43 0.43,-8.22 -9.58,-3.1 -6.18,-9.14 -3.16,-12.9 -0.81,-13.98 7.44,14.56 2.5,7.57 1.75,8.9 6.25,-10.21 7.3,-9.47 7.42,-3 6.79,8.94 7.94,-6.43 6.9,0.71 6.09,5.57 5.33,8.47 2.27,-8.58 3.52,-7.76 4.41,-6.96 11.84,-13.54 2.52,-1.88 2.29,1.33 6.56,1.8 12.46,-0.12 6.54,2.31 6.76,6.83 5.14,9.33 5.78,18.36 5.16,11.29 15.57,17.41 24.93,18.17 25.18,11.06 16.68,-3.89 -7.77,-8.51 0.42,-13.3 5.7,-13.79 8.33,-10.42 28.87,-12.91 8.22,-7.08 -11.01,-22.6 3.61,-16.97 20.36,-28.96 2.51,-11.91 0.71,-12.12 2.36,-9.2 7.49,-3.42 29.04,1.71 0.49,-8.22 -6.11,-0.53 -4.19,-2.15 -7.05,-5.26 21.21,3.21 35.12,-17.27 23.01,-4.1 17.18,-8.12 24.31,-42.86 18.48,-14.6 -9.6,-7.74 -7.19,-8.52 16.31,1.12 23.49,13.97 13.11,-4.14 -4.3,-13.42 -2.85,-5.31 -4.77,-4.97 7.97,-4.12 4.63,2.94 4.02,3.83 6.04,-1.24 3.92,-5.29 11.04,-24.85 9.34,-15.96 10.5,-12.72 12.52,-7.16 15.41,0.69 -0.48,7.64 -5.73,4.77 -8.16,12.16 -5.78,4.6 -0.49,7.69 79.6,21.05 18.7,10.22 31.87,24.95 18.15,7.5 3.22,-5.56 -0.69,-4.95 -4.07,-3.85 -6.26,-2.14 0.46,-6.95 20.48,-8.96 54.83,-39.97 0.52,-7.58 -8.34,-17.01 -3.89,-21.79 -6.85,-20.08 -16.84,-12.15 8.25,-5.51 20.58,-23.07 7.68,-10.9 4.05,-2.61 19.01,-6.55 4.76,-2.97 3.43,-7.32 2.65,-8.01 2.19,-5.1 1.01,-3.86 -0.46,-5.11 0.09,-4.32 2.7,-1.72 9.16,1.5 2.36,-0.7 3.6,-2.76 4.23,-2.13 4.31,-1.32 3.7,-0.32 8.44,-3.91 1.88,-10.43 -3.26,-12.87 -6.68,-10.85 -44.41,-42.11 -5.75,-14.76 6.76,-13.15 12.7,-5.14 12.5,-2.09 5.71,-3.7 4.98,-11.83 10.62,-13.41 11.25,-8.63 6.97,1.93 51.32,-37.22 22.13,-3.4 11.63,-12.62 2.76,-2.29 15.77,2.4 4.92,-0.92 17.19,-8.81 8.27,-2.64 53.25,-0.11 18.18,6.99 6.63,15.9 4.71,3.76 10.7,-1.29 7,-5.77 3.21,-2.71 3.25,-17.89 -4.63,-8.66 -0.77,-0.63 -28.32,-23.74 8.6,-4.16 9.86,-2.68 10.8,-0.64 4.66,0.98 3.12,-31.01 -1.44,-17.48 11.58,-21.02 17.07,-42.15 2.05,-10.88 1.26,-40.78 2.31,-24.6 6.5,-22.55 17.96,-23.72 8.66,-22.67 15.68,-22.44 11.26,-57.01 24.89,-84.24 1.75,-9.34 1.94,-20.12 2.89,-10.75 4.6,-6.76 10.84,-7.87 3.09,-6 9.29,-7.37 -14.75,-35.6 -4.34,-7.69 -6.74,-4.33 -5.87,-10.4 -3.74,-13.94 -0.74,-14.92 3.77,-17.88 5.19,-15.43 2.6,-15.97 -15.31,-64.41 -1.17,-9.44 -7.5,-20.74 -18.95,-23.09 -37.14,-34.41 -39.26,-24.34 -30.7,-26.49 0.5,-6.92 4.82,-10.88 11.03,-38.83 2.53,-13.78 -1.27,-21.22 -5.98,-13.96 -16.75,-16.82 8.84,-15.06 12.34,-8.35 14.44,-3.41 15.04,-0.01 13.93,-4.99 23.89,-24.41 19.1,-8.49 75.53,-47.54 11.38,-11.47 26.52,-43.85 7.57,-6.27 13.29,-5.02 21.44,-25.11 41.67,-12.94 46.89,-45.16 22.41,-15.69 -15.85,-41.35 -3.24,-26.22 13.51,-10.55 4.08,-11.61 -9.17,-26.94 -14.39,-27.37 -32.76,-33.75 7.19,-43.82 19.9,-47.24 16.78,-31.22 -2.52,-20.52 16.62,-16.01 24.03,-10.09 19.72,-2.99 19.75,-6.85 12.12,-18.68 1.58,-22.75 -11.94,-18.68 0.55,-6.88 11.09,-14.7 -1.35,-16.08 -5.76,-20.78 -1.9,-29.15 8.11,-15.39 47.12,-29.83 -11.34,-16.7 -4.49,-9.86 -1.41,-10.13 -0.47,-10.29 -2.07,-10.74 -12.68,-28.06 -2.84,-11.08 2.92,-68.02 -4.12,-22.19 -9.01,-20.83 -11.33,-17.95 -36.34,-43.27 -7.55,-19.96 3.87,-23.38 12.65,-16.43 13.13,-7.68 10.54,-12.07 4.98,-29.09 9.32,-27.69 16.97,-17.05 35.72,-25.3 10.44,-18.5 9.01,-27.66 3.45,-29.15 -6.4,-22.89 -11.78,-22.38 -3.96,-22.03 5.33,-19.42 16.59,-14.82 46.48,-11.66 15.45,-9.28 0.01,-0.12 16.57,-7.8 33.32,-7.03 16.31,-6.25 11.51,-7.62 13.94,-12.44 8.42,-14.72 -4.75,-14.37 12.97,-75.82 0.08,-1.03 4.65,-19.67 2.56,-7.51 14.73,-21.59 17.28,-17.28 11.94,-20.95 -0.95,-32.52 2.81,-3.24 3.14,-2.86 -10.04,-24.49 -7.03,-30.36 -3.15,-31.64 1.5,-28.13 -0.28,-14.38 -4.02,-7.78 -5.01,-5.58 -3.13,-8 -0.34,-11.04 1.59,-21.36 -1.06,-12.91 -24.87,-81.83 -28.65,-87.04 -22.76,-29.77 -8.65,-17.2 1.56,-20.67 -8.78,-30.67 -5.68,-13.39 -6.22,-8.4 -11.1,-3.99 -15.32,-0.62 -26.57,3.83 -28.48,18.36 -10.46,4.8 -24.96,5.02 -4.05,8.07 0.96,20.05 9.78,28.87 2.93,15.06 -4.73,12.29 -8.51,-0.48 -37.61,-19.08 -8.53,5.76 2.82,13.84 7.21,16.6 4.43,13.78 0.04,16.81 -3,10.69 -6.03,8.37 -9.26,9.64 -9.13,6.12 -19.27,3.34 -9.15,5.44 -7.27,8.6 -2.89,6.48 -2.02,6.58 -4.76,9.11 -4.93,-15.81 -7.66,-4.73 -25.53,-0.44 -18.99,-10.15 -7.76,-0.39 -7.91,3.57 -5,5.73 -4.15,5.9 -5.63,4.44 -26.69,6.63 -22.04,-5.14 -15.57,-18.32 -7.57,-32.68 -7.02,-11.87 8.58,-4.81 23.92,-1.41 14.41,-4.67 -0.93,-2.32 -5.65,-4.56 0.19,-11.71 19.2,-16.44 26.45,-5.76 19.52,-9.49 -2.19,-27.98 -19.35,-19.01 -55.45,0.39 -24.91,-7.09 -7.09,-8.06 -11.49,-20.32 -8.01,-8.64 -106.19,-57.96 -13.48,-1.84 -25.98,1.58 -13.56,-3.91 -7.2,-5.91 -9.85,-14.5 -6.85,-5.88 -8.8,-1.91 -6.98,1.61 -5.95,-0.63 -5.95,-8.41 -2.28,-10.99 1.5,-9.36 2.19,-7.7 0.03,-5.88 -4.36,-7.21 -3.98,-1.7 -4.3,-0.4 -19.57,-14.09 -12.52,-3.41 -32.6,1.51 -15.14,-2.53 -26.19,-11.65 -13.43,-3.57 -63.39,-3.64 -31.64,-8.01 -27.82,-19.23 9.22,-16.56 -1.86,-15.16 -8.67,-12.75 -11.22,-9.62 4.64,-8.65 -0.25,-6.76 -3.92,-5.48 -6.78,-4.39 -11.35,-16.07 -11.33,-11.64 -12.96,-4.06 -16.25,6.81 -5.03,5.58 -10.93,16.12 -4.06,4.08 -8.81,2.65 -1.89,-1.49 -0.2,-4.05 -3.96,-4.84 -25.43,-20.4 -3.54,-7.29 -6.22,-22.95 -14.41,-8.44 -12.07,4.54 -11.95,7.38 -13.82,0.48 -19.98,-64.35 -9.14,-19.01 -16.7,-14.02 -37.48,0.1 -19.63,-7.99 -0.14,-0.13 -0.07,0 -6.35,-2.14 -6.64,-0.88 -6.63,0.21 -6.32,1.5 -5.73,3.84 -5.93,0.94 -5.85,-1.75 -5.64,-4.4 -2.17,-45.57 -3.53,-20.52 -9.42,-12.43 -20.09,-22.04 -24.37,0.09 -67.85,36.6 -6.03,1.48 -6.31,-1.65 -9.64,-7.12 -4.32,-1.94 -12.78,1.13 -11.34,-1.27 -11.38,-4.77 -8.64,-9.48 -14.5,-25.14 -7.55,-8.03 -9.2,-1.5 -38.3,5.03 -52.97,-6.53 -28.24,-9.81 -18.89,-17.81 -5.08,-4.84 -2.24,-5.63 -1.2,-5.7 -1.68,-5.09 0.25,-2.29 1.13,-3.69 0.65,-4.34 -1.36,-4.15 -2.79,-1.69 -6.41,-0.07 -2.5,-1.61 -8.11,-7.97 -20.34,-12.68 -7.31,-7.93 -20.25,-41.16 -7.71,-8.87 -7.7,-5.93 -5.43,-8.93 -1.13,-17.72 -13.27,-18.67 -3.36,-10.62 -1.34,-19.86 2.75,-13.69 4.66,-11.71 0.44,-9.88 -9.64,-7.68 -12.24,1.02 -7.73,10.94 -9.9,30.24 -0.99,5.71 -1.54,6.44 -3.26,7.11 -3.28,4.05 -13,12.04 -1.96,2.51 -0.84,2.43 0.56,2.27 1.83,2.21 0.85,0.84 0.93,0.68 0.94,0.38 1.1,0.22 2.89,6.4 0.15,5.13 -2.53,3.92 -5.21,2.59 -20.5,-0.36 -10.52,2.77 -8.25,6.66 -3.17,8.56 -0.59,19.08 -4.63,10.1 -14.1,9.13 -52.25,1.67 17.12,-16.44 6.15,-9.64 3.31,-15.74 -0.73,-14.3 -4.57,-5.37 -7.16,-5.14 -8.36,-13.81 7.92,-12.9 36.15,-20.53 18.29,-18.45 8.57,-12.06 6.02,-12.98 2.78,-16.63 -3.94,-25.49 1.15,-16.64 6.93,-16.56 10.52,-8.82 11.74,-6.11 10.73,-8.51 6.84,-10.7 1.97,-11.31 0.59,-10.1 2.6,-6.97 110.94,-53.19 0.74,0.03 11.46,-10.3 26.49,-1.54 12.61,-10.93 2.61,-16.17 -4.27,-15.22 -0.26,-12.1 30.17,-15.86 10.42,-3.49 4.83,-7.83 -1.21,-21.7 -4.99,-17.27 -15.13,-31.39 -4.47,-17.42 -14.62,3.75 -3.66,-15.88 0.7,-23.33 -1.46,-18.38 -10.93,-12.12 -29.18,-14 -7.73,-17.09 4.1,-11.56 8.09,-13.91 15.87,-20.74 10.79,-8.89 11.37,-7.02 24.53,-10.38 10.24,-4.76 6.51,-11.5 1.21,-14.74 -5.48,-13.89 1.93,-1.41 5.88,-2.55 -3.03,-8.89 -0.39,-2.72 7.81,-8.62 17.68,-8.66 8.01,-8.03 5.65,-11.82 4.53,-24.48 3.53,-12.9 5.27,-13.11 5.03,-9.72 6.08,-8.05 8.24,-7.84 8.27,-2.08 7.58,1.46 5.59,-4.11 1.88,-18.68 3.85,-36.37 4.46,-17.86 9.02,-15.68 14.73,-11.09 34.2,-14.1 15.36,-14.38 26.43,-52.06 12.08,-11.31 14.67,-4.5 43.11,-4.09 13.5,2.53 -3.96,14.14 9.82,3.67 28.16,-6.2 12.66,-5.97 10.95,-7.95 21.57,-20.57 12.9,-4.56 4.53,-8.86 1.55,-10.69 3.86,-10.16 24.7,-26.38 0,-0.06 0.16,-0.1 9.3,-4.63 73.22,-88.93 10.77,-21.35 12.64,-18.03 21.33,-10.91 44.22,0.4 14.95,-4.8 9.34,-7.19 23.87,-28.42 32.84,-29.8 9.27,-18.88 2.26,-31.15 11.49,-16.45 22.17,-18.47 24.12,-15.24 17.58,-7.2 6.42,19.79 6.23,12.65 9.86,5.25 16.99,-2.56 13.33,-7.09 13,-9.19 12.9,-6.13 13.22,2.3 3.1,-20.91 9.02,-19.74 12.49,-16.64 13.26,-11.69 14.26,-5.7 27.58,-2.62 10.66,-5.1 18.71,-25.52 39.85,-68.4 15.29,-13.96 -19.03,-47.67 -1,-10.67 3.71,1.62 8.8,-14.95 3.86,-3.16 9.48,-3.84 -9.22,-9.98 -1.06,-13.38 6.14,-35.64 0.65,-18.69 -1.28,-16.17 -3.65,-14.87 -10.92,-28.18 -3.18,-5.48 -5.72,-6.43 -5.71,-2.9 -15.17,-3.42 -2.55,0.42 -5.46,-13.05 -4.73,-30.06 -1.7,1.59 -31.09,11.78 -12.34,16.65 -12.51,8.17 -13.31,6.16 -77.71,16.78 -24.49,-4.79 -23.55,-10.45 -6.27,-6.53 -3.59,-7.96 0.69,-4 2.5,-4.86 4.14,-19.87 7.49,-10.31 2.17,-9.67 -1.43,-10.94 -8.69,-21.62 -2.92,-10.4 -0.77,-10.41 3.19,-31.3 -0.85,-11.66 -2.85,-7.83 -3.03,-5.94 -1.12,-5.82 -2.84,-23.82 -9.33,-17.91 -68.81,-67.4 -24.12,-15.31 -101.16,-23.44 -75.27,-34.65 -11.51,-9.15 -26.23,-27.97 -23.26,-14.59 -11.03,-9.89 1.13,-2.6 -40.74,-10.1 -10.91,-6.57 -6.38,-7.74 -12.52,-22.1 -9.13,-11.63 -28.56,-22.19 -2.82,-3.82 -9.79,-17.15 -4.44,-2.29 -4.85,0 -4.69,-1.87 -4.15,-8.21 -0.73,-15.06 4.48,-14.46 7.27,-13.05 7.46,-10.63 55.16,-52.31 12.41,-24.25 2.92,-13.44 4.59,-11.43 6.46,-8.51 18.43,-9.84 15.83,-14.77 6.19,-2.94 13.21,-11.71 28.34,-57.5 17.4,-23.279 3.65,-3.332 -44.29,-79.93 -3.66,-8.937 -1.12,-7.141 0.13,-7.133 -0.94,-7.41 -4.41,-8.109 0.01,-0.059 -0.15,-0.121 -12.86,-22.238 12.87,-11.813 42.18,-5.66 11.14,2.5 18.56,9.34 11.72,-1.269 9.66,-6.52 9.81,-10.68 15.97,-24.328 6.82,-15.82 2.85,-14.129 0.24,-13.523 -0.92,-13.52 -1.74,-2.508 -7.77,-22.492 -0.31,-3.09 -11.28,-16.539 -2.06,0.641 1.93,-25.172 1.6,0.711 -0.77,-1.649 -6.22,-18.371 -1.71,-3 1,-19.351 0.98,-6.86 2.03,-6 2.71,-5.55 2.3,-6.649 0.71,-9.23 -20.16,-26.61 -4.99,-4.808 -8.08,-0.793 -4.82,2.64 -4.43,4.2 -7.44,3.511 -7.85,-0.64 -6.06,-3.7 -6.27,-2.539 -8.42,2.938 -38.3,26 -36.27,36.152 -6.63,4.797 -7.2,2.184 -11.69,1.437 -19.32,14.071 -5.3,27.23 7.92,26.199 20,11.172 -15.62,13.68 -20.11,11.91 -12.5,13.898 6.82,19.782 -12.8,-2.289 -42.64,8.828 -26.76,-1.27 -26.46,-7.68 -13.94,-7.851 -32.07,-31.399 -11.48,-5.742 -15.7,-3.816 -15.47,-0.293 -10.79,4.723 -23.16,16.968 -6.37,6.989 -4.52,8.921 -8.88,23.34 -3.78,6.25 -12.43,1.871 -28.97,-12.609 -12.63,-2.613 -43.75,7.383 -16.26,-3.051 -16.39,-9.461 -8.09,-1.578 -7.72,6.32 -4.62,12.09 2.15,7.859 4.53,6.86 2.27,8.898 1.44,11.941 2.11,5.18 -1.84,-0.461 -10.73,-5.25 -6.34,-4.347 -17.43,-15.793 -11.66,-5.309 1.84,-9.012 2.66,-6.047 5.81,-7.07 6.37,-5.832 3.91,-2.398 2.35,-6.032 2.47,-29.629 -0.35,-10.429 -2.42,-7.199 -20.3,-28.391 -5.93,-1.481 -172.96,0.719 -62.59,-15.211 -8.28,-5.367 -6.85,-19.172 -7.68,-2.859 -42.66,7.172 -61.25,-1.891 -33.01,5.418 -13.93,-0.008 -2.45,-3.301 -20.37,-18.91 -4.74,-11.949 -5.06,-25.922 -3.47,-10.398 -13.19,-15.672 -16.13,-7.027 -35.14,-7 -17.22,4.859 -18.6,1.937 -16.99,-4.546 -34.25,-41.954 9.35,-2.25 8.34,-5.109 3.14,-8.187 -6.13,-11.223 -12.07,-5.629 -32.71,-1.758 -13.89,-4.902 -14.17,-13.981 -9.59,-13.73 -10.42,-11.859 -16.24,-8 -18.15,1.55 0.78,30.262 -16.33,6.137 -18.87,-5.731 -48.34,-35.457 -14.62,-4.91 -78.73,-0.902 -10.68,5.883 -8.1,14.847 1.79,0.16 2.29,5.172 1.52,7.739 -0.42,7.46 -2.39,4.989 -38.64,39.613 -39.21,17.039 -5.35,8.688 23.88,17.152 6.12,7.789 -17.59,12.59 -8.12,4.351 -10.44,0.469 -10.58,-3.301 -30.02,-14.609 -22.2,-3.199 -6.5,1.801 -3.85,5.199 -2.62,5.687 -3.11,3.434 -100.12,35.418 -18.2,-0.141 -10.27,-7.48 -14.82,-21.578 -9.41,-7.891 -8.84,-1.719 -32.14,4.258 -11.85,5.172 -6.23,4.25 -4.06,5.039 -1.5,9.512 2.67,7.109 3.55,5.41 0.85,4.379 -3.54,10.309 -2.68,2.019 -5.71,-2.379 -12.55,-2.5 -11.18,-4.66 1.26,-9.57 6.75,-12.141 5.21,-12.34 -0.74,-10.296 -6.82,-44.454 10.7,-5.578 6.59,-7.05 4.23,-9.719 3.37,-13.699 0.61,-23.832 -6.4,-25.11 -10.58,-22.68 -12.25,-16.91 -6.4,-4.488 -15.82,-5.82 -7.71,-5.403 -4.4,-7.05 -16.2,-34.028 -13.27,-18.5 -14.54,-13.742 -33.49,-21.32 -16.39,-6.668 -60,-8.27 -3.39,1.899 2.94,6.992 6.77,12.648 3.02,2.149 9.95,3.133 3.62,3.679 1.76,7.43 -0.49,6.66 -1.83,7.27 13.03,41.328 0.24,20.023 -14.01,7.278 -33.06,-6.532 -8.83,-10.039 -3.17,-2.508 -3.9,-0.031 -7.87,4.629 -3.75,0.43 -9.85,-4.879 -5.71,-4.36 -5.07,-0.3 -7.44,7.019 -4.2,10.571 -0.87,11.941 -2.18,11.508 -8.4,9.543 16.97,13.578 3.35,11.738 -6.81,12.942 -37.8,53.781 -8.52,-4.02 -6.62,-5.949 -6.58,-2.953 -8.32,4.832 -1.25,6.48 -0.27,3.379 -0.05,3.36 -7.03,14.879 -9.54,9.3 -7.98,10.301 -2.33,18.352 -9.01,-7.41 -11.33,-2.372 -22.42,1.52 -22.73,8.129 -3.8,-1.078 -9.19,-6.071 -6.07,-0.531 -15.4,7.77 -3,11.711 1.33,13.539 -2.62,13.133 -8.88,9.5 -10.69,3.738 -11.25,-1.379 -10.83,-5.902 -16.22,-19.227 -9.14,-20.301 -10.73,-17.101 -20.45,-9.95 -48.24,-1.23 -47.32,12.602 -208.69,128.429 -29.21,6.66 -28.09,-0.113 -10.2,15.852 -41.51,-0.078 -83.72,9.339 -14.2,-5.632 -11.95,-12.977 -27.32,-8.711 -29.42,-2.762 -18.38,4.852 -21.78,16.32 -11.15,11.188 -0.06,7.73 13.81,3.18 -19.35,18.391 -24.46,14.332 -20.15,0.98 -6.81,-21.781 6.1,-6.879 -39.63,-0.442 -1.44,7.239 -1.83,8.48 -5.94,7.403 -3.15,9.089 2.51,7.25 10.05,14.989 2.03,4.179 -4.91,11.25 -7.36,1.461 -8.29,-1.691 -7.74,1.781 -5.54,8.871 -5.83,12.891 -7.15,10.976 -9.66,3.262 -6.85,-7.101 -3.99,-24.207 -9.32,-6.051 -7.33,5.531 -2.56,13.508 -0.63,14.359 -1.12,8.102 -13.82,6.34 -18.64,1.129 -11.96,-6.758 6.86,-17.563 -11.34,-5.679 -40.39,-7.782 -8.37,0.282 -5.91,-3.461 -10.25,-14.86 -3.54,-8.07 -5.82,-22.188 -8.04,-7.41 -19.07,-10.281 -7.43,-8.359 -0.92,-8.2 3.12,-8.152 1.79,-9.488 -4.91,-12 11.76,-4.43 3.72,-0.601 19.14,-14.821 15.46,-8.949 13.36,0.48 11.14,5.668 10.45,7.372 11.29,5.589 36.51,5.993 10.46,-1.84 12,-5 6.83,-0.703 -4.4,-26.309 -4.88,2.488 -0.43,6.84 -0.69,1.781 -3.26,-0.089 -3.97,-1.481 -2.73,-2.34 -1.74,-6.129 1.21,-5.058 1.77,-4.352 0.29,-3.82 -0.98,-7.57 0.35,-7.899 -0.9,-8.332 -4.94,-8.559 -10.12,-3.332 -8.26,10.274 -8.84,15.098 -11.51,10.929 -22.53,-2.16 -23.1,-15.059 -8.91,-18.949 -0.97,-5.281 -23.19,-3.73 -48.1,0.66 -28.46,7.832 -7.34,4.886 -5.19,10.762 -3.94,10.75 -3.99,4.86 -8.69,1 -19.44,6.152 -13.59,0.078 -40.61,-6.418 -3.91,-2.492 -3.79,-5.379 -5.18,-5.383 -13.8,-3.949 -16.41,-8.641 -6.19,-4.687 -6.46,-7.25 -3.1,-5.602 -3.39,-4.777 -7.37,-4.883 -33.91,-7.18 -97.88,1.289 -1.96,4.743 -1.33,10.449 -2.26,10.449 -4.52,4.832 -48.44,3.641 -10.49,5.558 -14.01,-21.179 -12.19,-14.153 -14.28,-7.808 -62.89,-11.981 -16.52,2.492 -38.52,21.25 19.67,-0.531 8.14,7.59 10.35,27.648 -17.05,-1.476 -38.59,-10.801 3.32,11.258 1.86,3.961 -1.44,10.621 -3.86,5.871 -4.74,4.277 -4.4,5.723 -16.29,34.137 -9.9,14.371 -10.99,6.012 -2.85,5.168 -2.17,12.019 -1.64,23.961 2.77,6.609 12.65,12.981 4.56,7.262 0.73,18.148 -8.56,39.082 2.31,15.379 11.36,35.809 4.27,5.269 10.24,5.352 1.85,12.398 -3.48,20.75 0.25,4.941 -0.57,2.821 -0.33,2.82 0.94,4.641 2.33,4.777 5.03,4.711 3.12,5.43 4.91,11.05 1.48,4.942 -0.59,18.078 4.29,14.78 20.29,20.74 7.34,13.26 -1,34.72 -31.18,57.33 -1.46,45.9 5.1,21.6 5.31,16.85 5.56,9.84 5.2,6.62 3.93,8.66 1.75,16 5.16,13.5 48.15,64.96 8.11,16.01 5,18.76 1.91,22.54 5.53,23.27 12.12,9.59 13.76,7.18 10.46,16.18 1.17,15.52 -3.51,14.88 -4.59,14.26 -2.15,13.43 1.08,14.57 5.91,29.26 3.95,12.61 5.3,10.45 4.93,7.11 3.91,10.73 1.87,21.15 3.98,10.02 9,8.93 18.7,14.3 0.12,7.64 -8.33,23.74 0.68,38.66 6.82,36.2 31.81,48.07 8.69,5.96 12.23,3.78 11.41,9.6 20.5,23.84 8.82,5.56 9.87,9.35 8.05,10.46 3.39,8.74 1.2,21.18 4.01,9.89 8.39,2.64 20.66,0.08 5.65,1.88 4.22,3.56 1.68,6.13 1.72,10.43 3.5,5.88 3.45,3.23 1.63,2.73 6.46,0.21 27.12,14.14 4.52,3.8 9.29,15.23 34.33,91.24 23.34,43.06 15.55,17.47 -8.39,8.08 -71.76,15.75 -115.14,63.38 -13.19,1.68 -41.69,-3.76 -60.53,18.59 -8.11,-2.05 -17.3,-9.08 -8.96,-2.15 -7,1.15 -15.39,5.78 -8.06,1.52 -9.25,-1.8 -8.6,-3.52 -8.8,-2.09 -10.08,2.48 -6.69,5.93 -6.84,14.54 -5.24,6.77 -16.07,8.74 -31.83,6.18 -15.73,10.42 -9.34,12.3 -15.99,27.16 -10.04,10.89 1.36,3.65 1.86,2.49 5.49,3.4 -4.5,16.18 -13.09,5.09 -31.45,2.78 -2.9,12.47 -14.14,1.51 -17.21,-4.81 -12.28,-6.63 -3.51,-5.44 -5.63,-16.03 -3.83,-6.06 -5.56,-2.46 -14.97,-1.57 -6.54,-2.09 -4.72,-5.47 -8.05,-15.51 -4.4,-4.33 -4.58,0.8 -19.4,9.64 -62.89,2.07 -11.36,4.19 -11.32,6.26 -27.38,20.97 -3.99,0.62 -6.8,-6.38 0.45,-6.16 2.19,-5.86 -1.27,-5.6 -22.76,-13.56 -15.74,13.05 -7.64,30.73 1.4,39.22 -15.71,1.22 -44.79,26.96 -8.02,1.43 -21.28,-1.48 -30.22,7.81 -7.35,-1.57 -4.66,-15.33 4.98,-18.14 2.26,-18.52 -13.06,-16.35 -9.33,-1.86 -28.1,11.34 -32.47,1.25 -8.48,3.94 -8.87,15.85 2.45,13.55 4.11,13.96 -4.05,17.78 -2.94,0.03 -9.98,-6.14 -3.25,-0.24 -1.83,4.02 -1.17,8.78 -0.75,2.49 -2.19,4.73 -5.08,20.79 -2.98,3.32 -9.97,3.93 -3.81,3.16 -0.69,4.51 1.85,11.21 -0.98,4.75 -46.87,48.17 -11.69,15.16 -4.16,13.07 4.3,10.04 12.93,0.21 3.44,8.86 -2.26,6.75 -34.04,38.59 -4.78,7.58 1.44,0.41 0.06,6.21 -1.65,9.25 -4.19,9.4 -12.041,12.42 -65.39,35.51 -7.957,1.65 -5.992,-2.09 -14.11,-9 -7.769,-1.22 -6.121,0.91 0.289,8.15 -1.059,33.74 7.781,46.37 1.239,35.21 4.539,12.1 11.5,16.73 19.632,22.55 7.829,14.8 5.718,7.85 2.121,4.94 -0.418,7.37 -4.261,4.46 -4.508,3.32 -1.141,3.72 11.719,15.3 54.172,32.55 -1.344,2.46 -4.726,5.85 2.636,5.32 3.41,1.55 6.182,-2.67 -4.908,7.06 -3.16,8.1 -1.34,9.13 0.859,9.92 7.199,5.91 0.44,4.3 -1.77,5.01 0.34,7.86 4.23,24.07 1.07,0.72 0.38,9.36 1.62,1.5 0.21,-0.24 -3.73,4.32 -2.82,0.27 -21.93,7.29 -34.508,1.18 -12.442,3.88 -11.922,8.18 -19.968,20.43 -11.918,8.13 -6.313,0.4 -11.008,-6.16 -5.769,0.72 -0.613,3.76 -6.52,19.45 -3.187,6.21 -10.231,7.16 -23.949,11.75 -10.793,11.79 -21.469,57.75 -11.558,20.4 -8.293,-14.99 -5.34,9.92 -9.699,31.67 -11.641,19.31 -2.77,9.14 2.481,12.28 -3.551,23.38 -4.301,9.31 -7.597,4.78 7.16,12.73 2.808,3.51 -1.621,0.29 -4.308,-0.23 -1.219,0.85 5.719,31.08 4.07,15.14 5.57,15.89 6.789,7.39 1.711,5.36 0.61,1.9 0.039,0.13 -2.25,6.93 -7.008,6.14 1.758,5.4 1.222,5.29 1.629,7.08 0.621,1.54 0.848,2.09 5.02,2.85 1.25,0.71 14.281,0.6 3.91,2.32 1.539,0.92 4.68,10.35 0.922,12.51 -2.731,9.96 -0.769,2.83 -9.11,10.93 0.141,0.17 7.598,9.2 3.921,2.56 12.649,8.26 2.199,3.12 5.211,7.41 15.07,6.46 12.918,3.11 18.051,4.36 13.512,11.32 0.027,0.03 -2.789,10.12 1.883,11.14 5.098,10.52 2.589,2.93 4.789,5.43 5.704,3.02 4.136,2.2 7.922,-0.98 2.641,-1.14 5.34,-2.31 9.507,-2.07 18.942,2.76 0.09,0.02 3.09,3.06 6.109,6.06 0.043,0.04 -0.922,15.56 -0.059,0.11 -23.121,43.74 -0.48,13.19 5.449,14.71 0.289,1.23 5.723,24.78 0.929,14.71 0.231,3.63 0.008,0.2 -1.16,1.75 -1.418,2.14 -0.969,0.22 -4.063,0.94 -3.808,6.83 -1.922,3.44 -3.481,11.4 -1.339,8 -0.348,2.07 1.5,6.39 0.578,2.45 8.152,7.43 0.047,0.04 -12.879,1.21 -30.461,8.19 -10.66,5.57 -1.547,1.61 -0.132,0.05 -1.457,0.58 -1.75,-0.5 -0.032,-0.01 -0.379,-0.36 -1.222,-1.13 -0.098,-0.03 -3.41,-0.92 -20.731,-5.57 -4.921,0.43 -2.11,0.18 -1.777,1.55 -3.692,3.2 -3.878,8.94 -1.723,3.99 -0.09,0.09 -1.527,1.52 -3.903,3.89 0,0 0.012,0.01 6,9.37 -0.223,0.02 -8.039,0.92 -5.621,2.63 0,0.03 -0.758,5.07 5.891,8.34 -11.141,15.23 -0.082,0.1 13.813,19.96 9.008,6.93 14.011,10.78 16.161,8.83 0.14,3.93 0.008,0.09 8.41,9.46 1.403,2.56 3.937,7.14 -1.367,6.73 -48.781,3.04 -14.262,8.19 -7.641,16.29 9.653,5.67 -0.063,0.1 -32.949,54.87 -7.438,12.42 -13.043,14.09 -11.699,1.56 -28.25,-6.58 -9.289,1.47 -0.879,3.43 -1.519,5.98 3.097,11.62 0.012,2.51 0.059,8.19 -4.051,2.33 -7.438,4.29 -0.339,0.77 -0.602,1.34 0.012,2.01 0.519,2 0.668,1.08 0.442,0.71 0.14,0.23 2.117,14.41 -4.32,6.97 -6.789,5.17 -5.008,9.52 -2.402,14.37 10.59,-3.14 10.511,9.07 4.25,13.06 -1.121,10.29 -0.257,9.62 6.636,10.9 9.891,5.12 15.812,-2.02 8.231,9.11 4.75,11.26 0.566,8.84 -5.047,23.1 1.598,7.31 3.941,5.88 1.559,4.43 -22.629,8.9 -16.14,11.07 -5.129,6.13 -1.461,8.93 -0.36,16.07 3.059,9.14 4.66,9.19 -1.211,5.86 -25.297,-2.02 -18.172,6.85 -9.668,1.73 -9.621,-2.3 -18.582,-8.26 -9.66,-1.55 0.461,28.07 -9.437,32.43 -2.872,26.19 20.059,9.51 9.481,-5.87 7.871,-11.18 8.988,-8.95 12.949,0.84 9.024,9.12 14.636,27.74 9.852,10.47 66.808,48.17 40.692,20.06 10.941,13.42 -14.133,14.27 16.473,12.45 5.688,3.03 -15.821,6.14 -35.758,-22.56 -16.031,9.79 -4.16,20.73 3.012,24.74 6.879,21.91 7.629,11.98 15.421,17.37 38.329,64.58 7.55,6.87 18.18,11.67 7.289,9.54 4.274,13.7 3.089,24.28 4.399,9.61 -10.02,12.96 1.719,20.44 6.223,23.44 3.359,21.91 -2.609,20.3 -3.551,36.61 -26.711,33.43 -43.609,65.31 -2.461,13.76 4.351,15.74 9.071,24.56 -45.993,22.48 -15.031,20.87 10.57,31.1 -6.57,7.35 -14.93,12.33 -7.769,4.12 -20.07,0.37 -6.731,3.08 1.07,11.92 15.981,14.62 2.141,22.41 -8.29,21.9 -15.171,12.7 2.769,9.81 11.813,7.65 28.328,3.82 13.551,5.14 14.671,10.02 10.11,4.88 28.34,6.43 22.109,-6.87 16.07,-4.8 10.989,-3.2 -8.68,14.96 -24.609,28.02 -8.282,6.83 23.903,11.77 21.769,-11.35 21.418,-18.82 22.902,-10.46 21.668,3.93 5.661,-0.91 4.73,-4.95 7.102,-13.96 2.988,-3.94 26.262,-5 10.937,-6.93 1.434,-17.4 26.108,6.28 3.25,10.99 -4.72,25.28 43.66,-14.64 14.02,-0.49 11.57,4.77 34.75,24.87 69.27,21.17 60.96,0.01 18.94,9.5 16.58,18.61 16.57,28.03 5.8,6 5.28,0.76 3.58,3.29 1.05,13.57 -1.48,7.55 -3.39,5.48 -17.16,19.33 -44.04,26.5 -14.89,4.93 -10.67,8.08 -0.88,17 5.12,11.43 6.26,2.73 7.24,0.29 8.35,3.88 5.74,6.8 6.04,13.99 3.81,6.21 11.98,11.74 11.16,5.81 44.52,3.65 8.87,7.65 16.05,30.46 13.7,13.55 29.7,12.03 13.98,11.74 16.77,25.63 7.59,8.39 30.86,17.67 2.06,5.67 -5.43,10.7 -5.41,23.93 0.98,20.36 5.39,16.65 14.53,31.41 6.87,40.38 -8.79,28.86 -39.53,68.52 -4.34,-1.89 -4.42,-7.35 -6.5,-5.8 -17.14,-4.51 -17.88,-0.67 -19.08,3.7 -34.72,14.49 -53.56,9.27 -17.63,9.33 -12.91,16.06 -3.61,16.71 -0.36,19.63 -1.74,19.93 -7.78,17.71 11.24,0.64 38.23,17.86 -21.61,19.52 -4.53,7.31 0.08,9.26 3.38,9.13 1.64,9.92 -5.29,11.82 24.39,16.57 22.88,6.34 64.22,-0.91 35.55,-11.91 33.5,4.02 10.09,-4.6 23.92,-8.23 12.96,23.46 6.03,39.06 9.53,119.89 6.86,37.03 12.95,33.5 57.48,85.55 15.53,36.87 7.07,35.31 2.04,39.84 -4.22,79.79 -2.24,9.78 -3.11,5.89 -2.38,7.13 -0.14,13.32 1.89,8.92 10.09,24.25 5.04,19.03 2.51,17.27 -0.24,17.87 -0.73,31.31 6.64,3.51 7.72,7.94 6.06,7.99 6.22,11.72 2.67,13.23 -4.65,12.36 17.5,25.19 9.06,4.33 15.56,-0.09 14.3,-4.14 22.58,-15.13 12.62,-5.38 -15.56,23.99 -26.2,10.34 -151.46,9.19 -24.23,12.88 -8.98,31.23 2.21,82.42 3.4,18.66 13.75,33.33 3.34,16.59 5.69,9.97 13.08,-0.52 26.57,-6.52 3.79,8.81 6.39,3.23 5.08,10.74 -0.73,14.11 -5.68,8.09 -19.11,10.28 -8.38,9.08 -0.98,14.64 9.7,12.11 21.73,14.26 24.62,26.28 13.07,8.59 25.23,25.01 52.65,19.08 101.88,9.19 7.06,-5.1 6.61,-9.86 15.56,-3.96 97.86,18.35 198.49,24.43 52.58,-16.16 -0.12,-8.28 -4.72,-31.21 17.9,-40.55 26.88,-35.43 21.97,-15.8 -0.08,-6.9 -5.86,-14.01 10.28,-5.13 14.59,-4.43 7.26,-11.64 -2.22,-20.04 -6.42,-10.16 -14.45,-10.58 -12.07,-6.12 -26.15,-1.97 -11.81,-7.2 11.72,-37.24 5.86,-14.11 8.87,-9.77 8.49,3.98 7.66,3.12 11.11,-0.53 7.77,-4.41 12.46,-14.87 4.63,-3.1 5.37,-4.83 5.31,-10.52 6.89,-10.49 9.57,-4.82 11.06,0.23 8.13,1.69 7.19,4.24 8.19,7.91 14.38,23.25 15.06,38.21 3.99,38.02 -18.96,22.61 -26.11,-6.64 -13.95,2.51 1.47,16.25 5.88,18.17 5.19,37.78 5.78,15.75 8.78,9.28 11.33,4.31 27.63,1.11 12.66,-5.98 9.66,-13.66 7.93,-15.3 7.92,-11 26.71,-13.9 56.46,-11.63 25.53,-12.53 -0.05,-8.28 -16.05,-13.58 -14.58,-17.61 -10.93,-23.95 -4.35,-32.28 0.24,-62.5 3.79,-27.45 8.86,-20.59 2.12,27.47 -6.66,69.56 0.85,32.76 10.31,24.13 15.23,10.71 13.99,13.31 6.3,31.69 -3.26,5.54 -16.83,43.63 -5.02,6.53 -6.6,15.05 -5.84,16.77 -4.5,21.19 -9.17,25.36 -1.99,18.53 1.64,18.79 4.14,16.3 25.03,61.63 18,66.87 11.4,29.77 9.46,14.09 12.92,12.23 14.65,8.78 14.82,3.26 13.79,-1.05 7.66,-3.42 16.16,-18.47 23.23,-19.98 24.85,-13.02 51.45,-12.9 28.16,0.76 47.89,11.86 26.32,-2.12 12.37,14.55 52.26,12.87 52.13,-0.4 11.06,8.19 8.99,-6.75 10.81,-1.92 22.29,1.17 5.72,-3.77 14.56,-19.03 64.77,-113.28 26.65,-31.12 18.65,-15.12 9.16,-11.66 9.31,-33.57 45.81,-66.64 10.27,-9.23 12.36,-5.42 15.69,-1.76 8.24,-3.95 39.75,-26.71 81.2,-17.25 8.59,3.72 -8.39,14.4 -25.08,14.26 -59.41,6.34 -24.31,9.37 -48.08,30.57 -21.86,24.49 -8,35.42 -2.14,30.22 -2.8,19.47 -6.67,5.99 -31.15,17.15 -9.84,3.44 -16.18,14.67 -15.53,33.31 -10.69,35.99 -1.14,22.13 -23.99,9.36 -41.7,35.86 -24.86,15.08 -24.68,5.66 -83.42,1.72 -25.07,11.64 -16.7,4.65 -7.61,-4.95 -6.92,-11.33 -15.22,5.06 -23.14,17.72 -21.83,27.22 -54.02,110.31 25.2,11.56 12.32,0.96 15.69,-4.39 25.57,-17.33 14.15,-4.72 14.29,6.9 5.07,12.13 5.35,22.02 3.51,23.8 -0.08,17.31 -7.63,11.44 -12.03,10.75 -8.98,11.39 1.89,12.7 0.01,6.9 -16,4.96 -22.75,-4.24 -21.35,-10.26 -11.71,-13.15 -4.46,0.01 -17.76,31.03 -11.54,25.04 -1.81,5.41 5.32,22.35 10.09,19.18 6.84,17.47 -4.67,16.97 0.01,7.53 8.1,6.08 27.48,7.94 11.37,1.14 6.81,5.62 10.24,13.85 10.04,17.59 6.46,16.78 -14.73,-2.92 -24.63,-21.3 -13.94,-6.14 1.35,3.62 1.77,7.99 1.35,3.62 -19.85,-2.32 -33.92,-10.38 -19.99,-2.36 -23.33,4.11 -9.97,-3.99 -21.76,-20.84 -7.68,-2.49 -17.27,6.35 -18.48,17.05 -13.32,24.51 -1.65,28.99 9.2,11.45 17.84,8.01 19.9,3.93 15.31,-0.93 0.04,7.59 -11.61,2.93 -8.89,8.49 -8.58,2.75 -10.48,-13.98 -5.44,12.33 2.01,12.53 6.04,11.52 6.55,9.23 13.86,-6.28 52.59,14.22 71.36,-0.2 16.51,4.46 13.69,8.54 27.38,24.24 25.13,12.3 10.72,8.27 4.42,18.06 0,26.97 -16.33,25.59 -52.89,57.13 -7.47,11.92 -3.12,11.79 -5.93,5.19 -13.35,-0.44 -13.63,-3.82 -7.16,-5.05 -4.45,8.35 22.06,15.13 -22.27,60.49 -8.35,15.55 -18.42,11.78 -34.78,30.6 -21.79,11.08 0.04,7.59 3.74,20.11 -8.41,22.63 -12.32,22.37 -8.54,19.31 -3.51,29.29 3.05,25.8 8.92,32.33 22.04,-7.06 23.66,-1.13 43.74,16.3 14.98,2.26 51.21,-8.95"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7109" /><path
+               id="path3066" /><path
                d="m 2414.39,8757.2 0,0 30.76,-8.03 139.86,6.17 -16.18,-12.74 -80.07,5.04 -10.11,-5.39 -17.75,-13.73 -9.77,-2.74 -44.24,0.37 -4.16,2.22 -5.42,9.77 -5.41,2.7 -6.17,-0.18 -4.2,-1.68 -19.56,-13.39 -3.28,-3.13 -1.81,-8.09 -1.15,-21.9 -1.97,-4.46 1.59,-60.8 -1.87,-19.88 -3.41,-15.21 -4.16,-3.35 -4.03,15.74 -0.3,29.28 8.81,120.73 6.27,23.63 49.71,135.77 27.24,33.52 30.23,-16.57 -38.97,-1.76 -5.13,-5.53 17.75,-1.99 5.1,-13.5 -5.87,-15.31 -26.1,-14.5 -12.2,-17.89 -6.89,-22.36 5.44,-20.58 -4.14,-39.47 21.56,-20.78"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2414.39,8757.2 0,0 30.76,-8.03 139.86,6.17 -16.18,-12.74 -80.07,5.04 -10.11,-5.39 -17.75,-13.73 -9.77,-2.74 -44.24,0.37 -4.16,2.22 -5.42,9.77 -5.41,2.7 -6.17,-0.18 -4.2,-1.68 -19.56,-13.39 -3.28,-3.13 -1.81,-8.09 -1.15,-21.9 -1.97,-4.46 1.59,-60.8 -1.87,-19.88 -3.41,-15.21 -4.16,-3.35 -4.03,15.74 -0.3,29.28 8.81,120.73 6.27,23.63 49.71,135.77 27.24,33.52 30.23,-16.57 -38.97,-1.76 -5.13,-5.53 17.75,-1.99 5.1,-13.5 -5.87,-15.31 -26.1,-14.5 -12.2,-17.89 -6.89,-22.36 5.44,-20.58 -4.14,-39.47 21.56,-20.78"
                style="fill:#eedd82;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7111" /><path
+               id="path3068" /><path
                d="m 57.9102,6850.27 0,0 -0.3907,-6.84 13.6914,-0.78 -5.4023,-14.39 -9.7695,-16.73 -20.3477,-27.79 -33.03124,-24.28 -16.82036,-28.52 -22.9882,-5.28 -22.9219,11.11 -11.2578,29.03 5.8984,28.91 15.25,32.06 18.1211,25.87 33.33985,25.44 17.62895,32.43 18.4414,26.57 20.8476,-2.36 2.25,-6.61 1.25,-5.84 -0.8594,-5.31 -3.9492,-4.99 8.5703,-15.97 5.711,-20.18 -1.1407,-17.48 -12.121,-8.07"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 57.9102,6850.27 0,0 -0.3907,-6.84 13.6914,-0.78 -5.4023,-14.39 -9.7695,-16.73 -20.3477,-27.79 -33.03124,-24.28 -16.82036,-28.52 -22.9882,-5.28 -22.9219,11.11 -11.2578,29.03 5.8984,28.91 15.25,32.06 18.1211,25.87 33.33985,25.44 17.62895,32.43 18.4414,26.57 20.8476,-2.36 2.25,-6.61 1.25,-5.84 -0.8594,-5.31 -3.9492,-4.99 8.5703,-15.97 5.711,-20.18 -1.1407,-17.48 -12.121,-8.07"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7113" /><path
+               id="path3070" /><path
                d="m 94.0117,6976.44 0,0 -17.8906,-14.02 -20.293,10.53 30.3633,34.95 45.7386,37.77 46.769,23.99 33.262,-6.52 -0.422,-7.56 -17.82,0.98 -8.528,-4.43 -19.82,-6.22 -55.441,-48.5 -15.9183,-20.97"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 94.0117,6976.44 0,0 -17.8906,-14.02 -20.293,10.53 30.3633,34.95 45.7386,37.77 46.769,23.99 33.262,-6.52 -0.422,-7.56 -17.82,0.98 -8.528,-4.43 -19.82,-6.22 -55.441,-48.5 -15.9183,-20.97"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7115" /><path
+               id="path3072" /><path
                d="m 431.871,7159.62 0,0 -30.262,-11.67 -24.007,-4.77 -94.141,-35.84 -18.949,1.44 -7.282,17.3 8.45,18.71 36.25,10.63 12.379,10.23 15.222,-1.25 90.117,13.69 11.293,8.18 9.188,6.4 99.449,14.19 -16.469,-20.74 -19.121,-5.64 -38.789,0.29 1.121,-3.86 1.102,-8.23 1.117,-3.98 -8.949,-4.22 -27.719,-0.86"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 431.871,7159.62 0,0 -30.262,-11.67 -24.007,-4.77 -94.141,-35.84 -18.949,1.44 -7.282,17.3 8.45,18.71 36.25,10.63 12.379,10.23 15.222,-1.25 90.117,13.69 11.293,8.18 9.188,6.4 99.449,14.19 -16.469,-20.74 -19.121,-5.64 -38.789,0.29 1.121,-3.86 1.102,-8.23 1.117,-3.98 -8.949,-4.22 -27.719,-0.86"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7117" /><path
+               id="path3074" /><path
                d="m 1389.51,7152.26 0,0 19.82,-92.4 3.39,-1.54 15.77,-12.02 1.15,-2.85 3.17,-2.51 3.15,-5.36 4.53,-5.3 20.72,-7.55 26.15,-15.98 11.88,3.58 5.61,-6.56 7.87,-2.29 7.91,1.97 5.95,6.14 4.54,-0.12 -0.2,-7.56 -5.43,-4.48 -2.84,-3.26 0.01,-4.87 3.12,-9.34 0.9,-18 19.95,-12.21 47.88,-13.69 7.51,-0.33 0.73,-31.31 0.24,-17.87 -2.51,-17.27 -5.04,-19.03 -10.09,-24.25 -1.89,-8.92 0.14,-13.32 2.38,-7.13 3.11,-5.89 2.24,-9.78 4.22,-79.79 -2.04,-39.84 -7.07,-35.31 -15.53,-36.87 -57.48,-85.55 -12.95,-33.5 -6.86,-37.03 -9.53,-119.89 -6.03,-39.06 -12.96,-23.46 -23.92,8.23 -10.09,4.6 -33.5,-4.02 -35.55,11.91 -64.22,0.91 -22.88,-6.34 -24.39,-16.57 5.29,-11.82 -1.64,-9.92 -3.38,-9.13 -0.08,-9.26 4.53,-7.31 21.61,-19.52 -38.23,-17.86 -11.24,-0.64 7.78,-17.71 1.74,-19.93 0.36,-19.63 3.61,-16.71 12.91,-16.06 17.63,-9.33 53.56,-9.27 34.72,-14.49 19.08,-3.7 17.88,0.67 17.14,4.51 6.5,5.8 4.42,7.35 4.34,1.89 39.53,-68.52 8.79,-28.86 -6.87,-40.38 -14.53,-31.41 -5.39,-16.65 -0.98,-20.36 5.41,-23.93 5.43,-10.7 -2.06,-5.67 -30.86,-17.67 -7.59,-8.39 -16.77,-25.63 -13.98,-11.74 -29.7,-12.03 -13.7,-13.55 -16.05,-30.46 -8.87,-7.65 -44.52,-3.65 -11.16,-5.81 -11.98,-11.74 -3.81,-6.21 -6.04,-13.99 -5.74,-6.8 -8.35,-3.88 -7.24,-0.29 -6.26,-2.73 -5.12,-11.43 0.88,-17 10.67,-8.08 14.89,-4.93 44.04,-26.5 17.16,-19.33 3.39,-5.48 1.48,-7.55 -1.05,-13.57 -3.58,-3.29 -5.28,-0.76 -5.8,-6 -16.57,-28.03 -16.58,-18.61 -18.94,-9.5 -60.96,-0.01 -69.27,-21.17 -34.75,-24.87 -11.57,-4.77 -14.02,0.49 -43.66,14.64 4.72,-25.28 -3.25,-10.99 -26.108,-6.28 -1.434,17.4 -10.937,6.93 -26.262,5 -2.988,3.94 -7.102,13.96 -4.73,4.95 -5.661,0.91 -21.668,-3.93 -22.902,10.46 -21.418,18.82 -21.769,11.35 -23.903,-11.77 8.282,-6.83 24.609,-28.02 8.68,-14.96 -10.989,3.2 -16.07,4.8 -22.109,6.87 -28.34,-6.43 -10.11,-4.88 -14.671,-10.02 -13.551,-5.14 -28.328,-3.82 -11.813,-7.65 -2.769,-9.81 15.171,-12.7 8.29,-21.9 -2.141,-22.41 -15.981,-14.62 -1.07,-11.92 6.731,-3.08 20.07,-0.37 7.769,-4.12 14.93,-12.33 6.57,-7.35 -10.57,-31.1 15.031,-20.87 45.993,-22.48 -9.071,-24.56 -4.351,-15.74 2.461,-13.76 43.609,-65.31 26.711,-33.43 3.551,-36.61 2.609,-20.3 -3.359,-21.91 -6.223,-23.44 -1.719,-20.44 10.02,-12.96 -4.399,-9.61 -3.089,-24.28 -4.274,-13.7 -7.289,-9.54 -18.18,-11.67 -7.55,-6.87 -38.329,-64.58 -15.421,-17.37 -7.629,-11.98 -6.879,-21.91 -3.012,-24.74 4.16,-20.73 16.031,-9.79 35.758,22.56 15.821,-6.14 -5.688,-3.03 -16.473,-12.45 14.133,-14.27 -10.941,-13.42 -40.692,-20.06 -66.808,-48.17 -9.852,-10.47 -14.636,-27.74 -9.024,-9.12 -12.949,-0.84 -8.988,8.95 -7.871,11.18 -9.481,5.87 -20.059,-9.51 2.872,-26.19 9.437,-32.43 -0.461,-28.07 9.66,1.55 18.582,8.26 9.621,2.3 9.668,-1.73 18.172,-6.85 25.297,2.02 1.211,-5.86 -4.66,-9.19 -3.059,-9.14 0.36,-16.07 1.461,-8.93 5.129,-6.13 16.14,-11.07 22.629,-8.9 -1.559,-4.43 -3.941,-5.88 -1.598,-7.31 5.047,-23.1 -0.566,-8.84 -4.75,-11.26 -8.231,-9.11 -15.812,2.02 -9.891,-5.12 -6.636,-10.9 0.257,-9.62 1.121,-10.29 -4.25,-13.06 -10.511,-9.07 -10.59,3.14 2.402,-14.37 5.008,-9.52 6.789,-5.17 4.32,-6.97 -2.117,-14.41 -8.769,-1.27 -5.551,-0.8 -51.102,3.79 -0.668,0.24 -14.871,5.42 -61.211,1.07 -7,5.37 -13.73,16.54 -2.699,1.16 -4.25,1.85 -6.481,-4.55 -1.25,-1.71 -10.558,-14.4 -4.25,-0.67 -3.18,-0.5 -2.43,0.6 -5.152,1.29 -5.641,3.58 -6.238,3.96 -0.621,0.39 5.25,15.66 3.18,9.52 0.57,4.1 1.25,8.94 -0.117,0.04 -9.75,3.39 -0.981,0.33 -0.172,0.1 -12.308,6.6 -2.403,1.29 -15.367,11.8 -9.07,14.88 -1.582,2.59 -0.129,8.02 -0.262,16.91 0,0.01 9.903,10.09 43.398,44.31 1.902,0.67 6.379,2.24 8.27,2.57 3.461,2.55 9.687,13.27 13.262,25.32 6.41,9.77 2.25,3.43 -6.648,4.38 -6.742,0.47 -15.622,-3.5 -0.238,-0.06 29.59,42.96 12.219,26.49 0.062,0.13 -8.922,13.35 1.371,8.74 0.942,5.92 1.566,4.14 2.453,6.47 5.879,3.29 7.871,-7.37 5.598,6.98 0.43,0.8 3.75,6.93 5.871,15.03 -0.442,1.14 -1.32,3.42 -0.93,3.44 -0.898,5.23 -0.488,2.89 7.629,-1.17 7.578,0.83 4.07,1.45 3.141,1.11 1.992,1.23 4.476,2.74 0.153,0.09 -15.172,17.75 2.793,12.6 4.508,4.11 5.699,5.18 0.043,0.03 -1.512,5.41 -5.601,14.43 -0.02,0 -8.449,1.04 -3.41,0.43 -10.989,-2.29 -10.711,-2.24 -0.98,0.91 -8,7.34 -13.699,20.81 -11.11,7.34 -3.98,0.61 -4.93,0.74 -13.019,-2.08 -16.492,-2.63 -12,0.42 -3.18,2.51 -4.149,3.27 -6.363,8.03 -4.449,3.45 -4.707,3.65 -39,13.78 -15.301,14.39 -1.051,25.38 -3.961,21.78 -2.531,3.67 -9.566,13.83 -8.133,5.7 -7.731,5.42 -14.976,2.45 -10.672,-4.53 -3.41,-1.44 -30.262,-19.23 -14.828,-4.66 -82.359,7.61 -26.653,-5.24 -12.09,3.76 0,0.05 1.68,39.55 -11.43,16.2 -9.949,1.52 -2.879,0.44 -27.05,-0.94 -10.961,6.85 -0.637,0.4 -0.07,0.05 -0.372,0.92 -2.628,6.52 -5.8208,24.91 -3.1601,9.84 -0.0625,0.07 -22.4688,27.75 -0.0507,0.14 -3.8282,10.9 2.3086,14.77 1.4297,9.16 8.711,17.37 3.4414,18.36 -7.8204,17.1 -4.4218,9.68 -20.0586,14.97 -0.5508,0.84 -1.25,1.91 -0.0312,-0.01 -10.8086,-2.17 -0.0704,-0.1 -4.4492,-6.36 -1.0195,-3.55 -1.9102,-6.66 -2.5898,-6.25 -2.9727,-7.16 -7.0898,-10.42 -4.7383,-6.96 -5.44921,-6.6 -11.76171,-14.23 -10.46098,-9.12 -8.0195,-7 -15.25,-3.3 -13.457,7.14 -12.7227,6.75 -6.6797,2.21 -5.9179,1.96 -48.5426,4.44 -14.34,7.22 -0.02,0.01 4.731,13.13 0.039,0 7.851,0.69 29.5003,-15.9 -1.7305,8.63 -2.1988,10.99 1.359,5.56 2.6914,11.09 1.8477,5.56 3.3711,10.13 -0.5508,16.86 -6.6294,9.83 -8.269,6.16 -2.91,2.18 -0.121,0.05 -6.899,3.1 -5.32,2.4 -0.102,0.01 -9.89,1.54 -23.559,-10.47 -57.57,-62.86 -0.039,-0.03 -7.461,-4.88 -9.539,-3 -9.379,-0.07 -1.442,-0.01 -0.058,0.02 -0.992,0.31 -20.809,6.61 -15.269,-1.86 -4.981,-0.6 -4.461,0.69 -4.691,0.73 -8.449,6.88 -4.25,3.46 0.968,5.31 0.992,5.47 6.731,13.48 0.519,4.65 1.551,13.87 -4.961,9.61 -8.648,2.15 -0.141,-0.02 -2.332,-0.23 -18.25,-1.88 -13.597,-4.08 -24.493,-7.33 -37.64,-18.93 7.812,-9.75 -1.929,-7.84 -5.071,-8.38 -0.261,-2.39 -0.961,-8.84 3.41,-7.4 1.351,-2.93 14.418,-19.59 0.012,-0.01 2.969,-9.33 0.582,-1.83 -3.512,-14.29 -1.141,-4.65 -13.679,-6.2 -5.59,0.71 -26.707,3.43 -5.481,2.27 -7.679,3.19 -16.723,10.54 -7.559,4.77 -19.789,1.96 -0.23,0.02 -2.383,3.38 -4.758,13.37 -0.922,13.64 1.114,11.44 -0.883,8.73 -6.707,5.46 -8.742,-10.07 -15.668,-3.59 -62.301,5.97 -14.121,5.73 -13.418,9.53 -36,35.9 -11.024,5.43 -28.789,4.97 -10.031,-5.42 -23.226,-37.48 -8.782,-11.07 -11.101,-4.91 -25.188,-0.97 -9.383,-5.08 -7.558,-0.71 -7.168,3.83 -17.672,21.54 -40.301,23.64 -25.308,28.12 -10.821,1.97 -29.492,-8.69 -15.687,0.49 -38.653,11.87 -11.976,7.65 -9.434,16.58 -7.918,18.44 -7.34,13.48 -21.34,21.8 -6.62,12.48 -1.35,18.21 8,9.55 74.51,38.68 187.23,6.54 15.219,-3.21 9.871,-6.75 10.512,-11.1 8.839,-14.38 5.379,-16.68 -7.441,-2.42 -12.367,-7.18 -4.953,-3.87 -0.489,-6.97 65.828,-11.51 32.793,-15.98 26.899,-26.84 8,-17.93 11.039,-39.33 9.402,-14.65 16.188,-5.93 36.429,2.63 13.321,-7.99 13.992,3.52 22.551,-2.51 21.539,4.38 10.961,24.75 -4.192,24.37 -13.242,18.94 -18.687,12.57 -30.871,7.68 -27.809,14.67 -10.539,1.59 -22.102,-1.15 -10.34,2.43 -15.941,11.08 -51.25,55.18 37.82,14.98 18.801,3.92 61.57,-7.24 17.79,-6.83 15.679,-15.02 -1.91,21.12 -8.18,8.96 -29.937,3.28 -7.172,3.33 -6.551,5.23 -5.058,7 -2.852,10 -1.277,12.92 0.699,12.67 2.699,9.22 9.59,9.22 12.32,4.17 23.629,0.48 -6.789,8.03 -16.648,13.6 -47.032,17.98 -8.921,15.29 -1.918,37.19 -9.969,23.81 -15.633,16.33 -18.648,14.82 -13.629,-8.9 -17.973,-4.2 -17.648,1.29 -13.731,-2.85 -2.879,-4.41 -4.91,-0.52 -6.601,0.75 -4.161,31.28 20.95,12.17 44.113,10.16 6.457,7.6 13.441,0.08 22.692,-6.81 18.429,-11.67 2.879,-0.77 5.16,0.22 7.329,2.68 8.812,6.64 -4.43,10.54 -15.921,25.4 -4.43,4.08 -3.531,4.77 -1.161,7.09 2.09,8.6 3.614,5.89 3.5,4.21 1.738,3.45 -1.121,17.16 -10.059,44.62 -6.39,19.1 4.48,8.15 5.191,7.08 31.418,-9.36 26.891,2.63 24.352,13.7 105.847,112.78 91.391,117.48 76.93,121.15 48.519,118.45 7.82,31.12 0.512,8.3 15.141,27.66 41.797,213.94 15.261,54.24 2.891,16.69 8.578,34.45 32.8321,72.25 8.6406,36.06 2.0586,20.54 4.2891,26.29 6.3594,22.62 8.3515,9.28 40.96095,-8.93 6.89844,6.11 4.51172,-8.56 -11.91016,-33.46 14.4375,-21.19 27.17185,-9.81 26.4297,0.24 15.7813,7.87 29.9294,23.15 14.239,4.39 27.058,2.07 26.871,10.19 141.403,113.88 10.5,11.26 13.058,9.7 31.231,5.71 14.078,8.22 15.082,26.8 22.109,74.92 15.281,33.34 24.868,26.3 14.972,12.02 25.117,9.52 11.704,12.13 11.187,14.58 12.652,11.87 13.789,4.18 32.051,3.84 24.199,19.09 108.532,38.19 24.668,16.22 15.242,0.49 45.707,21.13 64.211,0.55 130.789,-1.04 6.771,-2.67 11.35,-10.85 6.3,-2.65 5.84,1.68 17.4,12.7 99.91,25.39 157.38,19.12 65.31,-13.25 13.4,-6.68 10.97,-12.18"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 1389.51,7152.26 0,0 19.82,-92.4 3.39,-1.54 15.77,-12.02 1.15,-2.85 3.17,-2.51 3.15,-5.36 4.53,-5.3 20.72,-7.55 26.15,-15.98 11.88,3.58 5.61,-6.56 7.87,-2.29 7.91,1.97 5.95,6.14 4.54,-0.12 -0.2,-7.56 -5.43,-4.48 -2.84,-3.26 0.01,-4.87 3.12,-9.34 0.9,-18 19.95,-12.21 47.88,-13.69 7.51,-0.33 0.73,-31.31 0.24,-17.87 -2.51,-17.27 -5.04,-19.03 -10.09,-24.25 -1.89,-8.92 0.14,-13.32 2.38,-7.13 3.11,-5.89 2.24,-9.78 4.22,-79.79 -2.04,-39.84 -7.07,-35.31 -15.53,-36.87 -57.48,-85.55 -12.95,-33.5 -6.86,-37.03 -9.53,-119.89 -6.03,-39.06 -12.96,-23.46 -23.92,8.23 -10.09,4.6 -33.5,-4.02 -35.55,11.91 -64.22,0.91 -22.88,-6.34 -24.39,-16.57 5.29,-11.82 -1.64,-9.92 -3.38,-9.13 -0.08,-9.26 4.53,-7.31 21.61,-19.52 -38.23,-17.86 -11.24,-0.64 7.78,-17.71 1.74,-19.93 0.36,-19.63 3.61,-16.71 12.91,-16.06 17.63,-9.33 53.56,-9.27 34.72,-14.49 19.08,-3.7 17.88,0.67 17.14,4.51 6.5,5.8 4.42,7.35 4.34,1.89 39.53,-68.52 8.79,-28.86 -6.87,-40.38 -14.53,-31.41 -5.39,-16.65 -0.98,-20.36 5.41,-23.93 5.43,-10.7 -2.06,-5.67 -30.86,-17.67 -7.59,-8.39 -16.77,-25.63 -13.98,-11.74 -29.7,-12.03 -13.7,-13.55 -16.05,-30.46 -8.87,-7.65 -44.52,-3.65 -11.16,-5.81 -11.98,-11.74 -3.81,-6.21 -6.04,-13.99 -5.74,-6.8 -8.35,-3.88 -7.24,-0.29 -6.26,-2.73 -5.12,-11.43 0.88,-17 10.67,-8.08 14.89,-4.93 44.04,-26.5 17.16,-19.33 3.39,-5.48 1.48,-7.55 -1.05,-13.57 -3.58,-3.29 -5.28,-0.76 -5.8,-6 -16.57,-28.03 -16.58,-18.61 -18.94,-9.5 -60.96,-0.01 -69.27,-21.17 -34.75,-24.87 -11.57,-4.77 -14.02,0.49 -43.66,14.64 4.72,-25.28 -3.25,-10.99 -26.108,-6.28 -1.434,17.4 -10.937,6.93 -26.262,5 -2.988,3.94 -7.102,13.96 -4.73,4.95 -5.661,0.91 -21.668,-3.93 -22.902,10.46 -21.418,18.82 -21.769,11.35 -23.903,-11.77 8.282,-6.83 24.609,-28.02 8.68,-14.96 -10.989,3.2 -16.07,4.8 -22.109,6.87 -28.34,-6.43 -10.11,-4.88 -14.671,-10.02 -13.551,-5.14 -28.328,-3.82 -11.813,-7.65 -2.769,-9.81 15.171,-12.7 8.29,-21.9 -2.141,-22.41 -15.981,-14.62 -1.07,-11.92 6.731,-3.08 20.07,-0.37 7.769,-4.12 14.93,-12.33 6.57,-7.35 -10.57,-31.1 15.031,-20.87 45.993,-22.48 -9.071,-24.56 -4.351,-15.74 2.461,-13.76 43.609,-65.31 26.711,-33.43 3.551,-36.61 2.609,-20.3 -3.359,-21.91 -6.223,-23.44 -1.719,-20.44 10.02,-12.96 -4.399,-9.61 -3.089,-24.28 -4.274,-13.7 -7.289,-9.54 -18.18,-11.67 -7.55,-6.87 -38.329,-64.58 -15.421,-17.37 -7.629,-11.98 -6.879,-21.91 -3.012,-24.74 4.16,-20.73 16.031,-9.79 35.758,22.56 15.821,-6.14 -5.688,-3.03 -16.473,-12.45 14.133,-14.27 -10.941,-13.42 -40.692,-20.06 -66.808,-48.17 -9.852,-10.47 -14.636,-27.74 -9.024,-9.12 -12.949,-0.84 -8.988,8.95 -7.871,11.18 -9.481,5.87 -20.059,-9.51 2.872,-26.19 9.437,-32.43 -0.461,-28.07 9.66,1.55 18.582,8.26 9.621,2.3 9.668,-1.73 18.172,-6.85 25.297,2.02 1.211,-5.86 -4.66,-9.19 -3.059,-9.14 0.36,-16.07 1.461,-8.93 5.129,-6.13 16.14,-11.07 22.629,-8.9 -1.559,-4.43 -3.941,-5.88 -1.598,-7.31 5.047,-23.1 -0.566,-8.84 -4.75,-11.26 -8.231,-9.11 -15.812,2.02 -9.891,-5.12 -6.636,-10.9 0.257,-9.62 1.121,-10.29 -4.25,-13.06 -10.511,-9.07 -10.59,3.14 2.402,-14.37 5.008,-9.52 6.789,-5.17 4.32,-6.97 -2.117,-14.41 -8.769,-1.27 -5.551,-0.8 -51.102,3.79 -0.668,0.24 -14.871,5.42 -61.211,1.07 -7,5.37 -13.73,16.54 -2.699,1.16 -4.25,1.85 -6.481,-4.55 -1.25,-1.71 -10.558,-14.4 -4.25,-0.67 -3.18,-0.5 -2.43,0.6 -5.152,1.29 -5.641,3.58 -6.238,3.96 -0.621,0.39 5.25,15.66 3.18,9.52 0.57,4.1 1.25,8.94 -0.117,0.04 -9.75,3.39 -0.981,0.33 -0.172,0.1 -12.308,6.6 -2.403,1.29 -15.367,11.8 -9.07,14.88 -1.582,2.59 -0.129,8.02 -0.262,16.91 0,0.01 9.903,10.09 43.398,44.31 1.902,0.67 6.379,2.24 8.27,2.57 3.461,2.55 9.687,13.27 13.262,25.32 6.41,9.77 2.25,3.43 -6.648,4.38 -6.742,0.47 -15.622,-3.5 -0.238,-0.06 29.59,42.96 12.219,26.49 0.062,0.13 -8.922,13.35 1.371,8.74 0.942,5.92 1.566,4.14 2.453,6.47 5.879,3.29 7.871,-7.37 5.598,6.98 0.43,0.8 3.75,6.93 5.871,15.03 -0.442,1.14 -1.32,3.42 -0.93,3.44 -0.898,5.23 -0.488,2.89 7.629,-1.17 7.578,0.83 4.07,1.45 3.141,1.11 1.992,1.23 4.476,2.74 0.153,0.09 -15.172,17.75 2.793,12.6 4.508,4.11 5.699,5.18 0.043,0.03 -1.512,5.41 -5.601,14.43 -0.02,0 -8.449,1.04 -3.41,0.43 -10.989,-2.29 -10.711,-2.24 -0.98,0.91 -8,7.34 -13.699,20.81 -11.11,7.34 -3.98,0.61 -4.93,0.74 -13.019,-2.08 -16.492,-2.63 -12,0.42 -3.18,2.51 -4.149,3.27 -6.363,8.03 -4.449,3.45 -4.707,3.65 -39,13.78 -15.301,14.39 -1.051,25.38 -3.961,21.78 -2.531,3.67 -9.566,13.83 -8.133,5.7 -7.731,5.42 -14.976,2.45 -10.672,-4.53 -3.41,-1.44 -30.262,-19.23 -14.828,-4.66 -82.359,7.61 -26.653,-5.24 -12.09,3.76 0,0.05 1.68,39.55 -11.43,16.2 -9.949,1.52 -2.879,0.44 -27.05,-0.94 -10.961,6.85 -0.637,0.4 -0.07,0.05 -0.372,0.92 -2.628,6.52 -5.8208,24.91 -3.1601,9.84 -0.0625,0.07 -22.4688,27.75 -0.0507,0.14 -3.8282,10.9 2.3086,14.77 1.4297,9.16 8.711,17.37 3.4414,18.36 -7.8204,17.1 -4.4218,9.68 -20.0586,14.97 -0.5508,0.84 -1.25,1.91 -0.0312,-0.01 -10.8086,-2.17 -0.0704,-0.1 -4.4492,-6.36 -1.0195,-3.55 -1.9102,-6.66 -2.5898,-6.25 -2.9727,-7.16 -7.0898,-10.42 -4.7383,-6.96 -5.44921,-6.6 -11.76171,-14.23 -10.46098,-9.12 -8.0195,-7 -15.25,-3.3 -13.457,7.14 -12.7227,6.75 -6.6797,2.21 -5.9179,1.96 -48.5426,4.44 -14.34,7.22 -0.02,0.01 4.731,13.13 0.039,0 7.851,0.69 29.5003,-15.9 -1.7305,8.63 -2.1988,10.99 1.359,5.56 2.6914,11.09 1.8477,5.56 3.3711,10.13 -0.5508,16.86 -6.6294,9.83 -8.269,6.16 -2.91,2.18 -0.121,0.05 -6.899,3.1 -5.32,2.4 -0.102,0.01 -9.89,1.54 -23.559,-10.47 -57.57,-62.86 -0.039,-0.03 -7.461,-4.88 -9.539,-3 -9.379,-0.07 -1.442,-0.01 -0.058,0.02 -0.992,0.31 -20.809,6.61 -15.269,-1.86 -4.981,-0.6 -4.461,0.69 -4.691,0.73 -8.449,6.88 -4.25,3.46 0.968,5.31 0.992,5.47 6.731,13.48 0.519,4.65 1.551,13.87 -4.961,9.61 -8.648,2.15 -0.141,-0.02 -2.332,-0.23 -18.25,-1.88 -13.597,-4.08 -24.493,-7.33 -37.64,-18.93 7.812,-9.75 -1.929,-7.84 -5.071,-8.38 -0.261,-2.39 -0.961,-8.84 3.41,-7.4 1.351,-2.93 14.418,-19.59 0.012,-0.01 2.969,-9.33 0.582,-1.83 -3.512,-14.29 -1.141,-4.65 -13.679,-6.2 -5.59,0.71 -26.707,3.43 -5.481,2.27 -7.679,3.19 -16.723,10.54 -7.559,4.77 -19.789,1.96 -0.23,0.02 -2.383,3.38 -4.758,13.37 -0.922,13.64 1.114,11.44 -0.883,8.73 -6.707,5.46 -8.742,-10.07 -15.668,-3.59 -62.301,5.97 -14.121,5.73 -13.418,9.53 -36,35.9 -11.024,5.43 -28.789,4.97 -10.031,-5.42 -23.226,-37.48 -8.782,-11.07 -11.101,-4.91 -25.188,-0.97 -9.383,-5.08 -7.558,-0.71 -7.168,3.83 -17.672,21.54 -40.301,23.64 -25.308,28.12 -10.821,1.97 -29.492,-8.69 -15.687,0.49 -38.653,11.87 -11.976,7.65 -9.434,16.58 -7.918,18.44 -7.34,13.48 -21.34,21.8 -6.62,12.48 -1.35,18.21 8,9.55 74.51,38.68 187.23,6.54 15.219,-3.21 9.871,-6.75 10.512,-11.1 8.839,-14.38 5.379,-16.68 -7.441,-2.42 -12.367,-7.18 -4.953,-3.87 -0.489,-6.97 65.828,-11.51 32.793,-15.98 26.899,-26.84 8,-17.93 11.039,-39.33 9.402,-14.65 16.188,-5.93 36.429,2.63 13.321,-7.99 13.992,3.52 22.551,-2.51 21.539,4.38 10.961,24.75 -4.192,24.37 -13.242,18.94 -18.687,12.57 -30.871,7.68 -27.809,14.67 -10.539,1.59 -22.102,-1.15 -10.34,2.43 -15.941,11.08 -51.25,55.18 37.82,14.98 18.801,3.92 61.57,-7.24 17.79,-6.83 15.679,-15.02 -1.91,21.12 -8.18,8.96 -29.937,3.28 -7.172,3.33 -6.551,5.23 -5.058,7 -2.852,10 -1.277,12.92 0.699,12.67 2.699,9.22 9.59,9.22 12.32,4.17 23.629,0.48 -6.789,8.03 -16.648,13.6 -47.032,17.98 -8.921,15.29 -1.918,37.19 -9.969,23.81 -15.633,16.33 -18.648,14.82 -13.629,-8.9 -17.973,-4.2 -17.648,1.29 -13.731,-2.85 -2.879,-4.41 -4.91,-0.52 -6.601,0.75 -4.161,31.28 20.95,12.17 44.113,10.16 6.457,7.6 13.441,0.08 22.692,-6.81 18.429,-11.67 2.879,-0.77 5.16,0.22 7.329,2.68 8.812,6.64 -4.43,10.54 -15.921,25.4 -4.43,4.08 -3.531,4.77 -1.161,7.09 2.09,8.6 3.614,5.89 3.5,4.21 1.738,3.45 -1.121,17.16 -10.059,44.62 -6.39,19.1 4.48,8.15 5.191,7.08 31.418,-9.36 26.891,2.63 24.352,13.7 105.847,112.78 91.391,117.48 76.93,121.15 48.519,118.45 7.82,31.12 0.512,8.3 15.141,27.66 41.797,213.94 15.261,54.24 2.891,16.69 8.578,34.45 32.8321,72.25 8.6406,36.06 2.0586,20.54 4.2891,26.29 6.3594,22.62 8.3515,9.28 40.96095,-8.93 6.89844,6.11 4.51172,-8.56 -11.91016,-33.46 14.4375,-21.19 27.17185,-9.81 26.4297,0.24 15.7813,7.87 29.9294,23.15 14.239,4.39 27.058,2.07 26.871,10.19 141.403,113.88 10.5,11.26 13.058,9.7 31.231,5.71 14.078,8.22 15.082,26.8 22.109,74.92 15.281,33.34 24.868,26.3 14.972,12.02 25.117,9.52 11.704,12.13 11.187,14.58 12.652,11.87 13.789,4.18 32.051,3.84 24.199,19.09 108.532,38.19 24.668,16.22 15.242,0.49 45.707,21.13 64.211,0.55 130.789,-1.04 6.771,-2.67 11.35,-10.85 6.3,-2.65 5.84,1.68 17.4,12.7 99.91,25.39 157.38,19.12 65.31,-13.25 13.4,-6.68 10.97,-12.18"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7119" /><path
+               id="path3076" /><path
                d="m 758.57,7219.44 0,0 26.481,-15.35 -66.449,-12.38 -68.204,3.06 -17.289,-3.64 -32.597,-13.35 -16.692,4.87 -10.82,17.09 4.691,16.25 11.618,8.84 9.871,-4.89 159.39,-0.5"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 758.57,7219.44 0,0 26.481,-15.35 -66.449,-12.38 -68.204,3.06 -17.289,-3.64 -32.597,-13.35 -16.692,4.87 -10.82,17.09 4.691,16.25 11.618,8.84 9.871,-4.89 159.39,-0.5"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7121" /><path
+               id="path3078" /><path
                d="m 917.23,7207.2 0,0 -13.921,-16.37 -3.629,7.17 -0.059,3.52 4.328,5.17 -6.379,15.57 17.321,14.16 25.25,10.1 17.718,3.68 65.861,3.34 18.28,-6.56 -0.28,-7.58 -9.05,0.33 -115.44,-32.53"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 917.23,7207.2 0,0 -13.921,-16.37 -3.629,7.17 -0.059,3.52 4.328,5.17 -6.379,15.57 17.321,14.16 25.25,10.1 17.718,3.68 65.861,3.34 18.28,-6.56 -0.28,-7.58 -9.05,0.33 -115.44,-32.53"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7123" /><path
+               id="path3080" /><path
                d="m 1121.05,7299 0,0 35.91,-17.45 -2.94,0.22 -2.51,-1.23 -2.15,-2.75 -1.8,-4.19 -23.34,8.82 -11.44,7.78 -0.97,7.46 9.24,1.34"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 1121.05,7299 0,0 35.91,-17.45 -2.94,0.22 -2.51,-1.23 -2.15,-2.75 -1.8,-4.19 -23.34,8.82 -11.44,7.78 -0.97,7.46 9.24,1.34"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7125" /><path
+               id="path3082" /><path
                d="m -1720.4,4694.64 0,0 2.22,-40.8 0.49,-8.83 5.06,-22.05 22.52,-29.87 0.11,-0.16 9.57,-17.6 0.33,-22.29 -1.89,-2.52 -2.83,-3.78 -11.13,-9.35 -6.45,-5.42 -4.95,-9.8 4.89,-25.43 4.72,-24.51 -1.43,-7.16 -6.52,-11.87 -0.6,-2.58 -0.56,-2.4 -0.01,-0.06 0.45,-0.93 1.47,-3.05 5.99,-3.76 2.14,-1.35 1.3,-1.75 1.58,-2.14 2.56,-7.77 2.25,-6.81 3.16,-6.64 0.85,-0.47 4.12,-2.27 10.14,-3.07 5.72,-0.73 13.25,0.71 4.93,-0.98 1.7,-0.34 8.81,-5.67 2.93,-6.54 0.09,-0.2 1.53,-7.66 0.01,-0.04 3.94,-8.72 21.35,-24.24 2.71,-3.07 3.39,-7.69 7.56,-23.24 1.93,-4.4 1.21,-2.75 8.52,-8.48 3.6,-3.58 6.83,-3.86 47.35,-26.68 0.99,-0.56 2.16,-1.21 1.33,-0.41 6.44,-1.94 3.04,-0.92 9.93,6.4 14.07,20.34 10.17,14.71 7.12,6.51 6.84,6.26 7.93,4.1 9.14,4.73 31,7.03 7.48,1.69 22.01,5.01 34.76,7.92 3.67,-1.45 14.16,-5.58 11.04,-12.26 8.84,-19.37 2.83,-6.19 6.75,-14.77 7.01,-21.81 5.1,-6.99 9.8,-2.15 0.04,-0.02 9.2,-3.82 0.48,-1.08 4.33,-9.64 3.59,-16.34 2.37,-10.75 -5.45,-8.57 -5.85,-9.2 3.18,-32.59 13.85,-63.97 -1.65,-35.51 2.68,-12.91 1.24,-1.89 8.78,-13.27 8.73,-8.06 29.74,-18.51 12.11,-4.45 10.76,0.47 6.61,0.29 6.89,1.94 25.02,7.03 7.42,4.88 2.72,1.8 4.85,4.19 2.71,2.35 1.45,0.8 6.16,3.42 3.18,0.01 6.98,0.04 6.97,-2.71 2.97,-1.15 4.18,-6.14 -1.76,-8.88 -0.65,-0.99 -7.15,-10.84 0.07,-0.06 8.23,-7.14 2.72,-0.22 43.04,-3.45 15.8,-4.56 14.97,-8.88 13.09,-14.52 9.991,-21.79 2.91,-43.38 -3.66,-51.84 2.98,-45.87 23.321,-25.21 3.308,6.97 1.059,0.55 0.012,0.01 1.097,-1.12 3.403,2.01 1.347,2.01 0.801,1.19 0.949,2.28 2.801,6.74 14.332,20.85 6.199,6.14 5.578,1.63 4.301,1.25 31.172,0.17 29.289,-5.68 14.18,-8.48 5.039,-4.08 6.57,-5.32 9.379,-5.32 2.91,-1.64 6.461,-0.38 9.66,-0.56 15.77,5.42 30.73,10.57 8.481,0.33 6.691,0.26 12.77,-7.19 0.597,-0.34 21.852,-27.76 5.238,-3.52 9.332,-6.27 13.84,-14.12 0.02,-0.05 3.941,-10.17 12.789,-32.92 4.18,-2.31 8.519,-4.7 3.532,3.06 1.988,1.73 0.051,0.04 -0.18,3.58 -0.211,4.12 0.84,7.09 0.07,0.03 9.063,3.18 0.019,0 6.25,-2.71 3.36,-2.43 5.82,-4.22 8.328,-8.33 3.883,-7.51 -1.203,-5.67 -1.239,-5.82 -6.332,-6.39 -1.187,-1.2 -17.652,-12.06 -8.289,-10.36 -0.34,-0.78 -3.5,-8.08 -5.149,-19.96 -6.191,-16.26 -10.442,-27.4 -0.519,-3.47 -2.488,-16.52 5.488,-3.24 4.293,-2.53 14.668,5.56 7.762,0.71 6.847,-4.08 8.942,-48.72 1.531,-4.53 2.09,-6.2 4.379,-9.16 -0.211,-2.18 -0.481,-5.05 0,-0.05 -7.801,-3.28 -9.91,-4.17 -5.136,-3.19 -12.192,-7.57 -5.558,-4.55 -8.321,-6.83 -5.601,-6.03 -0.11,-0.22 -0.48,-0.94 -3.578,-6.93 -3.813,-12.9 0.012,-0.01 0.168,-0.08 3.133,-1.57 1.398,-8.56 1.418,-8.69 -0.066,-6.01 -0.114,-10.33 0,-0.03 -5.269,0.83 -0.399,0.06 38.75,-24.25 1.84,-0.66 7.61,-2.72 34.441,2.75 20.899,1.68 18.218,-6.26 92.793,-31.77 21.508,2.44 77.152,32.65 25.77,10.93 30.117,3.02 2.512,1.45 5.558,3.21 6.172,10.36 1.16,1.95 6.059,17.33 5.031,23.52 2.5,11.66 -0.16,4.03 -0.14,3.65 -1.348,3.3 -0.992,2.42 -0.352,1.8 -0.957,4.96 2.559,10.86 4.64,8.49 80.629,72.82 19.762,7.76 0.109,-0.76 2.211,-15.96 7.848,-3.84 22.633,3.41 6.09,-9.04 -1.5,-14.25 -0.543,-5.17 -5.118,-22.76 -1.113,-8.01 -1.59,-11.37 -0.148,0.19 -7.07,8.63 -4.418,-0.79 -0.141,-0.28 -10.723,-20.45 -4.238,-8.1 -0.012,-0.08 -0.379,-2.75 -0.988,-7.17 0.59,-9.31 -1.082,-9.63 -0.25,-2.22 -0.027,-0.07 -8.954,-19.15 -22.41,-47.87 -4.109,-17.57 8.652,-16.04 0.028,-0.06 13.73,-6.56 19.441,-9.29 0.04,-0.08 0.16,-0.32 9.871,-20.67 0.25,-7.9 0.211,-6.64 -2.391,-9.49 -2.18,-4.77 -1.972,-4.33 -3.438,-9.99 -1.179,-3.41 -2.161,-4.55 -0.531,-1.12 -6.801,-7.11 -1.718,-6.7 1.179,-5.65 6.41,-12.05 0.051,-0.26 1.36,-6.44 -1.313,-22.19 -1.137,-19.39 5.911,-8.67 0.089,-0.13 7.289,-1.45 11.379,-2.28 4.211,0.44 12.071,1.26 17.418,5.1 14.41,4.23 7.793,-0.04 7.3396,-0.03 1.3672,-0.86 11.25,-7.08 25.371,-27.9 13.9297,-8.91 19.5313,-6.77 5.75,-1.99 0,0 0.0195,-0.02 8.10939,-8.64 11.99219,-19.45 16.38672,-26.59 6.8633,-7.36 L 31,3045 l 12.6211,-10.43 16.3672,-5.73 21.3125,4.79 11.7109,2.64 6.7774,-0.16 8.7419,-0.21 0.078,-0.01 14.313,-15.68 13.09,-17.8 4.179,-16.9 -2.113,-2.35 -1.367,-1.51 -5.063,-2.91 -0.82,-0.47 -0.117,-0.07 -3.02,-15.62 0.598,-5.12 0.609,-5.12 0,-0.07 3.301,-4.54 0.071,-0.02 11.832,-2.92 3.789,0.98 1.437,0.37 4.082,5.44 3.36,5.94 2.82,2.85 0.012,0.01 0.199,-0.05 4.238,-0.92 4.422,-2.96 3.551,-2.38 21.988,-9.29 12.859,-12.71 31.813,-64.66 2.508,-10.31 -0.309,-5.2 -0.383,-6.39 -2.816,-10.34 -1.211,-9.91 0.867,-2.18 3.152,-7.91 15.442,-4.86 4.558,2.38 14.731,7.71 9.738,6.96 9.102,6.5 4.121,1.62 9.769,3.84 22.18,-11.6 6.129,-1.95 5.988,0.53 4.774,0.42 1.968,3.32 0.629,1.05 1.981,7.81 0.019,0.1 9.129,11.39 18.434,8.38 0.078,-0.02 16.051,-4.43 15.211,-8.39 15.508,-3.38 0.039,0.01 0.812,0.31 8.289,3.19 9.879,11.94 7.949,3.8 7.731,-1.48 15.422,-10.45 0.078,-0.02 0.531,-0.15 7.75,-2.26 21.449,-31.23 12.141,-12.36 17.832,-9.32 45.5,-12.87 13.058,-14.28 8.68,-32.22 12.75,3.68 61.942,1.29 10.789,3.55 7.449,10.41 8.89,3 1.879,5.91 0.2,7.12 4.082,6.64 5.238,1.86 20.5,1.12 -4.32,10.4 41.769,3.03 20.5,-2.94 19.543,-8.66 34.809,-28.06 18.871,-11.26 14.469,-2 6.121,-0.91 7.769,1.22 14.11,9 5.992,2.09 7.957,-1.65 65.39,-35.51 12.041,-12.42 4.19,-9.4 1.65,-9.25 -0.06,-6.21 -1.44,-0.41 4.78,-7.58 34.04,-38.59 2.26,-6.75 -3.44,-8.86 -12.93,-0.21 -4.3,-10.04 4.16,-13.07 11.69,-15.16 46.87,-48.17 0.98,-4.75 -1.85,-11.21 0.69,-4.51 3.81,-3.16 9.97,-3.93 2.98,-3.32 5.08,-20.79 2.19,-4.73 0.75,-2.49 1.17,-8.78 1.83,-4.02 3.25,0.24 9.98,6.14 2.94,-0.03 4.05,-17.78 -4.11,-13.96 -2.45,-13.55 8.87,-15.85 8.48,-3.94 32.47,-1.25 28.1,-11.34 9.33,1.86 13.06,16.35 -2.26,18.52 -4.98,18.14 4.66,15.33 7.35,1.57 30.22,-7.81 21.28,1.48 8.02,-1.43 44.79,-26.96 15.71,-1.22 -1.4,-39.22 7.64,-30.73 15.74,-13.05 22.76,13.56 1.27,5.6 -2.19,5.86 -0.45,6.16 6.8,6.38 3.99,-0.62 27.38,-20.97 11.32,-6.26 11.36,-4.19 62.89,-2.07 19.4,-9.64 4.58,-0.8 4.4,4.33 8.05,15.51 4.72,5.47 6.54,2.09 14.97,1.57 5.56,2.46 3.83,6.06 5.63,16.03 3.51,5.44 12.28,6.63 17.21,4.81 14.14,-1.51 2.9,-12.47 31.45,-2.78 13.09,-5.09 4.5,-16.18 -5.49,-3.4 -1.86,-2.49 -1.36,-3.65 10.04,-10.89 15.99,-27.16 9.34,-12.3 15.73,-10.42 31.83,-6.18 16.07,-8.74 5.24,-6.77 6.84,-14.54 6.69,-5.93 10.08,-2.48 8.8,2.09 8.6,3.52 9.25,1.8 8.06,-1.52 15.39,-5.78 7,-1.15 8.96,2.15 17.3,9.08 8.11,2.05 60.53,-18.59 41.69,3.76 13.19,-1.68 115.14,-63.38 71.76,-15.75 8.39,-8.08 -15.55,-17.47 -23.34,-43.06 -34.33,-91.24 -9.29,-15.23 -4.52,-3.8 -27.12,-14.14 -6.46,-0.21 -1.63,-2.73 -3.45,-3.23 -3.5,-5.88 -1.72,-10.43 -1.68,-6.13 -4.22,-3.56 -5.65,-1.88 -20.66,-0.08 -8.39,-2.64 -4.01,-9.89 -1.2,-21.18 -3.39,-8.74 -8.05,-10.46 -9.87,-9.35 -8.82,-5.56 -20.5,-23.84 -11.41,-9.6 -12.23,-3.78 -8.69,-5.96 -31.81,-48.07 -6.82,-36.2 -0.68,-38.66 8.33,-23.74 -0.12,-7.64 -18.7,-14.3 -9,-8.93 -3.98,-10.02 -1.87,-21.15 -3.91,-10.73 -4.93,-7.11 -5.3,-10.45 -3.95,-12.61 -5.91,-29.26 -1.08,-14.57 2.15,-13.43 4.59,-14.26 3.51,-14.88 -1.17,-15.52 -10.46,-16.18 -13.76,-7.18 -12.12,-9.59 -5.53,-23.27 -1.91,-22.54 -5,-18.76 -8.11,-16.01 -48.15,-64.96 -5.16,-13.5 -1.75,-16 -3.93,-8.66 -5.2,-6.62 -5.56,-9.84 -5.31,-16.85 -5.1,-21.6 1.46,-45.9 31.18,-57.33 1,-34.72 -7.34,-13.26 -20.29,-20.74 -4.29,-14.78 0.59,-18.078 -1.48,-4.942 -4.91,-11.05 -3.12,-5.43 -5.03,-4.711 -2.33,-4.777 -0.94,-4.641 0.33,-2.82 0.57,-2.821 -0.25,-4.941 3.48,-20.75 -1.85,-12.398 -10.24,-5.352 -4.27,-5.269 -11.36,-35.809 -2.31,-15.379 8.56,-39.082 -0.73,-18.148 -4.56,-7.262 -12.65,-12.981 -2.77,-6.609 1.64,-23.961 2.17,-12.019 2.85,-5.168 10.99,-6.012 9.9,-14.371 16.29,-34.137 4.4,-5.723 4.74,-4.277 3.86,-5.871 1.44,-10.621 -1.86,-3.961 -3.32,-11.258 -1.8,-0.539 1.63,-0.203 -26.83,-8.93 -18.22,-9.711 -33.33,-26.25 1.77,-0.777 12.34,-9.832 2.57,0.012 0.02,-11.121 -3.39,-6.278 -6.11,-1.902 -7.75,1.82 -4.4,-2.269 -1.08,-3.481 1.54,-4.512 5.23,-7.66 0.72,-2.797 -0.14,-2.902 -1.07,-3.141 -1.36,-1.839 -11.73,-10.168 -9.7,1.629 -9.68,6.46 -11.6,4.309 -8.85,-2.41 -0.06,-6.828 3.67,-6.942 2.44,-2.75 3.56,-5.269 1.12,-6.289 -2.63,-10.34 -15.28,-19.172 -21.14,-8.008 -52.32,3.36 -20.05,-3.762 -28.8,-11.77 -5.09,-0.918 -5.79,2.61 -2.95,4.09 -2.01,4.039 -3.07,2.558 -21.97,7.461 -16.13,10.211 -3.86,18.25 14.45,31.199 -20.53,-1.578 -10,1.848 -9.67,5.891 -17.66,4.128 -37.69,-5.617 -19.46,3.34 -6.72,5.43 -6.81,1.918 -6.81,-1.571 -6.83,-5.089 -14.13,-3.911 1.55,-12.418 7.39,-15.57 3.32,-13.328 -5.93,-9.211 -11.47,-9.269 -12.42,-6.75 -19.92,-3.891 -1.73,-20.93 -19.72,-10.91 -11.55,-14.281 -9.84,-17.121 -4.13,-14.11 90.06,6.45 14.07,6.332 11,-9.442 11.06,-10.57 7.6,-11.481 -6.17,-12.058 -7.22,-4.36 -7.78,-1.929 -8.01,-4.422 -11.4,-14.617 -4.1,-1.5 -6.9,-0.68 -14.6,-14.281 -5.44,-22.672 2.32,-27.641 -52.4,-36.328 -22.61,-22.058 -15.07,-23.372 -50.96,-44.55 -22.96,-7.27 0.39,-19.039 -11.06,-5.312 -2.88,-1.868 -3.03,-6.98 -19.26,-6.2813 -7.35,-6.8203 -10.72,-17.3594 8.49,-20.8789 -18.09,-24.5508 -51.889,-37.08202 -82.633,-23.15628 -37.57,-20.1718 -12.609,-38.6211 2.82,-10.1481 9.531,-19.692 2.039,-12.359 -1.757,-15.348 -4.602,-10.492 -5.602,-9.379 -13.16,-35.762 -1.277,-5.359 1.918,-6.328 3.84,-5.582 5.48,-6.449 -0.301,-18.762 -3.218,-9.117 -8.961,-10.512 -8.25,-5.738 -25.789,-12.59 -20.899,-22.031 -7.801,-6.153 -55.789,-28.179 -106.25,-90.508 -10.793,-13.121 1.84,-14.719 17.793,-21.41 -28.351,-33.231 -28.41,-44.84 -9.079,-9.089 -3.269,-6.661 -0.211,-5.679 1.469,-5.289 1.66,-4.66 0.43,-3.442 -0.321,-8.469 1.313,-7.582 -1.703,-7.269 -9.129,-8.11 40.519,-26.988 10.84,-12.59 8.77,-17.16 0.589,-12.332 -26.918,-54.781 -2.871,-8.578 -6.64,-31.262 -0.84,-11.988 0.34,-10.301 -3.617,-7.289 -17.161,-4.652 -4.492,-0.348 -4.597,0.738 -5.981,2.18 -1.43,0.172 -1.281,-0.071 -1.289,-0.351 -47.07,-20.879 -19.27,-11.23 -3.383,-13.27 7.473,-15.52 12.988,-17.628 -2.757,-9.442 -6.332,-10.969 -11.219,-23.722 19.027,10.371 35.352,7 35.25,0.07 25.832,-12.672 25.527,11.953 41.051,44.7 50.5,30.941 20.648,20.387 -3.109,25.742 -5.328,2.539 -13.11,-5.469 -7.902,4.469 -3.098,4.832 -6.761,18.629 -0.239,4.488 -6.429,19.141 -2.793,11.191 4.672,15.008 17,21.481 22.937,28.21 25.703,20.762 23.938,6.86 25.301,0.328 25.152,5.55 66.969,42.782 49.507,8.207 51.141,-3.199 113.571,-32.95 11.43,-6.07 6.84,-11.219 1.08,-21.121 -6.01,-18.449 -20.94,-23.199 -4.5,-12.723 14,-25.789 26.49,-29.73 16.68,-30.629 -28.79,-52.352 -14.51,-39.418 -8.17,-37.871 6.18,-18.852 61.11,-15.238 11.51,-11.738 -1.03,-8.481 -5.66,-8.351 -6.44,-7.41 -3.67,-5.65 2.19,1.04 1.06,-11.06 -0.07,-11.61 -1.15,-1.06 0.09,-8.62 -1.73,-4.61 0.39,-3.46 6.66,-5.35 7.32,-1.23 6.04,4.32 5.67,5.54 6.55,2.47 17.38,-8.22 50.87,-60.48 3.7,-2.62 2.5,-11.9 8.31,-23.31 4.94,-20.46 3.89,-11.3 5.14,-9.09 -11.27,-5 -8.43,-10.02 -6.59,-13.22 -5.27,-14.86 -11.04,-17.53 -15.98,-12.86 -17.8,-8.5 -16.66,-4.45 -19.18,0.68 -5.39,-0.66 -2.88,0.53 -6.15,4.25 -2.96,0.48 -3.69,-2.89 -3.51,-5.08 -2.38,-4.7 -0.05,-1.95 -23.2,-2.65 -12.16,-6.85 -10.33,-16.09 -4.68,-18.14 -1.11,-19.79 1.53,-19.92 7.5,-46.29 15.03,-24.08 20.58,-16.25 20.26,-4.68 10.28,-4.18 17.24,-18.03 10.18,-8.19 25.13,-7.09 9.41,-6.96 4.33,-16.65 -2.01,-6.27 -9.44,-19.29 -2.33,-9.19 1.3,-9 8.21,-13.3 2.86,-8.35 3.11,-46.04 5.49,-16.28 35.19,-20.86 33.38,-26.49 7.39,-12.35 5.08,-13.97 6.01,-12.61 10.24,-8.17 33.14,-15.41 5.96,-4.79 -1.13,-13.82 -7.34,-16.78 -16.86,-28.67 -26.05,-29.66 -4.21,-6.45 3.21,-32.3 7.91,-22.47 -0.41,-17.46 -21.76,-17.4 -15.58,-26.92 -5.4,-5.27 -4.1,1.6 -9.53,12.18 -6.18,2.85 -27.86,-6.96 -28.4,-12.09 -10.39,-9.45 -14.25,-23.53 -11.8,-10.15 -7.19,-1.54 -18.37,0.25 -6.24,-2.59 -4.39,-9.31 3.49,-6.12 4.42,-5.23 -1.72,-6.85 -25.93,-11.67 -28.01,10.75 -28.42,16.41 -27.41,5.41 -6.01,-2.87 -14.45,-10.57 -6.94,-3.71 -6.199,-0.86 -14.211,0.93 -7.02,-1.06 -27.718,-14.88 -14.582,-11.52 -9.719,-12.3 13.199,-21.53 12.488,-11.46 0.992,-7.84 -1.16,-8.87 1.828,-10.11 8.961,-16.64 8.102,-7.36 27.527,-3.37 20.252,-15.63 4.16,-32 -3.29,-62.13 13.14,-23.63 25.25,-23.1 53.59,-33.21 14.85,-4.19 39.15,6.8 13.69,-1.5 39.2,-17.3 13.83,-15.91 3.13,-5.65 1.55,-6.58 -0.33,-3.38 -0.81,-2.97 -0.04,-5.34 -1.5,-0.77 -4.35,-17.41 -0.61,-1.42 8.41,-24.27 3.58,-27.55 2.8,-9.54 22.96,-46.1 4.24,-14.58 -14.17,0.05 -28.38,9.19 -14.58,0.25 -18.43,-9.54 -15.03,-17.6 -6.23,-22.41 8.34,-23.82 -11.28,-8.05 -28.44,-46.54 -41.27,-30 -8.86,-14.7 1.55,-34.62 17.02,-31.58 23.51,-26.12 20.36,-17.92 -27.11,-14.07 -5.85,-9.44 -7.57,-34.5 -2.15,-6.6 -0.31,-5.63 2.7,-10.29 3.17,-5.14 17.01,-21.06 5.98,-11.06 8.82,-22.8 4.24,-8.49 6.98,-7.71 15.55,-11.82 7.12,-8.79 4.77,-11.03 2.38,-10.45 3.39,-9.79 7.3,-8.74 10.54,-4.62 9.53,1.31 9.65,2.99 10.75,0.66 9.99,-3.17 46.39,-26.13 31.76,-12.44 83.86,-54.27 14.91,-6.69 20.75,-3.93 10.41,-4.29 5.38,-8.21 4.11,-9.33 7.37,-7.5 7.65,-1.93 32.16,-1.45 139.87,37.53 23.09,1.44 33.25,20.96 24.63,-4.88 -11.59,-35.93 9.42,-20.82 17.41,-18.02 12.14,-27.24 -1.88,-19.2 -9.13,-11.8 -11.73,-8.71 -8.94,-9.73 -5.35,-13.46 -7.04,-24.8 -6.43,-12.7 -18.23,-19.61 -42.07,-34.3 -16.63,-25.6 -35.46,-37.75 -12.96,-22.78 3.38,-28.17 15.15,-53.84 -10.7,-7.39 -3.41,0.04 -3.4,0.55 -3.27,-1.44 -0.74,-4.06 0.91,-14.14 -0.57,-3.81 -6.63,-3.12 -4.66,0.4 -5.37,1.91 -8.38,1.28 -7.89,-3.21 -5.64,-8.1 -17.94,10.87 -15.76,-5.92 -12.24,-13.17 -2.37,-14.56 -13.38,-3.07 -7.88,-10.78 -1.19,-13.59 -3.71,-10.51 -15.45,-1.79 2.08,4.01 3.63,10.37 -39.33,-4.27 -7.63,1.74 -10.97,4.76 -9.67,-8 -15.99,-22.86 -7.63,-6.15 -7.69,-4.66 -9.06,-2.82 -11.77,-0.78 -13.19,-4.41 -8.56,-10.23 -6.24,-10.32 -6.19,-4.6 -3.1,-8.08 -1.01,-52.52 -1.12,-8.62 0.29,-5.8 -0.69,-4.55 -4.02,-4.33 -7.31,-1.96 -3.04,5.78 -1.33,7.73 -2.25,3.87 -21.66,-5.22 -20.95,-10.34 -19.93,-5.88 -18.26,8.22 -13.36,-10.22 -13.29,-7.26 -12.52,-9.71 -11.04,-17.16 1.59,-0.27 -1.45,-18.17 -0.6,-0.53 -1.41,-2.95 -30.61,-50.23 -1.98,-2.19 -3.11,-0.62 -6.02,0.16 -2.34,-3.13 -2.14,-15.05 -4.14,-5.06 -4.63,-0.81 -5.6,0.35 -4.81,1.73 -1.92,3.29 -2.11,6.03 -4.81,-4.93 -4.23,-8.25 -0.28,-4.24 -41.71,-0.87 -20.27,5.74 -15.469,13.05 -10.77,-11.17 -9.312,-19.07 -6.57,-20.1 -6.93,-32.83 -9.57,-6.63 -12.61,-4.22 -13.469,-11.06 -7.359,-14.35 -4.191,-12 -7.77,-7.97 -17.898,-2.57 -21.953,-10.83 -12.618,-9.83 -2.031,-9.31 4.809,-1.86 78.312,1.64 1.5,-6.25 -7.812,-18.48 -3.668,-5.24 -3.27,-2.58 -2.722,-4.28 -2.047,-10.37 1.25,-6.44 3.629,-5.24 3.918,-4.16 1.75,-3.35 -5.399,-7.03 -34.301,-26.03 4.993,-15.37 -9.09,-1.95 -15.922,-6.7 -8.43,2.05 -3.121,5.49 -1.508,8.77 -3.351,9.32 -8.2,7.22 -21.179,2.68 -15.731,-8.93 -12.992,-12.97 -12.629,-9.28 -9.379,-1.29 -19.84,2.8 -9.601,-0.34 -17.328,-5.87 -16.403,-8.23 -25.769,-1.12 -7.738,-5.5 -7.172,-13.83 -0.688,-8.68 0.117,-6.84 -4.628,-8.15 11.468,-18 -7.347,-6.03 -29.571,1.97 -2.539,4.88 -1.351,10.47 -3.539,10.54 -8.5,5.04 -9.039,1.5 -12.032,5.56 -6.519,1.41 -55.25,3.52 -9.051,-1.39 -18.461,-10.82 -6.07,-15.22 -2.93,-19.12 -8.68,-22.63 10.243,-6.18 5.226,-2.13 6.91,-0.09 -0.226,-6.88 -14.102,-3.32 -54.269,2.52 -15.039,3.65 0.238,6.89 28.621,-0.62 4.418,3.35 5.512,18.26 0.3,11.31 -7.062,5.24 -58.758,5.44 -5.25,3.77 -15.012,11.4 -23.5,6.7 -25.078,0.39 -19.972,-7.23 2.261,6.52 1.828,10.65 2.383,5.38 -13.519,0.84 -12.91,-2.98 -24.153,-11.14 13.41,-6.07 16.52,-20.24 13.332,-6.38 -0.281,-7.58 -25.641,5.95 -13.039,0.54 -5.871,-8.32 -3.93,-15.11 -8.277,-4.98 -18.813,1.89 -38.898,18.6 -7.77,6.02 -4.132,15.3 6.613,9.81 26.75,12.45 -4.723,4.35 -5.379,2.47 -14.59,1.68 -7.261,3.7 -1.27,15.31 -7.258,3.7 -18.171,2.57 -15.598,5.73 -29.582,18.32 5.558,19.3 -15.277,9.08 -41.8398,3.4 -2.7031,-2.3 -1.8984,-5.19 -2.5586,-5.1 -4.8828,-2.16 -5.4102,1.4 -4.2695,2.76 -4.0391,3.96 -10.8203,4.87 -6.2304,6.09 -18.78911,27.77 -6.89844,3.99 -14.47265,-10.29 -10.6484,-5.28 -10.1016,-2.16 -4.2305,5.43 -8.2773,7.17 -19.5313,3.41 -20.789,-0.44 -12.7105,-4.11 -10.75,6.24 -23.661,-0.5 -10.148,4.44 -5.633,11.57 3.012,11.2 6.359,11.05 7.59,17.9 2.242,7.09 1.028,8.29 -2.309,-0.96 -5.289,3.82 -5.43,6.39 -2.992,6.66 2.512,57.48 -22.09,16.73 -109.172,-19.89 -35.449,6.9 -11.949,-4.14 -51.321,1.48 -19.75,6.55 -20.379,23.37 -2.992,25.32 12.211,21.96 25.781,12.96 72.118,-3.38 22.66,5.89 16.051,11.77 17.492,19.59 11.59,24.49 -1.653,26.42 -24.277,-14.48 -23.121,-7.28 -20.563,4.61 -16.269,21.03 -4.969,17.35 -0.051,9.49 -3.91,5.91 -16.437,6.47 -6.141,1.15 -19.16,0.04 -3.172,3.81 -10.848,16.42 -4.769,3.42 -5.864,-6.88 -5.886,-14.59 -4.653,-15.02 -1.82,-8.2 3.34,-21.22 6.832,-9.56 9.609,-5.81 11.231,-10.48 8.379,-28.3 -10.129,-24.37 -19.731,-12.73 -20.148,6.55 -15.91,-4.81 -43.012,27.8 -20.879,-8.41 -9.043,-6.57 -19.969,-3.39 -8.121,-6.5 -7.379,-14.97 3.481,-6.04 7.609,-7.28 5.051,-18.43 -31.031,10.81 -32.699,20.74 -26.129,27.26 -10.969,29.91 5.418,65.01 -1.121,19.08 -4.149,16.98 -7.359,19.61 -10.512,16.97 -13.418,9.07 -0.359,-6.92 22.066,-39.5 2.903,-11.86 -4.09,-79.64 9.289,-37.94 20.68,-24.08 23.8,-18.78 18.52,-22.4 -29.211,-9.86 -118.738,11.69 -32.52,10.92 -21.441,12.24 2.519,7.87 8.301,18.73 7.328,22.66 -0.308,19.62 -20.418,18.09 -35.153,9.23 -249.799,22.21 -19.4,5.38 -16.71,9.7 -5.62,7.21 -3.87,9.93 -12.43,59.82 -1.11,3.93 -19.85,18.53 -46.46,7.6 -49.22,-2.29 -28.08,-11.14 11.43,12.96 18.3,4.68 38.26,1.1 18.96,3.42 13.83,5.83 10.49,10.15 8.66,16.25 -45.52,-3.89 -24.43,-6.74 -37.89,-24.13 -51.11,-12.29 -22.68,-11.8 -55.28,-40.85 -6.6,-10.19 -3.24,-16.91 -11.53,-12.65 -69.98,-24.42 -0.43,-6.89 27.55,0.04 27.32,12.54 43.75,33.76 45.35,44.18 25.74,19.02 28.03,7.5 -0.5,-8.21 -169.58,-122.95 -94.49,-43.76 -27.82,-20.53 -72.16,-77.58 -17.52,-6.39 -31.39,18.22 -19.69,-2.32 -30.17,-12.7 -117.79,-77.91 -14.69,-15.92 -6.07,-9.7 -9.35,-20.44 -6.71,-10.29 -20.25,-15.55 -11.07,-10.86 -5.38,-12.95 -25.23,-33.19 -7.88,-1.41 -3.49,4.48 -4.55,7.51 -10.74,7.16 0.49,6.97 16.55,10.46 8.05,7.6 -3.27,3.98 -22.63,1.48 -9.98,-2.47 -4.52,-7.85 3.97,-31.11 12.48,-16.17 12.96,-9.31 5.43,-10.68 -4.57,-13.29 -16.79,-16.1 -4.36,-11.43 -4.28,-28.37 -3.64,-14.31 -3.64,-6.01 -6.83,-5.57 -4.64,-11.76 -5.43,-8.48 -9.04,4.08 -3,9.09 3.48,9.65 12.29,19.18 -17.89,-1.33 -7.82,-12.4 0.87,-17.57 8.03,-17.04 21.29,-20.2 2.89,-10.82 -13.8,-11.66 -5.71,-0.43 -11.22,6.85 -7.06,2.2 -3.7,-5.62 -0.97,-25.58 -3.62,-5.62 -9.91,-4.44 -34.7,-31.88 5.64,-7.82 4.14,-15.76 4.92,-7.24 6.89,-4.65 12.74,-2.4 22.56,-8.96 8.75,-4.88 4.44,-9.34 2.27,-19.64 -0.11,-19.69 -2.42,-19.96 -13.62,-55.76 -3.17,-7.62 -4.63,4.39 -9.39,16.47 -8.94,-10.87 -1.69,-9.46 2.95,-8.78 5,-8.86 3.6,-2.01 11.08,0.05 4.37,-3.16 1.77,-6.38 -1.28,-13.41 3.68,-84.86 6.87,-22.55 53.12,-62.12 24.16,-38.6 -1.63,-27.51 -1.57,-6.7 -56.72,-5.87 -21.6,0.46 -20.84,3.87 -16.55,6.56 -9.42,6.95 -7.4,9.03 -5.73,10.84 -4.41,12.63 -5.33,1.94 -24.01,2.33 -8.62,2.52 -14.69,-8.24 -25.87,12.15 -28.55,-19.13 -13.94,-1.3 -14.08,1.51 -13.37,-0.44 -13.75,-6.88 -26.61,-22.35 -13.8,-7.42 -17.39,-1.46 -31.88,7.35 -16.94,-0.01 -15.1,-6.38 -36.78,-24.85 -7.28,-9.09 5.9,-21.81 9.36,-12.28 -0.02,-4.84 -22.16,0.39 -17.88,4.78 -36.93,15.84 -15.96,0.78 -6.83,-5.37 -8.27,-17.47 -5.96,-5 -8.62,0.4 -8.97,3.8 -15.97,10.76 -14.93,5.22 -14.96,13.84 -11.6,18.31 -4.65,18.41 -13.06,1.65 -25.19,7.63 -46.14,26.3 -9.22,8.97 -21.95,14.77 -26.08,-0.73 -52.16,-11.82 -38.49,8.06 -13.61,-5.17 -4.38,-5.48 -7.55,-15.88 -4.44,-6.14 -20.9,-13.47 -15.1,-13.71 -10.05,-5.39 -13.82,-2.33 -21.67,-0.64 -11.01,2.7 -9.6,7.36 -15.01,15.44 -6.4,17.82 -7.34,42.47 -9.67,19.6 -12.29,6.7 -15.32,2.16 -18.93,6.13 -43.49,35.52 -16.64,8.68 -50.48,11.42 -14.59,7.59 0.72,3.38 -0.35,2.84 -1.42,2.4 -2.33,1.83 5.37,27.47 11.09,22.3 16.28,13.29 20.8,0.15 -8.92,15.66 -18.59,7.56 -12.51,9.53 9.08,21.95 -92.51,17.31 -8.61,5.02 -41.83,34.42 -12.63,0.19 -24.9,-7.07 -25.82,3.67 -16.56,-42.65 -18.83,-5.78 -10.48,16.58 -10.38,39.34 -13.8,23.22 -12.12,27.42 -6.52,4.33 -7.67,1.13 -3.75,4.83 5,15.46 -18.75,6.99 -100.92,9.62 -28.18,-6.29 -8.96,1.99 -13.1,11.6 -6.94,16.09 -4.57,17.81 -6.54,16.72 -13.24,14.37 -16.59,6.95 -69.35,11.35 -5.9,4.36 -12.47,12.38 -6.68,3.34 -8.64,-1.92 -8.3,-5.52 -8.17,-3.33 -8.44,4.53 -11.78,14.2 -6.58,6.15 -23.35,11.83 -33.29,24.41 -13.79,3.84 -16.05,0.01 -13.97,4.53 -27.13,13.93 -14.23,2.86 -22.56,0.59 -19.59,-5.56 -5.48,-15.58 -0.59,-23.92 -14.61,-29.98 7.8,-13.45 -6.57,-4.19 -3.52,-4.41 -6.11,-10.67 11.19,-5.32 8.59,-13.35 3.91,-17.39 -2.62,-17.8 -8.3,-11.15 -11.15,-2.84 -28.67,6.81 -102.5,7.31 -13.02,7.1 -32.11,-5.05 -16.08,0.77 -16.07,4.9 -3.61,4.23 -0.13,4.63 0.75,4.59 -1.43,3.8 -20.67,21.66 -15.41,-3.8 -16.04,-13.12 -26.38,-30.12 -12.37,-0.51 -11.2,16.55 -14.33,32.93 -12.41,7.86 -42.42,15.99 -13.52,-0.67 -16.47,-8.8 -51.07,-2.15 -65.75,-16.53 -28.67,0.42 -30.99,16.31 -4.21,5.42 -3.21,6.02 -5.1,5.66 -10.12,4.13 -8.22,4.81 -1.5,7.43 -0.21,7.96 -4.35,6.69 -12.29,12.59 -8.08,17.54 -2.68,19.73 3.93,19.1 -15.4,-4.62 -24.43,-3.91 -21.65,5.04 -7.44,21.75 -46.08,35.5 -11.25,13.26 -5.69,-10.53 -6.61,-7.84 -6.69,-1.75 -6.29,8.03 -42.81,-26.63 -21.13,-9.61 -25.22,0.87 -41.82,25.66 -20.79,2.96 -4.45,-26.29 -7.47,-1.62 -14.79,-7.86 -6.55,-0.26 -7.31,6.13 0.88,6.62 1.97,7.08 -3.96,7.26 -3.47,1.53 -13.28,1.53 -5.13,3.12 0.65,4.15 2.12,4.64 -0.64,4.88 -26.84,46.28 -13.13,13.86 -26.03,20.69 -8.12,2.34 -8.12,-0.24 -7.91,1.94 -7.37,9.07 -3.38,10.67 1.58,5.87 3.35,4.79 1.33,7.73 -10.69,41.38 -20.98,10.09 -64.29,-3.92 -64.44,13.11 -30,13.91 -25.87,24.75 -8.55,12.83 -13.07,5.54 -27.82,6.96 -5.5,5.85 -12.44,10.25 -6.75,3.65 -30.95,0.92 -23.93,24.99 -26.12,18.98 -46.24,14.25 -14.18,11.21 -11.8,17.59 -1.81,15.33 8.42,13.74 18.87,12.56 -17.79,7.17 -19.13,-4.65 -15.99,-14.11 -8.42,-21.58 -5.62,-28.88 -8.82,-14.15 -14.44,-2.84 -22.1,4.7 -19.3,7.85 -16.73,12.66 -12.67,18.61 -7.19,25.39 7.88,8.55 38.11,31.93 12.05,12.57 16.83,33.6 14.39,43.18 2.01,41.06 -20.31,27.03 -9.73,1.35 -9.39,-2.08 -9.22,-0.47 -31.62,22.08 -24.3,10.77 -16.05,2.63 -13.07,-5.83 -8.85,-18.16 -5.87,-9.15 -9.51,-3.97 -10.42,-0.01 -8.6,2.45 -9.32,5.84 -3.38,5.6 -3.47,19.78 -0.09,9.91 3.14,6.48 0.8,5.24 -7.27,6.78 -14.45,9.34 -7.31,1.82 -17.39,-4.87 -17.76,-0.06 -10.13,-3.45 -8.96,-0.32 -2.94,9.53 0.09,21.98 -8.32,15.07 -21.78,14.39 1.56,13.58 3.65,23.33 8.67,30.36 11.56,-10.95 7.23,7.44 15.73,4.31 73.19,2.26 19.81,4.42 19.34,7.43 16.55,9.17 8.3,8.71 21.95,32.16 5.2,12.03 8.12,7.95 46.97,27.78 7.83,12.05 18.18,39.77 10.01,34.26 27.54,60.76 56.18,177.93 27.16,61.2 46.43,140.33 91.51,308 41.61,153.05 14.2,68.26 0.14,16.61 -2.78,32.32 1.97,9.31 24.93,27.87 4.05,6.61 3.71,13.23 20.65,49.24 18.11,17.49 20.01,-1.71 47.05,-18.1 28.55,0.69 17.44,9.43 2.23,16.86 -16.96,23.05 10.85,-1.36 -5.83,16.94 -52.65,63.63 -8.24,4.83 -3.44,2.7 -2.84,3.86 -3.45,2.94 -5.5,0.17 -3.83,-3.01 -2.12,-4.63 -1.53,-4.24 -2.21,-1.65 -6.42,-9.68 -42.54,-49.96 -15.2,-47.89 -10.45,-25.85 -6.8,-11.86 117.89,542.08 55.05,171.58 43.9,232.54 6.91,15.63 33.56,50.78 13.4,15.79 13.13,3.17 7.71,-5.11 1.3,-5.3 -1.53,-8.2 -2.08,-12.51 -2.56,-3.41 -2.44,-5.69 -0.79,-5.91 1.62,-6.27 6.59,-14.36 5.65,-9.46 47.34,-47.41 30.6,-22.65 11.64,-5.3 81.59,-117.31 17.99,-35.24 5.09,-34.64 -0.72,-22.45 5.37,-42.6 2.12,-104.81 1.64,-13.01 18.77,-67.74 22.55,-38.18 26.66,-33.13 23.55,-17.9 5.99,-8.69 4.81,-14.72 0,-10.47 -4.44,-17.47 -1.78,-23.3 0.68,-23.49 4.47,-18.75 9.56,-9.46 -1.19,15.8 0.8,31.87 -3.18,14.29 10.93,29.03 -5.97,25.16 -15.41,20.05 -17.24,13.65 24.24,-4.12 19.77,-6.95 17.12,-11.23 16.01,-16.91 -15.61,37.29 -29.57,19.3 -32.85,15.21 -25.42,25.12 -10.87,30.66 -5.63,36.43 -4.15,216.35 -4.97,44.23 -17.53,73.2 -11.86,33.03 -14.03,29.98 -31.03,46.02 -100.57,94.25 -2.07,5.04 -0.43,21.28 -4.32,5.32 -24.62,12.73 -36.45,47.01 -22.13,12.5 -14.41,4.94 -11.69,9.602 -9.63,12.609 -7.93,13.73 -12.97,12.93 -28.16,-2.562 -13.21,7.55 23.35,75.621 1.76,14.239 53.58,9.25 15.16,-2.637 42,-64.801 8.08,-7.039 8.13,-9.953 51.29,-32.258 -14.91,21.938 -62.71,65.402 -17,26.609 -2.81,10.512 0.41,13.129 -1.29,16.957 -3.11,16.731 -5.08,12.492 9.17,3.488 6.33,5.84 4.78,6.09 4.36,4.519 9.65,6.633 12.93,5.93 7.38,0.051 6.03,-2.172 5.26,1.949 4.93,12.492 0.43,11.668 -2.94,12.043 -4.44,10.418 -3.98,6.461 4.63,3.078 8.83,7.391 4.33,2.711 -11.68,10.121 -6.53,16 -6.31,37.957 14.9,-13.399 12.74,-2.441 11.52,7.863 10.91,17.668 0.88,6.891 -2.7,5.301 -3.72,5.777 -4.55,4.781 -14.05,7.281 -1.55,9.469 0.6,11.301 -3.58,15.789 1.53,10.309 -0.53,4.441 -2.57,2.082 -9.47,4.648 -2.36,2.122 -3.96,5.808 -4.16,4.27 0.62,4.761 10.42,7.879 -16.26,16.032 -5.75,2.257 -2.92,2.543 0.89,5.008 1.69,5.27 -0.53,3.39 -4,1.391 -11.79,0.648 -7.7,3.45 -7.05,0.39 -6.44,2.231 -6.33,8.699 0.34,9.473 6.39,10.136 8.86,8.364 7.77,4 -1.33,21.878 10.33,13.481 57.3,26.187 8.1,13.313 0.44,9.039 -2.24,9.91 -0.09,15.942 -13.67,25.91 -34.12,6.808 -30.78,-13.5 -3.61,-35.179 -19.97,8.5 -12.38,19.757 -11.18,23.063 -11.94,5.098 -7.49,2.382 -21.81,17.379 -15.41,17.41 -9.72,5.641 -42.57,-7.601 -19.41,3.64 -5.13,24.852 -0.79,28.547 -9.43,21.933 -16.13,14.656 -20.5,7.051 -50.99,9.141 -19.83,9.59 8.42,12.8708 -10.83,13.6289 -39.96,12.8125 -22.61,26.2383 -20.83,8.8281 -8.88,7.3633 -4.28,9.9101 -5.2,25.4688 -5.67,13.0078 -1.67,-13.7969 1.89,-18.74217 -0.23,-9.89843 -3.97,-4.4805 -6.67,4.9492 -5.77,11.05864 -5.76,83.85156 5.99,18.8086 -11.53,6.9214 -4.29,13.168 -1.42,15.524 -3.03,13.57 -9.59,14.957 -10.31,11.77 -7.69,12.07 -3.73,29.41 -8.95,9.653 -12.29,6.168 -12.36,3.089 -5.56,7.653 -16.06,49.449 -36.17,50.437 -21.17,20.372 -18.83,9.628 -7.71,8.422 -3.14,18.149 0.05,21.652 1.86,19.098 5.24,23.66 6.84,10.723 21.5,11.488 -2.08,16.269 12.75,10.121 31.68,13.899 11.57,15.402 18.56,38.11 11.88,18.488 14.68,8.152 1.25,18.93 -5.62,20.891 -6.27,14.058 -10.13,13.32 -41.92,32.04 -85.17,27.992 -24.67,18.808 10.96,5.371 9.26,6.528 9.75,4.992 25.14,-0.102 6.4,3.082 3.66,8.778 4.64,16.07 2.49,14.973 -5.48,18.648 0.23,17 2.78,12.25 4.99,13.82 6.76,12.571 8.04,8.437 19.28,5.231 70.57,-2.668 5.75,3.211 5.48,1.847 5.8,0.172 4.85,-8.359 4.9,-6.082 37.21,-15.781 11.59,-1.289 -4.04,8.261 8.73,-1.351 7.74,-3.5 6.7,-5.828 5.73,-8.122 -15.49,2.192 -1.17,-8.281 27.74,-27.121 30.64,-10.629 6.92,-6.289 14.15,-20.34 16.29,-10.293 40.58,-6.969 -13.75,12.289 -30.21,10.641 -11.63,12.511 -19.02,30.469 -23.47,25.789 -23.86,19.539 -14.46,7.172 -17.53,4.36 -6.35,3.48 -8.99,12.301 -27.42,12.488 -105.22,7.77 -25.81,-11.071 -6.42,-7.429 -4.14,-6.84 -4.99,-6.36 -8.89,-6.019 -23.48,-3.34 -20.25,-15.051 -15.09,-3.648 -14.88,2.418 -12.8,7.621 -9.77,11.68 -15.22,24.152 -11.04,8.867 -12.4,3.5 -7.07,0.723 -5.81,-0.481 -6.78,-4.301 -3.96,-7.089 -2.14,-6.621 -1.29,-3.09 -21.94,4.019 -65.22,47.692 1.14,7.57 17.01,-5.129 30.15,-20.453 17.58,0.492 15.21,13.258 -4.78,15.863 -12.86,17.18 -9.12,17.328 -6,-2 -2.7,-1.33 -2.63,-2.1 2.47,-8.511 -0.32,-4.579 -5.65,-10.3 -5.61,0.84 3.54,32.41 -6.1,18.35 -28.18,25.01 65.28,26.85 7.91,-1.63 7.36,-4.52 12.24,-4.35 -2.39,-5.91 -0.91,0.08 -3.54,-1.59 4.58,-7.74 8.45,7.33 28.12,10.7 3.47,7.04 -11.17,4.06 -18.49,3.16 -11.6,6.77 9.22,14.65 -11,10.17 -15.46,4.01 -8.66,7.45 9.38,20.22 -8.53,15.99 9.51,6.16 47.31,-4.4 28.56,3.55 15.5,-3.36 -11.78,5.15 -20.68,-0.5 -13.69,2.21 -53.99,31.31 -11.56,3.64 -10.04,0.28 -25.71,-4.59 -28.23,4.26 -7.16,-1.35 -4.97,-3.23 -4.75,-0.1 -6.69,8.26 11.7,0.36 14.42,6.32 13.15,10.85 7.96,14.07 -13.26,-9.75 -10.97,-0.1 -10.94,2.77 -13.26,-1.09 5.94,-2.19 4.25,-2.88 2.38,-4.7 0.54,-7.67 -19.07,2.57 -8.46,3.4 -7.23,7.02 -5.2,-26.3 -11.16,-4.4 -23.55,12.86 -12.74,1.13 -41.29,-7.68 -14.67,0.88 -11.06,2.93 -9.05,6.45 -8.67,11.28 -0.8,4.47 -8.22,23.51 -2.67,1.65 -2.15,6.38 -6.7,4.59 -8.32,2.73 -2.09,1.52 1.35,1.41 0.36,5.49 -12.1,6.9 13.93,7.17 20.47,-3.12 7.61,-24.07 5.18,-0.8 5.05,5.29 4.79,1.78 4.91,-2.55 5.76,-7.69 1.96,7.03 6.72,15.63 9.6,-15.65 18.02,-9.14 20.7,-1.19 17.61,8.1 -4.43,8.42 35.54,36.21 6.57,20.17 -13.47,24.46 -1.05,-6.88 6.02,-8.63 -0.09,-7.29 -5.36,-4.69 -9.62,-1.23 9.49,-9.22 -4.1,-4.8 -3.78,-1.89 -8.77,0.76 -2.93,6.81 -33.81,29.81 15.43,-4.63 14.1,-7.6 -6.86,14.2 -8.06,7.16 -22.5,7.63 9.17,-8.45 -16.64,-5.01 -39.28,1.82 -8.95,-6.5 -8.59,-12.31 -15.84,-4.47 -25.77,-2.18 1.06,6.82 5.18,-0.81 1.29,8.28 -10.08,-0.13 -2.65,-1.46 -3.93,-4.29 -5.1,0.79 -0.79,13.98 1.01,11.41 3.68,8.2 7.22,4.19 -10.67,2.07 -6.98,7.08 -3.37,11.04 0.2,14.06 -5.58,0.87 -0.39,-8.86 1.41,-14.37 -0.18,-7.9 -4.15,-26.47 0.99,-11.6 4.7,-13.24 6.69,-12.47 6.58,-9.07 -3.08,-7.29 -1.68,-3.03 -2.69,-3.98 -1.5,4.28 -5.98,12.35 -6.91,-3.29 -5.64,8.1 -6.26,12.79 -8.63,10.74 2.13,-15.45 -5.32,-6.3 -6.4,4.03 -1.39,15.16 0.09,17.42 -5.25,-0.93 -4.43,-11.87 2.21,-15.44 -10.67,2.41 -4.11,2.29 -4.04,6.01 -25.7,-9.16 -12.11,0.86 -9.52,8.02 5.39,2.32 5.62,3.7 -6.2,7.91 -7.91,6.92 -8.45,0.81 -8.17,-10.78 3.09,-2.19 2.64,-4.27 3.27,-2.72 -14.09,-36.07 -0.81,-32.38 8.41,-27.71 13.59,-22.08 -10.14,2.12 -15.03,6.84 -5.64,-4.09 -4.61,0.72 -4,33.36 0.37,10.28 3.58,11.89 9.96,17.63 4.01,14.61 2.26,26.16 -2.22,20.03 -5.94,15.93 -8.76,13.97 -6.41,5.63 -7.83,4.95 -6.4,5.46 -1.89,7.29 3.96,14.09 13.99,29.58 60.35,17.27 -1.82,6.28 -0.64,6.42 0.55,8.08 1.73,10.94 -3.87,-1.79 -9.33,-2.1 -3.85,-1.79 3.22,23.45 1.7,7.49 -4.65,0.74 -7.74,-10.75 -7.69,3.34 -9.19,6.75 -12.19,-0.52 9.75,-5.73 5.87,-9.25 2.79,-12.58 0.88,-15.77 -3.89,-0.14 -0.98,-0.7 -0.22,-1.84 -1.72,-3.96 -7.89,7.93 -5.89,-3.2 -6.98,-6.2 -11.1,-1.22 2.35,-3.79 5.92,-13.05 -11.25,-3.37 -5.26,-9.8 -4,-9.87 -7.65,-3.51 -4.83,5.3 -18.64,29.53 -18.23,8.57 -31.42,14.24 -19.94,3.94 14.38,3.28 13.07,-3.61 28.19,-15.72 1.1,6.88 -10.77,9.14 -12.6,6.86 -30.92,8.29 1.34,8.25 6.85,-0.34 3.47,1.84 1.8,5.47 1.61,10.21 3.34,3.98 12.44,-4.01 4.83,0.66 13.58,23 8.9,12.14 10.88,6.06 1.33,8.2 -19.37,-16.51 -23.74,-16.03 -24.88,-9.88 -16.3,-1.09 5.19,-4.34 3.96,-5.4 2.59,-6.27 -1.12,-6.94 -63.83,-5.4 -10.07,5.09 -2.32,6.55 -17.55,32.43 -6.94,24.44 -6.73,10.96 -2.44,5.4 -1.46,8.72 -9.31,-5.47 -12.23,2.31 -25.34,10.89 -19.37,2.33 -6.15,1.9 -5.29,4.47 -6.89,11.03 -3.18,2.59 -28.44,3.35 -13.58,7.54 -3.69,16.16 -5.92,4.05 -42.65,-15.35 -9.1,12.55 -15.88,2.32 -17.32,-0.68 -13.37,3.67 -0.35,3.89 -9.8,29 -4.26,6.67 -4.64,5.2 -1.56,7.14 5.31,12.26 -6.43,1.39 -4.32,2.91 -8.2,7.43 -0.32,12.46 -11.28,18.48 -17.63,16.8 -19.06,7.21 2.91,-23.78 -8.29,-15.77 -19.81,-15.62 -14.56,6.74 7.42,-1.86 6.21,0.59 5.24,4.26 4.19,9.33 -9.56,-1.75 -7.49,0.87 -6.08,-1.49 -5.44,-9 -18.1,21.15 -9.19,5.65 -11.89,3.29 -8.11,6.77 -7.34,14.69 -4.26,18.63 0.8,18.44 -10.08,-11.85 1.51,-17.45 7.48,-16.87 7.5,-10.2 -1.19,-6.87 -9.47,0.87 -7.78,-1.37 -7.61,-3.75 -8.87,-6.19 -9.88,26.84 -10.85,-1.13 -4.48,-13.23 9.52,-9.76 -2.84,-3.76 -3.14,-2.99 -1.19,-6.9 20.35,-3.53 -1.43,-8.28 -28.33,-19.27 -12.56,-4.81 -19.3,-2.04 -108.54,24.41 1.87,8.26 1.08,15.75 2.38,6.25 5.13,2.05 7.03,-1.36 6.65,0.4 4.08,7.01 0.95,20.2 -6.24,30.35 -1.84,31.53 -7.66,22.16 -27.3,52.34 -56.61,63.89 -6.67,5.33 -11.12,-4.45 -11.14,-9.5 -10.66,-3.52 -18.29,25.8 -12.38,4.56 -25.4,3.11 -52.92,25.93 5.6,3.03 4.96,6.02 4.35,6.45 5.96,7.31 1.25,3.86 1.62,3.9 3.33,3.51 2.6,-0.33 4.63,-7.67 3.94,-2.51 248.45,10.88 40.19,-20.49 11.75,2.77 4.81,7.36 12.76,29.98 -1.27,13.12 -8.06,15.32 -0.89,8.07 0.65,25.44 -8.16,11.88 -30.17,12.6 -5.18,4.63 -3.71,6.21 -2.14,7.17 -0.53,7.45 -19.71,-3.56 -35,32.22 -21.83,-3.31 -14.27,-17.73 -14.86,-23.48 -16.86,-18.57 -20.33,-3.21 10.72,22.39 5.07,6.71 -6.15,14.22 -2.89,10.16 -0.24,8.52 5.9,12.44 6.66,3.88 3.57,3.82 -3.02,12.3 -8.66,3.95 -44.15,9.81 4.18,11.35 -0.08,11.31 8.95,3.05 6.06,-1.63 5.7,-3.54 7.82,-3.04 9.96,1.69 3.01,7.26 -0.47,8.09 -0.68,4.35 19.47,32.12 10.96,7.3 11.31,-7.97 -17.04,-39.21 18.68,-13.4 66.65,-7.13 6.87,-5.13 4.07,-5.68 4.89,-5.09 9.38,-3.53 9.05,-0.66 36.62,4.02 50.25,-5.39 -5.53,-3.86 -4.98,-1.13 -10.95,1.69 14.24,-8.73 62.73,2.29 1.45,8.3 -23.41,2.42 -7.92,5.76 -0.79,13.68 -8.36,-7.5 -10.73,-1.03 -8.54,5.36 -1.97,11.98 -4.99,-0.54 -31.89,3.45 7.94,8.93 3.56,1.9 6.75,1.56 1.1,4.55 4.23,4.1 8.16,3.93 17.09,13.21 -12.53,2.1 -18.84,-9.31 -12.22,-1.38 1.33,7.56 5.48,-0.97 1.46,8.24 -5.48,0.97 -3.29,-5.06 -5.55,-4.77 -3.59,-4.26 -10.14,6.7 -26.23,-12.06 -17.08,-0.06 2.79,3.82 0.89,0.28 3.08,1.79 -4.18,8.56 -7.27,-5.08 -9.28,-2.95 -10.44,-1 -10.39,0.79 1.23,6.87 51.28,43.62 9.41,5.11 77.85,29.47 -13.8,-1.63 -25.47,-9.13 -15.57,-2.9 -51.29,0.63 -24.64,-5.76 -51.81,-20.98 -37.72,-2.39 -24.03,-7.25 -14.73,0.72 -12.4,5.26 -23.76,15.19 -13.91,4.95 -3.27,-3.16 -1.39,-8.05 -2.75,-7.84 -7.22,-2.44 -37.14,7.11 -9.14,5.63 -4.37,12.51 -0.47,23.87 14.02,-1.09 1.45,14.37 -7.14,32.12 2.71,21 7.57,20.02 11.49,13.66 14.62,1.87 1.25,6.84 -16.19,17.25 13.32,30.65 24.37,30.51 16.71,16.86 6.7,-6.4 7.3,-4.64 -3.93,9.2 13.23,5.95 14.6,2.07 23.24,-1.7 13.56,-6.66 21.84,-18.15 9.68,1 -12.75,26.57 -2.46,16.07 10.71,5.01 32.03,-14.85 13.93,-1.98 -18.62,11.87 3.05,4.18 2.01,3.36 -0.93,3.71 -5.73,5.38 1.25,6.89 57.31,-10.34 17.19,-0.02 26.32,7.27 17.06,-2.53 -8.93,7.98 -4.28,2.21 1.48,8.21 21.52,0.05 22.52,8.37 21.2,4.2 18.91,-4.25 10.51,-18.28 -9.76,-23.48 17.44,-1.14 24.81,9.57 8.11,0.89 8.7,-3.33 15.44,-9.57 9.93,-1.57 1.44,8.21 -13.4,6.49 5.75,10.67 14.86,10.72 13.92,6.7 15.05,3.19 17.63,0.33 16.44,-4.12 11.8,-10.08 5.48,5.88 4.06,-0.88 2.7,-5.78 1.61,-8.71 4.55,-0.8 5.76,4.31 4.18,6.17 1.85,8.17 -1.05,10.62 10.45,0.18 9.55,1.88 17.14,7.04 27.32,3.22 3.92,-4.39 -3.64,-10.21 -4.05,-7.62 -0.06,-5.76 8.01,-4.75 -1.19,-6.92 -5.03,0.86 -1.41,-8.18 6.56,-5.97 3.4,-9.13 -0.74,-11.25 -6.07,-12.45 24.26,17.03 11.63,3.77 13.95,-6.05 -8.33,-5.4 -3.52,-1.05 -1.17,-6.81 6.81,-13.55 19.39,-17.59 7.25,-14.26 6.79,6.62 -4.21,8.49 6.8,6.65 -2.22,7.45 -1.07,9.58 -0.16,23.18 4.55,-0.78 1.24,-6.99 1.69,-3.64 4.81,-7.01 1.43,19.72 5.8,20.87 7.88,11.44 7.82,-8.53 4.04,4.49 2.51,5.11 1.47,5.88 1.01,7.01 7.26,-14.96 12.97,-6.57 34.35,-3.96 7.56,-4.7 14.32,-18.09 7.52,-5.63 9.29,-1.87 27.4,2.8 -3.42,-18.62 17.02,-8.75 21.49,-3.49 11.41,3.98 -2.97,26.8 -0.14,17.51 4.26,7.05 39.33,0.54 -9.47,8.58 -20,35.96 0.02,18.54 8.98,8.2 22.65,6.09 20.72,25.96 5.57,8.54 4.55,-0.76 5.85,-6.62 22.96,-5.3 22.77,-19.14 10.03,-2.54 -4.71,-2.63 -2.43,-2.66 -2.03,-3.37 -3.4,-4.79 16.98,-4.23 9.14,-0.63 7.27,3.21 8.81,7.84 5.61,2.66 65.51,13.1 9.61,5.12 5.02,-0.82 6.58,-2.96 26.21,23.64 11.32,-4.61 2.21,-16.76 -4.04,-21.5 -8.55,-19.12 -11.3,-9.68 -0.03,-5.16 0.43,-3.19 2.62,-7.66 4.88,13.61 7.66,9.63 26.42,23.67 20.44,12.55 7.82,7.25 7.04,-4.78 16.2,14.36 9.71,1.31 8.08,-7.41 3.53,-10.91 -1.38,-11.71 -6.89,-9.99 -1.11,-6.93 8.61,-9.85 -6.92,-8.05 -14.15,-27.33 -6.13,-8.05 -19.12,-18.25 -1.33,-8.24 5.47,-0.88 32.24,45.97 17.69,18.77 11.45,-4.78 8.31,5.01 7.98,0.78 7.35,-3.36 6.35,-7.24 -6.62,-6.69 2.67,-1.49 1.77,-0.22 0.56,-1.44 -0.8,-5.28 -7.38,-0.99 -6.08,-2.37 -13.89,-7.76 -1.12,-6.93 9.5,-1.52 -1.32,-8.25 17.62,-10.22 36.84,-7.75 13.71,-7.71 -2.43,-9.06 -0.99,-6.72 -0.29,-7.58 -8.01,-4.83 -3.23,-1.14 -1.1,-6.92 9.69,-8.71 11.39,-13.66 9.19,-14.79 3.07,-11.81 41.28,-48.83 2.16,-34.27 1.55,-9.31 0.15,-5.86 -2.86,-4.83 -2.43,-5.31 1.48,-7.37 3.1,-3.94 8.78,-6.31 15.59,-16.08 38.81,-27 -3.8,-9.7 -4.22,-7.32 -5.09,-5.72 -6.63,-4.52 8.64,-1.81 6.43,-4.99 5.14,-7.57 4.95,-9.28 8.97,-10.04 3.54,10.01 2.1,16.1 4.28,7.78 28.98,-6.03 12.87,3.35 16.62,13.42 21.64,24.82 6.72,6 8.61,4.9 13.77,2.31 54.35,23.42 12.09,10.03 1.15,7.56 -6.13,1.58 -13.21,9.13 34.19,4.96 15.66,-4.78 4.15,-16.15 20.36,4.68 24.37,11.23 22.04,16.01 13.12,18.6 0.77,-13.18 3.97,-8.98 6.94,-4.44 9.99,0.15 -1.24,-8.25 -6.12,-3.6 -4.13,-5.24 -3.57,-5.93 -4.68,-5.63 -23.92,-19.63 11.45,-12.47 15.15,7.3 17.26,13.35 17.94,5.78 2.64,-6.48 0.12,-26.55 1.62,-6.31 7.77,-5.19 3.46,-10.45 0.8,-12.85 -0.34,-11.96 8.73,3.27 6.56,7.61 4.21,11.08 1.67,13.61 0.78,-16.75 1.85,-14.5 5.59,-7.39 11.99,4.67 1.12,7.56 -2.92,1.49 -5.68,6.81 10.04,11.39 9.58,5.2 8.87,-2.27 7.88,-11.27 -4.12,7.58 -2.83,8.17 -3.65,16.79 34.5,6.67 35.66,-1.52 1.16,-5.32 11.29,-30.97 -0.57,-12.12 2.15,-11.58 5.15,-9.12 8.77,-4.59 -4.78,-10.42 -2.9,-3.88 14.77,-31.64 2.34,-15.47 -6.5,-24.1 8.39,6.86 25.1,11.51 -18.49,17.46 5.26,8.1 -7.91,21.22 -0.23,18.17 5.02,-0.73 2.35,-5.43 2.64,-3.78 7.87,-8.08 -3.49,13.65 -5.63,7.75 -7.3,3.69 -8.38,1.66 -5.9,7.47 -8.83,34.94 -5.07,14.61 3.58,8.61 7,9.16 9.68,6.83 11.68,1.64 3.1,3.17 1.13,7.8 2.51,7.65 7.12,2.59 27.54,-4.01 -3.36,8.86 76.87,4.38 -2.78,-4.57 -0.86,-4.85 1.55,-6.19 4.19,-8.55 -22.58,-27.17 -3.5,-25.93 13.99,-21.32 29.84,-13.1 53.66,-8.41 59.33,0.75 38.09,14.42 12.18,0.98 57.14,-15.69 81.38,6.81 25.53,-13.87 -8.99,20.79 -15.15,10.79 -27.86,6.41 -0.42,-2.51 -4.05,-3.82 -4.26,-1.16 -1.26,5.43 0.1,7.17 -1.61,6.53 -3.31,4.9 -24.23,10.96 -8.39,7.24 -2.96,7.37 -2.46,26.98 -23.9,28.12 -2.45,27.22 3.89,30.72 0.61,26.62 -6.45,18.67 -16.99,7.01 1.17,8.25 10.79,3.27 9.11,8.83 6.79,12.31 13.31,52.24 6.5,10.6 5.06,-10.29 5.78,12.1 1.98,9.71 -2.78,6.82 -8.37,3.46 -2.16,6.79 16.99,63.11 7.04,15.9 10.47,3.97 16.55,-11.03 0.96,6.88 -13,8.65 -16.38,2.36 -14.81,-5.92 -8.12,-16.38 -2.96,-4.14 -4.22,7.19 -3.56,11.79 -1.06,9.61 4.39,26.5 3.28,11.52 4.84,10.83 -10.06,3.53 -2.66,8.9 2.51,12.33 5.48,13.78 7.18,13.54 5.95,6.05 15.65,7.9 -8,8.26 -2.06,-1.29 -4.37,-4.93 -3.72,18.47 -1.92,21.6 -0.08,22.11 1.71,20.21 7.17,9.8 13.35,-0.9 25.1,-11.49 0.97,6.88 -14.77,6.87 -17.47,11.71 -15.44,2.6 -8.73,-20.22 -9.59,15.22 -6.21,42.62 -8.88,14.48 5.48,4.36 2.17,1.27 3.47,1.26 -18.41,19.41 -7.08,13.58 -3.06,18.1 14.87,-2.13 0.98,6.88 -6.18,24.03 -5.43,0.78 -8.67,-18.34 -12.15,10.57 -13.64,20.21 -13.17,10.62 3.12,7.32 1.75,3.09 2.81,3.92 -10.42,-1.07 -10.2,-2.91 -8.61,0.37 -5.88,8.69 -0.08,14.75 8.21,37.35 1.75,16.01 -0.95,7.92 -2.03,7.54 -7.73,20.78 -0.19,5.53 0.32,5.8 -1.33,8.97 -5.32,12.88 -15.35,25.59 -2.84,7.14 6.85,14.79 23.07,15.71 6.22,10.55 8.35,34.3 2.49,18.35 -3.03,16.53 -3.99,13.22 -2.45,11.35 -5.3,8.62 -22.5,7.98 -29.58,18.04 9.54,25.34 1.02,16.7 4.38,8.08 19.71,-0.39 6.45,-3.35 12.7,-12.45 8.07,-3.64 20.57,0.03 6.66,-4.01 2.8,-5.26 0.72,-13.8 2.39,-5.73 3.2,-1.46 8.13,0.34 3.46,-1.03 14.97,-7.67 46.63,-14.17 51.07,-26.16 11.54,-0.78 0.01,-2.57 -0.55,-5.47 1.01,-5.7 4.86,-3.15 7.05,1.51 11.37,9.48 8.15,1.35 8.24,-2.63 14.09,-7.9 8.55,-1.56 13.03,3.88 12.74,9.13 22.07,22.65 11.57,6.49 34.6,5.72 13.29,-0.52 84.16,-27.82 5.41,-4.14 1.78,-8.24 0.99,-18.94 11.14,-35.75 0.52,-19.68 -20.09,-10.67 -4.6,-9.93 -3.22,-10.18 -3.52,-4.36 -16.03,1.86 -6.65,-1.42 -5.31,-4.93 -7.21,-25.74 6.07,-23.15 9.76,-21.26 6.53,-32.08 45.54,-77.23 4.71,-17.68 -0.84,-24.58 -3.12,-12.01 -4.39,-8.16 -4.04,-5.28 -1.95,-3.18 0.82,-11.61 6.03,0.05 8.51,3.98 8.33,0.15 6.84,-7.7 4.43,-8.65 7.11,-5.52 14.68,1.99 1.02,7.5 -6.11,12.09 7.4,14.41 13.94,11.83 13.32,4.15 94.75,-17.83 81.36,-44.17 123.19,-23.79 29.78,-13.21 17.64,-4.07 28.26,11.12 17.15,-6.32 29.44,-17.77 49.49,-6.25 12.06,-6.93 20.14,-17.26 35.39,-13.03 62.85,-49.68 20.52,14.53 119.62,13.5 35.77,11.98 21.97,15.23 17.11,2.49 7.09,4.5 20.53,25.12 52.26,29.16 184.9,19.98 35.26,13.22 15.3,10.86 13.92,15.26 -55.08,-26.53 -60.68,-1.73 -58.87,15.16 -49.71,23.74 -14.75,1.74 -12.57,2.53 -15.93,7.36 -13.38,10.37 -4.88,11.51 -1.53,6.93 -9.38,8.15 -1.13,9.73 2.26,11.95 3.15,7.82 45.12,63.65 40.48,94.28 12.31,11.63 39.33,24.72 7.83,-0.75 8.1,6.26 98.99,32.46 8.41,9.61 96.14,43.58 25.71,4.75 30.38,16.19 58.36,14.29 61.65,-7.73 305.32,63.52 18.93,12.17 17.87,4.21 31.78,28.7 101.01,65.51 42.4,42.8 9.2,6.19 7.02,8.91 22.02,57.11 27.56,30.43 24.84,0.8 67.12,-41.51 7.05,-0.12 6.48,5.38 0.76,7.63 -7.42,0.21 -4.69,2.21 -3.2,5.18 -3.14,8.83 14.65,-1.45 0.82,8.26 -13.82,1.6 -13.81,6.18 -10.24,9.88 -3.32,12.91 -5.49,14.97 -28.89,17.85 -6,9.82 4.7,35.62 10.38,42.65 17.59,28.19 26.65,-8.4 0.7,6.94 -36.07,34.91 0.77,7.63 16.67,36.16 5.83,52.15 8.13,44.78 23.69,14.55 -16.19,31.41 -2.32,15.82 2.25,52.39 -2.58,48.18 1.96,23.04 5.48,19.33 19.35,42.38 9.65,15.54 5.98,20.67 -1.95,25.92 -7.28,42.11 0.04,15.58 0.35,5.65 18.5,11.92 6.28,1.92 14.73,-0.09 13.93,3.71 12.9,10.99 23.27,26.19 23.56,18.28 140.06,45.56 12.2,-3.78 25.4,11.81 113.76,3.52 123.68,28.33 7.74,3.28 5.95,0.45 41.48,-8.94 58.41,9.89 29.67,10.78 11,6.49 7.29,-22.89 0.98,-3.08"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m -1720.4,4694.64 0,0 2.22,-40.8 0.49,-8.83 5.06,-22.05 22.52,-29.87 0.11,-0.16 9.57,-17.6 0.33,-22.29 -1.89,-2.52 -2.83,-3.78 -11.13,-9.35 -6.45,-5.42 -4.95,-9.8 4.89,-25.43 4.72,-24.51 -1.43,-7.16 -6.52,-11.87 -0.6,-2.58 -0.56,-2.4 -0.01,-0.06 0.45,-0.93 1.47,-3.05 5.99,-3.76 2.14,-1.35 1.3,-1.75 1.58,-2.14 2.56,-7.77 2.25,-6.81 3.16,-6.64 0.85,-0.47 4.12,-2.27 10.14,-3.07 5.72,-0.73 13.25,0.71 4.93,-0.98 1.7,-0.34 8.81,-5.67 2.93,-6.54 0.09,-0.2 1.53,-7.66 0.01,-0.04 3.94,-8.72 21.35,-24.24 2.71,-3.07 3.39,-7.69 7.56,-23.24 1.93,-4.4 1.21,-2.75 8.52,-8.48 3.6,-3.58 6.83,-3.86 47.35,-26.68 0.99,-0.56 2.16,-1.21 1.33,-0.41 6.44,-1.94 3.04,-0.92 9.93,6.4 14.07,20.34 10.17,14.71 7.12,6.51 6.84,6.26 7.93,4.1 9.14,4.73 31,7.03 7.48,1.69 22.01,5.01 34.76,7.92 3.67,-1.45 14.16,-5.58 11.04,-12.26 8.84,-19.37 2.83,-6.19 6.75,-14.77 7.01,-21.81 5.1,-6.99 9.8,-2.15 0.04,-0.02 9.2,-3.82 0.48,-1.08 4.33,-9.64 3.59,-16.34 2.37,-10.75 -5.45,-8.57 -5.85,-9.2 3.18,-32.59 13.85,-63.97 -1.65,-35.51 2.68,-12.91 1.24,-1.89 8.78,-13.27 8.73,-8.06 29.74,-18.51 12.11,-4.45 10.76,0.47 6.61,0.29 6.89,1.94 25.02,7.03 7.42,4.88 2.72,1.8 4.85,4.19 2.71,2.35 1.45,0.8 6.16,3.42 3.18,0.01 6.98,0.04 6.97,-2.71 2.97,-1.15 4.18,-6.14 -1.76,-8.88 -0.65,-0.99 -7.15,-10.84 0.07,-0.06 8.23,-7.14 2.72,-0.22 43.04,-3.45 15.8,-4.56 14.97,-8.88 13.09,-14.52 9.991,-21.79 2.91,-43.38 -3.66,-51.84 2.98,-45.87 23.321,-25.21 3.308,6.97 1.059,0.55 0.012,0.01 1.097,-1.12 3.403,2.01 1.347,2.01 0.801,1.19 0.949,2.28 2.801,6.74 14.332,20.85 6.199,6.14 5.578,1.63 4.301,1.25 31.172,0.17 29.289,-5.68 14.18,-8.48 5.039,-4.08 6.57,-5.32 9.379,-5.32 2.91,-1.64 6.461,-0.38 9.66,-0.56 15.77,5.42 30.73,10.57 8.481,0.33 6.691,0.26 12.77,-7.19 0.597,-0.34 21.852,-27.76 5.238,-3.52 9.332,-6.27 13.84,-14.12 0.02,-0.05 3.941,-10.17 12.789,-32.92 4.18,-2.31 8.519,-4.7 3.532,3.06 1.988,1.73 0.051,0.04 -0.18,3.58 -0.211,4.12 0.84,7.09 0.07,0.03 9.063,3.18 0.019,0 6.25,-2.71 3.36,-2.43 5.82,-4.22 8.328,-8.33 3.883,-7.51 -1.203,-5.67 -1.239,-5.82 -6.332,-6.39 -1.187,-1.2 -17.652,-12.06 -8.289,-10.36 -0.34,-0.78 -3.5,-8.08 -5.149,-19.96 -6.191,-16.26 -10.442,-27.4 -0.519,-3.47 -2.488,-16.52 5.488,-3.24 4.293,-2.53 14.668,5.56 7.762,0.71 6.847,-4.08 8.942,-48.72 1.531,-4.53 2.09,-6.2 4.379,-9.16 -0.211,-2.18 -0.481,-5.05 0,-0.05 -7.801,-3.28 -9.91,-4.17 -5.136,-3.19 -12.192,-7.57 -5.558,-4.55 -8.321,-6.83 -5.601,-6.03 -0.11,-0.22 -0.48,-0.94 -3.578,-6.93 -3.813,-12.9 0.012,-0.01 0.168,-0.08 3.133,-1.57 1.398,-8.56 1.418,-8.69 -0.066,-6.01 -0.114,-10.33 0,-0.03 -5.269,0.83 -0.399,0.06 38.75,-24.25 1.84,-0.66 7.61,-2.72 34.441,2.75 20.899,1.68 18.218,-6.26 92.793,-31.77 21.508,2.44 77.152,32.65 25.77,10.93 30.117,3.02 2.512,1.45 5.558,3.21 6.172,10.36 1.16,1.95 6.059,17.33 5.031,23.52 2.5,11.66 -0.16,4.03 -0.14,3.65 -1.348,3.3 -0.992,2.42 -0.352,1.8 -0.957,4.96 2.559,10.86 4.64,8.49 80.629,72.82 19.762,7.76 0.109,-0.76 2.211,-15.96 7.848,-3.84 22.633,3.41 6.09,-9.04 -1.5,-14.25 -0.543,-5.17 -5.118,-22.76 -1.113,-8.01 -1.59,-11.37 -0.148,0.19 -7.07,8.63 -4.418,-0.79 -0.141,-0.28 -10.723,-20.45 -4.238,-8.1 -0.012,-0.08 -0.379,-2.75 -0.988,-7.17 0.59,-9.31 -1.082,-9.63 -0.25,-2.22 -0.027,-0.07 -8.954,-19.15 -22.41,-47.87 -4.109,-17.57 8.652,-16.04 0.028,-0.06 13.73,-6.56 19.441,-9.29 0.04,-0.08 0.16,-0.32 9.871,-20.67 0.25,-7.9 0.211,-6.64 -2.391,-9.49 -2.18,-4.77 -1.972,-4.33 -3.438,-9.99 -1.179,-3.41 -2.161,-4.55 -0.531,-1.12 -6.801,-7.11 -1.718,-6.7 1.179,-5.65 6.41,-12.05 0.051,-0.26 1.36,-6.44 -1.313,-22.19 -1.137,-19.39 5.911,-8.67 0.089,-0.13 7.289,-1.45 11.379,-2.28 4.211,0.44 12.071,1.26 17.418,5.1 14.41,4.23 7.793,-0.04 7.3396,-0.03 1.3672,-0.86 11.25,-7.08 25.371,-27.9 13.9297,-8.91 19.5313,-6.77 5.75,-1.99 0,0 0.0195,-0.02 8.10939,-8.64 11.99219,-19.45 16.38672,-26.59 6.8633,-7.36 L 31,3045 l 12.6211,-10.43 16.3672,-5.73 21.3125,4.79 11.7109,2.64 6.7774,-0.16 8.7419,-0.21 0.078,-0.01 14.313,-15.68 13.09,-17.8 4.179,-16.9 -2.113,-2.35 -1.367,-1.51 -5.063,-2.91 -0.82,-0.47 -0.117,-0.07 -3.02,-15.62 0.598,-5.12 0.609,-5.12 0,-0.07 3.301,-4.54 0.071,-0.02 11.832,-2.92 3.789,0.98 1.437,0.37 4.082,5.44 3.36,5.94 2.82,2.85 0.012,0.01 0.199,-0.05 4.238,-0.92 4.422,-2.96 3.551,-2.38 21.988,-9.29 12.859,-12.71 31.813,-64.66 2.508,-10.31 -0.309,-5.2 -0.383,-6.39 -2.816,-10.34 -1.211,-9.91 0.867,-2.18 3.152,-7.91 15.442,-4.86 4.558,2.38 14.731,7.71 9.738,6.96 9.102,6.5 4.121,1.62 9.769,3.84 22.18,-11.6 6.129,-1.95 5.988,0.53 4.774,0.42 1.968,3.32 0.629,1.05 1.981,7.81 0.019,0.1 9.129,11.39 18.434,8.38 0.078,-0.02 16.051,-4.43 15.211,-8.39 15.508,-3.38 0.039,0.01 0.812,0.31 8.289,3.19 9.879,11.94 7.949,3.8 7.731,-1.48 15.422,-10.45 0.078,-0.02 0.531,-0.15 7.75,-2.26 21.449,-31.23 12.141,-12.36 17.832,-9.32 45.5,-12.87 13.058,-14.28 8.68,-32.22 12.75,3.68 61.942,1.29 10.789,3.55 7.449,10.41 8.89,3 1.879,5.91 0.2,7.12 4.082,6.64 5.238,1.86 20.5,1.12 -4.32,10.4 41.769,3.03 20.5,-2.94 19.543,-8.66 34.809,-28.06 18.871,-11.26 14.469,-2 6.121,-0.91 7.769,1.22 14.11,9 5.992,2.09 7.957,-1.65 65.39,-35.51 12.041,-12.42 4.19,-9.4 1.65,-9.25 -0.06,-6.21 -1.44,-0.41 4.78,-7.58 34.04,-38.59 2.26,-6.75 -3.44,-8.86 -12.93,-0.21 -4.3,-10.04 4.16,-13.07 11.69,-15.16 46.87,-48.17 0.98,-4.75 -1.85,-11.21 0.69,-4.51 3.81,-3.16 9.97,-3.93 2.98,-3.32 5.08,-20.79 2.19,-4.73 0.75,-2.49 1.17,-8.78 1.83,-4.02 3.25,0.24 9.98,6.14 2.94,-0.03 4.05,-17.78 -4.11,-13.96 -2.45,-13.55 8.87,-15.85 8.48,-3.94 32.47,-1.25 28.1,-11.34 9.33,1.86 13.06,16.35 -2.26,18.52 -4.98,18.14 4.66,15.33 7.35,1.57 30.22,-7.81 21.28,1.48 8.02,-1.43 44.79,-26.96 15.71,-1.22 -1.4,-39.22 7.64,-30.73 15.74,-13.05 22.76,13.56 1.27,5.6 -2.19,5.86 -0.45,6.16 6.8,6.38 3.99,-0.62 27.38,-20.97 11.32,-6.26 11.36,-4.19 62.89,-2.07 19.4,-9.64 4.58,-0.8 4.4,4.33 8.05,15.51 4.72,5.47 6.54,2.09 14.97,1.57 5.56,2.46 3.83,6.06 5.63,16.03 3.51,5.44 12.28,6.63 17.21,4.81 14.14,-1.51 2.9,-12.47 31.45,-2.78 13.09,-5.09 4.5,-16.18 -5.49,-3.4 -1.86,-2.49 -1.36,-3.65 10.04,-10.89 15.99,-27.16 9.34,-12.3 15.73,-10.42 31.83,-6.18 16.07,-8.74 5.24,-6.77 6.84,-14.54 6.69,-5.93 10.08,-2.48 8.8,2.09 8.6,3.52 9.25,1.8 8.06,-1.52 15.39,-5.78 7,-1.15 8.96,2.15 17.3,9.08 8.11,2.05 60.53,-18.59 41.69,3.76 13.19,-1.68 115.14,-63.38 71.76,-15.75 8.39,-8.08 -15.55,-17.47 -23.34,-43.06 -34.33,-91.24 -9.29,-15.23 -4.52,-3.8 -27.12,-14.14 -6.46,-0.21 -1.63,-2.73 -3.45,-3.23 -3.5,-5.88 -1.72,-10.43 -1.68,-6.13 -4.22,-3.56 -5.65,-1.88 -20.66,-0.08 -8.39,-2.64 -4.01,-9.89 -1.2,-21.18 -3.39,-8.74 -8.05,-10.46 -9.87,-9.35 -8.82,-5.56 -20.5,-23.84 -11.41,-9.6 -12.23,-3.78 -8.69,-5.96 -31.81,-48.07 -6.82,-36.2 -0.68,-38.66 8.33,-23.74 -0.12,-7.64 -18.7,-14.3 -9,-8.93 -3.98,-10.02 -1.87,-21.15 -3.91,-10.73 -4.93,-7.11 -5.3,-10.45 -3.95,-12.61 -5.91,-29.26 -1.08,-14.57 2.15,-13.43 4.59,-14.26 3.51,-14.88 -1.17,-15.52 -10.46,-16.18 -13.76,-7.18 -12.12,-9.59 -5.53,-23.27 -1.91,-22.54 -5,-18.76 -8.11,-16.01 -48.15,-64.96 -5.16,-13.5 -1.75,-16 -3.93,-8.66 -5.2,-6.62 -5.56,-9.84 -5.31,-16.85 -5.1,-21.6 1.46,-45.9 31.18,-57.33 1,-34.72 -7.34,-13.26 -20.29,-20.74 -4.29,-14.78 0.59,-18.078 -1.48,-4.942 -4.91,-11.05 -3.12,-5.43 -5.03,-4.711 -2.33,-4.777 -0.94,-4.641 0.33,-2.82 0.57,-2.821 -0.25,-4.941 3.48,-20.75 -1.85,-12.398 -10.24,-5.352 -4.27,-5.269 -11.36,-35.809 -2.31,-15.379 8.56,-39.082 -0.73,-18.148 -4.56,-7.262 -12.65,-12.981 -2.77,-6.609 1.64,-23.961 2.17,-12.019 2.85,-5.168 10.99,-6.012 9.9,-14.371 16.29,-34.137 4.4,-5.723 4.74,-4.277 3.86,-5.871 1.44,-10.621 -1.86,-3.961 -3.32,-11.258 -1.8,-0.539 1.63,-0.203 -26.83,-8.93 -18.22,-9.711 -33.33,-26.25 1.77,-0.777 12.34,-9.832 2.57,0.012 0.02,-11.121 -3.39,-6.278 -6.11,-1.902 -7.75,1.82 -4.4,-2.269 -1.08,-3.481 1.54,-4.512 5.23,-7.66 0.72,-2.797 -0.14,-2.902 -1.07,-3.141 -1.36,-1.839 -11.73,-10.168 -9.7,1.629 -9.68,6.46 -11.6,4.309 -8.85,-2.41 -0.06,-6.828 3.67,-6.942 2.44,-2.75 3.56,-5.269 1.12,-6.289 -2.63,-10.34 -15.28,-19.172 -21.14,-8.008 -52.32,3.36 -20.05,-3.762 -28.8,-11.77 -5.09,-0.918 -5.79,2.61 -2.95,4.09 -2.01,4.039 -3.07,2.558 -21.97,7.461 -16.13,10.211 -3.86,18.25 14.45,31.199 -20.53,-1.578 -10,1.848 -9.67,5.891 -17.66,4.128 -37.69,-5.617 -19.46,3.34 -6.72,5.43 -6.81,1.918 -6.81,-1.571 -6.83,-5.089 -14.13,-3.911 1.55,-12.418 7.39,-15.57 3.32,-13.328 -5.93,-9.211 -11.47,-9.269 -12.42,-6.75 -19.92,-3.891 -1.73,-20.93 -19.72,-10.91 -11.55,-14.281 -9.84,-17.121 -4.13,-14.11 90.06,6.45 14.07,6.332 11,-9.442 11.06,-10.57 7.6,-11.481 -6.17,-12.058 -7.22,-4.36 -7.78,-1.929 -8.01,-4.422 -11.4,-14.617 -4.1,-1.5 -6.9,-0.68 -14.6,-14.281 -5.44,-22.672 2.32,-27.641 -52.4,-36.328 -22.61,-22.058 -15.07,-23.372 -50.96,-44.55 -22.96,-7.27 0.39,-19.039 -11.06,-5.312 -2.88,-1.868 -3.03,-6.98 -19.26,-6.2813 -7.35,-6.8203 -10.72,-17.3594 8.49,-20.8789 -18.09,-24.5508 -51.889,-37.08202 -82.633,-23.15628 -37.57,-20.1718 -12.609,-38.6211 2.82,-10.1481 9.531,-19.692 2.039,-12.359 -1.757,-15.348 -4.602,-10.492 -5.602,-9.379 -13.16,-35.762 -1.277,-5.359 1.918,-6.328 3.84,-5.582 5.48,-6.449 -0.301,-18.762 -3.218,-9.117 -8.961,-10.512 -8.25,-5.738 -25.789,-12.59 -20.899,-22.031 -7.801,-6.153 -55.789,-28.179 -106.25,-90.508 -10.793,-13.121 1.84,-14.719 17.793,-21.41 -28.351,-33.231 -28.41,-44.84 -9.079,-9.089 -3.269,-6.661 -0.211,-5.679 1.469,-5.289 1.66,-4.66 0.43,-3.442 -0.321,-8.469 1.313,-7.582 -1.703,-7.269 -9.129,-8.11 40.519,-26.988 10.84,-12.59 8.77,-17.16 0.589,-12.332 -26.918,-54.781 -2.871,-8.578 -6.64,-31.262 -0.84,-11.988 0.34,-10.301 -3.617,-7.289 -17.161,-4.652 -4.492,-0.348 -4.597,0.738 -5.981,2.18 -1.43,0.172 -1.281,-0.071 -1.289,-0.351 -47.07,-20.879 -19.27,-11.23 -3.383,-13.27 7.473,-15.52 12.988,-17.628 -2.757,-9.442 -6.332,-10.969 -11.219,-23.722 19.027,10.371 35.352,7 35.25,0.07 25.832,-12.672 25.527,11.953 41.051,44.7 50.5,30.941 20.648,20.387 -3.109,25.742 -5.328,2.539 -13.11,-5.469 -7.902,4.469 -3.098,4.832 -6.761,18.629 -0.239,4.488 -6.429,19.141 -2.793,11.191 4.672,15.008 17,21.481 22.937,28.21 25.703,20.762 23.938,6.86 25.301,0.328 25.152,5.55 66.969,42.782 49.507,8.207 51.141,-3.199 113.571,-32.95 11.43,-6.07 6.84,-11.219 1.08,-21.121 -6.01,-18.449 -20.94,-23.199 -4.5,-12.723 14,-25.789 26.49,-29.73 16.68,-30.629 -28.79,-52.352 -14.51,-39.418 -8.17,-37.871 6.18,-18.852 61.11,-15.238 11.51,-11.738 -1.03,-8.481 -5.66,-8.351 -6.44,-7.41 -3.67,-5.65 2.19,1.04 1.06,-11.06 -0.07,-11.61 -1.15,-1.06 0.09,-8.62 -1.73,-4.61 0.39,-3.46 6.66,-5.35 7.32,-1.23 6.04,4.32 5.67,5.54 6.55,2.47 17.38,-8.22 50.87,-60.48 3.7,-2.62 2.5,-11.9 8.31,-23.31 4.94,-20.46 3.89,-11.3 5.14,-9.09 -11.27,-5 -8.43,-10.02 -6.59,-13.22 -5.27,-14.86 -11.04,-17.53 -15.98,-12.86 -17.8,-8.5 -16.66,-4.45 -19.18,0.68 -5.39,-0.66 -2.88,0.53 -6.15,4.25 -2.96,0.48 -3.69,-2.89 -3.51,-5.08 -2.38,-4.7 -0.05,-1.95 -23.2,-2.65 -12.16,-6.85 -10.33,-16.09 -4.68,-18.14 -1.11,-19.79 1.53,-19.92 7.5,-46.29 15.03,-24.08 20.58,-16.25 20.26,-4.68 10.28,-4.18 17.24,-18.03 10.18,-8.19 25.13,-7.09 9.41,-6.96 4.33,-16.65 -2.01,-6.27 -9.44,-19.29 -2.33,-9.19 1.3,-9 8.21,-13.3 2.86,-8.35 3.11,-46.04 5.49,-16.28 35.19,-20.86 33.38,-26.49 7.39,-12.35 5.08,-13.97 6.01,-12.61 10.24,-8.17 33.14,-15.41 5.96,-4.79 -1.13,-13.82 -7.34,-16.78 -16.86,-28.67 -26.05,-29.66 -4.21,-6.45 3.21,-32.3 7.91,-22.47 -0.41,-17.46 -21.76,-17.4 -15.58,-26.92 -5.4,-5.27 -4.1,1.6 -9.53,12.18 -6.18,2.85 -27.86,-6.96 -28.4,-12.09 -10.39,-9.45 -14.25,-23.53 -11.8,-10.15 -7.19,-1.54 -18.37,0.25 -6.24,-2.59 -4.39,-9.31 3.49,-6.12 4.42,-5.23 -1.72,-6.85 -25.93,-11.67 -28.01,10.75 -28.42,16.41 -27.41,5.41 -6.01,-2.87 -14.45,-10.57 -6.94,-3.71 -6.199,-0.86 -14.211,0.93 -7.02,-1.06 -27.718,-14.88 -14.582,-11.52 -9.719,-12.3 13.199,-21.53 12.488,-11.46 0.992,-7.84 -1.16,-8.87 1.828,-10.11 8.961,-16.64 8.102,-7.36 27.527,-3.37 20.252,-15.63 4.16,-32 -3.29,-62.13 13.14,-23.63 25.25,-23.1 53.59,-33.21 14.85,-4.19 39.15,6.8 13.69,-1.5 39.2,-17.3 13.83,-15.91 3.13,-5.65 1.55,-6.58 -0.33,-3.38 -0.81,-2.97 -0.04,-5.34 -1.5,-0.77 -4.35,-17.41 -0.61,-1.42 8.41,-24.27 3.58,-27.55 2.8,-9.54 22.96,-46.1 4.24,-14.58 -14.17,0.05 -28.38,9.19 -14.58,0.25 -18.43,-9.54 -15.03,-17.6 -6.23,-22.41 8.34,-23.82 -11.28,-8.05 -28.44,-46.54 -41.27,-30 -8.86,-14.7 1.55,-34.62 17.02,-31.58 23.51,-26.12 20.36,-17.92 -27.11,-14.07 -5.85,-9.44 -7.57,-34.5 -2.15,-6.6 -0.31,-5.63 2.7,-10.29 3.17,-5.14 17.01,-21.06 5.98,-11.06 8.82,-22.8 4.24,-8.49 6.98,-7.71 15.55,-11.82 7.12,-8.79 4.77,-11.03 2.38,-10.45 3.39,-9.79 7.3,-8.74 10.54,-4.62 9.53,1.31 9.65,2.99 10.75,0.66 9.99,-3.17 46.39,-26.13 31.76,-12.44 83.86,-54.27 14.91,-6.69 20.75,-3.93 10.41,-4.29 5.38,-8.21 4.11,-9.33 7.37,-7.5 7.65,-1.93 32.16,-1.45 139.87,37.53 23.09,1.44 33.25,20.96 24.63,-4.88 -11.59,-35.93 9.42,-20.82 17.41,-18.02 12.14,-27.24 -1.88,-19.2 -9.13,-11.8 -11.73,-8.71 -8.94,-9.73 -5.35,-13.46 -7.04,-24.8 -6.43,-12.7 -18.23,-19.61 -42.07,-34.3 -16.63,-25.6 -35.46,-37.75 -12.96,-22.78 3.38,-28.17 15.15,-53.84 -10.7,-7.39 -3.41,0.04 -3.4,0.55 -3.27,-1.44 -0.74,-4.06 0.91,-14.14 -0.57,-3.81 -6.63,-3.12 -4.66,0.4 -5.37,1.91 -8.38,1.28 -7.89,-3.21 -5.64,-8.1 -17.94,10.87 -15.76,-5.92 -12.24,-13.17 -2.37,-14.56 -13.38,-3.07 -7.88,-10.78 -1.19,-13.59 -3.71,-10.51 -15.45,-1.79 2.08,4.01 3.63,10.37 -39.33,-4.27 -7.63,1.74 -10.97,4.76 -9.67,-8 -15.99,-22.86 -7.63,-6.15 -7.69,-4.66 -9.06,-2.82 -11.77,-0.78 -13.19,-4.41 -8.56,-10.23 -6.24,-10.32 -6.19,-4.6 -3.1,-8.08 -1.01,-52.52 -1.12,-8.62 0.29,-5.8 -0.69,-4.55 -4.02,-4.33 -7.31,-1.96 -3.04,5.78 -1.33,7.73 -2.25,3.87 -21.66,-5.22 -20.95,-10.34 -19.93,-5.88 -18.26,8.22 -13.36,-10.22 -13.29,-7.26 -12.52,-9.71 -11.04,-17.16 1.59,-0.27 -1.45,-18.17 -0.6,-0.53 -1.41,-2.95 -30.61,-50.23 -1.98,-2.19 -3.11,-0.62 -6.02,0.16 -2.34,-3.13 -2.14,-15.05 -4.14,-5.06 -4.63,-0.81 -5.6,0.35 -4.81,1.73 -1.92,3.29 -2.11,6.03 -4.81,-4.93 -4.23,-8.25 -0.28,-4.24 -41.71,-0.87 -20.27,5.74 -15.469,13.05 -10.77,-11.17 -9.312,-19.07 -6.57,-20.1 -6.93,-32.83 -9.57,-6.63 -12.61,-4.22 -13.469,-11.06 -7.359,-14.35 -4.191,-12 -7.77,-7.97 -17.898,-2.57 -21.953,-10.83 -12.618,-9.83 -2.031,-9.31 4.809,-1.86 78.312,1.64 1.5,-6.25 -7.812,-18.48 -3.668,-5.24 -3.27,-2.58 -2.722,-4.28 -2.047,-10.37 1.25,-6.44 3.629,-5.24 3.918,-4.16 1.75,-3.35 -5.399,-7.03 -34.301,-26.03 4.993,-15.37 -9.09,-1.95 -15.922,-6.7 -8.43,2.05 -3.121,5.49 -1.508,8.77 -3.351,9.32 -8.2,7.22 -21.179,2.68 -15.731,-8.93 -12.992,-12.97 -12.629,-9.28 -9.379,-1.29 -19.84,2.8 -9.601,-0.34 -17.328,-5.87 -16.403,-8.23 -25.769,-1.12 -7.738,-5.5 -7.172,-13.83 -0.688,-8.68 0.117,-6.84 -4.628,-8.15 11.468,-18 -7.347,-6.03 -29.571,1.97 -2.539,4.88 -1.351,10.47 -3.539,10.54 -8.5,5.04 -9.039,1.5 -12.032,5.56 -6.519,1.41 -55.25,3.52 -9.051,-1.39 -18.461,-10.82 -6.07,-15.22 -2.93,-19.12 -8.68,-22.63 10.243,-6.18 5.226,-2.13 6.91,-0.09 -0.226,-6.88 -14.102,-3.32 -54.269,2.52 -15.039,3.65 0.238,6.89 28.621,-0.62 4.418,3.35 5.512,18.26 0.3,11.31 -7.062,5.24 -58.758,5.44 -5.25,3.77 -15.012,11.4 -23.5,6.7 -25.078,0.39 -19.972,-7.23 2.261,6.52 1.828,10.65 2.383,5.38 -13.519,0.84 -12.91,-2.98 -24.153,-11.14 13.41,-6.07 16.52,-20.24 13.332,-6.38 -0.281,-7.58 -25.641,5.95 -13.039,0.54 -5.871,-8.32 -3.93,-15.11 -8.277,-4.98 -18.813,1.89 -38.898,18.6 -7.77,6.02 -4.132,15.3 6.613,9.81 26.75,12.45 -4.723,4.35 -5.379,2.47 -14.59,1.68 -7.261,3.7 -1.27,15.31 -7.258,3.7 -18.171,2.57 -15.598,5.73 -29.582,18.32 5.558,19.3 -15.277,9.08 -41.8398,3.4 -2.7031,-2.3 -1.8984,-5.19 -2.5586,-5.1 -4.8828,-2.16 -5.4102,1.4 -4.2695,2.76 -4.0391,3.96 -10.8203,4.87 -6.2304,6.09 -18.78911,27.77 -6.89844,3.99 -14.47265,-10.29 -10.6484,-5.28 -10.1016,-2.16 -4.2305,5.43 -8.2773,7.17 -19.5313,3.41 -20.789,-0.44 -12.7105,-4.11 -10.75,6.24 -23.661,-0.5 -10.148,4.44 -5.633,11.57 3.012,11.2 6.359,11.05 7.59,17.9 2.242,7.09 1.028,8.29 -2.309,-0.96 -5.289,3.82 -5.43,6.39 -2.992,6.66 2.512,57.48 -22.09,16.73 -109.172,-19.89 -35.449,6.9 -11.949,-4.14 -51.321,1.48 -19.75,6.55 -20.379,23.37 -2.992,25.32 12.211,21.96 25.781,12.96 72.118,-3.38 22.66,5.89 16.051,11.77 17.492,19.59 11.59,24.49 -1.653,26.42 -24.277,-14.48 -23.121,-7.28 -20.563,4.61 -16.269,21.03 -4.969,17.35 -0.051,9.49 -3.91,5.91 -16.437,6.47 -6.141,1.15 -19.16,0.04 -3.172,3.81 -10.848,16.42 -4.769,3.42 -5.864,-6.88 -5.886,-14.59 -4.653,-15.02 -1.82,-8.2 3.34,-21.22 6.832,-9.56 9.609,-5.81 11.231,-10.48 8.379,-28.3 -10.129,-24.37 -19.731,-12.73 -20.148,6.55 -15.91,-4.81 -43.012,27.8 -20.879,-8.41 -9.043,-6.57 -19.969,-3.39 -8.121,-6.5 -7.379,-14.97 3.481,-6.04 7.609,-7.28 5.051,-18.43 -31.031,10.81 -32.699,20.74 -26.129,27.26 -10.969,29.91 5.418,65.01 -1.121,19.08 -4.149,16.98 -7.359,19.61 -10.512,16.97 -13.418,9.07 -0.359,-6.92 22.066,-39.5 2.903,-11.86 -4.09,-79.64 9.289,-37.94 20.68,-24.08 23.8,-18.78 18.52,-22.4 -29.211,-9.86 -118.738,11.69 -32.52,10.92 -21.441,12.24 2.519,7.87 8.301,18.73 7.328,22.66 -0.308,19.62 -20.418,18.09 -35.153,9.23 -249.799,22.21 -19.4,5.38 -16.71,9.7 -5.62,7.21 -3.87,9.93 -12.43,59.82 -1.11,3.93 -19.85,18.53 -46.46,7.6 -49.22,-2.29 -28.08,-11.14 11.43,12.96 18.3,4.68 38.26,1.1 18.96,3.42 13.83,5.83 10.49,10.15 8.66,16.25 -45.52,-3.89 -24.43,-6.74 -37.89,-24.13 -51.11,-12.29 -22.68,-11.8 -55.28,-40.85 -6.6,-10.19 -3.24,-16.91 -11.53,-12.65 -69.98,-24.42 -0.43,-6.89 27.55,0.04 27.32,12.54 43.75,33.76 45.35,44.18 25.74,19.02 28.03,7.5 -0.5,-8.21 -169.58,-122.95 -94.49,-43.76 -27.82,-20.53 -72.16,-77.58 -17.52,-6.39 -31.39,18.22 -19.69,-2.32 -30.17,-12.7 -117.79,-77.91 -14.69,-15.92 -6.07,-9.7 -9.35,-20.44 -6.71,-10.29 -20.25,-15.55 -11.07,-10.86 -5.38,-12.95 -25.23,-33.19 -7.88,-1.41 -3.49,4.48 -4.55,7.51 -10.74,7.16 0.49,6.97 16.55,10.46 8.05,7.6 -3.27,3.98 -22.63,1.48 -9.98,-2.47 -4.52,-7.85 3.97,-31.11 12.48,-16.17 12.96,-9.31 5.43,-10.68 -4.57,-13.29 -16.79,-16.1 -4.36,-11.43 -4.28,-28.37 -3.64,-14.31 -3.64,-6.01 -6.83,-5.57 -4.64,-11.76 -5.43,-8.48 -9.04,4.08 -3,9.09 3.48,9.65 12.29,19.18 -17.89,-1.33 -7.82,-12.4 0.87,-17.57 8.03,-17.04 21.29,-20.2 2.89,-10.82 -13.8,-11.66 -5.71,-0.43 -11.22,6.85 -7.06,2.2 -3.7,-5.62 -0.97,-25.58 -3.62,-5.62 -9.91,-4.44 -34.7,-31.88 5.64,-7.82 4.14,-15.76 4.92,-7.24 6.89,-4.65 12.74,-2.4 22.56,-8.96 8.75,-4.88 4.44,-9.34 2.27,-19.64 -0.11,-19.69 -2.42,-19.96 -13.62,-55.76 -3.17,-7.62 -4.63,4.39 -9.39,16.47 -8.94,-10.87 -1.69,-9.46 2.95,-8.78 5,-8.86 3.6,-2.01 11.08,0.05 4.37,-3.16 1.77,-6.38 -1.28,-13.41 3.68,-84.86 6.87,-22.55 53.12,-62.12 24.16,-38.6 -1.63,-27.51 -1.57,-6.7 -56.72,-5.87 -21.6,0.46 -20.84,3.87 -16.55,6.56 -9.42,6.95 -7.4,9.03 -5.73,10.84 -4.41,12.63 -5.33,1.94 -24.01,2.33 -8.62,2.52 -14.69,-8.24 -25.87,12.15 -28.55,-19.13 -13.94,-1.3 -14.08,1.51 -13.37,-0.44 -13.75,-6.88 -26.61,-22.35 -13.8,-7.42 -17.39,-1.46 -31.88,7.35 -16.94,-0.01 -15.1,-6.38 -36.78,-24.85 -7.28,-9.09 5.9,-21.81 9.36,-12.28 -0.02,-4.84 -22.16,0.39 -17.88,4.78 -36.93,15.84 -15.96,0.78 -6.83,-5.37 -8.27,-17.47 -5.96,-5 -8.62,0.4 -8.97,3.8 -15.97,10.76 -14.93,5.22 -14.96,13.84 -11.6,18.31 -4.65,18.41 -13.06,1.65 -25.19,7.63 -46.14,26.3 -9.22,8.97 -21.95,14.77 -26.08,-0.73 -52.16,-11.82 -38.49,8.06 -13.61,-5.17 -4.38,-5.48 -7.55,-15.88 -4.44,-6.14 -20.9,-13.47 -15.1,-13.71 -10.05,-5.39 -13.82,-2.33 -21.67,-0.64 -11.01,2.7 -9.6,7.36 -15.01,15.44 -6.4,17.82 -7.34,42.47 -9.67,19.6 -12.29,6.7 -15.32,2.16 -18.93,6.13 -43.49,35.52 -16.64,8.68 -50.48,11.42 -14.59,7.59 0.72,3.38 -0.35,2.84 -1.42,2.4 -2.33,1.83 5.37,27.47 11.09,22.3 16.28,13.29 20.8,0.15 -8.92,15.66 -18.59,7.56 -12.51,9.53 9.08,21.95 -92.51,17.31 -8.61,5.02 -41.83,34.42 -12.63,0.19 -24.9,-7.07 -25.82,3.67 -16.56,-42.65 -18.83,-5.78 -10.48,16.58 -10.38,39.34 -13.8,23.22 -12.12,27.42 -6.52,4.33 -7.67,1.13 -3.75,4.83 5,15.46 -18.75,6.99 -100.92,9.62 -28.18,-6.29 -8.96,1.99 -13.1,11.6 -6.94,16.09 -4.57,17.81 -6.54,16.72 -13.24,14.37 -16.59,6.95 -69.35,11.35 -5.9,4.36 -12.47,12.38 -6.68,3.34 -8.64,-1.92 -8.3,-5.52 -8.17,-3.33 -8.44,4.53 -11.78,14.2 -6.58,6.15 -23.35,11.83 -33.29,24.41 -13.79,3.84 -16.05,0.01 -13.97,4.53 -27.13,13.93 -14.23,2.86 -22.56,0.59 -19.59,-5.56 -5.48,-15.58 -0.59,-23.92 -14.61,-29.98 7.8,-13.45 -6.57,-4.19 -3.52,-4.41 -6.11,-10.67 11.19,-5.32 8.59,-13.35 3.91,-17.39 -2.62,-17.8 -8.3,-11.15 -11.15,-2.84 -28.67,6.81 -102.5,7.31 -13.02,7.1 -32.11,-5.05 -16.08,0.77 -16.07,4.9 -3.61,4.23 -0.13,4.63 0.75,4.59 -1.43,3.8 -20.67,21.66 -15.41,-3.8 -16.04,-13.12 -26.38,-30.12 -12.37,-0.51 -11.2,16.55 -14.33,32.93 -12.41,7.86 -42.42,15.99 -13.52,-0.67 -16.47,-8.8 -51.07,-2.15 -65.75,-16.53 -28.67,0.42 -30.99,16.31 -4.21,5.42 -3.21,6.02 -5.1,5.66 -10.12,4.13 -8.22,4.81 -1.5,7.43 -0.21,7.96 -4.35,6.69 -12.29,12.59 -8.08,17.54 -2.68,19.73 3.93,19.1 -15.4,-4.62 -24.43,-3.91 -21.65,5.04 -7.44,21.75 -46.08,35.5 -11.25,13.26 -5.69,-10.53 -6.61,-7.84 -6.69,-1.75 -6.29,8.03 -42.81,-26.63 -21.13,-9.61 -25.22,0.87 -41.82,25.66 -20.79,2.96 -4.45,-26.29 -7.47,-1.62 -14.79,-7.86 -6.55,-0.26 -7.31,6.13 0.88,6.62 1.97,7.08 -3.96,7.26 -3.47,1.53 -13.28,1.53 -5.13,3.12 0.65,4.15 2.12,4.64 -0.64,4.88 -26.84,46.28 -13.13,13.86 -26.03,20.69 -8.12,2.34 -8.12,-0.24 -7.91,1.94 -7.37,9.07 -3.38,10.67 1.58,5.87 3.35,4.79 1.33,7.73 -10.69,41.38 -20.98,10.09 -64.29,-3.92 -64.44,13.11 -30,13.91 -25.87,24.75 -8.55,12.83 -13.07,5.54 -27.82,6.96 -5.5,5.85 -12.44,10.25 -6.75,3.65 -30.95,0.92 -23.93,24.99 -26.12,18.98 -46.24,14.25 -14.18,11.21 -11.8,17.59 -1.81,15.33 8.42,13.74 18.87,12.56 -17.79,7.17 -19.13,-4.65 -15.99,-14.11 -8.42,-21.58 -5.62,-28.88 -8.82,-14.15 -14.44,-2.84 -22.1,4.7 -19.3,7.85 -16.73,12.66 -12.67,18.61 -7.19,25.39 7.88,8.55 38.11,31.93 12.05,12.57 16.83,33.6 14.39,43.18 2.01,41.06 -20.31,27.03 -9.73,1.35 -9.39,-2.08 -9.22,-0.47 -31.62,22.08 -24.3,10.77 -16.05,2.63 -13.07,-5.83 -8.85,-18.16 -5.87,-9.15 -9.51,-3.97 -10.42,-0.01 -8.6,2.45 -9.32,5.84 -3.38,5.6 -3.47,19.78 -0.09,9.91 3.14,6.48 0.8,5.24 -7.27,6.78 -14.45,9.34 -7.31,1.82 -17.39,-4.87 -17.76,-0.06 -10.13,-3.45 -8.96,-0.32 -2.94,9.53 0.09,21.98 -8.32,15.07 -21.78,14.39 1.56,13.58 3.65,23.33 8.67,30.36 11.56,-10.95 7.23,7.44 15.73,4.31 73.19,2.26 19.81,4.42 19.34,7.43 16.55,9.17 8.3,8.71 21.95,32.16 5.2,12.03 8.12,7.95 46.97,27.78 7.83,12.05 18.18,39.77 10.01,34.26 27.54,60.76 56.18,177.93 27.16,61.2 46.43,140.33 91.51,308 41.61,153.05 14.2,68.26 0.14,16.61 -2.78,32.32 1.97,9.31 24.93,27.87 4.05,6.61 3.71,13.23 20.65,49.24 18.11,17.49 20.01,-1.71 47.05,-18.1 28.55,0.69 17.44,9.43 2.23,16.86 -16.96,23.05 10.85,-1.36 -5.83,16.94 -52.65,63.63 -8.24,4.83 -3.44,2.7 -2.84,3.86 -3.45,2.94 -5.5,0.17 -3.83,-3.01 -2.12,-4.63 -1.53,-4.24 -2.21,-1.65 -6.42,-9.68 -42.54,-49.96 -15.2,-47.89 -10.45,-25.85 -6.8,-11.86 117.89,542.08 55.05,171.58 43.9,232.54 6.91,15.63 33.56,50.78 13.4,15.79 13.13,3.17 7.71,-5.11 1.3,-5.3 -1.53,-8.2 -2.08,-12.51 -2.56,-3.41 -2.44,-5.69 -0.79,-5.91 1.62,-6.27 6.59,-14.36 5.65,-9.46 47.34,-47.41 30.6,-22.65 11.64,-5.3 81.59,-117.31 17.99,-35.24 5.09,-34.64 -0.72,-22.45 5.37,-42.6 2.12,-104.81 1.64,-13.01 18.77,-67.74 22.55,-38.18 26.66,-33.13 23.55,-17.9 5.99,-8.69 4.81,-14.72 0,-10.47 -4.44,-17.47 -1.78,-23.3 0.68,-23.49 4.47,-18.75 9.56,-9.46 -1.19,15.8 0.8,31.87 -3.18,14.29 10.93,29.03 -5.97,25.16 -15.41,20.05 -17.24,13.65 24.24,-4.12 19.77,-6.95 17.12,-11.23 16.01,-16.91 -15.61,37.29 -29.57,19.3 -32.85,15.21 -25.42,25.12 -10.87,30.66 -5.63,36.43 -4.15,216.35 -4.97,44.23 -17.53,73.2 -11.86,33.03 -14.03,29.98 -31.03,46.02 -100.57,94.25 -2.07,5.04 -0.43,21.28 -4.32,5.32 -24.62,12.73 -36.45,47.01 -22.13,12.5 -14.41,4.94 -11.69,9.602 -9.63,12.609 -7.93,13.73 -12.97,12.93 -28.16,-2.562 -13.21,7.55 23.35,75.621 1.76,14.239 53.58,9.25 15.16,-2.637 42,-64.801 8.08,-7.039 8.13,-9.953 51.29,-32.258 -14.91,21.938 -62.71,65.402 -17,26.609 -2.81,10.512 0.41,13.129 -1.29,16.957 -3.11,16.731 -5.08,12.492 9.17,3.488 6.33,5.84 4.78,6.09 4.36,4.519 9.65,6.633 12.93,5.93 7.38,0.051 6.03,-2.172 5.26,1.949 4.93,12.492 0.43,11.668 -2.94,12.043 -4.44,10.418 -3.98,6.461 4.63,3.078 8.83,7.391 4.33,2.711 -11.68,10.121 -6.53,16 -6.31,37.957 14.9,-13.399 12.74,-2.441 11.52,7.863 10.91,17.668 0.88,6.891 -2.7,5.301 -3.72,5.777 -4.55,4.781 -14.05,7.281 -1.55,9.469 0.6,11.301 -3.58,15.789 1.53,10.309 -0.53,4.441 -2.57,2.082 -9.47,4.648 -2.36,2.122 -3.96,5.808 -4.16,4.27 0.62,4.761 10.42,7.879 -16.26,16.032 -5.75,2.257 -2.92,2.543 0.89,5.008 1.69,5.27 -0.53,3.39 -4,1.391 -11.79,0.648 -7.7,3.45 -7.05,0.39 -6.44,2.231 -6.33,8.699 0.34,9.473 6.39,10.136 8.86,8.364 7.77,4 -1.33,21.878 10.33,13.481 57.3,26.187 8.1,13.313 0.44,9.039 -2.24,9.91 -0.09,15.942 -13.67,25.91 -34.12,6.808 -30.78,-13.5 -3.61,-35.179 -19.97,8.5 -12.38,19.757 -11.18,23.063 -11.94,5.098 -7.49,2.382 -21.81,17.379 -15.41,17.41 -9.72,5.641 -42.57,-7.601 -19.41,3.64 -5.13,24.852 -0.79,28.547 -9.43,21.933 -16.13,14.656 -20.5,7.051 -50.99,9.141 -19.83,9.59 8.42,12.8708 -10.83,13.6289 -39.96,12.8125 -22.61,26.2383 -20.83,8.8281 -8.88,7.3633 -4.28,9.9101 -5.2,25.4688 -5.67,13.0078 -1.67,-13.7969 1.89,-18.74217 -0.23,-9.89843 -3.97,-4.4805 -6.67,4.9492 -5.77,11.05864 -5.76,83.85156 5.99,18.8086 -11.53,6.9214 -4.29,13.168 -1.42,15.524 -3.03,13.57 -9.59,14.957 -10.31,11.77 -7.69,12.07 -3.73,29.41 -8.95,9.653 -12.29,6.168 -12.36,3.089 -5.56,7.653 -16.06,49.449 -36.17,50.437 -21.17,20.372 -18.83,9.628 -7.71,8.422 -3.14,18.149 0.05,21.652 1.86,19.098 5.24,23.66 6.84,10.723 21.5,11.488 -2.08,16.269 12.75,10.121 31.68,13.899 11.57,15.402 18.56,38.11 11.88,18.488 14.68,8.152 1.25,18.93 -5.62,20.891 -6.27,14.058 -10.13,13.32 -41.92,32.04 -85.17,27.992 -24.67,18.808 10.96,5.371 9.26,6.528 9.75,4.992 25.14,-0.102 6.4,3.082 3.66,8.778 4.64,16.07 2.49,14.973 -5.48,18.648 0.23,17 2.78,12.25 4.99,13.82 6.76,12.571 8.04,8.437 19.28,5.231 70.57,-2.668 5.75,3.211 5.48,1.847 5.8,0.172 4.85,-8.359 4.9,-6.082 37.21,-15.781 11.59,-1.289 -4.04,8.261 8.73,-1.351 7.74,-3.5 6.7,-5.828 5.73,-8.122 -15.49,2.192 -1.17,-8.281 27.74,-27.121 30.64,-10.629 6.92,-6.289 14.15,-20.34 16.29,-10.293 40.58,-6.969 -13.75,12.289 -30.21,10.641 -11.63,12.511 -19.02,30.469 -23.47,25.789 -23.86,19.539 -14.46,7.172 -17.53,4.36 -6.35,3.48 -8.99,12.301 -27.42,12.488 -105.22,7.77 -25.81,-11.071 -6.42,-7.429 -4.14,-6.84 -4.99,-6.36 -8.89,-6.019 -23.48,-3.34 -20.25,-15.051 -15.09,-3.648 -14.88,2.418 -12.8,7.621 -9.77,11.68 -15.22,24.152 -11.04,8.867 -12.4,3.5 -7.07,0.723 -5.81,-0.481 -6.78,-4.301 -3.96,-7.089 -2.14,-6.621 -1.29,-3.09 -21.94,4.019 -65.22,47.692 1.14,7.57 17.01,-5.129 30.15,-20.453 17.58,0.492 15.21,13.258 -4.78,15.863 -12.86,17.18 -9.12,17.328 -6,-2 -2.7,-1.33 -2.63,-2.1 2.47,-8.511 -0.32,-4.579 -5.65,-10.3 -5.61,0.84 3.54,32.41 -6.1,18.35 -28.18,25.01 65.28,26.85 7.91,-1.63 7.36,-4.52 12.24,-4.35 -2.39,-5.91 -0.91,0.08 -3.54,-1.59 4.58,-7.74 8.45,7.33 28.12,10.7 3.47,7.04 -11.17,4.06 -18.49,3.16 -11.6,6.77 9.22,14.65 -11,10.17 -15.46,4.01 -8.66,7.45 9.38,20.22 -8.53,15.99 9.51,6.16 47.31,-4.4 28.56,3.55 15.5,-3.36 -11.78,5.15 -20.68,-0.5 -13.69,2.21 -53.99,31.31 -11.56,3.64 -10.04,0.28 -25.71,-4.59 -28.23,4.26 -7.16,-1.35 -4.97,-3.23 -4.75,-0.1 -6.69,8.26 11.7,0.36 14.42,6.32 13.15,10.85 7.96,14.07 -13.26,-9.75 -10.97,-0.1 -10.94,2.77 -13.26,-1.09 5.94,-2.19 4.25,-2.88 2.38,-4.7 0.54,-7.67 -19.07,2.57 -8.46,3.4 -7.23,7.02 -5.2,-26.3 -11.16,-4.4 -23.55,12.86 -12.74,1.13 -41.29,-7.68 -14.67,0.88 -11.06,2.93 -9.05,6.45 -8.67,11.28 -0.8,4.47 -8.22,23.51 -2.67,1.65 -2.15,6.38 -6.7,4.59 -8.32,2.73 -2.09,1.52 1.35,1.41 0.36,5.49 -12.1,6.9 13.93,7.17 20.47,-3.12 7.61,-24.07 5.18,-0.8 5.05,5.29 4.79,1.78 4.91,-2.55 5.76,-7.69 1.96,7.03 6.72,15.63 9.6,-15.65 18.02,-9.14 20.7,-1.19 17.61,8.1 -4.43,8.42 35.54,36.21 6.57,20.17 -13.47,24.46 -1.05,-6.88 6.02,-8.63 -0.09,-7.29 -5.36,-4.69 -9.62,-1.23 9.49,-9.22 -4.1,-4.8 -3.78,-1.89 -8.77,0.76 -2.93,6.81 -33.81,29.81 15.43,-4.63 14.1,-7.6 -6.86,14.2 -8.06,7.16 -22.5,7.63 9.17,-8.45 -16.64,-5.01 -39.28,1.82 -8.95,-6.5 -8.59,-12.31 -15.84,-4.47 -25.77,-2.18 1.06,6.82 5.18,-0.81 1.29,8.28 -10.08,-0.13 -2.65,-1.46 -3.93,-4.29 -5.1,0.79 -0.79,13.98 1.01,11.41 3.68,8.2 7.22,4.19 -10.67,2.07 -6.98,7.08 -3.37,11.04 0.2,14.06 -5.58,0.87 -0.39,-8.86 1.41,-14.37 -0.18,-7.9 -4.15,-26.47 0.99,-11.6 4.7,-13.24 6.69,-12.47 6.58,-9.07 -3.08,-7.29 -1.68,-3.03 -2.69,-3.98 -1.5,4.28 -5.98,12.35 -6.91,-3.29 -5.64,8.1 -6.26,12.79 -8.63,10.74 2.13,-15.45 -5.32,-6.3 -6.4,4.03 -1.39,15.16 0.09,17.42 -5.25,-0.93 -4.43,-11.87 2.21,-15.44 -10.67,2.41 -4.11,2.29 -4.04,6.01 -25.7,-9.16 -12.11,0.86 -9.52,8.02 5.39,2.32 5.62,3.7 -6.2,7.91 -7.91,6.92 -8.45,0.81 -8.17,-10.78 3.09,-2.19 2.64,-4.27 3.27,-2.72 -14.09,-36.07 -0.81,-32.38 8.41,-27.71 13.59,-22.08 -10.14,2.12 -15.03,6.84 -5.64,-4.09 -4.61,0.72 -4,33.36 0.37,10.28 3.58,11.89 9.96,17.63 4.01,14.61 2.26,26.16 -2.22,20.03 -5.94,15.93 -8.76,13.97 -6.41,5.63 -7.83,4.95 -6.4,5.46 -1.89,7.29 3.96,14.09 13.99,29.58 60.35,17.27 -1.82,6.28 -0.64,6.42 0.55,8.08 1.73,10.94 -3.87,-1.79 -9.33,-2.1 -3.85,-1.79 3.22,23.45 1.7,7.49 -4.65,0.74 -7.74,-10.75 -7.69,3.34 -9.19,6.75 -12.19,-0.52 9.75,-5.73 5.87,-9.25 2.79,-12.58 0.88,-15.77 -3.89,-0.14 -0.98,-0.7 -0.22,-1.84 -1.72,-3.96 -7.89,7.93 -5.89,-3.2 -6.98,-6.2 -11.1,-1.22 2.35,-3.79 5.92,-13.05 -11.25,-3.37 -5.26,-9.8 -4,-9.87 -7.65,-3.51 -4.83,5.3 -18.64,29.53 -18.23,8.57 -31.42,14.24 -19.94,3.94 14.38,3.28 13.07,-3.61 28.19,-15.72 1.1,6.88 -10.77,9.14 -12.6,6.86 -30.92,8.29 1.34,8.25 6.85,-0.34 3.47,1.84 1.8,5.47 1.61,10.21 3.34,3.98 12.44,-4.01 4.83,0.66 13.58,23 8.9,12.14 10.88,6.06 1.33,8.2 -19.37,-16.51 -23.74,-16.03 -24.88,-9.88 -16.3,-1.09 5.19,-4.34 3.96,-5.4 2.59,-6.27 -1.12,-6.94 -63.83,-5.4 -10.07,5.09 -2.32,6.55 -17.55,32.43 -6.94,24.44 -6.73,10.96 -2.44,5.4 -1.46,8.72 -9.31,-5.47 -12.23,2.31 -25.34,10.89 -19.37,2.33 -6.15,1.9 -5.29,4.47 -6.89,11.03 -3.18,2.59 -28.44,3.35 -13.58,7.54 -3.69,16.16 -5.92,4.05 -42.65,-15.35 -9.1,12.55 -15.88,2.32 -17.32,-0.68 -13.37,3.67 -0.35,3.89 -9.8,29 -4.26,6.67 -4.64,5.2 -1.56,7.14 5.31,12.26 -6.43,1.39 -4.32,2.91 -8.2,7.43 -0.32,12.46 -11.28,18.48 -17.63,16.8 -19.06,7.21 2.91,-23.78 -8.29,-15.77 -19.81,-15.62 -14.56,6.74 7.42,-1.86 6.21,0.59 5.24,4.26 4.19,9.33 -9.56,-1.75 -7.49,0.87 -6.08,-1.49 -5.44,-9 -18.1,21.15 -9.19,5.65 -11.89,3.29 -8.11,6.77 -7.34,14.69 -4.26,18.63 0.8,18.44 -10.08,-11.85 1.51,-17.45 7.48,-16.87 7.5,-10.2 -1.19,-6.87 -9.47,0.87 -7.78,-1.37 -7.61,-3.75 -8.87,-6.19 -9.88,26.84 -10.85,-1.13 -4.48,-13.23 9.52,-9.76 -2.84,-3.76 -3.14,-2.99 -1.19,-6.9 20.35,-3.53 -1.43,-8.28 -28.33,-19.27 -12.56,-4.81 -19.3,-2.04 -108.54,24.41 1.87,8.26 1.08,15.75 2.38,6.25 5.13,2.05 7.03,-1.36 6.65,0.4 4.08,7.01 0.95,20.2 -6.24,30.35 -1.84,31.53 -7.66,22.16 -27.3,52.34 -56.61,63.89 -6.67,5.33 -11.12,-4.45 -11.14,-9.5 -10.66,-3.52 -18.29,25.8 -12.38,4.56 -25.4,3.11 -52.92,25.93 5.6,3.03 4.96,6.02 4.35,6.45 5.96,7.31 1.25,3.86 1.62,3.9 3.33,3.51 2.6,-0.33 4.63,-7.67 3.94,-2.51 248.45,10.88 40.19,-20.49 11.75,2.77 4.81,7.36 12.76,29.98 -1.27,13.12 -8.06,15.32 -0.89,8.07 0.65,25.44 -8.16,11.88 -30.17,12.6 -5.18,4.63 -3.71,6.21 -2.14,7.17 -0.53,7.45 -19.71,-3.56 -35,32.22 -21.83,-3.31 -14.27,-17.73 -14.86,-23.48 -16.86,-18.57 -20.33,-3.21 10.72,22.39 5.07,6.71 -6.15,14.22 -2.89,10.16 -0.24,8.52 5.9,12.44 6.66,3.88 3.57,3.82 -3.02,12.3 -8.66,3.95 -44.15,9.81 4.18,11.35 -0.08,11.31 8.95,3.05 6.06,-1.63 5.7,-3.54 7.82,-3.04 9.96,1.69 3.01,7.26 -0.47,8.09 -0.68,4.35 19.47,32.12 10.96,7.3 11.31,-7.97 -17.04,-39.21 18.68,-13.4 66.65,-7.13 6.87,-5.13 4.07,-5.68 4.89,-5.09 9.38,-3.53 9.05,-0.66 36.62,4.02 50.25,-5.39 -5.53,-3.86 -4.98,-1.13 -10.95,1.69 14.24,-8.73 62.73,2.29 1.45,8.3 -23.41,2.42 -7.92,5.76 -0.79,13.68 -8.36,-7.5 -10.73,-1.03 -8.54,5.36 -1.97,11.98 -4.99,-0.54 -31.89,3.45 7.94,8.93 3.56,1.9 6.75,1.56 1.1,4.55 4.23,4.1 8.16,3.93 17.09,13.21 -12.53,2.1 -18.84,-9.31 -12.22,-1.38 1.33,7.56 5.48,-0.97 1.46,8.24 -5.48,0.97 -3.29,-5.06 -5.55,-4.77 -3.59,-4.26 -10.14,6.7 -26.23,-12.06 -17.08,-0.06 2.79,3.82 0.89,0.28 3.08,1.79 -4.18,8.56 -7.27,-5.08 -9.28,-2.95 -10.44,-1 -10.39,0.79 1.23,6.87 51.28,43.62 9.41,5.11 77.85,29.47 -13.8,-1.63 -25.47,-9.13 -15.57,-2.9 -51.29,0.63 -24.64,-5.76 -51.81,-20.98 -37.72,-2.39 -24.03,-7.25 -14.73,0.72 -12.4,5.26 -23.76,15.19 -13.91,4.95 -3.27,-3.16 -1.39,-8.05 -2.75,-7.84 -7.22,-2.44 -37.14,7.11 -9.14,5.63 -4.37,12.51 -0.47,23.87 14.02,-1.09 1.45,14.37 -7.14,32.12 2.71,21 7.57,20.02 11.49,13.66 14.62,1.87 1.25,6.84 -16.19,17.25 13.32,30.65 24.37,30.51 16.71,16.86 6.7,-6.4 7.3,-4.64 -3.93,9.2 13.23,5.95 14.6,2.07 23.24,-1.7 13.56,-6.66 21.84,-18.15 9.68,1 -12.75,26.57 -2.46,16.07 10.71,5.01 32.03,-14.85 13.93,-1.98 -18.62,11.87 3.05,4.18 2.01,3.36 -0.93,3.71 -5.73,5.38 1.25,6.89 57.31,-10.34 17.19,-0.02 26.32,7.27 17.06,-2.53 -8.93,7.98 -4.28,2.21 1.48,8.21 21.52,0.05 22.52,8.37 21.2,4.2 18.91,-4.25 10.51,-18.28 -9.76,-23.48 17.44,-1.14 24.81,9.57 8.11,0.89 8.7,-3.33 15.44,-9.57 9.93,-1.57 1.44,8.21 -13.4,6.49 5.75,10.67 14.86,10.72 13.92,6.7 15.05,3.19 17.63,0.33 16.44,-4.12 11.8,-10.08 5.48,5.88 4.06,-0.88 2.7,-5.78 1.61,-8.71 4.55,-0.8 5.76,4.31 4.18,6.17 1.85,8.17 -1.05,10.62 10.45,0.18 9.55,1.88 17.14,7.04 27.32,3.22 3.92,-4.39 -3.64,-10.21 -4.05,-7.62 -0.06,-5.76 8.01,-4.75 -1.19,-6.92 -5.03,0.86 -1.41,-8.18 6.56,-5.97 3.4,-9.13 -0.74,-11.25 -6.07,-12.45 24.26,17.03 11.63,3.77 13.95,-6.05 -8.33,-5.4 -3.52,-1.05 -1.17,-6.81 6.81,-13.55 19.39,-17.59 7.25,-14.26 6.79,6.62 -4.21,8.49 6.8,6.65 -2.22,7.45 -1.07,9.58 -0.16,23.18 4.55,-0.78 1.24,-6.99 1.69,-3.64 4.81,-7.01 1.43,19.72 5.8,20.87 7.88,11.44 7.82,-8.53 4.04,4.49 2.51,5.11 1.47,5.88 1.01,7.01 7.26,-14.96 12.97,-6.57 34.35,-3.96 7.56,-4.7 14.32,-18.09 7.52,-5.63 9.29,-1.87 27.4,2.8 -3.42,-18.62 17.02,-8.75 21.49,-3.49 11.41,3.98 -2.97,26.8 -0.14,17.51 4.26,7.05 39.33,0.54 -9.47,8.58 -20,35.96 0.02,18.54 8.98,8.2 22.65,6.09 20.72,25.96 5.57,8.54 4.55,-0.76 5.85,-6.62 22.96,-5.3 22.77,-19.14 10.03,-2.54 -4.71,-2.63 -2.43,-2.66 -2.03,-3.37 -3.4,-4.79 16.98,-4.23 9.14,-0.63 7.27,3.21 8.81,7.84 5.61,2.66 65.51,13.1 9.61,5.12 5.02,-0.82 6.58,-2.96 26.21,23.64 11.32,-4.61 2.21,-16.76 -4.04,-21.5 -8.55,-19.12 -11.3,-9.68 -0.03,-5.16 0.43,-3.19 2.62,-7.66 4.88,13.61 7.66,9.63 26.42,23.67 20.44,12.55 7.82,7.25 7.04,-4.78 16.2,14.36 9.71,1.31 8.08,-7.41 3.53,-10.91 -1.38,-11.71 -6.89,-9.99 -1.11,-6.93 8.61,-9.85 -6.92,-8.05 -14.15,-27.33 -6.13,-8.05 -19.12,-18.25 -1.33,-8.24 5.47,-0.88 32.24,45.97 17.69,18.77 11.45,-4.78 8.31,5.01 7.98,0.78 7.35,-3.36 6.35,-7.24 -6.62,-6.69 2.67,-1.49 1.77,-0.22 0.56,-1.44 -0.8,-5.28 -7.38,-0.99 -6.08,-2.37 -13.89,-7.76 -1.12,-6.93 9.5,-1.52 -1.32,-8.25 17.62,-10.22 36.84,-7.75 13.71,-7.71 -2.43,-9.06 -0.99,-6.72 -0.29,-7.58 -8.01,-4.83 -3.23,-1.14 -1.1,-6.92 9.69,-8.71 11.39,-13.66 9.19,-14.79 3.07,-11.81 41.28,-48.83 2.16,-34.27 1.55,-9.31 0.15,-5.86 -2.86,-4.83 -2.43,-5.31 1.48,-7.37 3.1,-3.94 8.78,-6.31 15.59,-16.08 38.81,-27 -3.8,-9.7 -4.22,-7.32 -5.09,-5.72 -6.63,-4.52 8.64,-1.81 6.43,-4.99 5.14,-7.57 4.95,-9.28 8.97,-10.04 3.54,10.01 2.1,16.1 4.28,7.78 28.98,-6.03 12.87,3.35 16.62,13.42 21.64,24.82 6.72,6 8.61,4.9 13.77,2.31 54.35,23.42 12.09,10.03 1.15,7.56 -6.13,1.58 -13.21,9.13 34.19,4.96 15.66,-4.78 4.15,-16.15 20.36,4.68 24.37,11.23 22.04,16.01 13.12,18.6 0.77,-13.18 3.97,-8.98 6.94,-4.44 9.99,0.15 -1.24,-8.25 -6.12,-3.6 -4.13,-5.24 -3.57,-5.93 -4.68,-5.63 -23.92,-19.63 11.45,-12.47 15.15,7.3 17.26,13.35 17.94,5.78 2.64,-6.48 0.12,-26.55 1.62,-6.31 7.77,-5.19 3.46,-10.45 0.8,-12.85 -0.34,-11.96 8.73,3.27 6.56,7.61 4.21,11.08 1.67,13.61 0.78,-16.75 1.85,-14.5 5.59,-7.39 11.99,4.67 1.12,7.56 -2.92,1.49 -5.68,6.81 10.04,11.39 9.58,5.2 8.87,-2.27 7.88,-11.27 -4.12,7.58 -2.83,8.17 -3.65,16.79 34.5,6.67 35.66,-1.52 1.16,-5.32 11.29,-30.97 -0.57,-12.12 2.15,-11.58 5.15,-9.12 8.77,-4.59 -4.78,-10.42 -2.9,-3.88 14.77,-31.64 2.34,-15.47 -6.5,-24.1 8.39,6.86 25.1,11.51 -18.49,17.46 5.26,8.1 -7.91,21.22 -0.23,18.17 5.02,-0.73 2.35,-5.43 2.64,-3.78 7.87,-8.08 -3.49,13.65 -5.63,7.75 -7.3,3.69 -8.38,1.66 -5.9,7.47 -8.83,34.94 -5.07,14.61 3.58,8.61 7,9.16 9.68,6.83 11.68,1.64 3.1,3.17 1.13,7.8 2.51,7.65 7.12,2.59 27.54,-4.01 -3.36,8.86 76.87,4.38 -2.78,-4.57 -0.86,-4.85 1.55,-6.19 4.19,-8.55 -22.58,-27.17 -3.5,-25.93 13.99,-21.32 29.84,-13.1 53.66,-8.41 59.33,0.75 38.09,14.42 12.18,0.98 57.14,-15.69 81.38,6.81 25.53,-13.87 -8.99,20.79 -15.15,10.79 -27.86,6.41 -0.42,-2.51 -4.05,-3.82 -4.26,-1.16 -1.26,5.43 0.1,7.17 -1.61,6.53 -3.31,4.9 -24.23,10.96 -8.39,7.24 -2.96,7.37 -2.46,26.98 -23.9,28.12 -2.45,27.22 3.89,30.72 0.61,26.62 -6.45,18.67 -16.99,7.01 1.17,8.25 10.79,3.27 9.11,8.83 6.79,12.31 13.31,52.24 6.5,10.6 5.06,-10.29 5.78,12.1 1.98,9.71 -2.78,6.82 -8.37,3.46 -2.16,6.79 16.99,63.11 7.04,15.9 10.47,3.97 16.55,-11.03 0.96,6.88 -13,8.65 -16.38,2.36 -14.81,-5.92 -8.12,-16.38 -2.96,-4.14 -4.22,7.19 -3.56,11.79 -1.06,9.61 4.39,26.5 3.28,11.52 4.84,10.83 -10.06,3.53 -2.66,8.9 2.51,12.33 5.48,13.78 7.18,13.54 5.95,6.05 15.65,7.9 -8,8.26 -2.06,-1.29 -4.37,-4.93 -3.72,18.47 -1.92,21.6 -0.08,22.11 1.71,20.21 7.17,9.8 13.35,-0.9 25.1,-11.49 0.97,6.88 -14.77,6.87 -17.47,11.71 -15.44,2.6 -8.73,-20.22 -9.59,15.22 -6.21,42.62 -8.88,14.48 5.48,4.36 2.17,1.27 3.47,1.26 -18.41,19.41 -7.08,13.58 -3.06,18.1 14.87,-2.13 0.98,6.88 -6.18,24.03 -5.43,0.78 -8.67,-18.34 -12.15,10.57 -13.64,20.21 -13.17,10.62 3.12,7.32 1.75,3.09 2.81,3.92 -10.42,-1.07 -10.2,-2.91 -8.61,0.37 -5.88,8.69 -0.08,14.75 8.21,37.35 1.75,16.01 -0.95,7.92 -2.03,7.54 -7.73,20.78 -0.19,5.53 0.32,5.8 -1.33,8.97 -5.32,12.88 -15.35,25.59 -2.84,7.14 6.85,14.79 23.07,15.71 6.22,10.55 8.35,34.3 2.49,18.35 -3.03,16.53 -3.99,13.22 -2.45,11.35 -5.3,8.62 -22.5,7.98 -29.58,18.04 9.54,25.34 1.02,16.7 4.38,8.08 19.71,-0.39 6.45,-3.35 12.7,-12.45 8.07,-3.64 20.57,0.03 6.66,-4.01 2.8,-5.26 0.72,-13.8 2.39,-5.73 3.2,-1.46 8.13,0.34 3.46,-1.03 14.97,-7.67 46.63,-14.17 51.07,-26.16 11.54,-0.78 0.01,-2.57 -0.55,-5.47 1.01,-5.7 4.86,-3.15 7.05,1.51 11.37,9.48 8.15,1.35 8.24,-2.63 14.09,-7.9 8.55,-1.56 13.03,3.88 12.74,9.13 22.07,22.65 11.57,6.49 34.6,5.72 13.29,-0.52 84.16,-27.82 5.41,-4.14 1.78,-8.24 0.99,-18.94 11.14,-35.75 0.52,-19.68 -20.09,-10.67 -4.6,-9.93 -3.22,-10.18 -3.52,-4.36 -16.03,1.86 -6.65,-1.42 -5.31,-4.93 -7.21,-25.74 6.07,-23.15 9.76,-21.26 6.53,-32.08 45.54,-77.23 4.71,-17.68 -0.84,-24.58 -3.12,-12.01 -4.39,-8.16 -4.04,-5.28 -1.95,-3.18 0.82,-11.61 6.03,0.05 8.51,3.98 8.33,0.15 6.84,-7.7 4.43,-8.65 7.11,-5.52 14.68,1.99 1.02,7.5 -6.11,12.09 7.4,14.41 13.94,11.83 13.32,4.15 94.75,-17.83 81.36,-44.17 123.19,-23.79 29.78,-13.21 17.64,-4.07 28.26,11.12 17.15,-6.32 29.44,-17.77 49.49,-6.25 12.06,-6.93 20.14,-17.26 35.39,-13.03 62.85,-49.68 20.52,14.53 119.62,13.5 35.77,11.98 21.97,15.23 17.11,2.49 7.09,4.5 20.53,25.12 52.26,29.16 184.9,19.98 35.26,13.22 15.3,10.86 13.92,15.26 -55.08,-26.53 -60.68,-1.73 -58.87,15.16 -49.71,23.74 -14.75,1.74 -12.57,2.53 -15.93,7.36 -13.38,10.37 -4.88,11.51 -1.53,6.93 -9.38,8.15 -1.13,9.73 2.26,11.95 3.15,7.82 45.12,63.65 40.48,94.28 12.31,11.63 39.33,24.72 7.83,-0.75 8.1,6.26 98.99,32.46 8.41,9.61 96.14,43.58 25.71,4.75 30.38,16.19 58.36,14.29 61.65,-7.73 305.32,63.52 18.93,12.17 17.87,4.21 31.78,28.7 101.01,65.51 42.4,42.8 9.2,6.19 7.02,8.91 22.02,57.11 27.56,30.43 24.84,0.8 67.12,-41.51 7.05,-0.12 6.48,5.38 0.76,7.63 -7.42,0.21 -4.69,2.21 -3.2,5.18 -3.14,8.83 14.65,-1.45 0.82,8.26 -13.82,1.6 -13.81,6.18 -10.24,9.88 -3.32,12.91 -5.49,14.97 -28.89,17.85 -6,9.82 4.7,35.62 10.38,42.65 17.59,28.19 26.65,-8.4 0.7,6.94 -36.07,34.91 0.77,7.63 16.67,36.16 5.83,52.15 8.13,44.78 23.69,14.55 -16.19,31.41 -2.32,15.82 2.25,52.39 -2.58,48.18 1.96,23.04 5.48,19.33 19.35,42.38 9.65,15.54 5.98,20.67 -1.95,25.92 -7.28,42.11 0.04,15.58 0.35,5.65 18.5,11.92 6.28,1.92 14.73,-0.09 13.93,3.71 12.9,10.99 23.27,26.19 23.56,18.28 140.06,45.56 12.2,-3.78 25.4,11.81 113.76,3.52 123.68,28.33 7.74,3.28 5.95,0.45 41.48,-8.94 58.41,9.89 29.67,10.78 11,6.49 7.29,-22.89 0.98,-3.08"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7127" /><path
+               id="path3084" /><path
                d="m 5181.11,-6.96875 0,0 5.66,-25.44925 5.45,-12.1836 5.69,-10.289 0.33,-10.168 -10.73,-11.5312 8.15,-2.9493 18.08,-2.4921 8.67,-3.9376 9.02,-8.4921 4.46,-6.8091 4.86,-5.21 10.55,-3.418 32.1,0.199 12.39,-7.789 8.03,-24 0.8,-13.66 -1.79,-8.122 -2.51,-7.82 -1.52,-12.941 0.44,-14.36 2.13,-7.449 4.52,-4.18 7.55,-4.859 16.19,-5.48 15.95,-1.512 13.06,-7.649 7.74,-24.031 15.98,-35.027 27.47,-22.231 31.61,-11.339 41.82,-5.461 24.35,-15.02 12.93,-5.519 11.28,-0.582 44.25,7.89 37.97,-2.101 7.51,-2.977 14.41,-9.891 7.19,-2.769 7.18,0.57 12.04,5.379 5.97,1.09 26.2,-7.441 44.88,-26.29 179.91,-3.91 63.53,-11.25 50.29,-27.351 16.51,-5.629 30.97,0.121 77.19,20.961 33.83,-4.012 46.53,6.059 5.43,-1.739 11.55,-11.73 6.1,-3.77 32.63,0.668 94.56,-24.707 11.64,-0.519 11.83,3.07 0.6,-8.722 -0.96,-7.93 -2.44,-7.051 -3.93,-6.141 0.58,-28.488 -7.38,-17.918 -13.91,-8.57 -19.01,-0.461 -25.83,-4.941 -17.79,-18.84 -15.02,-23.961 -17.62,-20.66 -34.52,-21.118 -17.68,-14.511 -9.27,-5.18 -10.12,-1.672 -7.79,-10.476 -9.02,-24.18 -12.88,-25.281 -19.36,-13.621 6.58,-10.809 5.03,-12.969 6.24,-27.582 0.09,-0.109 0.09,-0.11 10.97,-13.441 3.57,-15.238 7.07,-9.282 20.86,4.45 -12.33,19 12.18,-3.461 23.2,-0.309 11.11,-5.539 21.77,-3.141 15.08,-9.328 24.53,-21.691 19.8,-1.969 22.58,3.789 18.31,-2.453 7.12,-20.379 -19.73,-42.051 -82.26,-70.507 -16.34,-24.532 6.61,-6.199 2.33,-7.058 -1.73,-7.822 -5.55,-8.26 -3.85,-2.87 -11.24,-11.4 10.75,-11.26 3.77,-2.72 0.77,-0.88 0.7,-1 0.54,-1.06 0.39,-1.25 22.42,-23.03 23.12,3.1 24.29,13.43 26.14,7.73 14.35,-20.37 -8.72,-44.92 -26.26,-70.63 -0.39,-38.15 13.23,-22.74 22.36,-10.58 26.94,-1.72 13.24,-3.26 39.95,-27.44 55.29,-21.14 68.34,-100.74 8.93,-8.61 12.09,-5.95 7.04,-0.09 1.4,-3.08 -5.08,-14.89 -28.32,-39.75 -36.61,-6.01 -31.79,14.8 -37.83,-5.86 4.99,8.59 8.05,14.3 20.75,1.86 23.62,-1.35 16.39,4.49 -10.02,2.46 -7.57,7.66 -8.07,11.85 -30.38,13.4 13.95,7.46 -4.29,19.04 -12.54,20.8 -10.85,12.78 -65.04,61.28 -15.06,10.87 -43.6,16.5 -18.16,2.01 -12.28,-12.22 -6.65,-24.85 4.45,-21.52 20.87,-2.56 -27.52,-15.33 -3.77,-4.76 -3.86,-7.3 -21.17,-5.34 -8.36,-4.79 -12.87,-15.23 -17.65,-15.09 -20.17,-7.5 -19.87,7.6 10.94,3.54 13.83,6.81 11.7,8.82 4.65,9.41 -7.9,18.74 -32.22,4.96 -10.53,15.66 -13.49,-5.57 -76.26,13.45 -7.16,2.84 -19.66,18.07 -5.14,2.73 -8.05,-1.58 -27.11,-11.5 -8.26,-16.2 -6.18,-3.72 -7.83,3.34 -7.39,15.15 -9.58,3.02 -6.27,-5.1 -1.54,-10.67 3.35,-10.25 8.92,-4.2 0.42,-8.27 -17.31,-1.98 -15.19,-10.39 -7.65,-15.82 5.29,-18.49 13.08,-7.97 15.64,3.28 28.82,15.19 -8.19,-16.26 -26.11,-24.14 -4.84,-18.95 -7.64,-11.79 -18.79,-6.83 -61.43,-5.16 -29.06,-8.46 -123.18,-89.49 -129.1,-69.81 -76.03,-31.97 -12.6,-11.76 -6.29,-4.42 -28.22,-8.12 -20.99,-14.7 -10.34,-2.51 5.43,16.85 7.96,14.72 4.73,12.34 -4.31,9.88 7.56,-0.77 5.27,1.72 2.6,5.35 -0.2,10.23 5.33,0.22 4.13,-9.31 3.42,-4.39 3.87,0.45 5.01,5.68 -11.31,14.64 8.92,-0.65 8.45,1.11 7.79,3.22 1.56,-2.52 0.58,1.58 2.56,-3.17 2.61,-4.03 0.28,-0.96 -2.64,-0.58 -8.02,0.11 0.36,-8.26 17.28,2.82 3.59,13.96 0.13,15.48 6.62,7.6 13.73,2.22 10.91,5.66 8.37,9.8 5.66,14.46 -9.18,-4.32 -19.22,-15.06 -5.36,-1.16 -15.62,15.08 -6.58,9.89 -3.68,15.71 -16.21,-9.96 -20.16,-19.46 -11.97,-20.53 7.84,-13.29 0.3,-6.89 -12.78,-0.03 -14.01,11.88 -5.47,-6.33 -5.33,-0.22 -6.32,23.19 -8.92,-18.37 5.26,-9.79 26.61,-9.57 0.3,-6.83 -9.46,-5.92 -14.05,-2.5 -10.32,3.08 1.56,10.82 -25.53,-0.56 -31.16,-19 -27.61,-29.26 -14.44,-31.17 0.28,-6.95 4.85,0.2 -6.54,-10.5 -2.65,-10.58 2.26,-9.68 8.5,-7.82 -7.25,-11.05 -0.97,-8.2 0.81,-8.02 -1.82,-11.12 -5.6,-3.84 -7.51,-0.65 -3.33,-4.1 7.24,-14.55 -8.39,-15.4 -3,-12.19 -5.68,-8.16 -16.49,-3.59 -10.55,4.18 -9.08,5.97 -6.6,-3.37 -3.29,-23.81 8.82,-9.78 8.05,-23.02 9.51,-4.17 8.3,5.79 5.56,13.21 1.42,15.36 -4.06,12.43 15.81,-5.87 3.8,-11.64 -0.09,-16.04 4.1,-19.45 -8.46,-3.73 -1.96,-5.83 3.52,-6.7 7.81,-6.47 -2.11,-16.18 7.84,-13.15 13.47,-7.5 14.95,0.25 -2.36,4.05 -0.91,0.48 -2.85,2.07 11.25,9.43 16.73,18.22 8.74,4.95 -6.61,-17.35 5.37,-15.99 9.34,-15.55 5.36,-15.48 2.18,-37.28 6.93,-41.75 -8.08,2.31 -8.9,4.58 0.67,7.44 -1.41,10.7 -0.19,4.59 -6.81,-24.71 0.33,-19.89 8.26,-10.7 17.1,2.2 -2.7,4.08 -1.44,3.34 -2.34,7.55 16.09,-12.85 10.34,-15.62 8.74,-16.14 10.79,-14.27 0.31,-7.58 -6.22,-1.35 -3.17,-2.09 -2.5,-2.63 -4.37,-2.94 11.38,-14.65 11.01,17.59 1.71,13.82 -5.29,13.23 -9.96,15.98 11.91,-9.8 14.46,-6.64 9.85,-7.46 -1.94,-11.93 13.11,-12.96 6.4,-4.73 8.44,-4.59 16.78,-20.5 17.69,-16.5 9.93,8.42 -2.55,0.24 -5.34,-0.98 -2.46,0.3 -0.36,8.32 12.93,0.96 11.44,-3.93 8.91,-7.84 5.46,-11.03 -0.28,-10.25 -7.3,-12.4 3.41,-7.21 -5.98,-10.9 -2.51,-6.15 -1.74,-6.86 -4.9,-0.21 -5.91,-1.18 -2.74,-12.31 0,-35.95 -3.65,-17.92 -9.67,-18.76 -22.16,-29.07 -1.36,5 -3.9,10.82 -5.75,12.18 -6.86,9.26 11.01,25.99 2.35,14.02 -4.2,12.13 -9.24,3.92 -8.73,-6.06 -6.37,-9.87 -2.39,-7.35 -8.22,-18.51 0.04,-10.76 20.04,-7.67 -0.22,-8.4 -5.71,-8.35 -8.94,-3.42 0.32,-7.64 5.62,-1.2 10.07,-4 6.17,-0.78 -5.4,-19.38 -13.95,-11.11 -17.58,-2.51 -15.02,12.72 -8.93,11.99 -21.1,19.43 -14.72,9.81 -8.34,0.06 -19.85,-19.26 0.28,-6.88 10.79,0.43 -17.85,-77.59 -3.8,-44.43 6.84,-47.79 11.83,-35.34 7.92,-17.17 7.11,-7.18 2.3,-12.27 -1.43,-78.83 5.01,-49.01 28.6,-110.51 4.47,-28.85 2.56,-8.18 3.81,-6.45 11.57,-14.54 2.52,-5.24 2.61,-23.41 5.62,-22.26 16.63,-41 18.37,-30.35 22.81,-29.41 34.07,-30.95 17.79,-29.27 26.89,-26.45 30.21,-22.23 21.89,-7.79 48.4,-59.71 24.85,-23.11 25.41,-18.59 15.38,-7.82 37.45,-10.61 38.47,-3.76 15.69,-8.54 32.8,-24.35 54.46,-19.12 8.39,-11.97 7.35,-7.56 256.92,-203.69 97.29,-53.7 16.26,-5.67 8.37,-9.49 38.56,-11.24 22.39,-11.92 7.58,5.25 5.82,8.49 4.1,4.54 2.19,1.18 1.63,2.48 2.45,2.52 4.61,1.29 4.88,-1.95 2.69,-4.89 1.85,-4.88 2.63,-2.1 15.88,-7.45 12.69,-17.67 10.26,-17.75 8.22,-7.86 15.65,-2.82 14.84,-9.31 7.99,-14.3 -5.11,-18.01 132.81,-290.6 14.04,-21.65 3.81,-7.76 7.49,-39.6 3.98,-9.18 10.64,-14.89 29.32,-55.12 13.55,-38.75 18.99,-92.95 78.39,-228.51 33.72,-73.67 19.11,-34.44 55.72,-78.7 5.68,-16.68 5.98,-11.66 128.08,-135.65 55.17,-43.17 61.76,-35.59 27.03,-20.59 38.12,-54.75 114.94,-99.69 30.6,-17.05 48.92,-16.33 33.81,-4.15 13.37,-10 7.73,-16.78 7.78,-45.52 7.03,-21.42 10.4,-15.53 14.29,-5.43 19.09,-2.78 16.93,-8.82 31.12,-22.62 30.38,-11.64 68.03,-7.31 35.32,-9.21 12.11,-9.45 24.54,-28.15 9.26,-5.55 15.28,-4.14 36.06,-22.5 16.21,-7.38 35.5,-4.72 96.35,7.4 100.3,-15.21 37.9,1.93 135.26,33.93 136.01,2.98 207.6,42.42 71.02,-12.06 0.93,-1.86 24.35,-5.16 19.45,-28.91 15.12,2.02 -1.09,-17.9 7.95,-20.52 10.69,-40.63 1.89,-14.29 1.47,-19.51 -6,-13.09 -13.27,-19.3 -15.93,-17.61 -14.55,-8.38 -16.58,-6.78 -13.39,-14.09 -19.95,-29.06 -27.73,-26.35 -81.48,-51.25 -18.83,-30.04 -3.88,-42.47 7.74,-44.57 15.77,-36.3 20.49,-24.59 24.68,-20.32 53.41,-31.09 54.54,-12.48 13.72,-9.04 12.39,-10.89 162.84,-59.2 139.5,-61.02 51.75,-9.57 16.04,-10.64 14.42,-12.05 35.05,-19.96 204.93,-49.58 18.8,-13.29 5.73,0.52 -0.75,8.27 5.21,0.47 19.21,-16.67 148.74,-33.52 129.23,-56.08 66.03,-39.52 31.09,-25.55 36.44,-44.33 11.95,-5.35 14.22,-3.27 32.61,-20.56 58.11,-51.54 14.15,-5 17.65,-2.97 32.48,-17.36 74.6,-11.66 9.7,-4.96 90.7,-27.03 86.7,-51.32 67.4,-5.63 30.2,-11.01 2,-26.22 9.5,0.81 21.1,9.31 13,-1.45 4.1,-6.89 1.5,-9.83 4.7,-10.78 21.9,-16.91 4,-6.61 0.5,-50.49 75.9,-51.01 82.6,-36.21 17.2,-1.97 6.3,-3.51 20.5,-28.18 10.7,-9.49 30.6,-20.65 26,-34.67 14.2,-15.4 16,-5.39 8.3,-6.56 65.3,-72.65 67.5,-122.6 4.3,-6.45 5,-4.58 5.9,-2.26 -2.8,-13.39 3,-7.65 4,-6.78 0,-10.87 -5.6,-11.72 -12.8,-12.54 -3.5,-33.58 -9.9,-14.27 -28.5,-26.54 -14.1,-50.76 -2,-11.77 -0.7,-23.63 -5.4,-25.33 -0.7,-10.72 9.1,-28.05 1.7,-13.07 -5.3,-60.39 3.3,-8.95 -4.2,-3.99 -7.1,-16.68 -4.3,-3.99 -18.7,-0.4 -7.2,1.56 -7.3,3.01 -45,28.7 -14.7,3.4 -35.3,-3.69 -11.4,0.85 -22.7,11.65 -22.1,7.53 -29.5,22.75 -33.3,18.25 -11.8,2.9 -8.7,4.8 -63.5,77.33 -11.2,9.2 -0.8,8.27 13.4,2.06 7.1,8.39 0.2,12.91 -7.1,15.66 -10.1,8.67 -23.5,5.33 -10.1,5.3 28.4,22.12 4.4,24.67 -14.5,25.92 -28.4,25.97 -24.6,16.55 -14,13.44 -7.2,15.59 -2.5,21.35 -3.8,18.59 -6.6,14.49 -10.6,8.74 11.1,1.12 -0.7,6.9 -45.7,29.52 -13.7,3.55 -287.1,-13.04 -16,2.63 -48.03,21.83 -8.68,-0.2 -17.51,-3.42 -8.63,0.28 -6.68,3.88 -16.39,13.69 -5.84,2.63 -14.68,2.31 -49.18,23 -49.63,13.12 -24.15,9.96 -12.29,14.79 18.93,10.76 15.24,15.97 2.55,18.1 -19.16,17.38 16.31,8.2 41.81,-4.05 16.47,11.24 4.11,19.11 -16.23,-0.55 -34.92,-15.36 1.24,2.78 3.68,6.03 -18.51,5.79 -14.99,-8.07 -14.41,-12.43 -17.19,-7.4 -7.28,3.14 -5.39,8.37 -4.89,9.74 -5.62,7.18 -8.76,2.84 -19.22,-1.56 -7.92,2.34 -63.87,-1.67 -59.66,-35.17 -49.54,-57.6 -95.66,-169.57 -15.18,-37.06 -14.43,-66.85 -4.98,-12.07 -11.92,-8.92 -26.41,-55.61 -43.24,-46.46 -14.7,-27.48 -3.1,-42.56 3.41,-13.83 15.77,-40.66 18.29,-32.51 -7.29,-14.74 -12.95,-13.04 -11.69,-26.86 -36.9,-41.74 -24.72,-55.61 -11.08,-36.86 1.15,-33.8 13.18,-30.36 25.28,-26.5 0.64,-7.53 -8.92,-28.87 28.71,-29.74 41.44,-23.5 29.78,-10.26 107.85,3.33 29.06,-6.79 14.13,-7.98 16.67,-12.43 14.25,-15.43 6.87,-16.99 8.59,-7.99 53.67,-20.98 43.49,-30.25 15.83,-3.46 21.41,-0.58 14.37,-6.13 11.48,-10.9 12.07,-15.37 20.26,-19.61 29,-18.76 32.13,-12.39 29.96,-0.35 -24.55,-78.29 -0.84,-62.41 1.08,-14.91 4.11,-14.63 7.31,-12.09 17.26,-23.47 4.2,-12.65 -1.36,-35.75 -9.95,-65.72 4.99,-33.33 24.01,-38.97 4.24,-8.97 6.28,-5.49 30.44,-7.79 12.36,-0.73 -15.99,-13.07 -8.18,-8.53 -3.07,-7.98 3.22,-43.71 1.27,-6 -26.69,-29.14 -2.83,-4.8 -6.08,-4.84 -6.72,-10.85 -10.79,-24.02 -9.9,21.62 -21.63,2.09 -23.87,-9.39 -16.58,-13.08 -24.58,24.23 -13.77,7.36 -21.29,1.4 -19.16,-3.22 -81.86,-30.02 -92.42,-52.01 -32.58,-28.63 -6.42,-9.75 -6.98,-8.34 -50.06,-31.2 -20.02,-22.59 -8.52,-15.09 -6.65,-32.25 -9.74,-17.91 -8.87,-20.98 -1.35,-26.37 11.06,-6.55 2.28,-3.51 1.11,-19.92 16.01,-83.74 22.18,-73.74 2.46,-28.49 0.15,-82.13 -6.03,-15.22 -31.77,-35.35 -10.7,-18.34 -9.12,-3.23 -24.82,-25.13 -27.17,-11.92 -79.87,-50.19 -27.34,-28.72 -108.41,-158.27 -12.55,-37.21 -14.15,-119.67 -10.07,-35.62 -7.34,-15.18 -9.04,-13.4 -10.49,-11.2 -11.77,-8.93 -41,-12.07 -12.44,-7.26 -53.14,11.74 -158.4,-20.51 -23.75,4.66 -24.28,9.49 -22.01,12.33 -17.44,13.64 -19.63,22.6 -10.65,22.44 1.24,20.9 16.44,17.78 -25.14,33.52 -9.05,19.38 1.78,17.19 10.96,21.36 4.15,19.58 -2.79,21.07 -9.25,25.95 -7.37,37.83 13.83,24.14 28.74,15.65 87.63,34.18 7.26,8.91 2.29,6.03 11.59,11.86 2.35,6.29 8.24,50.86 55.39,141.49 7.78,48.53 -4.44,37.15 -16.23,29.99 -27.78,26.96 -6.55,3.96 -12.24,4.77 -5.61,4.72 -8.33,10.92 -2,6.03 0.9,6.14 0.36,10.91 5.89,13.26 15.56,9.98 35.45,14.98 52.28,41.18 29.05,16.61 40.03,5.66 63.22,-2.69 12.98,4.2 13.79,8.94 21.69,21.18 16.41,32.8 9.18,42.86 1.82,47.66 -5.1,47.17 -6.43,21.74 -10.13,16.08 -13.93,9.5 -18.24,2.22 -13.36,8.08 -14.38,19.82 -57.88,108.98 -55.96,258.78 -11.73,37.4 -78.84,154.89 -20.82,26.12 -26.38,22.86 -25.96,15.34 -8.44,13.27 -4.7,26.27 -14.56,29.1 -14.94,41.14 -20.16,27.8 -9.4,17.88 -23.64,111.24 0.53,-6.89 -5.83,21.5 -5.28,10.92 -6.75,4.4 -1.89,6.09 7.28,43.53 -8.36,24.48 -31.29,40.65 -7.65,15.19 -6.94,22.4 -14.14,17.76 -31.57,28.69 -26.3,36.88 -19.26,14.27 -5.54,7.55 -1.34,14.4 -11.62,-6.01 -64.6,0.34 -21.02,-9.74 -13.53,-13.92 -25.67,-34.84 -28.26,-30.05 -16.22,-6.59 -24.45,1.87 -20.78,8.67 -34.94,22.09 -10.07,1.94 -7.74,-4.77 -8.53,-3.49 -9.09,-1.91 -9.59,0.07 -0.53,7.58 14.45,13.84 -15.37,28.05 -27.46,27.32 -21.48,11.87 -17.39,6.8 -57.57,52.36 -12.47,4.91 -14.4,-2.9 -25.22,-9.06 -15.86,1.63 -10.97,6.4 -19.23,19.97 -36.73,29.12 -6.21,1.6 -7.14,7.53 -31.54,4.98 -9.68,3.33 -4.78,18.65 19.19,31.33 4.54,24.35 -6.99,18.62 -0.71,10.57 8.04,5.09 9.86,3.03 8.39,6.45 6.87,8.02 4.92,8.18 6.21,39.75 -14.57,40.48 -84.51,152.43 -25.73,36.34 -23.93,26.83 -23.28,21.06 -24.59,17.28 -25.76,5.92 -26.55,-12.81 -23.64,-21.31 -10.32,-3.38 -44.41,-0.21 -10.36,-4.18 -33.52,-33.55 -22.8,-6.06 -23.89,5.53 -26.09,12.65 -12.38,-9.76 -41.1,-12.7 -16.41,-15.99 -37.42,-22.86 -10.42,-15.1 -11.52,14.69 -2.98,23.09 6.85,21.62 17.98,10.37 16.97,2.36 6.09,3.78 4.77,15.21 6.54,7.84 54.92,51.06 6.87,13.57 -5.89,19.86 -12.62,15.4 -15.87,11.23 -15.25,7.18 -9.17,2.37 -14.11,1.43 -6.65,2.64 -5.2,4.87 -11.98,13.9 -4.38,2.78 -15.27,6.33 -33,32.84 -16.06,10.89 -15.52,0.45 -22.95,-3.98 -20.5,-8.26 -8.37,-12.36 -6.64,-22.17 -18.43,-2.13 -61.14,29 -13.35,4 -11.17,-3.47 -4.73,-10.47 1.8,-12.97 4,-14.63 2.01,-15.03 -7.12,5.06 -29.39,8.73 7.56,44.78 -9.75,41.64 -73.61,130.64 -30.77,18.01 -10.86,10.03 -3.46,10.29 -2.82,23.62 -2.46,11.2 -24.36,42.62 -89.26,105.8 -56.44,51.31 -11.42,3.92 -24.46,-7.94 -12.92,-0.58 -6.16,9.62 -51.85,-9.96 -24.93,-18.18 11.71,-32.7 -26.35,-3 -7.97,1.2 -8.14,7.74 -5.42,10.54 -4.51,4.89 -5.69,-9.22 -6.24,-0.32 -17.21,18.5 -133.82,55.17 -32.43,-0.57 -67.13,-16.52 -14.67,-7.21 -28.93,-21.12 -30.34,-11.86 -18.82,-27.92 -18.29,-6.33 -20.23,5.56 -7.25,13.98 -3.63,18.23 -9.08,18.04 -10.46,14.01 -17.76,31.56 -11.68,16.48 -49.09,52.05 -26.22,20.55 -26.89,14.67 -17.52,4.68 -65.89,0.43 -12.12,2.01 -60.11,35.59 -20.99,7.56 -9.15,-8.66 -5.54,-12.08 -13.84,12.3 -65.61,91.89 -85.06,92.83 -90.83,75.99 -13.47,9.62 -22.35,5.77 -13.32,10.41 -7.14,2.23 -24.94,3.79 -6.55,2.57 -13.5,15.59 -7.68,19.02 -3.65,21.52 -1.45,22.65 -4.84,21.34 -10.44,21.85 -21.66,35.14 -19.76,25.79 -83.26,59.99 -9.45,5.23 -7.58,8.27 -3.59,14.26 -5.09,7.95 -23.66,2.68 -8.36,3.61 -11.15,12.48 -14.11,11.72 -15.24,9.68 -14.88,6.64 -63.85,-3.84 -10.02,-2.75 -4.9,13.77 -11.24,21.4 -13.74,19.68 -11.84,8.61 -6.9,15.03 -18.81,23.48 -4.07,9.5 -2.69,17.34 -6.15,18.24 -47.64,91.03 -20.64,29.59 -100.58,74.21 -41.37,10.5 -57.3,28.52 -20.36,6.54 -0.24,8.24 -7.86,4.06 -8.5,2.72 -8.96,0.89 -9.25,-1 6.42,-7.46 -23.91,-0.46 -61.5,20.91 -11.1,1.31 -14.88,-0.51 -13.17,-4.05 -5.55,-8.93 -2.45,-17.32 -11.44,-18.24 -1.59,-14.53 -7.75,3.24 -8.17,-0.21 -6.08,-1.87 -1.06,-1.75 -6.79,5.57 -11.33,13.92 -23.25,7.23 -10.19,12.5 -6.72,17.23 -5.39,18.5 14.75,8.97 18.68,4.72 36.6,2.59 6.52,10.99 6.67,25 3.71,27.26 -2.07,17.81 -18.04,27.76 -6.62,19.72 -8.2,-1.21 -9.13,-4.97 -7.02,-1.15 -10.74,15.2 -7.64,20.71 -8.59,17.65 -13.72,6.06 -3.08,21.72 -20.31,15.92 -39.69,22.22 -4.89,13.26 -4.15,17.85 -5.12,15.64 -7.18,6.6 -7.46,3.85 -24.03,25.02 -43.75,22.23 -131.41,42.27 19.27,16.68 7.48,18.07 0.74,21 -1.21,25.46 2.46,7.6 4.54,4.89 2.55,7.23 -4.19,14.87 -8,11.08 -10.63,7.65 -57.12,25.18 -40.17,9.75 -40.15,0.55 -35.78,-12.46 3.84,-11.39 2.52,-4.37 -22.58,-11 -15.82,16.65 -18.93,54.68 20.17,17.53 11.34,20.64 16.81,61.93 -3.02,13.29 -0.35,23.59 2.5,23.96 5.54,14.48 -6.91,18.93 -3.79,23.35 -2.09,45.43 -4.19,22.66 -9.47,22.1 -67.17,134.1 -52.75,70.89 -11.75,13.24 -26.71,12.52 -7.63,17.33 -19.45,83.99 -28.95,267.16 -10.6,41.12 -34.68,81.34 -24.04,38.52 -35.85,25.56 -25.1,41.91 -12.39,9.36 -14.89,4.51 -29.74,20 -16.45,4.39 -13.16,6.5 -7.97,1.85 -3.5,-4.86 -2.58,-6.17 -6.48,-4.79 -8.02,-1.12 -7.26,4.27 -12.81,12.89 -27.06,21.34 -13.4,14.43 -8.71,-5.83 -25.88,22.8 -14.63,-1.64 5.46,-8.15 -3.62,-1.99 -3.69,-3.42 -3.53,-2.34 3.98,-8.97 4.95,-6.66 6.17,-4.42 7.47,-2.51 0.07,-6.88 -4.6,-3.32 -2.28,-3.35 -4.38,-9.29 10.58,-6.26 -3.09,-5.78 -8.21,1.18 -4.7,14.59 -5.39,8.73 -38.65,17.36 -41.05,37.58 -9.06,4.68 -21.92,20.65 -8.06,4.7 -23.49,1.48 -9.77,2.5 -7.97,3.96 -28.09,32.57 -4.96,1.34 -5.8,13.91 -13.11,9.5 -36.36,16.41 -9.71,7.28 -7.49,10.06 -4.37,14.38 -9.47,-4.59 -14.84,-2.43 -13.71,1.93 -6.15,8.63 -5.5,10.54 -38.2,16.46 -5.72,25.11 -83.84,46.35 -25.59,19.15 -7.55,-10.81 -5.82,-11.73 -3.18,-14.01 0.79,-17.28 -36.39,14.33 -14.69,11.39 1.63,12.75 -14.96,25.86 -22.33,11.73 -80.36,14.76 -38.52,13.9 -23.12,13.11 -7.24,-2.87 -36.78,0.91 -18.43,4.11 -6,4.26 -8.45,12.47 -51.48,4.21 -20.17,-3.61 -9.8,-5.37 -23.11,-19.03 -8.43,-9.61 -5.37,-3.77 -6.09,0.08 -6.5,1 -6.01,-1 -49.07,-35.14 -13.68,-2.51 -9.41,-3.63 -19.71,-18.95 -59.41,-39.36 -17.38,-22.5 4.06,-21.78 -8.26,-12.29 -2.43,-6.3 -0.88,-7.91 -2.5,-2.62 -12.02,-8.13 -4.4,-3.87 -4.48,-13.4 1.65,-12.12 -0.41,-11.83 -11.08,-12.26 -20.23,-9.66 -44.74,-14.16 -23.17,-13.35 -12.16,-10.52 -10.52,-11.38 -18.95,-27.38 -2.55,-8.07 0.66,-17.8 -0.91,-8.6 -5.29,-16.95 -6.01,-13.26 -38.27,-42.44 -13.35,-25.87 11.95,-22.97 -0.07,-6.94 -18.7,-4.17 -23.93,-27.33 -20.92,-8.47 -6.2,-4.99 -5.05,-6.2 -2.05,-5.48 -4.25,-8.88 -9.77,-4.97 -19.57,-4.77 -58.1,-37.9 -140.14,-32.39 -40.05,-25.78 -33.71,-7.28 -98.78,1.8 -22.67,-7.27 -10.48,0.24 -6.23,5.19 -8.25,3.54 -8.57,0.3 -15.15,53.84 -3.38,28.17 12.96,22.78 35.46,37.75 16.63,25.6 42.07,34.3 18.23,19.61 6.43,12.7 7.04,24.8 5.35,13.46 8.94,9.73 11.73,8.71 9.13,11.8 1.88,19.2 -12.14,27.24 -17.41,18.02 -9.42,20.82 11.59,35.93 -24.63,4.88 -33.25,-20.96 -23.09,-1.44 -139.87,-37.53 -32.16,1.45 -7.65,1.93 -7.37,7.5 -4.11,9.33 -5.38,8.21 -10.41,4.29 -20.75,3.93 -14.91,6.69 -83.86,54.27 -31.76,12.44 -46.39,26.13 -9.99,3.17 -10.75,-0.66 -9.65,-2.99 -9.53,-1.31 -10.54,4.62 -7.3,8.74 -3.39,9.79 -2.38,10.45 -4.77,11.03 -7.12,8.79 -15.55,11.82 -6.98,7.71 -4.24,8.49 -8.82,22.8 -5.98,11.06 -17.01,21.06 -3.17,5.14 -2.7,10.29 0.31,5.63 2.15,6.6 7.57,34.5 5.85,9.44 27.11,14.07 -20.36,17.92 -23.51,26.12 -17.02,31.58 -1.55,34.62 8.86,14.7 41.27,30 28.44,46.54 11.28,8.05 -8.34,23.82 6.23,22.41 15.03,17.6 18.43,9.54 14.58,-0.25 28.38,-9.19 14.17,-0.05 -4.24,14.58 -22.96,46.1 -2.8,9.54 -3.58,27.55 -8.41,24.27 0.61,1.42 4.35,17.41 1.5,0.77 0.04,5.34 0.81,2.97 0.33,3.38 -1.55,6.58 -3.13,5.65 -13.83,15.91 -39.2,17.3 -13.69,1.5 -39.15,-6.8 -14.85,4.19 -53.59,33.21 -25.25,23.1 -13.14,23.63 3.29,62.13 -4.16,32 -20.252,15.63 -27.527,3.37 -8.102,7.36 -8.961,16.64 -1.828,10.11 1.16,8.87 -0.992,7.84 -12.488,11.46 -13.199,21.53 9.719,12.3 14.582,11.52 27.718,14.88 7.02,1.06 14.211,-0.93 6.199,0.86 6.94,3.71 14.45,10.57 6.01,2.87 27.41,-5.41 28.42,-16.41 28.01,-10.75 25.93,11.67 1.72,6.85 -4.42,5.23 -3.49,6.12 4.39,9.31 6.24,2.59 18.37,-0.25 7.19,1.54 11.8,10.15 14.25,23.53 10.39,9.45 28.4,12.09 27.86,6.96 6.18,-2.85 9.53,-12.18 4.1,-1.6 5.4,5.27 15.58,26.92 21.76,17.4 0.41,17.46 -7.91,22.47 -3.21,32.3 4.21,6.45 26.05,29.66 16.86,28.67 7.34,16.78 1.13,13.82 -5.96,4.79 -33.14,15.41 -10.24,8.17 -6.01,12.61 -5.08,13.97 -7.39,12.35 -33.38,26.49 -35.19,20.86 -5.49,16.28 -3.11,46.04 -2.86,8.35 -8.21,13.3 -1.3,9 2.33,9.19 9.44,19.29 2.01,6.27 -4.33,16.65 -9.41,6.96 -25.13,7.09 -10.18,8.19 -17.24,18.03 -10.28,4.18 -20.26,4.68 -20.58,16.25 -15.03,24.08 -7.5,46.29 -1.53,19.92 1.11,19.79 4.68,18.14 10.33,16.09 12.16,6.85 23.2,2.65 0.05,1.95 2.38,4.7 3.51,5.08 3.69,2.89 2.96,-0.48 6.15,-4.25 2.88,-0.53 5.39,0.66 19.18,-0.68 16.66,4.45 17.8,8.5 15.98,12.86 11.04,17.53 5.27,14.86 6.59,13.22 8.43,10.02 11.27,5 33.84,-39.78 17.78,-11.23 23.7,-5.44 25.36,-0.13 23.52,3.82 48.31,18.57 22.1,13.01 10.25,3.29 58.15,-7.43 25.02,8.22 46.5,32.63 23.26,9.54 16.3,1.76 8.69,10.92 7.76,12.5 13.1,6.47 78.59,-21.14 12.05,-7.21 11.44,-10.99 14.23,-21.49 1.07,-2.83 9.49,-3.43 6.51,1.45 5.89,2.66 7.63,0.74 37.05,-14.19 21.33,0.08 13.8,-4.45 4.48,-0.3 9.78,5.14 1.9,3.71 -0.56,5.81 2.57,11.39 18.51,34.07 20.78,14.13 55.08,11.66 7.47,2.2 5.58,4.53 9.84,12.45 0.59,2.4 7.73,16.45 1.47,2.22 4.47,31.58 0.23,12.46 1.84,12.73 5.65,11.35 7.82,5.88 16,1.53 8.42,2.72 34.12,28.891 17.16,35.821 -1.71,40.789 -22.3,44.23 -17.83,15.891 -2.66,4.328 3.38,9.32 7.85,10.77 15.22,15.101 16.72,7.508 33.52,7.102 16.03,10.918 38.36,49.582 21.89,10.82 8.88,6.668 7.72,9.09 4.7,10.121 -0.22,11.262 -5.05,3.918 -2.9,4.73 6.56,14.039 16.51,17.203 20.98,11.188 42.86,8.879 22.04,-4.039 10.45,-15.348 3,-25.121 0.16,-33.531 -2.85,-32 -12.9,-57.469 -2.84,-28.57 2.83,-27.129 8.32,-17.922 14.11,-11.809 20.11,-8.23 21.22,-10.871 21.79,-22.641 48.37,-72.269 7.49,-3.88 14.91,-5.24 35.93,-21.17 13.58,-0.74 5.52,3.08 12.02,10.58 4.81,2.22 6.38,-2.38 5.63,-10.41 5.9,-4.04 12.38,-1.76 23.73,0.51 11.66,-4.11 19.6,-25.99 -11.49,-26.04 -22.22,-26.88 -13.69,-31.2 -2.98,-5.33 -1.29,-2.98 13.29,-0.9 11.83,-4.22 44.39,-23.92 5.2,-4.09 5.04,-7.07 7.58,-17.75 13.43,-23.96 6.48,-14.54 4.31,-14.53 1.26,-19.23 -3.14,-13.78 -4.67,-13.2 -2.91,-17.1 30.75,9.32 25.44,-11.32 23.37,-4.37 24.79,30.44 19.31,37.61 2.96,18.9 -8.84,18.42 -7.29,4.65 -16.91,3.38 -7.54,4.3 -7.05,10.45 -6.41,20.21 -8.32,8.44 -1.69,2.82 -0.56,2.81 0.57,2.87 1.68,2.76 25.45,23.48 -13.76,38.7 3.36,12.63 19.83,15.33 16.94,5.35 7.35,4.31 6.15,10.4 2.47,13.67 -1.7,25.03 3.02,14.36 14.27,21.432 56.04,37.98 6.04,11.5 3.56,12.809 4.28,11.031 8.36,6.226 9.24,4.383 8.9,8.348 6.98,11.269 11.36,39.832 22.38,47.161 4.69,24.468 -1.08,14.301 -10.47,39.379 -0.13,15.883 1.94,14.008 -1.55,11.14 -10.27,7.059 -7.43,14.992 5.95,27.231 13.24,26.808 14.63,13.66 37.33,4.731 15.25,-3.981 0.62,-13.75 19.68,-18.57 5.8,-2.5 8.32,3.371 3.69,6.68 2.66,7.91 5.2,7.121 12.32,9.199 6.02,1.379 2.5,-6.969 5.2,-106.539 -1.02,-16.953 1.55,-6.219 5.59,-5.421 17.07,-9.348 6.87,-5.582 15.6,-39.988 9.88,-13.43 16.39,-10.969 17.95,-6.422 88.29,-0.351 14.44,5.98 11.63,16.41 0.24,8.762 -1.3,12.598 1.4,12.703 8.26,9.519 8.27,-0.132 18.88,-11.129 9.88,-2.028 15.94,5.348 50.93,26.828 33.48,6.152 14.96,-0.949 15.87,-3.922 19.39,-12.398 5.31,-18.031 0.59,-21.989 5.31,-24.281 11.5,-15.129 30.76,-26.601 8.05,-18.789 0.97,-25.082 25.52,-0.18 32.34,12.793 21.33,13.859 9.8,21.391 -10.16,19.668 -32.22,31.879 -7.17,12.301 -3.24,9.32 0.34,10.172 3.69,15.09 5.65,10.878 15.94,14.7 5.46,7.539 5.45,24.32 -5.82,12.262 -13.34,5.148 -34.48,6.192 -22.67,8.48 -12.26,14.891 13.27,23.199 -6.73,4.449 -3.81,6.18 -1.93,8.039 -1.08,10.269 3.17,11.872 -0.16,24.41 0.93,7.992 6.45,9.957 16.34,16.762 6.22,8.589 8.93,36.36 3.21,8.262 7.3,4.148 72.19,21.922 19.69,0.469 12.34,-9.801 1.7,-12.52 -3.83,-22.89 3.59,-12.008 31.77,-10.352 6.11,-5.238 4.13,-5.531 4.92,-5.031 8.7,-3.848 9.85,-1.442 26.66,2.969 55.17,-13.469 13.82,2.918 10.37,17.942 5.59,27.652 0.02,28.688 -6.17,21.312 -16.23,13.137 -32.66,2.922 -14.12,15.84 -6.77,21.129 3.45,10.628 8.16,8.043 7.12,13.25 1.37,15.789 -0.93,12.649 2.9,10.223 12.8,8.527 8.98,14.211 -2.17,15.262 -5.74,16.07 -1.72,16.508 16.28,20.351 4.36,7.141 2.58,10.039 3.35,35.848 25.12,-19.598 31.66,-2.902 77.1,22.89 13.44,1.781 11.8,-2.859 59.07,-33.652 7.66,-11.059 -3.53,-7.781 -16.65,-14.117 -3.43,-5.563 4.78,-9.64 8.22,-0.098 15.97,5.43 8.91,-2.75 22.21,-11.969 7.5,-0.113 14.42,4.472 7.82,0.059 6.94,-3.399 13.29,-10.859 7.89,-3.062 7.56,0.761 25.28,9.231 13.05,2.148 26.66,-1.949 13.05,-4.012 10.85,1.801 10.36,11.488 16.37,29.731 3.07,3.07 8.34,4.043 3.22,3.668 1.19,5.609 -1.17,11.52 0.52,4.262 13.44,34.629 7,39.289 5.93,13.8316 47.92,50.3203 13.38,8.5274 52.19,18.6015 53.02,10.4493 27.29,-5.1094 24.01,-10.8281 23.31,-0.461 25.08,25.80862 0.08,0.10937 5.54,8.83203 6.6,5.34768 7.56,1.9922 13.46,-2.7617 5.04,-2.75005 4.53,-4.01953 4.18,-5.2695325 6.49,-3.6992175 6.96,-1.03906 7.11,1.55078 7.02,4.078122 0.08,0 0.15,0.121094 0.08,0.007813 21.87,7.179691 18.02,2.29299 39.39,-6.6719 0.4,0.01172 0.95,-0.25 5.75,-0.33203 5.71,1 14.51,-1 25.23,-17.41019 14.42,-4.8984 8.73,2.3477 14.5,12.72261 8.22,5.69921 34.3,6.73829 25.49,21.80079 31.63,18.6406 33.1,12.8594 54.07,4.6406 75.34,43.1017 48.49,11.578 18.13,-5.41 0.73,-29.3009 -15.27,-22.5703 -44.99,-27.5196 -7.24,-19.7773 5.47,-10.83206 3.81,-12.55859"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 5181.11,-6.96875 0,0 5.66,-25.44925 5.45,-12.1836 5.69,-10.289 0.33,-10.168 -10.73,-11.5312 8.15,-2.9493 18.08,-2.4921 8.67,-3.9376 9.02,-8.4921 4.46,-6.8091 4.86,-5.21 10.55,-3.418 32.1,0.199 12.39,-7.789 8.03,-24 0.8,-13.66 -1.79,-8.122 -2.51,-7.82 -1.52,-12.941 0.44,-14.36 2.13,-7.449 4.52,-4.18 7.55,-4.859 16.19,-5.48 15.95,-1.512 13.06,-7.649 7.74,-24.031 15.98,-35.027 27.47,-22.231 31.61,-11.339 41.82,-5.461 24.35,-15.02 12.93,-5.519 11.28,-0.582 44.25,7.89 37.97,-2.101 7.51,-2.977 14.41,-9.891 7.19,-2.769 7.18,0.57 12.04,5.379 5.97,1.09 26.2,-7.441 44.88,-26.29 179.91,-3.91 63.53,-11.25 50.29,-27.351 16.51,-5.629 30.97,0.121 77.19,20.961 33.83,-4.012 46.53,6.059 5.43,-1.739 11.55,-11.73 6.1,-3.77 32.63,0.668 94.56,-24.707 11.64,-0.519 11.83,3.07 0.6,-8.722 -0.96,-7.93 -2.44,-7.051 -3.93,-6.141 0.58,-28.488 -7.38,-17.918 -13.91,-8.57 -19.01,-0.461 -25.83,-4.941 -17.79,-18.84 -15.02,-23.961 -17.62,-20.66 -34.52,-21.118 -17.68,-14.511 -9.27,-5.18 -10.12,-1.672 -7.79,-10.476 -9.02,-24.18 -12.88,-25.281 -19.36,-13.621 6.58,-10.809 5.03,-12.969 6.24,-27.582 0.09,-0.109 0.09,-0.11 10.97,-13.441 3.57,-15.238 7.07,-9.282 20.86,4.45 -12.33,19 12.18,-3.461 23.2,-0.309 11.11,-5.539 21.77,-3.141 15.08,-9.328 24.53,-21.691 19.8,-1.969 22.58,3.789 18.31,-2.453 7.12,-20.379 -19.73,-42.051 -82.26,-70.507 -16.34,-24.532 6.61,-6.199 2.33,-7.058 -1.73,-7.822 -5.55,-8.26 -3.85,-2.87 -11.24,-11.4 10.75,-11.26 3.77,-2.72 0.77,-0.88 0.7,-1 0.54,-1.06 0.39,-1.25 22.42,-23.03 23.12,3.1 24.29,13.43 26.14,7.73 14.35,-20.37 -8.72,-44.92 -26.26,-70.63 -0.39,-38.15 13.23,-22.74 22.36,-10.58 26.94,-1.72 13.24,-3.26 39.95,-27.44 55.29,-21.14 68.34,-100.74 8.93,-8.61 12.09,-5.95 7.04,-0.09 1.4,-3.08 -5.08,-14.89 -28.32,-39.75 -36.61,-6.01 -31.79,14.8 -37.83,-5.86 4.99,8.59 8.05,14.3 20.75,1.86 23.62,-1.35 16.39,4.49 -10.02,2.46 -7.57,7.66 -8.07,11.85 -30.38,13.4 13.95,7.46 -4.29,19.04 -12.54,20.8 -10.85,12.78 -65.04,61.28 -15.06,10.87 -43.6,16.5 -18.16,2.01 -12.28,-12.22 -6.65,-24.85 4.45,-21.52 20.87,-2.56 -27.52,-15.33 -3.77,-4.76 -3.86,-7.3 -21.17,-5.34 -8.36,-4.79 -12.87,-15.23 -17.65,-15.09 -20.17,-7.5 -19.87,7.6 10.94,3.54 13.83,6.81 11.7,8.82 4.65,9.41 -7.9,18.74 -32.22,4.96 -10.53,15.66 -13.49,-5.57 -76.26,13.45 -7.16,2.84 -19.66,18.07 -5.14,2.73 -8.05,-1.58 -27.11,-11.5 -8.26,-16.2 -6.18,-3.72 -7.83,3.34 -7.39,15.15 -9.58,3.02 -6.27,-5.1 -1.54,-10.67 3.35,-10.25 8.92,-4.2 0.42,-8.27 -17.31,-1.98 -15.19,-10.39 -7.65,-15.82 5.29,-18.49 13.08,-7.97 15.64,3.28 28.82,15.19 -8.19,-16.26 -26.11,-24.14 -4.84,-18.95 -7.64,-11.79 -18.79,-6.83 -61.43,-5.16 -29.06,-8.46 -123.18,-89.49 -129.1,-69.81 -76.03,-31.97 -12.6,-11.76 -6.29,-4.42 -28.22,-8.12 -20.99,-14.7 -10.34,-2.51 5.43,16.85 7.96,14.72 4.73,12.34 -4.31,9.88 7.56,-0.77 5.27,1.72 2.6,5.35 -0.2,10.23 5.33,0.22 4.13,-9.31 3.42,-4.39 3.87,0.45 5.01,5.68 -11.31,14.64 8.92,-0.65 8.45,1.11 7.79,3.22 1.56,-2.52 0.58,1.58 2.56,-3.17 2.61,-4.03 0.28,-0.96 -2.64,-0.58 -8.02,0.11 0.36,-8.26 17.28,2.82 3.59,13.96 0.13,15.48 6.62,7.6 13.73,2.22 10.91,5.66 8.37,9.8 5.66,14.46 -9.18,-4.32 -19.22,-15.06 -5.36,-1.16 -15.62,15.08 -6.58,9.89 -3.68,15.71 -16.21,-9.96 -20.16,-19.46 -11.97,-20.53 7.84,-13.29 0.3,-6.89 -12.78,-0.03 -14.01,11.88 -5.47,-6.33 -5.33,-0.22 -6.32,23.19 -8.92,-18.37 5.26,-9.79 26.61,-9.57 0.3,-6.83 -9.46,-5.92 -14.05,-2.5 -10.32,3.08 1.56,10.82 -25.53,-0.56 -31.16,-19 -27.61,-29.26 -14.44,-31.17 0.28,-6.95 4.85,0.2 -6.54,-10.5 -2.65,-10.58 2.26,-9.68 8.5,-7.82 -7.25,-11.05 -0.97,-8.2 0.81,-8.02 -1.82,-11.12 -5.6,-3.84 -7.51,-0.65 -3.33,-4.1 7.24,-14.55 -8.39,-15.4 -3,-12.19 -5.68,-8.16 -16.49,-3.59 -10.55,4.18 -9.08,5.97 -6.6,-3.37 -3.29,-23.81 8.82,-9.78 8.05,-23.02 9.51,-4.17 8.3,5.79 5.56,13.21 1.42,15.36 -4.06,12.43 15.81,-5.87 3.8,-11.64 -0.09,-16.04 4.1,-19.45 -8.46,-3.73 -1.96,-5.83 3.52,-6.7 7.81,-6.47 -2.11,-16.18 7.84,-13.15 13.47,-7.5 14.95,0.25 -2.36,4.05 -0.91,0.48 -2.85,2.07 11.25,9.43 16.73,18.22 8.74,4.95 -6.61,-17.35 5.37,-15.99 9.34,-15.55 5.36,-15.48 2.18,-37.28 6.93,-41.75 -8.08,2.31 -8.9,4.58 0.67,7.44 -1.41,10.7 -0.19,4.59 -6.81,-24.71 0.33,-19.89 8.26,-10.7 17.1,2.2 -2.7,4.08 -1.44,3.34 -2.34,7.55 16.09,-12.85 10.34,-15.62 8.74,-16.14 10.79,-14.27 0.31,-7.58 -6.22,-1.35 -3.17,-2.09 -2.5,-2.63 -4.37,-2.94 11.38,-14.65 11.01,17.59 1.71,13.82 -5.29,13.23 -9.96,15.98 11.91,-9.8 14.46,-6.64 9.85,-7.46 -1.94,-11.93 13.11,-12.96 6.4,-4.73 8.44,-4.59 16.78,-20.5 17.69,-16.5 9.93,8.42 -2.55,0.24 -5.34,-0.98 -2.46,0.3 -0.36,8.32 12.93,0.96 11.44,-3.93 8.91,-7.84 5.46,-11.03 -0.28,-10.25 -7.3,-12.4 3.41,-7.21 -5.98,-10.9 -2.51,-6.15 -1.74,-6.86 -4.9,-0.21 -5.91,-1.18 -2.74,-12.31 0,-35.95 -3.65,-17.92 -9.67,-18.76 -22.16,-29.07 -1.36,5 -3.9,10.82 -5.75,12.18 -6.86,9.26 11.01,25.99 2.35,14.02 -4.2,12.13 -9.24,3.92 -8.73,-6.06 -6.37,-9.87 -2.39,-7.35 -8.22,-18.51 0.04,-10.76 20.04,-7.67 -0.22,-8.4 -5.71,-8.35 -8.94,-3.42 0.32,-7.64 5.62,-1.2 10.07,-4 6.17,-0.78 -5.4,-19.38 -13.95,-11.11 -17.58,-2.51 -15.02,12.72 -8.93,11.99 -21.1,19.43 -14.72,9.81 -8.34,0.06 -19.85,-19.26 0.28,-6.88 10.79,0.43 -17.85,-77.59 -3.8,-44.43 6.84,-47.79 11.83,-35.34 7.92,-17.17 7.11,-7.18 2.3,-12.27 -1.43,-78.83 5.01,-49.01 28.6,-110.51 4.47,-28.85 2.56,-8.18 3.81,-6.45 11.57,-14.54 2.52,-5.24 2.61,-23.41 5.62,-22.26 16.63,-41 18.37,-30.35 22.81,-29.41 34.07,-30.95 17.79,-29.27 26.89,-26.45 30.21,-22.23 21.89,-7.79 48.4,-59.71 24.85,-23.11 25.41,-18.59 15.38,-7.82 37.45,-10.61 38.47,-3.76 15.69,-8.54 32.8,-24.35 54.46,-19.12 8.39,-11.97 7.35,-7.56 256.92,-203.69 97.29,-53.7 16.26,-5.67 8.37,-9.49 38.56,-11.24 22.39,-11.92 7.58,5.25 5.82,8.49 4.1,4.54 2.19,1.18 1.63,2.48 2.45,2.52 4.61,1.29 4.88,-1.95 2.69,-4.89 1.85,-4.88 2.63,-2.1 15.88,-7.45 12.69,-17.67 10.26,-17.75 8.22,-7.86 15.65,-2.82 14.84,-9.31 7.99,-14.3 -5.11,-18.01 132.81,-290.6 14.04,-21.65 3.81,-7.76 7.49,-39.6 3.98,-9.18 10.64,-14.89 29.32,-55.12 13.55,-38.75 18.99,-92.95 78.39,-228.51 33.72,-73.67 19.11,-34.44 55.72,-78.7 5.68,-16.68 5.98,-11.66 128.08,-135.65 55.17,-43.17 61.76,-35.59 27.03,-20.59 38.12,-54.75 114.94,-99.69 30.6,-17.05 48.92,-16.33 33.81,-4.15 13.37,-10 7.73,-16.78 7.78,-45.52 7.03,-21.42 10.4,-15.53 14.29,-5.43 19.09,-2.78 16.93,-8.82 31.12,-22.62 30.38,-11.64 68.03,-7.31 35.32,-9.21 12.11,-9.45 24.54,-28.15 9.26,-5.55 15.28,-4.14 36.06,-22.5 16.21,-7.38 35.5,-4.72 96.35,7.4 100.3,-15.21 37.9,1.93 135.26,33.93 136.01,2.98 207.6,42.42 71.02,-12.06 0.93,-1.86 24.35,-5.16 19.45,-28.91 15.12,2.02 -1.09,-17.9 7.95,-20.52 10.69,-40.63 1.89,-14.29 1.47,-19.51 -6,-13.09 -13.27,-19.3 -15.93,-17.61 -14.55,-8.38 -16.58,-6.78 -13.39,-14.09 -19.95,-29.06 -27.73,-26.35 -81.48,-51.25 -18.83,-30.04 -3.88,-42.47 7.74,-44.57 15.77,-36.3 20.49,-24.59 24.68,-20.32 53.41,-31.09 54.54,-12.48 13.72,-9.04 12.39,-10.89 162.84,-59.2 139.5,-61.02 51.75,-9.57 16.04,-10.64 14.42,-12.05 35.05,-19.96 204.93,-49.58 18.8,-13.29 5.73,0.52 -0.75,8.27 5.21,0.47 19.21,-16.67 148.74,-33.52 129.23,-56.08 66.03,-39.52 31.09,-25.55 36.44,-44.33 11.95,-5.35 14.22,-3.27 32.61,-20.56 58.11,-51.54 14.15,-5 17.65,-2.97 32.48,-17.36 74.6,-11.66 9.7,-4.96 90.7,-27.03 86.7,-51.32 67.4,-5.63 30.2,-11.01 2,-26.22 9.5,0.81 21.1,9.31 13,-1.45 4.1,-6.89 1.5,-9.83 4.7,-10.78 21.9,-16.91 4,-6.61 0.5,-50.49 75.9,-51.01 82.6,-36.21 17.2,-1.97 6.3,-3.51 20.5,-28.18 10.7,-9.49 30.6,-20.65 26,-34.67 14.2,-15.4 16,-5.39 8.3,-6.56 65.3,-72.65 67.5,-122.6 4.3,-6.45 5,-4.58 5.9,-2.26 -2.8,-13.39 3,-7.65 4,-6.78 0,-10.87 -5.6,-11.72 -12.8,-12.54 -3.5,-33.58 -9.9,-14.27 -28.5,-26.54 -14.1,-50.76 -2,-11.77 -0.7,-23.63 -5.4,-25.33 -0.7,-10.72 9.1,-28.05 1.7,-13.07 -5.3,-60.39 3.3,-8.95 -4.2,-3.99 -7.1,-16.68 -4.3,-3.99 -18.7,-0.4 -7.2,1.56 -7.3,3.01 -45,28.7 -14.7,3.4 -35.3,-3.69 -11.4,0.85 -22.7,11.65 -22.1,7.53 -29.5,22.75 -33.3,18.25 -11.8,2.9 -8.7,4.8 -63.5,77.33 -11.2,9.2 -0.8,8.27 13.4,2.06 7.1,8.39 0.2,12.91 -7.1,15.66 -10.1,8.67 -23.5,5.33 -10.1,5.3 28.4,22.12 4.4,24.67 -14.5,25.92 -28.4,25.97 -24.6,16.55 -14,13.44 -7.2,15.59 -2.5,21.35 -3.8,18.59 -6.6,14.49 -10.6,8.74 11.1,1.12 -0.7,6.9 -45.7,29.52 -13.7,3.55 -287.1,-13.04 -16,2.63 -48.03,21.83 -8.68,-0.2 -17.51,-3.42 -8.63,0.28 -6.68,3.88 -16.39,13.69 -5.84,2.63 -14.68,2.31 -49.18,23 -49.63,13.12 -24.15,9.96 -12.29,14.79 18.93,10.76 15.24,15.97 2.55,18.1 -19.16,17.38 16.31,8.2 41.81,-4.05 16.47,11.24 4.11,19.11 -16.23,-0.55 -34.92,-15.36 1.24,2.78 3.68,6.03 -18.51,5.79 -14.99,-8.07 -14.41,-12.43 -17.19,-7.4 -7.28,3.14 -5.39,8.37 -4.89,9.74 -5.62,7.18 -8.76,2.84 -19.22,-1.56 -7.92,2.34 -63.87,-1.67 -59.66,-35.17 -49.54,-57.6 -95.66,-169.57 -15.18,-37.06 -14.43,-66.85 -4.98,-12.07 -11.92,-8.92 -26.41,-55.61 -43.24,-46.46 -14.7,-27.48 -3.1,-42.56 3.41,-13.83 15.77,-40.66 18.29,-32.51 -7.29,-14.74 -12.95,-13.04 -11.69,-26.86 -36.9,-41.74 -24.72,-55.61 -11.08,-36.86 1.15,-33.8 13.18,-30.36 25.28,-26.5 0.64,-7.53 -8.92,-28.87 28.71,-29.74 41.44,-23.5 29.78,-10.26 107.85,3.33 29.06,-6.79 14.13,-7.98 16.67,-12.43 14.25,-15.43 6.87,-16.99 8.59,-7.99 53.67,-20.98 43.49,-30.25 15.83,-3.46 21.41,-0.58 14.37,-6.13 11.48,-10.9 12.07,-15.37 20.26,-19.61 29,-18.76 32.13,-12.39 29.96,-0.35 -24.55,-78.29 -0.84,-62.41 1.08,-14.91 4.11,-14.63 7.31,-12.09 17.26,-23.47 4.2,-12.65 -1.36,-35.75 -9.95,-65.72 4.99,-33.33 24.01,-38.97 4.24,-8.97 6.28,-5.49 30.44,-7.79 12.36,-0.73 -15.99,-13.07 -8.18,-8.53 -3.07,-7.98 3.22,-43.71 1.27,-6 -26.69,-29.14 -2.83,-4.8 -6.08,-4.84 -6.72,-10.85 -10.79,-24.02 -9.9,21.62 -21.63,2.09 -23.87,-9.39 -16.58,-13.08 -24.58,24.23 -13.77,7.36 -21.29,1.4 -19.16,-3.22 -81.86,-30.02 -92.42,-52.01 -32.58,-28.63 -6.42,-9.75 -6.98,-8.34 -50.06,-31.2 -20.02,-22.59 -8.52,-15.09 -6.65,-32.25 -9.74,-17.91 -8.87,-20.98 -1.35,-26.37 11.06,-6.55 2.28,-3.51 1.11,-19.92 16.01,-83.74 22.18,-73.74 2.46,-28.49 0.15,-82.13 -6.03,-15.22 -31.77,-35.35 -10.7,-18.34 -9.12,-3.23 -24.82,-25.13 -27.17,-11.92 -79.87,-50.19 -27.34,-28.72 -108.41,-158.27 -12.55,-37.21 -14.15,-119.67 -10.07,-35.62 -7.34,-15.18 -9.04,-13.4 -10.49,-11.2 -11.77,-8.93 -41,-12.07 -12.44,-7.26 -53.14,11.74 -158.4,-20.51 -23.75,4.66 -24.28,9.49 -22.01,12.33 -17.44,13.64 -19.63,22.6 -10.65,22.44 1.24,20.9 16.44,17.78 -25.14,33.52 -9.05,19.38 1.78,17.19 10.96,21.36 4.15,19.58 -2.79,21.07 -9.25,25.95 -7.37,37.83 13.83,24.14 28.74,15.65 87.63,34.18 7.26,8.91 2.29,6.03 11.59,11.86 2.35,6.29 8.24,50.86 55.39,141.49 7.78,48.53 -4.44,37.15 -16.23,29.99 -27.78,26.96 -6.55,3.96 -12.24,4.77 -5.61,4.72 -8.33,10.92 -2,6.03 0.9,6.14 0.36,10.91 5.89,13.26 15.56,9.98 35.45,14.98 52.28,41.18 29.05,16.61 40.03,5.66 63.22,-2.69 12.98,4.2 13.79,8.94 21.69,21.18 16.41,32.8 9.18,42.86 1.82,47.66 -5.1,47.17 -6.43,21.74 -10.13,16.08 -13.93,9.5 -18.24,2.22 -13.36,8.08 -14.38,19.82 -57.88,108.98 -55.96,258.78 -11.73,37.4 -78.84,154.89 -20.82,26.12 -26.38,22.86 -25.96,15.34 -8.44,13.27 -4.7,26.27 -14.56,29.1 -14.94,41.14 -20.16,27.8 -9.4,17.88 -23.64,111.24 0.53,-6.89 -5.83,21.5 -5.28,10.92 -6.75,4.4 -1.89,6.09 7.28,43.53 -8.36,24.48 -31.29,40.65 -7.65,15.19 -6.94,22.4 -14.14,17.76 -31.57,28.69 -26.3,36.88 -19.26,14.27 -5.54,7.55 -1.34,14.4 -11.62,-6.01 -64.6,0.34 -21.02,-9.74 -13.53,-13.92 -25.67,-34.84 -28.26,-30.05 -16.22,-6.59 -24.45,1.87 -20.78,8.67 -34.94,22.09 -10.07,1.94 -7.74,-4.77 -8.53,-3.49 -9.09,-1.91 -9.59,0.07 -0.53,7.58 14.45,13.84 -15.37,28.05 -27.46,27.32 -21.48,11.87 -17.39,6.8 -57.57,52.36 -12.47,4.91 -14.4,-2.9 -25.22,-9.06 -15.86,1.63 -10.97,6.4 -19.23,19.97 -36.73,29.12 -6.21,1.6 -7.14,7.53 -31.54,4.98 -9.68,3.33 -4.78,18.65 19.19,31.33 4.54,24.35 -6.99,18.62 -0.71,10.57 8.04,5.09 9.86,3.03 8.39,6.45 6.87,8.02 4.92,8.18 6.21,39.75 -14.57,40.48 -84.51,152.43 -25.73,36.34 -23.93,26.83 -23.28,21.06 -24.59,17.28 -25.76,5.92 -26.55,-12.81 -23.64,-21.31 -10.32,-3.38 -44.41,-0.21 -10.36,-4.18 -33.52,-33.55 -22.8,-6.06 -23.89,5.53 -26.09,12.65 -12.38,-9.76 -41.1,-12.7 -16.41,-15.99 -37.42,-22.86 -10.42,-15.1 -11.52,14.69 -2.98,23.09 6.85,21.62 17.98,10.37 16.97,2.36 6.09,3.78 4.77,15.21 6.54,7.84 54.92,51.06 6.87,13.57 -5.89,19.86 -12.62,15.4 -15.87,11.23 -15.25,7.18 -9.17,2.37 -14.11,1.43 -6.65,2.64 -5.2,4.87 -11.98,13.9 -4.38,2.78 -15.27,6.33 -33,32.84 -16.06,10.89 -15.52,0.45 -22.95,-3.98 -20.5,-8.26 -8.37,-12.36 -6.64,-22.17 -18.43,-2.13 -61.14,29 -13.35,4 -11.17,-3.47 -4.73,-10.47 1.8,-12.97 4,-14.63 2.01,-15.03 -7.12,5.06 -29.39,8.73 7.56,44.78 -9.75,41.64 -73.61,130.64 -30.77,18.01 -10.86,10.03 -3.46,10.29 -2.82,23.62 -2.46,11.2 -24.36,42.62 -89.26,105.8 -56.44,51.31 -11.42,3.92 -24.46,-7.94 -12.92,-0.58 -6.16,9.62 -51.85,-9.96 -24.93,-18.18 11.71,-32.7 -26.35,-3 -7.97,1.2 -8.14,7.74 -5.42,10.54 -4.51,4.89 -5.69,-9.22 -6.24,-0.32 -17.21,18.5 -133.82,55.17 -32.43,-0.57 -67.13,-16.52 -14.67,-7.21 -28.93,-21.12 -30.34,-11.86 -18.82,-27.92 -18.29,-6.33 -20.23,5.56 -7.25,13.98 -3.63,18.23 -9.08,18.04 -10.46,14.01 -17.76,31.56 -11.68,16.48 -49.09,52.05 -26.22,20.55 -26.89,14.67 -17.52,4.68 -65.89,0.43 -12.12,2.01 -60.11,35.59 -20.99,7.56 -9.15,-8.66 -5.54,-12.08 -13.84,12.3 -65.61,91.89 -85.06,92.83 -90.83,75.99 -13.47,9.62 -22.35,5.77 -13.32,10.41 -7.14,2.23 -24.94,3.79 -6.55,2.57 -13.5,15.59 -7.68,19.02 -3.65,21.52 -1.45,22.65 -4.84,21.34 -10.44,21.85 -21.66,35.14 -19.76,25.79 -83.26,59.99 -9.45,5.23 -7.58,8.27 -3.59,14.26 -5.09,7.95 -23.66,2.68 -8.36,3.61 -11.15,12.48 -14.11,11.72 -15.24,9.68 -14.88,6.64 -63.85,-3.84 -10.02,-2.75 -4.9,13.77 -11.24,21.4 -13.74,19.68 -11.84,8.61 -6.9,15.03 -18.81,23.48 -4.07,9.5 -2.69,17.34 -6.15,18.24 -47.64,91.03 -20.64,29.59 -100.58,74.21 -41.37,10.5 -57.3,28.52 -20.36,6.54 -0.24,8.24 -7.86,4.06 -8.5,2.72 -8.96,0.89 -9.25,-1 6.42,-7.46 -23.91,-0.46 -61.5,20.91 -11.1,1.31 -14.88,-0.51 -13.17,-4.05 -5.55,-8.93 -2.45,-17.32 -11.44,-18.24 -1.59,-14.53 -7.75,3.24 -8.17,-0.21 -6.08,-1.87 -1.06,-1.75 -6.79,5.57 -11.33,13.92 -23.25,7.23 -10.19,12.5 -6.72,17.23 -5.39,18.5 14.75,8.97 18.68,4.72 36.6,2.59 6.52,10.99 6.67,25 3.71,27.26 -2.07,17.81 -18.04,27.76 -6.62,19.72 -8.2,-1.21 -9.13,-4.97 -7.02,-1.15 -10.74,15.2 -7.64,20.71 -8.59,17.65 -13.72,6.06 -3.08,21.72 -20.31,15.92 -39.69,22.22 -4.89,13.26 -4.15,17.85 -5.12,15.64 -7.18,6.6 -7.46,3.85 -24.03,25.02 -43.75,22.23 -131.41,42.27 19.27,16.68 7.48,18.07 0.74,21 -1.21,25.46 2.46,7.6 4.54,4.89 2.55,7.23 -4.19,14.87 -8,11.08 -10.63,7.65 -57.12,25.18 -40.17,9.75 -40.15,0.55 -35.78,-12.46 3.84,-11.39 2.52,-4.37 -22.58,-11 -15.82,16.65 -18.93,54.68 20.17,17.53 11.34,20.64 16.81,61.93 -3.02,13.29 -0.35,23.59 2.5,23.96 5.54,14.48 -6.91,18.93 -3.79,23.35 -2.09,45.43 -4.19,22.66 -9.47,22.1 -67.17,134.1 -52.75,70.89 -11.75,13.24 -26.71,12.52 -7.63,17.33 -19.45,83.99 -28.95,267.16 -10.6,41.12 -34.68,81.34 -24.04,38.52 -35.85,25.56 -25.1,41.91 -12.39,9.36 -14.89,4.51 -29.74,20 -16.45,4.39 -13.16,6.5 -7.97,1.85 -3.5,-4.86 -2.58,-6.17 -6.48,-4.79 -8.02,-1.12 -7.26,4.27 -12.81,12.89 -27.06,21.34 -13.4,14.43 -8.71,-5.83 -25.88,22.8 -14.63,-1.64 5.46,-8.15 -3.62,-1.99 -3.69,-3.42 -3.53,-2.34 3.98,-8.97 4.95,-6.66 6.17,-4.42 7.47,-2.51 0.07,-6.88 -4.6,-3.32 -2.28,-3.35 -4.38,-9.29 10.58,-6.26 -3.09,-5.78 -8.21,1.18 -4.7,14.59 -5.39,8.73 -38.65,17.36 -41.05,37.58 -9.06,4.68 -21.92,20.65 -8.06,4.7 -23.49,1.48 -9.77,2.5 -7.97,3.96 -28.09,32.57 -4.96,1.34 -5.8,13.91 -13.11,9.5 -36.36,16.41 -9.71,7.28 -7.49,10.06 -4.37,14.38 -9.47,-4.59 -14.84,-2.43 -13.71,1.93 -6.15,8.63 -5.5,10.54 -38.2,16.46 -5.72,25.11 -83.84,46.35 -25.59,19.15 -7.55,-10.81 -5.82,-11.73 -3.18,-14.01 0.79,-17.28 -36.39,14.33 -14.69,11.39 1.63,12.75 -14.96,25.86 -22.33,11.73 -80.36,14.76 -38.52,13.9 -23.12,13.11 -7.24,-2.87 -36.78,0.91 -18.43,4.11 -6,4.26 -8.45,12.47 -51.48,4.21 -20.17,-3.61 -9.8,-5.37 -23.11,-19.03 -8.43,-9.61 -5.37,-3.77 -6.09,0.08 -6.5,1 -6.01,-1 -49.07,-35.14 -13.68,-2.51 -9.41,-3.63 -19.71,-18.95 -59.41,-39.36 -17.38,-22.5 4.06,-21.78 -8.26,-12.29 -2.43,-6.3 -0.88,-7.91 -2.5,-2.62 -12.02,-8.13 -4.4,-3.87 -4.48,-13.4 1.65,-12.12 -0.41,-11.83 -11.08,-12.26 -20.23,-9.66 -44.74,-14.16 -23.17,-13.35 -12.16,-10.52 -10.52,-11.38 -18.95,-27.38 -2.55,-8.07 0.66,-17.8 -0.91,-8.6 -5.29,-16.95 -6.01,-13.26 -38.27,-42.44 -13.35,-25.87 11.95,-22.97 -0.07,-6.94 -18.7,-4.17 -23.93,-27.33 -20.92,-8.47 -6.2,-4.99 -5.05,-6.2 -2.05,-5.48 -4.25,-8.88 -9.77,-4.97 -19.57,-4.77 -58.1,-37.9 -140.14,-32.39 -40.05,-25.78 -33.71,-7.28 -98.78,1.8 -22.67,-7.27 -10.48,0.24 -6.23,5.19 -8.25,3.54 -8.57,0.3 -15.15,53.84 -3.38,28.17 12.96,22.78 35.46,37.75 16.63,25.6 42.07,34.3 18.23,19.61 6.43,12.7 7.04,24.8 5.35,13.46 8.94,9.73 11.73,8.71 9.13,11.8 1.88,19.2 -12.14,27.24 -17.41,18.02 -9.42,20.82 11.59,35.93 -24.63,4.88 -33.25,-20.96 -23.09,-1.44 -139.87,-37.53 -32.16,1.45 -7.65,1.93 -7.37,7.5 -4.11,9.33 -5.38,8.21 -10.41,4.29 -20.75,3.93 -14.91,6.69 -83.86,54.27 -31.76,12.44 -46.39,26.13 -9.99,3.17 -10.75,-0.66 -9.65,-2.99 -9.53,-1.31 -10.54,4.62 -7.3,8.74 -3.39,9.79 -2.38,10.45 -4.77,11.03 -7.12,8.79 -15.55,11.82 -6.98,7.71 -4.24,8.49 -8.82,22.8 -5.98,11.06 -17.01,21.06 -3.17,5.14 -2.7,10.29 0.31,5.63 2.15,6.6 7.57,34.5 5.85,9.44 27.11,14.07 -20.36,17.92 -23.51,26.12 -17.02,31.58 -1.55,34.62 8.86,14.7 41.27,30 28.44,46.54 11.28,8.05 -8.34,23.82 6.23,22.41 15.03,17.6 18.43,9.54 14.58,-0.25 28.38,-9.19 14.17,-0.05 -4.24,14.58 -22.96,46.1 -2.8,9.54 -3.58,27.55 -8.41,24.27 0.61,1.42 4.35,17.41 1.5,0.77 0.04,5.34 0.81,2.97 0.33,3.38 -1.55,6.58 -3.13,5.65 -13.83,15.91 -39.2,17.3 -13.69,1.5 -39.15,-6.8 -14.85,4.19 -53.59,33.21 -25.25,23.1 -13.14,23.63 3.29,62.13 -4.16,32 -20.252,15.63 -27.527,3.37 -8.102,7.36 -8.961,16.64 -1.828,10.11 1.16,8.87 -0.992,7.84 -12.488,11.46 -13.199,21.53 9.719,12.3 14.582,11.52 27.718,14.88 7.02,1.06 14.211,-0.93 6.199,0.86 6.94,3.71 14.45,10.57 6.01,2.87 27.41,-5.41 28.42,-16.41 28.01,-10.75 25.93,11.67 1.72,6.85 -4.42,5.23 -3.49,6.12 4.39,9.31 6.24,2.59 18.37,-0.25 7.19,1.54 11.8,10.15 14.25,23.53 10.39,9.45 28.4,12.09 27.86,6.96 6.18,-2.85 9.53,-12.18 4.1,-1.6 5.4,5.27 15.58,26.92 21.76,17.4 0.41,17.46 -7.91,22.47 -3.21,32.3 4.21,6.45 26.05,29.66 16.86,28.67 7.34,16.78 1.13,13.82 -5.96,4.79 -33.14,15.41 -10.24,8.17 -6.01,12.61 -5.08,13.97 -7.39,12.35 -33.38,26.49 -35.19,20.86 -5.49,16.28 -3.11,46.04 -2.86,8.35 -8.21,13.3 -1.3,9 2.33,9.19 9.44,19.29 2.01,6.27 -4.33,16.65 -9.41,6.96 -25.13,7.09 -10.18,8.19 -17.24,18.03 -10.28,4.18 -20.26,4.68 -20.58,16.25 -15.03,24.08 -7.5,46.29 -1.53,19.92 1.11,19.79 4.68,18.14 10.33,16.09 12.16,6.85 23.2,2.65 0.05,1.95 2.38,4.7 3.51,5.08 3.69,2.89 2.96,-0.48 6.15,-4.25 2.88,-0.53 5.39,0.66 19.18,-0.68 16.66,4.45 17.8,8.5 15.98,12.86 11.04,17.53 5.27,14.86 6.59,13.22 8.43,10.02 11.27,5 33.84,-39.78 17.78,-11.23 23.7,-5.44 25.36,-0.13 23.52,3.82 48.31,18.57 22.1,13.01 10.25,3.29 58.15,-7.43 25.02,8.22 46.5,32.63 23.26,9.54 16.3,1.76 8.69,10.92 7.76,12.5 13.1,6.47 78.59,-21.14 12.05,-7.21 11.44,-10.99 14.23,-21.49 1.07,-2.83 9.49,-3.43 6.51,1.45 5.89,2.66 7.63,0.74 37.05,-14.19 21.33,0.08 13.8,-4.45 4.48,-0.3 9.78,5.14 1.9,3.71 -0.56,5.81 2.57,11.39 18.51,34.07 20.78,14.13 55.08,11.66 7.47,2.2 5.58,4.53 9.84,12.45 0.59,2.4 7.73,16.45 1.47,2.22 4.47,31.58 0.23,12.46 1.84,12.73 5.65,11.35 7.82,5.88 16,1.53 8.42,2.72 34.12,28.891 17.16,35.821 -1.71,40.789 -22.3,44.23 -17.83,15.891 -2.66,4.328 3.38,9.32 7.85,10.77 15.22,15.101 16.72,7.508 33.52,7.102 16.03,10.918 38.36,49.582 21.89,10.82 8.88,6.668 7.72,9.09 4.7,10.121 -0.22,11.262 -5.05,3.918 -2.9,4.73 6.56,14.039 16.51,17.203 20.98,11.188 42.86,8.879 22.04,-4.039 10.45,-15.348 3,-25.121 0.16,-33.531 -2.85,-32 -12.9,-57.469 -2.84,-28.57 2.83,-27.129 8.32,-17.922 14.11,-11.809 20.11,-8.23 21.22,-10.871 21.79,-22.641 48.37,-72.269 7.49,-3.88 14.91,-5.24 35.93,-21.17 13.58,-0.74 5.52,3.08 12.02,10.58 4.81,2.22 6.38,-2.38 5.63,-10.41 5.9,-4.04 12.38,-1.76 23.73,0.51 11.66,-4.11 19.6,-25.99 -11.49,-26.04 -22.22,-26.88 -13.69,-31.2 -2.98,-5.33 -1.29,-2.98 13.29,-0.9 11.83,-4.22 44.39,-23.92 5.2,-4.09 5.04,-7.07 7.58,-17.75 13.43,-23.96 6.48,-14.54 4.31,-14.53 1.26,-19.23 -3.14,-13.78 -4.67,-13.2 -2.91,-17.1 30.75,9.32 25.44,-11.32 23.37,-4.37 24.79,30.44 19.31,37.61 2.96,18.9 -8.84,18.42 -7.29,4.65 -16.91,3.38 -7.54,4.3 -7.05,10.45 -6.41,20.21 -8.32,8.44 -1.69,2.82 -0.56,2.81 0.57,2.87 1.68,2.76 25.45,23.48 -13.76,38.7 3.36,12.63 19.83,15.33 16.94,5.35 7.35,4.31 6.15,10.4 2.47,13.67 -1.7,25.03 3.02,14.36 14.27,21.432 56.04,37.98 6.04,11.5 3.56,12.809 4.28,11.031 8.36,6.226 9.24,4.383 8.9,8.348 6.98,11.269 11.36,39.832 22.38,47.161 4.69,24.468 -1.08,14.301 -10.47,39.379 -0.13,15.883 1.94,14.008 -1.55,11.14 -10.27,7.059 -7.43,14.992 5.95,27.231 13.24,26.808 14.63,13.66 37.33,4.731 15.25,-3.981 0.62,-13.75 19.68,-18.57 5.8,-2.5 8.32,3.371 3.69,6.68 2.66,7.91 5.2,7.121 12.32,9.199 6.02,1.379 2.5,-6.969 5.2,-106.539 -1.02,-16.953 1.55,-6.219 5.59,-5.421 17.07,-9.348 6.87,-5.582 15.6,-39.988 9.88,-13.43 16.39,-10.969 17.95,-6.422 88.29,-0.351 14.44,5.98 11.63,16.41 0.24,8.762 -1.3,12.598 1.4,12.703 8.26,9.519 8.27,-0.132 18.88,-11.129 9.88,-2.028 15.94,5.348 50.93,26.828 33.48,6.152 14.96,-0.949 15.87,-3.922 19.39,-12.398 5.31,-18.031 0.59,-21.989 5.31,-24.281 11.5,-15.129 30.76,-26.601 8.05,-18.789 0.97,-25.082 25.52,-0.18 32.34,12.793 21.33,13.859 9.8,21.391 -10.16,19.668 -32.22,31.879 -7.17,12.301 -3.24,9.32 0.34,10.172 3.69,15.09 5.65,10.878 15.94,14.7 5.46,7.539 5.45,24.32 -5.82,12.262 -13.34,5.148 -34.48,6.192 -22.67,8.48 -12.26,14.891 13.27,23.199 -6.73,4.449 -3.81,6.18 -1.93,8.039 -1.08,10.269 3.17,11.872 -0.16,24.41 0.93,7.992 6.45,9.957 16.34,16.762 6.22,8.589 8.93,36.36 3.21,8.262 7.3,4.148 72.19,21.922 19.69,0.469 12.34,-9.801 1.7,-12.52 -3.83,-22.89 3.59,-12.008 31.77,-10.352 6.11,-5.238 4.13,-5.531 4.92,-5.031 8.7,-3.848 9.85,-1.442 26.66,2.969 55.17,-13.469 13.82,2.918 10.37,17.942 5.59,27.652 0.02,28.688 -6.17,21.312 -16.23,13.137 -32.66,2.922 -14.12,15.84 -6.77,21.129 3.45,10.628 8.16,8.043 7.12,13.25 1.37,15.789 -0.93,12.649 2.9,10.223 12.8,8.527 8.98,14.211 -2.17,15.262 -5.74,16.07 -1.72,16.508 16.28,20.351 4.36,7.141 2.58,10.039 3.35,35.848 25.12,-19.598 31.66,-2.902 77.1,22.89 13.44,1.781 11.8,-2.859 59.07,-33.652 7.66,-11.059 -3.53,-7.781 -16.65,-14.117 -3.43,-5.563 4.78,-9.64 8.22,-0.098 15.97,5.43 8.91,-2.75 22.21,-11.969 7.5,-0.113 14.42,4.472 7.82,0.059 6.94,-3.399 13.29,-10.859 7.89,-3.062 7.56,0.761 25.28,9.231 13.05,2.148 26.66,-1.949 13.05,-4.012 10.85,1.801 10.36,11.488 16.37,29.731 3.07,3.07 8.34,4.043 3.22,3.668 1.19,5.609 -1.17,11.52 0.52,4.262 13.44,34.629 7,39.289 5.93,13.8316 47.92,50.3203 13.38,8.5274 52.19,18.6015 53.02,10.4493 27.29,-5.1094 24.01,-10.8281 23.31,-0.461 25.08,25.80862 0.08,0.10937 5.54,8.83203 6.6,5.34768 7.56,1.9922 13.46,-2.7617 5.04,-2.75005 4.53,-4.01953 4.18,-5.2695325 6.49,-3.6992175 6.96,-1.03906 7.11,1.55078 7.02,4.078122 0.08,0 0.15,0.121094 0.08,0.007813 21.87,7.179691 18.02,2.29299 39.39,-6.6719 0.4,0.01172 0.95,-0.25 5.75,-0.33203 5.71,1 14.51,-1 25.23,-17.41019 14.42,-4.8984 8.73,2.3477 14.5,12.72261 8.22,5.69921 34.3,6.73829 25.49,21.80079 31.63,18.6406 33.1,12.8594 54.07,4.6406 75.34,43.1017 48.49,11.578 18.13,-5.41 0.73,-29.3009 -15.27,-22.5703 -44.99,-27.5196 -7.24,-19.7773 5.47,-10.83206 3.81,-12.55859"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7129" /><path
+               id="path3086" /><path
                d="m 3011.49,700.031 0,0 206.9,-127.351 0,-0.059 5.79,-26.152 22.51,-33.379 28.13,-12.59 21.73,-18.828 -0.23,-47.102 -7.19,-16.941 -28.96,-37.188 -3.44,-9.992 -3.75,-19.617 -2.83,-7.66 -25.55,-31.25 -24.03,-41.352 -12.37,-21.269 -12.83,-37.559 -1.56,-37.422 5.91,-18.34 8.33,-15.968 6.46,-17.762 0.55,-23.7188 -7.12,-14.8593 -11.54,-12.0235 -8.79,-11.9687 0.93,-10.3594 17.14,-4.9492 46.44,-7.4102 15.58,5.0899 14.24,-3.6602 39.76,5.2578 12.73,-1.8164 143.98,-43.85153 -1.12,-12.67967 3.25,-2.7188 4.71,0.4297 2.94,-3.4219 0.08,-6.539 -3.03,-10.6602 -1.6,-26.0898 -2.3,-12 1.37,-10.4102 9.83,-13.6211 19.05,-14.2575 81.79,-25.282 29.82,-27.609 17.31,-9.699 33.08,-10.113 15.76,-0.379 19.62,5.89 32.99,17.41 7.63,11.461 1.91,8.528 0.49,9.371 3.4,14.129 11.26,19.672 12.32,2.4996 14.85,-3.6406 18.95,1.199 0.05,20.7619 12.87,25.7188 18.81,22.3203 21.86,13.0391 4.15,0.9101 4.26,-0.7578 4.06,-2.5391 0.07,0 0.01,-0.1718 8.01,-8.3008 16.33,-25.2695 26.25,-20.0899 6.92,-7.9687 4.44,-18.6716 -8.75,-37.93 2.25,-23.691 -3.35,-35.848 -2.58,-10.039 -4.36,-7.141 -16.28,-20.351 1.72,-16.508 5.74,-16.07 2.17,-15.262 -8.98,-14.211 -12.8,-8.527 -2.9,-10.223 0.93,-12.649 -1.37,-15.789 -7.12,-13.25 -8.16,-8.043 -3.45,-10.628 6.77,-21.129 14.12,-15.84 32.66,-2.922 16.23,-13.137 6.17,-21.312 -0.02,-28.688 -5.59,-27.652 -10.37,-17.942 -13.82,-2.918 -55.17,13.469 -26.66,-2.969 -9.85,1.442 -8.7,3.848 -4.92,5.031 -4.13,5.531 -6.11,5.238 -31.77,10.352 -3.59,12.008 3.83,22.89 -1.7,12.52 -12.34,9.801 -19.69,-0.469 -72.19,-21.922 -7.3,-4.148 -3.21,-8.262 -8.93,-36.36 -6.22,-8.589 -16.34,-16.762 -6.45,-9.957 -0.93,-7.992 0.16,-24.41 -3.17,-11.872 1.08,-10.269 1.93,-8.039 3.81,-6.18 6.73,-4.449 -13.27,-23.199 12.26,-14.891 22.67,-8.48 34.48,-6.192 13.34,-5.148 5.82,-12.262 -5.45,-24.32 -5.46,-7.539 -15.94,-14.7 -5.65,-10.878 -3.69,-15.09 -0.34,-10.172 3.24,-9.32 7.17,-12.301 32.22,-31.879 10.16,-19.668 -9.8,-21.391 -21.33,-13.859 -32.34,-12.793 -25.52,0.18 -0.97,25.082 -8.05,18.789 -30.76,26.601 -11.5,15.129 -5.31,24.281 -0.59,21.989 -5.31,18.031 -19.39,12.398 -15.87,3.922 -14.96,0.949 -33.48,-6.152 -50.93,-26.828 -15.94,-5.348 -9.88,2.028 -18.88,11.129 -8.27,0.132 -8.26,-9.519 -1.4,-12.703 1.3,-12.598 -0.24,-8.762 -11.63,-16.41 -14.44,-5.98 -88.29,0.351 -17.95,6.422 -16.39,10.969 -9.88,13.43 -15.6,39.988 -6.87,5.582 -17.07,9.348 -5.59,5.421 -1.55,6.219 1.02,16.953 -5.2,106.539 -2.5,6.969 -6.02,-1.379 -12.32,-9.199 -5.2,-7.121 -2.66,-7.91 -3.69,-6.68 -8.32,-3.371 -5.8,2.5 -19.68,18.57 -0.62,13.75 -15.25,3.981 -37.33,-4.731 -14.63,-13.66 -13.24,-26.808 -5.95,-27.231 7.43,-14.992 10.27,-7.059 1.55,-11.14 -1.94,-14.008 0.13,-15.883 10.47,-39.379 1.08,-14.301 -4.69,-24.468 -22.38,-47.161 -11.36,-39.832 -6.98,-11.269 -8.9,-8.348 -9.24,-4.383 -8.36,-6.226 -4.28,-11.031 -3.56,-12.809 -6.04,-11.5 -56.04,-37.98 -14.27,-21.432 -3.02,-14.36 1.7,-25.03 -2.47,-13.67 -6.15,-10.4 -7.35,-4.31 -16.94,-5.35 -19.83,-15.33 -3.36,-12.63 13.76,-38.7 -25.45,-23.48 -1.68,-2.76 -0.57,-2.87 0.56,-2.81 1.69,-2.82 8.32,-8.44 6.41,-20.21 7.05,-10.45 7.54,-4.3 16.91,-3.38 7.29,-4.65 8.84,-18.42 -2.96,-18.9 -19.31,-37.61 -24.79,-30.44 -23.37,4.37 -25.44,11.32 -30.75,-9.32 2.91,17.1 4.67,13.2 3.14,13.78 -1.26,19.23 -4.31,14.53 -6.48,14.54 -13.43,23.96 -7.58,17.75 -5.04,7.07 -5.2,4.09 -44.39,23.92 -11.83,4.22 -13.29,0.9 1.29,2.98 2.98,5.33 13.69,31.2 22.22,26.88 11.49,26.04 -19.6,25.99 -11.66,4.11 -23.73,-0.51 -12.38,1.76 -5.9,4.04 -5.63,10.41 -6.38,2.38 -4.81,-2.22 -12.02,-10.58 -5.52,-3.08 -13.58,0.74 -35.93,21.17 -14.91,5.24 -7.49,3.88 -48.37,72.269 -21.79,22.641 -21.22,10.871 -20.11,8.23 -14.11,11.809 -8.32,17.922 -2.83,27.129 2.84,28.57 12.9,57.469 2.85,32 -0.16,33.531 -3,25.121 -10.45,15.348 -22.04,4.039 -42.86,-8.879 -20.98,-11.188 -16.51,-17.203 -6.56,-14.039 2.9,-4.73 5.05,-3.918 0.22,-11.262 -4.7,-10.121 -7.72,-9.09 -8.88,-6.668 -21.89,-10.82 -38.36,-49.582 -16.03,-10.918 -33.52,-7.102 -16.72,-7.508 -15.22,-15.101 -7.85,-10.77 -3.38,-9.32 2.66,-4.328 17.83,-15.891 22.3,-44.23 1.71,-40.789 -17.16,-35.821 -34.12,-28.891 -8.42,-2.72 -16,-1.53 -7.82,-5.88 -5.65,-11.35 -1.84,-12.73 -0.23,-12.46 -4.47,-31.58 -1.47,-2.22 -7.73,-16.45 -0.59,-2.4 -9.84,-12.45 -5.58,-4.53 -7.47,-2.2 -55.08,-11.66 -20.78,-14.13 -18.51,-34.07 -2.57,-11.39 0.56,-5.81 -1.9,-3.71 -9.78,-5.14 -4.48,0.3 -13.8,4.45 -21.33,-0.08 -37.05,14.19 -7.63,-0.74 -5.89,-2.66 -6.51,-1.45 -9.49,3.43 -1.07,2.83 -14.23,21.49 -11.44,10.99 -12.05,7.21 -78.59,21.14 -13.1,-6.47 -7.76,-12.5 -8.69,-10.92 -16.3,-1.76 -23.26,-9.54 -46.5,-32.63 -25.02,-8.22 -58.15,7.43 -10.25,-3.29 -22.1,-13.01 -48.31,-18.57 -23.52,-3.82 -25.36,0.13 -23.7,5.44 -17.78,11.23 -33.84,39.78 -5.14,9.09 -3.89,11.3 -4.94,20.46 -8.31,23.31 -2.5,11.9 -3.7,2.62 -50.87,60.48 -17.38,8.22 -6.55,-2.47 -5.67,-5.54 -6.04,-4.32 -7.32,1.23 -6.66,5.35 -0.39,3.46 1.73,4.61 -0.09,8.62 1.15,1.06 0.07,11.61 -1.06,11.06 -2.19,-1.04 3.67,5.65 6.44,7.41 5.66,8.351 1.03,8.481 -11.51,11.738 -61.11,15.238 -6.18,18.852 8.17,37.871 14.51,39.418 28.79,52.352 -16.68,30.629 -26.49,29.73 -14,25.789 4.5,12.723 20.94,23.199 6.01,18.449 -1.08,21.121 -6.84,11.219 -11.43,6.07 -113.571,32.95 -51.141,3.199 -49.507,-8.207 -66.969,-42.782 -25.152,-5.55 -25.301,-0.328 -23.938,-6.86 -25.703,-20.762 -22.937,-28.21 -17,-21.481 -4.672,-15.008 2.793,-11.191 6.429,-19.141 0.239,-4.488 6.761,-18.629 3.098,-4.832 7.902,-4.469 13.11,5.469 5.328,-2.539 3.109,-25.742 -20.648,-20.387 -50.5,-30.941 -41.051,-44.7 -25.527,-11.953 -25.832,12.672 -35.25,-0.07 -35.352,-7 -19.027,-10.371 11.219,23.722 6.332,10.969 2.757,9.442 -12.988,17.628 -7.473,15.52 3.383,13.27 19.27,11.23 47.07,20.879 1.289,0.351 1.281,0.071 1.43,-0.172 5.981,-2.18 4.597,-0.738 4.492,0.348 17.161,4.652 3.617,7.289 -0.34,10.301 0.84,11.988 6.64,31.262 2.871,8.578 26.918,54.781 -0.589,12.332 -8.77,17.16 -10.84,12.59 -40.519,26.988 9.129,8.11 1.703,7.269 -1.313,7.582 0.321,8.469 -0.43,3.442 -1.66,4.66 -1.469,5.289 0.211,5.679 3.269,6.661 9.079,9.089 28.41,44.84 28.351,33.231 -17.793,21.41 -1.84,14.719 10.793,13.121 106.25,90.508 55.789,28.179 7.801,6.153 20.899,22.031 25.789,12.59 8.25,5.738 8.961,10.512 3.218,9.117 0.301,18.762 -5.48,6.449 -3.84,5.582 -1.918,6.328 1.277,5.359 13.16,35.762 5.602,9.379 4.602,10.492 1.757,15.348 -2.039,12.359 -9.531,19.692 -2.82,10.1481 12.609,38.6211 37.57,20.1718 82.633,23.15628 51.889,37.08202 18.09,24.5508 -8.49,20.8789 10.72,17.3594 7.35,6.8203 19.26,6.2813 3.03,6.98 2.88,1.868 11.06,5.312 -0.39,19.039 22.96,7.27 50.96,44.55 15.07,23.372 22.61,22.058 52.4,36.328 -2.32,27.641 5.44,22.672 14.6,14.281 6.9,0.68 4.1,1.5 11.4,14.617 8.01,4.422 7.78,1.929 7.22,4.36 6.17,12.058 -7.6,11.481 -11.06,10.57 -11,9.442 -14.07,-6.332 -90.06,-6.45 4.13,14.11 9.84,17.121 11.55,14.281 19.72,10.91 1.73,20.93 19.92,3.891 12.42,6.75 11.47,9.269 5.93,9.211 -3.32,13.328 -7.39,15.57 -1.55,12.418 14.13,3.911 6.83,5.089 6.81,1.571 6.81,-1.918 6.72,-5.43 19.46,-3.34 37.69,5.617 17.66,-4.128 9.67,-5.891 10,-1.848 20.53,1.578 -14.45,-31.199 3.86,-18.25 16.13,-10.211 21.97,-7.461 3.07,-2.558 2.01,-4.039 2.95,-4.09 5.79,-2.61 5.09,0.918 28.8,11.77 20.05,3.762 52.32,-3.36 21.14,8.008 15.28,19.172 2.63,10.34 -1.12,6.289 -3.56,5.269 -2.44,2.75 -3.67,6.942 0.06,6.828 8.85,2.41 11.6,-4.309 9.68,-6.46 9.7,-1.629 11.73,10.168 1.36,1.839 1.07,3.141 0.14,2.902 -0.72,2.797 -5.23,7.66 -1.54,4.512 1.08,3.481 4.4,2.269 7.75,-1.82 6.11,1.902 3.39,6.278 -0.02,11.121 -2.57,-0.012 -12.34,9.832 -1.77,0.777 33.33,26.25 18.22,9.711 26.83,8.93 1.11,0.953 37.65,10.59 17.05,1.476 -10.35,-27.648 -8.14,-7.59 -19.67,0.531 38.52,-21.25 16.52,-2.492 62.89,11.981 14.28,7.808 12.19,14.153 14.01,21.179 10.49,-5.558 48.44,-3.641 4.52,-4.832 2.26,-10.449 1.33,-10.449 1.96,-4.743 97.88,-1.289 33.91,7.18 7.37,4.883 3.39,4.777 3.1,5.602 6.46,7.25 6.19,4.687 16.41,8.641 13.8,3.949 5.18,5.383 3.79,5.379 3.91,2.492 40.61,6.418 13.59,-0.078 19.44,-6.152 8.69,-1 3.99,-4.86 3.94,-10.75 5.19,-10.762 7.34,-4.886 28.46,-7.832 48.1,-0.66 23.19,3.73 0.97,5.281 8.91,18.949 23.1,15.059 22.53,2.16 11.51,-10.929 8.84,-15.098 8.26,-10.274 10.12,3.332 4.94,8.559 0.9,8.332 -0.35,7.899 0.98,7.57 -0.29,3.82 -1.77,4.352 -1.21,5.058 1.74,6.129 2.73,2.34 3.97,1.481 3.26,0.089 0.69,-1.781 0.43,-6.84 4.88,-2.488 4.4,26.309 -6.83,0.703 -12,5 -10.46,1.84 -36.51,-5.993 -11.29,-5.589 -10.45,-7.372 -11.14,-5.668 -13.36,-0.48 -15.46,8.949 -19.14,14.821 -3.72,0.601 -11.76,4.43 4.91,12 -1.79,9.488 -3.12,8.152 0.92,8.2 7.43,8.359 19.07,10.281 8.04,7.41 5.82,22.188 3.54,8.07 10.25,14.86 5.91,3.461 8.37,-0.282 40.39,7.782 11.34,5.679 -6.86,17.563 11.96,6.758 18.64,-1.129 13.82,-6.34 1.12,-8.102 0.63,-14.359 2.56,-13.508 7.33,-5.531 9.32,6.051 3.99,24.207 6.85,7.101 9.66,-3.262 7.15,-10.976 5.83,-12.891 5.54,-8.871 7.74,-1.781 8.29,1.691 7.36,-1.461 4.91,-11.25 -2.03,-4.179 -10.05,-14.989 -2.51,-7.25 3.15,-9.089 5.94,-7.403 1.83,-8.48 1.44,-7.239 39.63,0.442 -6.1,6.879 6.81,21.781 20.15,-0.98 24.46,-14.332 19.35,-18.391 -13.81,-3.18 0.06,-7.73 11.15,-11.188 21.78,-16.32 18.38,-4.852 29.42,2.762 27.32,8.711 11.95,12.977 14.2,5.632 83.72,-9.339 41.51,0.078 10.2,-15.852 28.09,0.113 29.21,-6.66"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 3011.49,700.031 0,0 206.9,-127.351 0,-0.059 5.79,-26.152 22.51,-33.379 28.13,-12.59 21.73,-18.828 -0.23,-47.102 -7.19,-16.941 -28.96,-37.188 -3.44,-9.992 -3.75,-19.617 -2.83,-7.66 -25.55,-31.25 -24.03,-41.352 -12.37,-21.269 -12.83,-37.559 -1.56,-37.422 5.91,-18.34 8.33,-15.968 6.46,-17.762 0.55,-23.7188 -7.12,-14.8593 -11.54,-12.0235 -8.79,-11.9687 0.93,-10.3594 17.14,-4.9492 46.44,-7.4102 15.58,5.0899 14.24,-3.6602 39.76,5.2578 12.73,-1.8164 143.98,-43.85153 -1.12,-12.67967 3.25,-2.7188 4.71,0.4297 2.94,-3.4219 0.08,-6.539 -3.03,-10.6602 -1.6,-26.0898 -2.3,-12 1.37,-10.4102 9.83,-13.6211 19.05,-14.2575 81.79,-25.282 29.82,-27.609 17.31,-9.699 33.08,-10.113 15.76,-0.379 19.62,5.89 32.99,17.41 7.63,11.461 1.91,8.528 0.49,9.371 3.4,14.129 11.26,19.672 12.32,2.4996 14.85,-3.6406 18.95,1.199 0.05,20.7619 12.87,25.7188 18.81,22.3203 21.86,13.0391 4.15,0.9101 4.26,-0.7578 4.06,-2.5391 0.07,0 0.01,-0.1718 8.01,-8.3008 16.33,-25.2695 26.25,-20.0899 6.92,-7.9687 4.44,-18.6716 -8.75,-37.93 2.25,-23.691 -3.35,-35.848 -2.58,-10.039 -4.36,-7.141 -16.28,-20.351 1.72,-16.508 5.74,-16.07 2.17,-15.262 -8.98,-14.211 -12.8,-8.527 -2.9,-10.223 0.93,-12.649 -1.37,-15.789 -7.12,-13.25 -8.16,-8.043 -3.45,-10.628 6.77,-21.129 14.12,-15.84 32.66,-2.922 16.23,-13.137 6.17,-21.312 -0.02,-28.688 -5.59,-27.652 -10.37,-17.942 -13.82,-2.918 -55.17,13.469 -26.66,-2.969 -9.85,1.442 -8.7,3.848 -4.92,5.031 -4.13,5.531 -6.11,5.238 -31.77,10.352 -3.59,12.008 3.83,22.89 -1.7,12.52 -12.34,9.801 -19.69,-0.469 -72.19,-21.922 -7.3,-4.148 -3.21,-8.262 -8.93,-36.36 -6.22,-8.589 -16.34,-16.762 -6.45,-9.957 -0.93,-7.992 0.16,-24.41 -3.17,-11.872 1.08,-10.269 1.93,-8.039 3.81,-6.18 6.73,-4.449 -13.27,-23.199 12.26,-14.891 22.67,-8.48 34.48,-6.192 13.34,-5.148 5.82,-12.262 -5.45,-24.32 -5.46,-7.539 -15.94,-14.7 -5.65,-10.878 -3.69,-15.09 -0.34,-10.172 3.24,-9.32 7.17,-12.301 32.22,-31.879 10.16,-19.668 -9.8,-21.391 -21.33,-13.859 -32.34,-12.793 -25.52,0.18 -0.97,25.082 -8.05,18.789 -30.76,26.601 -11.5,15.129 -5.31,24.281 -0.59,21.989 -5.31,18.031 -19.39,12.398 -15.87,3.922 -14.96,0.949 -33.48,-6.152 -50.93,-26.828 -15.94,-5.348 -9.88,2.028 -18.88,11.129 -8.27,0.132 -8.26,-9.519 -1.4,-12.703 1.3,-12.598 -0.24,-8.762 -11.63,-16.41 -14.44,-5.98 -88.29,0.351 -17.95,6.422 -16.39,10.969 -9.88,13.43 -15.6,39.988 -6.87,5.582 -17.07,9.348 -5.59,5.421 -1.55,6.219 1.02,16.953 -5.2,106.539 -2.5,6.969 -6.02,-1.379 -12.32,-9.199 -5.2,-7.121 -2.66,-7.91 -3.69,-6.68 -8.32,-3.371 -5.8,2.5 -19.68,18.57 -0.62,13.75 -15.25,3.981 -37.33,-4.731 -14.63,-13.66 -13.24,-26.808 -5.95,-27.231 7.43,-14.992 10.27,-7.059 1.55,-11.14 -1.94,-14.008 0.13,-15.883 10.47,-39.379 1.08,-14.301 -4.69,-24.468 -22.38,-47.161 -11.36,-39.832 -6.98,-11.269 -8.9,-8.348 -9.24,-4.383 -8.36,-6.226 -4.28,-11.031 -3.56,-12.809 -6.04,-11.5 -56.04,-37.98 -14.27,-21.432 -3.02,-14.36 1.7,-25.03 -2.47,-13.67 -6.15,-10.4 -7.35,-4.31 -16.94,-5.35 -19.83,-15.33 -3.36,-12.63 13.76,-38.7 -25.45,-23.48 -1.68,-2.76 -0.57,-2.87 0.56,-2.81 1.69,-2.82 8.32,-8.44 6.41,-20.21 7.05,-10.45 7.54,-4.3 16.91,-3.38 7.29,-4.65 8.84,-18.42 -2.96,-18.9 -19.31,-37.61 -24.79,-30.44 -23.37,4.37 -25.44,11.32 -30.75,-9.32 2.91,17.1 4.67,13.2 3.14,13.78 -1.26,19.23 -4.31,14.53 -6.48,14.54 -13.43,23.96 -7.58,17.75 -5.04,7.07 -5.2,4.09 -44.39,23.92 -11.83,4.22 -13.29,0.9 1.29,2.98 2.98,5.33 13.69,31.2 22.22,26.88 11.49,26.04 -19.6,25.99 -11.66,4.11 -23.73,-0.51 -12.38,1.76 -5.9,4.04 -5.63,10.41 -6.38,2.38 -4.81,-2.22 -12.02,-10.58 -5.52,-3.08 -13.58,0.74 -35.93,21.17 -14.91,5.24 -7.49,3.88 -48.37,72.269 -21.79,22.641 -21.22,10.871 -20.11,8.23 -14.11,11.809 -8.32,17.922 -2.83,27.129 2.84,28.57 12.9,57.469 2.85,32 -0.16,33.531 -3,25.121 -10.45,15.348 -22.04,4.039 -42.86,-8.879 -20.98,-11.188 -16.51,-17.203 -6.56,-14.039 2.9,-4.73 5.05,-3.918 0.22,-11.262 -4.7,-10.121 -7.72,-9.09 -8.88,-6.668 -21.89,-10.82 -38.36,-49.582 -16.03,-10.918 -33.52,-7.102 -16.72,-7.508 -15.22,-15.101 -7.85,-10.77 -3.38,-9.32 2.66,-4.328 17.83,-15.891 22.3,-44.23 1.71,-40.789 -17.16,-35.821 -34.12,-28.891 -8.42,-2.72 -16,-1.53 -7.82,-5.88 -5.65,-11.35 -1.84,-12.73 -0.23,-12.46 -4.47,-31.58 -1.47,-2.22 -7.73,-16.45 -0.59,-2.4 -9.84,-12.45 -5.58,-4.53 -7.47,-2.2 -55.08,-11.66 -20.78,-14.13 -18.51,-34.07 -2.57,-11.39 0.56,-5.81 -1.9,-3.71 -9.78,-5.14 -4.48,0.3 -13.8,4.45 -21.33,-0.08 -37.05,14.19 -7.63,-0.74 -5.89,-2.66 -6.51,-1.45 -9.49,3.43 -1.07,2.83 -14.23,21.49 -11.44,10.99 -12.05,7.21 -78.59,21.14 -13.1,-6.47 -7.76,-12.5 -8.69,-10.92 -16.3,-1.76 -23.26,-9.54 -46.5,-32.63 -25.02,-8.22 -58.15,7.43 -10.25,-3.29 -22.1,-13.01 -48.31,-18.57 -23.52,-3.82 -25.36,0.13 -23.7,5.44 -17.78,11.23 -33.84,39.78 -5.14,9.09 -3.89,11.3 -4.94,20.46 -8.31,23.31 -2.5,11.9 -3.7,2.62 -50.87,60.48 -17.38,8.22 -6.55,-2.47 -5.67,-5.54 -6.04,-4.32 -7.32,1.23 -6.66,5.35 -0.39,3.46 1.73,4.61 -0.09,8.62 1.15,1.06 0.07,11.61 -1.06,11.06 -2.19,-1.04 3.67,5.65 6.44,7.41 5.66,8.351 1.03,8.481 -11.51,11.738 -61.11,15.238 -6.18,18.852 8.17,37.871 14.51,39.418 28.79,52.352 -16.68,30.629 -26.49,29.73 -14,25.789 4.5,12.723 20.94,23.199 6.01,18.449 -1.08,21.121 -6.84,11.219 -11.43,6.07 -113.571,32.95 -51.141,3.199 -49.507,-8.207 -66.969,-42.782 -25.152,-5.55 -25.301,-0.328 -23.938,-6.86 -25.703,-20.762 -22.937,-28.21 -17,-21.481 -4.672,-15.008 2.793,-11.191 6.429,-19.141 0.239,-4.488 6.761,-18.629 3.098,-4.832 7.902,-4.469 13.11,5.469 5.328,-2.539 3.109,-25.742 -20.648,-20.387 -50.5,-30.941 -41.051,-44.7 -25.527,-11.953 -25.832,12.672 -35.25,-0.07 -35.352,-7 -19.027,-10.371 11.219,23.722 6.332,10.969 2.757,9.442 -12.988,17.628 -7.473,15.52 3.383,13.27 19.27,11.23 47.07,20.879 1.289,0.351 1.281,0.071 1.43,-0.172 5.981,-2.18 4.597,-0.738 4.492,0.348 17.161,4.652 3.617,7.289 -0.34,10.301 0.84,11.988 6.64,31.262 2.871,8.578 26.918,54.781 -0.589,12.332 -8.77,17.16 -10.84,12.59 -40.519,26.988 9.129,8.11 1.703,7.269 -1.313,7.582 0.321,8.469 -0.43,3.442 -1.66,4.66 -1.469,5.289 0.211,5.679 3.269,6.661 9.079,9.089 28.41,44.84 28.351,33.231 -17.793,21.41 -1.84,14.719 10.793,13.121 106.25,90.508 55.789,28.179 7.801,6.153 20.899,22.031 25.789,12.59 8.25,5.738 8.961,10.512 3.218,9.117 0.301,18.762 -5.48,6.449 -3.84,5.582 -1.918,6.328 1.277,5.359 13.16,35.762 5.602,9.379 4.602,10.492 1.757,15.348 -2.039,12.359 -9.531,19.692 -2.82,10.1481 12.609,38.6211 37.57,20.1718 82.633,23.15628 51.889,37.08202 18.09,24.5508 -8.49,20.8789 10.72,17.3594 7.35,6.8203 19.26,6.2813 3.03,6.98 2.88,1.868 11.06,5.312 -0.39,19.039 22.96,7.27 50.96,44.55 15.07,23.372 22.61,22.058 52.4,36.328 -2.32,27.641 5.44,22.672 14.6,14.281 6.9,0.68 4.1,1.5 11.4,14.617 8.01,4.422 7.78,1.929 7.22,4.36 6.17,12.058 -7.6,11.481 -11.06,10.57 -11,9.442 -14.07,-6.332 -90.06,-6.45 4.13,14.11 9.84,17.121 11.55,14.281 19.72,10.91 1.73,20.93 19.92,3.891 12.42,6.75 11.47,9.269 5.93,9.211 -3.32,13.328 -7.39,15.57 -1.55,12.418 14.13,3.911 6.83,5.089 6.81,1.571 6.81,-1.918 6.72,-5.43 19.46,-3.34 37.69,5.617 17.66,-4.128 9.67,-5.891 10,-1.848 20.53,1.578 -14.45,-31.199 3.86,-18.25 16.13,-10.211 21.97,-7.461 3.07,-2.558 2.01,-4.039 2.95,-4.09 5.79,-2.61 5.09,0.918 28.8,11.77 20.05,3.762 52.32,-3.36 21.14,8.008 15.28,19.172 2.63,10.34 -1.12,6.289 -3.56,5.269 -2.44,2.75 -3.67,6.942 0.06,6.828 8.85,2.41 11.6,-4.309 9.68,-6.46 9.7,-1.629 11.73,10.168 1.36,1.839 1.07,3.141 0.14,2.902 -0.72,2.797 -5.23,7.66 -1.54,4.512 1.08,3.481 4.4,2.269 7.75,-1.82 6.11,1.902 3.39,6.278 -0.02,11.121 -2.57,-0.012 -12.34,9.832 -1.77,0.777 33.33,26.25 18.22,9.711 26.83,8.93 1.11,0.953 37.65,10.59 17.05,1.476 -10.35,-27.648 -8.14,-7.59 -19.67,0.531 38.52,-21.25 16.52,-2.492 62.89,11.981 14.28,7.808 12.19,14.153 14.01,21.179 10.49,-5.558 48.44,-3.641 4.52,-4.832 2.26,-10.449 1.33,-10.449 1.96,-4.743 97.88,-1.289 33.91,7.18 7.37,4.883 3.39,4.777 3.1,5.602 6.46,7.25 6.19,4.687 16.41,8.641 13.8,3.949 5.18,5.383 3.79,5.379 3.91,2.492 40.61,6.418 13.59,-0.078 19.44,-6.152 8.69,-1 3.99,-4.86 3.94,-10.75 5.19,-10.762 7.34,-4.886 28.46,-7.832 48.1,-0.66 23.19,3.73 0.97,5.281 8.91,18.949 23.1,15.059 22.53,2.16 11.51,-10.929 8.84,-15.098 8.26,-10.274 10.12,3.332 4.94,8.559 0.9,8.332 -0.35,7.899 0.98,7.57 -0.29,3.82 -1.77,4.352 -1.21,5.058 1.74,6.129 2.73,2.34 3.97,1.481 3.26,0.089 0.69,-1.781 0.43,-6.84 4.88,-2.488 4.4,26.309 -6.83,0.703 -12,5 -10.46,1.84 -36.51,-5.993 -11.29,-5.589 -10.45,-7.372 -11.14,-5.668 -13.36,-0.48 -15.46,8.949 -19.14,14.821 -3.72,0.601 -11.76,4.43 4.91,12 -1.79,9.488 -3.12,8.152 0.92,8.2 7.43,8.359 19.07,10.281 8.04,7.41 5.82,22.188 3.54,8.07 10.25,14.86 5.91,3.461 8.37,-0.282 40.39,7.782 11.34,5.679 -6.86,17.563 11.96,6.758 18.64,-1.129 13.82,-6.34 1.12,-8.102 0.63,-14.359 2.56,-13.508 7.33,-5.531 9.32,6.051 3.99,24.207 6.85,7.101 9.66,-3.262 7.15,-10.976 5.83,-12.891 5.54,-8.871 7.74,-1.781 8.29,1.691 7.36,-1.461 4.91,-11.25 -2.03,-4.179 -10.05,-14.989 -2.51,-7.25 3.15,-9.089 5.94,-7.403 1.83,-8.48 1.44,-7.239 39.63,0.442 -6.1,6.879 6.81,21.781 20.15,-0.98 24.46,-14.332 19.35,-18.391 -13.81,-3.18 0.06,-7.73 11.15,-11.188 21.78,-16.32 18.38,-4.852 29.42,2.762 27.32,8.711 11.95,12.977 14.2,5.632 83.72,-9.339 41.51,0.078 10.2,-15.852 28.09,0.113 29.21,-6.66"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7131" /><path
+               id="path3088" /><path
                d="m 6894.41,4427.43 0,0 15.01,0.66 24.86,9.14 80.76,0.55 0.68,9.71 -4.01,38.5 -1.06,3.09 -0.78,4.21 0.15,6.25 1.65,3.95 6.26,8.37 1.72,5.8 -3.43,32.2 -11.92,14.68 -12.12,8.09 -3.99,12.33 0.08,0.01 2.88,4.04 3.31,3.22 3.83,2.22 3.91,1.18 9.54,8.23 2.84,5.38 1.21,9.31 14.33,-11.16 36.13,-4.88 6.84,-10.47 8.94,-7.47 10.26,-4.06 7.77,2.26 1.37,11.5 -0.01,0.12 5.09,15.05 8.52,7.12 8.53,-3.44 4.68,-16.6 7.96,-15.75 39.98,2.74 19.49,-7.71 12.79,-17.24 0.19,-10.79 -5.1,-12.17 -3.2,-20.86 3.45,-15.6 8.2,-19.02 9.85,-17.66 8.51,-11.41 14.99,-10.05 13.2,-4.53 11.44,-7.92 10.23,-20.11 1.15,-10.77 -1,-11.3 0.33,-10.61 5.3,-8.8 10.25,-2.29 7.07,8.88 5.67,12.4 5.84,8.72 29.1,5.03 145.27,-36.84 8.49,-4.62 10.61,-13.44 5.63,-4.58 7.65,-1.68 57.26,19.52 17.63,-0.06 2.22,-7.43 2.89,-6.56 41.25,-57.36 4.67,-1.18 19.49,2.39 40.31,19.64 11.82,-0.56 10.34,-8.29 10.84,-16.57 7.56,-14.45 5.32,-14.95 -0.36,-13.35 -9.36,-9.23 -1.05,-3.74 -0.24,-3.62 0.84,-3.45 1.77,-3.19 29.5,8.36 39.73,46.59 30.06,-0.17 23.99,-14.93 11.22,-4.01 11.63,3.91 7.55,11.69 3.73,14.67 4.09,11.64 8.92,2.84 25.65,2 23.63,-3.63 22.89,-10.12 66.53,-57.72 8.56,-20.52 -21.3,-11.36 3.54,-8.1 0.37,-3.67 -1.67,-3.3 -2.42,-6.73 -0.54,-5.73 -0.09,-8.65 0.73,-6.53 1.91,0.83 -5.22,-9.1 -13.13,-15.85 -5.73,-10.02 -11.88,-3.9 -23.31,4.06 -10.77,-4.71 -4.08,-14.89 -9.72,-10.16 -11.72,-8.63 -10.02,-10.19 -3.73,-1.93 -6.12,-4.77 -4.28,-0.82 4.65,-12 1.65,-3.25 -14.46,1.83 -3.86,-18.16 8.61,-19.2 23.42,-1.82 11.97,-27.74 4.01,-6.09 9.82,-6.45 5.1,1.66 4.63,4.91 8.02,3.51 32.37,3.2 6.96,-1.45 6.01,-9.83 1.54,-10.28 0.42,-10.15 2.8,-9.52 14.3,-15.55 32.83,-8.43 16.91,-9.48 11.66,-13.38 21.41,-31.1 11.72,-12.96 10.7,-15.43 23.85,-20.3 9.87,-20.21 11.96,-37.04 8.13,-13.2 14.21,-15.12 26.88,-20.15 31.56,-12.46 28.79,5.12 18.87,32.29 14.66,13.13 7.41,13.24 6.16,15.84 10.79,20.73 14.54,15.4 13.93,3.55 14.39,0.54 16.19,6.01 6.07,6.68 10.1,17.73 7.91,6.82 6.23,0.89 13.68,-3.29 6.35,1.15 1.33,4.26 -1.59,13.41 1.66,3.25 10.47,0.95 4.58,-2.46 4.04,-6.36 8.8,-10.54 8.97,-2.33 3.54,9.95 -2.98,14.48 -10.6,11.27 -3.94,26.84 -9.65,19.1 -14.47,12.83 -18.43,8.28 -14.76,12.28 -9.28,20.77 -7.82,23.06 -10.24,19.44 -26.31,31.13 -1.72,15.48 18.02,13.75 16.42,-0.33 32.45,-15.02 16.2,3.73 75.09,-12.5 8.29,-3.91 18.03,-12.06 9.62,-3.82 9.77,0.96 21.14,6.86 8.57,-1.6 -1.2,-3.27 3.76,-11.78 5.99,-13.85 5.32,-9.16 7.82,-6.79 26.79,-13.04 17.44,-2.99 33.23,4.71 15.39,-4.59 -12.48,-6.75 2.46,-3.96 2.91,-3.45 3.3,-2.88 3.55,-2.45 0.75,-14.55 2.98,-13.89 6.21,-10.86 10.29,-6.09 5.43,21.17 15.59,2.98 16.94,-10.79 8.97,-19.89 3.87,-2 3.93,-0.43 3.66,1.23 3.39,2.89 17.99,27.73 33.53,6.99 64.89,-3.88 15.96,6.22 11.04,11.4 17.67,31.66 2.9,9.52 0.94,7.79 4.28,3.52 12.57,-3.05 4.4,-3.26 15.16,-16.12 2.06,-2.31 0.72,-2.94 -0.12,-3.38 -1.2,-3.69 -5.27,-21.67 -0.2,-10.31 2.94,-10.99 8.38,-6.57 13.53,-19.21 -4.71,-17.59 -12.95,-14.2 -28.2,-21.74 -18.13,-9.68 -34.25,-5.32 -7.35,-4.87 -3.93,-11.78 2.41,-7.92 39.74,-39.84 11.73,-3.74 7.07,2.16 5.64,4.2 7.39,2.67 9.66,-1.43 20.53,-7.35 10.29,-0.94 0.42,-1.05 0.27,-1.02 -0.05,-0.88 -0.2,-0.83 -5.97,-6.46 -1.57,-6.35 2.96,-6.1 7.51,-5.92 9.01,-8.53 6.32,-11.7 5.6,-13.23 7.18,-12.58 9.37,-10.17 51.82,-40.6 26.69,-2.4 25.08,11.04 18.81,21.34 12.6,4.95 28.58,4.33 22.44,9.77 3.02,5.31 -2.6,10.91 -5.96,7.07 -6.15,-0.57 -5.47,-2.47 -3.97,1.15 -6.22,24.72 22.67,-2.83 45.07,-22.18 -2.15,-21.04 10.63,-9.64 46.75,-3.03 11.62,-4.67 24.96,-16.64 8.9,-2.74 17.23,-1.4 9.29,-5.25 3.79,-5.7 7.11,-16.58 4.93,-7.01 15.67,-9.85 10.11,3.36 17.86,20 -1.05,1.79 -1.12,1.14 -1.34,0.47 -1.55,-0.19 28.41,7.19 28.93,-6.36 56.97,-22.63 16.65,2.19 25.89,21.67 11.41,-5.05 7.04,-19.55 0.41,-17.25 4.86,-13.18 20.37,-7.8 -16.76,-25.42 4.12,-29.7 16.81,-32.1 21.43,-32.66 11.38,-31.34 5.61,-7.72 10.46,-5.47 22.41,0.93 10.66,-1.76 10.37,-6.46 16.31,-14.84 9.78,-4.26 10.38,2.23 10.59,6.35 10.98,3.42 11.84,-6.61 4.12,-8.26 9.86,-37.53 4.75,-10.22 11.04,-18.26 4.53,-9.6 16.6,-45.92 5.11,-22.65 -0.62,-18.91 -29.45,-4.69 -12.84,-6.93 -26.08,-31.16 -20.09,-3.78 -21.74,3.7 -25.22,8.86 -5.14,0.39 -4.87,-1.68 -19.2,-13.55 -32.56,0.55 -13.66,-11.31 -2.58,-9.59 0.84,-20.86 -2.42,-10.21 -5.2,-6.84 -22.16,-15.81 -26.04,-41.62 -14.9,-12.71 -21.7,2.11 4.81,-52.91 -39.62,-39.89 -92.94,-50.13 -18.91,-22.86 -14.02,-30.57 -9.48,-35.49 -4.83,-37.53 0.97,-30.08 7.87,-56.12 -1.87,-24.95 -12.05,-27.46 -19.08,-22.6 -22.88,-14.03 -39.51,-1.64 -17.32,-4.85 -14.15,-11.68 -7.36,-20.52 -2.59,-16.99 -1.61,-35.02 -4.18,-15.9 -11.9,-14.72 -13.89,-2.44 -15.73,0.83 -17.63,-5.2 -10.65,-11.18 -20.21,-46.41 -11.7,-12.22 -134.43,-71.49 -27.29,1.16 -25.08,21.18 -11.26,3.96 -16.84,-7.05 -25.7,-21.27 -12.46,-3.82 -88.27,33.19 -36.2,5.34 -32.02,-10.55 -36.28,-32.92 -5.56,-11.04 -2.08,-21.4 -9.1,-14.5 -22.92,-24.55 -14.79,-32.66 -25.83,-111 -6.82,-16.35 -10.14,-15.42 0.38,-21.28 -28.5,26.89 -17.85,72.44 -19.93,22.63 -12.17,-0.34 -27.2,-12.96 -13.95,-3.18 -14.04,3.66 -28.37,14.89 -11.63,2.7 -27.82,-3.99 -11.9,0.88 -10.32,5.79 -6.64,12.61 -4.35,15.67 -7.11,12.79 -14.6,4.26 -13.74,0.24 -45.1,8.36 -13.3,6.78 -6.98,1.63 -6.65,-1.59 -12.71,-6.94 -7.55,-1.09 -21.46,1.01 -11.9,-9.74 -31.01,-67.45 -7.31,-8.3 -11.21,-4.51 -4.23,0.92 -10.48,6.98 -15.04,-3.77 -0.76,-0.83 -104.16,5.39 -67.47,-10.46 -40.51,13.25 -78.75,46.92 -1.56,5.41 -0.71,7.69 -4.3,4.41 -12.13,-4.35 -1.83,11.64 -5.91,4.49 -8.29,-0.4 -9.04,-3.03 6.59,10.61 -6.1,-0.95 -5.67,1.97 -8.56,5.12 -14.11,-0.23 -5.19,1.67 -4.15,5.35 -4.19,13.4 -4.53,2.83 -22.4,-2.07 -6.22,-2.12 -24.82,-16.1 -12,-5 -16.89,-1.5 -16.78,2.45 -59.68,27.09 -62.43,18.24 -38.85,28.24 -16.5,7.66 -33.44,8.2 -36.65,14.95 -16.72,3.28 -34.26,-2.46 -3.84,2.22 -3.48,5.26 -4.08,4.29 -5.59,-0.52 -2.57,-4.78 -0.58,-15.07 -1.93,-6.06 -9.13,-13 -3.58,-2.73 -54.57,-19.61 -14.55,-0.89 3.56,16.24 -0.93,15.12 -4.32,14.84 -6.64,15.23 -57.26,0.07 -41.75,10.71 -15.84,-3.34 -2.2,-2.02 -0.84,-3.82 0.41,-5.17 1.16,-5.97 -8.13,-24.21 2.19,-31.65 5.7,-33.75 2.35,-30.71 -10.07,-70.79 -4.21,-14.43 -0.6,-7.84 1.99,-6.89 3.87,-8.53 3.82,-6.92 1.76,-1.89 -6.9,-20.12 -14.77,-2.54 -39.16,12.61 -38.72,2.34 -10.75,-5.1 -3.52,-10.89 -1.93,-13.72 -6.38,-13.59 -2.1,-21.52 -36.11,-36.91 -12.21,-23.61 -0.42,-30.19 2.93,-33.93 -1.57,-29.16 -13.68,-15.88 -12.17,-0.1 -6.33,6.83 -5.12,10.13 -8.69,9.89 -4.88,0.71 -10.98,-4.77 -5.76,0.21 -2.7,4.51 -0.62,7.4 -1.44,7.02 -5.02,3.82 -11.28,-1.76 -21.3,-12.23 -10.86,-3.27 -8.83,1.49 -30.5,13.26 -19.15,19.52 -10.2,-8.18 -13.39,-45.01 -10.81,-12.8 -37.15,-19.21 -14.03,-12.95 -5.63,-2.7 -7.03,-1.3 -74.94,20.78 -105.24,4.66 -25.75,8.84 -6.54,5.1 -13.76,15.01 -3.6,5.88 -4.42,14.93 1.16,3.3 4.08,1.83 4.27,10.72 2.1,1.75 3.62,-0.45 3.28,1.25 0.91,7.04 -2.35,6.65 -4.62,2.81 -5.23,1.73 -3.96,3.25 -5.32,8.82 -13.47,17.97 -6.92,6.58 -51.23,24 -16.97,12.34 -14.04,9.59 -14.46,6.74 -30.03,6.05 -15.29,13.96 -39.85,68.4 -18.71,25.52 -10.66,5.1 -27.58,2.62 -14.26,5.7 -13.26,11.69 -12.49,16.64 -9.02,19.74 -3.1,20.91 -13.22,-2.3 -12.9,6.13 -13,9.19 -13.33,7.09 -16.99,2.56 -9.86,-5.25 -6.23,-12.65 -6.42,-19.79 -17.58,7.2 -24.12,15.24 -22.17,18.47 -11.49,16.45 -2.26,31.15 -9.27,18.88 -32.84,29.8 -23.87,28.42 -9.34,7.19 -14.95,4.8 -44.22,-0.4 -21.33,10.91 -12.64,18.03 -10.77,21.35 -73.22,88.93 -9.3,4.63 -0.16,0.1 0,0.06 -24.7,26.38 -3.86,10.16 -1.55,10.69 -4.53,8.86 -12.9,4.56 -21.57,20.57 -10.95,7.95 -12.66,5.97 -28.16,6.2 -9.82,-3.67 3.96,-14.14 -13.5,-2.53 -43.11,4.09 -14.67,4.5 -12.08,11.31 -26.43,52.06 -15.36,14.38 -34.2,14.1 -14.73,11.09 -9.02,15.68 -4.46,17.86 -3.85,36.37 -1.88,18.68 -5.59,4.11 -7.58,-1.46 -8.27,2.08 -8.24,7.84 -6.08,8.05 -5.03,9.72 -5.27,13.11 -3.53,12.9 -4.53,24.48 -5.65,11.82 -8.01,8.03 -17.68,8.66 -7.81,8.62 0.39,2.72 3.03,8.89 -5.88,2.55 -1.93,1.41 5.48,13.89 -1.21,14.74 -6.51,11.5 -10.24,4.76 -24.53,10.38 -11.37,7.02 -10.79,8.89 -15.87,20.74 -8.09,13.91 -4.1,11.56 7.73,17.09 29.18,14 10.93,12.12 1.46,18.38 -0.7,23.33 3.66,15.88 14.62,-3.75 4.47,17.42 15.13,31.39 4.99,17.27 1.21,21.7 -4.83,7.83 -10.42,3.49 -30.17,15.86 0.26,12.1 4.27,15.22 -2.61,16.17 -12.61,10.93 -26.49,1.54 -11.46,10.3 -0.74,-0.03 -110.94,53.19 -2.6,6.97 -0.59,10.1 -1.97,11.31 -6.84,10.7 -10.73,8.51 -11.74,6.11 -10.52,8.82 -6.93,16.56 -1.15,16.64 3.94,25.49 -2.78,16.63 -6.02,12.98 -8.57,12.06 -18.29,18.45 -36.15,20.53 -7.92,12.9 8.36,13.81 7.16,5.14 4.57,5.37 0.73,14.3 -3.31,15.74 -6.15,9.64 -17.12,16.44 52.25,-1.67 14.1,-9.13 4.63,-10.1 0.59,-19.08 3.17,-8.56 8.25,-6.66 10.52,-2.77 20.5,0.36 5.21,-2.59 2.53,-3.92 -0.15,-5.13 -2.89,-6.4 -1.1,-0.22 -0.94,-0.38 -0.93,-0.68 -0.85,-0.84 -1.83,-2.21 -0.56,-2.27 0.84,-2.43 1.96,-2.51 13,-12.04 3.28,-4.05 3.26,-7.11 1.54,-6.44 0.99,-5.71 9.9,-30.24 7.73,-10.94 12.24,-1.02 9.64,7.68 -0.44,9.88 -4.66,11.71 -2.75,13.69 1.34,19.86 3.36,10.62 13.27,18.67 1.13,17.72 5.43,8.93 7.7,5.93 7.71,8.87 20.25,41.16 7.31,7.93 20.34,12.68 8.11,7.97 2.5,1.61 6.41,0.07 2.79,1.69 1.36,4.15 -0.65,4.34 -1.13,3.69 -0.25,2.29 1.68,5.09 1.2,5.7 2.24,5.63 5.08,4.84 18.89,17.81 28.24,9.81 52.97,6.53 38.3,-5.03 9.2,1.5 7.55,8.03 14.5,25.14 8.64,9.48 11.38,4.77 11.34,1.27 12.78,-1.13 4.32,1.94 9.64,7.12 6.31,1.65 6.03,-1.48 67.85,-36.6 24.37,-0.09 20.09,22.04 9.42,12.43 3.53,20.52 2.17,45.57 5.64,4.4 5.85,1.75 5.93,-0.94 5.73,-3.84 6.32,-1.5 6.63,-0.21 6.64,0.88 6.35,2.14 0.07,0 0.14,0.13 19.63,7.99 37.48,-0.1 16.7,14.02 9.14,19.01 19.98,64.35 13.82,-0.48 11.95,-7.38 12.07,-4.54 14.41,8.44 6.22,22.95 3.54,7.29 25.43,20.4 3.96,4.84 0.2,4.05 1.89,1.49 8.81,-2.65 4.06,-4.08 10.93,-16.12 5.03,-5.58 16.25,-6.81 12.96,4.06 11.33,11.64 11.35,16.07 6.78,4.39 3.92,5.48 0.25,6.76 -4.64,8.65 11.22,9.62 8.67,12.75 1.86,15.16 -9.22,16.56 27.82,19.23 31.64,8.01 63.39,3.64 13.43,3.57 26.19,11.65 15.14,2.53 32.6,-1.51 12.52,3.41 19.57,14.09 4.3,0.4 3.98,1.7 4.36,7.21 -0.03,5.88 -2.19,7.7 -1.5,9.36 2.28,10.99 5.95,8.41 5.95,0.63 6.98,-1.61 8.8,1.91 6.85,5.88 9.85,14.5 7.2,5.91 13.56,3.91 25.98,-1.58 13.48,1.84 106.19,57.96 8.01,8.64 11.49,20.32 7.09,8.06 24.91,7.09 55.45,-0.39 19.35,19.01 2.19,27.98 -19.52,9.49 -26.45,5.76 -19.2,16.44 -0.19,11.71 5.65,4.56 0.93,2.32 -14.41,4.67 -23.92,1.41 -8.58,4.81 7.02,11.87 7.57,32.68 15.57,18.32 22.04,5.14 26.69,-6.63 5.63,-4.44 4.15,-5.9 5,-5.73 7.91,-3.57 7.76,0.39 18.99,10.15 25.53,0.44 7.66,4.73 4.93,15.81 4.76,-9.11 2.02,-6.58 2.89,-6.48 7.27,-8.6 9.15,-5.44 19.27,-3.34 9.13,-6.12 9.26,-9.64 6.03,-8.37 3,-10.69 -0.04,-16.81 -4.43,-13.78 -7.21,-16.6 -2.82,-13.84 8.53,-5.76 37.61,19.08 8.51,0.48 4.73,-12.29 -2.93,-15.06 -9.78,-28.87 -0.96,-20.05 4.05,-8.07 24.96,-5.02 10.46,-4.8 28.48,-18.36 26.57,-3.83 15.32,0.62 11.1,3.99 6.22,8.4 5.68,13.39 8.78,30.67"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 6894.41,4427.43 0,0 15.01,0.66 24.86,9.14 80.76,0.55 0.68,9.71 -4.01,38.5 -1.06,3.09 -0.78,4.21 0.15,6.25 1.65,3.95 6.26,8.37 1.72,5.8 -3.43,32.2 -11.92,14.68 -12.12,8.09 -3.99,12.33 0.08,0.01 2.88,4.04 3.31,3.22 3.83,2.22 3.91,1.18 9.54,8.23 2.84,5.38 1.21,9.31 14.33,-11.16 36.13,-4.88 6.84,-10.47 8.94,-7.47 10.26,-4.06 7.77,2.26 1.37,11.5 -0.01,0.12 5.09,15.05 8.52,7.12 8.53,-3.44 4.68,-16.6 7.96,-15.75 39.98,2.74 19.49,-7.71 12.79,-17.24 0.19,-10.79 -5.1,-12.17 -3.2,-20.86 3.45,-15.6 8.2,-19.02 9.85,-17.66 8.51,-11.41 14.99,-10.05 13.2,-4.53 11.44,-7.92 10.23,-20.11 1.15,-10.77 -1,-11.3 0.33,-10.61 5.3,-8.8 10.25,-2.29 7.07,8.88 5.67,12.4 5.84,8.72 29.1,5.03 145.27,-36.84 8.49,-4.62 10.61,-13.44 5.63,-4.58 7.65,-1.68 57.26,19.52 17.63,-0.06 2.22,-7.43 2.89,-6.56 41.25,-57.36 4.67,-1.18 19.49,2.39 40.31,19.64 11.82,-0.56 10.34,-8.29 10.84,-16.57 7.56,-14.45 5.32,-14.95 -0.36,-13.35 -9.36,-9.23 -1.05,-3.74 -0.24,-3.62 0.84,-3.45 1.77,-3.19 29.5,8.36 39.73,46.59 30.06,-0.17 23.99,-14.93 11.22,-4.01 11.63,3.91 7.55,11.69 3.73,14.67 4.09,11.64 8.92,2.84 25.65,2 23.63,-3.63 22.89,-10.12 66.53,-57.72 8.56,-20.52 -21.3,-11.36 3.54,-8.1 0.37,-3.67 -1.67,-3.3 -2.42,-6.73 -0.54,-5.73 -0.09,-8.65 0.73,-6.53 1.91,0.83 -5.22,-9.1 -13.13,-15.85 -5.73,-10.02 -11.88,-3.9 -23.31,4.06 -10.77,-4.71 -4.08,-14.89 -9.72,-10.16 -11.72,-8.63 -10.02,-10.19 -3.73,-1.93 -6.12,-4.77 -4.28,-0.82 4.65,-12 1.65,-3.25 -14.46,1.83 -3.86,-18.16 8.61,-19.2 23.42,-1.82 11.97,-27.74 4.01,-6.09 9.82,-6.45 5.1,1.66 4.63,4.91 8.02,3.51 32.37,3.2 6.96,-1.45 6.01,-9.83 1.54,-10.28 0.42,-10.15 2.8,-9.52 14.3,-15.55 32.83,-8.43 16.91,-9.48 11.66,-13.38 21.41,-31.1 11.72,-12.96 10.7,-15.43 23.85,-20.3 9.87,-20.21 11.96,-37.04 8.13,-13.2 14.21,-15.12 26.88,-20.15 31.56,-12.46 28.79,5.12 18.87,32.29 14.66,13.13 7.41,13.24 6.16,15.84 10.79,20.73 14.54,15.4 13.93,3.55 14.39,0.54 16.19,6.01 6.07,6.68 10.1,17.73 7.91,6.82 6.23,0.89 13.68,-3.29 6.35,1.15 1.33,4.26 -1.59,13.41 1.66,3.25 10.47,0.95 4.58,-2.46 4.04,-6.36 8.8,-10.54 8.97,-2.33 3.54,9.95 -2.98,14.48 -10.6,11.27 -3.94,26.84 -9.65,19.1 -14.47,12.83 -18.43,8.28 -14.76,12.28 -9.28,20.77 -7.82,23.06 -10.24,19.44 -26.31,31.13 -1.72,15.48 18.02,13.75 16.42,-0.33 32.45,-15.02 16.2,3.73 75.09,-12.5 8.29,-3.91 18.03,-12.06 9.62,-3.82 9.77,0.96 21.14,6.86 8.57,-1.6 -1.2,-3.27 3.76,-11.78 5.99,-13.85 5.32,-9.16 7.82,-6.79 26.79,-13.04 17.44,-2.99 33.23,4.71 15.39,-4.59 -12.48,-6.75 2.46,-3.96 2.91,-3.45 3.3,-2.88 3.55,-2.45 0.75,-14.55 2.98,-13.89 6.21,-10.86 10.29,-6.09 5.43,21.17 15.59,2.98 16.94,-10.79 8.97,-19.89 3.87,-2 3.93,-0.43 3.66,1.23 3.39,2.89 17.99,27.73 33.53,6.99 64.89,-3.88 15.96,6.22 11.04,11.4 17.67,31.66 2.9,9.52 0.94,7.79 4.28,3.52 12.57,-3.05 4.4,-3.26 15.16,-16.12 2.06,-2.31 0.72,-2.94 -0.12,-3.38 -1.2,-3.69 -5.27,-21.67 -0.2,-10.31 2.94,-10.99 8.38,-6.57 13.53,-19.21 -4.71,-17.59 -12.95,-14.2 -28.2,-21.74 -18.13,-9.68 -34.25,-5.32 -7.35,-4.87 -3.93,-11.78 2.41,-7.92 39.74,-39.84 11.73,-3.74 7.07,2.16 5.64,4.2 7.39,2.67 9.66,-1.43 20.53,-7.35 10.29,-0.94 0.42,-1.05 0.27,-1.02 -0.05,-0.88 -0.2,-0.83 -5.97,-6.46 -1.57,-6.35 2.96,-6.1 7.51,-5.92 9.01,-8.53 6.32,-11.7 5.6,-13.23 7.18,-12.58 9.37,-10.17 51.82,-40.6 26.69,-2.4 25.08,11.04 18.81,21.34 12.6,4.95 28.58,4.33 22.44,9.77 3.02,5.31 -2.6,10.91 -5.96,7.07 -6.15,-0.57 -5.47,-2.47 -3.97,1.15 -6.22,24.72 22.67,-2.83 45.07,-22.18 -2.15,-21.04 10.63,-9.64 46.75,-3.03 11.62,-4.67 24.96,-16.64 8.9,-2.74 17.23,-1.4 9.29,-5.25 3.79,-5.7 7.11,-16.58 4.93,-7.01 15.67,-9.85 10.11,3.36 17.86,20 -1.05,1.79 -1.12,1.14 -1.34,0.47 -1.55,-0.19 28.41,7.19 28.93,-6.36 56.97,-22.63 16.65,2.19 25.89,21.67 11.41,-5.05 7.04,-19.55 0.41,-17.25 4.86,-13.18 20.37,-7.8 -16.76,-25.42 4.12,-29.7 16.81,-32.1 21.43,-32.66 11.38,-31.34 5.61,-7.72 10.46,-5.47 22.41,0.93 10.66,-1.76 10.37,-6.46 16.31,-14.84 9.78,-4.26 10.38,2.23 10.59,6.35 10.98,3.42 11.84,-6.61 4.12,-8.26 9.86,-37.53 4.75,-10.22 11.04,-18.26 4.53,-9.6 16.6,-45.92 5.11,-22.65 -0.62,-18.91 -29.45,-4.69 -12.84,-6.93 -26.08,-31.16 -20.09,-3.78 -21.74,3.7 -25.22,8.86 -5.14,0.39 -4.87,-1.68 -19.2,-13.55 -32.56,0.55 -13.66,-11.31 -2.58,-9.59 0.84,-20.86 -2.42,-10.21 -5.2,-6.84 -22.16,-15.81 -26.04,-41.62 -14.9,-12.71 -21.7,2.11 4.81,-52.91 -39.62,-39.89 -92.94,-50.13 -18.91,-22.86 -14.02,-30.57 -9.48,-35.49 -4.83,-37.53 0.97,-30.08 7.87,-56.12 -1.87,-24.95 -12.05,-27.46 -19.08,-22.6 -22.88,-14.03 -39.51,-1.64 -17.32,-4.85 -14.15,-11.68 -7.36,-20.52 -2.59,-16.99 -1.61,-35.02 -4.18,-15.9 -11.9,-14.72 -13.89,-2.44 -15.73,0.83 -17.63,-5.2 -10.65,-11.18 -20.21,-46.41 -11.7,-12.22 -134.43,-71.49 -27.29,1.16 -25.08,21.18 -11.26,3.96 -16.84,-7.05 -25.7,-21.27 -12.46,-3.82 -88.27,33.19 -36.2,5.34 -32.02,-10.55 -36.28,-32.92 -5.56,-11.04 -2.08,-21.4 -9.1,-14.5 -22.92,-24.55 -14.79,-32.66 -25.83,-111 -6.82,-16.35 -10.14,-15.42 0.38,-21.28 -28.5,26.89 -17.85,72.44 -19.93,22.63 -12.17,-0.34 -27.2,-12.96 -13.95,-3.18 -14.04,3.66 -28.37,14.89 -11.63,2.7 -27.82,-3.99 -11.9,0.88 -10.32,5.79 -6.64,12.61 -4.35,15.67 -7.11,12.79 -14.6,4.26 -13.74,0.24 -45.1,8.36 -13.3,6.78 -6.98,1.63 -6.65,-1.59 -12.71,-6.94 -7.55,-1.09 -21.46,1.01 -11.9,-9.74 -31.01,-67.45 -7.31,-8.3 -11.21,-4.51 -4.23,0.92 -10.48,6.98 -15.04,-3.77 -0.76,-0.83 -104.16,5.39 -67.47,-10.46 -40.51,13.25 -78.75,46.92 -1.56,5.41 -0.71,7.69 -4.3,4.41 -12.13,-4.35 -1.83,11.64 -5.91,4.49 -8.29,-0.4 -9.04,-3.03 6.59,10.61 -6.1,-0.95 -5.67,1.97 -8.56,5.12 -14.11,-0.23 -5.19,1.67 -4.15,5.35 -4.19,13.4 -4.53,2.83 -22.4,-2.07 -6.22,-2.12 -24.82,-16.1 -12,-5 -16.89,-1.5 -16.78,2.45 -59.68,27.09 -62.43,18.24 -38.85,28.24 -16.5,7.66 -33.44,8.2 -36.65,14.95 -16.72,3.28 -34.26,-2.46 -3.84,2.22 -3.48,5.26 -4.08,4.29 -5.59,-0.52 -2.57,-4.78 -0.58,-15.07 -1.93,-6.06 -9.13,-13 -3.58,-2.73 -54.57,-19.61 -14.55,-0.89 3.56,16.24 -0.93,15.12 -4.32,14.84 -6.64,15.23 -57.26,0.07 -41.75,10.71 -15.84,-3.34 -2.2,-2.02 -0.84,-3.82 0.41,-5.17 1.16,-5.97 -8.13,-24.21 2.19,-31.65 5.7,-33.75 2.35,-30.71 -10.07,-70.79 -4.21,-14.43 -0.6,-7.84 1.99,-6.89 3.87,-8.53 3.82,-6.92 1.76,-1.89 -6.9,-20.12 -14.77,-2.54 -39.16,12.61 -38.72,2.34 -10.75,-5.1 -3.52,-10.89 -1.93,-13.72 -6.38,-13.59 -2.1,-21.52 -36.11,-36.91 -12.21,-23.61 -0.42,-30.19 2.93,-33.93 -1.57,-29.16 -13.68,-15.88 -12.17,-0.1 -6.33,6.83 -5.12,10.13 -8.69,9.89 -4.88,0.71 -10.98,-4.77 -5.76,0.21 -2.7,4.51 -0.62,7.4 -1.44,7.02 -5.02,3.82 -11.28,-1.76 -21.3,-12.23 -10.86,-3.27 -8.83,1.49 -30.5,13.26 -19.15,19.52 -10.2,-8.18 -13.39,-45.01 -10.81,-12.8 -37.15,-19.21 -14.03,-12.95 -5.63,-2.7 -7.03,-1.3 -74.94,20.78 -105.24,4.66 -25.75,8.84 -6.54,5.1 -13.76,15.01 -3.6,5.88 -4.42,14.93 1.16,3.3 4.08,1.83 4.27,10.72 2.1,1.75 3.62,-0.45 3.28,1.25 0.91,7.04 -2.35,6.65 -4.62,2.81 -5.23,1.73 -3.96,3.25 -5.32,8.82 -13.47,17.97 -6.92,6.58 -51.23,24 -16.97,12.34 -14.04,9.59 -14.46,6.74 -30.03,6.05 -15.29,13.96 -39.85,68.4 -18.71,25.52 -10.66,5.1 -27.58,2.62 -14.26,5.7 -13.26,11.69 -12.49,16.64 -9.02,19.74 -3.1,20.91 -13.22,-2.3 -12.9,6.13 -13,9.19 -13.33,7.09 -16.99,2.56 -9.86,-5.25 -6.23,-12.65 -6.42,-19.79 -17.58,7.2 -24.12,15.24 -22.17,18.47 -11.49,16.45 -2.26,31.15 -9.27,18.88 -32.84,29.8 -23.87,28.42 -9.34,7.19 -14.95,4.8 -44.22,-0.4 -21.33,10.91 -12.64,18.03 -10.77,21.35 -73.22,88.93 -9.3,4.63 -0.16,0.1 0,0.06 -24.7,26.38 -3.86,10.16 -1.55,10.69 -4.53,8.86 -12.9,4.56 -21.57,20.57 -10.95,7.95 -12.66,5.97 -28.16,6.2 -9.82,-3.67 3.96,-14.14 -13.5,-2.53 -43.11,4.09 -14.67,4.5 -12.08,11.31 -26.43,52.06 -15.36,14.38 -34.2,14.1 -14.73,11.09 -9.02,15.68 -4.46,17.86 -3.85,36.37 -1.88,18.68 -5.59,4.11 -7.58,-1.46 -8.27,2.08 -8.24,7.84 -6.08,8.05 -5.03,9.72 -5.27,13.11 -3.53,12.9 -4.53,24.48 -5.65,11.82 -8.01,8.03 -17.68,8.66 -7.81,8.62 0.39,2.72 3.03,8.89 -5.88,2.55 -1.93,1.41 5.48,13.89 -1.21,14.74 -6.51,11.5 -10.24,4.76 -24.53,10.38 -11.37,7.02 -10.79,8.89 -15.87,20.74 -8.09,13.91 -4.1,11.56 7.73,17.09 29.18,14 10.93,12.12 1.46,18.38 -0.7,23.33 3.66,15.88 14.62,-3.75 4.47,17.42 15.13,31.39 4.99,17.27 1.21,21.7 -4.83,7.83 -10.42,3.49 -30.17,15.86 0.26,12.1 4.27,15.22 -2.61,16.17 -12.61,10.93 -26.49,1.54 -11.46,10.3 -0.74,-0.03 -110.94,53.19 -2.6,6.97 -0.59,10.1 -1.97,11.31 -6.84,10.7 -10.73,8.51 -11.74,6.11 -10.52,8.82 -6.93,16.56 -1.15,16.64 3.94,25.49 -2.78,16.63 -6.02,12.98 -8.57,12.06 -18.29,18.45 -36.15,20.53 -7.92,12.9 8.36,13.81 7.16,5.14 4.57,5.37 0.73,14.3 -3.31,15.74 -6.15,9.64 -17.12,16.44 52.25,-1.67 14.1,-9.13 4.63,-10.1 0.59,-19.08 3.17,-8.56 8.25,-6.66 10.52,-2.77 20.5,0.36 5.21,-2.59 2.53,-3.92 -0.15,-5.13 -2.89,-6.4 -1.1,-0.22 -0.94,-0.38 -0.93,-0.68 -0.85,-0.84 -1.83,-2.21 -0.56,-2.27 0.84,-2.43 1.96,-2.51 13,-12.04 3.28,-4.05 3.26,-7.11 1.54,-6.44 0.99,-5.71 9.9,-30.24 7.73,-10.94 12.24,-1.02 9.64,7.68 -0.44,9.88 -4.66,11.71 -2.75,13.69 1.34,19.86 3.36,10.62 13.27,18.67 1.13,17.72 5.43,8.93 7.7,5.93 7.71,8.87 20.25,41.16 7.31,7.93 20.34,12.68 8.11,7.97 2.5,1.61 6.41,0.07 2.79,1.69 1.36,4.15 -0.65,4.34 -1.13,3.69 -0.25,2.29 1.68,5.09 1.2,5.7 2.24,5.63 5.08,4.84 18.89,17.81 28.24,9.81 52.97,6.53 38.3,-5.03 9.2,1.5 7.55,8.03 14.5,25.14 8.64,9.48 11.38,4.77 11.34,1.27 12.78,-1.13 4.32,1.94 9.64,7.12 6.31,1.65 6.03,-1.48 67.85,-36.6 24.37,-0.09 20.09,22.04 9.42,12.43 3.53,20.52 2.17,45.57 5.64,4.4 5.85,1.75 5.93,-0.94 5.73,-3.84 6.32,-1.5 6.63,-0.21 6.64,0.88 6.35,2.14 0.07,0 0.14,0.13 19.63,7.99 37.48,-0.1 16.7,14.02 9.14,19.01 19.98,64.35 13.82,-0.48 11.95,-7.38 12.07,-4.54 14.41,8.44 6.22,22.95 3.54,7.29 25.43,20.4 3.96,4.84 0.2,4.05 1.89,1.49 8.81,-2.65 4.06,-4.08 10.93,-16.12 5.03,-5.58 16.25,-6.81 12.96,4.06 11.33,11.64 11.35,16.07 6.78,4.39 3.92,5.48 0.25,6.76 -4.64,8.65 11.22,9.62 8.67,12.75 1.86,15.16 -9.22,16.56 27.82,19.23 31.64,8.01 63.39,3.64 13.43,3.57 26.19,11.65 15.14,2.53 32.6,-1.51 12.52,3.41 19.57,14.09 4.3,0.4 3.98,1.7 4.36,7.21 -0.03,5.88 -2.19,7.7 -1.5,9.36 2.28,10.99 5.95,8.41 5.95,0.63 6.98,-1.61 8.8,1.91 6.85,5.88 9.85,14.5 7.2,5.91 13.56,3.91 25.98,-1.58 13.48,1.84 106.19,57.96 8.01,8.64 11.49,20.32 7.09,8.06 24.91,7.09 55.45,-0.39 19.35,19.01 2.19,27.98 -19.52,9.49 -26.45,5.76 -19.2,16.44 -0.19,11.71 5.65,4.56 0.93,2.32 -14.41,4.67 -23.92,1.41 -8.58,4.81 7.02,11.87 7.57,32.68 15.57,18.32 22.04,5.14 26.69,-6.63 5.63,-4.44 4.15,-5.9 5,-5.73 7.91,-3.57 7.76,0.39 18.99,10.15 25.53,0.44 7.66,4.73 4.93,15.81 4.76,-9.11 2.02,-6.58 2.89,-6.48 7.27,-8.6 9.15,-5.44 19.27,-3.34 9.13,-6.12 9.26,-9.64 6.03,-8.37 3,-10.69 -0.04,-16.81 -4.43,-13.78 -7.21,-16.6 -2.82,-13.84 8.53,-5.76 37.61,19.08 8.51,0.48 4.73,-12.29 -2.93,-15.06 -9.78,-28.87 -0.96,-20.05 4.05,-8.07 24.96,-5.02 10.46,-4.8 28.48,-18.36 26.57,-3.83 15.32,0.62 11.1,3.99 6.22,8.4 5.68,13.39 8.78,30.67"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7133" /><path
+               id="path3090" /><path
                d="m 9671.96,8788.42 0,0 14.98,-8.83 33.61,-6.15 184.93,18.75 251.92,26.7 375.6,42.55 232.8,28.02 281.9,35.45 361.9,48.26 151.8,21.04 122.3,17.37 41.4,23.49 10.2,12.26 10.8,35.26 14.5,10.72 14,0.86 42.6,-12.18 7.1,0.5 14,6.02 6.9,-0.2 8.3,-5.57 5.4,-7.85 4.6,-8.02 5.4,-6.24 8.3,-3.48 22.6,1.86 5.3,-5.26 -0.2,-10.95 -1.2,-13.22 2.3,-11.69 14.9,-13.87 14.8,3.07 14,9.68 12.4,5.55 12.9,-3.3 46.8,-25.33 27.7,-10.02 56.1,-8.96 29.2,-16.02 8.2,-8.38 16.4,-20.04 7.7,-7.3 7.6,-3.16 14.7,-0.92 6.7,-2.29 14,-13.58 13.6,-20.14 12.2,-23.15 9.9,-22.46 20.2,-49.4 5.4,-24.83 -6.1,-18.91 -6.5,-8.18 -2.6,-5.06 -2.1,-5.55 2,-11.86 4.9,-9.44 6.9,-6.88 8.1,-4.24 4.8,-4.15 3.1,-5.13 0.8,-6.12 -1.3,-6.99 7.5,-32.09 12.3,-25.51 14,-23.58 12.4,-26.32 18.3,-57.31 11.6,-21.21 20.7,-19.95 0,-0.06 0.1,0.02 15.6,-67.3 31.7,-73.55 91.7,-159.61 44.6,-58.01 20.5,-32.04 48.4,-98.54 18.3,-28.89 15.3,-13.45 9.8,-14.19 8.5,-14.93 11.5,-15.38 14.6,-10.49 13.2,-6.41 9.8,-11.77 4.2,-27.01 -2.6,-17.15 -5.2,-14.96 -3.1,-16.52 3.6,-21.68 9.7,-17.46 25.6,-21.6 11.1,-14.69 2.8,-8.21 1.3,-13.57 1.5,-7.02 12.2,-29.48 2.2,-8.76 -0.6,-7.23 -4.2,-16.42 0,-9.07 3.1,-11.68 3.7,-6.12 3.8,-4.98 3.6,-8.06 42.3,-165.14 0.8,-49.04 -19.7,-38.48 -76.3,-79.46 -105.5,-55.28 -52.3,-46.94 -49.2,-61.48 -56.5,-142.91 -20.4,-38.59 -8.5,-21.87 -18.6,-70.38 2.2,-0.1 11.7,-6.41 9.6,-9.38 5.1,-14.07 -1.5,-20.69 17.2,-6.73 51.4,-3.38 9.6,6.17 10.7,-7.18 45.3,-7.31 14.5,1.37 1.4,-6.84 -2.9,-11.18 2.3,-1.43 9,5.74 9.2,-2.04 7.4,-5.06 6.7,0.08 7.1,13.18 3.6,-4.36 7.9,-4.27 5.5,-4.3 9.1,13.35 4.3,-7.77 0.8,-13.58 -1.9,-4.43 26.5,-33.85 14.1,-1.49 32,7.6 14.4,-5.13 6.2,-7.63 5.3,-8.26 5.5,-6.15 7,-1.53 9.5,-4.08 5.3,-12.17 3.3,-12.57 8.5,-12.57 18.2,-39.67 11.7,-17.23 -9,-10.15 -6.1,-15.95 -6.6,-33.26 -0.3,-21.2 6.9,-35.81 -1.9,-13.39 2.9,-0.54 1.2,0.19 0.8,-1.21 1.4,-5 -7.3,-6.27 2.1,-24.49 -5.7,-10.71 14.8,-17.78 16.1,-14.43 -2.4,-27.22 -10.5,-15.75 -12.6,-11.74 -8.8,-15.77 -1.2,-8.49 -0.3,-12.39 1.3,-26.22 3.6,-5.2 6.2,-6.81 3,-6.55 -5.7,-4.31 -2.1,-3.63 3.6,-6.65 5.8,-6.76 4.3,-4.09 -6.5,-12.71 -3.7,-3.42 -6,-2.11 1.7,-8.24 9.5,-6.91 3.1,-10.5 2.5,-30.53 5.6,-15.36 9.1,-14.15 20.4,-22.88 -4.7,-1.41 -4.7,-0.5 12,-15.51 11.8,-1.93 10.5,-3.74 5.8,-14.21 2.6,-6.55 7.8,-14.51 12.4,-5.29 13.4,-2.1 11.1,-4.65 -6.3,-24.26 2.5,-6.66 36.6,-35.67 8.3,-12.08 -7.2,-5.37 -3.3,-8.7 1.4,-11.53 7.4,-14.03 -11.7,-7.52 -9.6,-15.54 -6.2,-18.16 -0.7,-15.47 9.3,-22.55 12,-3.4 13.4,2.47 13.4,-5.29 55.6,-76.17 19.5,-15.81 39.9,-15.07 39.9,-26.86 10.5,-11.8 -10.2,-8.33 -0.5,-10.69 14.8,-19.72 24,-24.51 9.1,-13.52 17.8,-44.49 1.4,-6.85 -1.1,-9.27 6,-3.45 9.6,-1.76 9.7,-4.06 10.1,-10.15 3.9,-8.66 2.7,-9.77 6.9,-13.69 14,-15.17 56.2,-33.75 64.9,-19.94 11.9,-11.91 -4.6,-20.96 -20.2,-8.95 -23.2,-5.02 -12.9,-9.3 -20.7,6.59 -18.7,-6.58 -13.5,-15.53 -4.7,-20.72 5.7,-20.83 13.2,-11.89 18.2,-4.26 20,1.66 1.4,-6.85 -5.1,-21.23 13.4,-14.83 21.6,-8 19.8,-0.7 1,-26.04 10.3,-22.07 27,-39.6 -10.4,-31.51 18.1,-50.99 8,-13.56 4.3,-2.32 -0.3,-2.64 -6.2,-14.49 -10.4,-16.98 -40.4,-33.13 0.8,-13.7 5.5,-21.05 1.8,-14.57 -0.7,-12.58 -8,-39.54 -33.9,-23.05 -127.6,-27.7 -22.8,-12.64 -11,-8.69 -7.6,-11.35 -4.5,-17.77 -3.1,-32.76 -7,-16.25 -43.6,-71.81 -17.2,-20.65 -0.1,-0.01 0,-0.07 -0.1,-0.02 -32.7,-37.31 -27.1,-31.18 -127.9,-208.12 -15,-37.28 -22.1,-25.49 -22.4,-36.83 -55.6,-128.35 -24.1,-36.43 -2.1,-9.86 -1.6,-23.39 -1.8,-8.52 -5,-7.41 -11.8,-7.08 -5.5,-5.36 -5.4,-9.83 -29.1,-88.32 -9.7,-14.5 -7.3,-4.85 -14.8,-5.97 -6.7,-8.42 -3.5,-10.51 -5.8,-37.64 -40.9,-83.47 -10,-46.02 21.1,-37.01 7.9,-15.28 13.1,-46.23 5,-12.08 3.2,-5.75 12.1,-13.13 18.7,-13.58 5.6,-7.71 6.5,-17.02 28.5,-99.61 0.3,-16.58 -6,-35.94 -3,-41.07 -7.1,-26.08 -1.4,-14.15 5.5,-5.08 3,2.85 7.3,13.84 12.9,-5.9 -0.8,-0.62 -2.7,-1.2 26.7,-12.23 26.4,-24.03 15.2,-7.42 36,-12.18 10.8,-9.57 1.9,-9.36 -2.6,-22.91 1.9,-15.21 5.1,-9.82 15.6,-18.1 3.4,-5.51 -5.2,-19.26 -15.9,3.61 -18.8,11.53 -14.3,4.4 -8.5,1.08 -17,16.38 -8.7,5.61 -8,-0.54 -15.5,-8 -26.7,-2.91 -15.3,-4.34 -16,-0.99 -20.1,8.97 -32.8,25.15 -15.4,1.86 -12.6,-17.55 -27.5,7.84 -57.3,-7.83 -28.1,3.37 -43.5,30.4 -16.5,3.35 -39.9,-8.72 -36,4.35 -6.2,3.67 -2.9,6.69 0.8,7.51 -1.5,7.76 -9.5,7.46 -6.2,0.08 -17,-5.2 -7.4,-0.83 -9.1,2.23 -26.3,11.05 -53.1,0.75 -23.1,11.45 -11,34.4 -16,37.48 -26.7,30 -30.4,20.05 -42.3,12.69 -30.8,19.83 -14.5,5.27 -14.1,-5.21 -10.5,-13.59 -8.1,-13.95 -6.7,-6.33 -12.7,7.13 -30.7,33.25 -14.3,10.39 -7.6,0.9 -10.7,-4.44 -5.6,-0.18 -8.2,3.84 -15.7,10.82 -8.1,3.67 -14.1,1.2 -50.8,-14.6 -22.4,-13.85 -11.2,1.37 -25.8,-10.4 -11.9,-2.11 -73.8,8.17 -44,14.88 -10.4,0.75 -11.6,-11.2 -17,-37.14 -10.5,-13.65 -15.1,-5.13 -12.3,5.81 -12.2,9.82 -14.5,6.85 -11.4,-0.8 -28.4,-10.73 -10.2,-7.06 -12,-18.74 10.5,-8.65 18.3,-7.43 11.5,-15.28 -4.3,-11.09 -12.9,-4.86 -15.2,-2.64 -11,-4.24 -12.6,-16.89 -18,-38.44 -13.5,-16.08 -16,-8.85 -13.8,0.39 -13.1,6.65 -13.8,10.43 -15.1,7.91 -11.7,-0.09 -12.2,-2.7 -16.6,-0.06 -12.8,6.55 -76.4,66.65 -11.6,0.23 -26.6,-8.69 -16,-0.09 -6.6,-1.5 -6.7,-5.33 -9.3,-16.05 -7.1,-9.08 -16.2,-8.78 -16.5,1.44 -65.9,21.78 -10.9,-4.31 3.1,-19.05 -37.2,-7.15 -31.3,6.65 -8.6,-1.48 -6.6,-6.68 -1.6,-7.28 0.1,-10.42 -1.4,-16.37 -2.8,-16.13 -2.9,-5.47 -55.2,-13.36 -10,-7.84 -13,-21.21 -6.1,-7.71 -16.3,-0.49 -2,1.45 -3.3,-6.12 -9.2,-33.17 -2.2,-13.78 -3.2,-13.06 -7.4,-12.22 1.6,-39.34 -3.4,-28.84 -12.5,-13.04 -25.9,8.25 -42.6,29.72 -21.8,7.52 -22.8,-5.98 -11.8,-11.65 -20.7,-28.75 -15.3,-8.3 -33.8,-2.32 -19.3,4.06 -11.3,11.6 0.8,15.03 21.1,48.76 2.8,3.1 4.5,1.99 3.8,3.07 0.8,6.49 -2,4.62 -6.7,5.24 -1.7,2.73 -11.1,5.95 -3.1,3.35 -0.2,4.76 4.3,9.11 0.5,4.69 -12,53 -6.3,17.92 -9.8,20 -7.4,4.08 -22.8,-13.23 -14.4,-3.6 -16.1,-0.54 -43.7,8.25 -0.2,13.59 -2.9,17.29 0.2,6.18 2.4,7.47 -29,-3.83 -15.6,1.92 -13.8,7.81 -4.9,7.38 -16.6,33.64 -21,54.06 -11.9,21.06 -18.5,8.84 -6.2,5.02 -15.2,19.72 -10.6,2.71 -3.9,-2.41 -2,-5.89 -52.9,-77.65 -4.8,-5.46 -9.7,-5.54 -7.3,-2.24 -22.2,-2.84 -13.5,-4.89 -11,-7.41 -9.1,-11.48 -7.7,-17.11 -6.7,-37.57 1.5,-1.09 2.7,-3 2.2,-5.08 -0.7,-7.63 -2.9,-2.84 -8.9,-1.45 -2,-0.74 -2.1,-22.3 0,-14.07 -4,-9.59 -21.1,-11.97 -17.7,-6.08 -7.6,-0.5 -7.4,2.62 -15.8,8.54 -6.9,1.4 -15.3,-5.85 -25.8,-20.03 -18.2,-3.89 -14.5,0.75 -5.7,11.95 -1.8,36.85 -4.1,16.2 -5.5,14.55 -2.9,15.72 3.9,19.53 -22.62,9.99 -72.38,-2.88 0.62,18.91 -5.11,22.65 -16.6,45.92 -4.53,9.6 -11.04,18.26 -4.75,10.22 -9.86,37.53 -4.12,8.26 -11.84,6.61 -10.98,-3.42 -10.59,-6.35 -10.38,-2.23 -9.78,4.26 -16.31,14.84 -10.37,6.46 -10.66,1.76 -22.41,-0.93 -10.46,5.47 -5.61,7.72 -11.38,31.34 -21.43,32.66 -16.81,32.1 -4.12,29.7 16.76,25.42 -20.37,7.8 -4.86,13.18 -0.41,17.25 -7.04,19.55 -11.41,5.05 -25.89,-21.67 -16.65,-2.19 -56.97,22.63 -28.93,6.36 -28.41,-7.19 1.55,0.19 1.34,-0.47 1.12,-1.14 1.05,-1.79 -17.86,-20 -10.11,-3.36 -15.67,9.85 -4.93,7.01 -7.11,16.58 -3.79,5.7 -9.29,5.25 -17.23,1.4 -8.9,2.74 -24.96,16.64 -11.62,4.67 -46.75,3.03 -10.63,9.64 2.15,21.04 -45.07,22.18 -22.67,2.83 6.22,-24.72 3.97,-1.15 5.47,2.47 6.15,0.57 5.96,-7.07 2.6,-10.91 -3.02,-5.31 -22.44,-9.77 -28.58,-4.33 -12.6,-4.95 -18.81,-21.34 -25.08,-11.04 -26.69,2.4 -51.82,40.6 -9.37,10.17 -7.18,12.58 -5.6,13.23 -6.32,11.7 -9.01,8.53 -7.51,5.92 -2.96,6.1 1.57,6.35 5.97,6.46 0.2,0.83 0.05,0.88 -0.27,1.02 -0.42,1.05 -10.29,0.94 -20.53,7.35 -9.66,1.43 -7.39,-2.67 -5.64,-4.2 -7.07,-2.16 -11.73,3.74 -39.74,39.84 -2.41,7.92 3.93,11.78 7.35,4.87 34.25,5.32 18.13,9.68 28.2,21.74 12.95,14.2 4.71,17.59 -13.53,19.21 -8.38,6.57 -2.94,10.99 0.2,10.31 5.27,21.67 1.2,3.69 0.12,3.38 -0.72,2.94 -2.06,2.31 -15.16,16.12 -4.4,3.26 -12.57,3.05 -4.28,-3.52 -0.94,-7.79 -2.9,-9.52 -17.67,-31.66 -11.04,-11.4 -15.96,-6.22 -64.89,3.88 -33.53,-6.99 -17.99,-27.73 -3.39,-2.89 -3.66,-1.23 -3.93,0.43 -3.87,2 -8.97,19.89 -16.94,10.79 -15.59,-2.98 -5.43,-21.17 -10.29,6.09 -6.21,10.86 -2.98,13.89 -0.75,14.55 -3.55,2.45 -3.3,2.88 -2.91,3.45 -2.46,3.96 12.48,6.75 -15.39,4.59 -33.23,-4.71 -17.44,2.99 -26.79,13.04 -7.82,6.79 -5.32,9.16 -5.99,13.85 -3.76,11.78 1.2,3.27 -8.57,1.6 -21.14,-6.86 -9.77,-0.96 -9.62,3.82 -18.03,12.06 -8.29,3.91 -75.09,12.5 -16.2,-3.73 -32.45,15.02 -16.42,0.33 -18.02,-13.75 1.72,-15.48 26.31,-31.13 10.24,-19.44 7.82,-23.06 9.28,-20.77 14.76,-12.28 18.43,-8.28 14.47,-12.83 9.65,-19.1 3.94,-26.84 10.6,-11.27 2.98,-14.48 -3.54,-9.95 -8.97,2.33 -8.8,10.54 -4.04,6.36 -4.58,2.46 -10.47,-0.95 -1.66,-3.25 1.59,-13.41 -1.33,-4.26 -6.35,-1.15 -13.68,3.29 -6.23,-0.89 -7.91,-6.82 -10.1,-17.73 -6.07,-6.68 -16.19,-6.01 -14.39,-0.54 -13.93,-3.55 -14.54,-15.4 -10.79,-20.73 -6.16,-15.84 -7.41,-13.24 -14.66,-13.13 -18.87,-32.29 -28.79,-5.12 -31.56,12.46 -26.88,20.15 -14.21,15.12 -8.13,13.2 -11.96,37.04 -9.87,20.21 -23.85,20.3 -10.7,15.43 -11.72,12.96 -21.41,31.1 -11.66,13.38 -16.91,9.48 -32.83,8.43 -14.3,15.55 -2.8,9.52 -0.42,10.15 -1.54,10.28 -6.01,9.83 -6.96,1.45 -32.37,-3.2 -8.02,-3.51 -4.63,-4.91 -5.1,-1.66 -9.82,6.45 -4.01,6.09 -11.97,27.74 -23.42,1.82 -8.61,19.2 3.86,18.16 14.46,-1.83 -1.65,3.25 -4.65,12 4.28,0.82 6.12,4.77 3.73,1.93 10.02,10.19 11.72,8.63 9.72,10.16 4.08,14.89 10.77,4.71 23.31,-4.06 11.88,3.9 5.73,10.02 13.13,15.85 5.22,9.1 -1.91,-0.83 -0.73,6.53 0.09,8.65 0.54,5.73 2.42,6.73 1.67,3.3 -0.37,3.67 -3.54,8.1 21.3,11.36 -8.56,20.52 -66.53,57.72 -22.89,10.12 -23.63,3.63 -25.65,-2 -8.92,-2.84 -4.09,-11.64 -3.73,-14.67 -7.55,-11.69 -11.63,-3.91 -11.22,4.01 -23.99,14.93 -30.06,0.17 -39.73,-46.59 -29.5,-8.36 -1.77,3.19 -0.84,3.45 0.24,3.62 1.05,3.74 9.36,9.23 0.36,13.35 -5.32,14.95 -7.56,14.45 -10.84,16.57 -10.34,8.29 -11.82,0.56 -40.31,-19.64 -19.49,-2.39 -4.67,1.18 -41.25,57.36 -2.89,6.56 -2.22,7.43 -17.63,0.06 -57.26,-19.52 -7.65,1.68 -5.63,4.58 -10.61,13.44 -8.49,4.62 -145.27,36.84 -29.1,-5.03 -5.84,-8.72 -5.67,-12.4 -7.07,-8.88 -10.25,2.29 -5.3,8.8 -0.33,10.61 1,11.3 -1.15,10.77 -10.23,20.11 -11.44,7.92 -13.2,4.53 -14.99,10.05 -8.51,11.41 -9.85,17.66 -8.2,19.02 -3.45,15.6 3.2,20.86 5.1,12.17 -0.19,10.79 -12.79,17.24 -19.49,7.71 -39.98,-2.74 -7.96,15.75 -4.68,16.6 -8.53,3.44 -8.52,-7.12 -5.09,-15.05 0.01,-0.12 -1.37,-11.5 -7.77,-2.26 -10.26,4.06 -8.94,7.47 -6.84,10.47 -36.13,4.88 -14.33,11.16 -1.21,-9.31 -2.84,-5.38 -9.54,-8.23 -3.91,-1.18 -3.83,-2.22 -3.31,-3.22 -2.88,-4.04 -0.08,-0.01 3.99,-12.33 12.12,-8.09 11.92,-14.68 3.43,-32.2 -1.72,-5.8 -6.26,-8.37 -1.65,-3.95 -0.15,-6.25 0.78,-4.21 1.06,-3.09 4.01,-38.5 -0.68,-9.71 -80.76,-0.55 -24.86,-9.14 -15.01,-0.66 -1.56,20.67 8.65,17.2 22.76,29.77 28.65,87.04 24.87,81.83 1.06,12.91 -1.59,21.36 0.34,11.04 3.13,8 5.01,5.58 4.02,7.78 0.28,14.38 -1.5,28.13 3.15,31.64 7.03,30.36 10.04,24.49 -3.14,2.86 -2.81,3.24 0.95,32.52 -11.94,20.95 -17.28,17.28 -14.73,21.59 -2.56,7.51 -4.65,19.67 -0.08,1.03 -12.97,75.82 4.75,14.37 -8.42,14.72 -13.94,12.44 -11.51,7.62 -16.31,6.25 -33.32,7.03 -16.57,7.8 -0.01,0.12 -15.45,9.28 -46.48,11.66 -16.59,14.82 -5.33,19.42 3.96,22.03 11.78,22.38 6.4,22.89 -3.45,29.15 -9.01,27.66 -10.44,18.5 -35.72,25.3 -16.97,17.05 -9.32,27.69 -4.98,29.09 -10.54,12.07 -13.13,7.68 -12.65,16.43 -3.87,23.38 7.55,19.96 36.34,43.27 11.33,17.95 9.01,20.83 4.12,22.19 -2.92,68.02 2.84,11.08 12.68,28.06 2.07,10.74 0.47,10.29 1.41,10.13 4.49,9.86 11.34,16.7 -47.12,29.83 -8.11,15.39 1.9,29.15 5.76,20.78 1.35,16.08 -11.09,14.7 -0.55,6.88 11.94,18.68 -1.58,22.75 -12.12,18.68 -19.75,6.85 -19.72,2.99 -24.03,10.09 -16.62,16.01 2.52,20.52 -16.78,31.22 -19.9,47.24 -7.19,43.82 32.76,33.75 14.39,27.37 9.17,26.94 -4.08,11.61 -13.51,10.55 3.24,26.22 15.85,41.35 -22.41,15.69 -46.89,45.16 -41.67,12.94 -21.44,25.11 -13.29,5.02 -7.57,6.27 -26.52,43.85 -11.38,11.47 -75.53,47.54 -19.1,8.49 -23.89,24.41 -13.93,4.99 -15.04,0.01 -14.44,3.41 -12.34,8.35 -8.84,15.06 16.75,16.82 5.98,13.96 1.27,21.22 -2.53,13.78 -11.03,38.83 -4.82,10.88 -0.5,6.92 30.7,26.49 39.26,24.34 37.14,34.41 18.95,23.09 7.5,20.74 1.17,9.44 15.31,64.41 -2.6,15.97 -5.19,15.43 -3.77,17.88 0.74,14.92 3.74,13.94 5.87,10.4 6.74,4.33 4.34,7.69 14.75,35.6 -9.29,7.37 -3.09,6 -10.84,7.87 -4.6,6.76 -2.89,10.75 -1.94,20.12 -1.75,9.34 -24.89,84.24 -11.26,57.01 -15.68,22.44 -8.66,22.67 -17.96,23.72 -6.5,22.55 -2.31,24.6 -1.26,40.78 -2.05,10.88 -17.07,42.15 -11.58,21.02 1.44,17.48 -3.12,31.01 6.76,1.19 11.47,6.05 8.05,8.69 0.21,9.19 -12.19,7.23 6.19,4.34 1.9,3.89 -2.47,3.68 -6.74,3.2 3.05,8.6 6.96,-5.26 9.54,-3.96 8.64,-5.59 9.17,-20.79 10.01,-6.52 18.65,-7.3 14.24,-13.3 7.75,-5.41 29.42,-2.77 36.44,-9.95 13.1,-8.68 11.16,-13.68 24.98,-40.04 8.34,-9.16 3.16,3.54 -0.57,17.75 2.11,10.62 5.13,7.22 8.5,7.95 -0.81,4.16 -0.48,4.41 0.09,6.59 -7.18,1.45 -17.11,0.15 -7.82,3.49 -24.45,47.64 2.36,24.97 12.48,49.44 8.09,-6.12 6.31,2.41 6.94,4.88 10.09,1.32 -6.85,27.65 0.62,22.4 3.04,20.24 0.44,21.12 -4.49,-0.36 -0.5,-13.44 -4.46,-9.2 -14.44,-17.08 4.61,-7.26 -5.89,1.84 -4.79,2.63 -4.07,3.89 -3.91,5.41 3.08,3.48 5.34,8.45 3.83,4.29 -10.59,18.17 -16.24,7.68 -73.48,1.91 -11.05,10.53 6.55,22.22 -2.27,2.07 -0.5,0.31 -0.28,0.96 -1.54,3.99 -5.72,-11.65 -4.97,-1.88 -5.78,2.44 -8.03,1.53 -5.6,-2.62 -3.99,-5.85 -3.79,-7.57 -5.09,-7.6 19.83,-2.25 11.1,-4.11 6.11,-6.76 -0.26,-13.47 -6.11,-10.4 -8.05,-4.54 -6.25,3.97 -17.07,-12.62 -8.75,-3.6 -9.3,-1.69 0.57,-7.58 9.17,-2.88 -0.3,-2.34 -8.3,-2.36 -6.32,0.45 -10.73,4.63 -7.84,0.68 -11.49,6.53 -35.04,43.42 -15.86,5.93 -1.75,-0.3 -6.72,17.23 -12.5,13.28 6.11,2.3 5.15,4.13 8.92,30.68 11.55,-4.29 7.49,-5.45 20.77,-6.14 65.34,-0.45 25.62,7.38 24.38,15.5 44.32,38.27 167,90.96 145.95,51.62 174.83,92.52 114.64,41.98 125.18,46.82 120.69,69.4 103.44,23.37 69.34,31.32 -7.28,-9.08 -30.71,-17.71 15.19,-8.61 56.2,15.86 -0.71,6.88 -4.43,-0.45 -0.84,8.2 31.02,3.18 -0.9,5.41 -0.76,0.85 -1.26,-0.36 -2.23,1.28 -0.57,18.08 -15.17,-0.86 -34.23,-14.68 21.29,13.35 25.09,20.31 35.15,51.27 -6.33,-17.35 -12.97,-16.7 -4.79,-8.78 5.68,2.79 11.61,3.69 9.7,5.12 8,11.73 21.59,13.15 7.37,10.51 -9.46,15.36 -12.83,-0.94 -4.91,-7.52 -8.57,-10.63 22.43,50.33 64.83,104.36 0.73,-6.88 -2.39,-11.21 6.78,-2.07 10.05,5.19 7.27,10.4 2.46,15.46 -4.21,4.07 -8.03,-4.45 -8.65,-10.08 10.39,27.9 20.08,24.88 41.1,32.27 132.4,34.67 50,26.72 26.9,7.74 23.38,11.47 53.81,74.8 182.99,113.57 236.88,75.64 103.85,51.08 168.78,37.97 105.14,13.98 15.2,-3.5 25.94,-17.19 9.21,-3.36 13.9,-1.27 236.8,-100.73 47.31,-46.33 8.14,-11.16 9.01,-16.29 2.78,-14.9 -10.51,-7.14 -3.47,3.42 -4.18,7.58 -5.17,7.38 -12.79,6.66 -10.76,19.73 -12.52,12.01 -37.67,47.41 -6.44,2.08 -23.12,1.56 -6.02,1.56 -7.54,9.57 -19.04,3.83 -41.89,20.93 -40.16,12.98 -7.21,7.88 -23.02,13.13 -5.77,1.84 -7.4,-4.57 -3.26,-6.27 -4.86,-32.77 -0.2,-7.49 2.2,-16.2 4.01,-3.71 16.3,-4.79 4,-3.59 9.66,-12.45 12.07,-19.28 0.83,-8.52 -1.46,-7.66 1.11,-7.19 8.51,-6.89 -0.91,-22.1 8.63,-8.27 11.87,4.24 8.74,15.25 -1.26,-18.95 7.25,-13.93 9.67,-11.33 23.2,-48.13 6.51,-9.95 0.91,-25.83 6.48,-43.78 9.89,-40.86 11.61,-17.24 10.62,-2.1 21.77,-12.39 10.56,-2.04 8.81,0.28 11.26,-1.76 10.13,-4.78 5.21,-9.13 13.09,-13.81 113.88,-19.9 24.53,1.56 18.46,14.01 6.34,-4.76 8.23,-3.14 18.48,-2.79 237.23,71.64 49.59,33.9 24.46,9.76 19.06,12.46 33.37,47.53 10.27,6.48"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 9671.96,8788.42 0,0 14.98,-8.83 33.61,-6.15 184.93,18.75 251.92,26.7 375.6,42.55 232.8,28.02 281.9,35.45 361.9,48.26 151.8,21.04 122.3,17.37 41.4,23.49 10.2,12.26 10.8,35.26 14.5,10.72 14,0.86 42.6,-12.18 7.1,0.5 14,6.02 6.9,-0.2 8.3,-5.57 5.4,-7.85 4.6,-8.02 5.4,-6.24 8.3,-3.48 22.6,1.86 5.3,-5.26 -0.2,-10.95 -1.2,-13.22 2.3,-11.69 14.9,-13.87 14.8,3.07 14,9.68 12.4,5.55 12.9,-3.3 46.8,-25.33 27.7,-10.02 56.1,-8.96 29.2,-16.02 8.2,-8.38 16.4,-20.04 7.7,-7.3 7.6,-3.16 14.7,-0.92 6.7,-2.29 14,-13.58 13.6,-20.14 12.2,-23.15 9.9,-22.46 20.2,-49.4 5.4,-24.83 -6.1,-18.91 -6.5,-8.18 -2.6,-5.06 -2.1,-5.55 2,-11.86 4.9,-9.44 6.9,-6.88 8.1,-4.24 4.8,-4.15 3.1,-5.13 0.8,-6.12 -1.3,-6.99 7.5,-32.09 12.3,-25.51 14,-23.58 12.4,-26.32 18.3,-57.31 11.6,-21.21 20.7,-19.95 0,-0.06 0.1,0.02 15.6,-67.3 31.7,-73.55 91.7,-159.61 44.6,-58.01 20.5,-32.04 48.4,-98.54 18.3,-28.89 15.3,-13.45 9.8,-14.19 8.5,-14.93 11.5,-15.38 14.6,-10.49 13.2,-6.41 9.8,-11.77 4.2,-27.01 -2.6,-17.15 -5.2,-14.96 -3.1,-16.52 3.6,-21.68 9.7,-17.46 25.6,-21.6 11.1,-14.69 2.8,-8.21 1.3,-13.57 1.5,-7.02 12.2,-29.48 2.2,-8.76 -0.6,-7.23 -4.2,-16.42 0,-9.07 3.1,-11.68 3.7,-6.12 3.8,-4.98 3.6,-8.06 42.3,-165.14 0.8,-49.04 -19.7,-38.48 -76.3,-79.46 -105.5,-55.28 -52.3,-46.94 -49.2,-61.48 -56.5,-142.91 -20.4,-38.59 -8.5,-21.87 -18.6,-70.38 2.2,-0.1 11.7,-6.41 9.6,-9.38 5.1,-14.07 -1.5,-20.69 17.2,-6.73 51.4,-3.38 9.6,6.17 10.7,-7.18 45.3,-7.31 14.5,1.37 1.4,-6.84 -2.9,-11.18 2.3,-1.43 9,5.74 9.2,-2.04 7.4,-5.06 6.7,0.08 7.1,13.18 3.6,-4.36 7.9,-4.27 5.5,-4.3 9.1,13.35 4.3,-7.77 0.8,-13.58 -1.9,-4.43 26.5,-33.85 14.1,-1.49 32,7.6 14.4,-5.13 6.2,-7.63 5.3,-8.26 5.5,-6.15 7,-1.53 9.5,-4.08 5.3,-12.17 3.3,-12.57 8.5,-12.57 18.2,-39.67 11.7,-17.23 -9,-10.15 -6.1,-15.95 -6.6,-33.26 -0.3,-21.2 6.9,-35.81 -1.9,-13.39 2.9,-0.54 1.2,0.19 0.8,-1.21 1.4,-5 -7.3,-6.27 2.1,-24.49 -5.7,-10.71 14.8,-17.78 16.1,-14.43 -2.4,-27.22 -10.5,-15.75 -12.6,-11.74 -8.8,-15.77 -1.2,-8.49 -0.3,-12.39 1.3,-26.22 3.6,-5.2 6.2,-6.81 3,-6.55 -5.7,-4.31 -2.1,-3.63 3.6,-6.65 5.8,-6.76 4.3,-4.09 -6.5,-12.71 -3.7,-3.42 -6,-2.11 1.7,-8.24 9.5,-6.91 3.1,-10.5 2.5,-30.53 5.6,-15.36 9.1,-14.15 20.4,-22.88 -4.7,-1.41 -4.7,-0.5 12,-15.51 11.8,-1.93 10.5,-3.74 5.8,-14.21 2.6,-6.55 7.8,-14.51 12.4,-5.29 13.4,-2.1 11.1,-4.65 -6.3,-24.26 2.5,-6.66 36.6,-35.67 8.3,-12.08 -7.2,-5.37 -3.3,-8.7 1.4,-11.53 7.4,-14.03 -11.7,-7.52 -9.6,-15.54 -6.2,-18.16 -0.7,-15.47 9.3,-22.55 12,-3.4 13.4,2.47 13.4,-5.29 55.6,-76.17 19.5,-15.81 39.9,-15.07 39.9,-26.86 10.5,-11.8 -10.2,-8.33 -0.5,-10.69 14.8,-19.72 24,-24.51 9.1,-13.52 17.8,-44.49 1.4,-6.85 -1.1,-9.27 6,-3.45 9.6,-1.76 9.7,-4.06 10.1,-10.15 3.9,-8.66 2.7,-9.77 6.9,-13.69 14,-15.17 56.2,-33.75 64.9,-19.94 11.9,-11.91 -4.6,-20.96 -20.2,-8.95 -23.2,-5.02 -12.9,-9.3 -20.7,6.59 -18.7,-6.58 -13.5,-15.53 -4.7,-20.72 5.7,-20.83 13.2,-11.89 18.2,-4.26 20,1.66 1.4,-6.85 -5.1,-21.23 13.4,-14.83 21.6,-8 19.8,-0.7 1,-26.04 10.3,-22.07 27,-39.6 -10.4,-31.51 18.1,-50.99 8,-13.56 4.3,-2.32 -0.3,-2.64 -6.2,-14.49 -10.4,-16.98 -40.4,-33.13 0.8,-13.7 5.5,-21.05 1.8,-14.57 -0.7,-12.58 -8,-39.54 -33.9,-23.05 -127.6,-27.7 -22.8,-12.64 -11,-8.69 -7.6,-11.35 -4.5,-17.77 -3.1,-32.76 -7,-16.25 -43.6,-71.81 -17.2,-20.65 -0.1,-0.01 0,-0.07 -0.1,-0.02 -32.7,-37.31 -27.1,-31.18 -127.9,-208.12 -15,-37.28 -22.1,-25.49 -22.4,-36.83 -55.6,-128.35 -24.1,-36.43 -2.1,-9.86 -1.6,-23.39 -1.8,-8.52 -5,-7.41 -11.8,-7.08 -5.5,-5.36 -5.4,-9.83 -29.1,-88.32 -9.7,-14.5 -7.3,-4.85 -14.8,-5.97 -6.7,-8.42 -3.5,-10.51 -5.8,-37.64 -40.9,-83.47 -10,-46.02 21.1,-37.01 7.9,-15.28 13.1,-46.23 5,-12.08 3.2,-5.75 12.1,-13.13 18.7,-13.58 5.6,-7.71 6.5,-17.02 28.5,-99.61 0.3,-16.58 -6,-35.94 -3,-41.07 -7.1,-26.08 -1.4,-14.15 5.5,-5.08 3,2.85 7.3,13.84 12.9,-5.9 -0.8,-0.62 -2.7,-1.2 26.7,-12.23 26.4,-24.03 15.2,-7.42 36,-12.18 10.8,-9.57 1.9,-9.36 -2.6,-22.91 1.9,-15.21 5.1,-9.82 15.6,-18.1 3.4,-5.51 -5.2,-19.26 -15.9,3.61 -18.8,11.53 -14.3,4.4 -8.5,1.08 -17,16.38 -8.7,5.61 -8,-0.54 -15.5,-8 -26.7,-2.91 -15.3,-4.34 -16,-0.99 -20.1,8.97 -32.8,25.15 -15.4,1.86 -12.6,-17.55 -27.5,7.84 -57.3,-7.83 -28.1,3.37 -43.5,30.4 -16.5,3.35 -39.9,-8.72 -36,4.35 -6.2,3.67 -2.9,6.69 0.8,7.51 -1.5,7.76 -9.5,7.46 -6.2,0.08 -17,-5.2 -7.4,-0.83 -9.1,2.23 -26.3,11.05 -53.1,0.75 -23.1,11.45 -11,34.4 -16,37.48 -26.7,30 -30.4,20.05 -42.3,12.69 -30.8,19.83 -14.5,5.27 -14.1,-5.21 -10.5,-13.59 -8.1,-13.95 -6.7,-6.33 -12.7,7.13 -30.7,33.25 -14.3,10.39 -7.6,0.9 -10.7,-4.44 -5.6,-0.18 -8.2,3.84 -15.7,10.82 -8.1,3.67 -14.1,1.2 -50.8,-14.6 -22.4,-13.85 -11.2,1.37 -25.8,-10.4 -11.9,-2.11 -73.8,8.17 -44,14.88 -10.4,0.75 -11.6,-11.2 -17,-37.14 -10.5,-13.65 -15.1,-5.13 -12.3,5.81 -12.2,9.82 -14.5,6.85 -11.4,-0.8 -28.4,-10.73 -10.2,-7.06 -12,-18.74 10.5,-8.65 18.3,-7.43 11.5,-15.28 -4.3,-11.09 -12.9,-4.86 -15.2,-2.64 -11,-4.24 -12.6,-16.89 -18,-38.44 -13.5,-16.08 -16,-8.85 -13.8,0.39 -13.1,6.65 -13.8,10.43 -15.1,7.91 -11.7,-0.09 -12.2,-2.7 -16.6,-0.06 -12.8,6.55 -76.4,66.65 -11.6,0.23 -26.6,-8.69 -16,-0.09 -6.6,-1.5 -6.7,-5.33 -9.3,-16.05 -7.1,-9.08 -16.2,-8.78 -16.5,1.44 -65.9,21.78 -10.9,-4.31 3.1,-19.05 -37.2,-7.15 -31.3,6.65 -8.6,-1.48 -6.6,-6.68 -1.6,-7.28 0.1,-10.42 -1.4,-16.37 -2.8,-16.13 -2.9,-5.47 -55.2,-13.36 -10,-7.84 -13,-21.21 -6.1,-7.71 -16.3,-0.49 -2,1.45 -3.3,-6.12 -9.2,-33.17 -2.2,-13.78 -3.2,-13.06 -7.4,-12.22 1.6,-39.34 -3.4,-28.84 -12.5,-13.04 -25.9,8.25 -42.6,29.72 -21.8,7.52 -22.8,-5.98 -11.8,-11.65 -20.7,-28.75 -15.3,-8.3 -33.8,-2.32 -19.3,4.06 -11.3,11.6 0.8,15.03 21.1,48.76 2.8,3.1 4.5,1.99 3.8,3.07 0.8,6.49 -2,4.62 -6.7,5.24 -1.7,2.73 -11.1,5.95 -3.1,3.35 -0.2,4.76 4.3,9.11 0.5,4.69 -12,53 -6.3,17.92 -9.8,20 -7.4,4.08 -22.8,-13.23 -14.4,-3.6 -16.1,-0.54 -43.7,8.25 -0.2,13.59 -2.9,17.29 0.2,6.18 2.4,7.47 -29,-3.83 -15.6,1.92 -13.8,7.81 -4.9,7.38 -16.6,33.64 -21,54.06 -11.9,21.06 -18.5,8.84 -6.2,5.02 -15.2,19.72 -10.6,2.71 -3.9,-2.41 -2,-5.89 -52.9,-77.65 -4.8,-5.46 -9.7,-5.54 -7.3,-2.24 -22.2,-2.84 -13.5,-4.89 -11,-7.41 -9.1,-11.48 -7.7,-17.11 -6.7,-37.57 1.5,-1.09 2.7,-3 2.2,-5.08 -0.7,-7.63 -2.9,-2.84 -8.9,-1.45 -2,-0.74 -2.1,-22.3 0,-14.07 -4,-9.59 -21.1,-11.97 -17.7,-6.08 -7.6,-0.5 -7.4,2.62 -15.8,8.54 -6.9,1.4 -15.3,-5.85 -25.8,-20.03 -18.2,-3.89 -14.5,0.75 -5.7,11.95 -1.8,36.85 -4.1,16.2 -5.5,14.55 -2.9,15.72 3.9,19.53 -22.62,9.99 -72.38,-2.88 0.62,18.91 -5.11,22.65 -16.6,45.92 -4.53,9.6 -11.04,18.26 -4.75,10.22 -9.86,37.53 -4.12,8.26 -11.84,6.61 -10.98,-3.42 -10.59,-6.35 -10.38,-2.23 -9.78,4.26 -16.31,14.84 -10.37,6.46 -10.66,1.76 -22.41,-0.93 -10.46,5.47 -5.61,7.72 -11.38,31.34 -21.43,32.66 -16.81,32.1 -4.12,29.7 16.76,25.42 -20.37,7.8 -4.86,13.18 -0.41,17.25 -7.04,19.55 -11.41,5.05 -25.89,-21.67 -16.65,-2.19 -56.97,22.63 -28.93,6.36 -28.41,-7.19 1.55,0.19 1.34,-0.47 1.12,-1.14 1.05,-1.79 -17.86,-20 -10.11,-3.36 -15.67,9.85 -4.93,7.01 -7.11,16.58 -3.79,5.7 -9.29,5.25 -17.23,1.4 -8.9,2.74 -24.96,16.64 -11.62,4.67 -46.75,3.03 -10.63,9.64 2.15,21.04 -45.07,22.18 -22.67,2.83 6.22,-24.72 3.97,-1.15 5.47,2.47 6.15,0.57 5.96,-7.07 2.6,-10.91 -3.02,-5.31 -22.44,-9.77 -28.58,-4.33 -12.6,-4.95 -18.81,-21.34 -25.08,-11.04 -26.69,2.4 -51.82,40.6 -9.37,10.17 -7.18,12.58 -5.6,13.23 -6.32,11.7 -9.01,8.53 -7.51,5.92 -2.96,6.1 1.57,6.35 5.97,6.46 0.2,0.83 0.05,0.88 -0.27,1.02 -0.42,1.05 -10.29,0.94 -20.53,7.35 -9.66,1.43 -7.39,-2.67 -5.64,-4.2 -7.07,-2.16 -11.73,3.74 -39.74,39.84 -2.41,7.92 3.93,11.78 7.35,4.87 34.25,5.32 18.13,9.68 28.2,21.74 12.95,14.2 4.71,17.59 -13.53,19.21 -8.38,6.57 -2.94,10.99 0.2,10.31 5.27,21.67 1.2,3.69 0.12,3.38 -0.72,2.94 -2.06,2.31 -15.16,16.12 -4.4,3.26 -12.57,3.05 -4.28,-3.52 -0.94,-7.79 -2.9,-9.52 -17.67,-31.66 -11.04,-11.4 -15.96,-6.22 -64.89,3.88 -33.53,-6.99 -17.99,-27.73 -3.39,-2.89 -3.66,-1.23 -3.93,0.43 -3.87,2 -8.97,19.89 -16.94,10.79 -15.59,-2.98 -5.43,-21.17 -10.29,6.09 -6.21,10.86 -2.98,13.89 -0.75,14.55 -3.55,2.45 -3.3,2.88 -2.91,3.45 -2.46,3.96 12.48,6.75 -15.39,4.59 -33.23,-4.71 -17.44,2.99 -26.79,13.04 -7.82,6.79 -5.32,9.16 -5.99,13.85 -3.76,11.78 1.2,3.27 -8.57,1.6 -21.14,-6.86 -9.77,-0.96 -9.62,3.82 -18.03,12.06 -8.29,3.91 -75.09,12.5 -16.2,-3.73 -32.45,15.02 -16.42,0.33 -18.02,-13.75 1.72,-15.48 26.31,-31.13 10.24,-19.44 7.82,-23.06 9.28,-20.77 14.76,-12.28 18.43,-8.28 14.47,-12.83 9.65,-19.1 3.94,-26.84 10.6,-11.27 2.98,-14.48 -3.54,-9.95 -8.97,2.33 -8.8,10.54 -4.04,6.36 -4.58,2.46 -10.47,-0.95 -1.66,-3.25 1.59,-13.41 -1.33,-4.26 -6.35,-1.15 -13.68,3.29 -6.23,-0.89 -7.91,-6.82 -10.1,-17.73 -6.07,-6.68 -16.19,-6.01 -14.39,-0.54 -13.93,-3.55 -14.54,-15.4 -10.79,-20.73 -6.16,-15.84 -7.41,-13.24 -14.66,-13.13 -18.87,-32.29 -28.79,-5.12 -31.56,12.46 -26.88,20.15 -14.21,15.12 -8.13,13.2 -11.96,37.04 -9.87,20.21 -23.85,20.3 -10.7,15.43 -11.72,12.96 -21.41,31.1 -11.66,13.38 -16.91,9.48 -32.83,8.43 -14.3,15.55 -2.8,9.52 -0.42,10.15 -1.54,10.28 -6.01,9.83 -6.96,1.45 -32.37,-3.2 -8.02,-3.51 -4.63,-4.91 -5.1,-1.66 -9.82,6.45 -4.01,6.09 -11.97,27.74 -23.42,1.82 -8.61,19.2 3.86,18.16 14.46,-1.83 -1.65,3.25 -4.65,12 4.28,0.82 6.12,4.77 3.73,1.93 10.02,10.19 11.72,8.63 9.72,10.16 4.08,14.89 10.77,4.71 23.31,-4.06 11.88,3.9 5.73,10.02 13.13,15.85 5.22,9.1 -1.91,-0.83 -0.73,6.53 0.09,8.65 0.54,5.73 2.42,6.73 1.67,3.3 -0.37,3.67 -3.54,8.1 21.3,11.36 -8.56,20.52 -66.53,57.72 -22.89,10.12 -23.63,3.63 -25.65,-2 -8.92,-2.84 -4.09,-11.64 -3.73,-14.67 -7.55,-11.69 -11.63,-3.91 -11.22,4.01 -23.99,14.93 -30.06,0.17 -39.73,-46.59 -29.5,-8.36 -1.77,3.19 -0.84,3.45 0.24,3.62 1.05,3.74 9.36,9.23 0.36,13.35 -5.32,14.95 -7.56,14.45 -10.84,16.57 -10.34,8.29 -11.82,0.56 -40.31,-19.64 -19.49,-2.39 -4.67,1.18 -41.25,57.36 -2.89,6.56 -2.22,7.43 -17.63,0.06 -57.26,-19.52 -7.65,1.68 -5.63,4.58 -10.61,13.44 -8.49,4.62 -145.27,36.84 -29.1,-5.03 -5.84,-8.72 -5.67,-12.4 -7.07,-8.88 -10.25,2.29 -5.3,8.8 -0.33,10.61 1,11.3 -1.15,10.77 -10.23,20.11 -11.44,7.92 -13.2,4.53 -14.99,10.05 -8.51,11.41 -9.85,17.66 -8.2,19.02 -3.45,15.6 3.2,20.86 5.1,12.17 -0.19,10.79 -12.79,17.24 -19.49,7.71 -39.98,-2.74 -7.96,15.75 -4.68,16.6 -8.53,3.44 -8.52,-7.12 -5.09,-15.05 0.01,-0.12 -1.37,-11.5 -7.77,-2.26 -10.26,4.06 -8.94,7.47 -6.84,10.47 -36.13,4.88 -14.33,11.16 -1.21,-9.31 -2.84,-5.38 -9.54,-8.23 -3.91,-1.18 -3.83,-2.22 -3.31,-3.22 -2.88,-4.04 -0.08,-0.01 3.99,-12.33 12.12,-8.09 11.92,-14.68 3.43,-32.2 -1.72,-5.8 -6.26,-8.37 -1.65,-3.95 -0.15,-6.25 0.78,-4.21 1.06,-3.09 4.01,-38.5 -0.68,-9.71 -80.76,-0.55 -24.86,-9.14 -15.01,-0.66 -1.56,20.67 8.65,17.2 22.76,29.77 28.65,87.04 24.87,81.83 1.06,12.91 -1.59,21.36 0.34,11.04 3.13,8 5.01,5.58 4.02,7.78 0.28,14.38 -1.5,28.13 3.15,31.64 7.03,30.36 10.04,24.49 -3.14,2.86 -2.81,3.24 0.95,32.52 -11.94,20.95 -17.28,17.28 -14.73,21.59 -2.56,7.51 -4.65,19.67 -0.08,1.03 -12.97,75.82 4.75,14.37 -8.42,14.72 -13.94,12.44 -11.51,7.62 -16.31,6.25 -33.32,7.03 -16.57,7.8 -0.01,0.12 -15.45,9.28 -46.48,11.66 -16.59,14.82 -5.33,19.42 3.96,22.03 11.78,22.38 6.4,22.89 -3.45,29.15 -9.01,27.66 -10.44,18.5 -35.72,25.3 -16.97,17.05 -9.32,27.69 -4.98,29.09 -10.54,12.07 -13.13,7.68 -12.65,16.43 -3.87,23.38 7.55,19.96 36.34,43.27 11.33,17.95 9.01,20.83 4.12,22.19 -2.92,68.02 2.84,11.08 12.68,28.06 2.07,10.74 0.47,10.29 1.41,10.13 4.49,9.86 11.34,16.7 -47.12,29.83 -8.11,15.39 1.9,29.15 5.76,20.78 1.35,16.08 -11.09,14.7 -0.55,6.88 11.94,18.68 -1.58,22.75 -12.12,18.68 -19.75,6.85 -19.72,2.99 -24.03,10.09 -16.62,16.01 2.52,20.52 -16.78,31.22 -19.9,47.24 -7.19,43.82 32.76,33.75 14.39,27.37 9.17,26.94 -4.08,11.61 -13.51,10.55 3.24,26.22 15.85,41.35 -22.41,15.69 -46.89,45.16 -41.67,12.94 -21.44,25.11 -13.29,5.02 -7.57,6.27 -26.52,43.85 -11.38,11.47 -75.53,47.54 -19.1,8.49 -23.89,24.41 -13.93,4.99 -15.04,0.01 -14.44,3.41 -12.34,8.35 -8.84,15.06 16.75,16.82 5.98,13.96 1.27,21.22 -2.53,13.78 -11.03,38.83 -4.82,10.88 -0.5,6.92 30.7,26.49 39.26,24.34 37.14,34.41 18.95,23.09 7.5,20.74 1.17,9.44 15.31,64.41 -2.6,15.97 -5.19,15.43 -3.77,17.88 0.74,14.92 3.74,13.94 5.87,10.4 6.74,4.33 4.34,7.69 14.75,35.6 -9.29,7.37 -3.09,6 -10.84,7.87 -4.6,6.76 -2.89,10.75 -1.94,20.12 -1.75,9.34 -24.89,84.24 -11.26,57.01 -15.68,22.44 -8.66,22.67 -17.96,23.72 -6.5,22.55 -2.31,24.6 -1.26,40.78 -2.05,10.88 -17.07,42.15 -11.58,21.02 1.44,17.48 -3.12,31.01 6.76,1.19 11.47,6.05 8.05,8.69 0.21,9.19 -12.19,7.23 6.19,4.34 1.9,3.89 -2.47,3.68 -6.74,3.2 3.05,8.6 6.96,-5.26 9.54,-3.96 8.64,-5.59 9.17,-20.79 10.01,-6.52 18.65,-7.3 14.24,-13.3 7.75,-5.41 29.42,-2.77 36.44,-9.95 13.1,-8.68 11.16,-13.68 24.98,-40.04 8.34,-9.16 3.16,3.54 -0.57,17.75 2.11,10.62 5.13,7.22 8.5,7.95 -0.81,4.16 -0.48,4.41 0.09,6.59 -7.18,1.45 -17.11,0.15 -7.82,3.49 -24.45,47.64 2.36,24.97 12.48,49.44 8.09,-6.12 6.31,2.41 6.94,4.88 10.09,1.32 -6.85,27.65 0.62,22.4 3.04,20.24 0.44,21.12 -4.49,-0.36 -0.5,-13.44 -4.46,-9.2 -14.44,-17.08 4.61,-7.26 -5.89,1.84 -4.79,2.63 -4.07,3.89 -3.91,5.41 3.08,3.48 5.34,8.45 3.83,4.29 -10.59,18.17 -16.24,7.68 -73.48,1.91 -11.05,10.53 6.55,22.22 -2.27,2.07 -0.5,0.31 -0.28,0.96 -1.54,3.99 -5.72,-11.65 -4.97,-1.88 -5.78,2.44 -8.03,1.53 -5.6,-2.62 -3.99,-5.85 -3.79,-7.57 -5.09,-7.6 19.83,-2.25 11.1,-4.11 6.11,-6.76 -0.26,-13.47 -6.11,-10.4 -8.05,-4.54 -6.25,3.97 -17.07,-12.62 -8.75,-3.6 -9.3,-1.69 0.57,-7.58 9.17,-2.88 -0.3,-2.34 -8.3,-2.36 -6.32,0.45 -10.73,4.63 -7.84,0.68 -11.49,6.53 -35.04,43.42 -15.86,5.93 -1.75,-0.3 -6.72,17.23 -12.5,13.28 6.11,2.3 5.15,4.13 8.92,30.68 11.55,-4.29 7.49,-5.45 20.77,-6.14 65.34,-0.45 25.62,7.38 24.38,15.5 44.32,38.27 167,90.96 145.95,51.62 174.83,92.52 114.64,41.98 125.18,46.82 120.69,69.4 103.44,23.37 69.34,31.32 -7.28,-9.08 -30.71,-17.71 15.19,-8.61 56.2,15.86 -0.71,6.88 -4.43,-0.45 -0.84,8.2 31.02,3.18 -0.9,5.41 -0.76,0.85 -1.26,-0.36 -2.23,1.28 -0.57,18.08 -15.17,-0.86 -34.23,-14.68 21.29,13.35 25.09,20.31 35.15,51.27 -6.33,-17.35 -12.97,-16.7 -4.79,-8.78 5.68,2.79 11.61,3.69 9.7,5.12 8,11.73 21.59,13.15 7.37,10.51 -9.46,15.36 -12.83,-0.94 -4.91,-7.52 -8.57,-10.63 22.43,50.33 64.83,104.36 0.73,-6.88 -2.39,-11.21 6.78,-2.07 10.05,5.19 7.27,10.4 2.46,15.46 -4.21,4.07 -8.03,-4.45 -8.65,-10.08 10.39,27.9 20.08,24.88 41.1,32.27 132.4,34.67 50,26.72 26.9,7.74 23.38,11.47 53.81,74.8 182.99,113.57 236.88,75.64 103.85,51.08 168.78,37.97 105.14,13.98 15.2,-3.5 25.94,-17.19 9.21,-3.36 13.9,-1.27 236.8,-100.73 47.31,-46.33 8.14,-11.16 9.01,-16.29 2.78,-14.9 -10.51,-7.14 -3.47,3.42 -4.18,7.58 -5.17,7.38 -12.79,6.66 -10.76,19.73 -12.52,12.01 -37.67,47.41 -6.44,2.08 -23.12,1.56 -6.02,1.56 -7.54,9.57 -19.04,3.83 -41.89,20.93 -40.16,12.98 -7.21,7.88 -23.02,13.13 -5.77,1.84 -7.4,-4.57 -3.26,-6.27 -4.86,-32.77 -0.2,-7.49 2.2,-16.2 4.01,-3.71 16.3,-4.79 4,-3.59 9.66,-12.45 12.07,-19.28 0.83,-8.52 -1.46,-7.66 1.11,-7.19 8.51,-6.89 -0.91,-22.1 8.63,-8.27 11.87,4.24 8.74,15.25 -1.26,-18.95 7.25,-13.93 9.67,-11.33 23.2,-48.13 6.51,-9.95 0.91,-25.83 6.48,-43.78 9.89,-40.86 11.61,-17.24 10.62,-2.1 21.77,-12.39 10.56,-2.04 8.81,0.28 11.26,-1.76 10.13,-4.78 5.21,-9.13 13.09,-13.81 113.88,-19.9 24.53,1.56 18.46,14.01 6.34,-4.76 8.23,-3.14 18.48,-2.79 237.23,71.64 49.59,33.9 24.46,9.76 19.06,12.46 33.37,47.53 10.27,6.48"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7135" /><path
+               id="path3092" /><path
                d="m -102.012,4986.6 0,0 2.1018,-11.28 1.5704,-8.4 -29.3202,15.83 -7.828,-0.73 -0.043,-0.12 -4.75,-13.14 -0.008,-0.04 14.309,-7.31 48.4683,-4.52 6.0312,-1.75 6.6993,-1.94 12.7031,-7.02 13.4062,-7.41 15.3321,3.27 7.9882,7.3 10.26176,9.37 11.96093,13.98 5.41011,6.32 4.7774,7.24 6.8828,10.42 3.1797,7.16 2.6875,6.08 1.8125,6.83 0.957,3.62 4.4102,6.27 0.1015,0.02 10.879,2.27 0.1914,0.04 1.0898,-1.94 0.6094,-1.09 19.832,-14.67 4.5898,-9.73 7.9805,-16.89 -3.6015,-18.68 -8.6719,-17.22 -1.4688,-9.2 -2.3711,-14.79 3.8516,-10.83 0.0391,-0.05 22.4609,-27.68 0.0586,-0.21 3.1133,-9.98 5.6681,-25.1 2.89,-6.26 0.442,-0.97 0,0 0.637,-0.4 10.793,-6.71 27.058,0.94 3.039,-0.58 9.762,-1.84 11.367,-15.94 -1.668,-39.42 0.238,-0.07 12.153,-3.51 1.121,-0.06 25.418,5.18 82.5,-7.67 14.672,4.58 30.16,19.18 3.578,1.45 10.738,4.36 15.051,-2.5 7.59,-5.2 8.141,-5.57 9.558,-13.96 2.543,-3.72 3.801,-21.99 1.008,-25.38 15.64,-14.3 38.61,-13.59 4.949,-3.67 4.351,-3.23 6.329,-7.98 4.281,-3.54 3.219,-2.67 11.812,-0.53 16.641,2.9 12.859,2.25 5.09,-0.91 3.738,-0.67 11.129,-7.57 13.922,-20.65 8,-7.21 0.922,-0.83 10.769,2.16 10.918,2.18 3.481,-0.32 8.34,-0.76 0.109,-0.28 5.551,-14.7 1.539,-5.17 0.07,-0.22 -5.769,-4.96 -4.649,-4.01 -2.761,-12.85 15.128,-17.69 0.051,-0.06 -4.527,-2.68 -1.942,-1.16 -3.191,-1.18 -3.961,-1.48 -7.828,-0.84 -7.391,0.93 0.391,-2.61 0.762,-5.1 0.968,-3.58 1.418,-3.41 0.59,-1.4 -5.84,-15.08 -3.929,-6.62 -0.5,-0.84 -5.481,-6.84 -7.867,7.42 -6.062,-3.28 -2.321,-6.63 -1.539,-4.39 -0.969,-5.67 -1.519,-8.96 9.008,-13.26 0.062,-0.08 -12.32,-26.6 -29.313,-42.71 -0.128,-0.2 15.82,3.45 6.68,-0.3 6.492,-4.43 -2.102,-3.3 -6.289,-9.88 -13.422,-25.34 -9.527,-13.13 -3.844,-2.77 -7.937,-2.61 -6.45,-1.99 -1.851,-0.57 -43.449,-44.41 -9.903,-10.1 -0.218,-0.23 0.48,-16.68 0.238,-8.13 1.473,-2.48 8.918,-15.09 11.57,-8.76 3.981,-3.14 2.371,-0.98 2.39,-0.99 9.918,-5.61 0.25,-0.14 0.903,-0.29 9.777,-3.16 -0.027,-0.23 -1.133,-8.98 -0.527,-4.27 -3.223,-9.35 -5.379,-15.62 0.75,-0.43 2.52,-1.47 3.718,-2.49 5.711,-3.83 5.082,-1.04 2.34,-0.47 3.27,0.37 4.25,0.48 3.949,5.15 6.609,9.44 1.379,1.97 6.543,4.43 4.059,-1.99 2.519,-1.23 13.879,-16.52 6.844,-5.62 61.297,-0.84 8.441,-3.32 5.539,-1.99 0.992,-0.04 0.5,-0.02 51.059,-3.9 5.762,0.69 8.629,1.04 0.25,0.03 -0.692,-0.74 -0.879,-0.95 -0.461,-2.34 -0.07,-1.75 0.813,-1.39 0.25,-0.44 7.527,-4.62 3.762,-2.31 0.23,-8.21 0.07,-2.42 -3.062,-11.64 1.402,-6.05 0.809,-3.48 9.289,-1.55 28.32,6.52 11.551,-1.64 13.289,-14.07 7.34,-12.17 33.101,-54.79 -0.152,-0.08 -9.789,-5.43 7.59,-16.78 14.32,-8.22 48.981,-3 1.25,-6.54 -3.828,-7.19 -1.403,-2.63 -8.418,-9.48 -0.179,-0.21 -0.133,-3.53 -16.078,-8.83 -13.922,-10.97 -8.891,-7.01 -13.848,-19.98 -0.082,-0.12 11.082,-15.15 -5.968,-8.6 0.949,-4.75 0.027,-0.02 5.492,-2.55 8.25,-0.89 -0.082,-0.14 -5.777,-9.39 -0.012,-0.01 -0.148,-0.24 4.051,-3.65 1.418,-1.28 0.109,-0.24 1.813,-4.08 3.957,-8.87 3.613,-3.27 1.816,-1.66 2.071,-0.07 4.711,-0.18 20.941,5.32 3.328,0.85 0.082,0.07 1.32,1.16 0.411,0.37 0.128,0.11 1.52,0.52 1.48,-0.63 0.079,-0.08 1.722,-1.77 10.688,-5.69 30.172,-8.17 13.05,-1.04 0.047,-0.01 -8.16,-7.38 -0.617,-2.49 -1.563,-6.26 0.411,-2.2 1.461,-7.88 3.378,-11.31 1.903,-3.65 3.738,-7.17 4.133,-0.6 1.09,-0.16 1.297,-2.2 1.152,-1.95 0.051,-0.08 -0.282,-3.55 -1.14,-14.66 -5.512,-24.83 -0.316,-1.45 -5.41,-14.53 0.668,-13 22.921,-43.81 0,-0.08 0.938,-15.71 0.012,-0.15 -6.121,-5.91 -3.18,-3.08 -0.09,-0.08 -18.961,-2.86 -9.719,2.1 -5.019,2.46 -2.77,1.36 -7.89,0.89 -4.039,-2.33 -5.59,-3.22 -4.903,-5.23 -2.57,-2.75 -5.309,-10.99 -1.902,-10.55 2.973,-10.45 0.07,-0.24 -13.652,-11.29 -17.981,-4.15 -12.867,-2.96 -15.359,-6.47 -4.973,-7.55 -2.238,-3.4 -12.61,-7.98 -4.062,-2.57 -7.508,-9.12 0.051,-0.07 8.976,-10.89 0.762,-3.04 2.512,-10.06 -0.844,-12.33 -4.566,-10.42 -1.512,-0.93 -3.898,-2.4 -14.403,-0.62 -1.14,-0.61 -5.047,-2.69 -0.821,-2.25 -0.461,-1.24 -1.789,-7.38 -1.332,-5.45 -1.718,-5.25 6.937,-6.17 2.352,-7.02 0.039,-0.12 -0.649,-1.78 -1.879,-5.19 -6.761,-7.39 -10.328,5.09 -0.051,0.02 -0.481,3.7 -0.691,5.18 0.512,4.67 0.629,5.8 0.011,0.07 -2.64,10.14 -0.782,0.79 -8.32,8.4 -3.867,-0.29 -1.434,-0.11 -0.027,-0.03 -4.723,-5.07 -5.457,-2.73 -1.101,-0.55 -16.328,-1.72 -7.891,1.5 -2.77,1.21 -0.211,0.09 -6.308,3.18 -4.211,8.43 -1.859,10.69 -3.614,4.56 -0.707,0.91 -11.281,-8.38 -8.191,-0.63 -7.008,-0.54 -6.481,-10.32 -3.16,-12.69 -0.469,-1.89 -6.3,-15.65 -11.063,-10.74 -27.019,-11.86 -8.02,-6.79 -4.48,-3.8 -0.09,-0.07 -2.918,-6.96 -1.082,-10.05 -0.797,-7.53 -1.25,-4.28 -0.961,-3.28 -2.039,-2.9 -2.41,-3.42 -11.012,-8.94 -1.82,-2.39 -2.969,-3.91 0.398,-9.16 0.172,-3.81 -0.453,-10.6 -2.078,-8.02 -0.16,-0.63 -0.02,-0.09 -1.14,-1.04 -4.379,-4.02 -14.68,-5.88 -4.801,-5.66 -1.429,-15.28 0.097,-0.13 4.953,-6.56 2.379,-6 0,0 -8.621,-14.94 -3.41,-3.25 -2.508,-2.39 -10.73,-1.9 -5.09,-3.32 -4.75,-5.39 -1.262,-1.43 -1.187,-2.35 -1.731,-3.42 -0.812,-2.16 -1.34,-3.62 -0.688,-1.64 -2.25,-5.31 -17.14,-26.63 -9.801,-15.21 -1.281,-4.25 -1.86,-6.23 8.172,-4.47 2.457,-2.13 12.59,-10.9 6.383,-10.2 0.059,-0.09 -18.719,2.55 -0.223,0.03 0.07,-4.77 0.024,-1.71 -0.992,-2.26 -0.289,-0.65 -1.653,-2.86 -1.297,-3.49 0.118,-0.12 6.472,-6.64 -0.043,-0.02 -8.617,-5.5 -3.883,-10.45 0.563,-13.57 2.027,-6.99 1.953,-6.74 7.059,-13.26 7.031,-3.83 0.027,-0.01 0.571,-0.12 7,-1.39 2.941,-2.08 5.961,-4.2 3.891,-6.1 0.75,-1.18 3.847,-8.6 11.461,-25.63 0.93,-5.34 0.879,-15.37 -0.039,-0.94 -0.078,-1.84 -0.012,-0.15 3.828,-3.22 0.492,-0.41 0.11,-0.09 9.781,-3.38 2.219,-1.35 1.89,-1.16 4.192,-0.78 2.437,0.53 2.153,0.46 2.179,-0.09 2.399,-0.1 0.191,-0.35 3.719,-6.9 0.371,-3.71 0.437,-4.55 -1.187,-1.69 -2.063,-2.89 -3.57,-3.39 -1.43,-6.41 -0.668,-7.05 -2.089,-3.45 -1.289,-4.06 1.226,-4.47 1.07,-3.89 4.813,-3.74 14.059,-2.34 0.089,-0.08 5.082,-4.85 1.981,-8.63 1.566,-6.85 -0.09,-0.18 -4.507,-9.64 -7.172,-6.18 -0.028,-0.03 -5.972,-6.8 -6.219,-14.59 -4.398,-10.31 -6.211,-10.93 -8.352,-7.3 0.133,-0.08 7.387,-4.69 4.382,-2.78 0.047,-0.03 -3.988,-8.82 -3.602,-7.95 -17.597,-16.92 -17.211,-7.53 -7.84,2.02 -0.488,0.12 -0.043,0.03 -15.598,10.66 -7.609,1.51 -8.223,-3.79 -9.73,-11.95 -8.188,-3.41 -0.769,-0.31 -0.043,0 -15.528,3.61 -15.359,8.37 -15.922,4.21 0,0 -18.398,-8.58 -9.262,-11.27 -0.09,-0.11 -1.879,-7.57 -0.641,-1.18 -1.851,-3.43 -4.891,-0.31 -5.898,-0.38 -6.43,2.08 -22.101,11.6 -9.637,-4.12 -4.043,-1.73 -9.18,-6.39 -9.879,-6.88 -14.59,-7.79 -4.699,-2.51 -15.519,4.87 -2.934,8.03 -0.789,2.16 1.223,9.96 2.816,10.49 0.293,6.21 0.231,4.96 -2.563,10.71 -31.82,64.61 -12.797,12.38 -21.762,9.32 -3.699,2.57 -4.481,3.12 -4.179,0.76 -0.211,0.04 -0.129,0.03 -2.832,-2.83 -3.348,-5.71 -4.09,-5.7 -1.3,-0.39 -3.789,-1.15 -11.723,2.94 -0.109,0.15 -3.372,4.63 -0.089,0.12 -0.52,5 -0.519,5.07 3.058,15.74 0,0.02 0.82,0.45 5.102,2.8 1.328,1.62 1.934,2.37 -4.184,16.7 -12.879,17.73 -14.418,15.94 -0.101,0.1 -8.6409,0.11 -6.6172,0.08 -11.8711,-2.56 -21.4102,-4.6 -16.1523,5.54 -12.8672,10.68 -3.1992,3.34 -6.9414,7.2 -16.30862,26.75 -11.90235,19.52 -8.19923,8.57 -0.0195,0.02 -0.1016,0.1 -5.6484,1.89 -19.5,6.52 -14.0391,9.01 -25.25,27.86 -10.3633,6.46 -0.9296,0.81 -1.2383,1.07 -7.4685,-0.18 -7.832,-0.18 -14.371,-4.01 -17.438,-4.86 -12.051,-1.5 -4.468,-0.56 -11.122,2.4 -7.378,1.58 -0.012,0.01 -6.012,8.6 1.25,19.45 1.442,22.28 -1.489,6.35 -0.051,0.21 -6.55,12.15 -1.231,5.39 1.922,6.98 6.879,7.28 0.441,0.88 2.118,4.28 1.222,3.68 3.391,10.24 2.019,4.08 2.25,4.52 2.438,9.89 -0.328,6.49 -0.403,7.72 -9.718,20.85 -0.16,0.32 0,0 -19.481,9.37 -13.758,6.62 -0.101,0.05 -8.629,15.81 4.039,17.49 22.558,48.13 8.954,19.11 0,0.04 0.277,2.29 1.152,9.38 -0.621,9.48 0.949,7.25 0.352,2.7 0.027,0.05 4.25,8.18 10.633,20.43 0.09,0.02 4.519,0.91 7.079,-8.63 0.031,0.16 1.738,11.18 1.231,7.93 5.043,22.74 0.5,5.27 1.347,14.1 -5.969,9.17 -22.55,-3.47 -8.11,4 -2,15.88 -0.101,0.77 -19.758,-7.76 -80.813,-72.64 -4.648,-8.6 -2.531,-11.06 1.109,-4.84 0.402,-1.73 0.942,-2.49 1.34,-3.55 0.148,-3.4 0.192,-4.28 -2.532,-11.41 -5.211,-23.55 -5.949,-17.35 -1.09,-1.9 -6.101,-10.67 -5.629,-2.9 -2.61,-1.35 -29.859,-2.97 -25.93,-11.08 -77.203,-32.9 -21.449,-2.23 -7.117,2.19 -85.684,29.62 -18.359,6.37 -20.758,-1.79 -34.402,-2.94 -7.649,2.91 -1.648,0.63 -38.543,24.22 -0.238,0.15 5.507,-0.95 0.161,-0.03 -0.047,10.36 -0.032,6.2 -1.32,8.5 -1.379,8.8 -3.152,1.33 -0.168,0.07 0,0.01 3.867,12.71 3.512,7.13 0.43,0.89 0.05,0.05 5.7,6.06 8.332,7.02 5.339,4.49 12.411,7.63 5,3.07 10.046,4.29 7.801,3.33 0.16,0.07 0.321,4.98 0.14,2.08 -4.39,9.13 -2.008,6.33 -1.453,4.53 -9,48.99 -6.93,3.99 -7.641,-0.68 -14.777,-5.53 -4.242,2.29 -5.68,3.06 2.68,16.7 0.512,3.19 10.449,27.68 6.082,16.1 5.098,20.34 3.66,7.86 0.34,0.74 8.21,10.1 17.848,12.42 1.07,1.14 6.243,6.67 1.328,5.54 1.312,5.5 -4.043,7.93 -8.187,8.2 -5.91,4.1 -3.5,2.42 -6.129,2.72 -0.121,0.05 -8.911,-2.97 -0.031,-0.26 -0.84,-7.35 0.141,-3.89 0.129,-3.62 0,-0.18 -1.988,-1.55 -3.61,-2.81 -8.441,4.45 -4.36,2.3 -12.609,32.93 -3.851,10.08 -0.09,0.09 -13.77,13.8 -9.422,6.64 -5.398,3.8 -21.57,27.43 -0.719,0.39 -12.781,7 -6.68,-0.07 -8.461,-0.09 -30.75,-10.81 -15.738,-5.52 -9.692,0.66 -6.48,0.45 -2.891,1.57 -9.5,5.19 -6.449,5.45 -4.988,4.2 -14.129,8.68 -29.481,5.61 -31.019,-0.18 -4.364,-1.49 -5.707,-1.96 -6.113,-6.05 -14.34,-20.86 -2.75,-6.49 -0.886,-2.1 -0.864,-1.37 -1.269,-2.03 -3.547,-2.11 -1.043,1.23 -0.02,0.02 -1.179,-0.49 -3.11,-6.87 -23.172,25.29 -3.136,45.73 3.726,51.73 -2.91,43.35 -10.088,22.02 -12.9,14.53 -15.2,8.79 -15.89,4.71 -42.93,3.17 -2.82,0.21 -8.17,7.1 0.04,0.05 7.08,10.9 0.58,0.89 1.75,8.73 -4.03,6.22 -3.04,1.32 -6.83,2.97 -7.12,-0.3 -3.07,-0.12 -6.27,-3.31 -1.59,-0.84 -2.57,-2.31 -4.69,-4.22 -2.88,-1.77 -7.43,-4.55 -25.01,-7.36 -7,-2.06 -6.5,-0.17 -10.89,-0.27 -12.1,4.47 -29.51,18.23 -8.78,8.36 -8.84,13.03 -1.3,1.93 -2.82,12.64 1.65,35.96 -13.86,63.77 -3.06,32.76 5.94,9.01 5.55,8.43 -2.47,10.89 -3.67,16.19 -4.25,9.79 -0.53,1.24 -9.11,3.65 -0.04,0.01 -9.92,1.96 -5.11,6.93 -6.89,21.83 -6.78,15.02 -1.52,3.37 -1.31,2.82 -8.95,19.31 -11.05,12.11 -14.04,5.79 -3.76,1.55 -34.67,-8.02 -20.35,-4.7 -1.66,-0.31 -0.65,-0.11 -6.83,-1.58 -31,-7.16 -9.14,-4.6 -8.1,-4.07 -6.67,-6.29 -7.17,-6.76 -10.12,-14.46 -14.16,-20.23 -9.92,-6.29 -2.96,0.7 -4.78,1.13 -1.66,0.81 -1.23,0.61 -2.26,1.01 -1,0.45 0.01,0.11 0.04,0.49 -47.39,26.19 -6.83,3.78 -3.6,3.66 -8.5,8.64 -1.23,2.59 -1.98,4.18 -7.43,23.12 -3.46,7.98 -2.72,3.12 -21.18,24.38 -4.12,8.62 -0.02,0.03 -1.6,7.83 0,0 -2.79,6.74 -8.91,5.5 -1.74,0.31 -4.9,0.84 -13.2,-0.62 -5.97,0.51 -9.83,3.22 -4.26,2.39 -0.73,0.42 -3.19,6.78 -2.34,6.72 -2.76,7.94 -1.38,1.97 -1.29,1.82 -2.15,1.28 -6.03,3.57 -1.43,3.24 -0.44,0.99 -0.03,0.07 0.59,2.33 0.58,2.31 6.64,11.85 1.42,7.57 -4.81,24.39 -5.05,25.62 4.93,9.64 6.63,5.39 11.11,9.05 2.85,4.08 1.83,2.62 -0.32,21.95 -9.63,18 -0.01,0.01 -22.43,29.78 -5.15,22.37 -0.48,8.59 -2.25,40.81 -0.95,3.07 -7.19,23.13 15.3,8.71 27.04,6.5 101.3,64.05 152.27,72.99 147.62,80.83 159.67,38.27 1.95,-28.03 1.04,-14.76 -5.09,-27.41 -2.35,-25.84 4.94,-18.84 2.51,-9.54 15.52,-20.1 2.51,-1.38 8.6,-4.66 9.22,-4.98 15.31,-3.19 6.99,-1.45 28.16,2.38 5.07,0.42 1.22,4.27 1.77,6.16 -0.78,14.26 0.71,4.33 1.38,8.51 8.32,7.05 0.45,0.07 10.05,1.51 11.1,-0.22 28.129,4.41 1.391,-0.01 16.012,-0.09 17.5,-4.23 83.129,-34.39 12.66,-9.79 2.629,-14.96 -2,-12.27 0.281,-11.73 0,-0.09 9.469,-13.08 7.261,-3.64 0.969,-0.49 82.82,-4.62 10.551,2.41 5.289,1.2 4.739,3.27 28.761,19.85 89.27,37.7 36.469,24.75 30.031,35.69 0.082,0.1 3.25,7.71 1.117,2.65 6.832,25.53 0.699,4.68 0.09,-0.05 0.949,-0.59 12.102,-13.22 4.82,-10.92 3.84,-20.92 10.5,-14.84 11.801,-12 7.816,-11.12 2.102,-7.22 0.672,-7.14 -2.332,-7.52 -6.551,-9.61 5.742,2.57 2.629,1.01 5.961,6.11 11.289,20.56 -22.941,11.5 -5.2,5.06 -1.988,9.56 2.27,24.07 -1.43,11.91 -4.582,9.15 -9.438,13.54 -0.043,0.05 19.84,-1.86 7.551,-4.92 16.57,-10.81 7.832,-2.92 5.539,-2.06 26.649,-3.64 5.601,-0.76 13.711,6.23 1.098,4.67 3.422,14.53 -0.492,1.59 -2.91,9.24 -0.059,0.09 -14.559,19.74 -1.222,2.79 -3.278,7.52 0.829,8.72 0.23,2.43 4.969,8.54 1.961,7.57 -7.879,9.93 37.711,18.87 24.59,7.28 13.347,3.97 18.5,1.99 2.301,0.24 0.031,-0.01 8.649,-2.28 4.949,-9.75 -1.399,-13.58 -0.468,-4.61 -6.711,-13.74 -1.063,-5.25 -1.066,-5.26 4.348,-3.51 8.289,-6.69 4.851,-0.92 4.27,-0.81 5.172,0.72 15.296,2.16 20.782,-6.91 0.949,-0.31 0.043,0 1.5,-0.01 9.519,-0.05 9.399,2.99 7.32,4.87 0.141,0.14 57.777,63.13 23.453,10.45 9.828,-1.75 0,-0.01 5.422,-2.41 6.778,-3.01 0.121,-0.09 3.031,-2.23 8.18,-6 6.8082,-9.84 0.5,-17.14 -3.4101,-10 -1.918,-5.63 -2.6211,-11.02 -1.262,-5.27"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m -102.012,4986.6 0,0 2.1018,-11.28 1.5704,-8.4 -29.3202,15.83 -7.828,-0.73 -0.043,-0.12 -4.75,-13.14 -0.008,-0.04 14.309,-7.31 48.4683,-4.52 6.0312,-1.75 6.6993,-1.94 12.7031,-7.02 13.4062,-7.41 15.3321,3.27 7.9882,7.3 10.26176,9.37 11.96093,13.98 5.41011,6.32 4.7774,7.24 6.8828,10.42 3.1797,7.16 2.6875,6.08 1.8125,6.83 0.957,3.62 4.4102,6.27 0.1015,0.02 10.879,2.27 0.1914,0.04 1.0898,-1.94 0.6094,-1.09 19.832,-14.67 4.5898,-9.73 7.9805,-16.89 -3.6015,-18.68 -8.6719,-17.22 -1.4688,-9.2 -2.3711,-14.79 3.8516,-10.83 0.0391,-0.05 22.4609,-27.68 0.0586,-0.21 3.1133,-9.98 5.6681,-25.1 2.89,-6.26 0.442,-0.97 0,0 0.637,-0.4 10.793,-6.71 27.058,0.94 3.039,-0.58 9.762,-1.84 11.367,-15.94 -1.668,-39.42 0.238,-0.07 12.153,-3.51 1.121,-0.06 25.418,5.18 82.5,-7.67 14.672,4.58 30.16,19.18 3.578,1.45 10.738,4.36 15.051,-2.5 7.59,-5.2 8.141,-5.57 9.558,-13.96 2.543,-3.72 3.801,-21.99 1.008,-25.38 15.64,-14.3 38.61,-13.59 4.949,-3.67 4.351,-3.23 6.329,-7.98 4.281,-3.54 3.219,-2.67 11.812,-0.53 16.641,2.9 12.859,2.25 5.09,-0.91 3.738,-0.67 11.129,-7.57 13.922,-20.65 8,-7.21 0.922,-0.83 10.769,2.16 10.918,2.18 3.481,-0.32 8.34,-0.76 0.109,-0.28 5.551,-14.7 1.539,-5.17 0.07,-0.22 -5.769,-4.96 -4.649,-4.01 -2.761,-12.85 15.128,-17.69 0.051,-0.06 -4.527,-2.68 -1.942,-1.16 -3.191,-1.18 -3.961,-1.48 -7.828,-0.84 -7.391,0.93 0.391,-2.61 0.762,-5.1 0.968,-3.58 1.418,-3.41 0.59,-1.4 -5.84,-15.08 -3.929,-6.62 -0.5,-0.84 -5.481,-6.84 -7.867,7.42 -6.062,-3.28 -2.321,-6.63 -1.539,-4.39 -0.969,-5.67 -1.519,-8.96 9.008,-13.26 0.062,-0.08 -12.32,-26.6 -29.313,-42.71 -0.128,-0.2 15.82,3.45 6.68,-0.3 6.492,-4.43 -2.102,-3.3 -6.289,-9.88 -13.422,-25.34 -9.527,-13.13 -3.844,-2.77 -7.937,-2.61 -6.45,-1.99 -1.851,-0.57 -43.449,-44.41 -9.903,-10.1 -0.218,-0.23 0.48,-16.68 0.238,-8.13 1.473,-2.48 8.918,-15.09 11.57,-8.76 3.981,-3.14 2.371,-0.98 2.39,-0.99 9.918,-5.61 0.25,-0.14 0.903,-0.29 9.777,-3.16 -0.027,-0.23 -1.133,-8.98 -0.527,-4.27 -3.223,-9.35 -5.379,-15.62 0.75,-0.43 2.52,-1.47 3.718,-2.49 5.711,-3.83 5.082,-1.04 2.34,-0.47 3.27,0.37 4.25,0.48 3.949,5.15 6.609,9.44 1.379,1.97 6.543,4.43 4.059,-1.99 2.519,-1.23 13.879,-16.52 6.844,-5.62 61.297,-0.84 8.441,-3.32 5.539,-1.99 0.992,-0.04 0.5,-0.02 51.059,-3.9 5.762,0.69 8.629,1.04 0.25,0.03 -0.692,-0.74 -0.879,-0.95 -0.461,-2.34 -0.07,-1.75 0.813,-1.39 0.25,-0.44 7.527,-4.62 3.762,-2.31 0.23,-8.21 0.07,-2.42 -3.062,-11.64 1.402,-6.05 0.809,-3.48 9.289,-1.55 28.32,6.52 11.551,-1.64 13.289,-14.07 7.34,-12.17 33.101,-54.79 -0.152,-0.08 -9.789,-5.43 7.59,-16.78 14.32,-8.22 48.981,-3 1.25,-6.54 -3.828,-7.19 -1.403,-2.63 -8.418,-9.48 -0.179,-0.21 -0.133,-3.53 -16.078,-8.83 -13.922,-10.97 -8.891,-7.01 -13.848,-19.98 -0.082,-0.12 11.082,-15.15 -5.968,-8.6 0.949,-4.75 0.027,-0.02 5.492,-2.55 8.25,-0.89 -0.082,-0.14 -5.777,-9.39 -0.012,-0.01 -0.148,-0.24 4.051,-3.65 1.418,-1.28 0.109,-0.24 1.813,-4.08 3.957,-8.87 3.613,-3.27 1.816,-1.66 2.071,-0.07 4.711,-0.18 20.941,5.32 3.328,0.85 0.082,0.07 1.32,1.16 0.411,0.37 0.128,0.11 1.52,0.52 1.48,-0.63 0.079,-0.08 1.722,-1.77 10.688,-5.69 30.172,-8.17 13.05,-1.04 0.047,-0.01 -8.16,-7.38 -0.617,-2.49 -1.563,-6.26 0.411,-2.2 1.461,-7.88 3.378,-11.31 1.903,-3.65 3.738,-7.17 4.133,-0.6 1.09,-0.16 1.297,-2.2 1.152,-1.95 0.051,-0.08 -0.282,-3.55 -1.14,-14.66 -5.512,-24.83 -0.316,-1.45 -5.41,-14.53 0.668,-13 22.921,-43.81 0,-0.08 0.938,-15.71 0.012,-0.15 -6.121,-5.91 -3.18,-3.08 -0.09,-0.08 -18.961,-2.86 -9.719,2.1 -5.019,2.46 -2.77,1.36 -7.89,0.89 -4.039,-2.33 -5.59,-3.22 -4.903,-5.23 -2.57,-2.75 -5.309,-10.99 -1.902,-10.55 2.973,-10.45 0.07,-0.24 -13.652,-11.29 -17.981,-4.15 -12.867,-2.96 -15.359,-6.47 -4.973,-7.55 -2.238,-3.4 -12.61,-7.98 -4.062,-2.57 -7.508,-9.12 0.051,-0.07 8.976,-10.89 0.762,-3.04 2.512,-10.06 -0.844,-12.33 -4.566,-10.42 -1.512,-0.93 -3.898,-2.4 -14.403,-0.62 -1.14,-0.61 -5.047,-2.69 -0.821,-2.25 -0.461,-1.24 -1.789,-7.38 -1.332,-5.45 -1.718,-5.25 6.937,-6.17 2.352,-7.02 0.039,-0.12 -0.649,-1.78 -1.879,-5.19 -6.761,-7.39 -10.328,5.09 -0.051,0.02 -0.481,3.7 -0.691,5.18 0.512,4.67 0.629,5.8 0.011,0.07 -2.64,10.14 -0.782,0.79 -8.32,8.4 -3.867,-0.29 -1.434,-0.11 -0.027,-0.03 -4.723,-5.07 -5.457,-2.73 -1.101,-0.55 -16.328,-1.72 -7.891,1.5 -2.77,1.21 -0.211,0.09 -6.308,3.18 -4.211,8.43 -1.859,10.69 -3.614,4.56 -0.707,0.91 -11.281,-8.38 -8.191,-0.63 -7.008,-0.54 -6.481,-10.32 -3.16,-12.69 -0.469,-1.89 -6.3,-15.65 -11.063,-10.74 -27.019,-11.86 -8.02,-6.79 -4.48,-3.8 -0.09,-0.07 -2.918,-6.96 -1.082,-10.05 -0.797,-7.53 -1.25,-4.28 -0.961,-3.28 -2.039,-2.9 -2.41,-3.42 -11.012,-8.94 -1.82,-2.39 -2.969,-3.91 0.398,-9.16 0.172,-3.81 -0.453,-10.6 -2.078,-8.02 -0.16,-0.63 -0.02,-0.09 -1.14,-1.04 -4.379,-4.02 -14.68,-5.88 -4.801,-5.66 -1.429,-15.28 0.097,-0.13 4.953,-6.56 2.379,-6 0,0 -8.621,-14.94 -3.41,-3.25 -2.508,-2.39 -10.73,-1.9 -5.09,-3.32 -4.75,-5.39 -1.262,-1.43 -1.187,-2.35 -1.731,-3.42 -0.812,-2.16 -1.34,-3.62 -0.688,-1.64 -2.25,-5.31 -17.14,-26.63 -9.801,-15.21 -1.281,-4.25 -1.86,-6.23 8.172,-4.47 2.457,-2.13 12.59,-10.9 6.383,-10.2 0.059,-0.09 -18.719,2.55 -0.223,0.03 0.07,-4.77 0.024,-1.71 -0.992,-2.26 -0.289,-0.65 -1.653,-2.86 -1.297,-3.49 0.118,-0.12 6.472,-6.64 -0.043,-0.02 -8.617,-5.5 -3.883,-10.45 0.563,-13.57 2.027,-6.99 1.953,-6.74 7.059,-13.26 7.031,-3.83 0.027,-0.01 0.571,-0.12 7,-1.39 2.941,-2.08 5.961,-4.2 3.891,-6.1 0.75,-1.18 3.847,-8.6 11.461,-25.63 0.93,-5.34 0.879,-15.37 -0.039,-0.94 -0.078,-1.84 -0.012,-0.15 3.828,-3.22 0.492,-0.41 0.11,-0.09 9.781,-3.38 2.219,-1.35 1.89,-1.16 4.192,-0.78 2.437,0.53 2.153,0.46 2.179,-0.09 2.399,-0.1 0.191,-0.35 3.719,-6.9 0.371,-3.71 0.437,-4.55 -1.187,-1.69 -2.063,-2.89 -3.57,-3.39 -1.43,-6.41 -0.668,-7.05 -2.089,-3.45 -1.289,-4.06 1.226,-4.47 1.07,-3.89 4.813,-3.74 14.059,-2.34 0.089,-0.08 5.082,-4.85 1.981,-8.63 1.566,-6.85 -0.09,-0.18 -4.507,-9.64 -7.172,-6.18 -0.028,-0.03 -5.972,-6.8 -6.219,-14.59 -4.398,-10.31 -6.211,-10.93 -8.352,-7.3 0.133,-0.08 7.387,-4.69 4.382,-2.78 0.047,-0.03 -3.988,-8.82 -3.602,-7.95 -17.597,-16.92 -17.211,-7.53 -7.84,2.02 -0.488,0.12 -0.043,0.03 -15.598,10.66 -7.609,1.51 -8.223,-3.79 -9.73,-11.95 -8.188,-3.41 -0.769,-0.31 -0.043,0 -15.528,3.61 -15.359,8.37 -15.922,4.21 0,0 -18.398,-8.58 -9.262,-11.27 -0.09,-0.11 -1.879,-7.57 -0.641,-1.18 -1.851,-3.43 -4.891,-0.31 -5.898,-0.38 -6.43,2.08 -22.101,11.6 -9.637,-4.12 -4.043,-1.73 -9.18,-6.39 -9.879,-6.88 -14.59,-7.79 -4.699,-2.51 -15.519,4.87 -2.934,8.03 -0.789,2.16 1.223,9.96 2.816,10.49 0.293,6.21 0.231,4.96 -2.563,10.71 -31.82,64.61 -12.797,12.38 -21.762,9.32 -3.699,2.57 -4.481,3.12 -4.179,0.76 -0.211,0.04 -0.129,0.03 -2.832,-2.83 -3.348,-5.71 -4.09,-5.7 -1.3,-0.39 -3.789,-1.15 -11.723,2.94 -0.109,0.15 -3.372,4.63 -0.089,0.12 -0.52,5 -0.519,5.07 3.058,15.74 0,0.02 0.82,0.45 5.102,2.8 1.328,1.62 1.934,2.37 -4.184,16.7 -12.879,17.73 -14.418,15.94 -0.101,0.1 -8.6409,0.11 -6.6172,0.08 -11.8711,-2.56 -21.4102,-4.6 -16.1523,5.54 -12.8672,10.68 -3.1992,3.34 -6.9414,7.2 -16.30862,26.75 -11.90235,19.52 -8.19923,8.57 -0.0195,0.02 -0.1016,0.1 -5.6484,1.89 -19.5,6.52 -14.0391,9.01 -25.25,27.86 -10.3633,6.46 -0.9296,0.81 -1.2383,1.07 -7.4685,-0.18 -7.832,-0.18 -14.371,-4.01 -17.438,-4.86 -12.051,-1.5 -4.468,-0.56 -11.122,2.4 -7.378,1.58 -0.012,0.01 -6.012,8.6 1.25,19.45 1.442,22.28 -1.489,6.35 -0.051,0.21 -6.55,12.15 -1.231,5.39 1.922,6.98 6.879,7.28 0.441,0.88 2.118,4.28 1.222,3.68 3.391,10.24 2.019,4.08 2.25,4.52 2.438,9.89 -0.328,6.49 -0.403,7.72 -9.718,20.85 -0.16,0.32 0,0 -19.481,9.37 -13.758,6.62 -0.101,0.05 -8.629,15.81 4.039,17.49 22.558,48.13 8.954,19.11 0,0.04 0.277,2.29 1.152,9.38 -0.621,9.48 0.949,7.25 0.352,2.7 0.027,0.05 4.25,8.18 10.633,20.43 0.09,0.02 4.519,0.91 7.079,-8.63 0.031,0.16 1.738,11.18 1.231,7.93 5.043,22.74 0.5,5.27 1.347,14.1 -5.969,9.17 -22.55,-3.47 -8.11,4 -2,15.88 -0.101,0.77 -19.758,-7.76 -80.813,-72.64 -4.648,-8.6 -2.531,-11.06 1.109,-4.84 0.402,-1.73 0.942,-2.49 1.34,-3.55 0.148,-3.4 0.192,-4.28 -2.532,-11.41 -5.211,-23.55 -5.949,-17.35 -1.09,-1.9 -6.101,-10.67 -5.629,-2.9 -2.61,-1.35 -29.859,-2.97 -25.93,-11.08 -77.203,-32.9 -21.449,-2.23 -7.117,2.19 -85.684,29.62 -18.359,6.37 -20.758,-1.79 -34.402,-2.94 -7.649,2.91 -1.648,0.63 -38.543,24.22 -0.238,0.15 5.507,-0.95 0.161,-0.03 -0.047,10.36 -0.032,6.2 -1.32,8.5 -1.379,8.8 -3.152,1.33 -0.168,0.07 0,0.01 3.867,12.71 3.512,7.13 0.43,0.89 0.05,0.05 5.7,6.06 8.332,7.02 5.339,4.49 12.411,7.63 5,3.07 10.046,4.29 7.801,3.33 0.16,0.07 0.321,4.98 0.14,2.08 -4.39,9.13 -2.008,6.33 -1.453,4.53 -9,48.99 -6.93,3.99 -7.641,-0.68 -14.777,-5.53 -4.242,2.29 -5.68,3.06 2.68,16.7 0.512,3.19 10.449,27.68 6.082,16.1 5.098,20.34 3.66,7.86 0.34,0.74 8.21,10.1 17.848,12.42 1.07,1.14 6.243,6.67 1.328,5.54 1.312,5.5 -4.043,7.93 -8.187,8.2 -5.91,4.1 -3.5,2.42 -6.129,2.72 -0.121,0.05 -8.911,-2.97 -0.031,-0.26 -0.84,-7.35 0.141,-3.89 0.129,-3.62 0,-0.18 -1.988,-1.55 -3.61,-2.81 -8.441,4.45 -4.36,2.3 -12.609,32.93 -3.851,10.08 -0.09,0.09 -13.77,13.8 -9.422,6.64 -5.398,3.8 -21.57,27.43 -0.719,0.39 -12.781,7 -6.68,-0.07 -8.461,-0.09 -30.75,-10.81 -15.738,-5.52 -9.692,0.66 -6.48,0.45 -2.891,1.57 -9.5,5.19 -6.449,5.45 -4.988,4.2 -14.129,8.68 -29.481,5.61 -31.019,-0.18 -4.364,-1.49 -5.707,-1.96 -6.113,-6.05 -14.34,-20.86 -2.75,-6.49 -0.886,-2.1 -0.864,-1.37 -1.269,-2.03 -3.547,-2.11 -1.043,1.23 -0.02,0.02 -1.179,-0.49 -3.11,-6.87 -23.172,25.29 -3.136,45.73 3.726,51.73 -2.91,43.35 -10.088,22.02 -12.9,14.53 -15.2,8.79 -15.89,4.71 -42.93,3.17 -2.82,0.21 -8.17,7.1 0.04,0.05 7.08,10.9 0.58,0.89 1.75,8.73 -4.03,6.22 -3.04,1.32 -6.83,2.97 -7.12,-0.3 -3.07,-0.12 -6.27,-3.31 -1.59,-0.84 -2.57,-2.31 -4.69,-4.22 -2.88,-1.77 -7.43,-4.55 -25.01,-7.36 -7,-2.06 -6.5,-0.17 -10.89,-0.27 -12.1,4.47 -29.51,18.23 -8.78,8.36 -8.84,13.03 -1.3,1.93 -2.82,12.64 1.65,35.96 -13.86,63.77 -3.06,32.76 5.94,9.01 5.55,8.43 -2.47,10.89 -3.67,16.19 -4.25,9.79 -0.53,1.24 -9.11,3.65 -0.04,0.01 -9.92,1.96 -5.11,6.93 -6.89,21.83 -6.78,15.02 -1.52,3.37 -1.31,2.82 -8.95,19.31 -11.05,12.11 -14.04,5.79 -3.76,1.55 -34.67,-8.02 -20.35,-4.7 -1.66,-0.31 -0.65,-0.11 -6.83,-1.58 -31,-7.16 -9.14,-4.6 -8.1,-4.07 -6.67,-6.29 -7.17,-6.76 -10.12,-14.46 -14.16,-20.23 -9.92,-6.29 -2.96,0.7 -4.78,1.13 -1.66,0.81 -1.23,0.61 -2.26,1.01 -1,0.45 0.01,0.11 0.04,0.49 -47.39,26.19 -6.83,3.78 -3.6,3.66 -8.5,8.64 -1.23,2.59 -1.98,4.18 -7.43,23.12 -3.46,7.98 -2.72,3.12 -21.18,24.38 -4.12,8.62 -0.02,0.03 -1.6,7.83 0,0 -2.79,6.74 -8.91,5.5 -1.74,0.31 -4.9,0.84 -13.2,-0.62 -5.97,0.51 -9.83,3.22 -4.26,2.39 -0.73,0.42 -3.19,6.78 -2.34,6.72 -2.76,7.94 -1.38,1.97 -1.29,1.82 -2.15,1.28 -6.03,3.57 -1.43,3.24 -0.44,0.99 -0.03,0.07 0.59,2.33 0.58,2.31 6.64,11.85 1.42,7.57 -4.81,24.39 -5.05,25.62 4.93,9.64 6.63,5.39 11.11,9.05 2.85,4.08 1.83,2.62 -0.32,21.95 -9.63,18 -0.01,0.01 -22.43,29.78 -5.15,22.37 -0.48,8.59 -2.25,40.81 -0.95,3.07 -7.19,23.13 15.3,8.71 27.04,6.5 101.3,64.05 152.27,72.99 147.62,80.83 159.67,38.27 1.95,-28.03 1.04,-14.76 -5.09,-27.41 -2.35,-25.84 4.94,-18.84 2.51,-9.54 15.52,-20.1 2.51,-1.38 8.6,-4.66 9.22,-4.98 15.31,-3.19 6.99,-1.45 28.16,2.38 5.07,0.42 1.22,4.27 1.77,6.16 -0.78,14.26 0.71,4.33 1.38,8.51 8.32,7.05 0.45,0.07 10.05,1.51 11.1,-0.22 28.129,4.41 1.391,-0.01 16.012,-0.09 17.5,-4.23 83.129,-34.39 12.66,-9.79 2.629,-14.96 -2,-12.27 0.281,-11.73 0,-0.09 9.469,-13.08 7.261,-3.64 0.969,-0.49 82.82,-4.62 10.551,2.41 5.289,1.2 4.739,3.27 28.761,19.85 89.27,37.7 36.469,24.75 30.031,35.69 0.082,0.1 3.25,7.71 1.117,2.65 6.832,25.53 0.699,4.68 0.09,-0.05 0.949,-0.59 12.102,-13.22 4.82,-10.92 3.84,-20.92 10.5,-14.84 11.801,-12 7.816,-11.12 2.102,-7.22 0.672,-7.14 -2.332,-7.52 -6.551,-9.61 5.742,2.57 2.629,1.01 5.961,6.11 11.289,20.56 -22.941,11.5 -5.2,5.06 -1.988,9.56 2.27,24.07 -1.43,11.91 -4.582,9.15 -9.438,13.54 -0.043,0.05 19.84,-1.86 7.551,-4.92 16.57,-10.81 7.832,-2.92 5.539,-2.06 26.649,-3.64 5.601,-0.76 13.711,6.23 1.098,4.67 3.422,14.53 -0.492,1.59 -2.91,9.24 -0.059,0.09 -14.559,19.74 -1.222,2.79 -3.278,7.52 0.829,8.72 0.23,2.43 4.969,8.54 1.961,7.57 -7.879,9.93 37.711,18.87 24.59,7.28 13.347,3.97 18.5,1.99 2.301,0.24 0.031,-0.01 8.649,-2.28 4.949,-9.75 -1.399,-13.58 -0.468,-4.61 -6.711,-13.74 -1.063,-5.25 -1.066,-5.26 4.348,-3.51 8.289,-6.69 4.851,-0.92 4.27,-0.81 5.172,0.72 15.296,2.16 20.782,-6.91 0.949,-0.31 0.043,0 1.5,-0.01 9.519,-0.05 9.399,2.99 7.32,4.87 0.141,0.14 57.777,63.13 23.453,10.45 9.828,-1.75 0,-0.01 5.422,-2.41 6.778,-3.01 0.121,-0.09 3.031,-2.23 8.18,-6 6.8082,-9.84 0.5,-17.14 -3.4101,-10 -1.918,-5.63 -2.6211,-11.02 -1.262,-5.27"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7137" /><path
+               id="path3094" /><path
                d="m 8661.04,2065.54 0,0 12.29,-51.2 -3.43,-20.19 -10.78,-14.06 -11.17,-11.12 -4.4,-11.04 -2.36,-15.18 -16.41,-29.82 -5.93,-15.72 -1.41,-16.18 -0.46,-59.95 -1.18,-7.19 -1.5,-3.49 -0.78,-5.19 0.8,-12.23 2.98,-6.45 6.09,-2.88 15.08,-0.04 4.46,-2.03 8.47,-5.62 8.45,-7.68 4.28,-8.46 -1.17,-5.11 -2.25,-6.72 -0.79,-5.77 3.45,-1.96 2.24,-2.15 3.1,-5.3 3.03,-6.12 1.45,-4.96 3.13,-6.28 6.04,-3.06 7.06,-2.39 8.97,-6.61 4.76,-1.1 3.16,-3.56 1.19,-4.74 0.33,-12.81 0.86,-5.28 15.74,-38.67 5.62,-19.71 2.59,-24.06 7.11,-16.75 20.88,-18.58 10.87,-5.18 12.1,-0.58 8.36,-4.2 17.49,-25.16 10.78,-9.33 -6.62,-10.19 -2.66,-11.65 -2.05,-21.1 3.12,-1.53 9.7,-6.49 -2.08,-18.63 18.08,-7.55 25,-6.03 19.06,-13.78 -42.6,-44.14 8.82,-8.3 0.42,-6.91 -2.89,-7.33 -1.08,-9.74 -1.27,-2.02 -6.44,-5.47 -1.67,-3.36 1.28,-4.74 3.94,-1.85 4.06,-0.85 1.78,-2.04 -1,-20.09 -2.79,-15 -6.23,-12 -11.26,-10.99 -25.26,-8.47 -8.83,-5.88 1.49,-12.08 5.24,-4.5 16.44,-5.62 6.33,-3.81 9.36,-19.99 5.6,-6.51 -9.9,-13.66 3.01,-19 7.38,-21.96 5.19,-36.12 4.89,-10.8 7.23,-7.8 9.08,-4.44 -14.66,-8.79 -53.85,-13 -57.9,-21.03 -28.97,2.31 -13.9,27.98 -9.06,-9.42 -12.33,-24.93 -7.47,-9.02 -6.43,-2.25 -42.91,2.4 -8.55,4.12 -9.24,7.86 -6.89,10.9 -3.96,11.43 -5.02,9.58 -10.11,5.68 -62.33,17.42 -31.81,0.86 -26.26,-15.15 -3.44,-11.17 2.75,-14.5 -3.17,-9.96 -5.75,-6.76 -28.37,-18.72 -8.14,-8.9 -4.66,-3.55 -3.56,0.38 -4.05,3.12 -4.87,5.06 -4.97,-6.1 -9.61,-19.579 -5.79,-8.949 14.32,-6.531 43.69,-12.949 20.33,6.668 51.39,-15.36 24.34,6.68 17.11,-5.899 14.86,-16.32 8.59,-21.801 -2.06,-21.941 13.45,-5.91 11.47,-9.547 7.21,-13.332 0.85,-17.192 -6.6,-14.968 -21.01,-11.418 -7.64,-10.114 7.45,-44.429 -35.79,-34.117 -77.43,-44.911 -10.45,13.821 -10.73,6.027 -9.18,-3.488 -6.28,-14.789 5.96,-42.403 -1.33,-3.429 -3.56,-2.309 -2.99,-3.301 0.17,-6.621 2.51,-4.039 3.61,-1.512 3.48,-0.968 2.24,-2.008 27.58,-45.922 4.8,-17.949 -3.57,-15.352 -9.76,-10.84 -22.31,-14.968 0.01,-0.082 0,-0.028 4.36,-19.133 -9.33,-25.449 4.41,-18.078 4.91,-3.473 5.98,1.09 6.39,0.012 5.78,-6.691 1.17,-9.727 -4.37,-19.531 0.35,-6.172 10.82,-5.738 24.43,14.738 12.57,0 10.54,-12.598 -2.35,-13.34 -15.11,-24.539 -15.04,-11.472 -3.38,-16.68 7.05,-14.121 15.79,-3.637 9.37,-3.683 3.23,-5.508 -2.48,-6.379 -8.02,-6.301 -32.66,-17.062 -8.68,-9.45 22,-0.597 11.18,-2.571 11.87,-9 4.54,-11.699 -14.04,-4.851 -19.77,-2.121 -12.42,-3.559 0.01,-0.121 -3.01,-3.348 -3.6,-1.273 -4.03,0.711 -4.38,2.66 -14.05,8.621 -16.28,0.461 -30.59,-6.684 -28.88,3.051 -10.23,-2.367 -6.08,-12.961 -1.73,-17.152 -5.66,-5.649 -7.38,-2.359 -7.09,-7.321 -1.34,-6.949 1.2,-6.121 0.23,-6.781 -4.36,-8.559 -4.89,-4.558 -15.25,-8.242 -18.04,-15.961 -7.97,-9.938 -24.18,-40.2304 -8.9,-10.2695 -11.69,-6.8203 -44.72,-32.2813 -33.12,-11.4179 -4.26,-2.9922 -6.71,-8.4883 0.93,-2.3789 3.61,-2.16017 1.33,-7.8125 -2.21,-34.96873 0.56,-19.5899 2.36,-19.4023 11.18,-26.3984 17.2,-8.9302 10.14,-16.421 3.96,-25.477 -16,16.789 -8.9,5.109 -31.53,2.75 -54.11,21.602 -21.6,2.328 -21.08,-3.691 -49.98,-25.379 -20.12,-2.891 -59.26,3.699 -12.95,6.454 -0.95,-16.973 1.28,-14.25 -3.76,-10.117 -7.4,-6.582 -9.64,-3.641 -11.81,2.301 -16.26,-1.598 -16,-5.672 -10.95,-9.898 -6.19,-16.442 -1.4,-12.832 -4,-11.367 -13.31,-12.371 -22.6,-5.941 -18.22,9.39 -18.39,13.661 -23.23,6.628 -139.6,-18.589 -110.27,3.222 -42.95,-17.511 -25.39,-42.809 -16.31,20.008 -11.16,1.242 -26.15,-19.379 -15.66,-3.312 -10.86,0.519 -9.35,-4.828 -11.44,-19.551 -7.32,-19.359 -8.98,-35.871 -11.86,-33.688 -4,-4.07 -16.4,-8.992 -19.43,-4.711 -7.17,4.351 -12.34,-6.691 -4.22,-5.617 -3.26,-7.821 -8.18,-11.472 -4.49,-14.117 -10.36,1.097 -3.43,-1.168 -14.24,-17.179 -7.57,-5.731 -7.61,-2.851 -16.56,-2.68 -7.25,-3.57 -10.2,-17.141 -4.91,-21.949 -5.86,-18.758 -12.94,-6.82 -10.92,9.929 -9.99,18.43 -11.49,13.699 -26.08,-8.16 -13,1.121 -24.5,9.328 -4.64,4.871 -2.9,6.09 -4.01,4.969 -8.3,1.281 -25.49,-7.449 -163.35,-6.223 -9.85,2.012 -45.58,34.43 -11.63,4.929 -12.77,2.93 -13.5,-0.519 -25.56,-6.29 -12.71,0.75 -72.26,28.782 -23.38,2.418 -49.29,-11.231 -10.45,-0.758 -51.4,9.27 -11.67,0.281 -11.83,-3.07 -11.64,0.519 -94.56,24.707 -32.63,-0.668 -6.1,3.77 -11.55,11.73 -5.43,1.739 -46.53,-6.059 -33.83,4.012 -77.19,-20.961 -30.97,-0.121 -16.51,5.629 -50.29,27.351 -63.53,11.25 -179.91,3.91 -44.88,26.29 -26.2,7.441 -5.97,-1.09 -12.04,-5.379 -7.18,-0.57 -7.19,2.769 -14.41,9.891 -7.51,2.977 -37.97,2.101 -44.25,-7.89 -11.28,0.582 -12.93,5.519 -24.35,15.02 -41.82,5.461 -31.61,11.339 -27.47,22.231 -15.98,35.027 -7.74,24.031 -13.06,7.649 -15.95,1.512 -16.19,5.48 -7.55,4.859 -4.52,4.18 -2.13,7.449 -0.44,14.36 1.52,12.941 2.51,7.82 1.79,8.122 -0.8,13.66 -8.03,24 -12.39,7.789 -32.1,-0.199 -10.55,3.418 -4.86,5.21 -4.46,6.8091 -9.02,8.4921 -8.67,3.9376 -18.08,2.4921 -8.15,2.9493 10.73,11.5312 -0.33,10.168 -5.69,10.289 -5.45,12.1836 -5.66,25.44925 -3.81,12.55859 -5.47,10.83206 7.24,19.7773 44.99,27.5196 15.27,22.5703 -0.73,29.3009 -18.13,5.41 -48.49,-11.578 -75.34,-43.1017 -54.07,-4.6406 -33.1,-12.8594 -31.63,-18.6406 -25.49,-21.80079 -34.3,-6.73829 -8.22,-5.69921 -14.5,-12.72261 -8.73,-2.3477 -14.42,4.8984 -25.23,17.41019 -14.51,1 -5.71,-1 -5.75,0.33203 -0.95,0.25 -0.4,-0.01172 -39.39,6.6719 -18.02,-2.29299 -21.87,-7.179691 -0.08,-0.007813 -0.15,-0.121094 -0.08,0 -7.02,-4.078122 -7.11,-1.55078 -6.96,1.03906 -6.49,3.6992175 -4.18,5.2695325 -4.53,4.01953 -5.04,2.75005 -13.46,2.7617 -7.56,-1.9922 -6.6,-5.34768 -5.54,-8.83203 -0.08,-0.10937 -25.08,-25.80862 -23.31,0.461 -24.01,10.8281 -27.29,5.1094 -53.02,-10.4493 -52.19,-18.6015 -13.38,-8.5274 -47.92,-50.3203 -5.93,-13.8316 -7,-39.289 -13.44,-34.629 -0.52,-4.262 1.17,-11.52 -1.19,-5.609 -3.22,-3.668 -8.34,-4.043 -3.07,-3.07 -16.37,-29.731 L 4331,-260 l -10.85,-1.801 -13.05,4.012 -26.66,1.949 -13.05,-2.148 -25.28,-9.231 -7.56,-0.761 -7.89,3.062 -13.29,10.859 -6.94,3.399 -7.82,-0.059 -14.42,-4.472 -7.5,0.113 -22.21,11.969 -8.91,2.75 -15.97,-5.43 -8.22,0.098 -4.78,9.64 3.43,5.563 16.65,14.117 3.53,7.781 -7.66,11.059 -59.07,33.652 -11.8,2.859 -13.44,-1.781 -77.1,-22.89 -31.66,2.902 -25.12,19.598 -2.25,23.691 8.75,37.93 -4.44,18.6716 -6.92,7.9687 -26.25,20.0899 -16.33,25.2695 -8.01,8.3008 -0.01,0.1718 -0.07,0 -4.06,2.5391 -4.26,0.7578 -4.15,-0.9101 -21.86,-13.0391 -18.81,-22.3203 -12.87,-25.7188 -0.05,-20.7619 -18.95,-1.199 -14.85,3.6406 -12.32,-2.4996 -11.26,-19.672 -3.4,-14.129 -0.49,-9.371 -1.91,-8.528 -7.63,-11.461 -32.99,-17.41 -19.62,-5.89 -15.76,0.379 -33.08,10.113 -17.31,9.699 -29.82,27.609 -81.79,25.282 -19.05,14.2575 -9.83,13.6211 -1.37,10.4102 2.3,12 1.6,26.0898 3.03,10.6602 -0.08,6.539 -2.94,3.4219 -4.71,-0.4297 -3.25,2.7188 1.12,12.67967 -143.98,43.85153 -12.73,1.8164 -39.76,-5.2578 -14.24,3.6602 20.75,26.7109 5.03,28.9297 -7.9,28.2776 -18.22,25.023 -22.65,13.156 -0.15,9.641 7.4,16.77 0.72,7.933 -6.6,15.367 -7.27,9.633 -3.43,9.738 4.97,15.508 -12.83,11.711 -6.95,10.121 24.03,41.352 25.55,31.25 2.83,7.66 3.75,19.617 3.44,9.992 28.96,37.188 7.19,16.941 0.23,47.102 -21.73,18.828 -28.13,12.59 -22.51,33.379 -5.79,26.152 0,0.059 1.79,-1.078 47.32,-12.602 48.24,1.23 20.45,9.95 10.73,17.101 9.14,20.301 16.22,19.227 10.83,5.902 11.25,1.379 10.69,-3.738 8.88,-9.5 2.62,-13.133 -1.33,-13.539 3,-11.711 15.4,-7.77 6.07,0.531 9.19,6.071 3.8,1.078 22.73,-8.129 22.42,-1.52 11.33,2.372 9.01,7.41 2.33,-18.352 7.98,-10.301 9.54,-9.3 7.03,-14.879 0.05,-3.36 0.27,-3.379 1.25,-6.48 8.32,-4.832 6.58,2.953 6.62,5.949 8.52,4.02 37.8,-53.781 6.81,-12.942 -3.35,-11.738 -16.97,-13.578 8.4,-9.543 2.18,-11.508 0.87,-11.941 4.2,-10.571 7.44,-7.019 5.07,0.3 5.71,4.36 9.85,4.879 3.75,-0.43 7.87,-4.629 3.9,0.031 3.17,2.508 8.83,10.039 33.06,6.532 14.01,-7.278 -0.24,-20.023 -13.03,-41.328 1.83,-7.27 0.49,-6.66 -1.76,-7.43 -3.62,-3.679 -9.95,-3.133 -3.02,-2.149 -6.77,-12.648 -2.94,-6.992 3.39,-1.899 60,8.27 16.39,6.668 33.49,21.32 14.54,13.742 13.27,18.5 16.2,34.028 4.4,7.05 7.71,5.403 15.82,5.82 6.4,4.488 12.25,16.91 10.58,22.68 6.4,25.11 -0.61,23.832 -3.37,13.699 -4.23,9.719 -6.59,7.05 -10.7,5.578 6.82,44.454 0.74,10.296 -5.21,12.34 -6.75,12.141 -1.26,9.57 11.18,4.66 12.55,2.5 5.71,2.379 2.68,-2.019 3.54,-10.309 -0.85,-4.379 -3.55,-5.41 -2.67,-7.109 1.5,-9.512 4.06,-5.039 6.23,-4.25 11.85,-5.172 32.14,-4.258 8.84,1.719 9.41,7.891 14.82,21.578 10.27,7.48 18.2,0.141 100.12,-35.418 3.11,-3.434 2.62,-5.687 3.85,-5.199 6.5,-1.801 22.2,3.199 30.02,14.609 10.58,3.301 10.44,-0.469 8.12,-4.351 17.59,-12.59 -6.12,-7.789 -23.88,-17.152 5.35,-8.688 39.21,-17.039 38.64,-39.613 2.39,-4.989 0.42,-7.46 -1.52,-7.739 -2.29,-5.172 -1.79,-0.16 8.1,-14.847 10.68,-5.883 78.73,0.902 14.62,4.91 48.34,35.457 18.87,5.731 16.33,-6.137 -0.78,-30.262 18.15,-1.55 16.24,8 10.42,11.859 9.59,13.73 14.17,13.981 13.89,4.902 32.71,1.758 12.07,5.629 6.13,11.223 -3.14,8.187 -8.34,5.109 -9.35,2.25 34.25,41.954 16.99,4.546 18.6,-1.937 17.22,-4.859 35.14,7 16.13,7.027 13.19,15.672 3.47,10.398 5.06,25.922 4.74,11.949 20.37,18.91 2.45,3.301 13.93,0.008 33.01,-5.418 61.25,1.891 42.66,-7.172 7.68,2.859 6.85,19.172 8.28,5.367 62.59,15.211 172.96,-0.719 5.93,1.481 20.3,28.391 2.42,7.199 0.35,10.429 -2.47,29.629 -2.35,6.032 -3.91,2.398 -6.37,5.832 -5.81,7.07 -2.66,6.047 -1.84,9.012 11.66,5.309 17.43,15.793 6.34,4.347 10.73,5.25 1.84,0.461 -2.11,-5.18 -1.44,-11.941 -2.27,-8.898 -4.53,-6.86 -2.15,-7.859 4.62,-12.09 7.72,-6.32 8.09,1.578 16.39,9.461 16.26,3.051 43.75,-7.383 12.63,2.613 28.97,12.609 12.43,-1.871 3.78,-6.25 8.88,-23.34 4.52,-8.921 6.37,-6.989 23.16,-16.968 10.79,-4.723 15.47,0.293 15.7,3.816 11.48,5.742 32.07,31.399 13.94,7.851 26.46,7.68 26.76,1.27 42.64,-8.828 12.8,2.289 -6.82,-19.782 12.5,-13.898 20.11,-11.91 15.62,-13.68 -20,-11.172 -7.92,-26.199 5.3,-27.23 19.32,-14.071 11.69,-1.437 7.2,-2.184 6.63,-4.797 36.27,-36.152 38.3,-26 8.42,-2.938 6.27,2.539 6.06,3.7 7.85,0.64 7.44,-3.511 4.43,-4.2 4.82,-2.64 8.08,0.793 4.99,4.808 20.16,26.61 -0.71,9.23 -2.3,6.649 -2.71,5.55 -2.03,6 -0.98,6.86 -1,19.351 1.71,3 6.22,18.371 0.77,1.649 -1.6,-0.711 -1.93,25.172 2.06,-0.641 11.28,16.539 0.31,3.09 7.77,22.492 1.74,2.508 0.92,13.52 -0.24,13.523 -2.85,14.129 -6.82,15.82 -15.97,24.328 -9.81,10.68 -9.66,6.52 -11.72,1.269 -18.56,-9.34 -11.14,-2.5 -42.18,5.66 -12.87,11.813 12.86,22.238 0.15,0.121 -0.01,0.059 4.41,8.109 0.94,7.41 -0.13,7.133 1.12,7.141 3.66,8.937 44.29,79.93 -3.65,3.332 -17.4,23.279 -28.34,57.5 -13.21,11.71 -6.19,2.94 -15.83,14.77 -18.43,9.84 -6.46,8.51 -4.59,11.43 -2.92,13.44 -12.41,24.25 -55.16,52.31 -7.46,10.63 -7.27,13.05 -4.48,14.46 0.73,15.06 4.15,8.21 4.69,1.87 4.85,0 4.44,2.29 9.79,17.15 2.82,3.82 28.56,22.19 9.13,11.63 12.52,22.1 6.38,7.74 10.91,6.57 40.74,10.1 -1.13,2.6 11.03,9.89 23.26,14.59 26.23,27.97 11.51,9.15 75.27,34.65 101.16,23.44 24.12,15.31 68.81,67.4 9.33,17.91 2.84,23.82 1.12,5.82 3.03,5.94 2.85,7.83 0.85,11.66 -3.19,31.3 0.77,10.41 2.92,10.4 8.69,21.62 1.43,10.94 -2.17,9.67 -7.49,10.31 -4.14,19.87 -2.5,4.86 -0.69,4 3.59,7.96 6.27,6.53 23.55,10.45 24.49,4.79 77.71,-16.78 13.31,-6.16 12.51,-8.17 12.34,-16.65 31.09,-11.78 1.7,-1.59 4.73,30.06 5.46,13.05 2.55,-0.42 15.17,3.42 5.71,2.9 5.72,6.43 3.18,5.48 10.92,28.18 3.65,14.87 1.28,16.17 -0.65,18.69 -6.14,35.64 1.06,13.38 9.22,9.98 -9.48,3.84 -3.86,3.16 -8.8,14.95 -3.71,-1.62 1,10.67 19.03,47.67 30.03,-6.05 14.46,-6.74 14.04,-9.59 16.97,-12.34 51.23,-24 6.92,-6.58 13.47,-17.97 5.32,-8.82 3.96,-3.25 5.23,-1.73 4.62,-2.81 2.35,-6.65 -0.91,-7.04 -3.28,-1.25 -3.62,0.45 -2.1,-1.75 -4.27,-10.72 -4.08,-1.83 -1.16,-3.3 4.42,-14.93 3.6,-5.88 13.76,-15.01 6.54,-5.1 25.75,-8.84 105.24,-4.66 74.94,-20.78 7.03,1.3 5.63,2.7 14.03,12.95 37.15,19.21 10.81,12.8 13.39,45.01 10.2,8.18 19.15,-19.52 30.5,-13.26 8.83,-1.49 10.86,3.27 21.3,12.23 11.28,1.76 5.02,-3.82 1.44,-7.02 0.62,-7.4 2.7,-4.51 5.76,-0.21 10.98,4.77 4.88,-0.71 8.69,-9.89 5.12,-10.13 6.33,-6.83 12.17,0.1 13.68,15.88 1.57,29.16 -2.93,33.93 0.42,30.19 12.21,23.61 36.11,36.91 2.1,21.52 6.38,13.59 1.93,13.72 3.52,10.89 10.75,5.1 38.72,-2.34 39.16,-12.61 14.77,2.54 6.9,20.12 -1.76,1.89 -3.82,6.92 -3.87,8.53 -1.99,6.89 0.6,7.84 4.21,14.43 10.07,70.79 -2.35,30.71 -5.7,33.75 -2.19,31.65 8.13,24.21 -1.16,5.97 -0.41,5.17 0.84,3.82 2.2,2.02 15.84,3.34 41.75,-10.71 57.26,-0.07 6.64,-15.23 4.32,-14.84 0.93,-15.12 -3.56,-16.24 14.55,0.89 54.57,19.61 3.58,2.73 9.13,13 1.93,6.06 0.58,15.07 2.57,4.78 5.59,0.52 4.08,-4.29 3.48,-5.26 3.84,-2.22 34.26,2.46 16.72,-3.28 36.65,-14.95 33.44,-8.2 16.5,-7.66 38.85,-28.24 62.43,-18.24 59.68,-27.09 16.78,-2.45 16.89,1.5 12,5 24.82,16.1 6.22,2.12 22.4,2.07 4.53,-2.83 4.19,-13.4 4.15,-5.35 5.19,-1.67 14.11,0.23 8.56,-5.12 5.67,-1.97 6.1,0.95 -6.59,-10.61 9.04,3.03 8.29,0.4 5.91,-4.49 1.83,-11.64 12.13,4.35 4.3,-4.41 0.71,-7.69 1.56,-5.41 78.75,-46.92 40.51,-13.25 67.47,10.46 104.16,-5.39 0.76,0.83 15.04,3.77 10.48,-6.98 4.23,-0.92 11.21,4.51 7.31,8.3 31.01,67.45 11.9,9.74 21.46,-1.01 7.55,1.09 12.71,6.94 6.65,1.59 6.98,-1.63 13.3,-6.78 45.1,-8.36 13.74,-0.24 14.6,-4.26 7.11,-12.79 4.35,-15.67 6.64,-12.61 10.32,-5.79 11.9,-0.88 27.82,3.99 11.63,-2.7 28.37,-14.89 14.04,-3.66 13.95,3.18 27.2,12.96 12.17,0.34 19.93,-22.63 17.85,-72.44 28.5,-26.89"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 8661.04,2065.54 0,0 12.29,-51.2 -3.43,-20.19 -10.78,-14.06 -11.17,-11.12 -4.4,-11.04 -2.36,-15.18 -16.41,-29.82 -5.93,-15.72 -1.41,-16.18 -0.46,-59.95 -1.18,-7.19 -1.5,-3.49 -0.78,-5.19 0.8,-12.23 2.98,-6.45 6.09,-2.88 15.08,-0.04 4.46,-2.03 8.47,-5.62 8.45,-7.68 4.28,-8.46 -1.17,-5.11 -2.25,-6.72 -0.79,-5.77 3.45,-1.96 2.24,-2.15 3.1,-5.3 3.03,-6.12 1.45,-4.96 3.13,-6.28 6.04,-3.06 7.06,-2.39 8.97,-6.61 4.76,-1.1 3.16,-3.56 1.19,-4.74 0.33,-12.81 0.86,-5.28 15.74,-38.67 5.62,-19.71 2.59,-24.06 7.11,-16.75 20.88,-18.58 10.87,-5.18 12.1,-0.58 8.36,-4.2 17.49,-25.16 10.78,-9.33 -6.62,-10.19 -2.66,-11.65 -2.05,-21.1 3.12,-1.53 9.7,-6.49 -2.08,-18.63 18.08,-7.55 25,-6.03 19.06,-13.78 -42.6,-44.14 8.82,-8.3 0.42,-6.91 -2.89,-7.33 -1.08,-9.74 -1.27,-2.02 -6.44,-5.47 -1.67,-3.36 1.28,-4.74 3.94,-1.85 4.06,-0.85 1.78,-2.04 -1,-20.09 -2.79,-15 -6.23,-12 -11.26,-10.99 -25.26,-8.47 -8.83,-5.88 1.49,-12.08 5.24,-4.5 16.44,-5.62 6.33,-3.81 9.36,-19.99 5.6,-6.51 -9.9,-13.66 3.01,-19 7.38,-21.96 5.19,-36.12 4.89,-10.8 7.23,-7.8 9.08,-4.44 -14.66,-8.79 -53.85,-13 -57.9,-21.03 -28.97,2.31 -13.9,27.98 -9.06,-9.42 -12.33,-24.93 -7.47,-9.02 -6.43,-2.25 -42.91,2.4 -8.55,4.12 -9.24,7.86 -6.89,10.9 -3.96,11.43 -5.02,9.58 -10.11,5.68 -62.33,17.42 -31.81,0.86 -26.26,-15.15 -3.44,-11.17 2.75,-14.5 -3.17,-9.96 -5.75,-6.76 -28.37,-18.72 -8.14,-8.9 -4.66,-3.55 -3.56,0.38 -4.05,3.12 -4.87,5.06 -4.97,-6.1 -9.61,-19.579 -5.79,-8.949 14.32,-6.531 43.69,-12.949 20.33,6.668 51.39,-15.36 24.34,6.68 17.11,-5.899 14.86,-16.32 8.59,-21.801 -2.06,-21.941 13.45,-5.91 11.47,-9.547 7.21,-13.332 0.85,-17.192 -6.6,-14.968 -21.01,-11.418 -7.64,-10.114 7.45,-44.429 -35.79,-34.117 -77.43,-44.911 -10.45,13.821 -10.73,6.027 -9.18,-3.488 -6.28,-14.789 5.96,-42.403 -1.33,-3.429 -3.56,-2.309 -2.99,-3.301 0.17,-6.621 2.51,-4.039 3.61,-1.512 3.48,-0.968 2.24,-2.008 27.58,-45.922 4.8,-17.949 -3.57,-15.352 -9.76,-10.84 -22.31,-14.968 0.01,-0.082 0,-0.028 4.36,-19.133 -9.33,-25.449 4.41,-18.078 4.91,-3.473 5.98,1.09 6.39,0.012 5.78,-6.691 1.17,-9.727 -4.37,-19.531 0.35,-6.172 10.82,-5.738 24.43,14.738 12.57,0 10.54,-12.598 -2.35,-13.34 -15.11,-24.539 -15.04,-11.472 -3.38,-16.68 7.05,-14.121 15.79,-3.637 9.37,-3.683 3.23,-5.508 -2.48,-6.379 -8.02,-6.301 -32.66,-17.062 -8.68,-9.45 22,-0.597 11.18,-2.571 11.87,-9 4.54,-11.699 -14.04,-4.851 -19.77,-2.121 -12.42,-3.559 0.01,-0.121 -3.01,-3.348 -3.6,-1.273 -4.03,0.711 -4.38,2.66 -14.05,8.621 -16.28,0.461 -30.59,-6.684 -28.88,3.051 -10.23,-2.367 -6.08,-12.961 -1.73,-17.152 -5.66,-5.649 -7.38,-2.359 -7.09,-7.321 -1.34,-6.949 1.2,-6.121 0.23,-6.781 -4.36,-8.559 -4.89,-4.558 -15.25,-8.242 -18.04,-15.961 -7.97,-9.938 -24.18,-40.2304 -8.9,-10.2695 -11.69,-6.8203 -44.72,-32.2813 -33.12,-11.4179 -4.26,-2.9922 -6.71,-8.4883 0.93,-2.3789 3.61,-2.16017 1.33,-7.8125 -2.21,-34.96873 0.56,-19.5899 2.36,-19.4023 11.18,-26.3984 17.2,-8.9302 10.14,-16.421 3.96,-25.477 -16,16.789 -8.9,5.109 -31.53,2.75 -54.11,21.602 -21.6,2.328 -21.08,-3.691 -49.98,-25.379 -20.12,-2.891 -59.26,3.699 -12.95,6.454 -0.95,-16.973 1.28,-14.25 -3.76,-10.117 -7.4,-6.582 -9.64,-3.641 -11.81,2.301 -16.26,-1.598 -16,-5.672 -10.95,-9.898 -6.19,-16.442 -1.4,-12.832 -4,-11.367 -13.31,-12.371 -22.6,-5.941 -18.22,9.39 -18.39,13.661 -23.23,6.628 -139.6,-18.589 -110.27,3.222 -42.95,-17.511 -25.39,-42.809 -16.31,20.008 -11.16,1.242 -26.15,-19.379 -15.66,-3.312 -10.86,0.519 -9.35,-4.828 -11.44,-19.551 -7.32,-19.359 -8.98,-35.871 -11.86,-33.688 -4,-4.07 -16.4,-8.992 -19.43,-4.711 -7.17,4.351 -12.34,-6.691 -4.22,-5.617 -3.26,-7.821 -8.18,-11.472 -4.49,-14.117 -10.36,1.097 -3.43,-1.168 -14.24,-17.179 -7.57,-5.731 -7.61,-2.851 -16.56,-2.68 -7.25,-3.57 -10.2,-17.141 -4.91,-21.949 -5.86,-18.758 -12.94,-6.82 -10.92,9.929 -9.99,18.43 -11.49,13.699 -26.08,-8.16 -13,1.121 -24.5,9.328 -4.64,4.871 -2.9,6.09 -4.01,4.969 -8.3,1.281 -25.49,-7.449 -163.35,-6.223 -9.85,2.012 -45.58,34.43 -11.63,4.929 -12.77,2.93 -13.5,-0.519 -25.56,-6.29 -12.71,0.75 -72.26,28.782 -23.38,2.418 -49.29,-11.231 -10.45,-0.758 -51.4,9.27 -11.67,0.281 -11.83,-3.07 -11.64,0.519 -94.56,24.707 -32.63,-0.668 -6.1,3.77 -11.55,11.73 -5.43,1.739 -46.53,-6.059 -33.83,4.012 -77.19,-20.961 -30.97,-0.121 -16.51,5.629 -50.29,27.351 -63.53,11.25 -179.91,3.91 -44.88,26.29 -26.2,7.441 -5.97,-1.09 -12.04,-5.379 -7.18,-0.57 -7.19,2.769 -14.41,9.891 -7.51,2.977 -37.97,2.101 -44.25,-7.89 -11.28,0.582 -12.93,5.519 -24.35,15.02 -41.82,5.461 -31.61,11.339 -27.47,22.231 -15.98,35.027 -7.74,24.031 -13.06,7.649 -15.95,1.512 -16.19,5.48 -7.55,4.859 -4.52,4.18 -2.13,7.449 -0.44,14.36 1.52,12.941 2.51,7.82 1.79,8.122 -0.8,13.66 -8.03,24 -12.39,7.789 -32.1,-0.199 -10.55,3.418 -4.86,5.21 -4.46,6.8091 -9.02,8.4921 -8.67,3.9376 -18.08,2.4921 -8.15,2.9493 10.73,11.5312 -0.33,10.168 -5.69,10.289 -5.45,12.1836 -5.66,25.44925 -3.81,12.55859 -5.47,10.83206 7.24,19.7773 44.99,27.5196 15.27,22.5703 -0.73,29.3009 -18.13,5.41 -48.49,-11.578 -75.34,-43.1017 -54.07,-4.6406 -33.1,-12.8594 -31.63,-18.6406 -25.49,-21.80079 -34.3,-6.73829 -8.22,-5.69921 -14.5,-12.72261 -8.73,-2.3477 -14.42,4.8984 -25.23,17.41019 -14.51,1 -5.71,-1 -5.75,0.33203 -0.95,0.25 -0.4,-0.01172 -39.39,6.6719 -18.02,-2.29299 -21.87,-7.179691 -0.08,-0.007813 -0.15,-0.121094 -0.08,0 -7.02,-4.078122 -7.11,-1.55078 -6.96,1.03906 -6.49,3.6992175 -4.18,5.2695325 -4.53,4.01953 -5.04,2.75005 -13.46,2.7617 -7.56,-1.9922 -6.6,-5.34768 -5.54,-8.83203 -0.08,-0.10937 -25.08,-25.80862 -23.31,0.461 -24.01,10.8281 -27.29,5.1094 -53.02,-10.4493 -52.19,-18.6015 -13.38,-8.5274 -47.92,-50.3203 -5.93,-13.8316 -7,-39.289 -13.44,-34.629 -0.52,-4.262 1.17,-11.52 -1.19,-5.609 -3.22,-3.668 -8.34,-4.043 -3.07,-3.07 -16.37,-29.731 L 4331,-260 l -10.85,-1.801 -13.05,4.012 -26.66,1.949 -13.05,-2.148 -25.28,-9.231 -7.56,-0.761 -7.89,3.062 -13.29,10.859 -6.94,3.399 -7.82,-0.059 -14.42,-4.472 -7.5,0.113 -22.21,11.969 -8.91,2.75 -15.97,-5.43 -8.22,0.098 -4.78,9.64 3.43,5.563 16.65,14.117 3.53,7.781 -7.66,11.059 -59.07,33.652 -11.8,2.859 -13.44,-1.781 -77.1,-22.89 -31.66,2.902 -25.12,19.598 -2.25,23.691 8.75,37.93 -4.44,18.6716 -6.92,7.9687 -26.25,20.0899 -16.33,25.2695 -8.01,8.3008 -0.01,0.1718 -0.07,0 -4.06,2.5391 -4.26,0.7578 -4.15,-0.9101 -21.86,-13.0391 -18.81,-22.3203 -12.87,-25.7188 -0.05,-20.7619 -18.95,-1.199 -14.85,3.6406 -12.32,-2.4996 -11.26,-19.672 -3.4,-14.129 -0.49,-9.371 -1.91,-8.528 -7.63,-11.461 -32.99,-17.41 -19.62,-5.89 -15.76,0.379 -33.08,10.113 -17.31,9.699 -29.82,27.609 -81.79,25.282 -19.05,14.2575 -9.83,13.6211 -1.37,10.4102 2.3,12 1.6,26.0898 3.03,10.6602 -0.08,6.539 -2.94,3.4219 -4.71,-0.4297 -3.25,2.7188 1.12,12.67967 -143.98,43.85153 -12.73,1.8164 -39.76,-5.2578 -14.24,3.6602 20.75,26.7109 5.03,28.9297 -7.9,28.2776 -18.22,25.023 -22.65,13.156 -0.15,9.641 7.4,16.77 0.72,7.933 -6.6,15.367 -7.27,9.633 -3.43,9.738 4.97,15.508 -12.83,11.711 -6.95,10.121 24.03,41.352 25.55,31.25 2.83,7.66 3.75,19.617 3.44,9.992 28.96,37.188 7.19,16.941 0.23,47.102 -21.73,18.828 -28.13,12.59 -22.51,33.379 -5.79,26.152 0,0.059 1.79,-1.078 47.32,-12.602 48.24,1.23 20.45,9.95 10.73,17.101 9.14,20.301 16.22,19.227 10.83,5.902 11.25,1.379 10.69,-3.738 8.88,-9.5 2.62,-13.133 -1.33,-13.539 3,-11.711 15.4,-7.77 6.07,0.531 9.19,6.071 3.8,1.078 22.73,-8.129 22.42,-1.52 11.33,2.372 9.01,7.41 2.33,-18.352 7.98,-10.301 9.54,-9.3 7.03,-14.879 0.05,-3.36 0.27,-3.379 1.25,-6.48 8.32,-4.832 6.58,2.953 6.62,5.949 8.52,4.02 37.8,-53.781 6.81,-12.942 -3.35,-11.738 -16.97,-13.578 8.4,-9.543 2.18,-11.508 0.87,-11.941 4.2,-10.571 7.44,-7.019 5.07,0.3 5.71,4.36 9.85,4.879 3.75,-0.43 7.87,-4.629 3.9,0.031 3.17,2.508 8.83,10.039 33.06,6.532 14.01,-7.278 -0.24,-20.023 -13.03,-41.328 1.83,-7.27 0.49,-6.66 -1.76,-7.43 -3.62,-3.679 -9.95,-3.133 -3.02,-2.149 -6.77,-12.648 -2.94,-6.992 3.39,-1.899 60,8.27 16.39,6.668 33.49,21.32 14.54,13.742 13.27,18.5 16.2,34.028 4.4,7.05 7.71,5.403 15.82,5.82 6.4,4.488 12.25,16.91 10.58,22.68 6.4,25.11 -0.61,23.832 -3.37,13.699 -4.23,9.719 -6.59,7.05 -10.7,5.578 6.82,44.454 0.74,10.296 -5.21,12.34 -6.75,12.141 -1.26,9.57 11.18,4.66 12.55,2.5 5.71,2.379 2.68,-2.019 3.54,-10.309 -0.85,-4.379 -3.55,-5.41 -2.67,-7.109 1.5,-9.512 4.06,-5.039 6.23,-4.25 11.85,-5.172 32.14,-4.258 8.84,1.719 9.41,7.891 14.82,21.578 10.27,7.48 18.2,0.141 100.12,-35.418 3.11,-3.434 2.62,-5.687 3.85,-5.199 6.5,-1.801 22.2,3.199 30.02,14.609 10.58,3.301 10.44,-0.469 8.12,-4.351 17.59,-12.59 -6.12,-7.789 -23.88,-17.152 5.35,-8.688 39.21,-17.039 38.64,-39.613 2.39,-4.989 0.42,-7.46 -1.52,-7.739 -2.29,-5.172 -1.79,-0.16 8.1,-14.847 10.68,-5.883 78.73,0.902 14.62,4.91 48.34,35.457 18.87,5.731 16.33,-6.137 -0.78,-30.262 18.15,-1.55 16.24,8 10.42,11.859 9.59,13.73 14.17,13.981 13.89,4.902 32.71,1.758 12.07,5.629 6.13,11.223 -3.14,8.187 -8.34,5.109 -9.35,2.25 34.25,41.954 16.99,4.546 18.6,-1.937 17.22,-4.859 35.14,7 16.13,7.027 13.19,15.672 3.47,10.398 5.06,25.922 4.74,11.949 20.37,18.91 2.45,3.301 13.93,0.008 33.01,-5.418 61.25,1.891 42.66,-7.172 7.68,2.859 6.85,19.172 8.28,5.367 62.59,15.211 172.96,-0.719 5.93,1.481 20.3,28.391 2.42,7.199 0.35,10.429 -2.47,29.629 -2.35,6.032 -3.91,2.398 -6.37,5.832 -5.81,7.07 -2.66,6.047 -1.84,9.012 11.66,5.309 17.43,15.793 6.34,4.347 10.73,5.25 1.84,0.461 -2.11,-5.18 -1.44,-11.941 -2.27,-8.898 -4.53,-6.86 -2.15,-7.859 4.62,-12.09 7.72,-6.32 8.09,1.578 16.39,9.461 16.26,3.051 43.75,-7.383 12.63,2.613 28.97,12.609 12.43,-1.871 3.78,-6.25 8.88,-23.34 4.52,-8.921 6.37,-6.989 23.16,-16.968 10.79,-4.723 15.47,0.293 15.7,3.816 11.48,5.742 32.07,31.399 13.94,7.851 26.46,7.68 26.76,1.27 42.64,-8.828 12.8,2.289 -6.82,-19.782 12.5,-13.898 20.11,-11.91 15.62,-13.68 -20,-11.172 -7.92,-26.199 5.3,-27.23 19.32,-14.071 11.69,-1.437 7.2,-2.184 6.63,-4.797 36.27,-36.152 38.3,-26 8.42,-2.938 6.27,2.539 6.06,3.7 7.85,0.64 7.44,-3.511 4.43,-4.2 4.82,-2.64 8.08,0.793 4.99,4.808 20.16,26.61 -0.71,9.23 -2.3,6.649 -2.71,5.55 -2.03,6 -0.98,6.86 -1,19.351 1.71,3 6.22,18.371 0.77,1.649 -1.6,-0.711 -1.93,25.172 2.06,-0.641 11.28,16.539 0.31,3.09 7.77,22.492 1.74,2.508 0.92,13.52 -0.24,13.523 -2.85,14.129 -6.82,15.82 -15.97,24.328 -9.81,10.68 -9.66,6.52 -11.72,1.269 -18.56,-9.34 -11.14,-2.5 -42.18,5.66 -12.87,11.813 12.86,22.238 0.15,0.121 -0.01,0.059 4.41,8.109 0.94,7.41 -0.13,7.133 1.12,7.141 3.66,8.937 44.29,79.93 -3.65,3.332 -17.4,23.279 -28.34,57.5 -13.21,11.71 -6.19,2.94 -15.83,14.77 -18.43,9.84 -6.46,8.51 -4.59,11.43 -2.92,13.44 -12.41,24.25 -55.16,52.31 -7.46,10.63 -7.27,13.05 -4.48,14.46 0.73,15.06 4.15,8.21 4.69,1.87 4.85,0 4.44,2.29 9.79,17.15 2.82,3.82 28.56,22.19 9.13,11.63 12.52,22.1 6.38,7.74 10.91,6.57 40.74,10.1 -1.13,2.6 11.03,9.89 23.26,14.59 26.23,27.97 11.51,9.15 75.27,34.65 101.16,23.44 24.12,15.31 68.81,67.4 9.33,17.91 2.84,23.82 1.12,5.82 3.03,5.94 2.85,7.83 0.85,11.66 -3.19,31.3 0.77,10.41 2.92,10.4 8.69,21.62 1.43,10.94 -2.17,9.67 -7.49,10.31 -4.14,19.87 -2.5,4.86 -0.69,4 3.59,7.96 6.27,6.53 23.55,10.45 24.49,4.79 77.71,-16.78 13.31,-6.16 12.51,-8.17 12.34,-16.65 31.09,-11.78 1.7,-1.59 4.73,30.06 5.46,13.05 2.55,-0.42 15.17,3.42 5.71,2.9 5.72,6.43 3.18,5.48 10.92,28.18 3.65,14.87 1.28,16.17 -0.65,18.69 -6.14,35.64 1.06,13.38 9.22,9.98 -9.48,3.84 -3.86,3.16 -8.8,14.95 -3.71,-1.62 1,10.67 19.03,47.67 30.03,-6.05 14.46,-6.74 14.04,-9.59 16.97,-12.34 51.23,-24 6.92,-6.58 13.47,-17.97 5.32,-8.82 3.96,-3.25 5.23,-1.73 4.62,-2.81 2.35,-6.65 -0.91,-7.04 -3.28,-1.25 -3.62,0.45 -2.1,-1.75 -4.27,-10.72 -4.08,-1.83 -1.16,-3.3 4.42,-14.93 3.6,-5.88 13.76,-15.01 6.54,-5.1 25.75,-8.84 105.24,-4.66 74.94,-20.78 7.03,1.3 5.63,2.7 14.03,12.95 37.15,19.21 10.81,12.8 13.39,45.01 10.2,8.18 19.15,-19.52 30.5,-13.26 8.83,-1.49 10.86,3.27 21.3,12.23 11.28,1.76 5.02,-3.82 1.44,-7.02 0.62,-7.4 2.7,-4.51 5.76,-0.21 10.98,4.77 4.88,-0.71 8.69,-9.89 5.12,-10.13 6.33,-6.83 12.17,0.1 13.68,15.88 1.57,29.16 -2.93,33.93 0.42,30.19 12.21,23.61 36.11,36.91 2.1,21.52 6.38,13.59 1.93,13.72 3.52,10.89 10.75,5.1 38.72,-2.34 39.16,-12.61 14.77,2.54 6.9,20.12 -1.76,1.89 -3.82,6.92 -3.87,8.53 -1.99,6.89 0.6,7.84 4.21,14.43 10.07,70.79 -2.35,30.71 -5.7,33.75 -2.19,31.65 8.13,24.21 -1.16,5.97 -0.41,5.17 0.84,3.82 2.2,2.02 15.84,3.34 41.75,-10.71 57.26,-0.07 6.64,-15.23 4.32,-14.84 0.93,-15.12 -3.56,-16.24 14.55,0.89 54.57,19.61 3.58,2.73 9.13,13 1.93,6.06 0.58,15.07 2.57,4.78 5.59,0.52 4.08,-4.29 3.48,-5.26 3.84,-2.22 34.26,2.46 16.72,-3.28 36.65,-14.95 33.44,-8.2 16.5,-7.66 38.85,-28.24 62.43,-18.24 59.68,-27.09 16.78,-2.45 16.89,1.5 12,5 24.82,16.1 6.22,2.12 22.4,2.07 4.53,-2.83 4.19,-13.4 4.15,-5.35 5.19,-1.67 14.11,0.23 8.56,-5.12 5.67,-1.97 6.1,0.95 -6.59,-10.61 9.04,3.03 8.29,0.4 5.91,-4.49 1.83,-11.64 12.13,4.35 4.3,-4.41 0.71,-7.69 1.56,-5.41 78.75,-46.92 40.51,-13.25 67.47,10.46 104.16,-5.39 0.76,0.83 15.04,3.77 10.48,-6.98 4.23,-0.92 11.21,4.51 7.31,8.3 31.01,67.45 11.9,9.74 21.46,-1.01 7.55,1.09 12.71,6.94 6.65,1.59 6.98,-1.63 13.3,-6.78 45.1,-8.36 13.74,-0.24 14.6,-4.26 7.11,-12.79 4.35,-15.67 6.64,-12.61 10.32,-5.79 11.9,-0.88 27.82,3.99 11.63,-2.7 28.37,-14.89 14.04,-3.66 13.95,3.18 27.2,12.96 12.17,0.34 19.93,-22.63 17.85,-72.44 28.5,-26.89"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7139" /><path
+               id="path3096" /><path
                d="m 682.691,3520.35 0,0 8,-1.47 16.34,1.94 1,0.57 5.36,3.04 4.769,4.76 0.051,0 1.461,0.14 4.047,0.39 8.14,-8.5 0.743,-0.77 2.668,-10.23 0.031,-0.11 -0.66,-5.69 -0.563,-4.79 0.742,-5.06 0.532,-3.72 0.019,-0.08 10.449,-5.18 -5.57,-15.89 -4.07,-15.14 -5.719,-31.08 1.219,-0.85 4.308,0.23 1.621,-0.29 -2.808,-3.51 -7.16,-12.73 7.597,-4.78 4.301,-9.31 3.551,-23.38 -2.481,-12.28 2.77,-9.14 11.641,-19.31 9.699,-31.67 5.34,-9.92 8.293,14.99 11.558,-20.4 21.469,-57.75 10.793,-11.79 23.949,-11.75 10.231,-7.16 3.187,-6.21 6.52,-19.45 0.613,-3.76 5.769,-0.72 11.008,6.16 6.313,-0.4 11.918,-8.13 19.968,-20.43 11.922,-8.18 12.442,-3.88 34.508,-1.18 21.93,-7.29 2.82,-0.27 3.73,-4.32 -0.21,0.24 -1.62,-1.5 -0.38,-9.36 -1.07,-0.72 -4.23,-24.07 -0.34,-7.86 1.77,-5.01 -0.44,-4.3 -7.199,-5.91 -0.859,-9.92 1.34,-9.13 3.16,-8.1 4.908,-7.06 -6.182,2.67 -3.41,-1.55 -2.636,-5.32 4.726,-5.85 1.344,-2.46 -54.172,-32.55 -11.719,-15.3 1.141,-3.72 4.508,-3.32 4.261,-4.46 0.418,-7.37 -2.121,-4.94 -5.718,-7.85 -7.829,-14.8 -19.632,-22.55 -11.5,-16.73 -4.539,-12.1 -1.239,-35.21 -7.781,-46.37 1.059,-33.74 -0.289,-8.15 -14.469,2 -18.871,11.26 -34.809,28.06 -19.543,8.66 -20.5,2.94 -41.769,-3.03 4.32,-10.4 -20.5,-1.12 -5.238,-1.86 -4.082,-6.64 -0.2,-7.12 -1.879,-5.91 -8.89,-3 -7.449,-10.41 -10.789,-3.55 -61.942,-1.29 -12.75,-3.68 -8.68,32.22 -13.058,14.28 -45.5,12.87 -17.832,9.32 -12.141,12.36 -21.449,31.23 17.539,7.49 17.34,17.05 3.621,8.1 3.941,8.85 0.047,0.1 -4.429,2.68 -7.539,4.56 0.152,0.13 8.308,7.22 6.219,10.9 4.301,10.5 6.031,14.73 6.028,6.54 0.132,0.12 7.309,6.25 4.43,9.48 -0.032,0.12 -1.476,7.03 -1.863,8.81 -5.039,4.64 -0.161,0.03 -14.238,2.24 -4.762,3.94 -1.031,3.87 -1.156,4.4 1.207,3.92 2.312,3.47 0.668,7.22 1.379,6.1 3.672,3.81 1.801,2.8 1.07,1.69 -0.32,4.55 -0.289,3.99 -3.801,6.62 -0.09,0.16 -2.5,0.29 -2.179,0.25 -2.153,-0.62 -2.527,-0.74 -4,0.92 -1.992,1.23 -2.219,1.36 -9.891,3.46 -0.039,0.02 -0.453,0.39 -3.816,3.37 -0.192,0.17 0.27,1.67 0.14,0.9 -0.902,15.57 -0.898,5.28 -11.571,25.53 -3.961,8.74 -0.636,1.04 -3.821,6.23 -6.031,4.07 -2.871,1.95 -7.07,1.52 -0.598,0.13 -0.012,0.01 -7.14,3.88 -7.028,12.96 -1.863,6.98 -1.918,7.17 -0.461,13.32 3.66,10.48 8.801,5.37 -0.172,0.17 -6.457,6.57 0.028,0.09 1.41,3.87 1.453,2.53 0.258,0.72 0.922,2.57 0.046,1.4 0.153,4.74 0.008,0.29 18.652,-2.75 0.129,-0.02 -6.25,10.4 -12.852,10.72 -2.508,2.09 -8.281,4.45 2.02,6.29 1.34,4.15 9.742,15.31 16.988,26.74 2.402,5.2 0.797,1.74 1.231,3.52 0.722,2.04 1.821,3.54 1.097,2.14 1.352,1.64 4.609,5.59 5.18,3.17 10.711,2.01 2.578,2.23 3.582,3.09 8.508,14.95 -0.059,0.15 -2.57,6.11 -4.77,6.42 0.008,0.03 1.461,15.28 4.699,5.72 14.782,5.82 4.25,4.15 1.16,1.13 0.012,0.01 0.148,0.62 2,8.1 0.441,10.45 -0.082,3.88 -0.187,9.02 2.758,4.05 1.82,2.66 10.82,8.64 2.602,3.45 2.019,2.68 0.981,3.5 1.117,4.01 0.93,7.8 1.23,10.18 2.86,6.9 0.019,0.06 4.461,3.74 7.82,6.56 27.129,11.94 11.09,10.65 6.344,15.73 0.488,2.05 3.09,13.06 6.469,10.03 7.09,0.46 8.179,0.53 11.352,8.35 0.648,-0.78 3.723,-4.41 1.937,-10.72 4.024,-8.33 6.519,-3.49 2.75,-1.48"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 682.691,3520.35 0,0 8,-1.47 16.34,1.94 1,0.57 5.36,3.04 4.769,4.76 0.051,0 1.461,0.14 4.047,0.39 8.14,-8.5 0.743,-0.77 2.668,-10.23 0.031,-0.11 -0.66,-5.69 -0.563,-4.79 0.742,-5.06 0.532,-3.72 0.019,-0.08 10.449,-5.18 -5.57,-15.89 -4.07,-15.14 -5.719,-31.08 1.219,-0.85 4.308,0.23 1.621,-0.29 -2.808,-3.51 -7.16,-12.73 7.597,-4.78 4.301,-9.31 3.551,-23.38 -2.481,-12.28 2.77,-9.14 11.641,-19.31 9.699,-31.67 5.34,-9.92 8.293,14.99 11.558,-20.4 21.469,-57.75 10.793,-11.79 23.949,-11.75 10.231,-7.16 3.187,-6.21 6.52,-19.45 0.613,-3.76 5.769,-0.72 11.008,6.16 6.313,-0.4 11.918,-8.13 19.968,-20.43 11.922,-8.18 12.442,-3.88 34.508,-1.18 21.93,-7.29 2.82,-0.27 3.73,-4.32 -0.21,0.24 -1.62,-1.5 -0.38,-9.36 -1.07,-0.72 -4.23,-24.07 -0.34,-7.86 1.77,-5.01 -0.44,-4.3 -7.199,-5.91 -0.859,-9.92 1.34,-9.13 3.16,-8.1 4.908,-7.06 -6.182,2.67 -3.41,-1.55 -2.636,-5.32 4.726,-5.85 1.344,-2.46 -54.172,-32.55 -11.719,-15.3 1.141,-3.72 4.508,-3.32 4.261,-4.46 0.418,-7.37 -2.121,-4.94 -5.718,-7.85 -7.829,-14.8 -19.632,-22.55 -11.5,-16.73 -4.539,-12.1 -1.239,-35.21 -7.781,-46.37 1.059,-33.74 -0.289,-8.15 -14.469,2 -18.871,11.26 -34.809,28.06 -19.543,8.66 -20.5,2.94 -41.769,-3.03 4.32,-10.4 -20.5,-1.12 -5.238,-1.86 -4.082,-6.64 -0.2,-7.12 -1.879,-5.91 -8.89,-3 -7.449,-10.41 -10.789,-3.55 -61.942,-1.29 -12.75,-3.68 -8.68,32.22 -13.058,14.28 -45.5,12.87 -17.832,9.32 -12.141,12.36 -21.449,31.23 17.539,7.49 17.34,17.05 3.621,8.1 3.941,8.85 0.047,0.1 -4.429,2.68 -7.539,4.56 0.152,0.13 8.308,7.22 6.219,10.9 4.301,10.5 6.031,14.73 6.028,6.54 0.132,0.12 7.309,6.25 4.43,9.48 -0.032,0.12 -1.476,7.03 -1.863,8.81 -5.039,4.64 -0.161,0.03 -14.238,2.24 -4.762,3.94 -1.031,3.87 -1.156,4.4 1.207,3.92 2.312,3.47 0.668,7.22 1.379,6.1 3.672,3.81 1.801,2.8 1.07,1.69 -0.32,4.55 -0.289,3.99 -3.801,6.62 -0.09,0.16 -2.5,0.29 -2.179,0.25 -2.153,-0.62 -2.527,-0.74 -4,0.92 -1.992,1.23 -2.219,1.36 -9.891,3.46 -0.039,0.02 -0.453,0.39 -3.816,3.37 -0.192,0.17 0.27,1.67 0.14,0.9 -0.902,15.57 -0.898,5.28 -11.571,25.53 -3.961,8.74 -0.636,1.04 -3.821,6.23 -6.031,4.07 -2.871,1.95 -7.07,1.52 -0.598,0.13 -0.012,0.01 -7.14,3.88 -7.028,12.96 -1.863,6.98 -1.918,7.17 -0.461,13.32 3.66,10.48 8.801,5.37 -0.172,0.17 -6.457,6.57 0.028,0.09 1.41,3.87 1.453,2.53 0.258,0.72 0.922,2.57 0.046,1.4 0.153,4.74 0.008,0.29 18.652,-2.75 0.129,-0.02 -6.25,10.4 -12.852,10.72 -2.508,2.09 -8.281,4.45 2.02,6.29 1.34,4.15 9.742,15.31 16.988,26.74 2.402,5.2 0.797,1.74 1.231,3.52 0.722,2.04 1.821,3.54 1.097,2.14 1.352,1.64 4.609,5.59 5.18,3.17 10.711,2.01 2.578,2.23 3.582,3.09 8.508,14.95 -0.059,0.15 -2.57,6.11 -4.77,6.42 0.008,0.03 1.461,15.28 4.699,5.72 14.782,5.82 4.25,4.15 1.16,1.13 0.012,0.01 0.148,0.62 2,8.1 0.441,10.45 -0.082,3.88 -0.187,9.02 2.758,4.05 1.82,2.66 10.82,8.64 2.602,3.45 2.019,2.68 0.981,3.5 1.117,4.01 0.93,7.8 1.23,10.18 2.86,6.9 0.019,0.06 4.461,3.74 7.82,6.56 27.129,11.94 11.09,10.65 6.344,15.73 0.488,2.05 3.09,13.06 6.469,10.03 7.09,0.46 8.179,0.53 11.352,8.35 0.648,-0.78 3.723,-4.41 1.937,-10.72 4.024,-8.33 6.519,-3.49 2.75,-1.48"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7141" /><path
+               id="path3098" /><path
                d="m 3247.7,42.0508 0,0 -15.58,-5.0899 -46.44,7.4102 -17.14,4.9492 -0.93,10.3594 8.79,11.9687 11.54,12.0235 7.12,14.8593 -0.55,23.7188 -6.46,17.762 -8.33,15.968 -5.91,18.34 1.56,37.422 12.83,37.559 12.37,21.269 6.95,-10.121 12.83,-11.711 -4.97,-15.508 3.43,-9.738 7.27,-9.633 6.6,-15.367 -0.72,-7.933 -7.4,-16.77 0.15,-9.641 22.65,-13.156 18.22,-25.023 7.9,-28.2776 -5.03,-28.9297 -20.75,-26.7109"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 3247.7,42.0508 0,0 -15.58,-5.0899 -46.44,7.4102 -17.14,4.9492 -0.93,10.3594 8.79,11.9687 11.54,12.0235 7.12,14.8593 -0.55,23.7188 -6.46,17.762 -8.33,15.968 -5.91,18.34 1.56,37.422 12.83,37.559 12.37,21.269 6.95,-10.121 12.83,-11.711 -4.97,-15.508 3.43,-9.738 7.27,-9.633 6.6,-15.367 -0.72,-7.933 -7.4,-16.77 0.15,-9.641 22.65,-13.156 18.22,-25.023 7.9,-28.2776 -5.03,-28.9297 -20.75,-26.7109"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7143" /><path
+               id="path3100" /><path
                d="m 4251.24,8845.95 0,0 31.18,-23.56 11.56,-4.91 11.78,-9.22 20.64,-41.61 15.64,-9.08 15.5,-3.03 116.59,-60.76 -7.03,19.2 -7.74,11.8 -0.89,9.58 13.69,12.6 17.51,0.65 15.31,7.83 6.32,1.27 -6.22,11.86 -2.12,13.85 0.47,14.06 1.51,12.55 50.62,-42.78 4.61,-15.94 15.96,-19.07 9.92,-7.21 10.8,-2.68 -6.19,-6.4 -2.73,-1.55 10.28,-19.51 33.29,-25.44 7.41,-10.4 2.47,-18.1 3.06,-8.05 0.2,-6.61 -6.06,-13.26 -6.98,-8.46 -6.55,-2.97 -5.5,-4.08 -4.45,-12.03 25.82,-10.36 -1.48,-24.19 -19.58,-24.27 -28.42,-10.63 -101.16,18.17 -32.38,-8.68 -30.27,-15.65 -23.6,-23.63 -14.57,2.02 -61.3,33.7 -40.59,33.18 -72.21,43.04 -32.15,6.14 -34.88,15.12 -35.09,7.31 -14.05,11.8 -6.99,16.66 3.71,18.92 15.81,9.89 19.68,-2.59 18.22,1.98 11.18,23.69 -10.6,3.54 -8.83,6.59 -35.34,41.54 -4.39,7.41 -0.56,19.15 8.24,17.9 25.73,33.03 9.08,-4.33 91.39,21.99 15.72,-6.98"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 4251.24,8845.95 0,0 31.18,-23.56 11.56,-4.91 11.78,-9.22 20.64,-41.61 15.64,-9.08 15.5,-3.03 116.59,-60.76 -7.03,19.2 -7.74,11.8 -0.89,9.58 13.69,12.6 17.51,0.65 15.31,7.83 6.32,1.27 -6.22,11.86 -2.12,13.85 0.47,14.06 1.51,12.55 50.62,-42.78 4.61,-15.94 15.96,-19.07 9.92,-7.21 10.8,-2.68 -6.19,-6.4 -2.73,-1.55 10.28,-19.51 33.29,-25.44 7.41,-10.4 2.47,-18.1 3.06,-8.05 0.2,-6.61 -6.06,-13.26 -6.98,-8.46 -6.55,-2.97 -5.5,-4.08 -4.45,-12.03 25.82,-10.36 -1.48,-24.19 -19.58,-24.27 -28.42,-10.63 -101.16,18.17 -32.38,-8.68 -30.27,-15.65 -23.6,-23.63 -14.57,2.02 -61.3,33.7 -40.59,33.18 -72.21,43.04 -32.15,6.14 -34.88,15.12 -35.09,7.31 -14.05,11.8 -6.99,16.66 3.71,18.92 15.81,9.89 19.68,-2.59 18.22,1.98 11.18,23.69 -10.6,3.54 -8.83,6.59 -35.34,41.54 -4.39,7.41 -0.56,19.15 8.24,17.9 25.73,33.03 9.08,-4.33 91.39,21.99 15.72,-6.98"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7145" /><path
+               id="path3102" /><path
                d="m 3672.18,8766.65 0,0 9.49,-4.01 9.67,0.24 7.64,2.86 2.8,8.97 -5,18.59 9.53,-12.98 8.36,-33.19 7.03,-6.48 13.34,0.11 8.97,2.54 1.6,8.89 -8.95,19.09 10.75,-10.02 12.36,-7.39 8.84,-9.93 0.04,-17.55 6.33,-4.18 6.57,-3.13 -50.05,-12.8 -13.56,-15.52 -7.84,-3.55 -14.74,6.44 -112.68,118.7 -10.76,24.89 -4.07,17.36 9.44,-10.31 54.95,-29.5 16.22,-14.08 15.63,-24.09 8.09,-9.97"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 3672.18,8766.65 0,0 9.49,-4.01 9.67,0.24 7.64,2.86 2.8,8.97 -5,18.59 9.53,-12.98 8.36,-33.19 7.03,-6.48 13.34,0.11 8.97,2.54 1.6,8.89 -8.95,19.09 10.75,-10.02 12.36,-7.39 8.84,-9.93 0.04,-17.55 6.33,-4.18 6.57,-3.13 -50.05,-12.8 -13.56,-15.52 -7.84,-3.55 -14.74,6.44 -112.68,118.7 -10.76,24.89 -4.07,17.36 9.44,-10.31 54.95,-29.5 16.22,-14.08 15.63,-24.09 8.09,-9.97"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7147" /><path
+               id="path3104" /><path
                d="m 5069.06,8933.05 0,0 12.18,-37.58 -0.58,-12.25 -5.55,-6.9 -10.31,-3.29 -14.99,-1.27 -76.42,12.71 -23.05,-4.51 -21.55,-11.11 -20.91,-19.24 -31.86,-48.26 -12,-7.69 -18.69,2.26 -41.79,18.5 -0.31,6.9 9.14,0.41 -3.36,11.31 2.25,8.91 5.61,6.53 6.84,4.22 -3.32,3.2 -6.55,8.4 -3.51,3.01 13.43,16.67 8.21,4.63 8.3,-4.75 4.38,8.55 -5.45,14.9 10.29,-0.39 15.96,-10.1 9.75,-3 6.22,1.49 20.55,9.72 7.49,5.53 -3.95,10.82 -0.62,9.01 2.53,6.74 5.3,4.06 -0.36,7.58 -21.56,13.97 -6.05,7.55 -3.81,10.99 1.75,7.8 6.94,4.36 11.48,0.54 14.95,-24.12 22.05,-8.69 52.4,-0.98 56.5,-8.84 22.05,-18.3"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 5069.06,8933.05 0,0 12.18,-37.58 -0.58,-12.25 -5.55,-6.9 -10.31,-3.29 -14.99,-1.27 -76.42,12.71 -23.05,-4.51 -21.55,-11.11 -20.91,-19.24 -31.86,-48.26 -12,-7.69 -18.69,2.26 -41.79,18.5 -0.31,6.9 9.14,0.41 -3.36,11.31 2.25,8.91 5.61,6.53 6.84,4.22 -3.32,3.2 -6.55,8.4 -3.51,3.01 13.43,16.67 8.21,4.63 8.3,-4.75 4.38,8.55 -5.45,14.9 10.29,-0.39 15.96,-10.1 9.75,-3 6.22,1.49 20.55,9.72 7.49,5.53 -3.95,10.82 -0.62,9.01 2.53,6.74 5.3,4.06 -0.36,7.58 -21.56,13.97 -6.05,7.55 -3.81,10.99 1.75,7.8 6.94,4.36 11.48,0.54 14.95,-24.12 22.05,-8.69 52.4,-0.98 56.5,-8.84 22.05,-18.3"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7149" /><path
+               id="path3106" /><path
                d="m 3313.2,8965.9 0,0 38.62,-44.75 20.35,-10.79 28.4,-4.06 20.59,-12.2 16.66,-18.98 16.22,-24.44 9.52,-17.4 26.25,-76.39 -0.23,-10.87 -8.98,-2.55 -18.24,0.24 -9.48,-5.14 -12.39,-10.12 -12.44,-7.31 -9.27,3.27 -10.8,9.11 -29.57,8.99 -10.91,7.51 -0.09,7.59 16.99,8.78 20.2,-8.47 20.48,-14.05 17.82,-8.03 -0.11,7.59 -30.99,26.6 -29.23,9.97 -6.77,0.49 -6.26,-2.49 -9.16,-9.21 -6.25,-3.81 -25.01,1.14 -21.86,17.29 -12.91,29.07 1.59,36.19 -3.97,-0.04 -0.07,6.84 14.2,-9.79 15.48,-17.25 15.11,-12.82 12.81,3.26 -2.83,3.88 -4.26,7.54 -2.6,7.27 2.47,3.31 3.55,2.51 -4.57,5.35 -26.81,18.61 -4.59,8.81 7.88,10.72 -0.09,7.6 -50.11,-5.27 -8.8,0.83 -6.53,4.83 -7.74,1.13 -6.7,2.75 -3.6,10.09 2.33,4.97 11.87,9.2 3.41,8.77 -11.88,-0.63 -10.46,-4.24 -10.28,-1.88 -11.03,6.34 -0.07,8.22 56.1,27.4 22.53,3.86 26.51,-4.94"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 3313.2,8965.9 0,0 38.62,-44.75 20.35,-10.79 28.4,-4.06 20.59,-12.2 16.66,-18.98 16.22,-24.44 9.52,-17.4 26.25,-76.39 -0.23,-10.87 -8.98,-2.55 -18.24,0.24 -9.48,-5.14 -12.39,-10.12 -12.44,-7.31 -9.27,3.27 -10.8,9.11 -29.57,8.99 -10.91,7.51 -0.09,7.59 16.99,8.78 20.2,-8.47 20.48,-14.05 17.82,-8.03 -0.11,7.59 -30.99,26.6 -29.23,9.97 -6.77,0.49 -6.26,-2.49 -9.16,-9.21 -6.25,-3.81 -25.01,1.14 -21.86,17.29 -12.91,29.07 1.59,36.19 -3.97,-0.04 -0.07,6.84 14.2,-9.79 15.48,-17.25 15.11,-12.82 12.81,3.26 -2.83,3.88 -4.26,7.54 -2.6,7.27 2.47,3.31 3.55,2.51 -4.57,5.35 -26.81,18.61 -4.59,8.81 7.88,10.72 -0.09,7.6 -50.11,-5.27 -8.8,0.83 -6.53,4.83 -7.74,1.13 -6.7,2.75 -3.6,10.09 2.33,4.97 11.87,9.2 3.41,8.77 -11.88,-0.63 -10.46,-4.24 -10.28,-1.88 -11.03,6.34 -0.07,8.22 56.1,27.4 22.53,3.86 26.51,-4.94"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7151" /><path
+               id="path3108" /><path
                d="m 3984.07,8818.85 0,0 -56.85,-207.3 -5.98,-13.84 -8.73,-4.99 -15.23,-0.88 -7.97,10.39 -17.98,65.04 -7.19,11.97 -9,9.68 -20.23,16.16 15.57,1.39 9.79,4.55 7.94,9.62 9.76,16.51 5.53,18.77 3.65,5.38 6.17,-5.43 3.29,-1.7 16.3,5.97 -1.86,10.95 -3.02,12.41 -5.58,-4.92 -5.46,-1.74 -5.54,1.48 -5.75,4.63 8.36,27.01 13.09,20.17 34.68,42.46 15.19,11.55 34.83,53.5 3.65,31.57 19.95,55.66 23.54,43.11 14.47,-6.28 -26.66,-138.25 -11.17,-36.9 -31.56,-67.7"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 3984.07,8818.85 0,0 -56.85,-207.3 -5.98,-13.84 -8.73,-4.99 -15.23,-0.88 -7.97,10.39 -17.98,65.04 -7.19,11.97 -9,9.68 -20.23,16.16 15.57,1.39 9.79,4.55 7.94,9.62 9.76,16.51 5.53,18.77 3.65,5.38 6.17,-5.43 3.29,-1.7 16.3,5.97 -1.86,10.95 -3.02,12.41 -5.58,-4.92 -5.46,-1.74 -5.54,1.48 -5.75,4.63 8.36,27.01 13.09,20.17 34.68,42.46 15.19,11.55 34.83,53.5 3.65,31.57 19.95,55.66 23.54,43.11 14.47,-6.28 -26.66,-138.25 -11.17,-36.9 -31.56,-67.7"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7153" /><path
+               id="path3110" /><path
                d="m 3649.77,9560.33 0,0 44.04,-29.39 10.02,-11.99 8.23,-13.53 5.69,-7.18 6,-3.04 11.57,-1.2 10.58,-3.68 19.34,-12.99 -10.4,3.97 -9.85,-0.26 -7.18,-5.97 -2.59,-13.17 2.32,-4.78 9.56,-7.39 1.45,-6.53 -3.07,-9.39 -5.17,-2.69 -6.32,-0.48 -6.67,-3.14 -23.07,-34.59 10.84,-18.3 22.47,1.51 11.89,24.93 7.16,-1.74 40.23,22.17 23.8,8.08 2.72,3.57 -1.48,7.56 -3.24,7.52 -3.02,3.44 -5.65,1.31 -6.22,3.6 -5.2,5.06 -2.74,5.4 1.61,9.88 7.98,-3.51 8.61,-8.43 3.57,-5.04 7.74,12.61 -2.49,17.37 -6.52,19.59 -4.6,18.71 3.24,-4.99 10.08,-9.9 -0.31,18.7 -4.81,27.61 -0.04,7.48 11.96,0.92 18.92,-20.44 30.97,-48.79 1.42,-7.1 0.96,-9.87 1.52,-8.83 3.36,-3.77 1.56,-2.43 13.84,-13.01 4.3,-15.25 -1.14,-9.12 -5.66,-6.36 -18.06,-12.41 -29.09,-13.36 -43.75,3.06 -10.86,-2.66 -7.23,-6.78 -3.08,-14.28 6.1,-6.88 10.02,-0.12 9.28,5.97 -3.01,5.68 -0.86,3.55 4.5,11.55 12.56,-2.88 42.78,-8.99 9.63,-8.34 64.78,-89.34 4.38,-9.61 17.25,-47.65 4.35,-18.07 -4.73,-0.12 -7.85,11.65 -11.74,7.23 -10.49,-3.32 -4.08,-19.89 3.95,-13.6 17.58,-26.7 5.55,-16.37 1.81,-23.95 -1.07,-22 -3.66,-19.03 -9.22,-22.9 -1.63,-8.39 -0.16,-22.27 -1.95,-5.97 -15.16,-21.39 -5.66,-13.72 -4.03,-12.81 -5.4,-11.13 -9.9,-8.53 -7.8,-2.14 -25.13,1.35 -28.58,-0.68 -10.64,-2.31 -11.89,-5.85 -10.83,-8.71 -7.62,-11.04 -11.36,-11.81 -13.78,1.42 -25.33,13.38 -42.86,2.68 -14.02,3.8 -6.22,4.19 -5.18,4.85 -5.63,4.09 -7.43,1.64 -15.94,-1.98 -8.46,0.76 -50.66,30.89 -18.56,1.29 -4.67,-8.54 0.02,-24.22 -9.83,7.08 -15.34,17.29 -10.65,6.09 -13.07,0.02 -24.04,-6.47 -11.24,5.69 48.26,38.09 8.31,15.96 -11.33,15.74 -8.26,18.04 -8.66,14.42 -12.19,5.1 -9.43,-3.03 -7.24,-4.19 -7.53,-2.88 -10.35,1.23 -14.83,14.5 -8.27,3.39 -7.56,-10 2.23,-17.45 22.55,-33.55 -1.97,-18.49 -3.21,-1.55 -22.39,3.42 -1.7,3.2 0.86,4.44 -0.28,5.98 1.79,-0.73 1.65,4.57 -0.66,9.37 -9.56,24.54 -1.62,11.88 1.22,11.75 3.99,10.75 -0.84,8.85 -9.88,5.73 -25.67,6.15 -8.08,5.01 -7.19,6.18 -3.15,5.36 -1.53,6.02 -5.97,9.93 -1.47,6.71 1.3,6.86 5.71,10.2 1.37,6.23 -1.6,12.17 -6.09,19.42 -1.46,6.31 1.41,38.38 -6.55,4.81 -9.9,0.74 -18.33,-2.18 -8.55,3.06 -9.01,7.89 -15.68,19.72 10.63,4.15 11.83,1.51 10.43,4.38 6.13,12.5 -34.79,14.78 5.18,-1.04 16.48,1.29 -6.7,12.92 -11.72,6.99 -25.09,3.06 -8.93,3.65 -21.59,26.46 -0.07,6.9 16.88,-7.53 18.07,-15.28 17.78,-11.36 16.3,4.55 -63.01,54.87 -23.63,5 4.85,11.61 5.9,4.66 7.15,2.43 8.24,5.03 23.16,30.61 33.96,7.34 11.57,-1.93 2.29,-5.96 0.37,-9.37 5.69,-12.24 30.56,-16.24 32.73,12.17 62.01,43.73 81.02,28.67 27.4,20.89 15.46,5.74 16.85,1.51 5.03,-1.12 0.52,-3.38 4.26,-15.69 0.33,-3.61 8.8,3.44 2.12,8.44 -2.51,22.85 8.61,2.4 19.57,-8.54"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 3649.77,9560.33 0,0 44.04,-29.39 10.02,-11.99 8.23,-13.53 5.69,-7.18 6,-3.04 11.57,-1.2 10.58,-3.68 19.34,-12.99 -10.4,3.97 -9.85,-0.26 -7.18,-5.97 -2.59,-13.17 2.32,-4.78 9.56,-7.39 1.45,-6.53 -3.07,-9.39 -5.17,-2.69 -6.32,-0.48 -6.67,-3.14 -23.07,-34.59 10.84,-18.3 22.47,1.51 11.89,24.93 7.16,-1.74 40.23,22.17 23.8,8.08 2.72,3.57 -1.48,7.56 -3.24,7.52 -3.02,3.44 -5.65,1.31 -6.22,3.6 -5.2,5.06 -2.74,5.4 1.61,9.88 7.98,-3.51 8.61,-8.43 3.57,-5.04 7.74,12.61 -2.49,17.37 -6.52,19.59 -4.6,18.71 3.24,-4.99 10.08,-9.9 -0.31,18.7 -4.81,27.61 -0.04,7.48 11.96,0.92 18.92,-20.44 30.97,-48.79 1.42,-7.1 0.96,-9.87 1.52,-8.83 3.36,-3.77 1.56,-2.43 13.84,-13.01 4.3,-15.25 -1.14,-9.12 -5.66,-6.36 -18.06,-12.41 -29.09,-13.36 -43.75,3.06 -10.86,-2.66 -7.23,-6.78 -3.08,-14.28 6.1,-6.88 10.02,-0.12 9.28,5.97 -3.01,5.68 -0.86,3.55 4.5,11.55 12.56,-2.88 42.78,-8.99 9.63,-8.34 64.78,-89.34 4.38,-9.61 17.25,-47.65 4.35,-18.07 -4.73,-0.12 -7.85,11.65 -11.74,7.23 -10.49,-3.32 -4.08,-19.89 3.95,-13.6 17.58,-26.7 5.55,-16.37 1.81,-23.95 -1.07,-22 -3.66,-19.03 -9.22,-22.9 -1.63,-8.39 -0.16,-22.27 -1.95,-5.97 -15.16,-21.39 -5.66,-13.72 -4.03,-12.81 -5.4,-11.13 -9.9,-8.53 -7.8,-2.14 -25.13,1.35 -28.58,-0.68 -10.64,-2.31 -11.89,-5.85 -10.83,-8.71 -7.62,-11.04 -11.36,-11.81 -13.78,1.42 -25.33,13.38 -42.86,2.68 -14.02,3.8 -6.22,4.19 -5.18,4.85 -5.63,4.09 -7.43,1.64 -15.94,-1.98 -8.46,0.76 -50.66,30.89 -18.56,1.29 -4.67,-8.54 0.02,-24.22 -9.83,7.08 -15.34,17.29 -10.65,6.09 -13.07,0.02 -24.04,-6.47 -11.24,5.69 48.26,38.09 8.31,15.96 -11.33,15.74 -8.26,18.04 -8.66,14.42 -12.19,5.1 -9.43,-3.03 -7.24,-4.19 -7.53,-2.88 -10.35,1.23 -14.83,14.5 -8.27,3.39 -7.56,-10 2.23,-17.45 22.55,-33.55 -1.97,-18.49 -3.21,-1.55 -22.39,3.42 -1.7,3.2 0.86,4.44 -0.28,5.98 1.79,-0.73 1.65,4.57 -0.66,9.37 -9.56,24.54 -1.62,11.88 1.22,11.75 3.99,10.75 -0.84,8.85 -9.88,5.73 -25.67,6.15 -8.08,5.01 -7.19,6.18 -3.15,5.36 -1.53,6.02 -5.97,9.93 -1.47,6.71 1.3,6.86 5.71,10.2 1.37,6.23 -1.6,12.17 -6.09,19.42 -1.46,6.31 1.41,38.38 -6.55,4.81 -9.9,0.74 -18.33,-2.18 -8.55,3.06 -9.01,7.89 -15.68,19.72 10.63,4.15 11.83,1.51 10.43,4.38 6.13,12.5 -34.79,14.78 5.18,-1.04 16.48,1.29 -6.7,12.92 -11.72,6.99 -25.09,3.06 -8.93,3.65 -21.59,26.46 -0.07,6.9 16.88,-7.53 18.07,-15.28 17.78,-11.36 16.3,4.55 -63.01,54.87 -23.63,5 4.85,11.61 5.9,4.66 7.15,2.43 8.24,5.03 23.16,30.61 33.96,7.34 11.57,-1.93 2.29,-5.96 0.37,-9.37 5.69,-12.24 30.56,-16.24 32.73,12.17 62.01,43.73 81.02,28.67 27.4,20.89 15.46,5.74 16.85,1.51 5.03,-1.12 0.52,-3.38 4.26,-15.69 0.33,-3.61 8.8,3.44 2.12,8.44 -2.51,22.85 8.61,2.4 19.57,-8.54"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7155" /><path
+               id="path3112" /><path
                d="m 4875.33,10177.2 0,0 55.21,-28.4 44.27,2.3 12.28,-5.9 22.86,-18.7 18.8,-7 33.78,-25.6 -7.58,-18 -23.75,-36.2 -8.12,-19.2 -14.68,-45.21 -7.35,-13.26 0.42,-8.24 18.52,-24.27 9.73,-16.7 4.49,-14.17 3.93,-20.81 8.18,-24.09 9.67,-21.4 8.47,-13.04 -1.96,-11.03 -0.65,-14.98 0.52,-23.66 -2.57,-19.38 -0.34,-7.39 1.12,-5.31 2.5,-5.57 6.52,-11.42 -12.28,-17.98 -22.68,-50.49 -22.96,-17.65 -3.4,-13.88 -5.32,-13.46 -13.75,-5.53 -10.6,3.16 -7.65,5.78 -8.51,4.59 -12.7,-0.28 -44.2,-28.7 -49.77,-57.2 -28.54,-66.82 19.56,-57.73 32.07,-25.92 11.03,-3.17 38.92,-0.9 10.89,-4.32 28.56,-21.93 15.18,-16.6 7.03,-16.01 2.07,-19.14 3.68,-15.95 10.47,-29.56 -8.8,-12.19 -3.44,-3.62 -31.91,-25.3 -131.79,-37.62 -9.56,-11.26 -15.83,-11.2 -11.97,-19.43 -6.69,-22.87 4.6,-18.86 -4.38,-9.76 -5.15,-4.26 -5.83,0.55 -6.02,4.86 3.61,24.23 -7.91,14.74 -13.2,3.57 -12.11,-9.57 -5.35,-5.77 -4.86,-1.99 -3.38,-4.06 -0.82,-11.61 3.62,-4.45 18.93,-13.64 53.68,-2.23 24.61,-7.12 6.58,-25.56 -3.13,-11.09 -3.82,-4.78 -4.57,-2.57 -5.35,-4.44 -12.79,-7.89 -6.07,-6.2 4.74,-2.5 26.35,-52.09 0.29,-21.06 -8.01,-11.77 -12.94,-5.3 -14.9,-1.53 -9.81,-4.29 -20.69,-17.61 -14.62,-3.58 -22.68,8.35 -36.11,31.46 -21.7,3.12 -0.05,-5.24 0.98,-1.34 1.72,0.19 2.03,-1.07 -3.42,-2.27 -1.87,-2.67 -2.29,-2.34 -4.77,-1.47 3.72,-21.09 -4.03,-12.89 -5.58,-11.11 -0.79,-16.04 5.28,-12.22 8.78,-7.06 9.71,-0.69 7.87,6.77 -1.89,3.96 -3.48,10.33 5.53,0.98 15.96,8.21 5.49,-5.98 9.94,-20.08 1.38,-4.37 6.15,-4.17 21.74,-19.45 10.84,-5.12 11.8,2.01 12.22,4.4 11.65,0.74 10.28,-8.93 19.12,-26.56 20.52,-21.82 0.32,-6.9 -54.75,-49.09 -8.89,-11.16 -23.03,-49.31 -3,-9.23 -6.25,-5.05 -16.4,-21.6 -6.59,-5.01 -8.74,-15.85 1.16,-35.37 10.01,-62.79 0.08,-39.85 -12.9,-1.98 -14.14,16.63 -3.59,15.56 -9.8,12.21 -22.93,40.91 -5.31,13.83 -0.01,23.09 7.06,18.19 16.48,28.84 -13.16,2.22 -9.3,5.83 -2.73,11.23 5.96,18.61 -7.42,4.02 -4.22,5.58 -6.77,12.51 -31.09,29.94 -2.59,4.97 -3.3,9.25 -1.62,8.86 0.5,5.95 -0.37,5.91 -4.47,8.75 -11.66,12.37 -10.19,7.54 -7.46,10.76 -3.52,21.97 -0.93,20.35 -2.74,15.66 -6.92,10.73 -13.34,5.58 -0.32,8.28 23.72,20.38 6.05,2.89 9.26,-3.03 13.04,-14.79 7.15,-3.12 6.78,4.6 13.92,16.1 2.78,-1.44 4.42,-5.98 8.85,5.49 12.42,13.69 -0.28,6.84 -6.97,8.47 -13.42,33.42 -7.98,10.96 -43.74,18.74 -12.24,1.81 -3.52,2.22 -8.86,10.13 -5.31,2.22 -40.53,0.67 -12.26,6.1 -10.79,9.49 -9.7,12.02 34.5,-6.07 68.71,-28.75 33.7,-6.19 -15.23,25.24 -40.67,28.03 -17.51,27.47 54.6,12.29 3.44,4.57 -2,8.85 -14.29,11.05 -36.16,-4.19 -11.37,14.24 8.95,10.37 4.89,13.26 -1.49,12.72 -10.15,8.7 -14.26,-0.79 -10.48,-10.13 -8.67,-12.65 -8.83,-8.51 -8.45,0.43 -23.82,9.81 -48.32,10.25 -11.76,6.54 -8.57,-4.97 -44.75,18.28 -8.08,-2.35 -17.08,-10.48 -8.83,-3.53 -43.86,-1.47 0.25,-7.64 13.34,-7.1 -22.06,0.08 -16.04,5.23 -10.5,15.49 -5.26,30.62 9.48,-6.6 9.41,-0.04 7.52,7.38 3.5,15.42 -6.4,-5.16 -6.69,-2.63 -14.88,-1.35 -2.17,6.03 0.9,27.14 -4.33,6.02 -11.63,6.47 -35.91,31.1 -6.22,10.11 5.74,3 9.08,1.32 7.42,4.03 0.82,11.42 -5.08,5.31 -9.26,2.41 -9.71,0.16 -6.52,-1.18 -4.2,-6.23 -2.53,-9.51 -4.43,-7.45 -9.77,-0.29 -4.15,4.88 -9.72,24.39 -0.25,8.28 17.08,-1.21 9.02,1.14 6.21,4.85 5.27,7.47 7.15,6.21 7.86,4.45 7.28,1.78 13.03,6.45 5.92,13.54 -1.14,13.2 -7.91,5.85 2.13,11.35 -6.09,24.9 -13.91,39.16 -8.27,13.61 -8.39,9.18 -9.95,4.98 -13.1,1.44 -11.05,-8.45 -6.98,-2.34 -3.38,6 0.79,15.1 3.28,8.16 6.03,3.46 8.46,0.78 16.44,6.83 6.15,16.13 -2.47,20.93 -9.19,21.07 -28.93,34.4 -31.18,17.37 -69.14,16.72 -0.23,8.28 99.37,-5.4 -11.02,18.31 -39.74,15.87 -15.42,9.45 -6.8,10.62 -4.01,8.35 -5.25,6.41 -10.53,5 -32.84,1.56 -10.21,5.48 -0.19,6.99 99.37,-12.42 20.41,4.17 38.77,16.83 21.56,4.23 0.23,-7.56 -6.97,0.79 -6.73,-0.67 -6.15,-2.66 -5.62,-5.24 10.52,-19.07 16.7,-14.67 18.43,-5.12 15.74,9.76 -26.88,21.94 8.37,8.5 5.97,-5.8 10.66,-2.25 22.57,1.07 10.12,4.42 20.77,16.03 21.37,5.63 9.54,5.68 7.11,10.69 2.41,16.63 0.35,8.7 2.46,15.46 0.4,7.03 -2.57,8.78 -11.55,15.61 -4.12,8.89 16.35,-10.14 15.49,-2 14.35,6.66 12.98,15.76 21.58,-3.89 16.25,30.89 1.63,44.13 -21.92,36.05 -18.4,6.89 -40.11,1.56 -50.51,17.31 -14.53,11.87 -6.38,19.45 81.05,-35.83 16.31,4.54 96.86,-11.75 11.83,-10.38 25.82,2.42 43.54,15.28 22.14,14.98 12.67,3.01 7.48,-9.4 -2.26,-11.26 -16.64,-21.86 -4.83,-13.43 7.89,-11.38 -3.84,-7.52 -10.01,-2.04 -10.49,5.03 1.13,4.13 2.15,11.26 -19.91,-1.96 -7.9,-4.71 -5.7,-9.9 33.08,-53.41 13.04,-30 -7.81,-22.3 -9.45,-2.1 -19.76,4.59 -9.25,-3.99 -10.82,-17.05 -7.09,-6.37 -11.53,-0.55 0.31,-8.22 10.3,-3.01 30.85,4.58 8.27,4.12 9.62,8.03 10.78,6.29 11.58,-0.92 4.56,-8.77 7.27,-17.97 5.65,-17.77 -0.33,-8.13 -50.16,-11.21 -10.98,-5.06 -4.21,-7.13 8.2,-8.61 9.14,-1.03 28.14,3.35 5.86,2.88 4.58,5.77 10.94,-10.22 16.03,-21.99 5.13,-14.47 -0.16,-5.54 -3.5,-6.88 -4.39,-18.83 10.82,10.97 7.76,10.86 23.88,58.73 1.92,2.15 -1.76,7.99 -6.41,13.78 -1.53,4.09 1.48,12.96 4.13,16.23 9.34,25.38 8.85,10.22 21.99,7.42 10.93,6.92 8.81,31.93 -14.4,35.67 -16.05,32.09 3.69,21.29 11.08,-0.45 23.14,-22.51 11.82,-5.48 6.22,-4.57 0.36,-11.27 -2.05,-12.59 -0.78,-8.79 3.32,-13.85 2.61,-5.01 3.06,-3.21 5.22,-8.47 13.07,-31.91 13.16,-45.44 3.77,-42.91 -15.12,-24.28 -23.07,7.18 -10.84,-1.91 -3.75,-18.7 -4,-12.9 -21.17,-22.38 -7.47,-15.86 12.79,-2.34 17.78,9.16 13.9,15.92 1.04,17.95 9.83,4.57 10.6,-2.94 9.24,-9.04 6.08,-13.9 -19.91,5.81 -2.49,-2.64 4.4,-10 9.95,-7.23 21.52,-8.15 4.56,23.58 12.78,35.99 0.77,24.92 -31.44,120.36 -1.73,39.32 -2.97,15.88 -17.4,58.67 -10.35,15.01 -11.67,5.4 -13.51,-1.34 -46.84,-21.56 -17.8,-4.03 -10.99,9.34 9.51,27.77 31.13,28.94 57.67,39.5 91.48,85.4 48.29,30.2 51.85,0.4"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 4875.33,10177.2 0,0 55.21,-28.4 44.27,2.3 12.28,-5.9 22.86,-18.7 18.8,-7 33.78,-25.6 -7.58,-18 -23.75,-36.2 -8.12,-19.2 -14.68,-45.21 -7.35,-13.26 0.42,-8.24 18.52,-24.27 9.73,-16.7 4.49,-14.17 3.93,-20.81 8.18,-24.09 9.67,-21.4 8.47,-13.04 -1.96,-11.03 -0.65,-14.98 0.52,-23.66 -2.57,-19.38 -0.34,-7.39 1.12,-5.31 2.5,-5.57 6.52,-11.42 -12.28,-17.98 -22.68,-50.49 -22.96,-17.65 -3.4,-13.88 -5.32,-13.46 -13.75,-5.53 -10.6,3.16 -7.65,5.78 -8.51,4.59 -12.7,-0.28 -44.2,-28.7 -49.77,-57.2 -28.54,-66.82 19.56,-57.73 32.07,-25.92 11.03,-3.17 38.92,-0.9 10.89,-4.32 28.56,-21.93 15.18,-16.6 7.03,-16.01 2.07,-19.14 3.68,-15.95 10.47,-29.56 -8.8,-12.19 -3.44,-3.62 -31.91,-25.3 -131.79,-37.62 -9.56,-11.26 -15.83,-11.2 -11.97,-19.43 -6.69,-22.87 4.6,-18.86 -4.38,-9.76 -5.15,-4.26 -5.83,0.55 -6.02,4.86 3.61,24.23 -7.91,14.74 -13.2,3.57 -12.11,-9.57 -5.35,-5.77 -4.86,-1.99 -3.38,-4.06 -0.82,-11.61 3.62,-4.45 18.93,-13.64 53.68,-2.23 24.61,-7.12 6.58,-25.56 -3.13,-11.09 -3.82,-4.78 -4.57,-2.57 -5.35,-4.44 -12.79,-7.89 -6.07,-6.2 4.74,-2.5 26.35,-52.09 0.29,-21.06 -8.01,-11.77 -12.94,-5.3 -14.9,-1.53 -9.81,-4.29 -20.69,-17.61 -14.62,-3.58 -22.68,8.35 -36.11,31.46 -21.7,3.12 -0.05,-5.24 0.98,-1.34 1.72,0.19 2.03,-1.07 -3.42,-2.27 -1.87,-2.67 -2.29,-2.34 -4.77,-1.47 3.72,-21.09 -4.03,-12.89 -5.58,-11.11 -0.79,-16.04 5.28,-12.22 8.78,-7.06 9.71,-0.69 7.87,6.77 -1.89,3.96 -3.48,10.33 5.53,0.98 15.96,8.21 5.49,-5.98 9.94,-20.08 1.38,-4.37 6.15,-4.17 21.74,-19.45 10.84,-5.12 11.8,2.01 12.22,4.4 11.65,0.74 10.28,-8.93 19.12,-26.56 20.52,-21.82 0.32,-6.9 -54.75,-49.09 -8.89,-11.16 -23.03,-49.31 -3,-9.23 -6.25,-5.05 -16.4,-21.6 -6.59,-5.01 -8.74,-15.85 1.16,-35.37 10.01,-62.79 0.08,-39.85 -12.9,-1.98 -14.14,16.63 -3.59,15.56 -9.8,12.21 -22.93,40.91 -5.31,13.83 -0.01,23.09 7.06,18.19 16.48,28.84 -13.16,2.22 -9.3,5.83 -2.73,11.23 5.96,18.61 -7.42,4.02 -4.22,5.58 -6.77,12.51 -31.09,29.94 -2.59,4.97 -3.3,9.25 -1.62,8.86 0.5,5.95 -0.37,5.91 -4.47,8.75 -11.66,12.37 -10.19,7.54 -7.46,10.76 -3.52,21.97 -0.93,20.35 -2.74,15.66 -6.92,10.73 -13.34,5.58 -0.32,8.28 23.72,20.38 6.05,2.89 9.26,-3.03 13.04,-14.79 7.15,-3.12 6.78,4.6 13.92,16.1 2.78,-1.44 4.42,-5.98 8.85,5.49 12.42,13.69 -0.28,6.84 -6.97,8.47 -13.42,33.42 -7.98,10.96 -43.74,18.74 -12.24,1.81 -3.52,2.22 -8.86,10.13 -5.31,2.22 -40.53,0.67 -12.26,6.1 -10.79,9.49 -9.7,12.02 34.5,-6.07 68.71,-28.75 33.7,-6.19 -15.23,25.24 -40.67,28.03 -17.51,27.47 54.6,12.29 3.44,4.57 -2,8.85 -14.29,11.05 -36.16,-4.19 -11.37,14.24 8.95,10.37 4.89,13.26 -1.49,12.72 -10.15,8.7 -14.26,-0.79 -10.48,-10.13 -8.67,-12.65 -8.83,-8.51 -8.45,0.43 -23.82,9.81 -48.32,10.25 -11.76,6.54 -8.57,-4.97 -44.75,18.28 -8.08,-2.35 -17.08,-10.48 -8.83,-3.53 -43.86,-1.47 0.25,-7.64 13.34,-7.1 -22.06,0.08 -16.04,5.23 -10.5,15.49 -5.26,30.62 9.48,-6.6 9.41,-0.04 7.52,7.38 3.5,15.42 -6.4,-5.16 -6.69,-2.63 -14.88,-1.35 -2.17,6.03 0.9,27.14 -4.33,6.02 -11.63,6.47 -35.91,31.1 -6.22,10.11 5.74,3 9.08,1.32 7.42,4.03 0.82,11.42 -5.08,5.31 -9.26,2.41 -9.71,0.16 -6.52,-1.18 -4.2,-6.23 -2.53,-9.51 -4.43,-7.45 -9.77,-0.29 -4.15,4.88 -9.72,24.39 -0.25,8.28 17.08,-1.21 9.02,1.14 6.21,4.85 5.27,7.47 7.15,6.21 7.86,4.45 7.28,1.78 13.03,6.45 5.92,13.54 -1.14,13.2 -7.91,5.85 2.13,11.35 -6.09,24.9 -13.91,39.16 -8.27,13.61 -8.39,9.18 -9.95,4.98 -13.1,1.44 -11.05,-8.45 -6.98,-2.34 -3.38,6 0.79,15.1 3.28,8.16 6.03,3.46 8.46,0.78 16.44,6.83 6.15,16.13 -2.47,20.93 -9.19,21.07 -28.93,34.4 -31.18,17.37 -69.14,16.72 -0.23,8.28 99.37,-5.4 -11.02,18.31 -39.74,15.87 -15.42,9.45 -6.8,10.62 -4.01,8.35 -5.25,6.41 -10.53,5 -32.84,1.56 -10.21,5.48 -0.19,6.99 99.37,-12.42 20.41,4.17 38.77,16.83 21.56,4.23 0.23,-7.56 -6.97,0.79 -6.73,-0.67 -6.15,-2.66 -5.62,-5.24 10.52,-19.07 16.7,-14.67 18.43,-5.12 15.74,9.76 -26.88,21.94 8.37,8.5 5.97,-5.8 10.66,-2.25 22.57,1.07 10.12,4.42 20.77,16.03 21.37,5.63 9.54,5.68 7.11,10.69 2.41,16.63 0.35,8.7 2.46,15.46 0.4,7.03 -2.57,8.78 -11.55,15.61 -4.12,8.89 16.35,-10.14 15.49,-2 14.35,6.66 12.98,15.76 21.58,-3.89 16.25,30.89 1.63,44.13 -21.92,36.05 -18.4,6.89 -40.11,1.56 -50.51,17.31 -14.53,11.87 -6.38,19.45 81.05,-35.83 16.31,4.54 96.86,-11.75 11.83,-10.38 25.82,2.42 43.54,15.28 22.14,14.98 12.67,3.01 7.48,-9.4 -2.26,-11.26 -16.64,-21.86 -4.83,-13.43 7.89,-11.38 -3.84,-7.52 -10.01,-2.04 -10.49,5.03 1.13,4.13 2.15,11.26 -19.91,-1.96 -7.9,-4.71 -5.7,-9.9 33.08,-53.41 13.04,-30 -7.81,-22.3 -9.45,-2.1 -19.76,4.59 -9.25,-3.99 -10.82,-17.05 -7.09,-6.37 -11.53,-0.55 0.31,-8.22 10.3,-3.01 30.85,4.58 8.27,4.12 9.62,8.03 10.78,6.29 11.58,-0.92 4.56,-8.77 7.27,-17.97 5.65,-17.77 -0.33,-8.13 -50.16,-11.21 -10.98,-5.06 -4.21,-7.13 8.2,-8.61 9.14,-1.03 28.14,3.35 5.86,2.88 4.58,5.77 10.94,-10.22 16.03,-21.99 5.13,-14.47 -0.16,-5.54 -3.5,-6.88 -4.39,-18.83 10.82,10.97 7.76,10.86 23.88,58.73 1.92,2.15 -1.76,7.99 -6.41,13.78 -1.53,4.09 1.48,12.96 4.13,16.23 9.34,25.38 8.85,10.22 21.99,7.42 10.93,6.92 8.81,31.93 -14.4,35.67 -16.05,32.09 3.69,21.29 11.08,-0.45 23.14,-22.51 11.82,-5.48 6.22,-4.57 0.36,-11.27 -2.05,-12.59 -0.78,-8.79 3.32,-13.85 2.61,-5.01 3.06,-3.21 5.22,-8.47 13.07,-31.91 13.16,-45.44 3.77,-42.91 -15.12,-24.28 -23.07,7.18 -10.84,-1.91 -3.75,-18.7 -4,-12.9 -21.17,-22.38 -7.47,-15.86 12.79,-2.34 17.78,9.16 13.9,15.92 1.04,17.95 9.83,4.57 10.6,-2.94 9.24,-9.04 6.08,-13.9 -19.91,5.81 -2.49,-2.64 4.4,-10 9.95,-7.23 21.52,-8.15 4.56,23.58 12.78,35.99 0.77,24.92 -31.44,120.36 -1.73,39.32 -2.97,15.88 -17.4,58.67 -10.35,15.01 -11.67,5.4 -13.51,-1.34 -46.84,-21.56 -17.8,-4.03 -10.99,9.34 9.51,27.77 31.13,28.94 57.67,39.5 91.48,85.4 48.29,30.2 51.85,0.4"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7157" /><path
+               id="path3114" /><path
                d="m 3678.7,11810.4 0,0 -16.48,-67.1 17.89,-49.9 31.22,-45.4 23.73,-53.7 -16.4,-49.3 1.67,-58.1 15.27,-113.8 -9.99,-16.9 -30.39,-23.6 -14.04,-18.4 -20.49,-45.4 -9.01,-30.4 -5.92,-48.1 -13.97,-53.9 -6.99,-17.9 -4.99,-7.8 -4.87,-4.5 -6.56,-2.1 -28.7,-0.2 -8.87,-2.4 -10.93,-3.6 -51.44,33.6 -38.36,40.3 -25.11,9.8 -20.55,20.6 -15.1,4.5 -12.05,-7.1 -16.83,-28.4 -11.62,-3.1 11.24,-1.2 12.61,16.8 10.54,7.7 10.7,5.5 12.61,-5.1 60.87,-62.5 19.99,-9.5 23.72,-21 13.4,-4.6 49.07,-0.3 11.42,-6.2 -16.55,-21.6 -3.6,-9.2 -2.62,-14.8 -2.83,-30.4 -1.87,-8.1 4.75,-18.2 7.74,-56.7 3.43,-44.7 4.86,-23.6 15.75,-46.9 5.46,-7.3 6.13,-6.4 1.54,-7.3 -8.29,-10 -4.86,-0.3 -14.62,6.5 -7.69,1.6 -27.58,-0.5 -9.54,-4.4 -10.88,-11.2 -10.44,10.8 -11.72,8.5 -13.33,2.4 -15.25,-7.4 -13.49,-11.1 -5.6,-2.4 -9.9,-2.1 -9.23,-4.6 -18.69,-15.9 -22.36,-8.5 -27.45,-21.3 -85.38,-13.4 0.08,-7.6 27.83,-4.7 91.76,29.7 20.33,13.2 8.89,2.5 1.93,2.4 0.3,5.2 1.19,5.2 4.52,2.5 4.96,-1.2 8.38,-5.6 3.76,-1.3 6.55,1.8 7.46,4.6 6.17,6.4 2.47,7.3 3.87,15.1 9.51,2.4 20.3,-6.2 -1.51,-4.1 -2.86,-10.5 40.58,-7.2 25.49,2 16.13,10.5 14.58,5.9 11.87,-24.3 3.71,-36.8 -9.97,-31.8 -40.75,-32.7 -29.91,-35.2 -5.48,-2.6 -3.69,-36.3 -1.98,-10.1 4.93,-12.7 -2.58,-15.9 -6.62,-15 -7.35,-9.2 18.89,1.4 6.96,6 -1.52,42.1 1.43,30.6 5.96,14.9 25.37,20 19.79,28 10.77,7.4 12.79,-7.9 2.29,-7 3.84,-23.7 0.71,-7.1 2.74,-3.7 18.67,-14.9 46.51,-25.5 50.43,-4.8 145.58,26.7 20.46,-1.8 20.33,-10.8 9.5,-10.2 20.81,-34.5 39.36,-37.7 0.19,-6.8 -13.99,-14.6 -6.87,-25.9 -2.29,-29.7 0.15,-26.2 -6.08,-24.9 -54.77,-83 -28.29,-20.6 -10.57,-15.5 -2.95,-14.9 2.48,-34.6 -7.74,-34 -19.54,-4.6 -22.09,15.4 -15.05,25.5 15.9,3 6.39,6.3 2.93,14.1 -2.1,14.9 -6.32,4.4 -8.11,1.2 -7.57,5.5 -15.05,5 -14.88,-18.8 -13.48,-24.5 -19.35,-23.9 5.01,-25.8 8.73,-28.2 3.19,-18.6 -5.8,-8 -9.91,-5.1 -10.58,-1.4 -7.84,2.7 -6.44,9 -6.63,21.2 -4.8,10.9 4.83,5.3 10.36,8 5.66,2.3 -4.7,12.3 -5.58,5.9 -25.84,7.2 -5.55,-1.2 -13.74,-9.5 -17.32,-3.7 -10.83,8.4 -9.74,15.4 -13.74,16.9 13.76,1.7 20.36,17.4 11.63,4.6 8.92,-6.3 11.01,-11.5 10.74,-4 7.93,15.7 -10.89,17.5 0.47,13.9 17.45,37.2 -8.51,-0.3 -9.03,3.4 -8.33,6.5 -6.26,8.4 -6.94,4.4 -15.83,-7.9 -8.59,7 -2.07,-15 -3.2,-9.3 -5.34,-5 -8.61,-1.6 -4.49,-6 -15.81,-36.9 -14.87,-19.9 -32.95,-28.3 -14.63,-21.3 -8.21,-26.3 4.4,-16.1 10.55,-15.1 10.12,-22.7 4.63,-28 -2.18,-21.6 -7.37,-19.6 -10.81,-22.3 14.75,7.5 10.99,1.6 3.11,-7.8 -15.02,-35.4 -1.22,-14.23 1.54,-28.17 -0.23,-19.39 -0.69,-8.52 -2.28,-9.42 -14.7,-20 -2.26,-7.92 -3.04,0.01 -6.7,-4.61 -7.06,-6.96 -4.22,-6.81 3.15,-2.76 4.72,-10.79 2.53,-11.81 -5.29,-8.14 -1.92,-5.44 -3.21,-5.52 -5.84,-2.58 -7.74,1.94 -5.98,5.25 -9.96,15.23 -2.97,7.11 -1.94,8.19 -2.85,8.27 -5.94,7.24 -7.93,2.63 -60.8,-3.68 -8.04,-2.94 -4.95,-6.66 -3.77,-7.61 -4.26,-5.87 -16.21,-6.73 -33.02,1.58 -15.16,-3.96 15.88,-17.26 89.95,-18.62 6.49,-4.91 -2.16,-11.73 -9.96,-22.82 -4.9,-19.54 1.61,-8.52 8.79,-1.88 16.34,0.53 0.12,-7.59 -25.47,-15.16 -7.35,-12.59 7.41,-18.19 -2.31,-2.04 -5.75,-6.41 -14.88,8.93 -68.77,-21.11 -31.31,-17.29 -18.51,-1.94 -38.83,14.81 -22.29,19.44 -5.81,3.05 -65.01,-0.31 -14.8,7.19 -1.98,-4.33 -1.08,-3.06 -0.69,-3.34 -0.41,-5.24 13.11,-6.22 45.28,-0.12 8.24,-5.04 32.89,-33.26 6.84,-13.22 4.61,-11.97 6.47,-8.56 12.59,-3.26 60.14,0.7 -10.13,-12.78 -32.45,-26.43 -17.21,-22.74 -8.48,-5.96 -14.58,-2.11 -5.36,-4.83 -1.06,-10.42 -0.03,-10.47 -2.1,-4.79 -39.7,-10.34 -14.26,-10.59 -8.72,-2.44 -7.65,1.66 -14.21,6.09 -8.35,-0.41 1.73,-4.53 2.64,-3.03 -9.04,-13.01 -23.31,-7.94 -10.57,-9.8 11.15,-6.94 11.82,0.9 31.02,8.36 5.78,3.55 6.13,1.67 36.68,-19.45 2.74,-12.57 -2.67,-15.21 -6.8,-13.35 -8.71,-6.06 -21.28,-4.45 -9.18,-5.02 3.38,-12.34 7.99,-16.78 2.31,-8.78 -1.66,-12.5 -3.72,-9.75 1.12,-8.21 12.91,-8.17 7.87,-7.12 7.63,-10.28 2.07,-10.91 -8.64,-8.88 0.07,-8.28 6.63,-7.3 23.82,-40.2 7.91,-3.26 7.62,-7.23 2.88,-18.2 -2.3,-12.96 -4.39,-8.16 -4.17,-9.76 -1.66,-18.01 -3.35,-8.09 -8.16,-5.83 -10.04,-3.49 -8.74,-1.11 -37.37,6.57 -8.66,-2.55 -5.15,-5.9 -4.22,-7.46 -5.67,-7.12 -15.27,-9.83 -9.25,-3.98 -8.22,-1.61 -5.04,-4.81 0,-9.83 5.4,-8.19 10.93,0.08 0.06,-7.59 -18.78,0.55 -8.75,-2.3 -7.67,-6.78 6.43,-4.79 8.05,-1.9 18.46,0.08 8.53,-4.08 9.24,-9.94 15.36,-23.74 -16.33,-21.98 -10.88,-10.38 -11.77,-6.64 -29.15,-6.12 -11.5,-8.7 5.58,-15.84 7.87,-0.12 36.1,14.97 16.32,-0.97 5.48,1.14 4.66,3.66 4.38,5.32 5.31,4.93 7.31,2.13 13.85,-5.8 26.02,-28.3 13.32,-11.03 35.26,-9.14 8.53,-6.29 5.2,-16.22 15.07,-84.27 1.65,-4.93 -1.03,-3.4 -6.11,-5.01 -9.61,-0.39 -9,5.43 -7.5,0.9 -4.9,-13.85 8.05,-2.51 7.61,-4.75 6.5,-6.55 4.33,-8.06 2.49,-9.35 1.46,-12.87 -2.6,-11.52 -9.5,-4.99 -7.42,4.64 -9.44,20.83 -5.55,4.66 -26.72,-2.27 -8.38,1.94 -12.14,7.08 0.82,4.43 5.21,4.36 1.13,6.91 -11.42,16.4 -4.27,10.09 4.54,4.47 16.97,6.76 -3.57,12.85 -15.24,8.66 -18.1,-5.61 -3.59,-6.71 -8.23,-22.72 -7.12,-12.48 -3.91,-8.43 -2.96,-3.76 -4.83,-1.59 -10.42,1.42 -4.41,-3.83 -10.92,-12.96 -26.59,-22.95 -8.6,-13.75 -4.04,-23.54 -9.48,-3.28 -10.9,1.2 -13.02,12.18 -11.61,-2.71 -7.01,-6.36 -9.15,-2.58 -6.21,-6.53 -9.63,-1.82 -46.91,-0.02 -11.37,4.56 -4.76,13.22 -1.97,15.52 -2.96,11.2 -10.78,9.51 -136.16,32.03 -50.37,20.75 -51.21,8.95 -14.98,-2.26 -43.74,-16.3 -23.66,1.13 -22.04,7.06 5.19,18.84 -4.73,7.61 8.75,30.78 -5.29,28.26 -10.12,27.42 -5.94,28.27 2.63,36.04 7.74,29.81 9.3,27.33 7.05,28.95 -67.66,12.49 -7.58,-0.7 -2.43,-9.24 -1.92,-43.12 -4,-5.44 -6.27,-1.16 -8.24,-9.21 -8.86,-12.42 -9.88,-5.79 -9.82,2.37 -8.62,12.25 -7.11,27.72 1.07,26.68 4.22,26.94 2.66,28.84 12.01,21.71 26.4,3.78 26.86,-8.05 13.34,-14.17 -8.5,-2.25 -7.02,-5.7 -11.08,-14.66 1.76,-12.49 37.98,-5.74 34.81,-8.41 12.73,5.12 -1.28,21.17 -11.48,37.95 -7.99,47.71 -4.56,47.64 1.31,12.71 5.79,15.55 1.36,9.71 -1.05,14.27 -7,27.93 -5.51,50.18 -4.46,23.83 -8.97,21.38 -15.95,12.69 -22.52,5.71 -42.15,1.39 -30.45,9.83 -25.54,24.43 -56.43,86.22 0.54,7.87 13.45,2.4 0.07,6.9 -12.14,5.18 -14.45,1.3 -14.18,-3.48 -10.98,-9.37 -7.4,-15.57 1.84,-10.6 18.37,-20.21 -5.82,-1.38 -3.75,-2.6 -8.21,-11.07 14.53,-2.86 17.11,-11.34 14.2,-16.76 5.82,-19.32 -8.2,-3.03 -74.93,63.9 -15.35,9.21 -36.9,7.24 -9.52,10.02 -0.57,16.63 36.68,94.38 12.29,42.99 8.4,45.63 1.7,45.04 -27.22,219.05 -2.96,11.2 -1.78,2.43 -0.58,5.25 0.72,5.16 1.83,2.34 3.72,-1.31 1.64,-2.9 1.07,-2.83 1.79,-1.32 4.05,-5.91 14.4,-85.54 10.9,-29.66 1.47,-12.27 -1.54,-10.62 -6.33,-15.26 -1.57,-12.38 2.02,-15.29 5.34,-3.14 28.35,15.44 30.09,23.55 14.22,4.89 24.51,19.06 25.2,25.99 3.71,18.15 -3.96,19.27 -8.48,18.91 -9.79,17.12 -23.19,30.59 0.34,34.53 -6.62,40 -15.76,25.7 -21.38,15.8 -47.71,22.5 -12.96,2 -5.78,-9.4 0.06,-47.5 -1.38,-22.6 -4.11,-25.2 2.08,-18.58 -1.83,-7.11 -9.05,3.02 -2.5,5.9 -2.63,11.67 -2.08,13.3 -1.79,80.8 2.2,25.2 15.91,69.3 2.32,26.2 -2.15,385.4 2.72,18.7 4.75,19 28.7,95.9 12.83,29.7 9.21,14.3 3.7,-3.1 2.36,-9.6 5.57,-5.6 -0.53,-7.9 -14.22,-36 -4.87,-9.8 -0.08,-7.6 3.82,-3.8 4.03,-2.1 11.08,-1.2 2.11,-4.9 2.22,-10.7 3.12,-10.8 4.96,-4.9 25.14,-4.8 6.74,-4.7 -8.94,-5.2 2.18,-10.3 -1.83,-18 3.45,-10.4 5.54,-4.5 4.8,2.8 1.72,7.4 -3.53,9.3 0.08,7.7 19.43,6.2 29.78,0.6 27.25,-6 11.89,-13 5.71,-2 30.18,-24.8 8.48,3.8 8.07,9.6 6.69,12.3 4.65,12 3.81,0 18.29,-52.4 0.4,-8.6 -2.38,-4.6 0.95,-10.5 3.89,-10.4 10,-8.4 11.88,-15.6 7.11,-4.4 10.57,0.1 37.66,7.9 4.02,2 3.33,5.7 2.13,8.3 0.86,10.5 0.32,16.3 0.87,11 3.58,22.8 2.75,6.4 3.25,2.6 1.35,3.5 -3.02,9.6 -18.99,15.3 -6.22,0.6 -4.56,2.7 -2.77,5.7 -0.91,9.7 -2.74,9.8 -10.38,5.7 0.24,11.5 8.28,7.4 27.96,1.8 39.82,67.2 9.25,5.5 25.21,7.7 33.79,1.5 1.14,2.5 -14.67,5.5 -26.76,1 -6.18,6.2 5.67,19.8 9.01,17.4 7.29,9.4 19.48,14.6 28.82,28.5 11.42,2.5 6.75,-1.2 11.24,-5.8 6.82,-1.2 7.19,1.9 3.72,4.6 2.97,5.2 4.92,4.1 10.66,0.5 14.01,-4.6 12.14,-9.2 5.26,-13.6 3.71,-26 8.49,-15.3 9.95,-11 7.55,-12.6 8.03,-23.4 -16.95,-4.3 -17.98,-28.8 -15.51,-4.3 0.01,-8.3 2.55,-10.1 -6.64,-10 -16.84,-17.2 -5.7,-15.9 -0.69,-14 2.63,-35.5 4.58,-10.6 10.16,1.8 10.09,11.9 8.19,36.5 9.07,2.5 11.04,-2.3 9.71,2.1 -3.77,10.8 -5.08,3.8 -5.9,-1.3 -6.2,-5 4.67,12.1 4.74,8.7 4.22,9.7 3.07,15.1 4.12,0 -3.62,-24.9 16.05,-3.8 21.8,3.8 13.82,-1.9 8.39,-5.6 9.32,1.9 8.43,-0.8 5.51,-14 -1.67,-10.9 -14.06,-20.8 -5.41,-14.7 6.61,-2.6 1.29,-4.9 0.54,-6.8 4.22,-8.4 6,-6.1 15.48,-9 2.43,-4.6 1.49,-6 2.76,-4.8 5.98,-0.5 8.81,18.7 3.65,5.6 8.81,-8.2 7.33,8.9 -0.21,14.1 -13.75,7.3 -19.06,-11.5 -1.13,-3.4 -2.86,-1 -6.42,0.6 -5.28,3 -0.41,6.3 1.88,5.5 1.65,0.3 0.9,41.4 9.86,35.7 5.43,31.6 -12.61,28.9 -6.04,6.7 -3.24,2.6 -12.08,-1.8 -24.64,-11.5 -6.05,-8.7 -13.15,-8.6 -13.04,-0.9 -5.42,14.3 6.87,13.5 28.16,17.2 6.27,18.8 3.48,15.6 -1.29,7.7 -15.37,5.4 -6.21,5.5 -5.33,7.3 -4.26,7.8 -3.17,7.4 -3.57,11.1 -2.31,13.4 0.54,13.7 3.2,3.7 13.88,22.2 1.56,5.3 2.88,5.8 -0.54,12.8 -2.88,12.8 -3.86,5.8 -7.12,1.5 -5.42,3.8 -9.85,10.5 11.26,27.9 11.32,22.1 12.27,18.1 18.78,19.5 4.27,2.5 4.58,1.6 5.21,0.5 3.19,3.5 3.39,15.7 1.87,3.6 89.91,30.8 20.14,-0.5 71.09,-29.1 0.07,-8.3 -7.86,-5.3 -0.45,-6.9 4.83,-6.5 8.21,-4.1 8.28,0.8 5.86,5.8 21.9,35.6 9.78,20.2 10.95,16 23.67,9.1 19.99,13 29.05,-7.3 64.66,8.4 -36.4,33.1 -18.12,6.7 -12.4,10.2 -6.54,2.3 -4.85,-2.7 -21.03,-29.4 -11.52,-12.3 -12.85,-6.3 -11.37,8.6 -11.14,11.2 -11.43,-3.4 -21.13,-20 -24.29,-10.5 -52.67,-1.2 -138.69,-51.1 -11.98,-1.2 -11.51,5.2 -68.08,57.2 3.85,-14.7 -4.94,-7.5 -19.94,-8.3 -14.85,-11.2 -7.72,-3.9 -10.23,-0.1 3.76,6.9 -10.85,7.1 -10.61,-2.3 -10.29,-8.5 -10.11,-11.4 -9.85,1.1 -12.38,-12.3 -10.56,-13.4 -4.53,-2 -5.19,14.8 -12.04,5.8 -13.82,-1.4 -10.37,-7 8.89,-9.8 -22.16,-20.6 -30.22,-15.9 -21.66,6.5 -14.28,-3.1 -14.24,-6.5 -6.57,-8 -3.5,-21.6 -8.19,-13 -9.74,-9.9 -7.94,-12.4 -3.7,-31.6 -0.65,-2.6 -1.12,-9.6 -2.87,-5.6 -4,-4.6 -19.61,-30 -13.76,-1.1 -6.58,-3.1 -2.88,-6.4 -4.58,-4.4 -10,-4.1 -10.15,-7.4 -4.66,-14.6 4.96,-37.8 -0.76,-17.6 -9.25,-10.2 -0.05,-7 24.5,2.4 5.49,-2.6 4.59,-13.6 -3.87,-9.4 -7.89,-5.5 -8.05,-1.7 -7.07,2.4 -14.29,10.6 -7.95,2.4 -7.36,-2.1 -12.37,-10 -7.74,-2.9 -0.08,-8.3 29.32,8.1 8.78,-2.9 12.72,-10.3 5.93,-2.2 43.5,18.6 8.9,-3.8 1.54,-8.1 -1.78,-21.3 0.01,-9.3 9.1,-14.8 4.13,-10.7 -9.17,-16.3 -6.39,-7.8 -8.27,-3.5 -8.7,-1.3 -5.35,-3.5 0.09,-4.7 7.78,-5 -12.51,-0.2 -16.89,15.9 -14.95,20.5 -6.37,13.2 -5.45,16.7 -13.71,13.4 -17.09,9.1 -15.74,3.4 -10.71,5.9 -12.85,14.2 -11.98,17.4 -7.89,15.4 -6.3,40.2 -3.79,6.2 -8.37,3 -17,11.7 -10.16,0.9 8.4,-41.1 2.84,-24.1 -1.62,-15.1 -9.19,-1.4 -4.36,23.4 -0.69,51.4 7.64,45.9 14.12,34.2 110.82,177.7 32.96,34 50.66,79.5 19.33,18.3 21.65,-0.6 50.36,-18.2 28.36,-1.8 54.87,12.4 24.36,12.6 28.93,32.4 10.94,4.9 151.36,-21.8 54.94,6.7 54.85,20.8 51.43,35.6 45.1,51.4 127.2,242.2 22.4,34.3 40.65,46.9 20.12,40.2 7.84,5.8 13.98,21.2 28.88,6.2 55.11,-3.2 53.71,10.1 48.5,22.8 41.85,32.1 71.14,77.2 38.9,30.8 15.85,6.6 17.92,2.3 17.32,-3.6 14.49,-11.4 -32.2,-13.1 -30.21,-30.8 -47.27,-77.2"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 3678.7,11810.4 0,0 -16.48,-67.1 17.89,-49.9 31.22,-45.4 23.73,-53.7 -16.4,-49.3 1.67,-58.1 15.27,-113.8 -9.99,-16.9 -30.39,-23.6 -14.04,-18.4 -20.49,-45.4 -9.01,-30.4 -5.92,-48.1 -13.97,-53.9 -6.99,-17.9 -4.99,-7.8 -4.87,-4.5 -6.56,-2.1 -28.7,-0.2 -8.87,-2.4 -10.93,-3.6 -51.44,33.6 -38.36,40.3 -25.11,9.8 -20.55,20.6 -15.1,4.5 -12.05,-7.1 -16.83,-28.4 -11.62,-3.1 11.24,-1.2 12.61,16.8 10.54,7.7 10.7,5.5 12.61,-5.1 60.87,-62.5 19.99,-9.5 23.72,-21 13.4,-4.6 49.07,-0.3 11.42,-6.2 -16.55,-21.6 -3.6,-9.2 -2.62,-14.8 -2.83,-30.4 -1.87,-8.1 4.75,-18.2 7.74,-56.7 3.43,-44.7 4.86,-23.6 15.75,-46.9 5.46,-7.3 6.13,-6.4 1.54,-7.3 -8.29,-10 -4.86,-0.3 -14.62,6.5 -7.69,1.6 -27.58,-0.5 -9.54,-4.4 -10.88,-11.2 -10.44,10.8 -11.72,8.5 -13.33,2.4 -15.25,-7.4 -13.49,-11.1 -5.6,-2.4 -9.9,-2.1 -9.23,-4.6 -18.69,-15.9 -22.36,-8.5 -27.45,-21.3 -85.38,-13.4 0.08,-7.6 27.83,-4.7 91.76,29.7 20.33,13.2 8.89,2.5 1.93,2.4 0.3,5.2 1.19,5.2 4.52,2.5 4.96,-1.2 8.38,-5.6 3.76,-1.3 6.55,1.8 7.46,4.6 6.17,6.4 2.47,7.3 3.87,15.1 9.51,2.4 20.3,-6.2 -1.51,-4.1 -2.86,-10.5 40.58,-7.2 25.49,2 16.13,10.5 14.58,5.9 11.87,-24.3 3.71,-36.8 -9.97,-31.8 -40.75,-32.7 -29.91,-35.2 -5.48,-2.6 -3.69,-36.3 -1.98,-10.1 4.93,-12.7 -2.58,-15.9 -6.62,-15 -7.35,-9.2 18.89,1.4 6.96,6 -1.52,42.1 1.43,30.6 5.96,14.9 25.37,20 19.79,28 10.77,7.4 12.79,-7.9 2.29,-7 3.84,-23.7 0.71,-7.1 2.74,-3.7 18.67,-14.9 46.51,-25.5 50.43,-4.8 145.58,26.7 20.46,-1.8 20.33,-10.8 9.5,-10.2 20.81,-34.5 39.36,-37.7 0.19,-6.8 -13.99,-14.6 -6.87,-25.9 -2.29,-29.7 0.15,-26.2 -6.08,-24.9 -54.77,-83 -28.29,-20.6 -10.57,-15.5 -2.95,-14.9 2.48,-34.6 -7.74,-34 -19.54,-4.6 -22.09,15.4 -15.05,25.5 15.9,3 6.39,6.3 2.93,14.1 -2.1,14.9 -6.32,4.4 -8.11,1.2 -7.57,5.5 -15.05,5 -14.88,-18.8 -13.48,-24.5 -19.35,-23.9 5.01,-25.8 8.73,-28.2 3.19,-18.6 -5.8,-8 -9.91,-5.1 -10.58,-1.4 -7.84,2.7 -6.44,9 -6.63,21.2 -4.8,10.9 4.83,5.3 10.36,8 5.66,2.3 -4.7,12.3 -5.58,5.9 -25.84,7.2 -5.55,-1.2 -13.74,-9.5 -17.32,-3.7 -10.83,8.4 -9.74,15.4 -13.74,16.9 13.76,1.7 20.36,17.4 11.63,4.6 8.92,-6.3 11.01,-11.5 10.74,-4 7.93,15.7 -10.89,17.5 0.47,13.9 17.45,37.2 -8.51,-0.3 -9.03,3.4 -8.33,6.5 -6.26,8.4 -6.94,4.4 -15.83,-7.9 -8.59,7 -2.07,-15 -3.2,-9.3 -5.34,-5 -8.61,-1.6 -4.49,-6 -15.81,-36.9 -14.87,-19.9 -32.95,-28.3 -14.63,-21.3 -8.21,-26.3 4.4,-16.1 10.55,-15.1 10.12,-22.7 4.63,-28 -2.18,-21.6 -7.37,-19.6 -10.81,-22.3 14.75,7.5 10.99,1.6 3.11,-7.8 -15.02,-35.4 -1.22,-14.23 1.54,-28.17 -0.23,-19.39 -0.69,-8.52 -2.28,-9.42 -14.7,-20 -2.26,-7.92 -3.04,0.01 -6.7,-4.61 -7.06,-6.96 -4.22,-6.81 3.15,-2.76 4.72,-10.79 2.53,-11.81 -5.29,-8.14 -1.92,-5.44 -3.21,-5.52 -5.84,-2.58 -7.74,1.94 -5.98,5.25 -9.96,15.23 -2.97,7.11 -1.94,8.19 -2.85,8.27 -5.94,7.24 -7.93,2.63 -60.8,-3.68 -8.04,-2.94 -4.95,-6.66 -3.77,-7.61 -4.26,-5.87 -16.21,-6.73 -33.02,1.58 -15.16,-3.96 15.88,-17.26 89.95,-18.62 6.49,-4.91 -2.16,-11.73 -9.96,-22.82 -4.9,-19.54 1.61,-8.52 8.79,-1.88 16.34,0.53 0.12,-7.59 -25.47,-15.16 -7.35,-12.59 7.41,-18.19 -2.31,-2.04 -5.75,-6.41 -14.88,8.93 -68.77,-21.11 -31.31,-17.29 -18.51,-1.94 -38.83,14.81 -22.29,19.44 -5.81,3.05 -65.01,-0.31 -14.8,7.19 -1.98,-4.33 -1.08,-3.06 -0.69,-3.34 -0.41,-5.24 13.11,-6.22 45.28,-0.12 8.24,-5.04 32.89,-33.26 6.84,-13.22 4.61,-11.97 6.47,-8.56 12.59,-3.26 60.14,0.7 -10.13,-12.78 -32.45,-26.43 -17.21,-22.74 -8.48,-5.96 -14.58,-2.11 -5.36,-4.83 -1.06,-10.42 -0.03,-10.47 -2.1,-4.79 -39.7,-10.34 -14.26,-10.59 -8.72,-2.44 -7.65,1.66 -14.21,6.09 -8.35,-0.41 1.73,-4.53 2.64,-3.03 -9.04,-13.01 -23.31,-7.94 -10.57,-9.8 11.15,-6.94 11.82,0.9 31.02,8.36 5.78,3.55 6.13,1.67 36.68,-19.45 2.74,-12.57 -2.67,-15.21 -6.8,-13.35 -8.71,-6.06 -21.28,-4.45 -9.18,-5.02 3.38,-12.34 7.99,-16.78 2.31,-8.78 -1.66,-12.5 -3.72,-9.75 1.12,-8.21 12.91,-8.17 7.87,-7.12 7.63,-10.28 2.07,-10.91 -8.64,-8.88 0.07,-8.28 6.63,-7.3 23.82,-40.2 7.91,-3.26 7.62,-7.23 2.88,-18.2 -2.3,-12.96 -4.39,-8.16 -4.17,-9.76 -1.66,-18.01 -3.35,-8.09 -8.16,-5.83 -10.04,-3.49 -8.74,-1.11 -37.37,6.57 -8.66,-2.55 -5.15,-5.9 -4.22,-7.46 -5.67,-7.12 -15.27,-9.83 -9.25,-3.98 -8.22,-1.61 -5.04,-4.81 0,-9.83 5.4,-8.19 10.93,0.08 0.06,-7.59 -18.78,0.55 -8.75,-2.3 -7.67,-6.78 6.43,-4.79 8.05,-1.9 18.46,0.08 8.53,-4.08 9.24,-9.94 15.36,-23.74 -16.33,-21.98 -10.88,-10.38 -11.77,-6.64 -29.15,-6.12 -11.5,-8.7 5.58,-15.84 7.87,-0.12 36.1,14.97 16.32,-0.97 5.48,1.14 4.66,3.66 4.38,5.32 5.31,4.93 7.31,2.13 13.85,-5.8 26.02,-28.3 13.32,-11.03 35.26,-9.14 8.53,-6.29 5.2,-16.22 15.07,-84.27 1.65,-4.93 -1.03,-3.4 -6.11,-5.01 -9.61,-0.39 -9,5.43 -7.5,0.9 -4.9,-13.85 8.05,-2.51 7.61,-4.75 6.5,-6.55 4.33,-8.06 2.49,-9.35 1.46,-12.87 -2.6,-11.52 -9.5,-4.99 -7.42,4.64 -9.44,20.83 -5.55,4.66 -26.72,-2.27 -8.38,1.94 -12.14,7.08 0.82,4.43 5.21,4.36 1.13,6.91 -11.42,16.4 -4.27,10.09 4.54,4.47 16.97,6.76 -3.57,12.85 -15.24,8.66 -18.1,-5.61 -3.59,-6.71 -8.23,-22.72 -7.12,-12.48 -3.91,-8.43 -2.96,-3.76 -4.83,-1.59 -10.42,1.42 -4.41,-3.83 -10.92,-12.96 -26.59,-22.95 -8.6,-13.75 -4.04,-23.54 -9.48,-3.28 -10.9,1.2 -13.02,12.18 -11.61,-2.71 -7.01,-6.36 -9.15,-2.58 -6.21,-6.53 -9.63,-1.82 -46.91,-0.02 -11.37,4.56 -4.76,13.22 -1.97,15.52 -2.96,11.2 -10.78,9.51 -136.16,32.03 -50.37,20.75 -51.21,8.95 -14.98,-2.26 -43.74,-16.3 -23.66,1.13 -22.04,7.06 5.19,18.84 -4.73,7.61 8.75,30.78 -5.29,28.26 -10.12,27.42 -5.94,28.27 2.63,36.04 7.74,29.81 9.3,27.33 7.05,28.95 -67.66,12.49 -7.58,-0.7 -2.43,-9.24 -1.92,-43.12 -4,-5.44 -6.27,-1.16 -8.24,-9.21 -8.86,-12.42 -9.88,-5.79 -9.82,2.37 -8.62,12.25 -7.11,27.72 1.07,26.68 4.22,26.94 2.66,28.84 12.01,21.71 26.4,3.78 26.86,-8.05 13.34,-14.17 -8.5,-2.25 -7.02,-5.7 -11.08,-14.66 1.76,-12.49 37.98,-5.74 34.81,-8.41 12.73,5.12 -1.28,21.17 -11.48,37.95 -7.99,47.71 -4.56,47.64 1.31,12.71 5.79,15.55 1.36,9.71 -1.05,14.27 -7,27.93 -5.51,50.18 -4.46,23.83 -8.97,21.38 -15.95,12.69 -22.52,5.71 -42.15,1.39 -30.45,9.83 -25.54,24.43 -56.43,86.22 0.54,7.87 13.45,2.4 0.07,6.9 -12.14,5.18 -14.45,1.3 -14.18,-3.48 -10.98,-9.37 -7.4,-15.57 1.84,-10.6 18.37,-20.21 -5.82,-1.38 -3.75,-2.6 -8.21,-11.07 14.53,-2.86 17.11,-11.34 14.2,-16.76 5.82,-19.32 -8.2,-3.03 -74.93,63.9 -15.35,9.21 -36.9,7.24 -9.52,10.02 -0.57,16.63 36.68,94.38 12.29,42.99 8.4,45.63 1.7,45.04 -27.22,219.05 -2.96,11.2 -1.78,2.43 -0.58,5.25 0.72,5.16 1.83,2.34 3.72,-1.31 1.64,-2.9 1.07,-2.83 1.79,-1.32 4.05,-5.91 14.4,-85.54 10.9,-29.66 1.47,-12.27 -1.54,-10.62 -6.33,-15.26 -1.57,-12.38 2.02,-15.29 5.34,-3.14 28.35,15.44 30.09,23.55 14.22,4.89 24.51,19.06 25.2,25.99 3.71,18.15 -3.96,19.27 -8.48,18.91 -9.79,17.12 -23.19,30.59 0.34,34.53 -6.62,40 -15.76,25.7 -21.38,15.8 -47.71,22.5 -12.96,2 -5.78,-9.4 0.06,-47.5 -1.38,-22.6 -4.11,-25.2 2.08,-18.58 -1.83,-7.11 -9.05,3.02 -2.5,5.9 -2.63,11.67 -2.08,13.3 -1.79,80.8 2.2,25.2 15.91,69.3 2.32,26.2 -2.15,385.4 2.72,18.7 4.75,19 28.7,95.9 12.83,29.7 9.21,14.3 3.7,-3.1 2.36,-9.6 5.57,-5.6 -0.53,-7.9 -14.22,-36 -4.87,-9.8 -0.08,-7.6 3.82,-3.8 4.03,-2.1 11.08,-1.2 2.11,-4.9 2.22,-10.7 3.12,-10.8 4.96,-4.9 25.14,-4.8 6.74,-4.7 -8.94,-5.2 2.18,-10.3 -1.83,-18 3.45,-10.4 5.54,-4.5 4.8,2.8 1.72,7.4 -3.53,9.3 0.08,7.7 19.43,6.2 29.78,0.6 27.25,-6 11.89,-13 5.71,-2 30.18,-24.8 8.48,3.8 8.07,9.6 6.69,12.3 4.65,12 3.81,0 18.29,-52.4 0.4,-8.6 -2.38,-4.6 0.95,-10.5 3.89,-10.4 10,-8.4 11.88,-15.6 7.11,-4.4 10.57,0.1 37.66,7.9 4.02,2 3.33,5.7 2.13,8.3 0.86,10.5 0.32,16.3 0.87,11 3.58,22.8 2.75,6.4 3.25,2.6 1.35,3.5 -3.02,9.6 -18.99,15.3 -6.22,0.6 -4.56,2.7 -2.77,5.7 -0.91,9.7 -2.74,9.8 -10.38,5.7 0.24,11.5 8.28,7.4 27.96,1.8 39.82,67.2 9.25,5.5 25.21,7.7 33.79,1.5 1.14,2.5 -14.67,5.5 -26.76,1 -6.18,6.2 5.67,19.8 9.01,17.4 7.29,9.4 19.48,14.6 28.82,28.5 11.42,2.5 6.75,-1.2 11.24,-5.8 6.82,-1.2 7.19,1.9 3.72,4.6 2.97,5.2 4.92,4.1 10.66,0.5 14.01,-4.6 12.14,-9.2 5.26,-13.6 3.71,-26 8.49,-15.3 9.95,-11 7.55,-12.6 8.03,-23.4 -16.95,-4.3 -17.98,-28.8 -15.51,-4.3 0.01,-8.3 2.55,-10.1 -6.64,-10 -16.84,-17.2 -5.7,-15.9 -0.69,-14 2.63,-35.5 4.58,-10.6 10.16,1.8 10.09,11.9 8.19,36.5 9.07,2.5 11.04,-2.3 9.71,2.1 -3.77,10.8 -5.08,3.8 -5.9,-1.3 -6.2,-5 4.67,12.1 4.74,8.7 4.22,9.7 3.07,15.1 4.12,0 -3.62,-24.9 16.05,-3.8 21.8,3.8 13.82,-1.9 8.39,-5.6 9.32,1.9 8.43,-0.8 5.51,-14 -1.67,-10.9 -14.06,-20.8 -5.41,-14.7 6.61,-2.6 1.29,-4.9 0.54,-6.8 4.22,-8.4 6,-6.1 15.48,-9 2.43,-4.6 1.49,-6 2.76,-4.8 5.98,-0.5 8.81,18.7 3.65,5.6 8.81,-8.2 7.33,8.9 -0.21,14.1 -13.75,7.3 -19.06,-11.5 -1.13,-3.4 -2.86,-1 -6.42,0.6 -5.28,3 -0.41,6.3 1.88,5.5 1.65,0.3 0.9,41.4 9.86,35.7 5.43,31.6 -12.61,28.9 -6.04,6.7 -3.24,2.6 -12.08,-1.8 -24.64,-11.5 -6.05,-8.7 -13.15,-8.6 -13.04,-0.9 -5.42,14.3 6.87,13.5 28.16,17.2 6.27,18.8 3.48,15.6 -1.29,7.7 -15.37,5.4 -6.21,5.5 -5.33,7.3 -4.26,7.8 -3.17,7.4 -3.57,11.1 -2.31,13.4 0.54,13.7 3.2,3.7 13.88,22.2 1.56,5.3 2.88,5.8 -0.54,12.8 -2.88,12.8 -3.86,5.8 -7.12,1.5 -5.42,3.8 -9.85,10.5 11.26,27.9 11.32,22.1 12.27,18.1 18.78,19.5 4.27,2.5 4.58,1.6 5.21,0.5 3.19,3.5 3.39,15.7 1.87,3.6 89.91,30.8 20.14,-0.5 71.09,-29.1 0.07,-8.3 -7.86,-5.3 -0.45,-6.9 4.83,-6.5 8.21,-4.1 8.28,0.8 5.86,5.8 21.9,35.6 9.78,20.2 10.95,16 23.67,9.1 19.99,13 29.05,-7.3 64.66,8.4 -36.4,33.1 -18.12,6.7 -12.4,10.2 -6.54,2.3 -4.85,-2.7 -21.03,-29.4 -11.52,-12.3 -12.85,-6.3 -11.37,8.6 -11.14,11.2 -11.43,-3.4 -21.13,-20 -24.29,-10.5 -52.67,-1.2 -138.69,-51.1 -11.98,-1.2 -11.51,5.2 -68.08,57.2 3.85,-14.7 -4.94,-7.5 -19.94,-8.3 -14.85,-11.2 -7.72,-3.9 -10.23,-0.1 3.76,6.9 -10.85,7.1 -10.61,-2.3 -10.29,-8.5 -10.11,-11.4 -9.85,1.1 -12.38,-12.3 -10.56,-13.4 -4.53,-2 -5.19,14.8 -12.04,5.8 -13.82,-1.4 -10.37,-7 8.89,-9.8 -22.16,-20.6 -30.22,-15.9 -21.66,6.5 -14.28,-3.1 -14.24,-6.5 -6.57,-8 -3.5,-21.6 -8.19,-13 -9.74,-9.9 -7.94,-12.4 -3.7,-31.6 -0.65,-2.6 -1.12,-9.6 -2.87,-5.6 -4,-4.6 -19.61,-30 -13.76,-1.1 -6.58,-3.1 -2.88,-6.4 -4.58,-4.4 -10,-4.1 -10.15,-7.4 -4.66,-14.6 4.96,-37.8 -0.76,-17.6 -9.25,-10.2 -0.05,-7 24.5,2.4 5.49,-2.6 4.59,-13.6 -3.87,-9.4 -7.89,-5.5 -8.05,-1.7 -7.07,2.4 -14.29,10.6 -7.95,2.4 -7.36,-2.1 -12.37,-10 -7.74,-2.9 -0.08,-8.3 29.32,8.1 8.78,-2.9 12.72,-10.3 5.93,-2.2 43.5,18.6 8.9,-3.8 1.54,-8.1 -1.78,-21.3 0.01,-9.3 9.1,-14.8 4.13,-10.7 -9.17,-16.3 -6.39,-7.8 -8.27,-3.5 -8.7,-1.3 -5.35,-3.5 0.09,-4.7 7.78,-5 -12.51,-0.2 -16.89,15.9 -14.95,20.5 -6.37,13.2 -5.45,16.7 -13.71,13.4 -17.09,9.1 -15.74,3.4 -10.71,5.9 -12.85,14.2 -11.98,17.4 -7.89,15.4 -6.3,40.2 -3.79,6.2 -8.37,3 -17,11.7 -10.16,0.9 8.4,-41.1 2.84,-24.1 -1.62,-15.1 -9.19,-1.4 -4.36,23.4 -0.69,51.4 7.64,45.9 14.12,34.2 110.82,177.7 32.96,34 50.66,79.5 19.33,18.3 21.65,-0.6 50.36,-18.2 28.36,-1.8 54.87,12.4 24.36,12.6 28.93,32.4 10.94,4.9 151.36,-21.8 54.94,6.7 54.85,20.8 51.43,35.6 45.1,51.4 127.2,242.2 22.4,34.3 40.65,46.9 20.12,40.2 7.84,5.8 13.98,21.2 28.88,6.2 55.11,-3.2 53.71,10.1 48.5,22.8 41.85,32.1 71.14,77.2 38.9,30.8 15.85,6.6 17.92,2.3 17.32,-3.6 14.49,-11.4 -32.2,-13.1 -30.21,-30.8 -47.27,-77.2"
                style="fill:#3cb271;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7159" /><path
+               id="path3116" /><path
                d="m 3347.06,587.141 0,0 10.3,-8.801 9.46,-20.731 -31.64,1.879 -9.54,-2.258 -1.98,-3.89 -4.1,-14.61 -3.94,-4.32 -4.84,-1.051 -15.75,0.871 -4.58,2.622 -1.3,9.757 -4.98,1.993 -5.68,-2.211 -8.93,-9.649 -5.42,-2.762 -11.4,-0.218 -10.68,2.629 -9.97,4.949 -9.61,6.789 -26.03,-21.879 -17.55,-5.488 -70.09,61.129 -3.05,0.589 -11.9,28.372 -1.2,5.48 -7.09,7.508 -123.93,73.121 -18.03,25.73 17.59,1.891 -0.62,10.309 -17.06,25.058 -6.12,16.262 -4.43,16.059 -5.52,15.179 -9.8,13.821 -13.08,9.339 -30.02,12.52 -13.54,9.133 -24.74,26.297 -6,10.929 29.87,-4.59 78.09,-56.668 20.58,-3.48 5.42,-3.371 3.83,-9.219 5.05,-24.398 3.31,-4.934 71.97,-47.226 14.09,-4.282 32.47,-0.48 13.94,-2.692 40.22,-20.476 23.78,-2.633 7.43,-4.098 6.88,-8.91 3.37,-10.07 2.64,-10.922 5.21,-11.687 12,-14.922 11.64,-6.16 31.03,-5.79 30.52,-14.898 31.49,-22.531 31.96,-7.91"
                style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 3347.06,587.141 0,0 10.3,-8.801 9.46,-20.731 -31.64,1.879 -9.54,-2.258 -1.98,-3.89 -4.1,-14.61 -3.94,-4.32 -4.84,-1.051 -15.75,0.871 -4.58,2.622 -1.3,9.757 -4.98,1.993 -5.68,-2.211 -8.93,-9.649 -5.42,-2.762 -11.4,-0.218 -10.68,2.629 -9.97,4.949 -9.61,6.789 -26.03,-21.879 -17.55,-5.488 -70.09,61.129 -3.05,0.589 -11.9,28.372 -1.2,5.48 -7.09,7.508 -123.93,73.121 -18.03,25.73 17.59,1.891 -0.62,10.309 -17.06,25.058 -6.12,16.262 -4.43,16.059 -5.52,15.179 -9.8,13.821 -13.08,9.339 -30.02,12.52 -13.54,9.133 -24.74,26.297 -6,10.929 29.87,-4.59 78.09,-56.668 20.58,-3.48 5.42,-3.371 3.83,-9.219 5.05,-24.398 3.31,-4.934 71.97,-47.226 14.09,-4.282 32.47,-0.48 13.94,-2.692 40.22,-20.476 23.78,-2.633 7.43,-4.098 6.88,-8.91 3.37,-10.07 2.64,-10.922 5.21,-11.687 12,-14.922 11.64,-6.16 31.03,-5.79 30.52,-14.898 31.49,-22.531 31.96,-7.91"
                style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7161" /><path
+               id="path3118" /><path
                d="m 1311.87,7315.06 0,0 4.58,-6.76 4.31,-10.78 -5.7,3.69 -8.3,10.56 -5.54,2.25 -6.88,-0.99 -9.95,-4.8 -4.01,-1.08 -11.64,6.36 -8.68,13.29 -2.17,13.13 7.93,5.67 50.87,13.78 24.81,1.18 8.28,-17.64 -14.91,-1.72 -23.36,-9.33 -12.27,-2.54 -0.22,-6.9 7.3,-3.11 5.55,-4.26 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1311.87,7315.06 0,0 4.58,-6.76 4.31,-10.78 -5.7,3.69 -8.3,10.56 -5.54,2.25 -6.88,-0.99 -9.95,-4.8 -4.01,-1.08 -11.64,6.36 -8.68,13.29 -2.17,13.13 7.93,5.67 50.87,13.78 24.81,1.18 8.28,-17.64 -14.91,-1.72 -23.36,-9.33 -12.27,-2.54 -0.22,-6.9 7.3,-3.11 5.55,-4.26 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7163" /><path
+               id="path3120" /><path
                d="m 1542.4,7429.23 0,0 -140.24,-11.9 24.8,11.46 90.27,9.12 25.17,-8.68 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1542.4,7429.23 0,0 -140.24,-11.9 24.8,11.46 90.27,9.12 25.17,-8.68 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7165" /><path
+               id="path3122" /><path
                d="m 1715.79,7465.2 0,0 -1.05,-1.25 -1.84,0.16 -30.98,-11.63 -80.96,-8.69 -26.42,8.05 30.68,16.98 35.74,5.08 74.62,-3.35 0.21,-5.35 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1715.79,7465.2 0,0 -1.05,-1.25 -1.84,0.16 -30.98,-11.63 -80.96,-8.69 -26.42,8.05 30.68,16.98 35.74,5.08 74.62,-3.35 0.21,-5.35 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7167" /><path
+               id="path3124" /><path
                d="m 1766.18,7476.24 0,0 8.37,-7.03 -2.28,-4.37 -2.15,-1.62 -5.15,-1.5 -26.27,8.82 -9.56,-0.3 10.88,7.34 13.48,1.82 12.68,-3.16 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1766.18,7476.24 0,0 8.37,-7.03 -2.28,-4.37 -2.15,-1.62 -5.15,-1.5 -26.27,8.82 -9.56,-0.3 10.88,7.34 13.48,1.82 12.68,-3.16 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7169" /><path
+               id="path3126" /><path
                d="m 2260.13,7458.4 0,0 -10.49,-10.17 -3.3,-2.26 -5.78,1.56 -3.52,2.63 -4.01,0.57 -7.02,-4.52 0.1,7.54 8.42,14.27 13.03,5.59 14.83,-2.53 13.79,-10.22 -9.48,0.11 -6.57,-2.57 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2260.13,7458.4 0,0 -10.49,-10.17 -3.3,-2.26 -5.78,1.56 -3.52,2.63 -4.01,0.57 -7.02,-4.52 0.1,7.54 8.42,14.27 13.03,5.59 14.83,-2.53 13.79,-10.22 -9.48,0.11 -6.57,-2.57 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7171" /><path
+               id="path3128" /><path
                d="m 1901.45,7492.13 0,0 -0.97,-1.13 -1.64,0.14 -1.79,-1 -48.01,2.45 -22.47,-4.99 -2.04,-19.46 -19.46,-0.62 -5.68,5.47 -1.85,15.05 3.54,12.63 8.08,4.95 20.25,0.38 58.74,-0.67 13.12,-8.37 0.18,-4.83 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1901.45,7492.13 0,0 -0.97,-1.13 -1.64,0.14 -1.79,-1 -48.01,2.45 -22.47,-4.99 -2.04,-19.46 -19.46,-0.62 -5.68,5.47 -1.85,15.05 3.54,12.63 8.08,4.95 20.25,0.38 58.74,-0.67 13.12,-8.37 0.18,-4.83 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7173" /><path
+               id="path3130" /><path
                d="m 2014.99,7518.36 0,0 -14.88,-9.17 -18.66,-7.5 -18.96,-0.75 -15.95,11.04 -6.09,-8.57 -5.94,-4.2 -5.58,0.16 -5.03,4.75 17.08,20.73 27.83,5.65 55.7,-4.65 -0.12,-7.64 -9.4,0.15 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2014.99,7518.36 0,0 -14.88,-9.17 -18.66,-7.5 -18.96,-0.75 -15.95,11.04 -6.09,-8.57 -5.94,-4.2 -5.58,0.16 -5.03,4.75 17.08,20.73 27.83,5.65 55.7,-4.65 -0.12,-7.64 -9.4,0.15 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7175" /><path
+               id="path3132" /><path
                d="m 2101.14,7535.04 0,0 17.34,-11.01 -6.25,1.24 -7.09,-0.7 -27.62,6.75 -11.79,-0.44 -1.23,-13.33 -12.59,9.41 2.97,6.91 11.85,4.18 13.84,1.33 10.74,-1.2 9.83,-3.14 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2101.14,7535.04 0,0 17.34,-11.01 -6.25,1.24 -7.09,-0.7 -27.62,6.75 -11.79,-0.44 -1.23,-13.33 -12.59,9.41 2.97,6.91 11.85,4.18 13.84,1.33 10.74,-1.2 9.83,-3.14 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7177" /><path
+               id="path3134" /><path
                d="m 4443.02,7814.7 0,0 -17.47,-58.63 -6.62,-10.64 -7.93,-0.45 -0.87,7.74 3.87,19.52 -3.3,12.84 -5.48,-0.13 -3.27,-9.5 3.51,-15.3 -9.35,-8.38 -10.53,0.28 -10.78,5.85 -10.33,8.51 8.77,25.62 23.07,21.21 26.76,9.91 19.95,-8.45 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4443.02,7814.7 0,0 -17.47,-58.63 -6.62,-10.64 -7.93,-0.45 -0.87,7.74 3.87,19.52 -3.3,12.84 -5.48,-0.13 -3.27,-9.5 3.51,-15.3 -9.35,-8.38 -10.53,0.28 -10.78,5.85 -10.33,8.51 8.77,25.62 23.07,21.21 26.76,9.91 19.95,-8.45 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7179" /><path
+               id="path3136" /><path
                d="m 4468.94,7853.66 0,0 -3.72,-0.13 -4.37,20.04 0.03,2.71 3.22,8.34 43.69,23 8.79,9.3 -10.43,-16.1 -29.2,-28.92 -8.01,-18.24 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4468.94,7853.66 0,0 -3.72,-0.13 -4.37,20.04 0.03,2.71 3.22,8.34 43.69,23 8.79,9.3 -10.43,-16.1 -29.2,-28.92 -8.01,-18.24 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7181" /><path
+               id="path3138" /><path
                d="m 6068.27,7954.81 0,0 20.75,-11.11 124.17,-118.2 11.86,-7.49 -8.92,-30.68 -5.15,-4.13 -6.11,-2.3 12.5,-13.28 6.72,-17.23 -73.69,-14.02 -14.74,1.08 -11.55,7.02 -14.11,-18.38 -18.36,-12.55 -36.98,-12.75 -41.52,-3.57 -23.58,5.42 -13.14,15.6 8.27,3.8 13,11.39 20.71,6.1 21.83,14.67 5.71,6.98 2.57,32.55 -27.53,44.42 -0.36,28.72 33.17,0.23 11.98,-4 -3.82,-8.58 1.99,-6.09 -3.69,-22.08 0.42,-17.63 8.89,18.92 8.07,5.19 26.49,1.76 -3.19,-2.88 -2.44,-3.06 -1.48,-4.15 -0.63,-6.39 22.84,-5.24 -6.31,14.03 6.45,27.88 -3.27,29.55 -10.38,17.79 -14.77,-7.4 -6.56,17.71 -8.23,14.48 -9.68,11.09 -10.92,7.54 -13.2,2.31 -12.83,-3.84 -6.17,-8.92 6.92,-13.54 0.57,-8.21 -5.39,-3.49 -5.47,-7.36 -4.21,-8.9 -1.32,-8.4 -3.83,-2.63 -22.2,-10.3 0.26,15.08 4.37,9.53 4.75,6.96 1.33,7.31 -4.38,13.26 -4.97,1.16 -5.33,-4.41 -20.39,-10.75 -8.72,-13.57 -8.52,-9.64 -13.66,4.15 3.88,21.84 15.22,37.85 1.73,29.43 -6.84,16.67 -28.68,26.21 -8.8,11.92 5.15,12.99 9.32,11.36 11.81,5.53 12.55,-4.28 6.53,-10.4 15.78,-35.44 8.74,-13.83 18.5,-16.49 44.77,-22.22 25.45,-7.67 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 6068.27,7954.81 0,0 20.75,-11.11 124.17,-118.2 11.86,-7.49 -8.92,-30.68 -5.15,-4.13 -6.11,-2.3 12.5,-13.28 6.72,-17.23 -73.69,-14.02 -14.74,1.08 -11.55,7.02 -14.11,-18.38 -18.36,-12.55 -36.98,-12.75 -41.52,-3.57 -23.58,5.42 -13.14,15.6 8.27,3.8 13,11.39 20.71,6.1 21.83,14.67 5.71,6.98 2.57,32.55 -27.53,44.42 -0.36,28.72 33.17,0.23 11.98,-4 -3.82,-8.58 1.99,-6.09 -3.69,-22.08 0.42,-17.63 8.89,18.92 8.07,5.19 26.49,1.76 -3.19,-2.88 -2.44,-3.06 -1.48,-4.15 -0.63,-6.39 22.84,-5.24 -6.31,14.03 6.45,27.88 -3.27,29.55 -10.38,17.79 -14.77,-7.4 -6.56,17.71 -8.23,14.48 -9.68,11.09 -10.92,7.54 -13.2,2.31 -12.83,-3.84 -6.17,-8.92 6.92,-13.54 0.57,-8.21 -5.39,-3.49 -5.47,-7.36 -4.21,-8.9 -1.32,-8.4 -3.83,-2.63 -22.2,-10.3 0.26,15.08 4.37,9.53 4.75,6.96 1.33,7.31 -4.38,13.26 -4.97,1.16 -5.33,-4.41 -20.39,-10.75 -8.72,-13.57 -8.52,-9.64 -13.66,4.15 3.88,21.84 15.22,37.85 1.73,29.43 -6.84,16.67 -28.68,26.21 -8.8,11.92 5.15,12.99 9.32,11.36 11.81,5.53 12.55,-4.28 6.53,-10.4 15.78,-35.44 8.74,-13.83 18.5,-16.49 44.77,-22.22 25.45,-7.67 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7183" /><path
+               id="path3140" /><path
                d="m 2734.07,8281.73 0,0 -28.21,-2.14 -13.32,4.87 -7.13,12.55 7.11,3.83 1.15,6.33 -3,6.79 -5.2,5.19 20.45,19.73 22.97,10.42 25.48,1.4 28.36,-7.56 -2.95,-1.38 -1.47,-3.39 -0.27,-4.88 0.67,-6.27 -11.79,-11.44 -8.32,-13.67 -9.45,-12.58 -15.08,-7.8 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2734.07,8281.73 0,0 -28.21,-2.14 -13.32,4.87 -7.13,12.55 7.11,3.83 1.15,6.33 -3,6.79 -5.2,5.19 20.45,19.73 22.97,10.42 25.48,1.4 28.36,-7.56 -2.95,-1.38 -1.47,-3.39 -0.27,-4.88 0.67,-6.27 -11.79,-11.44 -8.32,-13.67 -9.45,-12.58 -15.08,-7.8 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7185" /><path
+               id="path3142" /><path
                d="m 4268.07,8316.48 0,0 40.33,-70.91 -81.97,11.13 -11.65,-7.2 3.02,-4.4 2.95,-1.92 -26.04,-2.47 -17.18,2.3 -7.59,8.98 0.53,22.69 -3.21,8.65 -9.34,3.17 -17.04,0.02 -6.9,-2.45 -4.63,-6.69 -4.83,-0.14 -2.24,8.11 -2.41,4.47 -3.42,0.19 -7.7,-5.11 -2.18,15.3 16.78,45.53 24.63,25.46 31.13,6.28 55.97,-22.16 17.05,-13.73 5.23,-6.62 10.71,-18.48 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4268.07,8316.48 0,0 40.33,-70.91 -81.97,11.13 -11.65,-7.2 3.02,-4.4 2.95,-1.92 -26.04,-2.47 -17.18,2.3 -7.59,8.98 0.53,22.69 -3.21,8.65 -9.34,3.17 -17.04,0.02 -6.9,-2.45 -4.63,-6.69 -4.83,-0.14 -2.24,8.11 -2.41,4.47 -3.42,0.19 -7.7,-5.11 -2.18,15.3 16.78,45.53 24.63,25.46 31.13,6.28 55.97,-22.16 17.05,-13.73 5.23,-6.62 10.71,-18.48 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7187" /><path
+               id="path3144" /><path
                d="m 2592.47,8319.72 0,0 -18.53,-10.49 -14.49,0.36 -8.23,7.35 -6.56,16.14 4.15,17.92 11.72,8.96 4.79,2.22 4.59,2.96 41.64,17.6 1.28,-12.08 -5.23,-27.26 -15.13,-23.68 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2592.47,8319.72 0,0 -18.53,-10.49 -14.49,0.36 -8.23,7.35 -6.56,16.14 4.15,17.92 11.72,8.96 4.79,2.22 4.59,2.96 41.64,17.6 1.28,-12.08 -5.23,-27.26 -15.13,-23.68 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7189" /><path
+               id="path3146" /><path
                d="m 5492.39,8493.98 0,0 0.41,-1.36 -0.3,-1.57 -0.11,2.93 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5492.39,8493.98 0,0 0.41,-1.36 -0.3,-1.57 -0.11,2.93 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7191" /><path
+               id="path3148" /><path
                d="m 5492.39,8493.98 0,0 -0.48,1.36 -1.94,2.25 -2.69,0.07 0.9,-15.23 -4,-0.23 -1.35,22.75 -14.98,-13.91 -2.74,-18.38 0.67,-21.64 -5,-23.46 -4.25,-6.42 -8.69,-8.52 -3.31,-8.95 -1.78,-10.95 -0.56,-11.15 0.56,-23.66 -4.48,-0.26 -0.88,15.17 0.33,25.72 16,74.26 2.69,28.35 4.28,8.09 10.45,3.38 8.84,0.92 7.28,-0.78 4.45,-6.25 0.68,-12.53 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5492.39,8493.98 0,0 -0.48,1.36 -1.94,2.25 -2.69,0.07 0.9,-15.23 -4,-0.23 -1.35,22.75 -14.98,-13.91 -2.74,-18.38 0.67,-21.64 -5,-23.46 -4.25,-6.42 -8.69,-8.52 -3.31,-8.95 -1.78,-10.95 -0.56,-11.15 0.56,-23.66 -4.48,-0.26 -0.88,15.17 0.33,25.72 16,74.26 2.69,28.35 4.28,8.09 10.45,3.38 8.84,0.92 7.28,-0.78 4.45,-6.25 0.68,-12.53 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7193" /><path
+               id="path3150" /><path
                d="m 5638.83,8572.91 0,0 -4.01,-16.05 3.22,-19.53 6.4,-15.51 9.3,-11.7 11.53,-8.5 27.47,-7.49 82.64,21.49 29.3,-4.42 20.86,-20.31 6.11,-28.38 -15.05,-28 -27.47,-21.19 -13.28,-14.72 -5.02,-16.71 3.55,-18.45 7.1,-19.1 8.31,-16.07 7.35,-9.44 13.73,-6.13 31.19,-5.44 14.25,-8.74 19.25,-30.5 12.12,-13.84 16.39,-5.12 -8.3,-6.85 -7.75,-11.03 -5.47,-14.9 -1.34,-18.27 1.19,-17.75 -1.55,-7.08 -6.76,0.18 -14.56,4.11 7.66,0.51 5.79,3.85 2.12,7.58 -3.42,11.77 -4.5,-0.3 -6.13,-7.74 -9.76,-4.45 -10.41,-0.81 -8.16,3.09 -0.51,7.59 23.37,11.87 9.44,8.71 4.59,13 -33.65,-4.49 -14.73,-5.76 -12.25,-9.63 34.19,27.58 11.81,5.92 -0.51,7.64 -17.56,0.5 -8.99,-1.52 -6.01,-5.01 -8.11,-10.86 -5.67,2.17 -5.59,7.01 -7.52,3.78 -64.21,-11.82 -11.07,-8.09 -32.46,-32.62 -6.6,-11.95 -6.52,-17.6 -15.66,-4.26 -13.86,-8.41 -0.71,-29.86 8.41,8.07 -0.15,5.65 -1.44,1.46 -1.82,0.01 -1.14,0.96 30.73,7.34 4.56,-1.68 6.37,-25.09 -0.6,-11.86 -10,-5.53 -18.75,1.66 -21.12,6.07 -23.94,13.76 4.75,6.23 2.69,13.31 5.75,17.42 -9.2,-6.27 -4.03,-4.69 -3.62,-5.99 2.82,-2.94 2.04,-3.68 -13.12,0.41 -6.64,-1.79 -4.6,-4.31 -5.6,-3.46 -6.78,3.97 -6.45,6.13 -4.3,3.08 -9.59,1.16 -11.83,4.88 -7.71,9.23 2.86,14.35 -9.58,2.37 -19.31,-11.06 -6.55,-1.08 -4.94,8.3 3.52,7.76 8.48,3.79 10.25,-3.55 -0.4,6.84 -42.2,28.7 7.53,24.42 11.65,20.46 16,8.39 20.56,-11.87 4.05,7.8 7.95,-6.85 8.82,2.21 18.58,14.44 -10.33,0.58 -8.16,6.89 -3.87,10.72 2.32,11.73 -0.42,6.89 -8.76,0.34 -5.22,5.11 -4.52,5.9 -6.73,2.42 -28.29,-9.29 9.82,23.76 4.4,6.25 17.35,5.36 18.85,11.63 13.17,3.16 -0.46,7.64 0.79,0.22 3.81,2.48 3.77,5.36 -18.42,5.92 -8.07,4.7 -5.75,9.63 2.06,2.72 1.96,1.96 0.78,3.74 -0.94,7.78 -18.66,-8.73 -11.5,-1.95 -5.31,4.75 -1.61,3.43 -3.13,0.67 -3.16,2.35 -1.91,8.48 -1.37,9.61 -2.82,5.65 -4.29,2.28 -5.81,-0.34 14.4,8 49.05,10.32 10.84,-1.77 3.88,-6.51 7.73,-2.58 7.9,-5.23 4.36,-14.38 3.23,-7.76 4.75,4.56 1.56,12.78 -6.33,16.97 8.48,13.5 11,12.96 11.64,10.06 10.62,4.87 -5.74,-23.08 -4.33,-10.13 -5.23,-6.55 4.2,0.37 3.52,-0.53 3.16,-2.28 3.33,-4.98 -2.95,-5.44 -5.01,-16.57 9.39,0.01 7.39,3.11 5.38,7.37 3.1,12.59 -5.64,1.21 -6.46,4.61 -5.71,1.38 -0.48,7.58 8.3,8.88 8.07,-14.43 12.27,-13.83 8.71,-14.73 -3.15,-17.16 14,-17.68 16.41,-4.73 33.33,2.93 -5.35,8.02 5.28,15.05 2.84,4.91 4.05,3.72 -0.52,8.22 -6.14,15.12 -3.98,7.64 -5.42,6.06 -0.49,7.58 3.5,2.99 2.05,2.56 2.48,2.06 5.06,1.59 -0.44,6.84 -8.11,-1.04 -4.9,-5.1 -3.63,-6.23 -4.42,-4.21 -7,-1.71 -22.25,-0.15 -3.56,3.35 -4.04,7.65 -4.96,7.53 -6.36,3.12 -9.88,1.57 -4.41,5.14 -2.6,7.28 -4.76,7.49 -8.16,10.56 -1.75,4.45 -8.22,-7.78 -4.67,-5.65 -9.51,-15.07 -14.59,-10.06 -10.21,-12.74 -11.08,-9.44 -13.28,3.4 -3.06,13.02 3.3,20.73 7.33,19.24 8.63,8.89 1.51,4.82 2.16,10.63 0.82,10.54 -2.22,4.59 -28.33,-9.27 -9.06,-7.18 -4.21,1.01 -0.37,12.89 3.14,7.75 6.41,7.82 7.39,6.1 86.76,31.19 18.03,1.36 17.49,-8.18 0.43,-6.83 -9.35,-8.61 -12.83,-8.54 -11.14,-11.08 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5638.83,8572.91 0,0 -4.01,-16.05 3.22,-19.53 6.4,-15.51 9.3,-11.7 11.53,-8.5 27.47,-7.49 82.64,21.49 29.3,-4.42 20.86,-20.31 6.11,-28.38 -15.05,-28 -27.47,-21.19 -13.28,-14.72 -5.02,-16.71 3.55,-18.45 7.1,-19.1 8.31,-16.07 7.35,-9.44 13.73,-6.13 31.19,-5.44 14.25,-8.74 19.25,-30.5 12.12,-13.84 16.39,-5.12 -8.3,-6.85 -7.75,-11.03 -5.47,-14.9 -1.34,-18.27 1.19,-17.75 -1.55,-7.08 -6.76,0.18 -14.56,4.11 7.66,0.51 5.79,3.85 2.12,7.58 -3.42,11.77 -4.5,-0.3 -6.13,-7.74 -9.76,-4.45 -10.41,-0.81 -8.16,3.09 -0.51,7.59 23.37,11.87 9.44,8.71 4.59,13 -33.65,-4.49 -14.73,-5.76 -12.25,-9.63 34.19,27.58 11.81,5.92 -0.51,7.64 -17.56,0.5 -8.99,-1.52 -6.01,-5.01 -8.11,-10.86 -5.67,2.17 -5.59,7.01 -7.52,3.78 -64.21,-11.82 -11.07,-8.09 -32.46,-32.62 -6.6,-11.95 -6.52,-17.6 -15.66,-4.26 -13.86,-8.41 -0.71,-29.86 8.41,8.07 -0.15,5.65 -1.44,1.46 -1.82,0.01 -1.14,0.96 30.73,7.34 4.56,-1.68 6.37,-25.09 -0.6,-11.86 -10,-5.53 -18.75,1.66 -21.12,6.07 -23.94,13.76 4.75,6.23 2.69,13.31 5.75,17.42 -9.2,-6.27 -4.03,-4.69 -3.62,-5.99 2.82,-2.94 2.04,-3.68 -13.12,0.41 -6.64,-1.79 -4.6,-4.31 -5.6,-3.46 -6.78,3.97 -6.45,6.13 -4.3,3.08 -9.59,1.16 -11.83,4.88 -7.71,9.23 2.86,14.35 -9.58,2.37 -19.31,-11.06 -6.55,-1.08 -4.94,8.3 3.52,7.76 8.48,3.79 10.25,-3.55 -0.4,6.84 -42.2,28.7 7.53,24.42 11.65,20.46 16,8.39 20.56,-11.87 4.05,7.8 7.95,-6.85 8.82,2.21 18.58,14.44 -10.33,0.58 -8.16,6.89 -3.87,10.72 2.32,11.73 -0.42,6.89 -8.76,0.34 -5.22,5.11 -4.52,5.9 -6.73,2.42 -28.29,-9.29 9.82,23.76 4.4,6.25 17.35,5.36 18.85,11.63 13.17,3.16 -0.46,7.64 0.79,0.22 3.81,2.48 3.77,5.36 -18.42,5.92 -8.07,4.7 -5.75,9.63 2.06,2.72 1.96,1.96 0.78,3.74 -0.94,7.78 -18.66,-8.73 -11.5,-1.95 -5.31,4.75 -1.61,3.43 -3.13,0.67 -3.16,2.35 -1.91,8.48 -1.37,9.61 -2.82,5.65 -4.29,2.28 -5.81,-0.34 14.4,8 49.05,10.32 10.84,-1.77 3.88,-6.51 7.73,-2.58 7.9,-5.23 4.36,-14.38 3.23,-7.76 4.75,4.56 1.56,12.78 -6.33,16.97 8.48,13.5 11,12.96 11.64,10.06 10.62,4.87 -5.74,-23.08 -4.33,-10.13 -5.23,-6.55 4.2,0.37 3.52,-0.53 3.16,-2.28 3.33,-4.98 -2.95,-5.44 -5.01,-16.57 9.39,0.01 7.39,3.11 5.38,7.37 3.1,12.59 -5.64,1.21 -6.46,4.61 -5.71,1.38 -0.48,7.58 8.3,8.88 8.07,-14.43 12.27,-13.83 8.71,-14.73 -3.15,-17.16 14,-17.68 16.41,-4.73 33.33,2.93 -5.35,8.02 5.28,15.05 2.84,4.91 4.05,3.72 -0.52,8.22 -6.14,15.12 -3.98,7.64 -5.42,6.06 -0.49,7.58 3.5,2.99 2.05,2.56 2.48,2.06 5.06,1.59 -0.44,6.84 -8.11,-1.04 -4.9,-5.1 -3.63,-6.23 -4.42,-4.21 -7,-1.71 -22.25,-0.15 -3.56,3.35 -4.04,7.65 -4.96,7.53 -6.36,3.12 -9.88,1.57 -4.41,5.14 -2.6,7.28 -4.76,7.49 -8.16,10.56 -1.75,4.45 -8.22,-7.78 -4.67,-5.65 -9.51,-15.07 -14.59,-10.06 -10.21,-12.74 -11.08,-9.44 -13.28,3.4 -3.06,13.02 3.3,20.73 7.33,19.24 8.63,8.89 1.51,4.82 2.16,10.63 0.82,10.54 -2.22,4.59 -28.33,-9.27 -9.06,-7.18 -4.21,1.01 -0.37,12.89 3.14,7.75 6.41,7.82 7.39,6.1 86.76,31.19 18.03,1.36 17.49,-8.18 0.43,-6.83 -9.35,-8.61 -12.83,-8.54 -11.14,-11.08 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7195" /><path
+               id="path3152" /><path
                d="m 2394.82,8552.36 0,0 -1.08,-1.14 -1.79,0.19 -1.81,-1.19 -7.19,-7.3 -6.55,-8.5 31.65,-61.02 12.21,-7.06 -8.94,-7.52 -22.02,-7.68 -15.02,13.89 -11.86,22.37 -12.7,17.6 18.94,35.07 11.78,12.54 14.16,5.16 0.22,-5.41 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2394.82,8552.36 0,0 -1.08,-1.14 -1.79,0.19 -1.81,-1.19 -7.19,-7.3 -6.55,-8.5 31.65,-61.02 12.21,-7.06 -8.94,-7.52 -22.02,-7.68 -15.02,13.89 -11.86,22.37 -12.7,17.6 18.94,35.07 11.78,12.54 14.16,5.16 0.22,-5.41 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7197" /><path
+               id="path3154" /><path
                d="m 2532.16,8534.01 0,0 -5.38,-7.67 -8.81,-2.71 -10.99,1.28 -9.77,3.92 -5.56,4.64 -16.84,-6.26 -20.87,6.65 -37.36,23.71 12.91,23.18 14.68,14.03 17.62,6.76 21.5,1.74 35.83,-2.43 14.52,-9.06 11.39,-19.96 -0.04,-7.59 -5.38,-8.94 -7.45,-21.29 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2532.16,8534.01 0,0 -5.38,-7.67 -8.81,-2.71 -10.99,1.28 -9.77,3.92 -5.56,4.64 -16.84,-6.26 -20.87,6.65 -37.36,23.71 12.91,23.18 14.68,14.03 17.62,6.76 21.5,1.74 35.83,-2.43 14.52,-9.06 11.39,-19.96 -0.04,-7.59 -5.38,-8.94 -7.45,-21.29 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7199" /><path
+               id="path3156" /><path
                d="m 2744.83,8759.96 0,0 50.37,-20.75 136.16,-32.03 10.78,-9.51 2.96,-11.2 1.97,-15.52 4.76,-13.22 11.37,-4.56 46.91,0.02 9.63,1.82 6.21,6.53 9.15,2.58 7.01,6.36 11.61,2.71 13.02,-12.18 10.9,-1.2 9.48,3.28 9.7,0 38.12,19.65 12.03,15.32 15.62,6.34 8.04,14.67 8.31,6.85 2.32,-40.06 31.24,-11.23 39.47,-1.76 26.82,-11.63 11.38,-8.39 16.89,-7.06 15.28,-10.75 6.87,-19.13 7.57,-10.32 16.79,3.07 29.12,11.69 -2.75,23.09 15.13,1.23 21.04,-12.66 15.02,-18.6 9.31,-37.89 4.12,-8.74 6.05,-8.48 12.24,-12.88 -8.17,-6.45 -8.61,0.92 -7.91,3.62 -6.08,1.47 0.43,-2.41 -15.81,-12.87 -2.07,-0.14 -4.16,-2.81 -2.73,0.13 -1.5,-2.32 -0.2,-10.24 9.47,-0.5 16.73,5.28 16.78,1.16 9.98,-12.85 6.85,6.08 7.32,0.62 3.7,-6.73 -4.44,-15.71 3.63,-15.3 0.66,-22.02 -3.06,-46.22 -2.92,-19.77 -4.25,-15.77 -6.03,-12.91 -8.06,-11.96 -20.6,-19.78 -25.71,-14.9 -28,-9.5 -27.15,-3.44 0.09,-7.53 28.18,-14.32 155.9,39.66 12.18,-4.23 39.68,-33.61 -12.57,-13.16 0.07,-12.07 5.46,-13.66 3.65,-17.76 -3.5,-15.02 -8.96,-13.95 -11.52,-10.26 -11.22,-3.51 1.79,-2.51 2.24,-1.8 0.33,-3.44 -4.11,-7.49 7.04,-7.36 2.16,-9.34 -2.31,-10.56 -6.28,-10.69 14.23,5.58 10.53,13.35 14.66,34.93 8.09,37 4.47,9.45 6.43,4.43 24.43,3.02 8.82,5.45 4.18,6.12 3.24,6.21 5.86,6.15 7.39,2.55 27.66,-1.89 14.41,-6.85 39.93,-30.72 103.33,-43.43 59.26,-53.32 26.92,-6.14 29.65,6.32 21.56,14.18 36.25,35.64 20.98,14.48 22.09,10.04 54.03,8.59 0.22,-7.64 -11.6,-0.85 -16.3,-0.58 11.42,-4.8 11.17,4 15.47,-10.2 44.75,29.45 20.63,-7.14 -23.28,-27.92 -6.6,-10.95 -3.85,2.99 -10.14,4.13 7.59,-17.96 7.29,-44.03 5.74,-21 -4.43,-14.17 1.1,-18.84 5.26,-31.95 -2.27,-19.11 -5.9,-10.3 -6.07,-7.2 -2.61,-9.8 -74.37,-51.48 -25.35,-34.4 -11.22,-7.73 -26.18,-9.84 -5.07,-0.01 -5.48,-5.09 -4.55,3.1 -4.59,4.89 -5.96,0.42 -5.12,-3.47 -2.55,-3.06 -24.23,-39.95 -6.51,-7.7 0.17,-6.96 9.27,-21.51 9.88,-15.69 12.93,-10.25 18.03,-5.12 25.26,3.25 6.51,-2.42 4.91,-11.49 1.1,-13.26 2.65,-10.17 9.84,-2.61 10.18,-0.36 3.24,0.72 8.22,6.96 18.77,20.65 10.65,4.55 12.33,2.94 34.41,19.8 79.31,12.95 5.89,-2.06 4.73,-6.13 4.62,-15.62 4.92,-7.56 23.58,-5.76 3.63,-5.46 -2.11,-25.5 1.86,-11.51 8.36,-4.51 19.64,-0.75 5.45,1.56 25.71,23.57 5.12,-3.23 7.24,-15.53 4.26,-3.42 27.33,0.92 0.39,-3.5 26.26,-30.98 5.14,-3.17 7.33,0.26 0.55,11.7 6.02,18.16 4.31,22.43 -3.61,17.71 4.67,8.33 6.19,5.23 5.44,1.57 -1.4,4.96 -2.13,12.47 -1.34,5.19 21.54,23.55 -0.3,8.34 -4.46,-0.16 -0.25,6.9 17.03,-6.42 5.62,0.32 12.84,10.31 10.62,29.97 8.56,6.53 5.21,2.03 4.14,5.05 3.12,7.2 2.53,8.32 0.13,5.59 -4.94,3.67 -0.21,5.81 1.88,5.71 2.56,3.95 2.39,3.02 15.04,29.86 20.17,15.27 25.36,4.66 54.97,-7.52 154.15,39.91 23.79,16.81 4.7,-31.75 -1.15,-30.97 2.64,-26.26 15.98,-17.2 -6.87,13.11 -4.51,28.83 -3.98,10.65 6.31,13.23 18.34,11.58 4.87,15.19 -7.32,0.48 -7.02,-1.58 -6.55,-3.17 -5.95,-4.46 4.53,10.62 20.89,30.06 12.66,12.6 14.32,26.73 8.82,6.39 8.43,2.86 47.88,29.1 23.64,21.85 9.14,11.89 21.28,46.63 36.32,58.5 3.76,10.95 24.38,47.87 8.8,29.64 6.94,10.08 12.98,7.34 0.35,-6.9 -4.48,-0.23 14.9,-21.54 28.51,-10.08 147.53,7.78 25.02,-10.45 14.33,9.38 18.94,-3.62 8.93,-11.95 -15.18,-15.89 -16.49,-4.54 -69.75,2.26 -28.3,8.98 -17.07,1.47 -4.98,-2.51 -6.37,-10.53 -3.6,-3.01 -13.21,-0.69 -16.92,2.41 -6.05,-3.89 -3.26,-15.03 -4.44,8.01 -3.25,-2.24 -5.51,-5.23 -4.1,-1.42 1.69,-9.48 2.9,-4.11 4.16,-1.18 5.34,-0.47 -2.25,-0.75 -1.8,-0.15 -0.87,-1.48 0.44,-4.76 -12.82,6.14 -13.88,-2.03 -11.21,-8.45 -5.26,-13.06 -11.27,12.86 -13.07,5.8 -23.72,1.08 -10.21,-5.63 -8.23,-13.24 -3.34,-17.16 4.42,-17.41 -9.43,1.44 -3.84,1.49 -4.83,3.85 -4.06,-7.85 4.87,-13.02 -2.46,-13.42 -7.73,-10.05 -10.56,-3.04 5.29,-14.83 6.01,-11.7 1.89,-9.7 -6.99,-9.09 29.35,-18.4 16.08,-3.37 13.44,9.36 -9.94,-0.83 -7.99,3.35 -13.89,11.19 3.6,13.37 5.65,9.83 15.49,16.77 3.71,2.78 7.01,2.7 2.73,2.04 1.8,5.68 -0.08,13.99 1.12,4.66 10.62,9.86 41.07,22.51 -9.06,6.11 -4.14,0.83 -0.39,7.64 11.79,5.03 4.44,-0.06 5.51,-3.87 -0.38,7.53 12.63,-10.13 19.13,6.05 34.37,22.06 -1.6,3.6 -2.18,8.3 -1.55,3.78 6.51,5.36 7.42,3.38 7.99,1.52 8.29,-0.43 0.43,-8.22 -9.58,-3.1 -6.18,-9.14 -3.16,-12.9 -0.81,-13.98 7.44,14.56 2.5,7.57 1.75,8.9 6.25,-10.21 7.3,-9.47 7.42,-3 6.79,8.94 7.94,-6.43 6.9,0.71 6.09,5.57 5.33,8.47 2.27,-8.58 3.52,-7.76 4.41,-6.96 11.84,-13.54 2.52,-1.88 2.29,1.33 6.56,1.8 12.46,-0.12 6.54,2.31 6.76,6.83 5.14,9.33 5.78,18.36 5.16,11.29 15.57,17.41 24.93,18.17 25.18,11.06 16.68,-3.89 -7.77,-8.51 0.42,-13.3 5.7,-13.79 8.33,-10.42 28.87,-12.91 8.22,-7.08 -11.01,-22.6 3.61,-16.97 20.36,-28.96 2.51,-11.91 0.71,-12.12 2.36,-9.2 7.49,-3.42 29.04,1.71 0.49,-8.22 -6.11,-0.53 -4.19,-2.15 -7.05,-5.26 21.21,3.21 35.12,-17.27 23.01,-4.1 17.18,-8.12 24.31,-42.86 18.48,-14.6 -9.6,-7.74 -7.19,-8.52 16.31,1.12 23.49,13.97 13.11,-4.14 -4.3,-13.42 -2.85,-5.31 -4.77,-4.97 7.97,-4.12 4.63,2.94 4.02,3.83 6.04,-1.24 3.92,-5.29 11.04,-24.85 9.34,-15.96 10.5,-12.72 12.52,-7.16 15.41,0.69 -0.48,7.64 -5.73,4.77 -8.16,12.16 -5.78,4.6 -0.49,7.69 79.6,21.05 18.7,10.22 31.87,24.95 18.15,7.5 3.22,-5.56 -0.69,-4.95 -4.07,-3.85 -6.26,-2.14 0.46,-6.95 20.48,-8.96 54.83,-39.97 0.52,-7.58 -8.34,-17.01 -3.89,-21.79 -6.85,-20.08 -16.84,-12.15 8.25,-5.51 20.58,-23.07 7.68,-10.9 4.05,-2.61 19.01,-6.55 4.76,-2.97 3.43,-7.32 2.65,-8.01 2.19,-5.1 1.01,-3.86 -0.46,-5.11 0.09,-4.32 2.7,-1.72 9.16,1.5 2.36,-0.7 3.6,-2.76 4.23,-2.13 4.31,-1.32 3.7,-0.32 8.44,-3.91 1.88,-10.43 -3.26,-12.87 -6.68,-10.85 -44.41,-42.11 -5.75,-14.76 6.76,-13.15 12.7,-5.14 12.5,-2.09 5.71,-3.7 4.98,-11.83 10.62,-13.41 11.25,-8.63 6.97,1.93 51.32,-37.22 22.13,-3.4 11.63,-12.62 2.76,-2.29 15.77,2.4 4.92,-0.92 17.19,-8.81 8.27,-2.64 53.25,-0.11 18.18,6.99 6.63,15.9 4.71,3.76 10.7,-1.29 7,-5.77 3.21,-2.71 3.25,-17.89 -4.63,-8.66 -0.77,-0.63 -28.32,-23.74 8.6,-4.16 9.86,-2.68 10.8,-0.64 4.66,0.98 3.12,-31.01 -1.44,-17.48 11.58,-21.02 17.07,-42.15 2.05,-10.88 1.26,-40.78 2.31,-24.6 6.5,-22.55 17.96,-23.72 8.66,-22.67 15.68,-22.44 11.26,-57.01 24.89,-84.24 1.75,-9.34 1.94,-20.12 2.89,-10.75 4.6,-6.76 10.84,-7.87 3.09,-6 9.29,-7.37 -14.75,-35.6 -4.34,-7.69 -6.74,-4.33 -5.87,-10.4 -3.74,-13.94 -0.74,-14.92 3.77,-17.88 5.19,-15.43 2.6,-15.97 -15.31,-64.41 -1.17,-9.44 -7.5,-20.74 -18.95,-23.09 -37.14,-34.41 -39.26,-24.34 -30.7,-26.49 0.5,-6.92 4.82,-10.88 11.03,-38.83 2.53,-13.78 -1.27,-21.22 -5.98,-13.96 -16.75,-16.82 8.84,-15.06 12.34,-8.35 14.44,-3.41 15.04,-0.01 13.93,-4.99 23.89,-24.41 19.1,-8.49 75.53,-47.54 11.38,-11.47 26.52,-43.85 7.57,-6.27 13.29,-5.02 21.44,-25.11 41.67,-12.94 46.89,-45.16 22.41,-15.69 -15.85,-41.35 -3.24,-26.22 13.51,-10.55 4.08,-11.61 -9.17,-26.94 -14.39,-27.37 -32.76,-33.75 7.19,-43.82 19.9,-47.24 16.78,-31.22 -2.52,-20.52 16.62,-16.01 24.03,-10.09 19.72,-2.99 19.75,-6.85 12.12,-18.68 1.58,-22.75 -11.94,-18.68 0.55,-6.88 11.09,-14.7 -1.35,-16.08 -5.76,-20.78 -1.9,-29.15 8.11,-15.39 47.12,-29.83 -11.34,-16.7 -4.49,-9.86 -1.41,-10.13 -0.47,-10.29 -2.07,-10.74 -12.68,-28.06 -2.84,-11.08 2.92,-68.02 -4.12,-22.19 -9.01,-20.83 -11.33,-17.95 -36.34,-43.27 -7.55,-19.96 3.87,-23.38 12.65,-16.43 13.13,-7.68 10.54,-12.07 4.98,-29.09 9.32,-27.69 16.97,-17.05 35.72,-25.3 10.44,-18.5 9.01,-27.66 3.45,-29.15 -6.4,-22.89 -11.78,-22.38 -3.96,-22.03 5.33,-19.42 16.59,-14.82 46.48,-11.66 15.45,-9.28 0.01,-0.12 16.57,-7.8 33.32,-7.03 16.31,-6.25 11.51,-7.62 13.94,-12.44 8.42,-14.72 -4.75,-14.37 12.97,-75.82 0.08,-1.03 4.65,-19.67 2.56,-7.51 14.73,-21.59 17.28,-17.28 11.94,-20.95 -0.95,-32.52 2.81,-3.24 3.14,-2.86 -10.04,-24.49 -7.03,-30.36 -3.15,-31.64 1.5,-28.13 -0.28,-14.38 -4.02,-7.78 -5.01,-5.58 -3.13,-8 -0.34,-11.04 1.59,-21.36 -1.06,-12.91 -24.87,-81.83 -28.65,-87.04 -22.76,-29.77 -8.65,-17.2 1.56,-20.67 -8.78,-30.67 -5.68,-13.39 -6.22,-8.4 -11.1,-3.99 -15.32,-0.62 -26.57,3.83 -28.48,18.36 -10.46,4.8 -24.96,5.02 -4.05,8.07 0.96,20.05 9.78,28.87 2.93,15.06 -4.73,12.29 -8.51,-0.48 -37.61,-19.08 -8.53,5.76 2.82,13.84 7.21,16.6 4.43,13.78 0.04,16.81 -3,10.69 -6.03,8.37 -9.26,9.64 -9.13,6.12 -19.27,3.34 -9.15,5.44 -7.27,8.6 -2.89,6.48 -2.02,6.58 -4.76,9.11 -4.93,-15.81 -7.66,-4.73 -25.53,-0.44 -18.99,-10.15 -7.76,-0.39 -7.91,3.57 -5,5.73 -4.15,5.9 -5.63,4.44 -26.69,6.63 -22.04,-5.14 -15.57,-18.32 -7.57,-32.68 -7.02,-11.87 8.58,-4.81 23.92,-1.41 14.41,-4.67 -0.93,-2.32 -5.65,-4.56 0.19,-11.71 19.2,-16.44 26.45,-5.76 19.52,-9.49 -2.19,-27.98 -19.35,-19.01 -55.45,0.39 -24.91,-7.09 -7.09,-8.06 -11.49,-20.32 -8.01,-8.64 -106.19,-57.96 -13.48,-1.84 -25.98,1.58 -13.56,-3.91 -7.2,-5.91 -9.85,-14.5 -6.85,-5.88 -8.8,-1.91 -6.98,1.61 -5.95,-0.63 -5.95,-8.41 -2.28,-10.99 1.5,-9.36 2.19,-7.7 0.03,-5.88 -4.36,-7.21 -3.98,-1.7 -4.3,-0.4 -19.57,-14.09 -12.52,-3.41 -32.6,1.51 -15.14,-2.53 -26.19,-11.65 -13.43,-3.57 -63.39,-3.64 -31.64,-8.01 -27.82,-19.23 9.22,-16.56 -1.86,-15.16 -8.67,-12.75 -11.22,-9.62 4.64,-8.65 -0.25,-6.76 -3.92,-5.48 -6.78,-4.39 -11.35,-16.07 -11.33,-11.64 -12.96,-4.06 -16.25,6.81 -5.03,5.58 -10.93,16.12 -4.06,4.08 -8.81,2.65 -1.89,-1.49 -0.2,-4.05 -3.96,-4.84 -25.43,-20.4 -3.54,-7.29 -6.22,-22.95 -14.41,-8.44 -12.07,4.54 -11.95,7.38 -13.82,0.48 -19.98,-64.35 -9.14,-19.01 -16.7,-14.02 -37.48,0.1 -19.63,-7.99 -0.14,-0.13 -0.07,0 -6.35,-2.14 -6.64,-0.88 -6.63,0.21 -6.32,1.5 -5.73,3.84 -5.93,0.94 -5.85,-1.75 -5.64,-4.4 -2.17,-45.57 -3.53,-20.52 -9.42,-12.43 -20.09,-22.04 -24.37,0.09 -67.85,36.6 -6.03,1.48 -6.31,-1.65 -9.64,-7.12 -4.32,-1.94 -12.78,1.13 -11.34,-1.27 -11.38,-4.77 -8.64,-9.48 -14.5,-25.14 -7.55,-8.03 -9.2,-1.5 -38.3,5.03 -52.97,-6.53 -28.24,-9.81 -18.89,-17.81 -5.08,-4.84 -2.24,-5.63 -1.2,-5.7 -1.68,-5.09 0.25,-2.29 1.13,-3.69 0.65,-4.34 -1.36,-4.15 -2.79,-1.69 -6.41,-0.07 -2.5,-1.61 -8.11,-7.97 -20.34,-12.68 -7.31,-7.93 -20.25,-41.16 -7.71,-8.87 -7.7,-5.93 -5.43,-8.93 -1.13,-17.72 -13.27,-18.67 -3.36,-10.62 -1.34,-19.86 2.75,-13.69 4.66,-11.71 0.44,-9.88 -9.64,-7.68 -12.24,1.02 -7.73,10.94 -9.9,30.24 -0.99,5.71 -1.54,6.44 -3.26,7.11 -3.28,4.05 -13,12.04 -1.96,2.51 -0.84,2.43 0.56,2.27 1.83,2.21 0.85,0.84 0.93,0.68 0.94,0.38 1.1,0.22 2.89,6.4 0.15,5.13 -2.53,3.92 -5.21,2.59 -20.5,-0.36 -10.52,2.77 -8.25,6.66 -3.17,8.56 -0.59,19.08 -4.63,10.1 -14.1,9.13 -52.25,1.67 17.12,-16.44 6.15,-9.64 3.31,-15.74 -0.73,-14.3 -4.57,-5.37 -7.16,-5.14 -8.36,-13.81 7.92,-12.9 36.15,-20.53 18.29,-18.45 8.57,-12.06 6.02,-12.98 2.78,-16.63 -3.94,-25.49 1.15,-16.64 6.93,-16.56 10.52,-8.82 11.74,-6.11 10.73,-8.51 6.84,-10.7 1.97,-11.31 0.59,-10.1 2.6,-6.97 110.94,-53.19 0.74,0.03 11.46,-10.3 26.49,-1.54 12.61,-10.93 2.61,-16.17 -4.27,-15.22 -0.26,-12.1 30.17,-15.86 10.42,-3.49 4.83,-7.83 -1.21,-21.7 -4.99,-17.27 -15.13,-31.39 -4.47,-17.42 -14.62,3.75 -3.66,-15.88 0.7,-23.33 -1.46,-18.38 -10.93,-12.12 -29.18,-14 -7.73,-17.09 4.1,-11.56 8.09,-13.91 15.87,-20.74 10.79,-8.89 11.37,-7.02 24.53,-10.38 10.24,-4.76 6.51,-11.5 1.21,-14.74 -5.48,-13.89 1.93,-1.41 5.88,-2.55 -3.03,-8.89 -0.39,-2.72 7.81,-8.62 17.68,-8.66 8.01,-8.03 5.65,-11.82 4.53,-24.48 3.53,-12.9 5.27,-13.11 5.03,-9.72 6.08,-8.05 8.24,-7.84 8.27,-2.08 7.58,1.46 5.59,-4.11 1.88,-18.68 3.85,-36.37 4.46,-17.86 9.02,-15.68 14.73,-11.09 34.2,-14.1 15.36,-14.38 26.43,-52.06 12.08,-11.31 14.67,-4.5 43.11,-4.09 13.5,2.53 -3.96,14.14 9.82,3.67 28.16,-6.2 12.66,-5.97 10.95,-7.95 21.57,-20.57 12.9,-4.56 4.53,-8.86 1.55,-10.69 3.86,-10.16 24.7,-26.38 0,-0.06 0.16,-0.1 9.3,-4.63 73.22,-88.93 10.77,-21.35 12.64,-18.03 21.33,-10.91 44.22,0.4 14.95,-4.8 9.34,-7.19 23.87,-28.42 32.84,-29.8 9.27,-18.88 2.26,-31.15 11.49,-16.45 22.17,-18.47 24.12,-15.24 17.58,-7.2 6.42,19.79 6.23,12.65 9.86,5.25 16.99,-2.56 13.33,-7.09 13,-9.19 12.9,-6.13 13.22,2.3 3.1,-20.91 9.02,-19.74 12.49,-16.64 13.26,-11.69 14.26,-5.7 27.58,-2.62 10.66,-5.1 18.71,-25.52 39.85,-68.4 15.29,-13.96 -19.03,-47.67 -1,-10.67 3.71,1.62 8.8,-14.95 3.86,-3.16 9.48,-3.84 -9.22,-9.98 -1.06,-13.38 6.14,-35.64 0.65,-18.69 -1.28,-16.17 -3.65,-14.87 -10.92,-28.18 -3.18,-5.48 -5.72,-6.43 -5.71,-2.9 -15.17,-3.42 -2.55,0.42 -5.46,-13.05 -4.73,-30.06 -1.7,1.59 -31.09,11.78 -12.34,16.65 -12.51,8.17 -13.31,6.16 -77.71,16.78 -24.49,-4.79 -23.55,-10.45 -6.27,-6.53 -3.59,-7.96 0.69,-4 2.5,-4.86 4.14,-19.87 7.49,-10.31 2.17,-9.67 -1.43,-10.94 -8.69,-21.62 -2.92,-10.4 -0.77,-10.41 3.19,-31.3 -0.85,-11.66 -2.85,-7.83 -3.03,-5.94 -1.12,-5.82 -2.84,-23.82 -9.33,-17.91 -68.81,-67.4 -24.12,-15.31 -101.16,-23.44 -75.27,-34.65 -11.51,-9.15 -26.23,-27.97 -23.26,-14.59 -11.03,-9.89 1.13,-2.6 -40.74,-10.1 -10.91,-6.57 -6.38,-7.74 -12.52,-22.1 -9.13,-11.63 -28.56,-22.19 -2.82,-3.82 -9.79,-17.15 -4.44,-2.29 -4.85,0 -4.69,-1.87 -4.15,-8.21 -0.73,-15.06 4.48,-14.46 7.27,-13.05 7.46,-10.63 55.16,-52.31 12.41,-24.25 2.92,-13.44 4.59,-11.43 6.46,-8.51 18.43,-9.84 15.83,-14.77 6.19,-2.94 13.21,-11.71 28.34,-57.5 17.4,-23.279 3.65,-3.332 -44.29,-79.93 -3.66,-8.937 -1.12,-7.141 0.13,-7.133 -0.94,-7.41 -4.41,-8.109 0.01,-0.059 -0.15,-0.121 -12.86,-22.238 12.87,-11.813 42.18,-5.66 11.14,2.5 18.56,9.34 11.72,-1.269 9.66,-6.52 9.81,-10.68 15.97,-24.328 6.82,-15.82 2.85,-14.129 0.24,-13.523 -0.92,-13.52 -1.74,-2.508 -7.77,-22.492 -0.31,-3.09 -11.28,-16.539 -2.06,0.641 1.93,-25.172 1.6,0.711 -0.77,-1.649 -6.22,-18.371 -1.71,-3 1,-19.351 0.98,-6.86 2.03,-6 2.71,-5.55 2.3,-6.649 0.71,-9.23 -20.16,-26.61 -4.99,-4.808 -8.08,-0.793 -4.82,2.64 -4.43,4.2 -7.44,3.511 -7.85,-0.64 -6.06,-3.7 -6.27,-2.539 -8.42,2.938 -38.3,26 -36.27,36.152 -6.63,4.797 -7.2,2.184 -11.69,1.437 -19.32,14.071 -5.3,27.23 7.92,26.199 20,11.172 -15.62,13.68 -20.11,11.91 -12.5,13.898 6.82,19.782 -12.8,-2.289 -42.64,8.828 -26.76,-1.27 -26.46,-7.68 -13.94,-7.851 -32.07,-31.399 -11.48,-5.742 -15.7,-3.816 -15.47,-0.293 -10.79,4.723 -23.16,16.968 -6.37,6.989 -4.52,8.921 -8.88,23.34 -3.78,6.25 -12.43,1.871 -28.97,-12.609 -12.63,-2.613 -43.75,7.383 -16.26,-3.051 -16.39,-9.461 -8.09,-1.578 -7.72,6.32 -4.62,12.09 2.15,7.859 4.53,6.86 2.27,8.898 1.44,11.941 2.11,5.18 -1.84,-0.461 -10.73,-5.25 -6.34,-4.347 -17.43,-15.793 -11.66,-5.309 1.84,-9.012 2.66,-6.047 5.81,-7.07 6.37,-5.832 3.91,-2.398 2.35,-6.032 2.47,-29.629 -0.35,-10.429 -2.42,-7.199 -20.3,-28.391 -5.93,-1.481 -172.96,0.719 -62.59,-15.211 -8.28,-5.367 -6.85,-19.172 -7.68,-2.859 -42.66,7.172 -61.25,-1.891 -33.01,5.418 -13.93,-0.008 -2.45,-3.301 -20.37,-18.91 -4.74,-11.949 -5.06,-25.922 -3.47,-10.398 -13.19,-15.672 -16.13,-7.027 -35.14,-7 -17.22,4.859 -18.6,1.937 -16.99,-4.546 -34.25,-41.954 9.35,-2.25 8.34,-5.109 3.14,-8.187 -6.13,-11.223 -12.07,-5.629 -32.71,-1.758 -13.89,-4.902 -14.17,-13.981 -9.59,-13.73 -10.42,-11.859 -16.24,-8 -18.15,1.55 0.78,30.262 -16.33,6.137 -18.87,-5.731 -48.34,-35.457 -14.62,-4.91 -78.73,-0.902 -10.68,5.883 -8.1,14.847 1.79,0.16 2.29,5.172 1.52,7.739 -0.42,7.46 -2.39,4.989 -38.64,39.613 -39.21,17.039 -5.35,8.688 23.88,17.152 6.12,7.789 -17.59,12.59 -8.12,4.351 -10.44,0.469 -10.58,-3.301 -30.02,-14.609 -22.2,-3.199 -6.5,1.801 -3.85,5.199 -2.62,5.687 -3.11,3.434 -100.12,35.418 -18.2,-0.141 -10.27,-7.48 -14.82,-21.578 -9.41,-7.891 -8.84,-1.719 -32.14,4.258 -11.85,5.172 -6.23,4.25 -4.06,5.039 -1.5,9.512 2.67,7.109 3.55,5.41 0.85,4.379 -3.54,10.309 -2.68,2.019 -5.71,-2.379 -12.55,-2.5 -11.18,-4.66 1.26,-9.57 6.75,-12.141 5.21,-12.34 -0.74,-10.296 -6.82,-44.454 10.7,-5.578 6.59,-7.05 4.23,-9.719 3.37,-13.699 0.61,-23.832 -6.4,-25.11 -10.58,-22.68 -12.25,-16.91 -6.4,-4.488 -15.82,-5.82 -7.71,-5.403 -4.4,-7.05 -16.2,-34.028 -13.27,-18.5 -14.54,-13.742 -33.49,-21.32 -16.39,-6.668 -60,-8.27 -3.39,1.899 2.94,6.992 6.77,12.648 3.02,2.149 9.95,3.133 3.62,3.679 1.76,7.43 -0.49,6.66 -1.83,7.27 13.03,41.328 0.24,20.023 -14.01,7.278 -33.06,-6.532 -8.83,-10.039 -3.17,-2.508 -3.9,-0.031 -7.87,4.629 -3.75,0.43 -9.85,-4.879 -5.71,-4.36 -5.07,-0.3 -7.44,7.019 -4.2,10.571 -0.87,11.941 -2.18,11.508 -8.4,9.543 16.97,13.578 3.35,11.738 -6.81,12.942 -37.8,53.781 -8.52,-4.02 -6.62,-5.949 -6.58,-2.953 -8.32,4.832 -1.25,6.48 -0.27,3.379 -0.05,3.36 -7.03,14.879 -9.54,9.3 -7.98,10.301 -2.33,18.352 -9.01,-7.41 -11.33,-2.372 -22.42,1.52 -22.73,8.129 -3.8,-1.078 -9.19,-6.071 -6.07,-0.531 -15.4,7.77 -3,11.711 1.33,13.539 -2.62,13.133 -8.88,9.5 -10.69,3.738 -11.25,-1.379 -10.83,-5.902 -16.22,-19.227 -9.14,-20.301 -10.73,-17.101 -20.45,-9.95 -48.24,-1.23 -47.32,12.602 -208.69,128.429 -29.21,6.66 -28.09,-0.113 -10.2,15.852 -41.51,-0.078 -83.72,9.339 -14.2,-5.632 -11.95,-12.977 -27.32,-8.711 -29.42,-2.762 -18.38,4.852 -21.78,16.32 -11.15,11.188 -0.06,7.73 13.81,3.18 -19.35,18.391 -24.46,14.332 -20.15,0.98 -6.81,-21.781 6.1,-6.879 -39.63,-0.442 -1.44,7.239 -1.83,8.48 -5.94,7.403 -3.15,9.089 2.51,7.25 10.05,14.989 2.03,4.179 -4.91,11.25 -7.36,1.461 -8.29,-1.691 -7.74,1.781 -5.54,8.871 -5.83,12.891 -7.15,10.976 -9.66,3.262 -6.85,-7.101 -3.99,-24.207 -9.32,-6.051 -7.33,5.531 -2.56,13.508 -0.63,14.359 -1.12,8.102 -13.82,6.34 -18.64,1.129 -11.96,-6.758 6.86,-17.563 -11.34,-5.679 -40.39,-7.782 -8.37,0.282 -5.91,-3.461 -10.25,-14.86 -3.54,-8.07 -5.82,-22.188 -8.04,-7.41 -19.07,-10.281 -7.43,-8.359 -0.92,-8.2 3.12,-8.152 1.79,-9.488 -4.91,-12 11.76,-4.43 3.72,-0.601 19.14,-14.821 15.46,-8.949 13.36,0.48 11.14,5.668 10.45,7.372 11.29,5.589 36.51,5.993 10.46,-1.84 12,-5 6.83,-0.703 -4.4,-26.309 -4.88,2.488 -0.43,6.84 -0.69,1.781 -3.26,-0.089 -3.97,-1.481 -2.73,-2.34 -1.74,-6.129 1.21,-5.058 1.77,-4.352 0.29,-3.82 -0.98,-7.57 0.35,-7.899 -0.9,-8.332 -4.94,-8.559 -10.12,-3.332 -8.26,10.274 -8.84,15.098 -11.51,10.929 -22.53,-2.16 -23.1,-15.059 -8.91,-18.949 -0.97,-5.281 -23.19,-3.73 -48.1,0.66 -28.46,7.832 -7.34,4.886 -5.19,10.762 -3.94,10.75 -3.99,4.86 -8.69,1 -19.44,6.152 -13.59,0.078 -40.61,-6.418 -3.91,-2.492 -3.79,-5.379 -5.18,-5.383 -13.8,-3.949 -16.41,-8.641 -6.19,-4.687 -6.46,-7.25 -3.1,-5.602 -3.39,-4.777 -7.37,-4.883 -33.91,-7.18 -97.88,1.289 -1.96,4.743 -1.33,10.449 -2.26,10.449 -4.52,4.832 -48.44,3.641 -10.49,5.558 -14.01,-21.179 -12.19,-14.153 -14.28,-7.808 -62.89,-11.981 -16.52,2.492 -38.52,21.25 19.67,-0.531 8.14,7.59 10.35,27.648 -17.05,-1.476 -38.59,-10.801 3.32,11.258 1.86,3.961 -1.44,10.621 -3.86,5.871 -4.74,4.277 -4.4,5.723 -16.29,34.137 -9.9,14.371 -10.99,6.012 -2.85,5.168 -2.17,12.019 -1.64,23.961 2.77,6.609 12.65,12.981 4.56,7.262 0.73,18.148 -8.56,39.082 2.31,15.379 11.36,35.809 4.27,5.269 10.24,5.352 1.85,12.398 -3.48,20.75 0.25,4.941 -0.57,2.821 -0.33,2.82 0.94,4.641 2.33,4.777 5.03,4.711 3.12,5.43 4.91,11.05 1.48,4.942 -0.59,18.078 4.29,14.78 20.29,20.74 7.34,13.26 -1,34.72 -31.18,57.33 -1.46,45.9 5.1,21.6 5.31,16.85 5.56,9.84 5.2,6.62 3.93,8.66 1.75,16 5.16,13.5 48.15,64.96 8.11,16.01 5,18.76 1.91,22.54 5.53,23.27 12.12,9.59 13.76,7.18 10.46,16.18 1.17,15.52 -3.51,14.88 -4.59,14.26 -2.15,13.43 1.08,14.57 5.91,29.26 3.95,12.61 5.3,10.45 4.93,7.11 3.91,10.73 1.87,21.15 3.98,10.02 9,8.93 18.7,14.3 0.12,7.64 -8.33,23.74 0.68,38.66 6.82,36.2 31.81,48.07 8.69,5.96 12.23,3.78 11.41,9.6 20.5,23.84 8.82,5.56 9.87,9.35 8.05,10.46 3.39,8.74 1.2,21.18 4.01,9.89 8.39,2.64 20.66,0.08 5.65,1.88 4.22,3.56 1.68,6.13 1.72,10.43 3.5,5.88 3.45,3.23 1.63,2.73 6.46,0.21 27.12,14.14 4.52,3.8 9.29,15.23 34.33,91.24 23.34,43.06 15.55,17.47 -8.39,8.08 -71.76,15.75 -115.14,63.38 -13.19,1.68 -41.69,-3.76 -60.53,18.59 -8.11,-2.05 -17.3,-9.08 -8.96,-2.15 -7,1.15 -15.39,5.78 -8.06,1.52 -9.25,-1.8 -8.6,-3.52 -8.8,-2.09 -10.08,2.48 -6.69,5.93 -6.84,14.54 -5.24,6.77 -16.07,8.74 -31.83,6.18 -15.73,10.42 -9.34,12.3 -15.99,27.16 -10.04,10.89 1.36,3.65 1.86,2.49 5.49,3.4 -4.5,16.18 -13.09,5.09 -31.45,2.78 -2.9,12.47 -14.14,1.51 -17.21,-4.81 -12.28,-6.63 -3.51,-5.44 -5.63,-16.03 -3.83,-6.06 -5.56,-2.46 -14.97,-1.57 -6.54,-2.09 -4.72,-5.47 -8.05,-15.51 -4.4,-4.33 -4.58,0.8 -19.4,9.64 -62.89,2.07 -11.36,4.19 -11.32,6.26 -27.38,20.97 -3.99,0.62 -6.8,-6.38 0.45,-6.16 2.19,-5.86 -1.27,-5.6 -22.76,-13.56 -15.74,13.05 -7.64,30.73 1.4,39.22 -15.71,1.22 -44.79,26.96 -8.02,1.43 -21.28,-1.48 -30.22,7.81 -7.35,-1.57 -4.66,-15.33 4.98,-18.14 2.26,-18.52 -13.06,-16.35 -9.33,-1.86 -28.1,11.34 -32.47,1.25 -8.48,3.94 -8.87,15.85 2.45,13.55 4.11,13.96 -4.05,17.78 -2.94,0.03 -9.98,-6.14 -3.25,-0.24 -1.83,4.02 -1.17,8.78 -0.75,2.49 -2.19,4.73 -5.08,20.79 -2.98,3.32 -9.97,3.93 -3.81,3.16 -0.69,4.51 1.85,11.21 -0.98,4.75 -46.87,48.17 -11.69,15.16 -4.16,13.07 4.3,10.04 12.93,0.21 3.44,8.86 -2.26,6.75 -34.04,38.59 -4.78,7.58 1.44,0.41 0.06,6.21 -1.65,9.25 -4.19,9.4 -12.041,12.42 -65.39,35.51 -7.957,1.65 -5.992,-2.09 -14.11,-9 -7.769,-1.22 -6.121,0.91 0.289,8.15 -1.059,33.74 7.781,46.37 1.239,35.21 4.539,12.1 11.5,16.73 19.632,22.55 7.829,14.8 5.718,7.85 2.121,4.94 -0.418,7.37 -4.261,4.46 -4.508,3.32 -1.141,3.72 11.719,15.3 54.172,32.55 -1.344,2.46 -4.726,5.85 2.636,5.32 3.41,1.55 6.182,-2.67 -4.908,7.06 -3.16,8.1 -1.34,9.13 0.859,9.92 7.199,5.91 0.44,4.3 -1.77,5.01 0.34,7.86 4.23,24.07 1.07,0.72 0.38,9.36 1.62,1.5 0.21,-0.24 -3.73,4.32 -2.82,0.27 -21.93,7.29 -34.508,1.18 -12.442,3.88 -11.922,8.18 -19.968,20.43 -11.918,8.13 -6.313,0.4 -11.008,-6.16 -5.769,0.72 -0.613,3.76 -6.52,19.45 -3.187,6.21 -10.231,7.16 -23.949,11.75 -10.793,11.79 -21.469,57.75 -11.558,20.4 -8.293,-14.99 -5.34,9.92 -9.699,31.67 -11.641,19.31 -2.77,9.14 2.481,12.28 -3.551,23.38 -4.301,9.31 -7.597,4.78 7.16,12.73 2.808,3.51 -1.621,0.29 -4.308,-0.23 -1.219,0.85 5.719,31.08 4.07,15.14 5.57,15.89 6.789,7.39 1.711,5.36 0.61,1.9 0.039,0.13 -2.25,6.93 -7.008,6.14 1.758,5.4 1.222,5.29 1.629,7.08 0.621,1.54 0.848,2.09 5.02,2.85 1.25,0.71 14.281,0.6 3.91,2.32 1.539,0.92 4.68,10.35 0.922,12.51 -2.731,9.96 -0.769,2.83 -9.11,10.93 0.141,0.17 7.598,9.2 3.921,2.56 12.649,8.26 2.199,3.12 5.211,7.41 15.07,6.46 12.918,3.11 18.051,4.36 13.512,11.32 0.027,0.03 -2.789,10.12 1.883,11.14 5.098,10.52 2.589,2.93 4.789,5.43 5.704,3.02 4.136,2.2 7.922,-0.98 2.641,-1.14 5.34,-2.31 9.507,-2.07 18.942,2.76 0.09,0.02 3.09,3.06 6.109,6.06 0.043,0.04 -0.922,15.56 -0.059,0.11 -23.121,43.74 -0.48,13.19 5.449,14.71 0.289,1.23 5.723,24.78 0.929,14.71 0.231,3.63 0.008,0.2 -1.16,1.75 -1.418,2.14 -0.969,0.22 -4.063,0.94 -3.808,6.83 -1.922,3.44 -3.481,11.4 -1.339,8 -0.348,2.07 1.5,6.39 0.578,2.45 8.152,7.43 0.047,0.04 -12.879,1.21 -30.461,8.19 -10.66,5.57 -1.547,1.61 -0.132,0.05 -1.457,0.58 -1.75,-0.5 -0.032,-0.01 -0.379,-0.36 -1.222,-1.13 -0.098,-0.03 -3.41,-0.92 -20.731,-5.57 -4.921,0.43 -2.11,0.18 -1.777,1.55 -3.692,3.2 -3.878,8.94 -1.723,3.99 -0.09,0.09 -1.527,1.52 -3.903,3.89 0,0 0.012,0.01 6,9.37 -0.223,0.02 -8.039,0.92 -5.621,2.63 0,0.03 -0.758,5.07 5.891,8.34 -11.141,15.23 -0.082,0.1 13.813,19.96 9.008,6.93 14.011,10.78 16.161,8.83 0.14,3.93 0.008,0.09 8.41,9.46 1.403,2.56 3.937,7.14 -1.367,6.73 -48.781,3.04 -14.262,8.19 -7.641,16.29 9.653,5.67 -0.063,0.1 -32.949,54.87 -7.438,12.42 -13.043,14.09 -11.699,1.56 -28.25,-6.58 -9.289,1.47 -0.879,3.43 -1.519,5.98 3.097,11.62 0.012,2.51 0.059,8.19 -4.051,2.33 -7.438,4.29 -0.339,0.77 -0.602,1.34 0.012,2.01 0.519,2 0.668,1.08 0.442,0.71 0.14,0.23 2.117,14.41 -4.32,6.97 -6.789,5.17 -5.008,9.52 -2.402,14.37 10.59,-3.14 10.511,9.07 4.25,13.06 -1.121,10.29 -0.257,9.62 6.636,10.9 9.891,5.12 15.812,-2.02 8.231,9.11 4.75,11.26 0.566,8.84 -5.047,23.1 1.598,7.31 3.941,5.88 1.559,4.43 -22.629,8.9 -16.14,11.07 -5.129,6.13 -1.461,8.93 -0.36,16.07 3.059,9.14 4.66,9.19 -1.211,5.86 -25.297,-2.02 -18.172,6.85 -9.668,1.73 -9.621,-2.3 -18.582,-8.26 -9.66,-1.55 0.461,28.07 -9.437,32.43 -2.872,26.19 20.059,9.51 9.481,-5.87 7.871,-11.18 8.988,-8.95 12.949,0.84 9.024,9.12 14.636,27.74 9.852,10.47 66.808,48.17 40.692,20.06 10.941,13.42 -14.133,14.27 16.473,12.45 5.688,3.03 -15.821,6.14 -35.758,-22.56 -16.031,9.79 -4.16,20.73 3.012,24.74 6.879,21.91 7.629,11.98 15.421,17.37 38.329,64.58 7.55,6.87 18.18,11.67 7.289,9.54 4.274,13.7 3.089,24.28 4.399,9.61 -10.02,12.96 1.719,20.44 6.223,23.44 3.359,21.91 -2.609,20.3 -3.551,36.61 -26.711,33.43 -43.609,65.31 -2.461,13.76 4.351,15.74 9.071,24.56 -45.993,22.48 -15.031,20.87 10.57,31.1 -6.57,7.35 -14.93,12.33 -7.769,4.12 -20.07,0.37 -6.731,3.08 1.07,11.92 15.981,14.62 2.141,22.41 -8.29,21.9 -15.171,12.7 2.769,9.81 11.813,7.65 28.328,3.82 13.551,5.14 14.671,10.02 10.11,4.88 28.34,6.43 22.109,-6.87 16.07,-4.8 10.989,-3.2 -8.68,14.96 -24.609,28.02 -8.282,6.83 23.903,11.77 21.769,-11.35 21.418,-18.82 22.902,-10.46 21.668,3.93 5.661,-0.91 4.73,-4.95 7.102,-13.96 2.988,-3.94 26.262,-5 10.937,-6.93 1.434,-17.4 26.108,6.28 3.25,10.99 -4.72,25.28 43.66,-14.64 14.02,-0.49 11.57,4.77 34.75,24.87 69.27,21.17 60.96,0.01 18.94,9.5 16.58,18.61 16.57,28.03 5.8,6 5.28,0.76 3.58,3.29 1.05,13.57 -1.48,7.55 -3.39,5.48 -17.16,19.33 -44.04,26.5 -14.89,4.93 -10.67,8.08 -0.88,17 5.12,11.43 6.26,2.73 7.24,0.29 8.35,3.88 5.74,6.8 6.04,13.99 3.81,6.21 11.98,11.74 11.16,5.81 44.52,3.65 8.87,7.65 16.05,30.46 13.7,13.55 29.7,12.03 13.98,11.74 16.77,25.63 7.59,8.39 30.86,17.67 2.06,5.67 -5.43,10.7 -5.41,23.93 0.98,20.36 5.39,16.65 14.53,31.41 6.87,40.38 -8.79,28.86 -39.53,68.52 -4.34,-1.89 -4.42,-7.35 -6.5,-5.8 -17.14,-4.51 -17.88,-0.67 -19.08,3.7 -34.72,14.49 -53.56,9.27 -17.63,9.33 -12.91,16.06 -3.61,16.71 -0.36,19.63 -1.74,19.93 -7.78,17.71 11.24,0.64 38.23,17.86 -21.61,19.52 -4.53,7.31 0.08,9.26 3.38,9.13 1.64,9.92 -5.29,11.82 24.39,16.57 22.88,6.34 64.22,-0.91 35.55,-11.91 33.5,4.02 10.09,-4.6 23.92,-8.23 12.96,23.46 6.03,39.06 9.53,119.89 6.86,37.03 12.95,33.5 57.48,85.55 15.53,36.87 7.07,35.31 2.04,39.84 -4.22,79.79 -2.24,9.78 -3.11,5.89 -2.38,7.13 -0.14,13.32 1.89,8.92 10.09,24.25 5.04,19.03 2.51,17.27 -0.24,17.87 -0.73,31.31 6.64,3.51 7.72,7.94 6.06,7.99 6.22,11.72 2.67,13.23 -4.65,12.36 17.5,25.19 9.06,4.33 15.56,-0.09 14.3,-4.14 22.58,-15.13 12.62,-5.38 -15.56,23.99 -26.2,10.34 -151.46,9.19 -24.23,12.88 -8.98,31.23 2.21,82.42 3.4,18.66 13.75,33.33 3.34,16.59 5.69,9.97 13.08,-0.52 26.57,-6.52 3.79,8.81 6.39,3.23 5.08,10.74 -0.73,14.11 -5.68,8.09 -19.11,10.28 -8.38,9.08 -0.98,14.64 9.7,12.11 21.73,14.26 24.62,26.28 13.07,8.59 25.23,25.01 52.65,19.08 101.88,9.19 7.06,-5.1 6.61,-9.86 15.56,-3.96 97.86,18.35 198.49,24.43 52.58,-16.16 -0.12,-8.28 -4.72,-31.21 17.9,-40.55 26.88,-35.43 21.97,-15.8 -0.08,-6.9 -5.86,-14.01 10.28,-5.13 14.59,-4.43 7.26,-11.64 -2.22,-20.04 -6.42,-10.16 -14.45,-10.58 -12.07,-6.12 -26.15,-1.97 -11.81,-7.2 11.72,-37.24 5.86,-14.11 8.87,-9.77 8.49,3.98 7.66,3.12 11.11,-0.53 7.77,-4.41 12.46,-14.87 4.63,-3.1 5.37,-4.83 5.31,-10.52 6.89,-10.49 9.57,-4.82 11.06,0.23 8.13,1.69 7.19,4.24 8.19,7.91 14.38,23.25 15.06,38.21 3.99,38.02 -18.96,22.61 -26.11,-6.64 -13.95,2.51 1.47,16.25 5.88,18.17 5.19,37.78 5.78,15.75 8.78,9.28 11.33,4.31 27.63,1.11 12.66,-5.98 9.66,-13.66 7.93,-15.3 7.92,-11 26.71,-13.9 56.46,-11.63 25.53,-12.53 -0.05,-8.28 -16.05,-13.58 -14.58,-17.61 -10.93,-23.95 -4.35,-32.28 0.24,-62.5 3.79,-27.45 8.86,-20.59 2.12,27.47 -6.66,69.56 0.85,32.76 10.31,24.13 15.23,10.71 13.99,13.31 6.3,31.69 -3.26,5.54 -16.83,43.63 -5.02,6.53 -6.6,15.05 -5.84,16.77 -4.5,21.19 -9.17,25.36 -1.99,18.53 1.64,18.79 4.14,16.3 25.03,61.63 18,66.87 11.4,29.77 9.46,14.09 12.92,12.23 14.65,8.78 14.82,3.26 13.79,-1.05 7.66,-3.42 16.16,-18.47 23.23,-19.98 24.85,-13.02 51.45,-12.9 28.16,0.76 47.89,11.86 26.32,-2.12 12.37,14.55 52.26,12.87 52.13,-0.4 11.06,8.19 8.99,-6.75 10.81,-1.92 22.29,1.17 5.72,-3.77 14.56,-19.03 64.77,-113.28 26.65,-31.12 18.65,-15.12 9.16,-11.66 9.31,-33.57 45.81,-66.64 10.27,-9.23 12.36,-5.42 15.69,-1.76 8.24,-3.95 39.75,-26.71 81.2,-17.25 8.59,3.72 -8.39,14.4 -25.08,14.26 -59.41,6.34 -24.31,9.37 -48.08,30.57 -21.86,24.49 -8,35.42 -2.14,30.22 -2.8,19.47 -6.67,5.99 -31.15,17.15 -9.84,3.44 -16.18,14.67 -15.53,33.31 -10.69,35.99 -1.14,22.13 -23.99,9.36 -41.7,35.86 -24.86,15.08 -24.68,5.66 -83.42,1.72 -25.07,11.64 -16.7,4.65 -7.61,-4.95 -6.92,-11.33 -15.22,5.06 -23.14,17.72 -21.83,27.22 -54.02,110.31 25.2,11.56 12.32,0.96 15.69,-4.39 25.57,-17.33 14.15,-4.72 14.29,6.9 5.07,12.13 5.35,22.02 3.51,23.8 -0.08,17.31 -7.63,11.44 -12.03,10.75 -8.98,11.39 1.89,12.7 0.01,6.9 -16,4.96 -22.75,-4.24 -21.35,-10.26 -11.71,-13.15 -4.46,0.01 -17.76,31.03 -11.54,25.04 -1.81,5.41 5.32,22.35 10.09,19.18 6.84,17.47 -4.67,16.97 0.01,7.53 8.1,6.08 27.48,7.94 11.37,1.14 6.81,5.62 10.24,13.85 10.04,17.59 6.46,16.78 -14.73,-2.92 -24.63,-21.3 -13.94,-6.14 1.35,3.62 1.77,7.99 1.35,3.62 -19.85,-2.32 -33.92,-10.38 -19.99,-2.36 -23.33,4.11 -9.97,-3.99 -21.76,-20.84 -7.68,-2.49 -17.27,6.35 -18.48,17.05 -13.32,24.51 -1.65,28.99 9.2,11.45 17.84,8.01 19.9,3.93 15.31,-0.93 0.04,7.59 -11.61,2.93 -8.89,8.49 -8.58,2.75 -10.48,-13.98 -5.44,12.33 2.01,12.53 6.04,11.52 6.55,9.23 13.86,-6.28 52.59,14.22 71.36,-0.2 16.51,4.46 13.69,8.54 27.38,24.24 25.13,12.3 10.72,8.27 4.42,18.06 0,26.97 -16.33,25.59 -52.89,57.13 -7.47,11.92 -3.12,11.79 -5.93,5.19 -13.35,-0.44 -13.63,-3.82 -7.16,-5.05 -4.45,8.35 22.06,15.13 -22.27,60.49 -8.35,15.55 -18.42,11.78 -34.78,30.6 -21.79,11.08 0.04,7.59 3.74,20.11 -8.41,22.63 -12.32,22.37 -8.54,19.31 -3.51,29.29 3.05,25.8 8.92,32.33 22.04,-7.06 23.66,-1.13 43.74,16.3 14.98,2.26 51.21,-8.95 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2744.83,8759.96 0,0 50.37,-20.75 136.16,-32.03 10.78,-9.51 2.96,-11.2 1.97,-15.52 4.76,-13.22 11.37,-4.56 46.91,0.02 9.63,1.82 6.21,6.53 9.15,2.58 7.01,6.36 11.61,2.71 13.02,-12.18 10.9,-1.2 9.48,3.28 9.7,0 38.12,19.65 12.03,15.32 15.62,6.34 8.04,14.67 8.31,6.85 2.32,-40.06 31.24,-11.23 39.47,-1.76 26.82,-11.63 11.38,-8.39 16.89,-7.06 15.28,-10.75 6.87,-19.13 7.57,-10.32 16.79,3.07 29.12,11.69 -2.75,23.09 15.13,1.23 21.04,-12.66 15.02,-18.6 9.31,-37.89 4.12,-8.74 6.05,-8.48 12.24,-12.88 -8.17,-6.45 -8.61,0.92 -7.91,3.62 -6.08,1.47 0.43,-2.41 -15.81,-12.87 -2.07,-0.14 -4.16,-2.81 -2.73,0.13 -1.5,-2.32 -0.2,-10.24 9.47,-0.5 16.73,5.28 16.78,1.16 9.98,-12.85 6.85,6.08 7.32,0.62 3.7,-6.73 -4.44,-15.71 3.63,-15.3 0.66,-22.02 -3.06,-46.22 -2.92,-19.77 -4.25,-15.77 -6.03,-12.91 -8.06,-11.96 -20.6,-19.78 -25.71,-14.9 -28,-9.5 -27.15,-3.44 0.09,-7.53 28.18,-14.32 155.9,39.66 12.18,-4.23 39.68,-33.61 -12.57,-13.16 0.07,-12.07 5.46,-13.66 3.65,-17.76 -3.5,-15.02 -8.96,-13.95 -11.52,-10.26 -11.22,-3.51 1.79,-2.51 2.24,-1.8 0.33,-3.44 -4.11,-7.49 7.04,-7.36 2.16,-9.34 -2.31,-10.56 -6.28,-10.69 14.23,5.58 10.53,13.35 14.66,34.93 8.09,37 4.47,9.45 6.43,4.43 24.43,3.02 8.82,5.45 4.18,6.12 3.24,6.21 5.86,6.15 7.39,2.55 27.66,-1.89 14.41,-6.85 39.93,-30.72 103.33,-43.43 59.26,-53.32 26.92,-6.14 29.65,6.32 21.56,14.18 36.25,35.64 20.98,14.48 22.09,10.04 54.03,8.59 0.22,-7.64 -11.6,-0.85 -16.3,-0.58 11.42,-4.8 11.17,4 15.47,-10.2 44.75,29.45 20.63,-7.14 -23.28,-27.92 -6.6,-10.95 -3.85,2.99 -10.14,4.13 7.59,-17.96 7.29,-44.03 5.74,-21 -4.43,-14.17 1.1,-18.84 5.26,-31.95 -2.27,-19.11 -5.9,-10.3 -6.07,-7.2 -2.61,-9.8 -74.37,-51.48 -25.35,-34.4 -11.22,-7.73 -26.18,-9.84 -5.07,-0.01 -5.48,-5.09 -4.55,3.1 -4.59,4.89 -5.96,0.42 -5.12,-3.47 -2.55,-3.06 -24.23,-39.95 -6.51,-7.7 0.17,-6.96 9.27,-21.51 9.88,-15.69 12.93,-10.25 18.03,-5.12 25.26,3.25 6.51,-2.42 4.91,-11.49 1.1,-13.26 2.65,-10.17 9.84,-2.61 10.18,-0.36 3.24,0.72 8.22,6.96 18.77,20.65 10.65,4.55 12.33,2.94 34.41,19.8 79.31,12.95 5.89,-2.06 4.73,-6.13 4.62,-15.62 4.92,-7.56 23.58,-5.76 3.63,-5.46 -2.11,-25.5 1.86,-11.51 8.36,-4.51 19.64,-0.75 5.45,1.56 25.71,23.57 5.12,-3.23 7.24,-15.53 4.26,-3.42 27.33,0.92 0.39,-3.5 26.26,-30.98 5.14,-3.17 7.33,0.26 0.55,11.7 6.02,18.16 4.31,22.43 -3.61,17.71 4.67,8.33 6.19,5.23 5.44,1.57 -1.4,4.96 -2.13,12.47 -1.34,5.19 21.54,23.55 -0.3,8.34 -4.46,-0.16 -0.25,6.9 17.03,-6.42 5.62,0.32 12.84,10.31 10.62,29.97 8.56,6.53 5.21,2.03 4.14,5.05 3.12,7.2 2.53,8.32 0.13,5.59 -4.94,3.67 -0.21,5.81 1.88,5.71 2.56,3.95 2.39,3.02 15.04,29.86 20.17,15.27 25.36,4.66 54.97,-7.52 154.15,39.91 23.79,16.81 4.7,-31.75 -1.15,-30.97 2.64,-26.26 15.98,-17.2 -6.87,13.11 -4.51,28.83 -3.98,10.65 6.31,13.23 18.34,11.58 4.87,15.19 -7.32,0.48 -7.02,-1.58 -6.55,-3.17 -5.95,-4.46 4.53,10.62 20.89,30.06 12.66,12.6 14.32,26.73 8.82,6.39 8.43,2.86 47.88,29.1 23.64,21.85 9.14,11.89 21.28,46.63 36.32,58.5 3.76,10.95 24.38,47.87 8.8,29.64 6.94,10.08 12.98,7.34 0.35,-6.9 -4.48,-0.23 14.9,-21.54 28.51,-10.08 147.53,7.78 25.02,-10.45 14.33,9.38 18.94,-3.62 8.93,-11.95 -15.18,-15.89 -16.49,-4.54 -69.75,2.26 -28.3,8.98 -17.07,1.47 -4.98,-2.51 -6.37,-10.53 -3.6,-3.01 -13.21,-0.69 -16.92,2.41 -6.05,-3.89 -3.26,-15.03 -4.44,8.01 -3.25,-2.24 -5.51,-5.23 -4.1,-1.42 1.69,-9.48 2.9,-4.11 4.16,-1.18 5.34,-0.47 -2.25,-0.75 -1.8,-0.15 -0.87,-1.48 0.44,-4.76 -12.82,6.14 -13.88,-2.03 -11.21,-8.45 -5.26,-13.06 -11.27,12.86 -13.07,5.8 -23.72,1.08 -10.21,-5.63 -8.23,-13.24 -3.34,-17.16 4.42,-17.41 -9.43,1.44 -3.84,1.49 -4.83,3.85 -4.06,-7.85 4.87,-13.02 -2.46,-13.42 -7.73,-10.05 -10.56,-3.04 5.29,-14.83 6.01,-11.7 1.89,-9.7 -6.99,-9.09 29.35,-18.4 16.08,-3.37 13.44,9.36 -9.94,-0.83 -7.99,3.35 -13.89,11.19 3.6,13.37 5.65,9.83 15.49,16.77 3.71,2.78 7.01,2.7 2.73,2.04 1.8,5.68 -0.08,13.99 1.12,4.66 10.62,9.86 41.07,22.51 -9.06,6.11 -4.14,0.83 -0.39,7.64 11.79,5.03 4.44,-0.06 5.51,-3.87 -0.38,7.53 12.63,-10.13 19.13,6.05 34.37,22.06 -1.6,3.6 -2.18,8.3 -1.55,3.78 6.51,5.36 7.42,3.38 7.99,1.52 8.29,-0.43 0.43,-8.22 -9.58,-3.1 -6.18,-9.14 -3.16,-12.9 -0.81,-13.98 7.44,14.56 2.5,7.57 1.75,8.9 6.25,-10.21 7.3,-9.47 7.42,-3 6.79,8.94 7.94,-6.43 6.9,0.71 6.09,5.57 5.33,8.47 2.27,-8.58 3.52,-7.76 4.41,-6.96 11.84,-13.54 2.52,-1.88 2.29,1.33 6.56,1.8 12.46,-0.12 6.54,2.31 6.76,6.83 5.14,9.33 5.78,18.36 5.16,11.29 15.57,17.41 24.93,18.17 25.18,11.06 16.68,-3.89 -7.77,-8.51 0.42,-13.3 5.7,-13.79 8.33,-10.42 28.87,-12.91 8.22,-7.08 -11.01,-22.6 3.61,-16.97 20.36,-28.96 2.51,-11.91 0.71,-12.12 2.36,-9.2 7.49,-3.42 29.04,1.71 0.49,-8.22 -6.11,-0.53 -4.19,-2.15 -7.05,-5.26 21.21,3.21 35.12,-17.27 23.01,-4.1 17.18,-8.12 24.31,-42.86 18.48,-14.6 -9.6,-7.74 -7.19,-8.52 16.31,1.12 23.49,13.97 13.11,-4.14 -4.3,-13.42 -2.85,-5.31 -4.77,-4.97 7.97,-4.12 4.63,2.94 4.02,3.83 6.04,-1.24 3.92,-5.29 11.04,-24.85 9.34,-15.96 10.5,-12.72 12.52,-7.16 15.41,0.69 -0.48,7.64 -5.73,4.77 -8.16,12.16 -5.78,4.6 -0.49,7.69 79.6,21.05 18.7,10.22 31.87,24.95 18.15,7.5 3.22,-5.56 -0.69,-4.95 -4.07,-3.85 -6.26,-2.14 0.46,-6.95 20.48,-8.96 54.83,-39.97 0.52,-7.58 -8.34,-17.01 -3.89,-21.79 -6.85,-20.08 -16.84,-12.15 8.25,-5.51 20.58,-23.07 7.68,-10.9 4.05,-2.61 19.01,-6.55 4.76,-2.97 3.43,-7.32 2.65,-8.01 2.19,-5.1 1.01,-3.86 -0.46,-5.11 0.09,-4.32 2.7,-1.72 9.16,1.5 2.36,-0.7 3.6,-2.76 4.23,-2.13 4.31,-1.32 3.7,-0.32 8.44,-3.91 1.88,-10.43 -3.26,-12.87 -6.68,-10.85 -44.41,-42.11 -5.75,-14.76 6.76,-13.15 12.7,-5.14 12.5,-2.09 5.71,-3.7 4.98,-11.83 10.62,-13.41 11.25,-8.63 6.97,1.93 51.32,-37.22 22.13,-3.4 11.63,-12.62 2.76,-2.29 15.77,2.4 4.92,-0.92 17.19,-8.81 8.27,-2.64 53.25,-0.11 18.18,6.99 6.63,15.9 4.71,3.76 10.7,-1.29 7,-5.77 3.21,-2.71 3.25,-17.89 -4.63,-8.66 -0.77,-0.63 -28.32,-23.74 8.6,-4.16 9.86,-2.68 10.8,-0.64 4.66,0.98 3.12,-31.01 -1.44,-17.48 11.58,-21.02 17.07,-42.15 2.05,-10.88 1.26,-40.78 2.31,-24.6 6.5,-22.55 17.96,-23.72 8.66,-22.67 15.68,-22.44 11.26,-57.01 24.89,-84.24 1.75,-9.34 1.94,-20.12 2.89,-10.75 4.6,-6.76 10.84,-7.87 3.09,-6 9.29,-7.37 -14.75,-35.6 -4.34,-7.69 -6.74,-4.33 -5.87,-10.4 -3.74,-13.94 -0.74,-14.92 3.77,-17.88 5.19,-15.43 2.6,-15.97 -15.31,-64.41 -1.17,-9.44 -7.5,-20.74 -18.95,-23.09 -37.14,-34.41 -39.26,-24.34 -30.7,-26.49 0.5,-6.92 4.82,-10.88 11.03,-38.83 2.53,-13.78 -1.27,-21.22 -5.98,-13.96 -16.75,-16.82 8.84,-15.06 12.34,-8.35 14.44,-3.41 15.04,-0.01 13.93,-4.99 23.89,-24.41 19.1,-8.49 75.53,-47.54 11.38,-11.47 26.52,-43.85 7.57,-6.27 13.29,-5.02 21.44,-25.11 41.67,-12.94 46.89,-45.16 22.41,-15.69 -15.85,-41.35 -3.24,-26.22 13.51,-10.55 4.08,-11.61 -9.17,-26.94 -14.39,-27.37 -32.76,-33.75 7.19,-43.82 19.9,-47.24 16.78,-31.22 -2.52,-20.52 16.62,-16.01 24.03,-10.09 19.72,-2.99 19.75,-6.85 12.12,-18.68 1.58,-22.75 -11.94,-18.68 0.55,-6.88 11.09,-14.7 -1.35,-16.08 -5.76,-20.78 -1.9,-29.15 8.11,-15.39 47.12,-29.83 -11.34,-16.7 -4.49,-9.86 -1.41,-10.13 -0.47,-10.29 -2.07,-10.74 -12.68,-28.06 -2.84,-11.08 2.92,-68.02 -4.12,-22.19 -9.01,-20.83 -11.33,-17.95 -36.34,-43.27 -7.55,-19.96 3.87,-23.38 12.65,-16.43 13.13,-7.68 10.54,-12.07 4.98,-29.09 9.32,-27.69 16.97,-17.05 35.72,-25.3 10.44,-18.5 9.01,-27.66 3.45,-29.15 -6.4,-22.89 -11.78,-22.38 -3.96,-22.03 5.33,-19.42 16.59,-14.82 46.48,-11.66 15.45,-9.28 0.01,-0.12 16.57,-7.8 33.32,-7.03 16.31,-6.25 11.51,-7.62 13.94,-12.44 8.42,-14.72 -4.75,-14.37 12.97,-75.82 0.08,-1.03 4.65,-19.67 2.56,-7.51 14.73,-21.59 17.28,-17.28 11.94,-20.95 -0.95,-32.52 2.81,-3.24 3.14,-2.86 -10.04,-24.49 -7.03,-30.36 -3.15,-31.64 1.5,-28.13 -0.28,-14.38 -4.02,-7.78 -5.01,-5.58 -3.13,-8 -0.34,-11.04 1.59,-21.36 -1.06,-12.91 -24.87,-81.83 -28.65,-87.04 -22.76,-29.77 -8.65,-17.2 1.56,-20.67 -8.78,-30.67 -5.68,-13.39 -6.22,-8.4 -11.1,-3.99 -15.32,-0.62 -26.57,3.83 -28.48,18.36 -10.46,4.8 -24.96,5.02 -4.05,8.07 0.96,20.05 9.78,28.87 2.93,15.06 -4.73,12.29 -8.51,-0.48 -37.61,-19.08 -8.53,5.76 2.82,13.84 7.21,16.6 4.43,13.78 0.04,16.81 -3,10.69 -6.03,8.37 -9.26,9.64 -9.13,6.12 -19.27,3.34 -9.15,5.44 -7.27,8.6 -2.89,6.48 -2.02,6.58 -4.76,9.11 -4.93,-15.81 -7.66,-4.73 -25.53,-0.44 -18.99,-10.15 -7.76,-0.39 -7.91,3.57 -5,5.73 -4.15,5.9 -5.63,4.44 -26.69,6.63 -22.04,-5.14 -15.57,-18.32 -7.57,-32.68 -7.02,-11.87 8.58,-4.81 23.92,-1.41 14.41,-4.67 -0.93,-2.32 -5.65,-4.56 0.19,-11.71 19.2,-16.44 26.45,-5.76 19.52,-9.49 -2.19,-27.98 -19.35,-19.01 -55.45,0.39 -24.91,-7.09 -7.09,-8.06 -11.49,-20.32 -8.01,-8.64 -106.19,-57.96 -13.48,-1.84 -25.98,1.58 -13.56,-3.91 -7.2,-5.91 -9.85,-14.5 -6.85,-5.88 -8.8,-1.91 -6.98,1.61 -5.95,-0.63 -5.95,-8.41 -2.28,-10.99 1.5,-9.36 2.19,-7.7 0.03,-5.88 -4.36,-7.21 -3.98,-1.7 -4.3,-0.4 -19.57,-14.09 -12.52,-3.41 -32.6,1.51 -15.14,-2.53 -26.19,-11.65 -13.43,-3.57 -63.39,-3.64 -31.64,-8.01 -27.82,-19.23 9.22,-16.56 -1.86,-15.16 -8.67,-12.75 -11.22,-9.62 4.64,-8.65 -0.25,-6.76 -3.92,-5.48 -6.78,-4.39 -11.35,-16.07 -11.33,-11.64 -12.96,-4.06 -16.25,6.81 -5.03,5.58 -10.93,16.12 -4.06,4.08 -8.81,2.65 -1.89,-1.49 -0.2,-4.05 -3.96,-4.84 -25.43,-20.4 -3.54,-7.29 -6.22,-22.95 -14.41,-8.44 -12.07,4.54 -11.95,7.38 -13.82,0.48 -19.98,-64.35 -9.14,-19.01 -16.7,-14.02 -37.48,0.1 -19.63,-7.99 -0.14,-0.13 -0.07,0 -6.35,-2.14 -6.64,-0.88 -6.63,0.21 -6.32,1.5 -5.73,3.84 -5.93,0.94 -5.85,-1.75 -5.64,-4.4 -2.17,-45.57 -3.53,-20.52 -9.42,-12.43 -20.09,-22.04 -24.37,0.09 -67.85,36.6 -6.03,1.48 -6.31,-1.65 -9.64,-7.12 -4.32,-1.94 -12.78,1.13 -11.34,-1.27 -11.38,-4.77 -8.64,-9.48 -14.5,-25.14 -7.55,-8.03 -9.2,-1.5 -38.3,5.03 -52.97,-6.53 -28.24,-9.81 -18.89,-17.81 -5.08,-4.84 -2.24,-5.63 -1.2,-5.7 -1.68,-5.09 0.25,-2.29 1.13,-3.69 0.65,-4.34 -1.36,-4.15 -2.79,-1.69 -6.41,-0.07 -2.5,-1.61 -8.11,-7.97 -20.34,-12.68 -7.31,-7.93 -20.25,-41.16 -7.71,-8.87 -7.7,-5.93 -5.43,-8.93 -1.13,-17.72 -13.27,-18.67 -3.36,-10.62 -1.34,-19.86 2.75,-13.69 4.66,-11.71 0.44,-9.88 -9.64,-7.68 -12.24,1.02 -7.73,10.94 -9.9,30.24 -0.99,5.71 -1.54,6.44 -3.26,7.11 -3.28,4.05 -13,12.04 -1.96,2.51 -0.84,2.43 0.56,2.27 1.83,2.21 0.85,0.84 0.93,0.68 0.94,0.38 1.1,0.22 2.89,6.4 0.15,5.13 -2.53,3.92 -5.21,2.59 -20.5,-0.36 -10.52,2.77 -8.25,6.66 -3.17,8.56 -0.59,19.08 -4.63,10.1 -14.1,9.13 -52.25,1.67 17.12,-16.44 6.15,-9.64 3.31,-15.74 -0.73,-14.3 -4.57,-5.37 -7.16,-5.14 -8.36,-13.81 7.92,-12.9 36.15,-20.53 18.29,-18.45 8.57,-12.06 6.02,-12.98 2.78,-16.63 -3.94,-25.49 1.15,-16.64 6.93,-16.56 10.52,-8.82 11.74,-6.11 10.73,-8.51 6.84,-10.7 1.97,-11.31 0.59,-10.1 2.6,-6.97 110.94,-53.19 0.74,0.03 11.46,-10.3 26.49,-1.54 12.61,-10.93 2.61,-16.17 -4.27,-15.22 -0.26,-12.1 30.17,-15.86 10.42,-3.49 4.83,-7.83 -1.21,-21.7 -4.99,-17.27 -15.13,-31.39 -4.47,-17.42 -14.62,3.75 -3.66,-15.88 0.7,-23.33 -1.46,-18.38 -10.93,-12.12 -29.18,-14 -7.73,-17.09 4.1,-11.56 8.09,-13.91 15.87,-20.74 10.79,-8.89 11.37,-7.02 24.53,-10.38 10.24,-4.76 6.51,-11.5 1.21,-14.74 -5.48,-13.89 1.93,-1.41 5.88,-2.55 -3.03,-8.89 -0.39,-2.72 7.81,-8.62 17.68,-8.66 8.01,-8.03 5.65,-11.82 4.53,-24.48 3.53,-12.9 5.27,-13.11 5.03,-9.72 6.08,-8.05 8.24,-7.84 8.27,-2.08 7.58,1.46 5.59,-4.11 1.88,-18.68 3.85,-36.37 4.46,-17.86 9.02,-15.68 14.73,-11.09 34.2,-14.1 15.36,-14.38 26.43,-52.06 12.08,-11.31 14.67,-4.5 43.11,-4.09 13.5,2.53 -3.96,14.14 9.82,3.67 28.16,-6.2 12.66,-5.97 10.95,-7.95 21.57,-20.57 12.9,-4.56 4.53,-8.86 1.55,-10.69 3.86,-10.16 24.7,-26.38 0,-0.06 0.16,-0.1 9.3,-4.63 73.22,-88.93 10.77,-21.35 12.64,-18.03 21.33,-10.91 44.22,0.4 14.95,-4.8 9.34,-7.19 23.87,-28.42 32.84,-29.8 9.27,-18.88 2.26,-31.15 11.49,-16.45 22.17,-18.47 24.12,-15.24 17.58,-7.2 6.42,19.79 6.23,12.65 9.86,5.25 16.99,-2.56 13.33,-7.09 13,-9.19 12.9,-6.13 13.22,2.3 3.1,-20.91 9.02,-19.74 12.49,-16.64 13.26,-11.69 14.26,-5.7 27.58,-2.62 10.66,-5.1 18.71,-25.52 39.85,-68.4 15.29,-13.96 -19.03,-47.67 -1,-10.67 3.71,1.62 8.8,-14.95 3.86,-3.16 9.48,-3.84 -9.22,-9.98 -1.06,-13.38 6.14,-35.64 0.65,-18.69 -1.28,-16.17 -3.65,-14.87 -10.92,-28.18 -3.18,-5.48 -5.72,-6.43 -5.71,-2.9 -15.17,-3.42 -2.55,0.42 -5.46,-13.05 -4.73,-30.06 -1.7,1.59 -31.09,11.78 -12.34,16.65 -12.51,8.17 -13.31,6.16 -77.71,16.78 -24.49,-4.79 -23.55,-10.45 -6.27,-6.53 -3.59,-7.96 0.69,-4 2.5,-4.86 4.14,-19.87 7.49,-10.31 2.17,-9.67 -1.43,-10.94 -8.69,-21.62 -2.92,-10.4 -0.77,-10.41 3.19,-31.3 -0.85,-11.66 -2.85,-7.83 -3.03,-5.94 -1.12,-5.82 -2.84,-23.82 -9.33,-17.91 -68.81,-67.4 -24.12,-15.31 -101.16,-23.44 -75.27,-34.65 -11.51,-9.15 -26.23,-27.97 -23.26,-14.59 -11.03,-9.89 1.13,-2.6 -40.74,-10.1 -10.91,-6.57 -6.38,-7.74 -12.52,-22.1 -9.13,-11.63 -28.56,-22.19 -2.82,-3.82 -9.79,-17.15 -4.44,-2.29 -4.85,0 -4.69,-1.87 -4.15,-8.21 -0.73,-15.06 4.48,-14.46 7.27,-13.05 7.46,-10.63 55.16,-52.31 12.41,-24.25 2.92,-13.44 4.59,-11.43 6.46,-8.51 18.43,-9.84 15.83,-14.77 6.19,-2.94 13.21,-11.71 28.34,-57.5 17.4,-23.279 3.65,-3.332 -44.29,-79.93 -3.66,-8.937 -1.12,-7.141 0.13,-7.133 -0.94,-7.41 -4.41,-8.109 0.01,-0.059 -0.15,-0.121 -12.86,-22.238 12.87,-11.813 42.18,-5.66 11.14,2.5 18.56,9.34 11.72,-1.269 9.66,-6.52 9.81,-10.68 15.97,-24.328 6.82,-15.82 2.85,-14.129 0.24,-13.523 -0.92,-13.52 -1.74,-2.508 -7.77,-22.492 -0.31,-3.09 -11.28,-16.539 -2.06,0.641 1.93,-25.172 1.6,0.711 -0.77,-1.649 -6.22,-18.371 -1.71,-3 1,-19.351 0.98,-6.86 2.03,-6 2.71,-5.55 2.3,-6.649 0.71,-9.23 -20.16,-26.61 -4.99,-4.808 -8.08,-0.793 -4.82,2.64 -4.43,4.2 -7.44,3.511 -7.85,-0.64 -6.06,-3.7 -6.27,-2.539 -8.42,2.938 -38.3,26 -36.27,36.152 -6.63,4.797 -7.2,2.184 -11.69,1.437 -19.32,14.071 -5.3,27.23 7.92,26.199 20,11.172 -15.62,13.68 -20.11,11.91 -12.5,13.898 6.82,19.782 -12.8,-2.289 -42.64,8.828 -26.76,-1.27 -26.46,-7.68 -13.94,-7.851 -32.07,-31.399 -11.48,-5.742 -15.7,-3.816 -15.47,-0.293 -10.79,4.723 -23.16,16.968 -6.37,6.989 -4.52,8.921 -8.88,23.34 -3.78,6.25 -12.43,1.871 -28.97,-12.609 -12.63,-2.613 -43.75,7.383 -16.26,-3.051 -16.39,-9.461 -8.09,-1.578 -7.72,6.32 -4.62,12.09 2.15,7.859 4.53,6.86 2.27,8.898 1.44,11.941 2.11,5.18 -1.84,-0.461 -10.73,-5.25 -6.34,-4.347 -17.43,-15.793 -11.66,-5.309 1.84,-9.012 2.66,-6.047 5.81,-7.07 6.37,-5.832 3.91,-2.398 2.35,-6.032 2.47,-29.629 -0.35,-10.429 -2.42,-7.199 -20.3,-28.391 -5.93,-1.481 -172.96,0.719 -62.59,-15.211 -8.28,-5.367 -6.85,-19.172 -7.68,-2.859 -42.66,7.172 -61.25,-1.891 -33.01,5.418 -13.93,-0.008 -2.45,-3.301 -20.37,-18.91 -4.74,-11.949 -5.06,-25.922 -3.47,-10.398 -13.19,-15.672 -16.13,-7.027 -35.14,-7 -17.22,4.859 -18.6,1.937 -16.99,-4.546 -34.25,-41.954 9.35,-2.25 8.34,-5.109 3.14,-8.187 -6.13,-11.223 -12.07,-5.629 -32.71,-1.758 -13.89,-4.902 -14.17,-13.981 -9.59,-13.73 -10.42,-11.859 -16.24,-8 -18.15,1.55 0.78,30.262 -16.33,6.137 -18.87,-5.731 -48.34,-35.457 -14.62,-4.91 -78.73,-0.902 -10.68,5.883 -8.1,14.847 1.79,0.16 2.29,5.172 1.52,7.739 -0.42,7.46 -2.39,4.989 -38.64,39.613 -39.21,17.039 -5.35,8.688 23.88,17.152 6.12,7.789 -17.59,12.59 -8.12,4.351 -10.44,0.469 -10.58,-3.301 -30.02,-14.609 -22.2,-3.199 -6.5,1.801 -3.85,5.199 -2.62,5.687 -3.11,3.434 -100.12,35.418 -18.2,-0.141 -10.27,-7.48 -14.82,-21.578 -9.41,-7.891 -8.84,-1.719 -32.14,4.258 -11.85,5.172 -6.23,4.25 -4.06,5.039 -1.5,9.512 2.67,7.109 3.55,5.41 0.85,4.379 -3.54,10.309 -2.68,2.019 -5.71,-2.379 -12.55,-2.5 -11.18,-4.66 1.26,-9.57 6.75,-12.141 5.21,-12.34 -0.74,-10.296 -6.82,-44.454 10.7,-5.578 6.59,-7.05 4.23,-9.719 3.37,-13.699 0.61,-23.832 -6.4,-25.11 -10.58,-22.68 -12.25,-16.91 -6.4,-4.488 -15.82,-5.82 -7.71,-5.403 -4.4,-7.05 -16.2,-34.028 -13.27,-18.5 -14.54,-13.742 -33.49,-21.32 -16.39,-6.668 -60,-8.27 -3.39,1.899 2.94,6.992 6.77,12.648 3.02,2.149 9.95,3.133 3.62,3.679 1.76,7.43 -0.49,6.66 -1.83,7.27 13.03,41.328 0.24,20.023 -14.01,7.278 -33.06,-6.532 -8.83,-10.039 -3.17,-2.508 -3.9,-0.031 -7.87,4.629 -3.75,0.43 -9.85,-4.879 -5.71,-4.36 -5.07,-0.3 -7.44,7.019 -4.2,10.571 -0.87,11.941 -2.18,11.508 -8.4,9.543 16.97,13.578 3.35,11.738 -6.81,12.942 -37.8,53.781 -8.52,-4.02 -6.62,-5.949 -6.58,-2.953 -8.32,4.832 -1.25,6.48 -0.27,3.379 -0.05,3.36 -7.03,14.879 -9.54,9.3 -7.98,10.301 -2.33,18.352 -9.01,-7.41 -11.33,-2.372 -22.42,1.52 -22.73,8.129 -3.8,-1.078 -9.19,-6.071 -6.07,-0.531 -15.4,7.77 -3,11.711 1.33,13.539 -2.62,13.133 -8.88,9.5 -10.69,3.738 -11.25,-1.379 -10.83,-5.902 -16.22,-19.227 -9.14,-20.301 -10.73,-17.101 -20.45,-9.95 -48.24,-1.23 -47.32,12.602 -208.69,128.429 -29.21,6.66 -28.09,-0.113 -10.2,15.852 -41.51,-0.078 -83.72,9.339 -14.2,-5.632 -11.95,-12.977 -27.32,-8.711 -29.42,-2.762 -18.38,4.852 -21.78,16.32 -11.15,11.188 -0.06,7.73 13.81,3.18 -19.35,18.391 -24.46,14.332 -20.15,0.98 -6.81,-21.781 6.1,-6.879 -39.63,-0.442 -1.44,7.239 -1.83,8.48 -5.94,7.403 -3.15,9.089 2.51,7.25 10.05,14.989 2.03,4.179 -4.91,11.25 -7.36,1.461 -8.29,-1.691 -7.74,1.781 -5.54,8.871 -5.83,12.891 -7.15,10.976 -9.66,3.262 -6.85,-7.101 -3.99,-24.207 -9.32,-6.051 -7.33,5.531 -2.56,13.508 -0.63,14.359 -1.12,8.102 -13.82,6.34 -18.64,1.129 -11.96,-6.758 6.86,-17.563 -11.34,-5.679 -40.39,-7.782 -8.37,0.282 -5.91,-3.461 -10.25,-14.86 -3.54,-8.07 -5.82,-22.188 -8.04,-7.41 -19.07,-10.281 -7.43,-8.359 -0.92,-8.2 3.12,-8.152 1.79,-9.488 -4.91,-12 11.76,-4.43 3.72,-0.601 19.14,-14.821 15.46,-8.949 13.36,0.48 11.14,5.668 10.45,7.372 11.29,5.589 36.51,5.993 10.46,-1.84 12,-5 6.83,-0.703 -4.4,-26.309 -4.88,2.488 -0.43,6.84 -0.69,1.781 -3.26,-0.089 -3.97,-1.481 -2.73,-2.34 -1.74,-6.129 1.21,-5.058 1.77,-4.352 0.29,-3.82 -0.98,-7.57 0.35,-7.899 -0.9,-8.332 -4.94,-8.559 -10.12,-3.332 -8.26,10.274 -8.84,15.098 -11.51,10.929 -22.53,-2.16 -23.1,-15.059 -8.91,-18.949 -0.97,-5.281 -23.19,-3.73 -48.1,0.66 -28.46,7.832 -7.34,4.886 -5.19,10.762 -3.94,10.75 -3.99,4.86 -8.69,1 -19.44,6.152 -13.59,0.078 -40.61,-6.418 -3.91,-2.492 -3.79,-5.379 -5.18,-5.383 -13.8,-3.949 -16.41,-8.641 -6.19,-4.687 -6.46,-7.25 -3.1,-5.602 -3.39,-4.777 -7.37,-4.883 -33.91,-7.18 -97.88,1.289 -1.96,4.743 -1.33,10.449 -2.26,10.449 -4.52,4.832 -48.44,3.641 -10.49,5.558 -14.01,-21.179 -12.19,-14.153 -14.28,-7.808 -62.89,-11.981 -16.52,2.492 -38.52,21.25 19.67,-0.531 8.14,7.59 10.35,27.648 -17.05,-1.476 -38.59,-10.801 3.32,11.258 1.86,3.961 -1.44,10.621 -3.86,5.871 -4.74,4.277 -4.4,5.723 -16.29,34.137 -9.9,14.371 -10.99,6.012 -2.85,5.168 -2.17,12.019 -1.64,23.961 2.77,6.609 12.65,12.981 4.56,7.262 0.73,18.148 -8.56,39.082 2.31,15.379 11.36,35.809 4.27,5.269 10.24,5.352 1.85,12.398 -3.48,20.75 0.25,4.941 -0.57,2.821 -0.33,2.82 0.94,4.641 2.33,4.777 5.03,4.711 3.12,5.43 4.91,11.05 1.48,4.942 -0.59,18.078 4.29,14.78 20.29,20.74 7.34,13.26 -1,34.72 -31.18,57.33 -1.46,45.9 5.1,21.6 5.31,16.85 5.56,9.84 5.2,6.62 3.93,8.66 1.75,16 5.16,13.5 48.15,64.96 8.11,16.01 5,18.76 1.91,22.54 5.53,23.27 12.12,9.59 13.76,7.18 10.46,16.18 1.17,15.52 -3.51,14.88 -4.59,14.26 -2.15,13.43 1.08,14.57 5.91,29.26 3.95,12.61 5.3,10.45 4.93,7.11 3.91,10.73 1.87,21.15 3.98,10.02 9,8.93 18.7,14.3 0.12,7.64 -8.33,23.74 0.68,38.66 6.82,36.2 31.81,48.07 8.69,5.96 12.23,3.78 11.41,9.6 20.5,23.84 8.82,5.56 9.87,9.35 8.05,10.46 3.39,8.74 1.2,21.18 4.01,9.89 8.39,2.64 20.66,0.08 5.65,1.88 4.22,3.56 1.68,6.13 1.72,10.43 3.5,5.88 3.45,3.23 1.63,2.73 6.46,0.21 27.12,14.14 4.52,3.8 9.29,15.23 34.33,91.24 23.34,43.06 15.55,17.47 -8.39,8.08 -71.76,15.75 -115.14,63.38 -13.19,1.68 -41.69,-3.76 -60.53,18.59 -8.11,-2.05 -17.3,-9.08 -8.96,-2.15 -7,1.15 -15.39,5.78 -8.06,1.52 -9.25,-1.8 -8.6,-3.52 -8.8,-2.09 -10.08,2.48 -6.69,5.93 -6.84,14.54 -5.24,6.77 -16.07,8.74 -31.83,6.18 -15.73,10.42 -9.34,12.3 -15.99,27.16 -10.04,10.89 1.36,3.65 1.86,2.49 5.49,3.4 -4.5,16.18 -13.09,5.09 -31.45,2.78 -2.9,12.47 -14.14,1.51 -17.21,-4.81 -12.28,-6.63 -3.51,-5.44 -5.63,-16.03 -3.83,-6.06 -5.56,-2.46 -14.97,-1.57 -6.54,-2.09 -4.72,-5.47 -8.05,-15.51 -4.4,-4.33 -4.58,0.8 -19.4,9.64 -62.89,2.07 -11.36,4.19 -11.32,6.26 -27.38,20.97 -3.99,0.62 -6.8,-6.38 0.45,-6.16 2.19,-5.86 -1.27,-5.6 -22.76,-13.56 -15.74,13.05 -7.64,30.73 1.4,39.22 -15.71,1.22 -44.79,26.96 -8.02,1.43 -21.28,-1.48 -30.22,7.81 -7.35,-1.57 -4.66,-15.33 4.98,-18.14 2.26,-18.52 -13.06,-16.35 -9.33,-1.86 -28.1,11.34 -32.47,1.25 -8.48,3.94 -8.87,15.85 2.45,13.55 4.11,13.96 -4.05,17.78 -2.94,0.03 -9.98,-6.14 -3.25,-0.24 -1.83,4.02 -1.17,8.78 -0.75,2.49 -2.19,4.73 -5.08,20.79 -2.98,3.32 -9.97,3.93 -3.81,3.16 -0.69,4.51 1.85,11.21 -0.98,4.75 -46.87,48.17 -11.69,15.16 -4.16,13.07 4.3,10.04 12.93,0.21 3.44,8.86 -2.26,6.75 -34.04,38.59 -4.78,7.58 1.44,0.41 0.06,6.21 -1.65,9.25 -4.19,9.4 -12.041,12.42 -65.39,35.51 -7.957,1.65 -5.992,-2.09 -14.11,-9 -7.769,-1.22 -6.121,0.91 0.289,8.15 -1.059,33.74 7.781,46.37 1.239,35.21 4.539,12.1 11.5,16.73 19.632,22.55 7.829,14.8 5.718,7.85 2.121,4.94 -0.418,7.37 -4.261,4.46 -4.508,3.32 -1.141,3.72 11.719,15.3 54.172,32.55 -1.344,2.46 -4.726,5.85 2.636,5.32 3.41,1.55 6.182,-2.67 -4.908,7.06 -3.16,8.1 -1.34,9.13 0.859,9.92 7.199,5.91 0.44,4.3 -1.77,5.01 0.34,7.86 4.23,24.07 1.07,0.72 0.38,9.36 1.62,1.5 0.21,-0.24 -3.73,4.32 -2.82,0.27 -21.93,7.29 -34.508,1.18 -12.442,3.88 -11.922,8.18 -19.968,20.43 -11.918,8.13 -6.313,0.4 -11.008,-6.16 -5.769,0.72 -0.613,3.76 -6.52,19.45 -3.187,6.21 -10.231,7.16 -23.949,11.75 -10.793,11.79 -21.469,57.75 -11.558,20.4 -8.293,-14.99 -5.34,9.92 -9.699,31.67 -11.641,19.31 -2.77,9.14 2.481,12.28 -3.551,23.38 -4.301,9.31 -7.597,4.78 7.16,12.73 2.808,3.51 -1.621,0.29 -4.308,-0.23 -1.219,0.85 5.719,31.08 4.07,15.14 5.57,15.89 6.789,7.39 1.711,5.36 0.61,1.9 0.039,0.13 -2.25,6.93 -7.008,6.14 1.758,5.4 1.222,5.29 1.629,7.08 0.621,1.54 0.848,2.09 5.02,2.85 1.25,0.71 14.281,0.6 3.91,2.32 1.539,0.92 4.68,10.35 0.922,12.51 -2.731,9.96 -0.769,2.83 -9.11,10.93 0.141,0.17 7.598,9.2 3.921,2.56 12.649,8.26 2.199,3.12 5.211,7.41 15.07,6.46 12.918,3.11 18.051,4.36 13.512,11.32 0.027,0.03 -2.789,10.12 1.883,11.14 5.098,10.52 2.589,2.93 4.789,5.43 5.704,3.02 4.136,2.2 7.922,-0.98 2.641,-1.14 5.34,-2.31 9.507,-2.07 18.942,2.76 0.09,0.02 3.09,3.06 6.109,6.06 0.043,0.04 -0.922,15.56 -0.059,0.11 -23.121,43.74 -0.48,13.19 5.449,14.71 0.289,1.23 5.723,24.78 0.929,14.71 0.231,3.63 0.008,0.2 -1.16,1.75 -1.418,2.14 -0.969,0.22 -4.063,0.94 -3.808,6.83 -1.922,3.44 -3.481,11.4 -1.339,8 -0.348,2.07 1.5,6.39 0.578,2.45 8.152,7.43 0.047,0.04 -12.879,1.21 -30.461,8.19 -10.66,5.57 -1.547,1.61 -0.132,0.05 -1.457,0.58 -1.75,-0.5 -0.032,-0.01 -0.379,-0.36 -1.222,-1.13 -0.098,-0.03 -3.41,-0.92 -20.731,-5.57 -4.921,0.43 -2.11,0.18 -1.777,1.55 -3.692,3.2 -3.878,8.94 -1.723,3.99 -0.09,0.09 -1.527,1.52 -3.903,3.89 0,0 0.012,0.01 6,9.37 -0.223,0.02 -8.039,0.92 -5.621,2.63 0,0.03 -0.758,5.07 5.891,8.34 -11.141,15.23 -0.082,0.1 13.813,19.96 9.008,6.93 14.011,10.78 16.161,8.83 0.14,3.93 0.008,0.09 8.41,9.46 1.403,2.56 3.937,7.14 -1.367,6.73 -48.781,3.04 -14.262,8.19 -7.641,16.29 9.653,5.67 -0.063,0.1 -32.949,54.87 -7.438,12.42 -13.043,14.09 -11.699,1.56 -28.25,-6.58 -9.289,1.47 -0.879,3.43 -1.519,5.98 3.097,11.62 0.012,2.51 0.059,8.19 -4.051,2.33 -7.438,4.29 -0.339,0.77 -0.602,1.34 0.012,2.01 0.519,2 0.668,1.08 0.442,0.71 0.14,0.23 2.117,14.41 -4.32,6.97 -6.789,5.17 -5.008,9.52 -2.402,14.37 10.59,-3.14 10.511,9.07 4.25,13.06 -1.121,10.29 -0.257,9.62 6.636,10.9 9.891,5.12 15.812,-2.02 8.231,9.11 4.75,11.26 0.566,8.84 -5.047,23.1 1.598,7.31 3.941,5.88 1.559,4.43 -22.629,8.9 -16.14,11.07 -5.129,6.13 -1.461,8.93 -0.36,16.07 3.059,9.14 4.66,9.19 -1.211,5.86 -25.297,-2.02 -18.172,6.85 -9.668,1.73 -9.621,-2.3 -18.582,-8.26 -9.66,-1.55 0.461,28.07 -9.437,32.43 -2.872,26.19 20.059,9.51 9.481,-5.87 7.871,-11.18 8.988,-8.95 12.949,0.84 9.024,9.12 14.636,27.74 9.852,10.47 66.808,48.17 40.692,20.06 10.941,13.42 -14.133,14.27 16.473,12.45 5.688,3.03 -15.821,6.14 -35.758,-22.56 -16.031,9.79 -4.16,20.73 3.012,24.74 6.879,21.91 7.629,11.98 15.421,17.37 38.329,64.58 7.55,6.87 18.18,11.67 7.289,9.54 4.274,13.7 3.089,24.28 4.399,9.61 -10.02,12.96 1.719,20.44 6.223,23.44 3.359,21.91 -2.609,20.3 -3.551,36.61 -26.711,33.43 -43.609,65.31 -2.461,13.76 4.351,15.74 9.071,24.56 -45.993,22.48 -15.031,20.87 10.57,31.1 -6.57,7.35 -14.93,12.33 -7.769,4.12 -20.07,0.37 -6.731,3.08 1.07,11.92 15.981,14.62 2.141,22.41 -8.29,21.9 -15.171,12.7 2.769,9.81 11.813,7.65 28.328,3.82 13.551,5.14 14.671,10.02 10.11,4.88 28.34,6.43 22.109,-6.87 16.07,-4.8 10.989,-3.2 -8.68,14.96 -24.609,28.02 -8.282,6.83 23.903,11.77 21.769,-11.35 21.418,-18.82 22.902,-10.46 21.668,3.93 5.661,-0.91 4.73,-4.95 7.102,-13.96 2.988,-3.94 26.262,-5 10.937,-6.93 1.434,-17.4 26.108,6.28 3.25,10.99 -4.72,25.28 43.66,-14.64 14.02,-0.49 11.57,4.77 34.75,24.87 69.27,21.17 60.96,0.01 18.94,9.5 16.58,18.61 16.57,28.03 5.8,6 5.28,0.76 3.58,3.29 1.05,13.57 -1.48,7.55 -3.39,5.48 -17.16,19.33 -44.04,26.5 -14.89,4.93 -10.67,8.08 -0.88,17 5.12,11.43 6.26,2.73 7.24,0.29 8.35,3.88 5.74,6.8 6.04,13.99 3.81,6.21 11.98,11.74 11.16,5.81 44.52,3.65 8.87,7.65 16.05,30.46 13.7,13.55 29.7,12.03 13.98,11.74 16.77,25.63 7.59,8.39 30.86,17.67 2.06,5.67 -5.43,10.7 -5.41,23.93 0.98,20.36 5.39,16.65 14.53,31.41 6.87,40.38 -8.79,28.86 -39.53,68.52 -4.34,-1.89 -4.42,-7.35 -6.5,-5.8 -17.14,-4.51 -17.88,-0.67 -19.08,3.7 -34.72,14.49 -53.56,9.27 -17.63,9.33 -12.91,16.06 -3.61,16.71 -0.36,19.63 -1.74,19.93 -7.78,17.71 11.24,0.64 38.23,17.86 -21.61,19.52 -4.53,7.31 0.08,9.26 3.38,9.13 1.64,9.92 -5.29,11.82 24.39,16.57 22.88,6.34 64.22,-0.91 35.55,-11.91 33.5,4.02 10.09,-4.6 23.92,-8.23 12.96,23.46 6.03,39.06 9.53,119.89 6.86,37.03 12.95,33.5 57.48,85.55 15.53,36.87 7.07,35.31 2.04,39.84 -4.22,79.79 -2.24,9.78 -3.11,5.89 -2.38,7.13 -0.14,13.32 1.89,8.92 10.09,24.25 5.04,19.03 2.51,17.27 -0.24,17.87 -0.73,31.31 6.64,3.51 7.72,7.94 6.06,7.99 6.22,11.72 2.67,13.23 -4.65,12.36 17.5,25.19 9.06,4.33 15.56,-0.09 14.3,-4.14 22.58,-15.13 12.62,-5.38 -15.56,23.99 -26.2,10.34 -151.46,9.19 -24.23,12.88 -8.98,31.23 2.21,82.42 3.4,18.66 13.75,33.33 3.34,16.59 5.69,9.97 13.08,-0.52 26.57,-6.52 3.79,8.81 6.39,3.23 5.08,10.74 -0.73,14.11 -5.68,8.09 -19.11,10.28 -8.38,9.08 -0.98,14.64 9.7,12.11 21.73,14.26 24.62,26.28 13.07,8.59 25.23,25.01 52.65,19.08 101.88,9.19 7.06,-5.1 6.61,-9.86 15.56,-3.96 97.86,18.35 198.49,24.43 52.58,-16.16 -0.12,-8.28 -4.72,-31.21 17.9,-40.55 26.88,-35.43 21.97,-15.8 -0.08,-6.9 -5.86,-14.01 10.28,-5.13 14.59,-4.43 7.26,-11.64 -2.22,-20.04 -6.42,-10.16 -14.45,-10.58 -12.07,-6.12 -26.15,-1.97 -11.81,-7.2 11.72,-37.24 5.86,-14.11 8.87,-9.77 8.49,3.98 7.66,3.12 11.11,-0.53 7.77,-4.41 12.46,-14.87 4.63,-3.1 5.37,-4.83 5.31,-10.52 6.89,-10.49 9.57,-4.82 11.06,0.23 8.13,1.69 7.19,4.24 8.19,7.91 14.38,23.25 15.06,38.21 3.99,38.02 -18.96,22.61 -26.11,-6.64 -13.95,2.51 1.47,16.25 5.88,18.17 5.19,37.78 5.78,15.75 8.78,9.28 11.33,4.31 27.63,1.11 12.66,-5.98 9.66,-13.66 7.93,-15.3 7.92,-11 26.71,-13.9 56.46,-11.63 25.53,-12.53 -0.05,-8.28 -16.05,-13.58 -14.58,-17.61 -10.93,-23.95 -4.35,-32.28 0.24,-62.5 3.79,-27.45 8.86,-20.59 2.12,27.47 -6.66,69.56 0.85,32.76 10.31,24.13 15.23,10.71 13.99,13.31 6.3,31.69 -3.26,5.54 -16.83,43.63 -5.02,6.53 -6.6,15.05 -5.84,16.77 -4.5,21.19 -9.17,25.36 -1.99,18.53 1.64,18.79 4.14,16.3 25.03,61.63 18,66.87 11.4,29.77 9.46,14.09 12.92,12.23 14.65,8.78 14.82,3.26 13.79,-1.05 7.66,-3.42 16.16,-18.47 23.23,-19.98 24.85,-13.02 51.45,-12.9 28.16,0.76 47.89,11.86 26.32,-2.12 12.37,14.55 52.26,12.87 52.13,-0.4 11.06,8.19 8.99,-6.75 10.81,-1.92 22.29,1.17 5.72,-3.77 14.56,-19.03 64.77,-113.28 26.65,-31.12 18.65,-15.12 9.16,-11.66 9.31,-33.57 45.81,-66.64 10.27,-9.23 12.36,-5.42 15.69,-1.76 8.24,-3.95 39.75,-26.71 81.2,-17.25 8.59,3.72 -8.39,14.4 -25.08,14.26 -59.41,6.34 -24.31,9.37 -48.08,30.57 -21.86,24.49 -8,35.42 -2.14,30.22 -2.8,19.47 -6.67,5.99 -31.15,17.15 -9.84,3.44 -16.18,14.67 -15.53,33.31 -10.69,35.99 -1.14,22.13 -23.99,9.36 -41.7,35.86 -24.86,15.08 -24.68,5.66 -83.42,1.72 -25.07,11.64 -16.7,4.65 -7.61,-4.95 -6.92,-11.33 -15.22,5.06 -23.14,17.72 -21.83,27.22 -54.02,110.31 25.2,11.56 12.32,0.96 15.69,-4.39 25.57,-17.33 14.15,-4.72 14.29,6.9 5.07,12.13 5.35,22.02 3.51,23.8 -0.08,17.31 -7.63,11.44 -12.03,10.75 -8.98,11.39 1.89,12.7 0.01,6.9 -16,4.96 -22.75,-4.24 -21.35,-10.26 -11.71,-13.15 -4.46,0.01 -17.76,31.03 -11.54,25.04 -1.81,5.41 5.32,22.35 10.09,19.18 6.84,17.47 -4.67,16.97 0.01,7.53 8.1,6.08 27.48,7.94 11.37,1.14 6.81,5.62 10.24,13.85 10.04,17.59 6.46,16.78 -14.73,-2.92 -24.63,-21.3 -13.94,-6.14 1.35,3.62 1.77,7.99 1.35,3.62 -19.85,-2.32 -33.92,-10.38 -19.99,-2.36 -23.33,4.11 -9.97,-3.99 -21.76,-20.84 -7.68,-2.49 -17.27,6.35 -18.48,17.05 -13.32,24.51 -1.65,28.99 9.2,11.45 17.84,8.01 19.9,3.93 15.31,-0.93 0.04,7.59 -11.61,2.93 -8.89,8.49 -8.58,2.75 -10.48,-13.98 -5.44,12.33 2.01,12.53 6.04,11.52 6.55,9.23 13.86,-6.28 52.59,14.22 71.36,-0.2 16.51,4.46 13.69,8.54 27.38,24.24 25.13,12.3 10.72,8.27 4.42,18.06 0,26.97 -16.33,25.59 -52.89,57.13 -7.47,11.92 -3.12,11.79 -5.93,5.19 -13.35,-0.44 -13.63,-3.82 -7.16,-5.05 -4.45,8.35 22.06,15.13 -22.27,60.49 -8.35,15.55 -18.42,11.78 -34.78,30.6 -21.79,11.08 0.04,7.59 3.74,20.11 -8.41,22.63 -12.32,22.37 -8.54,19.31 -3.51,29.29 3.05,25.8 8.92,32.33 22.04,-7.06 23.66,-1.13 43.74,16.3 14.98,2.26 51.21,-8.95 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7201" /><path
+               id="path3158" /><path
                d="m 2414.39,8757.2 0,0 30.76,-8.03 139.86,6.17 -16.18,-12.74 -80.07,5.04 -10.11,-5.39 -17.75,-13.73 -9.77,-2.74 -44.24,0.37 -4.16,2.22 -5.42,9.77 -5.41,2.7 -6.17,-0.18 -4.2,-1.68 -19.56,-13.39 -3.28,-3.13 -1.81,-8.09 -1.15,-21.9 -1.97,-4.46 1.59,-60.8 -1.87,-19.88 -3.41,-15.21 -4.16,-3.35 -4.03,15.74 -0.3,29.28 8.81,120.73 6.27,23.63 49.71,135.77 27.24,33.52 30.23,-16.57 -38.97,-1.76 -5.13,-5.53 17.75,-1.99 5.1,-13.5 -5.87,-15.31 -26.1,-14.5 -12.2,-17.89 -6.89,-22.36 5.44,-20.58 -4.14,-39.47 21.56,-20.78 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2414.39,8757.2 0,0 30.76,-8.03 139.86,6.17 -16.18,-12.74 -80.07,5.04 -10.11,-5.39 -17.75,-13.73 -9.77,-2.74 -44.24,0.37 -4.16,2.22 -5.42,9.77 -5.41,2.7 -6.17,-0.18 -4.2,-1.68 -19.56,-13.39 -3.28,-3.13 -1.81,-8.09 -1.15,-21.9 -1.97,-4.46 1.59,-60.8 -1.87,-19.88 -3.41,-15.21 -4.16,-3.35 -4.03,15.74 -0.3,29.28 8.81,120.73 6.27,23.63 49.71,135.77 27.24,33.52 30.23,-16.57 -38.97,-1.76 -5.13,-5.53 17.75,-1.99 5.1,-13.5 -5.87,-15.31 -26.1,-14.5 -12.2,-17.89 -6.89,-22.36 5.44,-20.58 -4.14,-39.47 21.56,-20.78 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7203" /><path
+               id="path3160" /><path
                d="m 57.9102,6850.27 0,0 -0.3907,-6.84 13.6914,-0.78 -5.4023,-14.39 -9.7695,-16.73 -20.3477,-27.79 -33.03124,-24.28 -16.82036,-28.52 -22.9882,-5.28 -22.9219,11.11 -11.2578,29.03 5.8984,28.91 15.25,32.06 18.1211,25.87 33.33985,25.44 17.62895,32.43 18.4414,26.57 20.8476,-2.36 2.25,-6.61 1.25,-5.84 -0.8594,-5.31 -3.9492,-4.99 8.5703,-15.97 5.711,-20.18 -1.1407,-17.48 -12.121,-8.07 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 57.9102,6850.27 0,0 -0.3907,-6.84 13.6914,-0.78 -5.4023,-14.39 -9.7695,-16.73 -20.3477,-27.79 -33.03124,-24.28 -16.82036,-28.52 -22.9882,-5.28 -22.9219,11.11 -11.2578,29.03 5.8984,28.91 15.25,32.06 18.1211,25.87 33.33985,25.44 17.62895,32.43 18.4414,26.57 20.8476,-2.36 2.25,-6.61 1.25,-5.84 -0.8594,-5.31 -3.9492,-4.99 8.5703,-15.97 5.711,-20.18 -1.1407,-17.48 -12.121,-8.07 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7205" /><path
+               id="path3162" /><path
                d="m 94.0117,6976.44 0,0 -17.8906,-14.02 -20.293,10.53 30.3633,34.95 45.7386,37.77 46.769,23.99 33.262,-6.52 -0.422,-7.56 -17.82,0.98 -8.528,-4.43 -19.82,-6.22 -55.441,-48.5 -15.9183,-20.97 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 94.0117,6976.44 0,0 -17.8906,-14.02 -20.293,10.53 30.3633,34.95 45.7386,37.77 46.769,23.99 33.262,-6.52 -0.422,-7.56 -17.82,0.98 -8.528,-4.43 -19.82,-6.22 -55.441,-48.5 -15.9183,-20.97 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7207" /><path
+               id="path3164" /><path
                d="m 431.871,7159.62 0,0 -30.262,-11.67 -24.007,-4.77 -94.141,-35.84 -18.949,1.44 -7.282,17.3 8.45,18.71 36.25,10.63 12.379,10.23 15.222,-1.25 90.117,13.69 11.293,8.18 9.188,6.4 99.449,14.19 -16.469,-20.74 -19.121,-5.64 -38.789,0.29 1.121,-3.86 1.102,-8.23 1.117,-3.98 -8.949,-4.22 -27.719,-0.86 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 431.871,7159.62 0,0 -30.262,-11.67 -24.007,-4.77 -94.141,-35.84 -18.949,1.44 -7.282,17.3 8.45,18.71 36.25,10.63 12.379,10.23 15.222,-1.25 90.117,13.69 11.293,8.18 9.188,6.4 99.449,14.19 -16.469,-20.74 -19.121,-5.64 -38.789,0.29 1.121,-3.86 1.102,-8.23 1.117,-3.98 -8.949,-4.22 -27.719,-0.86 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7209" /><path
+               id="path3166" /><path
                d="m 1389.51,7152.26 0,0 19.82,-92.4 3.39,-1.54 15.77,-12.02 1.15,-2.85 3.17,-2.51 3.15,-5.36 4.53,-5.3 20.72,-7.55 26.15,-15.98 11.88,3.58 5.61,-6.56 7.87,-2.29 7.91,1.97 5.95,6.14 4.54,-0.12 -0.2,-7.56 -5.43,-4.48 -2.84,-3.26 0.01,-4.87 3.12,-9.34 0.9,-18 19.95,-12.21 47.88,-13.69 7.51,-0.33 0.73,-31.31 0.24,-17.87 -2.51,-17.27 -5.04,-19.03 -10.09,-24.25 -1.89,-8.92 0.14,-13.32 2.38,-7.13 3.11,-5.89 2.24,-9.78 4.22,-79.79 -2.04,-39.84 -7.07,-35.31 -15.53,-36.87 -57.48,-85.55 -12.95,-33.5 -6.86,-37.03 -9.53,-119.89 -6.03,-39.06 -12.96,-23.46 -23.92,8.23 -10.09,4.6 -33.5,-4.02 -35.55,11.91 -64.22,0.91 -22.88,-6.34 -24.39,-16.57 5.29,-11.82 -1.64,-9.92 -3.38,-9.13 -0.08,-9.26 4.53,-7.31 21.61,-19.52 -38.23,-17.86 -11.24,-0.64 7.78,-17.71 1.74,-19.93 0.36,-19.63 3.61,-16.71 12.91,-16.06 17.63,-9.33 53.56,-9.27 34.72,-14.49 19.08,-3.7 17.88,0.67 17.14,4.51 6.5,5.8 4.42,7.35 4.34,1.89 39.53,-68.52 8.79,-28.86 -6.87,-40.38 -14.53,-31.41 -5.39,-16.65 -0.98,-20.36 5.41,-23.93 5.43,-10.7 -2.06,-5.67 -30.86,-17.67 -7.59,-8.39 -16.77,-25.63 -13.98,-11.74 -29.7,-12.03 -13.7,-13.55 -16.05,-30.46 -8.87,-7.65 -44.52,-3.65 -11.16,-5.81 -11.98,-11.74 -3.81,-6.21 -6.04,-13.99 -5.74,-6.8 -8.35,-3.88 -7.24,-0.29 -6.26,-2.73 -5.12,-11.43 0.88,-17 10.67,-8.08 14.89,-4.93 44.04,-26.5 17.16,-19.33 3.39,-5.48 1.48,-7.55 -1.05,-13.57 -3.58,-3.29 -5.28,-0.76 -5.8,-6 -16.57,-28.03 -16.58,-18.61 -18.94,-9.5 -60.96,-0.01 -69.27,-21.17 -34.75,-24.87 -11.57,-4.77 -14.02,0.49 -43.66,14.64 4.72,-25.28 -3.25,-10.99 -26.108,-6.28 -1.434,17.4 -10.937,6.93 -26.262,5 -2.988,3.94 -7.102,13.96 -4.73,4.95 -5.661,0.91 -21.668,-3.93 -22.902,10.46 -21.418,18.82 -21.769,11.35 -23.903,-11.77 8.282,-6.83 24.609,-28.02 8.68,-14.96 -10.989,3.2 -16.07,4.8 -22.109,6.87 -28.34,-6.43 -10.11,-4.88 -14.671,-10.02 -13.551,-5.14 -28.328,-3.82 -11.813,-7.65 -2.769,-9.81 15.171,-12.7 8.29,-21.9 -2.141,-22.41 -15.981,-14.62 -1.07,-11.92 6.731,-3.08 20.07,-0.37 7.769,-4.12 14.93,-12.33 6.57,-7.35 -10.57,-31.1 15.031,-20.87 45.993,-22.48 -9.071,-24.56 -4.351,-15.74 2.461,-13.76 43.609,-65.31 26.711,-33.43 3.551,-36.61 2.609,-20.3 -3.359,-21.91 -6.223,-23.44 -1.719,-20.44 10.02,-12.96 -4.399,-9.61 -3.089,-24.28 -4.274,-13.7 -7.289,-9.54 -18.18,-11.67 -7.55,-6.87 -38.329,-64.58 -15.421,-17.37 -7.629,-11.98 -6.879,-21.91 -3.012,-24.74 4.16,-20.73 16.031,-9.79 35.758,22.56 15.821,-6.14 -5.688,-3.03 -16.473,-12.45 14.133,-14.27 -10.941,-13.42 -40.692,-20.06 -66.808,-48.17 -9.852,-10.47 -14.636,-27.74 -9.024,-9.12 -12.949,-0.84 -8.988,8.95 -7.871,11.18 -9.481,5.87 -20.059,-9.51 2.872,-26.19 9.437,-32.43 -0.461,-28.07 9.66,1.55 18.582,8.26 9.621,2.3 9.668,-1.73 18.172,-6.85 25.297,2.02 1.211,-5.86 -4.66,-9.19 -3.059,-9.14 0.36,-16.07 1.461,-8.93 5.129,-6.13 16.14,-11.07 22.629,-8.9 -1.559,-4.43 -3.941,-5.88 -1.598,-7.31 5.047,-23.1 -0.566,-8.84 -4.75,-11.26 -8.231,-9.11 -15.812,2.02 -9.891,-5.12 -6.636,-10.9 0.257,-9.62 1.121,-10.29 -4.25,-13.06 -10.511,-9.07 -10.59,3.14 2.402,-14.37 5.008,-9.52 6.789,-5.17 4.32,-6.97 -2.117,-14.41 -8.769,-1.27 -5.551,-0.8 -51.102,3.79 -0.668,0.24 -14.871,5.42 -61.211,1.07 -7,5.37 -13.73,16.54 -2.699,1.16 -4.25,1.85 -6.481,-4.55 -1.25,-1.71 -10.558,-14.4 -4.25,-0.67 -3.18,-0.5 -2.43,0.6 -5.152,1.29 -5.641,3.58 -6.238,3.96 -0.621,0.39 5.25,15.66 3.18,9.52 0.57,4.1 1.25,8.94 -0.117,0.04 -9.75,3.39 -0.981,0.33 -0.172,0.1 -12.308,6.6 -2.403,1.29 -15.367,11.8 -9.07,14.88 -1.582,2.59 -0.129,8.02 -0.262,16.91 0,0.01 9.903,10.09 43.398,44.31 1.902,0.67 6.379,2.24 8.27,2.57 3.461,2.55 9.687,13.27 13.262,25.32 6.41,9.77 2.25,3.43 -6.648,4.38 -6.742,0.47 -15.622,-3.5 -0.238,-0.06 29.59,42.96 12.219,26.49 0.062,0.13 -8.922,13.35 1.371,8.74 0.942,5.92 1.566,4.14 2.453,6.47 5.879,3.29 7.871,-7.37 5.598,6.98 0.43,0.8 3.75,6.93 5.871,15.03 -0.442,1.14 -1.32,3.42 -0.93,3.44 -0.898,5.23 -0.488,2.89 7.629,-1.17 7.578,0.83 4.07,1.45 3.141,1.11 1.992,1.23 4.476,2.74 0.153,0.09 -15.172,17.75 2.793,12.6 4.508,4.11 5.699,5.18 0.043,0.03 -1.512,5.41 -5.601,14.43 -0.02,0 -8.449,1.04 -3.41,0.43 -10.989,-2.29 -10.711,-2.24 -0.98,0.91 -8,7.34 -13.699,20.81 -11.11,7.34 -3.98,0.61 -4.93,0.74 -13.019,-2.08 -16.492,-2.63 -12,0.42 -3.18,2.51 -4.149,3.27 -6.363,8.03 -4.449,3.45 -4.707,3.65 -39,13.78 -15.301,14.39 -1.051,25.38 -3.961,21.78 -2.531,3.67 -9.566,13.83 -8.133,5.7 -7.731,5.42 -14.976,2.45 -10.672,-4.53 -3.41,-1.44 -30.262,-19.23 -14.828,-4.66 -82.359,7.61 -26.653,-5.24 -12.09,3.76 0,0.05 1.68,39.55 -11.43,16.2 -9.949,1.52 -2.879,0.44 -27.05,-0.94 -10.961,6.85 -0.637,0.4 -0.07,0.05 -0.372,0.92 -2.628,6.52 -5.8208,24.91 -3.1601,9.84 -0.0625,0.07 -22.4688,27.75 -0.0507,0.14 -3.8282,10.9 2.3086,14.77 1.4297,9.16 8.711,17.37 3.4414,18.36 -7.8204,17.1 -4.4218,9.68 -20.0586,14.97 -0.5508,0.84 -1.25,1.91 -0.0312,-0.01 -10.8086,-2.17 -0.0704,-0.1 -4.4492,-6.36 -1.0195,-3.55 -1.9102,-6.66 -2.5898,-6.25 -2.9727,-7.16 -7.0898,-10.42 -4.7383,-6.96 -5.44921,-6.6 -11.76171,-14.23 -10.46098,-9.12 -8.0195,-7 -15.25,-3.3 -13.457,7.14 -12.7227,6.75 -6.6797,2.21 -5.9179,1.96 -48.5426,4.44 -14.34,7.22 -0.02,0.01 4.731,13.13 0.039,0 7.851,0.69 29.5003,-15.9 -1.7305,8.63 -2.1988,10.99 1.359,5.56 2.6914,11.09 1.8477,5.56 3.3711,10.13 -0.5508,16.86 -6.6294,9.83 -8.269,6.16 -2.91,2.18 -0.121,0.05 -6.899,3.1 -5.32,2.4 -0.102,0.01 -9.89,1.54 -23.559,-10.47 -57.57,-62.86 -0.039,-0.03 -7.461,-4.88 -9.539,-3 -9.379,-0.07 -1.442,-0.01 -0.058,0.02 -0.992,0.31 -20.809,6.61 -15.269,-1.86 -4.981,-0.6 -4.461,0.69 -4.691,0.73 -8.449,6.88 -4.25,3.46 0.968,5.31 0.992,5.47 6.731,13.48 0.519,4.65 1.551,13.87 -4.961,9.61 -8.648,2.15 -0.141,-0.02 -2.332,-0.23 -18.25,-1.88 -13.597,-4.08 -24.493,-7.33 -37.64,-18.93 7.812,-9.75 -1.929,-7.84 -5.071,-8.38 -0.261,-2.39 -0.961,-8.84 3.41,-7.4 1.351,-2.93 14.418,-19.59 0.012,-0.01 2.969,-9.33 0.582,-1.83 -3.512,-14.29 -1.141,-4.65 -13.679,-6.2 -5.59,0.71 -26.707,3.43 -5.481,2.27 -7.679,3.19 -16.723,10.54 -7.559,4.77 -19.789,1.96 -0.23,0.02 -2.383,3.38 -4.758,13.37 -0.922,13.64 1.114,11.44 -0.883,8.73 -6.707,5.46 -8.742,-10.07 -15.668,-3.59 -62.301,5.97 -14.121,5.73 -13.418,9.53 -36,35.9 -11.024,5.43 -28.789,4.97 -10.031,-5.42 -23.226,-37.48 -8.782,-11.07 -11.101,-4.91 -25.188,-0.97 -9.383,-5.08 -7.558,-0.71 -7.168,3.83 -17.672,21.54 -40.301,23.64 -25.308,28.12 -10.821,1.97 -29.492,-8.69 -15.687,0.49 -38.653,11.87 -11.976,7.65 -9.434,16.58 -7.918,18.44 -7.34,13.48 -21.34,21.8 -6.62,12.48 -1.35,18.21 8,9.55 74.51,38.68 187.23,6.54 15.219,-3.21 9.871,-6.75 10.512,-11.1 8.839,-14.38 5.379,-16.68 -7.441,-2.42 -12.367,-7.18 -4.953,-3.87 -0.489,-6.97 65.828,-11.51 32.793,-15.98 26.899,-26.84 8,-17.93 11.039,-39.33 9.402,-14.65 16.188,-5.93 36.429,2.63 13.321,-7.99 13.992,3.52 22.551,-2.51 21.539,4.38 10.961,24.75 -4.192,24.37 -13.242,18.94 -18.687,12.57 -30.871,7.68 -27.809,14.67 -10.539,1.59 -22.102,-1.15 -10.34,2.43 -15.941,11.08 -51.25,55.18 37.82,14.98 18.801,3.92 61.57,-7.24 17.79,-6.83 15.679,-15.02 -1.91,21.12 -8.18,8.96 -29.937,3.28 -7.172,3.33 -6.551,5.23 -5.058,7 -2.852,10 -1.277,12.92 0.699,12.67 2.699,9.22 9.59,9.22 12.32,4.17 23.629,0.48 -6.789,8.03 -16.648,13.6 -47.032,17.98 -8.921,15.29 -1.918,37.19 -9.969,23.81 -15.633,16.33 -18.648,14.82 -13.629,-8.9 -17.973,-4.2 -17.648,1.29 -13.731,-2.85 -2.879,-4.41 -4.91,-0.52 -6.601,0.75 -4.161,31.28 20.95,12.17 44.113,10.16 6.457,7.6 13.441,0.08 22.692,-6.81 18.429,-11.67 2.879,-0.77 5.16,0.22 7.329,2.68 8.812,6.64 -4.43,10.54 -15.921,25.4 -4.43,4.08 -3.531,4.77 -1.161,7.09 2.09,8.6 3.614,5.89 3.5,4.21 1.738,3.45 -1.121,17.16 -10.059,44.62 -6.39,19.1 4.48,8.15 5.191,7.08 31.418,-9.36 26.891,2.63 24.352,13.7 105.847,112.78 91.391,117.48 76.93,121.15 48.519,118.45 7.82,31.12 0.512,8.3 15.141,27.66 41.797,213.94 15.261,54.24 2.891,16.69 8.578,34.45 32.8321,72.25 8.6406,36.06 2.0586,20.54 4.2891,26.29 6.3594,22.62 8.3515,9.28 40.96095,-8.93 6.89844,6.11 4.51172,-8.56 -11.91016,-33.46 14.4375,-21.19 27.17185,-9.81 26.4297,0.24 15.7813,7.87 29.9294,23.15 14.239,4.39 27.058,2.07 26.871,10.19 141.403,113.88 10.5,11.26 13.058,9.7 31.231,5.71 14.078,8.22 15.082,26.8 22.109,74.92 15.281,33.34 24.868,26.3 14.972,12.02 25.117,9.52 11.704,12.13 11.187,14.58 12.652,11.87 13.789,4.18 32.051,3.84 24.199,19.09 108.532,38.19 24.668,16.22 15.242,0.49 45.707,21.13 64.211,0.55 130.789,-1.04 6.771,-2.67 11.35,-10.85 6.3,-2.65 5.84,1.68 17.4,12.7 99.91,25.39 157.38,19.12 65.31,-13.25 13.4,-6.68 10.97,-12.18 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1389.51,7152.26 0,0 19.82,-92.4 3.39,-1.54 15.77,-12.02 1.15,-2.85 3.17,-2.51 3.15,-5.36 4.53,-5.3 20.72,-7.55 26.15,-15.98 11.88,3.58 5.61,-6.56 7.87,-2.29 7.91,1.97 5.95,6.14 4.54,-0.12 -0.2,-7.56 -5.43,-4.48 -2.84,-3.26 0.01,-4.87 3.12,-9.34 0.9,-18 19.95,-12.21 47.88,-13.69 7.51,-0.33 0.73,-31.31 0.24,-17.87 -2.51,-17.27 -5.04,-19.03 -10.09,-24.25 -1.89,-8.92 0.14,-13.32 2.38,-7.13 3.11,-5.89 2.24,-9.78 4.22,-79.79 -2.04,-39.84 -7.07,-35.31 -15.53,-36.87 -57.48,-85.55 -12.95,-33.5 -6.86,-37.03 -9.53,-119.89 -6.03,-39.06 -12.96,-23.46 -23.92,8.23 -10.09,4.6 -33.5,-4.02 -35.55,11.91 -64.22,0.91 -22.88,-6.34 -24.39,-16.57 5.29,-11.82 -1.64,-9.92 -3.38,-9.13 -0.08,-9.26 4.53,-7.31 21.61,-19.52 -38.23,-17.86 -11.24,-0.64 7.78,-17.71 1.74,-19.93 0.36,-19.63 3.61,-16.71 12.91,-16.06 17.63,-9.33 53.56,-9.27 34.72,-14.49 19.08,-3.7 17.88,0.67 17.14,4.51 6.5,5.8 4.42,7.35 4.34,1.89 39.53,-68.52 8.79,-28.86 -6.87,-40.38 -14.53,-31.41 -5.39,-16.65 -0.98,-20.36 5.41,-23.93 5.43,-10.7 -2.06,-5.67 -30.86,-17.67 -7.59,-8.39 -16.77,-25.63 -13.98,-11.74 -29.7,-12.03 -13.7,-13.55 -16.05,-30.46 -8.87,-7.65 -44.52,-3.65 -11.16,-5.81 -11.98,-11.74 -3.81,-6.21 -6.04,-13.99 -5.74,-6.8 -8.35,-3.88 -7.24,-0.29 -6.26,-2.73 -5.12,-11.43 0.88,-17 10.67,-8.08 14.89,-4.93 44.04,-26.5 17.16,-19.33 3.39,-5.48 1.48,-7.55 -1.05,-13.57 -3.58,-3.29 -5.28,-0.76 -5.8,-6 -16.57,-28.03 -16.58,-18.61 -18.94,-9.5 -60.96,-0.01 -69.27,-21.17 -34.75,-24.87 -11.57,-4.77 -14.02,0.49 -43.66,14.64 4.72,-25.28 -3.25,-10.99 -26.108,-6.28 -1.434,17.4 -10.937,6.93 -26.262,5 -2.988,3.94 -7.102,13.96 -4.73,4.95 -5.661,0.91 -21.668,-3.93 -22.902,10.46 -21.418,18.82 -21.769,11.35 -23.903,-11.77 8.282,-6.83 24.609,-28.02 8.68,-14.96 -10.989,3.2 -16.07,4.8 -22.109,6.87 -28.34,-6.43 -10.11,-4.88 -14.671,-10.02 -13.551,-5.14 -28.328,-3.82 -11.813,-7.65 -2.769,-9.81 15.171,-12.7 8.29,-21.9 -2.141,-22.41 -15.981,-14.62 -1.07,-11.92 6.731,-3.08 20.07,-0.37 7.769,-4.12 14.93,-12.33 6.57,-7.35 -10.57,-31.1 15.031,-20.87 45.993,-22.48 -9.071,-24.56 -4.351,-15.74 2.461,-13.76 43.609,-65.31 26.711,-33.43 3.551,-36.61 2.609,-20.3 -3.359,-21.91 -6.223,-23.44 -1.719,-20.44 10.02,-12.96 -4.399,-9.61 -3.089,-24.28 -4.274,-13.7 -7.289,-9.54 -18.18,-11.67 -7.55,-6.87 -38.329,-64.58 -15.421,-17.37 -7.629,-11.98 -6.879,-21.91 -3.012,-24.74 4.16,-20.73 16.031,-9.79 35.758,22.56 15.821,-6.14 -5.688,-3.03 -16.473,-12.45 14.133,-14.27 -10.941,-13.42 -40.692,-20.06 -66.808,-48.17 -9.852,-10.47 -14.636,-27.74 -9.024,-9.12 -12.949,-0.84 -8.988,8.95 -7.871,11.18 -9.481,5.87 -20.059,-9.51 2.872,-26.19 9.437,-32.43 -0.461,-28.07 9.66,1.55 18.582,8.26 9.621,2.3 9.668,-1.73 18.172,-6.85 25.297,2.02 1.211,-5.86 -4.66,-9.19 -3.059,-9.14 0.36,-16.07 1.461,-8.93 5.129,-6.13 16.14,-11.07 22.629,-8.9 -1.559,-4.43 -3.941,-5.88 -1.598,-7.31 5.047,-23.1 -0.566,-8.84 -4.75,-11.26 -8.231,-9.11 -15.812,2.02 -9.891,-5.12 -6.636,-10.9 0.257,-9.62 1.121,-10.29 -4.25,-13.06 -10.511,-9.07 -10.59,3.14 2.402,-14.37 5.008,-9.52 6.789,-5.17 4.32,-6.97 -2.117,-14.41 -8.769,-1.27 -5.551,-0.8 -51.102,3.79 -0.668,0.24 -14.871,5.42 -61.211,1.07 -7,5.37 -13.73,16.54 -2.699,1.16 -4.25,1.85 -6.481,-4.55 -1.25,-1.71 -10.558,-14.4 -4.25,-0.67 -3.18,-0.5 -2.43,0.6 -5.152,1.29 -5.641,3.58 -6.238,3.96 -0.621,0.39 5.25,15.66 3.18,9.52 0.57,4.1 1.25,8.94 -0.117,0.04 -9.75,3.39 -0.981,0.33 -0.172,0.1 -12.308,6.6 -2.403,1.29 -15.367,11.8 -9.07,14.88 -1.582,2.59 -0.129,8.02 -0.262,16.91 0,0.01 9.903,10.09 43.398,44.31 1.902,0.67 6.379,2.24 8.27,2.57 3.461,2.55 9.687,13.27 13.262,25.32 6.41,9.77 2.25,3.43 -6.648,4.38 -6.742,0.47 -15.622,-3.5 -0.238,-0.06 29.59,42.96 12.219,26.49 0.062,0.13 -8.922,13.35 1.371,8.74 0.942,5.92 1.566,4.14 2.453,6.47 5.879,3.29 7.871,-7.37 5.598,6.98 0.43,0.8 3.75,6.93 5.871,15.03 -0.442,1.14 -1.32,3.42 -0.93,3.44 -0.898,5.23 -0.488,2.89 7.629,-1.17 7.578,0.83 4.07,1.45 3.141,1.11 1.992,1.23 4.476,2.74 0.153,0.09 -15.172,17.75 2.793,12.6 4.508,4.11 5.699,5.18 0.043,0.03 -1.512,5.41 -5.601,14.43 -0.02,0 -8.449,1.04 -3.41,0.43 -10.989,-2.29 -10.711,-2.24 -0.98,0.91 -8,7.34 -13.699,20.81 -11.11,7.34 -3.98,0.61 -4.93,0.74 -13.019,-2.08 -16.492,-2.63 -12,0.42 -3.18,2.51 -4.149,3.27 -6.363,8.03 -4.449,3.45 -4.707,3.65 -39,13.78 -15.301,14.39 -1.051,25.38 -3.961,21.78 -2.531,3.67 -9.566,13.83 -8.133,5.7 -7.731,5.42 -14.976,2.45 -10.672,-4.53 -3.41,-1.44 -30.262,-19.23 -14.828,-4.66 -82.359,7.61 -26.653,-5.24 -12.09,3.76 0,0.05 1.68,39.55 -11.43,16.2 -9.949,1.52 -2.879,0.44 -27.05,-0.94 -10.961,6.85 -0.637,0.4 -0.07,0.05 -0.372,0.92 -2.628,6.52 -5.8208,24.91 -3.1601,9.84 -0.0625,0.07 -22.4688,27.75 -0.0507,0.14 -3.8282,10.9 2.3086,14.77 1.4297,9.16 8.711,17.37 3.4414,18.36 -7.8204,17.1 -4.4218,9.68 -20.0586,14.97 -0.5508,0.84 -1.25,1.91 -0.0312,-0.01 -10.8086,-2.17 -0.0704,-0.1 -4.4492,-6.36 -1.0195,-3.55 -1.9102,-6.66 -2.5898,-6.25 -2.9727,-7.16 -7.0898,-10.42 -4.7383,-6.96 -5.44921,-6.6 -11.76171,-14.23 -10.46098,-9.12 -8.0195,-7 -15.25,-3.3 -13.457,7.14 -12.7227,6.75 -6.6797,2.21 -5.9179,1.96 -48.5426,4.44 -14.34,7.22 -0.02,0.01 4.731,13.13 0.039,0 7.851,0.69 29.5003,-15.9 -1.7305,8.63 -2.1988,10.99 1.359,5.56 2.6914,11.09 1.8477,5.56 3.3711,10.13 -0.5508,16.86 -6.6294,9.83 -8.269,6.16 -2.91,2.18 -0.121,0.05 -6.899,3.1 -5.32,2.4 -0.102,0.01 -9.89,1.54 -23.559,-10.47 -57.57,-62.86 -0.039,-0.03 -7.461,-4.88 -9.539,-3 -9.379,-0.07 -1.442,-0.01 -0.058,0.02 -0.992,0.31 -20.809,6.61 -15.269,-1.86 -4.981,-0.6 -4.461,0.69 -4.691,0.73 -8.449,6.88 -4.25,3.46 0.968,5.31 0.992,5.47 6.731,13.48 0.519,4.65 1.551,13.87 -4.961,9.61 -8.648,2.15 -0.141,-0.02 -2.332,-0.23 -18.25,-1.88 -13.597,-4.08 -24.493,-7.33 -37.64,-18.93 7.812,-9.75 -1.929,-7.84 -5.071,-8.38 -0.261,-2.39 -0.961,-8.84 3.41,-7.4 1.351,-2.93 14.418,-19.59 0.012,-0.01 2.969,-9.33 0.582,-1.83 -3.512,-14.29 -1.141,-4.65 -13.679,-6.2 -5.59,0.71 -26.707,3.43 -5.481,2.27 -7.679,3.19 -16.723,10.54 -7.559,4.77 -19.789,1.96 -0.23,0.02 -2.383,3.38 -4.758,13.37 -0.922,13.64 1.114,11.44 -0.883,8.73 -6.707,5.46 -8.742,-10.07 -15.668,-3.59 -62.301,5.97 -14.121,5.73 -13.418,9.53 -36,35.9 -11.024,5.43 -28.789,4.97 -10.031,-5.42 -23.226,-37.48 -8.782,-11.07 -11.101,-4.91 -25.188,-0.97 -9.383,-5.08 -7.558,-0.71 -7.168,3.83 -17.672,21.54 -40.301,23.64 -25.308,28.12 -10.821,1.97 -29.492,-8.69 -15.687,0.49 -38.653,11.87 -11.976,7.65 -9.434,16.58 -7.918,18.44 -7.34,13.48 -21.34,21.8 -6.62,12.48 -1.35,18.21 8,9.55 74.51,38.68 187.23,6.54 15.219,-3.21 9.871,-6.75 10.512,-11.1 8.839,-14.38 5.379,-16.68 -7.441,-2.42 -12.367,-7.18 -4.953,-3.87 -0.489,-6.97 65.828,-11.51 32.793,-15.98 26.899,-26.84 8,-17.93 11.039,-39.33 9.402,-14.65 16.188,-5.93 36.429,2.63 13.321,-7.99 13.992,3.52 22.551,-2.51 21.539,4.38 10.961,24.75 -4.192,24.37 -13.242,18.94 -18.687,12.57 -30.871,7.68 -27.809,14.67 -10.539,1.59 -22.102,-1.15 -10.34,2.43 -15.941,11.08 -51.25,55.18 37.82,14.98 18.801,3.92 61.57,-7.24 17.79,-6.83 15.679,-15.02 -1.91,21.12 -8.18,8.96 -29.937,3.28 -7.172,3.33 -6.551,5.23 -5.058,7 -2.852,10 -1.277,12.92 0.699,12.67 2.699,9.22 9.59,9.22 12.32,4.17 23.629,0.48 -6.789,8.03 -16.648,13.6 -47.032,17.98 -8.921,15.29 -1.918,37.19 -9.969,23.81 -15.633,16.33 -18.648,14.82 -13.629,-8.9 -17.973,-4.2 -17.648,1.29 -13.731,-2.85 -2.879,-4.41 -4.91,-0.52 -6.601,0.75 -4.161,31.28 20.95,12.17 44.113,10.16 6.457,7.6 13.441,0.08 22.692,-6.81 18.429,-11.67 2.879,-0.77 5.16,0.22 7.329,2.68 8.812,6.64 -4.43,10.54 -15.921,25.4 -4.43,4.08 -3.531,4.77 -1.161,7.09 2.09,8.6 3.614,5.89 3.5,4.21 1.738,3.45 -1.121,17.16 -10.059,44.62 -6.39,19.1 4.48,8.15 5.191,7.08 31.418,-9.36 26.891,2.63 24.352,13.7 105.847,112.78 91.391,117.48 76.93,121.15 48.519,118.45 7.82,31.12 0.512,8.3 15.141,27.66 41.797,213.94 15.261,54.24 2.891,16.69 8.578,34.45 32.8321,72.25 8.6406,36.06 2.0586,20.54 4.2891,26.29 6.3594,22.62 8.3515,9.28 40.96095,-8.93 6.89844,6.11 4.51172,-8.56 -11.91016,-33.46 14.4375,-21.19 27.17185,-9.81 26.4297,0.24 15.7813,7.87 29.9294,23.15 14.239,4.39 27.058,2.07 26.871,10.19 141.403,113.88 10.5,11.26 13.058,9.7 31.231,5.71 14.078,8.22 15.082,26.8 22.109,74.92 15.281,33.34 24.868,26.3 14.972,12.02 25.117,9.52 11.704,12.13 11.187,14.58 12.652,11.87 13.789,4.18 32.051,3.84 24.199,19.09 108.532,38.19 24.668,16.22 15.242,0.49 45.707,21.13 64.211,0.55 130.789,-1.04 6.771,-2.67 11.35,-10.85 6.3,-2.65 5.84,1.68 17.4,12.7 99.91,25.39 157.38,19.12 65.31,-13.25 13.4,-6.68 10.97,-12.18 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7211" /><path
+               id="path3168" /><path
                d="m 758.57,7219.44 0,0 26.481,-15.35 -66.449,-12.38 -68.204,3.06 -17.289,-3.64 -32.597,-13.35 -16.692,4.87 -10.82,17.09 4.691,16.25 11.618,8.84 9.871,-4.89 159.39,-0.5 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 758.57,7219.44 0,0 26.481,-15.35 -66.449,-12.38 -68.204,3.06 -17.289,-3.64 -32.597,-13.35 -16.692,4.87 -10.82,17.09 4.691,16.25 11.618,8.84 9.871,-4.89 159.39,-0.5 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7213" /><path
+               id="path3170" /><path
                d="m 917.23,7207.2 0,0 -13.921,-16.37 -3.629,7.17 -0.059,3.52 4.328,5.17 -6.379,15.57 17.321,14.16 25.25,10.1 17.718,3.68 65.861,3.34 18.28,-6.56 -0.28,-7.58 -9.05,0.33 -115.44,-32.53 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 917.23,7207.2 0,0 -13.921,-16.37 -3.629,7.17 -0.059,3.52 4.328,5.17 -6.379,15.57 17.321,14.16 25.25,10.1 17.718,3.68 65.861,3.34 18.28,-6.56 -0.28,-7.58 -9.05,0.33 -115.44,-32.53 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7215" /><path
+               id="path3172" /><path
                d="m 1121.05,7299 0,0 35.91,-17.45 -2.94,0.22 -2.51,-1.23 -2.15,-2.75 -1.8,-4.19 -23.34,8.82 -11.44,7.78 -0.97,7.46 9.24,1.34 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1121.05,7299 0,0 35.91,-17.45 -2.94,0.22 -2.51,-1.23 -2.15,-2.75 -1.8,-4.19 -23.34,8.82 -11.44,7.78 -0.97,7.46 9.24,1.34 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7217" /><path
+               id="path3174" /><path
                d="m -1720.4,4694.64 0,0 2.22,-40.8 0.49,-8.83 5.06,-22.05 22.52,-29.87 0.11,-0.16 9.57,-17.6 0.33,-22.29 -1.89,-2.52 -2.83,-3.78 -11.13,-9.35 -6.45,-5.42 -4.95,-9.8 4.89,-25.43 4.72,-24.51 -1.43,-7.16 -6.52,-11.87 -0.6,-2.58 -0.56,-2.4 -0.01,-0.06 0.45,-0.93 1.47,-3.05 5.99,-3.76 2.14,-1.35 1.3,-1.75 1.58,-2.14 2.56,-7.77 2.25,-6.81 3.16,-6.64 0.85,-0.47 4.12,-2.27 10.14,-3.07 5.72,-0.73 13.25,0.71 4.93,-0.98 1.7,-0.34 8.81,-5.67 2.93,-6.54 0.09,-0.2 1.53,-7.66 0.01,-0.04 3.94,-8.72 21.35,-24.24 2.71,-3.07 3.39,-7.69 7.56,-23.24 1.93,-4.4 1.21,-2.75 8.52,-8.48 3.6,-3.58 6.83,-3.86 47.35,-26.68 0.99,-0.56 2.16,-1.21 1.33,-0.41 6.44,-1.94 3.04,-0.92 9.93,6.4 14.07,20.34 10.17,14.71 7.12,6.51 6.84,6.26 7.93,4.1 9.14,4.73 31,7.03 7.48,1.69 22.01,5.01 34.76,7.92 3.67,-1.45 14.16,-5.58 11.04,-12.26 8.84,-19.37 2.83,-6.19 6.75,-14.77 7.01,-21.81 5.1,-6.99 9.8,-2.15 0.04,-0.02 9.2,-3.82 0.48,-1.08 4.33,-9.64 3.59,-16.34 2.37,-10.75 -5.45,-8.57 -5.85,-9.2 3.18,-32.59 13.85,-63.97 -1.65,-35.51 2.68,-12.91 1.24,-1.89 8.78,-13.27 8.73,-8.06 29.74,-18.51 12.11,-4.45 10.76,0.47 6.61,0.29 6.89,1.94 25.02,7.03 7.42,4.88 2.72,1.8 4.85,4.19 2.71,2.35 1.45,0.8 6.16,3.42 3.18,0.01 6.98,0.04 6.97,-2.71 2.97,-1.15 4.18,-6.14 -1.76,-8.88 -0.65,-0.99 -7.15,-10.84 0.07,-0.06 8.23,-7.14 2.72,-0.22 43.04,-3.45 15.8,-4.56 14.97,-8.88 13.09,-14.52 9.991,-21.79 2.91,-43.38 -3.66,-51.84 2.98,-45.87 23.321,-25.21 3.308,6.97 1.059,0.55 0.012,0.01 1.097,-1.12 3.403,2.01 1.347,2.01 0.801,1.19 0.949,2.28 2.801,6.74 14.332,20.85 6.199,6.14 5.578,1.63 4.301,1.25 31.172,0.17 29.289,-5.68 14.18,-8.48 5.039,-4.08 6.57,-5.32 9.379,-5.32 2.91,-1.64 6.461,-0.38 9.66,-0.56 15.77,5.42 30.73,10.57 8.481,0.33 6.691,0.26 12.77,-7.19 0.597,-0.34 21.852,-27.76 5.238,-3.52 9.332,-6.27 13.84,-14.12 0.02,-0.05 3.941,-10.17 12.789,-32.92 4.18,-2.31 8.519,-4.7 3.532,3.06 1.988,1.73 0.051,0.04 -0.18,3.58 -0.211,4.12 0.84,7.09 0.07,0.03 9.063,3.18 0.019,0 6.25,-2.71 3.36,-2.43 5.82,-4.22 8.328,-8.33 3.883,-7.51 -1.203,-5.67 -1.239,-5.82 -6.332,-6.39 -1.187,-1.2 -17.652,-12.06 -8.289,-10.36 -0.34,-0.78 -3.5,-8.08 -5.149,-19.96 -6.191,-16.26 -10.442,-27.4 -0.519,-3.47 -2.488,-16.52 5.488,-3.24 4.293,-2.53 14.668,5.56 7.762,0.71 6.847,-4.08 8.942,-48.72 1.531,-4.53 2.09,-6.2 4.379,-9.16 -0.211,-2.18 -0.481,-5.05 0,-0.05 -7.801,-3.28 -9.91,-4.17 -5.136,-3.19 -12.192,-7.57 -5.558,-4.55 -8.321,-6.83 -5.601,-6.03 -0.11,-0.22 -0.48,-0.94 -3.578,-6.93 -3.813,-12.9 0.012,-0.01 0.168,-0.08 3.133,-1.57 1.398,-8.56 1.418,-8.69 -0.066,-6.01 -0.114,-10.33 0,-0.03 -5.269,0.83 -0.399,0.06 38.75,-24.25 1.84,-0.66 7.61,-2.72 34.441,2.75 20.899,1.68 18.218,-6.26 92.793,-31.77 21.508,2.44 77.152,32.65 25.77,10.93 30.117,3.02 2.512,1.45 5.558,3.21 6.172,10.36 1.16,1.95 6.059,17.33 5.031,23.52 2.5,11.66 -0.16,4.03 -0.14,3.65 -1.348,3.3 -0.992,2.42 -0.352,1.8 -0.957,4.96 2.559,10.86 4.64,8.49 80.629,72.82 19.762,7.76 0.109,-0.76 2.211,-15.96 7.848,-3.84 22.633,3.41 6.09,-9.04 -1.5,-14.25 -0.543,-5.17 -5.118,-22.76 -1.113,-8.01 -1.59,-11.37 -0.148,0.19 -7.07,8.63 -4.418,-0.79 -0.141,-0.28 -10.723,-20.45 -4.238,-8.1 -0.012,-0.08 -0.379,-2.75 -0.988,-7.17 0.59,-9.31 -1.082,-9.63 -0.25,-2.22 -0.027,-0.07 -8.954,-19.15 -22.41,-47.87 -4.109,-17.57 8.652,-16.04 0.028,-0.06 13.73,-6.56 19.441,-9.29 0.04,-0.08 0.16,-0.32 9.871,-20.67 0.25,-7.9 0.211,-6.64 -2.391,-9.49 -2.18,-4.77 -1.972,-4.33 -3.438,-9.99 -1.179,-3.41 -2.161,-4.55 -0.531,-1.12 -6.801,-7.11 -1.718,-6.7 1.179,-5.65 6.41,-12.05 0.051,-0.26 1.36,-6.44 -1.313,-22.19 -1.137,-19.39 5.911,-8.67 0.089,-0.13 7.289,-1.45 11.379,-2.28 4.211,0.44 12.071,1.26 17.418,5.1 14.41,4.23 7.793,-0.04 7.3396,-0.03 1.3672,-0.86 11.25,-7.08 25.371,-27.9 13.9297,-8.91 19.5313,-6.77 5.75,-1.99 0,0 0.0195,-0.02 8.10939,-8.64 11.99219,-19.45 16.38672,-26.59 6.8633,-7.36 L 31,3045 l 12.6211,-10.43 16.3672,-5.73 21.3125,4.79 11.7109,2.64 6.7774,-0.16 8.7419,-0.21 0.078,-0.01 14.313,-15.68 13.09,-17.8 4.179,-16.9 -2.113,-2.35 -1.367,-1.51 -5.063,-2.91 -0.82,-0.47 -0.117,-0.07 -3.02,-15.62 0.598,-5.12 0.609,-5.12 0,-0.07 3.301,-4.54 0.071,-0.02 11.832,-2.92 3.789,0.98 1.437,0.37 4.082,5.44 3.36,5.94 2.82,2.85 0.012,0.01 0.199,-0.05 4.238,-0.92 4.422,-2.96 3.551,-2.38 21.988,-9.29 12.859,-12.71 31.813,-64.66 2.508,-10.31 -0.309,-5.2 -0.383,-6.39 -2.816,-10.34 -1.211,-9.91 0.867,-2.18 3.152,-7.91 15.442,-4.86 4.558,2.38 14.731,7.71 9.738,6.96 9.102,6.5 4.121,1.62 9.769,3.84 22.18,-11.6 6.129,-1.95 5.988,0.53 4.774,0.42 1.968,3.32 0.629,1.05 1.981,7.81 0.019,0.1 9.129,11.39 18.434,8.38 0.078,-0.02 16.051,-4.43 15.211,-8.39 15.508,-3.38 0.039,0.01 0.812,0.31 8.289,3.19 9.879,11.94 7.949,3.8 7.731,-1.48 15.422,-10.45 0.078,-0.02 0.531,-0.15 7.75,-2.26 21.449,-31.23 12.141,-12.36 17.832,-9.32 45.5,-12.87 13.058,-14.28 8.68,-32.22 12.75,3.68 61.942,1.29 10.789,3.55 7.449,10.41 8.89,3 1.879,5.91 0.2,7.12 4.082,6.64 5.238,1.86 20.5,1.12 -4.32,10.4 41.769,3.03 20.5,-2.94 19.543,-8.66 34.809,-28.06 18.871,-11.26 14.469,-2 6.121,-0.91 7.769,1.22 14.11,9 5.992,2.09 7.957,-1.65 65.39,-35.51 12.041,-12.42 4.19,-9.4 1.65,-9.25 -0.06,-6.21 -1.44,-0.41 4.78,-7.58 34.04,-38.59 2.26,-6.75 -3.44,-8.86 -12.93,-0.21 -4.3,-10.04 4.16,-13.07 11.69,-15.16 46.87,-48.17 0.98,-4.75 -1.85,-11.21 0.69,-4.51 3.81,-3.16 9.97,-3.93 2.98,-3.32 5.08,-20.79 2.19,-4.73 0.75,-2.49 1.17,-8.78 1.83,-4.02 3.25,0.24 9.98,6.14 2.94,-0.03 4.05,-17.78 -4.11,-13.96 -2.45,-13.55 8.87,-15.85 8.48,-3.94 32.47,-1.25 28.1,-11.34 9.33,1.86 13.06,16.35 -2.26,18.52 -4.98,18.14 4.66,15.33 7.35,1.57 30.22,-7.81 21.28,1.48 8.02,-1.43 44.79,-26.96 15.71,-1.22 -1.4,-39.22 7.64,-30.73 15.74,-13.05 22.76,13.56 1.27,5.6 -2.19,5.86 -0.45,6.16 6.8,6.38 3.99,-0.62 27.38,-20.97 11.32,-6.26 11.36,-4.19 62.89,-2.07 19.4,-9.64 4.58,-0.8 4.4,4.33 8.05,15.51 4.72,5.47 6.54,2.09 14.97,1.57 5.56,2.46 3.83,6.06 5.63,16.03 3.51,5.44 12.28,6.63 17.21,4.81 14.14,-1.51 2.9,-12.47 31.45,-2.78 13.09,-5.09 4.5,-16.18 -5.49,-3.4 -1.86,-2.49 -1.36,-3.65 10.04,-10.89 15.99,-27.16 9.34,-12.3 15.73,-10.42 31.83,-6.18 16.07,-8.74 5.24,-6.77 6.84,-14.54 6.69,-5.93 10.08,-2.48 8.8,2.09 8.6,3.52 9.25,1.8 8.06,-1.52 15.39,-5.78 7,-1.15 8.96,2.15 17.3,9.08 8.11,2.05 60.53,-18.59 41.69,3.76 13.19,-1.68 115.14,-63.38 71.76,-15.75 8.39,-8.08 -15.55,-17.47 -23.34,-43.06 -34.33,-91.24 -9.29,-15.23 -4.52,-3.8 -27.12,-14.14 -6.46,-0.21 -1.63,-2.73 -3.45,-3.23 -3.5,-5.88 -1.72,-10.43 -1.68,-6.13 -4.22,-3.56 -5.65,-1.88 -20.66,-0.08 -8.39,-2.64 -4.01,-9.89 -1.2,-21.18 -3.39,-8.74 -8.05,-10.46 -9.87,-9.35 -8.82,-5.56 -20.5,-23.84 -11.41,-9.6 -12.23,-3.78 -8.69,-5.96 -31.81,-48.07 -6.82,-36.2 -0.68,-38.66 8.33,-23.74 -0.12,-7.64 -18.7,-14.3 -9,-8.93 -3.98,-10.02 -1.87,-21.15 -3.91,-10.73 -4.93,-7.11 -5.3,-10.45 -3.95,-12.61 -5.91,-29.26 -1.08,-14.57 2.15,-13.43 4.59,-14.26 3.51,-14.88 -1.17,-15.52 -10.46,-16.18 -13.76,-7.18 -12.12,-9.59 -5.53,-23.27 -1.91,-22.54 -5,-18.76 -8.11,-16.01 -48.15,-64.96 -5.16,-13.5 -1.75,-16 -3.93,-8.66 -5.2,-6.62 -5.56,-9.84 -5.31,-16.85 -5.1,-21.6 1.46,-45.9 31.18,-57.33 1,-34.72 -7.34,-13.26 -20.29,-20.74 -4.29,-14.78 0.59,-18.078 -1.48,-4.942 -4.91,-11.05 -3.12,-5.43 -5.03,-4.711 -2.33,-4.777 -0.94,-4.641 0.33,-2.82 0.57,-2.821 -0.25,-4.941 3.48,-20.75 -1.85,-12.398 -10.24,-5.352 -4.27,-5.269 -11.36,-35.809 -2.31,-15.379 8.56,-39.082 -0.73,-18.148 -4.56,-7.262 -12.65,-12.981 -2.77,-6.609 1.64,-23.961 2.17,-12.019 2.85,-5.168 10.99,-6.012 9.9,-14.371 16.29,-34.137 4.4,-5.723 4.74,-4.277 3.86,-5.871 1.44,-10.621 -1.86,-3.961 -3.32,-11.258 -1.8,-0.539 1.63,-0.203 -26.83,-8.93 -18.22,-9.711 -33.33,-26.25 1.77,-0.777 12.34,-9.832 2.57,0.012 0.02,-11.121 -3.39,-6.278 -6.11,-1.902 -7.75,1.82 -4.4,-2.269 -1.08,-3.481 1.54,-4.512 5.23,-7.66 0.72,-2.797 -0.14,-2.902 -1.07,-3.141 -1.36,-1.839 -11.73,-10.168 -9.7,1.629 -9.68,6.46 -11.6,4.309 -8.85,-2.41 -0.06,-6.828 3.67,-6.942 2.44,-2.75 3.56,-5.269 1.12,-6.289 -2.63,-10.34 -15.28,-19.172 -21.14,-8.008 -52.32,3.36 -20.05,-3.762 -28.8,-11.77 -5.09,-0.918 -5.79,2.61 -2.95,4.09 -2.01,4.039 -3.07,2.558 -21.97,7.461 -16.13,10.211 -3.86,18.25 14.45,31.199 -20.53,-1.578 -10,1.848 -9.67,5.891 -17.66,4.128 -37.69,-5.617 -19.46,3.34 -6.72,5.43 -6.81,1.918 -6.81,-1.571 -6.83,-5.089 -14.13,-3.911 1.55,-12.418 7.39,-15.57 3.32,-13.328 -5.93,-9.211 -11.47,-9.269 -12.42,-6.75 -19.92,-3.891 -1.73,-20.93 -19.72,-10.91 -11.55,-14.281 -9.84,-17.121 -4.13,-14.11 90.06,6.45 14.07,6.332 11,-9.442 11.06,-10.57 7.6,-11.481 -6.17,-12.058 -7.22,-4.36 -7.78,-1.929 -8.01,-4.422 -11.4,-14.617 -4.1,-1.5 -6.9,-0.68 -14.6,-14.281 -5.44,-22.672 2.32,-27.641 -52.4,-36.328 -22.61,-22.058 -15.07,-23.372 -50.96,-44.55 -22.96,-7.27 0.39,-19.039 -11.06,-5.312 -2.88,-1.868 -3.03,-6.98 -19.26,-6.2813 -7.35,-6.8203 -10.72,-17.3594 8.49,-20.8789 -18.09,-24.5508 -51.889,-37.08202 -82.633,-23.15628 -37.57,-20.1718 -12.609,-38.6211 2.82,-10.1481 9.531,-19.692 2.039,-12.359 -1.757,-15.348 -4.602,-10.492 -5.602,-9.379 -13.16,-35.762 -1.277,-5.359 1.918,-6.328 3.84,-5.582 5.48,-6.449 -0.301,-18.762 -3.218,-9.117 -8.961,-10.512 -8.25,-5.738 -25.789,-12.59 -20.899,-22.031 -7.801,-6.153 -55.789,-28.179 -106.25,-90.508 -10.793,-13.121 1.84,-14.719 17.793,-21.41 -28.351,-33.231 -28.41,-44.84 -9.079,-9.089 -3.269,-6.661 -0.211,-5.679 1.469,-5.289 1.66,-4.66 0.43,-3.442 -0.321,-8.469 1.313,-7.582 -1.703,-7.269 -9.129,-8.11 40.519,-26.988 10.84,-12.59 8.77,-17.16 0.589,-12.332 -26.918,-54.781 -2.871,-8.578 -6.64,-31.262 -0.84,-11.988 0.34,-10.301 -3.617,-7.289 -17.161,-4.652 -4.492,-0.348 -4.597,0.738 -5.981,2.18 -1.43,0.172 -1.281,-0.071 -1.289,-0.351 -47.07,-20.879 -19.27,-11.23 -3.383,-13.27 7.473,-15.52 12.988,-17.628 -2.757,-9.442 -6.332,-10.969 -11.219,-23.722 19.027,10.371 35.352,7 35.25,0.07 25.832,-12.672 25.527,11.953 41.051,44.7 50.5,30.941 20.648,20.387 -3.109,25.742 -5.328,2.539 -13.11,-5.469 -7.902,4.469 -3.098,4.832 -6.761,18.629 -0.239,4.488 -6.429,19.141 -2.793,11.191 4.672,15.008 17,21.481 22.937,28.21 25.703,20.762 23.938,6.86 25.301,0.328 25.152,5.55 66.969,42.782 49.507,8.207 51.141,-3.199 113.571,-32.95 11.43,-6.07 6.84,-11.219 1.08,-21.121 -6.01,-18.449 -20.94,-23.199 -4.5,-12.723 14,-25.789 26.49,-29.73 16.68,-30.629 -28.79,-52.352 -14.51,-39.418 -8.17,-37.871 6.18,-18.852 61.11,-15.238 11.51,-11.738 -1.03,-8.481 -5.66,-8.351 -6.44,-7.41 -3.67,-5.65 2.19,1.04 1.06,-11.06 -0.07,-11.61 -1.15,-1.06 0.09,-8.62 -1.73,-4.61 0.39,-3.46 6.66,-5.35 7.32,-1.23 6.04,4.32 5.67,5.54 6.55,2.47 17.38,-8.22 50.87,-60.48 3.7,-2.62 2.5,-11.9 8.31,-23.31 4.94,-20.46 3.89,-11.3 5.14,-9.09 -11.27,-5 -8.43,-10.02 -6.59,-13.22 -5.27,-14.86 -11.04,-17.53 -15.98,-12.86 -17.8,-8.5 -16.66,-4.45 -19.18,0.68 -5.39,-0.66 -2.88,0.53 -6.15,4.25 -2.96,0.48 -3.69,-2.89 -3.51,-5.08 -2.38,-4.7 -0.05,-1.95 -23.2,-2.65 -12.16,-6.85 -10.33,-16.09 -4.68,-18.14 -1.11,-19.79 1.53,-19.92 7.5,-46.29 15.03,-24.08 20.58,-16.25 20.26,-4.68 10.28,-4.18 17.24,-18.03 10.18,-8.19 25.13,-7.09 9.41,-6.96 4.33,-16.65 -2.01,-6.27 -9.44,-19.29 -2.33,-9.19 1.3,-9 8.21,-13.3 2.86,-8.35 3.11,-46.04 5.49,-16.28 35.19,-20.86 33.38,-26.49 7.39,-12.35 5.08,-13.97 6.01,-12.61 10.24,-8.17 33.14,-15.41 5.96,-4.79 -1.13,-13.82 -7.34,-16.78 -16.86,-28.67 -26.05,-29.66 -4.21,-6.45 3.21,-32.3 7.91,-22.47 -0.41,-17.46 -21.76,-17.4 -15.58,-26.92 -5.4,-5.27 -4.1,1.6 -9.53,12.18 -6.18,2.85 -27.86,-6.96 -28.4,-12.09 -10.39,-9.45 -14.25,-23.53 -11.8,-10.15 -7.19,-1.54 -18.37,0.25 -6.24,-2.59 -4.39,-9.31 3.49,-6.12 4.42,-5.23 -1.72,-6.85 -25.93,-11.67 -28.01,10.75 -28.42,16.41 -27.41,5.41 -6.01,-2.87 -14.45,-10.57 -6.94,-3.71 -6.199,-0.86 -14.211,0.93 -7.02,-1.06 -27.718,-14.88 -14.582,-11.52 -9.719,-12.3 13.199,-21.53 12.488,-11.46 0.992,-7.84 -1.16,-8.87 1.828,-10.11 8.961,-16.64 8.102,-7.36 27.527,-3.37 20.252,-15.63 4.16,-32 -3.29,-62.13 13.14,-23.63 25.25,-23.1 53.59,-33.21 14.85,-4.19 39.15,6.8 13.69,-1.5 39.2,-17.3 13.83,-15.91 3.13,-5.65 1.55,-6.58 -0.33,-3.38 -0.81,-2.97 -0.04,-5.34 -1.5,-0.77 -4.35,-17.41 -0.61,-1.42 8.41,-24.27 3.58,-27.55 2.8,-9.54 22.96,-46.1 4.24,-14.58 -14.17,0.05 -28.38,9.19 -14.58,0.25 -18.43,-9.54 -15.03,-17.6 -6.23,-22.41 8.34,-23.82 -11.28,-8.05 -28.44,-46.54 -41.27,-30 -8.86,-14.7 1.55,-34.62 17.02,-31.58 23.51,-26.12 20.36,-17.92 -27.11,-14.07 -5.85,-9.44 -7.57,-34.5 -2.15,-6.6 -0.31,-5.63 2.7,-10.29 3.17,-5.14 17.01,-21.06 5.98,-11.06 8.82,-22.8 4.24,-8.49 6.98,-7.71 15.55,-11.82 7.12,-8.79 4.77,-11.03 2.38,-10.45 3.39,-9.79 7.3,-8.74 10.54,-4.62 9.53,1.31 9.65,2.99 10.75,0.66 9.99,-3.17 46.39,-26.13 31.76,-12.44 83.86,-54.27 14.91,-6.69 20.75,-3.93 10.41,-4.29 5.38,-8.21 4.11,-9.33 7.37,-7.5 7.65,-1.93 32.16,-1.45 139.87,37.53 23.09,1.44 33.25,20.96 24.63,-4.88 -11.59,-35.93 9.42,-20.82 17.41,-18.02 12.14,-27.24 -1.88,-19.2 -9.13,-11.8 -11.73,-8.71 -8.94,-9.73 -5.35,-13.46 -7.04,-24.8 -6.43,-12.7 -18.23,-19.61 -42.07,-34.3 -16.63,-25.6 -35.46,-37.75 -12.96,-22.78 3.38,-28.17 15.15,-53.84 -10.7,-7.39 -3.41,0.04 -3.4,0.55 -3.27,-1.44 -0.74,-4.06 0.91,-14.14 -0.57,-3.81 -6.63,-3.12 -4.66,0.4 -5.37,1.91 -8.38,1.28 -7.89,-3.21 -5.64,-8.1 -17.94,10.87 -15.76,-5.92 -12.24,-13.17 -2.37,-14.56 -13.38,-3.07 -7.88,-10.78 -1.19,-13.59 -3.71,-10.51 -15.45,-1.79 2.08,4.01 3.63,10.37 -39.33,-4.27 -7.63,1.74 -10.97,4.76 -9.67,-8 -15.99,-22.86 -7.63,-6.15 -7.69,-4.66 -9.06,-2.82 -11.77,-0.78 -13.19,-4.41 -8.56,-10.23 -6.24,-10.32 -6.19,-4.6 -3.1,-8.08 -1.01,-52.52 -1.12,-8.62 0.29,-5.8 -0.69,-4.55 -4.02,-4.33 -7.31,-1.96 -3.04,5.78 -1.33,7.73 -2.25,3.87 -21.66,-5.22 -20.95,-10.34 -19.93,-5.88 -18.26,8.22 -13.36,-10.22 -13.29,-7.26 -12.52,-9.71 -11.04,-17.16 1.59,-0.27 -1.45,-18.17 -0.6,-0.53 -1.41,-2.95 -30.61,-50.23 -1.98,-2.19 -3.11,-0.62 -6.02,0.16 -2.34,-3.13 -2.14,-15.05 -4.14,-5.06 -4.63,-0.81 -5.6,0.35 -4.81,1.73 -1.92,3.29 -2.11,6.03 -4.81,-4.93 -4.23,-8.25 -0.28,-4.24 -41.71,-0.87 -20.27,5.74 -15.469,13.05 -10.77,-11.17 -9.312,-19.07 -6.57,-20.1 -6.93,-32.83 -9.57,-6.63 -12.61,-4.22 -13.469,-11.06 -7.359,-14.35 -4.191,-12 -7.77,-7.97 -17.898,-2.57 -21.953,-10.83 -12.618,-9.83 -2.031,-9.31 4.809,-1.86 78.312,1.64 1.5,-6.25 -7.812,-18.48 -3.668,-5.24 -3.27,-2.58 -2.722,-4.28 -2.047,-10.37 1.25,-6.44 3.629,-5.24 3.918,-4.16 1.75,-3.35 -5.399,-7.03 -34.301,-26.03 4.993,-15.37 -9.09,-1.95 -15.922,-6.7 -8.43,2.05 -3.121,5.49 -1.508,8.77 -3.351,9.32 -8.2,7.22 -21.179,2.68 -15.731,-8.93 -12.992,-12.97 -12.629,-9.28 -9.379,-1.29 -19.84,2.8 -9.601,-0.34 -17.328,-5.87 -16.403,-8.23 -25.769,-1.12 -7.738,-5.5 -7.172,-13.83 -0.688,-8.68 0.117,-6.84 -4.628,-8.15 11.468,-18 -7.347,-6.03 -29.571,1.97 -2.539,4.88 -1.351,10.47 -3.539,10.54 -8.5,5.04 -9.039,1.5 -12.032,5.56 -6.519,1.41 -55.25,3.52 -9.051,-1.39 -18.461,-10.82 -6.07,-15.22 -2.93,-19.12 -8.68,-22.63 10.243,-6.18 5.226,-2.13 6.91,-0.09 -0.226,-6.88 -14.102,-3.32 -54.269,2.52 -15.039,3.65 0.238,6.89 28.621,-0.62 4.418,3.35 5.512,18.26 0.3,11.31 -7.062,5.24 -58.758,5.44 -5.25,3.77 -15.012,11.4 -23.5,6.7 -25.078,0.39 -19.972,-7.23 2.261,6.52 1.828,10.65 2.383,5.38 -13.519,0.84 -12.91,-2.98 -24.153,-11.14 13.41,-6.07 16.52,-20.24 13.332,-6.38 -0.281,-7.58 -25.641,5.95 -13.039,0.54 -5.871,-8.32 -3.93,-15.11 -8.277,-4.98 -18.813,1.89 -38.898,18.6 -7.77,6.02 -4.132,15.3 6.613,9.81 26.75,12.45 -4.723,4.35 -5.379,2.47 -14.59,1.68 -7.261,3.7 -1.27,15.31 -7.258,3.7 -18.171,2.57 -15.598,5.73 -29.582,18.32 5.558,19.3 -15.277,9.08 -41.8398,3.4 -2.7031,-2.3 -1.8984,-5.19 -2.5586,-5.1 -4.8828,-2.16 -5.4102,1.4 -4.2695,2.76 -4.0391,3.96 -10.8203,4.87 -6.2304,6.09 -18.78911,27.77 -6.89844,3.99 -14.47265,-10.29 -10.6484,-5.28 -10.1016,-2.16 -4.2305,5.43 -8.2773,7.17 -19.5313,3.41 -20.789,-0.44 -12.7105,-4.11 -10.75,6.24 -23.661,-0.5 -10.148,4.44 -5.633,11.57 3.012,11.2 6.359,11.05 7.59,17.9 2.242,7.09 1.028,8.29 -2.309,-0.96 -5.289,3.82 -5.43,6.39 -2.992,6.66 2.512,57.48 -22.09,16.73 -109.172,-19.89 -35.449,6.9 -11.949,-4.14 -51.321,1.48 -19.75,6.55 -20.379,23.37 -2.992,25.32 12.211,21.96 25.781,12.96 72.118,-3.38 22.66,5.89 16.051,11.77 17.492,19.59 11.59,24.49 -1.653,26.42 -24.277,-14.48 -23.121,-7.28 -20.563,4.61 -16.269,21.03 -4.969,17.35 -0.051,9.49 -3.91,5.91 -16.437,6.47 -6.141,1.15 -19.16,0.04 -3.172,3.81 -10.848,16.42 -4.769,3.42 -5.864,-6.88 -5.886,-14.59 -4.653,-15.02 -1.82,-8.2 3.34,-21.22 6.832,-9.56 9.609,-5.81 11.231,-10.48 8.379,-28.3 -10.129,-24.37 -19.731,-12.73 -20.148,6.55 -15.91,-4.81 -43.012,27.8 -20.879,-8.41 -9.043,-6.57 -19.969,-3.39 -8.121,-6.5 -7.379,-14.97 3.481,-6.04 7.609,-7.28 5.051,-18.43 -31.031,10.81 -32.699,20.74 -26.129,27.26 -10.969,29.91 5.418,65.01 -1.121,19.08 -4.149,16.98 -7.359,19.61 -10.512,16.97 -13.418,9.07 -0.359,-6.92 22.066,-39.5 2.903,-11.86 -4.09,-79.64 9.289,-37.94 20.68,-24.08 23.8,-18.78 18.52,-22.4 -29.211,-9.86 -118.738,11.69 -32.52,10.92 -21.441,12.24 2.519,7.87 8.301,18.73 7.328,22.66 -0.308,19.62 -20.418,18.09 -35.153,9.23 -249.799,22.21 -19.4,5.38 -16.71,9.7 -5.62,7.21 -3.87,9.93 -12.43,59.82 -1.11,3.93 -19.85,18.53 -46.46,7.6 -49.22,-2.29 -28.08,-11.14 11.43,12.96 18.3,4.68 38.26,1.1 18.96,3.42 13.83,5.83 10.49,10.15 8.66,16.25 -45.52,-3.89 -24.43,-6.74 -37.89,-24.13 -51.11,-12.29 -22.68,-11.8 -55.28,-40.85 -6.6,-10.19 -3.24,-16.91 -11.53,-12.65 -69.98,-24.42 -0.43,-6.89 27.55,0.04 27.32,12.54 43.75,33.76 45.35,44.18 25.74,19.02 28.03,7.5 -0.5,-8.21 -169.58,-122.95 -94.49,-43.76 -27.82,-20.53 -72.16,-77.58 -17.52,-6.39 -31.39,18.22 -19.69,-2.32 -30.17,-12.7 -117.79,-77.91 -14.69,-15.92 -6.07,-9.7 -9.35,-20.44 -6.71,-10.29 -20.25,-15.55 -11.07,-10.86 -5.38,-12.95 -25.23,-33.19 -7.88,-1.41 -3.49,4.48 -4.55,7.51 -10.74,7.16 0.49,6.97 16.55,10.46 8.05,7.6 -3.27,3.98 -22.63,1.48 -9.98,-2.47 -4.52,-7.85 3.97,-31.11 12.48,-16.17 12.96,-9.31 5.43,-10.68 -4.57,-13.29 -16.79,-16.1 -4.36,-11.43 -4.28,-28.37 -3.64,-14.31 -3.64,-6.01 -6.83,-5.57 -4.64,-11.76 -5.43,-8.48 -9.04,4.08 -3,9.09 3.48,9.65 12.29,19.18 -17.89,-1.33 -7.82,-12.4 0.87,-17.57 8.03,-17.04 21.29,-20.2 2.89,-10.82 -13.8,-11.66 -5.71,-0.43 -11.22,6.85 -7.06,2.2 -3.7,-5.62 -0.97,-25.58 -3.62,-5.62 -9.91,-4.44 -34.7,-31.88 5.64,-7.82 4.14,-15.76 4.92,-7.24 6.89,-4.65 12.74,-2.4 22.56,-8.96 8.75,-4.88 4.44,-9.34 2.27,-19.64 -0.11,-19.69 -2.42,-19.96 -13.62,-55.76 -3.17,-7.62 -4.63,4.39 -9.39,16.47 -8.94,-10.87 -1.69,-9.46 2.95,-8.78 5,-8.86 3.6,-2.01 11.08,0.05 4.37,-3.16 1.77,-6.38 -1.28,-13.41 3.68,-84.86 6.87,-22.55 53.12,-62.12 24.16,-38.6 -1.63,-27.51 -1.57,-6.7 -56.72,-5.87 -21.6,0.46 -20.84,3.87 -16.55,6.56 -9.42,6.95 -7.4,9.03 -5.73,10.84 -4.41,12.63 -5.33,1.94 -24.01,2.33 -8.62,2.52 -14.69,-8.24 -25.87,12.15 -28.55,-19.13 -13.94,-1.3 -14.08,1.51 -13.37,-0.44 -13.75,-6.88 -26.61,-22.35 -13.8,-7.42 -17.39,-1.46 -31.88,7.35 -16.94,-0.01 -15.1,-6.38 -36.78,-24.85 -7.28,-9.09 5.9,-21.81 9.36,-12.28 -0.02,-4.84 -22.16,0.39 -17.88,4.78 -36.93,15.84 -15.96,0.78 -6.83,-5.37 -8.27,-17.47 -5.96,-5 -8.62,0.4 -8.97,3.8 -15.97,10.76 -14.93,5.22 -14.96,13.84 -11.6,18.31 -4.65,18.41 -13.06,1.65 -25.19,7.63 -46.14,26.3 -9.22,8.97 -21.95,14.77 -26.08,-0.73 -52.16,-11.82 -38.49,8.06 -13.61,-5.17 -4.38,-5.48 -7.55,-15.88 -4.44,-6.14 -20.9,-13.47 -15.1,-13.71 -10.05,-5.39 -13.82,-2.33 -21.67,-0.64 -11.01,2.7 -9.6,7.36 -15.01,15.44 -6.4,17.82 -7.34,42.47 -9.67,19.6 -12.29,6.7 -15.32,2.16 -18.93,6.13 -43.49,35.52 -16.64,8.68 -50.48,11.42 -14.59,7.59 0.72,3.38 -0.35,2.84 -1.42,2.4 -2.33,1.83 5.37,27.47 11.09,22.3 16.28,13.29 20.8,0.15 -8.92,15.66 -18.59,7.56 -12.51,9.53 9.08,21.95 -92.51,17.31 -8.61,5.02 -41.83,34.42 -12.63,0.19 -24.9,-7.07 -25.82,3.67 -16.56,-42.65 -18.83,-5.78 -10.48,16.58 -10.38,39.34 -13.8,23.22 -12.12,27.42 -6.52,4.33 -7.67,1.13 -3.75,4.83 5,15.46 -18.75,6.99 -100.92,9.62 -28.18,-6.29 -8.96,1.99 -13.1,11.6 -6.94,16.09 -4.57,17.81 -6.54,16.72 -13.24,14.37 -16.59,6.95 -69.35,11.35 -5.9,4.36 -12.47,12.38 -6.68,3.34 -8.64,-1.92 -8.3,-5.52 -8.17,-3.33 -8.44,4.53 -11.78,14.2 -6.58,6.15 -23.35,11.83 -33.29,24.41 -13.79,3.84 -16.05,0.01 -13.97,4.53 -27.13,13.93 -14.23,2.86 -22.56,0.59 -19.59,-5.56 -5.48,-15.58 -0.59,-23.92 -14.61,-29.98 7.8,-13.45 -6.57,-4.19 -3.52,-4.41 -6.11,-10.67 11.19,-5.32 8.59,-13.35 3.91,-17.39 -2.62,-17.8 -8.3,-11.15 -11.15,-2.84 -28.67,6.81 -102.5,7.31 -13.02,7.1 -32.11,-5.05 -16.08,0.77 -16.07,4.9 -3.61,4.23 -0.13,4.63 0.75,4.59 -1.43,3.8 -20.67,21.66 -15.41,-3.8 -16.04,-13.12 -26.38,-30.12 -12.37,-0.51 -11.2,16.55 -14.33,32.93 -12.41,7.86 -42.42,15.99 -13.52,-0.67 -16.47,-8.8 -51.07,-2.15 -65.75,-16.53 -28.67,0.42 -30.99,16.31 -4.21,5.42 -3.21,6.02 -5.1,5.66 -10.12,4.13 -8.22,4.81 -1.5,7.43 -0.21,7.96 -4.35,6.69 -12.29,12.59 -8.08,17.54 -2.68,19.73 3.93,19.1 -15.4,-4.62 -24.43,-3.91 -21.65,5.04 -7.44,21.75 -46.08,35.5 -11.25,13.26 -5.69,-10.53 -6.61,-7.84 -6.69,-1.75 -6.29,8.03 -42.81,-26.63 -21.13,-9.61 -25.22,0.87 -41.82,25.66 -20.79,2.96 -4.45,-26.29 -7.47,-1.62 -14.79,-7.86 -6.55,-0.26 -7.31,6.13 0.88,6.62 1.97,7.08 -3.96,7.26 -3.47,1.53 -13.28,1.53 -5.13,3.12 0.65,4.15 2.12,4.64 -0.64,4.88 -26.84,46.28 -13.13,13.86 -26.03,20.69 -8.12,2.34 -8.12,-0.24 -7.91,1.94 -7.37,9.07 -3.38,10.67 1.58,5.87 3.35,4.79 1.33,7.73 -10.69,41.38 -20.98,10.09 -64.29,-3.92 -64.44,13.11 -30,13.91 -25.87,24.75 -8.55,12.83 -13.07,5.54 -27.82,6.96 -5.5,5.85 -12.44,10.25 -6.75,3.65 -30.95,0.92 -23.93,24.99 -26.12,18.98 -46.24,14.25 -14.18,11.21 -11.8,17.59 -1.81,15.33 8.42,13.74 18.87,12.56 -17.79,7.17 -19.13,-4.65 -15.99,-14.11 -8.42,-21.58 -5.62,-28.88 -8.82,-14.15 -14.44,-2.84 -22.1,4.7 -19.3,7.85 -16.73,12.66 -12.67,18.61 -7.19,25.39 7.88,8.55 38.11,31.93 12.05,12.57 16.83,33.6 14.39,43.18 2.01,41.06 -20.31,27.03 -9.73,1.35 -9.39,-2.08 -9.22,-0.47 -31.62,22.08 -24.3,10.77 -16.05,2.63 -13.07,-5.83 -8.85,-18.16 -5.87,-9.15 -9.51,-3.97 -10.42,-0.01 -8.6,2.45 -9.32,5.84 -3.38,5.6 -3.47,19.78 -0.09,9.91 3.14,6.48 0.8,5.24 -7.27,6.78 -14.45,9.34 -7.31,1.82 -17.39,-4.87 -17.76,-0.06 -10.13,-3.45 -8.96,-0.32 -2.94,9.53 0.09,21.98 -8.32,15.07 -21.78,14.39 1.56,13.58 3.65,23.33 8.67,30.36 11.56,-10.95 7.23,7.44 15.73,4.31 73.19,2.26 19.81,4.42 19.34,7.43 16.55,9.17 8.3,8.71 21.95,32.16 5.2,12.03 8.12,7.95 46.97,27.78 7.83,12.05 18.18,39.77 10.01,34.26 27.54,60.76 56.18,177.93 27.16,61.2 46.43,140.33 91.51,308 41.61,153.05 14.2,68.26 0.14,16.61 -2.78,32.32 1.97,9.31 24.93,27.87 4.05,6.61 3.71,13.23 20.65,49.24 18.11,17.49 20.01,-1.71 47.05,-18.1 28.55,0.69 17.44,9.43 2.23,16.86 -16.96,23.05 10.85,-1.36 -5.83,16.94 -52.65,63.63 -8.24,4.83 -3.44,2.7 -2.84,3.86 -3.45,2.94 -5.5,0.17 -3.83,-3.01 -2.12,-4.63 -1.53,-4.24 -2.21,-1.65 -6.42,-9.68 -42.54,-49.96 -15.2,-47.89 -10.45,-25.85 -6.8,-11.86 117.89,542.08 55.05,171.58 43.9,232.54 6.91,15.63 33.56,50.78 13.4,15.79 13.13,3.17 7.71,-5.11 1.3,-5.3 -1.53,-8.2 -2.08,-12.51 -2.56,-3.41 -2.44,-5.69 -0.79,-5.91 1.62,-6.27 6.59,-14.36 5.65,-9.46 47.34,-47.41 30.6,-22.65 11.64,-5.3 81.59,-117.31 17.99,-35.24 5.09,-34.64 -0.72,-22.45 5.37,-42.6 2.12,-104.81 1.64,-13.01 18.77,-67.74 22.55,-38.18 26.66,-33.13 23.55,-17.9 5.99,-8.69 4.81,-14.72 0,-10.47 -4.44,-17.47 -1.78,-23.3 0.68,-23.49 4.47,-18.75 9.56,-9.46 -1.19,15.8 0.8,31.87 -3.18,14.29 10.93,29.03 -5.97,25.16 -15.41,20.05 -17.24,13.65 24.24,-4.12 19.77,-6.95 17.12,-11.23 16.01,-16.91 -15.61,37.29 -29.57,19.3 -32.85,15.21 -25.42,25.12 -10.87,30.66 -5.63,36.43 -4.15,216.35 -4.97,44.23 -17.53,73.2 -11.86,33.03 -14.03,29.98 -31.03,46.02 -100.57,94.25 -2.07,5.04 -0.43,21.28 -4.32,5.32 -24.62,12.73 -36.45,47.01 -22.13,12.5 -14.41,4.94 -11.69,9.602 -9.63,12.609 -7.93,13.73 -12.97,12.93 -28.16,-2.562 -13.21,7.55 23.35,75.621 1.76,14.239 53.58,9.25 15.16,-2.637 42,-64.801 8.08,-7.039 8.13,-9.953 51.29,-32.258 -14.91,21.938 -62.71,65.402 -17,26.609 -2.81,10.512 0.41,13.129 -1.29,16.957 -3.11,16.731 -5.08,12.492 9.17,3.488 6.33,5.84 4.78,6.09 4.36,4.519 9.65,6.633 12.93,5.93 7.38,0.051 6.03,-2.172 5.26,1.949 4.93,12.492 0.43,11.668 -2.94,12.043 -4.44,10.418 -3.98,6.461 4.63,3.078 8.83,7.391 4.33,2.711 -11.68,10.121 -6.53,16 -6.31,37.957 14.9,-13.399 12.74,-2.441 11.52,7.863 10.91,17.668 0.88,6.891 -2.7,5.301 -3.72,5.777 -4.55,4.781 -14.05,7.281 -1.55,9.469 0.6,11.301 -3.58,15.789 1.53,10.309 -0.53,4.441 -2.57,2.082 -9.47,4.648 -2.36,2.122 -3.96,5.808 -4.16,4.27 0.62,4.761 10.42,7.879 -16.26,16.032 -5.75,2.257 -2.92,2.543 0.89,5.008 1.69,5.27 -0.53,3.39 -4,1.391 -11.79,0.648 -7.7,3.45 -7.05,0.39 -6.44,2.231 -6.33,8.699 0.34,9.473 6.39,10.136 8.86,8.364 7.77,4 -1.33,21.878 10.33,13.481 57.3,26.187 8.1,13.313 0.44,9.039 -2.24,9.91 -0.09,15.942 -13.67,25.91 -34.12,6.808 -30.78,-13.5 -3.61,-35.179 -19.97,8.5 -12.38,19.757 -11.18,23.063 -11.94,5.098 -7.49,2.382 -21.81,17.379 -15.41,17.41 -9.72,5.641 -42.57,-7.601 -19.41,3.64 -5.13,24.852 -0.79,28.547 -9.43,21.933 -16.13,14.656 -20.5,7.051 -50.99,9.141 -19.83,9.59 8.42,12.8708 -10.83,13.6289 -39.96,12.8125 -22.61,26.2383 -20.83,8.8281 -8.88,7.3633 -4.28,9.9101 -5.2,25.4688 -5.67,13.0078 -1.67,-13.7969 1.89,-18.74217 -0.23,-9.89843 -3.97,-4.4805 -6.67,4.9492 -5.77,11.05864 -5.76,83.85156 5.99,18.8086 -11.53,6.9214 -4.29,13.168 -1.42,15.524 -3.03,13.57 -9.59,14.957 -10.31,11.77 -7.69,12.07 -3.73,29.41 -8.95,9.653 -12.29,6.168 -12.36,3.089 -5.56,7.653 -16.06,49.449 -36.17,50.437 -21.17,20.372 -18.83,9.628 -7.71,8.422 -3.14,18.149 0.05,21.652 1.86,19.098 5.24,23.66 6.84,10.723 21.5,11.488 -2.08,16.269 12.75,10.121 31.68,13.899 11.57,15.402 18.56,38.11 11.88,18.488 14.68,8.152 1.25,18.93 -5.62,20.891 -6.27,14.058 -10.13,13.32 -41.92,32.04 -85.17,27.992 -24.67,18.808 10.96,5.371 9.26,6.528 9.75,4.992 25.14,-0.102 6.4,3.082 3.66,8.778 4.64,16.07 2.49,14.973 -5.48,18.648 0.23,17 2.78,12.25 4.99,13.82 6.76,12.571 8.04,8.437 19.28,5.231 70.57,-2.668 5.75,3.211 5.48,1.847 5.8,0.172 4.85,-8.359 4.9,-6.082 37.21,-15.781 11.59,-1.289 -4.04,8.261 8.73,-1.351 7.74,-3.5 6.7,-5.828 5.73,-8.122 -15.49,2.192 -1.17,-8.281 27.74,-27.121 30.64,-10.629 6.92,-6.289 14.15,-20.34 16.29,-10.293 40.58,-6.969 -13.75,12.289 -30.21,10.641 -11.63,12.511 -19.02,30.469 -23.47,25.789 -23.86,19.539 -14.46,7.172 -17.53,4.36 -6.35,3.48 -8.99,12.301 -27.42,12.488 -105.22,7.77 -25.81,-11.071 -6.42,-7.429 -4.14,-6.84 -4.99,-6.36 -8.89,-6.019 -23.48,-3.34 -20.25,-15.051 -15.09,-3.648 -14.88,2.418 -12.8,7.621 -9.77,11.68 -15.22,24.152 -11.04,8.867 -12.4,3.5 -7.07,0.723 -5.81,-0.481 -6.78,-4.301 -3.96,-7.089 -2.14,-6.621 -1.29,-3.09 -21.94,4.019 -65.22,47.692 1.14,7.57 17.01,-5.129 30.15,-20.453 17.58,0.492 15.21,13.258 -4.78,15.863 -12.86,17.18 -9.12,17.328 -6,-2 -2.7,-1.33 -2.63,-2.1 2.47,-8.511 -0.32,-4.579 -5.65,-10.3 -5.61,0.84 3.54,32.41 -6.1,18.35 -28.18,25.01 65.28,26.85 7.91,-1.63 7.36,-4.52 12.24,-4.35 -2.39,-5.91 -0.91,0.08 -3.54,-1.59 4.58,-7.74 8.45,7.33 28.12,10.7 3.47,7.04 -11.17,4.06 -18.49,3.16 -11.6,6.77 9.22,14.65 -11,10.17 -15.46,4.01 -8.66,7.45 9.38,20.22 -8.53,15.99 9.51,6.16 47.31,-4.4 28.56,3.55 15.5,-3.36 -11.78,5.15 -20.68,-0.5 -13.69,2.21 -53.99,31.31 -11.56,3.64 -10.04,0.28 -25.71,-4.59 -28.23,4.26 -7.16,-1.35 -4.97,-3.23 -4.75,-0.1 -6.69,8.26 11.7,0.36 14.42,6.32 13.15,10.85 7.96,14.07 -13.26,-9.75 -10.97,-0.1 -10.94,2.77 -13.26,-1.09 5.94,-2.19 4.25,-2.88 2.38,-4.7 0.54,-7.67 -19.07,2.57 -8.46,3.4 -7.23,7.02 -5.2,-26.3 -11.16,-4.4 -23.55,12.86 -12.74,1.13 -41.29,-7.68 -14.67,0.88 -11.06,2.93 -9.05,6.45 -8.67,11.28 -0.8,4.47 -8.22,23.51 -2.67,1.65 -2.15,6.38 -6.7,4.59 -8.32,2.73 -2.09,1.52 1.35,1.41 0.36,5.49 -12.1,6.9 13.93,7.17 20.47,-3.12 7.61,-24.07 5.18,-0.8 5.05,5.29 4.79,1.78 4.91,-2.55 5.76,-7.69 1.96,7.03 6.72,15.63 9.6,-15.65 18.02,-9.14 20.7,-1.19 17.61,8.1 -4.43,8.42 35.54,36.21 6.57,20.17 -13.47,24.46 -1.05,-6.88 6.02,-8.63 -0.09,-7.29 -5.36,-4.69 -9.62,-1.23 9.49,-9.22 -4.1,-4.8 -3.78,-1.89 -8.77,0.76 -2.93,6.81 -33.81,29.81 15.43,-4.63 14.1,-7.6 -6.86,14.2 -8.06,7.16 -22.5,7.63 9.17,-8.45 -16.64,-5.01 -39.28,1.82 -8.95,-6.5 -8.59,-12.31 -15.84,-4.47 -25.77,-2.18 1.06,6.82 5.18,-0.81 1.29,8.28 -10.08,-0.13 -2.65,-1.46 -3.93,-4.29 -5.1,0.79 -0.79,13.98 1.01,11.41 3.68,8.2 7.22,4.19 -10.67,2.07 -6.98,7.08 -3.37,11.04 0.2,14.06 -5.58,0.87 -0.39,-8.86 1.41,-14.37 -0.18,-7.9 -4.15,-26.47 0.99,-11.6 4.7,-13.24 6.69,-12.47 6.58,-9.07 -3.08,-7.29 -1.68,-3.03 -2.69,-3.98 -1.5,4.28 -5.98,12.35 -6.91,-3.29 -5.64,8.1 -6.26,12.79 -8.63,10.74 2.13,-15.45 -5.32,-6.3 -6.4,4.03 -1.39,15.16 0.09,17.42 -5.25,-0.93 -4.43,-11.87 2.21,-15.44 -10.67,2.41 -4.11,2.29 -4.04,6.01 -25.7,-9.16 -12.11,0.86 -9.52,8.02 5.39,2.32 5.62,3.7 -6.2,7.91 -7.91,6.92 -8.45,0.81 -8.17,-10.78 3.09,-2.19 2.64,-4.27 3.27,-2.72 -14.09,-36.07 -0.81,-32.38 8.41,-27.71 13.59,-22.08 -10.14,2.12 -15.03,6.84 -5.64,-4.09 -4.61,0.72 -4,33.36 0.37,10.28 3.58,11.89 9.96,17.63 4.01,14.61 2.26,26.16 -2.22,20.03 -5.94,15.93 -8.76,13.97 -6.41,5.63 -7.83,4.95 -6.4,5.46 -1.89,7.29 3.96,14.09 13.99,29.58 60.35,17.27 -1.82,6.28 -0.64,6.42 0.55,8.08 1.73,10.94 -3.87,-1.79 -9.33,-2.1 -3.85,-1.79 3.22,23.45 1.7,7.49 -4.65,0.74 -7.74,-10.75 -7.69,3.34 -9.19,6.75 -12.19,-0.52 9.75,-5.73 5.87,-9.25 2.79,-12.58 0.88,-15.77 -3.89,-0.14 -0.98,-0.7 -0.22,-1.84 -1.72,-3.96 -7.89,7.93 -5.89,-3.2 -6.98,-6.2 -11.1,-1.22 2.35,-3.79 5.92,-13.05 -11.25,-3.37 -5.26,-9.8 -4,-9.87 -7.65,-3.51 -4.83,5.3 -18.64,29.53 -18.23,8.57 -31.42,14.24 -19.94,3.94 14.38,3.28 13.07,-3.61 28.19,-15.72 1.1,6.88 -10.77,9.14 -12.6,6.86 -30.92,8.29 1.34,8.25 6.85,-0.34 3.47,1.84 1.8,5.47 1.61,10.21 3.34,3.98 12.44,-4.01 4.83,0.66 13.58,23 8.9,12.14 10.88,6.06 1.33,8.2 -19.37,-16.51 -23.74,-16.03 -24.88,-9.88 -16.3,-1.09 5.19,-4.34 3.96,-5.4 2.59,-6.27 -1.12,-6.94 -63.83,-5.4 -10.07,5.09 -2.32,6.55 -17.55,32.43 -6.94,24.44 -6.73,10.96 -2.44,5.4 -1.46,8.72 -9.31,-5.47 -12.23,2.31 -25.34,10.89 -19.37,2.33 -6.15,1.9 -5.29,4.47 -6.89,11.03 -3.18,2.59 -28.44,3.35 -13.58,7.54 -3.69,16.16 -5.92,4.05 -42.65,-15.35 -9.1,12.55 -15.88,2.32 -17.32,-0.68 -13.37,3.67 -0.35,3.89 -9.8,29 -4.26,6.67 -4.64,5.2 -1.56,7.14 5.31,12.26 -6.43,1.39 -4.32,2.91 -8.2,7.43 -0.32,12.46 -11.28,18.48 -17.63,16.8 -19.06,7.21 2.91,-23.78 -8.29,-15.77 -19.81,-15.62 -14.56,6.74 7.42,-1.86 6.21,0.59 5.24,4.26 4.19,9.33 -9.56,-1.75 -7.49,0.87 -6.08,-1.49 -5.44,-9 -18.1,21.15 -9.19,5.65 -11.89,3.29 -8.11,6.77 -7.34,14.69 -4.26,18.63 0.8,18.44 -10.08,-11.85 1.51,-17.45 7.48,-16.87 7.5,-10.2 -1.19,-6.87 -9.47,0.87 -7.78,-1.37 -7.61,-3.75 -8.87,-6.19 -9.88,26.84 -10.85,-1.13 -4.48,-13.23 9.52,-9.76 -2.84,-3.76 -3.14,-2.99 -1.19,-6.9 20.35,-3.53 -1.43,-8.28 -28.33,-19.27 -12.56,-4.81 -19.3,-2.04 -108.54,24.41 1.87,8.26 1.08,15.75 2.38,6.25 5.13,2.05 7.03,-1.36 6.65,0.4 4.08,7.01 0.95,20.2 -6.24,30.35 -1.84,31.53 -7.66,22.16 -27.3,52.34 -56.61,63.89 -6.67,5.33 -11.12,-4.45 -11.14,-9.5 -10.66,-3.52 -18.29,25.8 -12.38,4.56 -25.4,3.11 -52.92,25.93 5.6,3.03 4.96,6.02 4.35,6.45 5.96,7.31 1.25,3.86 1.62,3.9 3.33,3.51 2.6,-0.33 4.63,-7.67 3.94,-2.51 248.45,10.88 40.19,-20.49 11.75,2.77 4.81,7.36 12.76,29.98 -1.27,13.12 -8.06,15.32 -0.89,8.07 0.65,25.44 -8.16,11.88 -30.17,12.6 -5.18,4.63 -3.71,6.21 -2.14,7.17 -0.53,7.45 -19.71,-3.56 -35,32.22 -21.83,-3.31 -14.27,-17.73 -14.86,-23.48 -16.86,-18.57 -20.33,-3.21 10.72,22.39 5.07,6.71 -6.15,14.22 -2.89,10.16 -0.24,8.52 5.9,12.44 6.66,3.88 3.57,3.82 -3.02,12.3 -8.66,3.95 -44.15,9.81 4.18,11.35 -0.08,11.31 8.95,3.05 6.06,-1.63 5.7,-3.54 7.82,-3.04 9.96,1.69 3.01,7.26 -0.47,8.09 -0.68,4.35 19.47,32.12 10.96,7.3 11.31,-7.97 -17.04,-39.21 18.68,-13.4 66.65,-7.13 6.87,-5.13 4.07,-5.68 4.89,-5.09 9.38,-3.53 9.05,-0.66 36.62,4.02 50.25,-5.39 -5.53,-3.86 -4.98,-1.13 -10.95,1.69 14.24,-8.73 62.73,2.29 1.45,8.3 -23.41,2.42 -7.92,5.76 -0.79,13.68 -8.36,-7.5 -10.73,-1.03 -8.54,5.36 -1.97,11.98 -4.99,-0.54 -31.89,3.45 7.94,8.93 3.56,1.9 6.75,1.56 1.1,4.55 4.23,4.1 8.16,3.93 17.09,13.21 -12.53,2.1 -18.84,-9.31 -12.22,-1.38 1.33,7.56 5.48,-0.97 1.46,8.24 -5.48,0.97 -3.29,-5.06 -5.55,-4.77 -3.59,-4.26 -10.14,6.7 -26.23,-12.06 -17.08,-0.06 2.79,3.82 0.89,0.28 3.08,1.79 -4.18,8.56 -7.27,-5.08 -9.28,-2.95 -10.44,-1 -10.39,0.79 1.23,6.87 51.28,43.62 9.41,5.11 77.85,29.47 -13.8,-1.63 -25.47,-9.13 -15.57,-2.9 -51.29,0.63 -24.64,-5.76 -51.81,-20.98 -37.72,-2.39 -24.03,-7.25 -14.73,0.72 -12.4,5.26 -23.76,15.19 -13.91,4.95 -3.27,-3.16 -1.39,-8.05 -2.75,-7.84 -7.22,-2.44 -37.14,7.11 -9.14,5.63 -4.37,12.51 -0.47,23.87 14.02,-1.09 1.45,14.37 -7.14,32.12 2.71,21 7.57,20.02 11.49,13.66 14.62,1.87 1.25,6.84 -16.19,17.25 13.32,30.65 24.37,30.51 16.71,16.86 6.7,-6.4 7.3,-4.64 -3.93,9.2 13.23,5.95 14.6,2.07 23.24,-1.7 13.56,-6.66 21.84,-18.15 9.68,1 -12.75,26.57 -2.46,16.07 10.71,5.01 32.03,-14.85 13.93,-1.98 -18.62,11.87 3.05,4.18 2.01,3.36 -0.93,3.71 -5.73,5.38 1.25,6.89 57.31,-10.34 17.19,-0.02 26.32,7.27 17.06,-2.53 -8.93,7.98 -4.28,2.21 1.48,8.21 21.52,0.05 22.52,8.37 21.2,4.2 18.91,-4.25 10.51,-18.28 -9.76,-23.48 17.44,-1.14 24.81,9.57 8.11,0.89 8.7,-3.33 15.44,-9.57 9.93,-1.57 1.44,8.21 -13.4,6.49 5.75,10.67 14.86,10.72 13.92,6.7 15.05,3.19 17.63,0.33 16.44,-4.12 11.8,-10.08 5.48,5.88 4.06,-0.88 2.7,-5.78 1.61,-8.71 4.55,-0.8 5.76,4.31 4.18,6.17 1.85,8.17 -1.05,10.62 10.45,0.18 9.55,1.88 17.14,7.04 27.32,3.22 3.92,-4.39 -3.64,-10.21 -4.05,-7.62 -0.06,-5.76 8.01,-4.75 -1.19,-6.92 -5.03,0.86 -1.41,-8.18 6.56,-5.97 3.4,-9.13 -0.74,-11.25 -6.07,-12.45 24.26,17.03 11.63,3.77 13.95,-6.05 -8.33,-5.4 -3.52,-1.05 -1.17,-6.81 6.81,-13.55 19.39,-17.59 7.25,-14.26 6.79,6.62 -4.21,8.49 6.8,6.65 -2.22,7.45 -1.07,9.58 -0.16,23.18 4.55,-0.78 1.24,-6.99 1.69,-3.64 4.81,-7.01 1.43,19.72 5.8,20.87 7.88,11.44 7.82,-8.53 4.04,4.49 2.51,5.11 1.47,5.88 1.01,7.01 7.26,-14.96 12.97,-6.57 34.35,-3.96 7.56,-4.7 14.32,-18.09 7.52,-5.63 9.29,-1.87 27.4,2.8 -3.42,-18.62 17.02,-8.75 21.49,-3.49 11.41,3.98 -2.97,26.8 -0.14,17.51 4.26,7.05 39.33,0.54 -9.47,8.58 -20,35.96 0.02,18.54 8.98,8.2 22.65,6.09 20.72,25.96 5.57,8.54 4.55,-0.76 5.85,-6.62 22.96,-5.3 22.77,-19.14 10.03,-2.54 -4.71,-2.63 -2.43,-2.66 -2.03,-3.37 -3.4,-4.79 16.98,-4.23 9.14,-0.63 7.27,3.21 8.81,7.84 5.61,2.66 65.51,13.1 9.61,5.12 5.02,-0.82 6.58,-2.96 26.21,23.64 11.32,-4.61 2.21,-16.76 -4.04,-21.5 -8.55,-19.12 -11.3,-9.68 -0.03,-5.16 0.43,-3.19 2.62,-7.66 4.88,13.61 7.66,9.63 26.42,23.67 20.44,12.55 7.82,7.25 7.04,-4.78 16.2,14.36 9.71,1.31 8.08,-7.41 3.53,-10.91 -1.38,-11.71 -6.89,-9.99 -1.11,-6.93 8.61,-9.85 -6.92,-8.05 -14.15,-27.33 -6.13,-8.05 -19.12,-18.25 -1.33,-8.24 5.47,-0.88 32.24,45.97 17.69,18.77 11.45,-4.78 8.31,5.01 7.98,0.78 7.35,-3.36 6.35,-7.24 -6.62,-6.69 2.67,-1.49 1.77,-0.22 0.56,-1.44 -0.8,-5.28 -7.38,-0.99 -6.08,-2.37 -13.89,-7.76 -1.12,-6.93 9.5,-1.52 -1.32,-8.25 17.62,-10.22 36.84,-7.75 13.71,-7.71 -2.43,-9.06 -0.99,-6.72 -0.29,-7.58 -8.01,-4.83 -3.23,-1.14 -1.1,-6.92 9.69,-8.71 11.39,-13.66 9.19,-14.79 3.07,-11.81 41.28,-48.83 2.16,-34.27 1.55,-9.31 0.15,-5.86 -2.86,-4.83 -2.43,-5.31 1.48,-7.37 3.1,-3.94 8.78,-6.31 15.59,-16.08 38.81,-27 -3.8,-9.7 -4.22,-7.32 -5.09,-5.72 -6.63,-4.52 8.64,-1.81 6.43,-4.99 5.14,-7.57 4.95,-9.28 8.97,-10.04 3.54,10.01 2.1,16.1 4.28,7.78 28.98,-6.03 12.87,3.35 16.62,13.42 21.64,24.82 6.72,6 8.61,4.9 13.77,2.31 54.35,23.42 12.09,10.03 1.15,7.56 -6.13,1.58 -13.21,9.13 34.19,4.96 15.66,-4.78 4.15,-16.15 20.36,4.68 24.37,11.23 22.04,16.01 13.12,18.6 0.77,-13.18 3.97,-8.98 6.94,-4.44 9.99,0.15 -1.24,-8.25 -6.12,-3.6 -4.13,-5.24 -3.57,-5.93 -4.68,-5.63 -23.92,-19.63 11.45,-12.47 15.15,7.3 17.26,13.35 17.94,5.78 2.64,-6.48 0.12,-26.55 1.62,-6.31 7.77,-5.19 3.46,-10.45 0.8,-12.85 -0.34,-11.96 8.73,3.27 6.56,7.61 4.21,11.08 1.67,13.61 0.78,-16.75 1.85,-14.5 5.59,-7.39 11.99,4.67 1.12,7.56 -2.92,1.49 -5.68,6.81 10.04,11.39 9.58,5.2 8.87,-2.27 7.88,-11.27 -4.12,7.58 -2.83,8.17 -3.65,16.79 34.5,6.67 35.66,-1.52 1.16,-5.32 11.29,-30.97 -0.57,-12.12 2.15,-11.58 5.15,-9.12 8.77,-4.59 -4.78,-10.42 -2.9,-3.88 14.77,-31.64 2.34,-15.47 -6.5,-24.1 8.39,6.86 25.1,11.51 -18.49,17.46 5.26,8.1 -7.91,21.22 -0.23,18.17 5.02,-0.73 2.35,-5.43 2.64,-3.78 7.87,-8.08 -3.49,13.65 -5.63,7.75 -7.3,3.69 -8.38,1.66 -5.9,7.47 -8.83,34.94 -5.07,14.61 3.58,8.61 7,9.16 9.68,6.83 11.68,1.64 3.1,3.17 1.13,7.8 2.51,7.65 7.12,2.59 27.54,-4.01 -3.36,8.86 76.87,4.38 -2.78,-4.57 -0.86,-4.85 1.55,-6.19 4.19,-8.55 -22.58,-27.17 -3.5,-25.93 13.99,-21.32 29.84,-13.1 53.66,-8.41 59.33,0.75 38.09,14.42 12.18,0.98 57.14,-15.69 81.38,6.81 25.53,-13.87 -8.99,20.79 -15.15,10.79 -27.86,6.41 -0.42,-2.51 -4.05,-3.82 -4.26,-1.16 -1.26,5.43 0.1,7.17 -1.61,6.53 -3.31,4.9 -24.23,10.96 -8.39,7.24 -2.96,7.37 -2.46,26.98 -23.9,28.12 -2.45,27.22 3.89,30.72 0.61,26.62 -6.45,18.67 -16.99,7.01 1.17,8.25 10.79,3.27 9.11,8.83 6.79,12.31 13.31,52.24 6.5,10.6 5.06,-10.29 5.78,12.1 1.98,9.71 -2.78,6.82 -8.37,3.46 -2.16,6.79 16.99,63.11 7.04,15.9 10.47,3.97 16.55,-11.03 0.96,6.88 -13,8.65 -16.38,2.36 -14.81,-5.92 -8.12,-16.38 -2.96,-4.14 -4.22,7.19 -3.56,11.79 -1.06,9.61 4.39,26.5 3.28,11.52 4.84,10.83 -10.06,3.53 -2.66,8.9 2.51,12.33 5.48,13.78 7.18,13.54 5.95,6.05 15.65,7.9 -8,8.26 -2.06,-1.29 -4.37,-4.93 -3.72,18.47 -1.92,21.6 -0.08,22.11 1.71,20.21 7.17,9.8 13.35,-0.9 25.1,-11.49 0.97,6.88 -14.77,6.87 -17.47,11.71 -15.44,2.6 -8.73,-20.22 -9.59,15.22 -6.21,42.62 -8.88,14.48 5.48,4.36 2.17,1.27 3.47,1.26 -18.41,19.41 -7.08,13.58 -3.06,18.1 14.87,-2.13 0.98,6.88 -6.18,24.03 -5.43,0.78 -8.67,-18.34 -12.15,10.57 -13.64,20.21 -13.17,10.62 3.12,7.32 1.75,3.09 2.81,3.92 -10.42,-1.07 -10.2,-2.91 -8.61,0.37 -5.88,8.69 -0.08,14.75 8.21,37.35 1.75,16.01 -0.95,7.92 -2.03,7.54 -7.73,20.78 -0.19,5.53 0.32,5.8 -1.33,8.97 -5.32,12.88 -15.35,25.59 -2.84,7.14 6.85,14.79 23.07,15.71 6.22,10.55 8.35,34.3 2.49,18.35 -3.03,16.53 -3.99,13.22 -2.45,11.35 -5.3,8.62 -22.5,7.98 -29.58,18.04 9.54,25.34 1.02,16.7 4.38,8.08 19.71,-0.39 6.45,-3.35 12.7,-12.45 8.07,-3.64 20.57,0.03 6.66,-4.01 2.8,-5.26 0.72,-13.8 2.39,-5.73 3.2,-1.46 8.13,0.34 3.46,-1.03 14.97,-7.67 46.63,-14.17 51.07,-26.16 11.54,-0.78 0.01,-2.57 -0.55,-5.47 1.01,-5.7 4.86,-3.15 7.05,1.51 11.37,9.48 8.15,1.35 8.24,-2.63 14.09,-7.9 8.55,-1.56 13.03,3.88 12.74,9.13 22.07,22.65 11.57,6.49 34.6,5.72 13.29,-0.52 84.16,-27.82 5.41,-4.14 1.78,-8.24 0.99,-18.94 11.14,-35.75 0.52,-19.68 -20.09,-10.67 -4.6,-9.93 -3.22,-10.18 -3.52,-4.36 -16.03,1.86 -6.65,-1.42 -5.31,-4.93 -7.21,-25.74 6.07,-23.15 9.76,-21.26 6.53,-32.08 45.54,-77.23 4.71,-17.68 -0.84,-24.58 -3.12,-12.01 -4.39,-8.16 -4.04,-5.28 -1.95,-3.18 0.82,-11.61 6.03,0.05 8.51,3.98 8.33,0.15 6.84,-7.7 4.43,-8.65 7.11,-5.52 14.68,1.99 1.02,7.5 -6.11,12.09 7.4,14.41 13.94,11.83 13.32,4.15 94.75,-17.83 81.36,-44.17 123.19,-23.79 29.78,-13.21 17.64,-4.07 28.26,11.12 17.15,-6.32 29.44,-17.77 49.49,-6.25 12.06,-6.93 20.14,-17.26 35.39,-13.03 62.85,-49.68 20.52,14.53 119.62,13.5 35.77,11.98 21.97,15.23 17.11,2.49 7.09,4.5 20.53,25.12 52.26,29.16 184.9,19.98 35.26,13.22 15.3,10.86 13.92,15.26 -55.08,-26.53 -60.68,-1.73 -58.87,15.16 -49.71,23.74 -14.75,1.74 -12.57,2.53 -15.93,7.36 -13.38,10.37 -4.88,11.51 -1.53,6.93 -9.38,8.15 -1.13,9.73 2.26,11.95 3.15,7.82 45.12,63.65 40.48,94.28 12.31,11.63 39.33,24.72 7.83,-0.75 8.1,6.26 98.99,32.46 8.41,9.61 96.14,43.58 25.71,4.75 30.38,16.19 58.36,14.29 61.65,-7.73 305.32,63.52 18.93,12.17 17.87,4.21 31.78,28.7 101.01,65.51 42.4,42.8 9.2,6.19 7.02,8.91 22.02,57.11 27.56,30.43 24.84,0.8 67.12,-41.51 7.05,-0.12 6.48,5.38 0.76,7.63 -7.42,0.21 -4.69,2.21 -3.2,5.18 -3.14,8.83 14.65,-1.45 0.82,8.26 -13.82,1.6 -13.81,6.18 -10.24,9.88 -3.32,12.91 -5.49,14.97 -28.89,17.85 -6,9.82 4.7,35.62 10.38,42.65 17.59,28.19 26.65,-8.4 0.7,6.94 -36.07,34.91 0.77,7.63 16.67,36.16 5.83,52.15 8.13,44.78 23.69,14.55 -16.19,31.41 -2.32,15.82 2.25,52.39 -2.58,48.18 1.96,23.04 5.48,19.33 19.35,42.38 9.65,15.54 5.98,20.67 -1.95,25.92 -7.28,42.11 0.04,15.58 0.35,5.65 18.5,11.92 6.28,1.92 14.73,-0.09 13.93,3.71 12.9,10.99 23.27,26.19 23.56,18.28 140.06,45.56 12.2,-3.78 25.4,11.81 113.76,3.52 123.68,28.33 7.74,3.28 5.95,0.45 41.48,-8.94 58.41,9.89 29.67,10.78 11,6.49 7.29,-22.89 0.98,-3.08 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m -1720.4,4694.64 0,0 2.22,-40.8 0.49,-8.83 5.06,-22.05 22.52,-29.87 0.11,-0.16 9.57,-17.6 0.33,-22.29 -1.89,-2.52 -2.83,-3.78 -11.13,-9.35 -6.45,-5.42 -4.95,-9.8 4.89,-25.43 4.72,-24.51 -1.43,-7.16 -6.52,-11.87 -0.6,-2.58 -0.56,-2.4 -0.01,-0.06 0.45,-0.93 1.47,-3.05 5.99,-3.76 2.14,-1.35 1.3,-1.75 1.58,-2.14 2.56,-7.77 2.25,-6.81 3.16,-6.64 0.85,-0.47 4.12,-2.27 10.14,-3.07 5.72,-0.73 13.25,0.71 4.93,-0.98 1.7,-0.34 8.81,-5.67 2.93,-6.54 0.09,-0.2 1.53,-7.66 0.01,-0.04 3.94,-8.72 21.35,-24.24 2.71,-3.07 3.39,-7.69 7.56,-23.24 1.93,-4.4 1.21,-2.75 8.52,-8.48 3.6,-3.58 6.83,-3.86 47.35,-26.68 0.99,-0.56 2.16,-1.21 1.33,-0.41 6.44,-1.94 3.04,-0.92 9.93,6.4 14.07,20.34 10.17,14.71 7.12,6.51 6.84,6.26 7.93,4.1 9.14,4.73 31,7.03 7.48,1.69 22.01,5.01 34.76,7.92 3.67,-1.45 14.16,-5.58 11.04,-12.26 8.84,-19.37 2.83,-6.19 6.75,-14.77 7.01,-21.81 5.1,-6.99 9.8,-2.15 0.04,-0.02 9.2,-3.82 0.48,-1.08 4.33,-9.64 3.59,-16.34 2.37,-10.75 -5.45,-8.57 -5.85,-9.2 3.18,-32.59 13.85,-63.97 -1.65,-35.51 2.68,-12.91 1.24,-1.89 8.78,-13.27 8.73,-8.06 29.74,-18.51 12.11,-4.45 10.76,0.47 6.61,0.29 6.89,1.94 25.02,7.03 7.42,4.88 2.72,1.8 4.85,4.19 2.71,2.35 1.45,0.8 6.16,3.42 3.18,0.01 6.98,0.04 6.97,-2.71 2.97,-1.15 4.18,-6.14 -1.76,-8.88 -0.65,-0.99 -7.15,-10.84 0.07,-0.06 8.23,-7.14 2.72,-0.22 43.04,-3.45 15.8,-4.56 14.97,-8.88 13.09,-14.52 9.991,-21.79 2.91,-43.38 -3.66,-51.84 2.98,-45.87 23.321,-25.21 3.308,6.97 1.059,0.55 0.012,0.01 1.097,-1.12 3.403,2.01 1.347,2.01 0.801,1.19 0.949,2.28 2.801,6.74 14.332,20.85 6.199,6.14 5.578,1.63 4.301,1.25 31.172,0.17 29.289,-5.68 14.18,-8.48 5.039,-4.08 6.57,-5.32 9.379,-5.32 2.91,-1.64 6.461,-0.38 9.66,-0.56 15.77,5.42 30.73,10.57 8.481,0.33 6.691,0.26 12.77,-7.19 0.597,-0.34 21.852,-27.76 5.238,-3.52 9.332,-6.27 13.84,-14.12 0.02,-0.05 3.941,-10.17 12.789,-32.92 4.18,-2.31 8.519,-4.7 3.532,3.06 1.988,1.73 0.051,0.04 -0.18,3.58 -0.211,4.12 0.84,7.09 0.07,0.03 9.063,3.18 0.019,0 6.25,-2.71 3.36,-2.43 5.82,-4.22 8.328,-8.33 3.883,-7.51 -1.203,-5.67 -1.239,-5.82 -6.332,-6.39 -1.187,-1.2 -17.652,-12.06 -8.289,-10.36 -0.34,-0.78 -3.5,-8.08 -5.149,-19.96 -6.191,-16.26 -10.442,-27.4 -0.519,-3.47 -2.488,-16.52 5.488,-3.24 4.293,-2.53 14.668,5.56 7.762,0.71 6.847,-4.08 8.942,-48.72 1.531,-4.53 2.09,-6.2 4.379,-9.16 -0.211,-2.18 -0.481,-5.05 0,-0.05 -7.801,-3.28 -9.91,-4.17 -5.136,-3.19 -12.192,-7.57 -5.558,-4.55 -8.321,-6.83 -5.601,-6.03 -0.11,-0.22 -0.48,-0.94 -3.578,-6.93 -3.813,-12.9 0.012,-0.01 0.168,-0.08 3.133,-1.57 1.398,-8.56 1.418,-8.69 -0.066,-6.01 -0.114,-10.33 0,-0.03 -5.269,0.83 -0.399,0.06 38.75,-24.25 1.84,-0.66 7.61,-2.72 34.441,2.75 20.899,1.68 18.218,-6.26 92.793,-31.77 21.508,2.44 77.152,32.65 25.77,10.93 30.117,3.02 2.512,1.45 5.558,3.21 6.172,10.36 1.16,1.95 6.059,17.33 5.031,23.52 2.5,11.66 -0.16,4.03 -0.14,3.65 -1.348,3.3 -0.992,2.42 -0.352,1.8 -0.957,4.96 2.559,10.86 4.64,8.49 80.629,72.82 19.762,7.76 0.109,-0.76 2.211,-15.96 7.848,-3.84 22.633,3.41 6.09,-9.04 -1.5,-14.25 -0.543,-5.17 -5.118,-22.76 -1.113,-8.01 -1.59,-11.37 -0.148,0.19 -7.07,8.63 -4.418,-0.79 -0.141,-0.28 -10.723,-20.45 -4.238,-8.1 -0.012,-0.08 -0.379,-2.75 -0.988,-7.17 0.59,-9.31 -1.082,-9.63 -0.25,-2.22 -0.027,-0.07 -8.954,-19.15 -22.41,-47.87 -4.109,-17.57 8.652,-16.04 0.028,-0.06 13.73,-6.56 19.441,-9.29 0.04,-0.08 0.16,-0.32 9.871,-20.67 0.25,-7.9 0.211,-6.64 -2.391,-9.49 -2.18,-4.77 -1.972,-4.33 -3.438,-9.99 -1.179,-3.41 -2.161,-4.55 -0.531,-1.12 -6.801,-7.11 -1.718,-6.7 1.179,-5.65 6.41,-12.05 0.051,-0.26 1.36,-6.44 -1.313,-22.19 -1.137,-19.39 5.911,-8.67 0.089,-0.13 7.289,-1.45 11.379,-2.28 4.211,0.44 12.071,1.26 17.418,5.1 14.41,4.23 7.793,-0.04 7.3396,-0.03 1.3672,-0.86 11.25,-7.08 25.371,-27.9 13.9297,-8.91 19.5313,-6.77 5.75,-1.99 0,0 0.0195,-0.02 8.10939,-8.64 11.99219,-19.45 16.38672,-26.59 6.8633,-7.36 L 31,3045 l 12.6211,-10.43 16.3672,-5.73 21.3125,4.79 11.7109,2.64 6.7774,-0.16 8.7419,-0.21 0.078,-0.01 14.313,-15.68 13.09,-17.8 4.179,-16.9 -2.113,-2.35 -1.367,-1.51 -5.063,-2.91 -0.82,-0.47 -0.117,-0.07 -3.02,-15.62 0.598,-5.12 0.609,-5.12 0,-0.07 3.301,-4.54 0.071,-0.02 11.832,-2.92 3.789,0.98 1.437,0.37 4.082,5.44 3.36,5.94 2.82,2.85 0.012,0.01 0.199,-0.05 4.238,-0.92 4.422,-2.96 3.551,-2.38 21.988,-9.29 12.859,-12.71 31.813,-64.66 2.508,-10.31 -0.309,-5.2 -0.383,-6.39 -2.816,-10.34 -1.211,-9.91 0.867,-2.18 3.152,-7.91 15.442,-4.86 4.558,2.38 14.731,7.71 9.738,6.96 9.102,6.5 4.121,1.62 9.769,3.84 22.18,-11.6 6.129,-1.95 5.988,0.53 4.774,0.42 1.968,3.32 0.629,1.05 1.981,7.81 0.019,0.1 9.129,11.39 18.434,8.38 0.078,-0.02 16.051,-4.43 15.211,-8.39 15.508,-3.38 0.039,0.01 0.812,0.31 8.289,3.19 9.879,11.94 7.949,3.8 7.731,-1.48 15.422,-10.45 0.078,-0.02 0.531,-0.15 7.75,-2.26 21.449,-31.23 12.141,-12.36 17.832,-9.32 45.5,-12.87 13.058,-14.28 8.68,-32.22 12.75,3.68 61.942,1.29 10.789,3.55 7.449,10.41 8.89,3 1.879,5.91 0.2,7.12 4.082,6.64 5.238,1.86 20.5,1.12 -4.32,10.4 41.769,3.03 20.5,-2.94 19.543,-8.66 34.809,-28.06 18.871,-11.26 14.469,-2 6.121,-0.91 7.769,1.22 14.11,9 5.992,2.09 7.957,-1.65 65.39,-35.51 12.041,-12.42 4.19,-9.4 1.65,-9.25 -0.06,-6.21 -1.44,-0.41 4.78,-7.58 34.04,-38.59 2.26,-6.75 -3.44,-8.86 -12.93,-0.21 -4.3,-10.04 4.16,-13.07 11.69,-15.16 46.87,-48.17 0.98,-4.75 -1.85,-11.21 0.69,-4.51 3.81,-3.16 9.97,-3.93 2.98,-3.32 5.08,-20.79 2.19,-4.73 0.75,-2.49 1.17,-8.78 1.83,-4.02 3.25,0.24 9.98,6.14 2.94,-0.03 4.05,-17.78 -4.11,-13.96 -2.45,-13.55 8.87,-15.85 8.48,-3.94 32.47,-1.25 28.1,-11.34 9.33,1.86 13.06,16.35 -2.26,18.52 -4.98,18.14 4.66,15.33 7.35,1.57 30.22,-7.81 21.28,1.48 8.02,-1.43 44.79,-26.96 15.71,-1.22 -1.4,-39.22 7.64,-30.73 15.74,-13.05 22.76,13.56 1.27,5.6 -2.19,5.86 -0.45,6.16 6.8,6.38 3.99,-0.62 27.38,-20.97 11.32,-6.26 11.36,-4.19 62.89,-2.07 19.4,-9.64 4.58,-0.8 4.4,4.33 8.05,15.51 4.72,5.47 6.54,2.09 14.97,1.57 5.56,2.46 3.83,6.06 5.63,16.03 3.51,5.44 12.28,6.63 17.21,4.81 14.14,-1.51 2.9,-12.47 31.45,-2.78 13.09,-5.09 4.5,-16.18 -5.49,-3.4 -1.86,-2.49 -1.36,-3.65 10.04,-10.89 15.99,-27.16 9.34,-12.3 15.73,-10.42 31.83,-6.18 16.07,-8.74 5.24,-6.77 6.84,-14.54 6.69,-5.93 10.08,-2.48 8.8,2.09 8.6,3.52 9.25,1.8 8.06,-1.52 15.39,-5.78 7,-1.15 8.96,2.15 17.3,9.08 8.11,2.05 60.53,-18.59 41.69,3.76 13.19,-1.68 115.14,-63.38 71.76,-15.75 8.39,-8.08 -15.55,-17.47 -23.34,-43.06 -34.33,-91.24 -9.29,-15.23 -4.52,-3.8 -27.12,-14.14 -6.46,-0.21 -1.63,-2.73 -3.45,-3.23 -3.5,-5.88 -1.72,-10.43 -1.68,-6.13 -4.22,-3.56 -5.65,-1.88 -20.66,-0.08 -8.39,-2.64 -4.01,-9.89 -1.2,-21.18 -3.39,-8.74 -8.05,-10.46 -9.87,-9.35 -8.82,-5.56 -20.5,-23.84 -11.41,-9.6 -12.23,-3.78 -8.69,-5.96 -31.81,-48.07 -6.82,-36.2 -0.68,-38.66 8.33,-23.74 -0.12,-7.64 -18.7,-14.3 -9,-8.93 -3.98,-10.02 -1.87,-21.15 -3.91,-10.73 -4.93,-7.11 -5.3,-10.45 -3.95,-12.61 -5.91,-29.26 -1.08,-14.57 2.15,-13.43 4.59,-14.26 3.51,-14.88 -1.17,-15.52 -10.46,-16.18 -13.76,-7.18 -12.12,-9.59 -5.53,-23.27 -1.91,-22.54 -5,-18.76 -8.11,-16.01 -48.15,-64.96 -5.16,-13.5 -1.75,-16 -3.93,-8.66 -5.2,-6.62 -5.56,-9.84 -5.31,-16.85 -5.1,-21.6 1.46,-45.9 31.18,-57.33 1,-34.72 -7.34,-13.26 -20.29,-20.74 -4.29,-14.78 0.59,-18.078 -1.48,-4.942 -4.91,-11.05 -3.12,-5.43 -5.03,-4.711 -2.33,-4.777 -0.94,-4.641 0.33,-2.82 0.57,-2.821 -0.25,-4.941 3.48,-20.75 -1.85,-12.398 -10.24,-5.352 -4.27,-5.269 -11.36,-35.809 -2.31,-15.379 8.56,-39.082 -0.73,-18.148 -4.56,-7.262 -12.65,-12.981 -2.77,-6.609 1.64,-23.961 2.17,-12.019 2.85,-5.168 10.99,-6.012 9.9,-14.371 16.29,-34.137 4.4,-5.723 4.74,-4.277 3.86,-5.871 1.44,-10.621 -1.86,-3.961 -3.32,-11.258 -1.8,-0.539 1.63,-0.203 -26.83,-8.93 -18.22,-9.711 -33.33,-26.25 1.77,-0.777 12.34,-9.832 2.57,0.012 0.02,-11.121 -3.39,-6.278 -6.11,-1.902 -7.75,1.82 -4.4,-2.269 -1.08,-3.481 1.54,-4.512 5.23,-7.66 0.72,-2.797 -0.14,-2.902 -1.07,-3.141 -1.36,-1.839 -11.73,-10.168 -9.7,1.629 -9.68,6.46 -11.6,4.309 -8.85,-2.41 -0.06,-6.828 3.67,-6.942 2.44,-2.75 3.56,-5.269 1.12,-6.289 -2.63,-10.34 -15.28,-19.172 -21.14,-8.008 -52.32,3.36 -20.05,-3.762 -28.8,-11.77 -5.09,-0.918 -5.79,2.61 -2.95,4.09 -2.01,4.039 -3.07,2.558 -21.97,7.461 -16.13,10.211 -3.86,18.25 14.45,31.199 -20.53,-1.578 -10,1.848 -9.67,5.891 -17.66,4.128 -37.69,-5.617 -19.46,3.34 -6.72,5.43 -6.81,1.918 -6.81,-1.571 -6.83,-5.089 -14.13,-3.911 1.55,-12.418 7.39,-15.57 3.32,-13.328 -5.93,-9.211 -11.47,-9.269 -12.42,-6.75 -19.92,-3.891 -1.73,-20.93 -19.72,-10.91 -11.55,-14.281 -9.84,-17.121 -4.13,-14.11 90.06,6.45 14.07,6.332 11,-9.442 11.06,-10.57 7.6,-11.481 -6.17,-12.058 -7.22,-4.36 -7.78,-1.929 -8.01,-4.422 -11.4,-14.617 -4.1,-1.5 -6.9,-0.68 -14.6,-14.281 -5.44,-22.672 2.32,-27.641 -52.4,-36.328 -22.61,-22.058 -15.07,-23.372 -50.96,-44.55 -22.96,-7.27 0.39,-19.039 -11.06,-5.312 -2.88,-1.868 -3.03,-6.98 -19.26,-6.2813 -7.35,-6.8203 -10.72,-17.3594 8.49,-20.8789 -18.09,-24.5508 -51.889,-37.08202 -82.633,-23.15628 -37.57,-20.1718 -12.609,-38.6211 2.82,-10.1481 9.531,-19.692 2.039,-12.359 -1.757,-15.348 -4.602,-10.492 -5.602,-9.379 -13.16,-35.762 -1.277,-5.359 1.918,-6.328 3.84,-5.582 5.48,-6.449 -0.301,-18.762 -3.218,-9.117 -8.961,-10.512 -8.25,-5.738 -25.789,-12.59 -20.899,-22.031 -7.801,-6.153 -55.789,-28.179 -106.25,-90.508 -10.793,-13.121 1.84,-14.719 17.793,-21.41 -28.351,-33.231 -28.41,-44.84 -9.079,-9.089 -3.269,-6.661 -0.211,-5.679 1.469,-5.289 1.66,-4.66 0.43,-3.442 -0.321,-8.469 1.313,-7.582 -1.703,-7.269 -9.129,-8.11 40.519,-26.988 10.84,-12.59 8.77,-17.16 0.589,-12.332 -26.918,-54.781 -2.871,-8.578 -6.64,-31.262 -0.84,-11.988 0.34,-10.301 -3.617,-7.289 -17.161,-4.652 -4.492,-0.348 -4.597,0.738 -5.981,2.18 -1.43,0.172 -1.281,-0.071 -1.289,-0.351 -47.07,-20.879 -19.27,-11.23 -3.383,-13.27 7.473,-15.52 12.988,-17.628 -2.757,-9.442 -6.332,-10.969 -11.219,-23.722 19.027,10.371 35.352,7 35.25,0.07 25.832,-12.672 25.527,11.953 41.051,44.7 50.5,30.941 20.648,20.387 -3.109,25.742 -5.328,2.539 -13.11,-5.469 -7.902,4.469 -3.098,4.832 -6.761,18.629 -0.239,4.488 -6.429,19.141 -2.793,11.191 4.672,15.008 17,21.481 22.937,28.21 25.703,20.762 23.938,6.86 25.301,0.328 25.152,5.55 66.969,42.782 49.507,8.207 51.141,-3.199 113.571,-32.95 11.43,-6.07 6.84,-11.219 1.08,-21.121 -6.01,-18.449 -20.94,-23.199 -4.5,-12.723 14,-25.789 26.49,-29.73 16.68,-30.629 -28.79,-52.352 -14.51,-39.418 -8.17,-37.871 6.18,-18.852 61.11,-15.238 11.51,-11.738 -1.03,-8.481 -5.66,-8.351 -6.44,-7.41 -3.67,-5.65 2.19,1.04 1.06,-11.06 -0.07,-11.61 -1.15,-1.06 0.09,-8.62 -1.73,-4.61 0.39,-3.46 6.66,-5.35 7.32,-1.23 6.04,4.32 5.67,5.54 6.55,2.47 17.38,-8.22 50.87,-60.48 3.7,-2.62 2.5,-11.9 8.31,-23.31 4.94,-20.46 3.89,-11.3 5.14,-9.09 -11.27,-5 -8.43,-10.02 -6.59,-13.22 -5.27,-14.86 -11.04,-17.53 -15.98,-12.86 -17.8,-8.5 -16.66,-4.45 -19.18,0.68 -5.39,-0.66 -2.88,0.53 -6.15,4.25 -2.96,0.48 -3.69,-2.89 -3.51,-5.08 -2.38,-4.7 -0.05,-1.95 -23.2,-2.65 -12.16,-6.85 -10.33,-16.09 -4.68,-18.14 -1.11,-19.79 1.53,-19.92 7.5,-46.29 15.03,-24.08 20.58,-16.25 20.26,-4.68 10.28,-4.18 17.24,-18.03 10.18,-8.19 25.13,-7.09 9.41,-6.96 4.33,-16.65 -2.01,-6.27 -9.44,-19.29 -2.33,-9.19 1.3,-9 8.21,-13.3 2.86,-8.35 3.11,-46.04 5.49,-16.28 35.19,-20.86 33.38,-26.49 7.39,-12.35 5.08,-13.97 6.01,-12.61 10.24,-8.17 33.14,-15.41 5.96,-4.79 -1.13,-13.82 -7.34,-16.78 -16.86,-28.67 -26.05,-29.66 -4.21,-6.45 3.21,-32.3 7.91,-22.47 -0.41,-17.46 -21.76,-17.4 -15.58,-26.92 -5.4,-5.27 -4.1,1.6 -9.53,12.18 -6.18,2.85 -27.86,-6.96 -28.4,-12.09 -10.39,-9.45 -14.25,-23.53 -11.8,-10.15 -7.19,-1.54 -18.37,0.25 -6.24,-2.59 -4.39,-9.31 3.49,-6.12 4.42,-5.23 -1.72,-6.85 -25.93,-11.67 -28.01,10.75 -28.42,16.41 -27.41,5.41 -6.01,-2.87 -14.45,-10.57 -6.94,-3.71 -6.199,-0.86 -14.211,0.93 -7.02,-1.06 -27.718,-14.88 -14.582,-11.52 -9.719,-12.3 13.199,-21.53 12.488,-11.46 0.992,-7.84 -1.16,-8.87 1.828,-10.11 8.961,-16.64 8.102,-7.36 27.527,-3.37 20.252,-15.63 4.16,-32 -3.29,-62.13 13.14,-23.63 25.25,-23.1 53.59,-33.21 14.85,-4.19 39.15,6.8 13.69,-1.5 39.2,-17.3 13.83,-15.91 3.13,-5.65 1.55,-6.58 -0.33,-3.38 -0.81,-2.97 -0.04,-5.34 -1.5,-0.77 -4.35,-17.41 -0.61,-1.42 8.41,-24.27 3.58,-27.55 2.8,-9.54 22.96,-46.1 4.24,-14.58 -14.17,0.05 -28.38,9.19 -14.58,0.25 -18.43,-9.54 -15.03,-17.6 -6.23,-22.41 8.34,-23.82 -11.28,-8.05 -28.44,-46.54 -41.27,-30 -8.86,-14.7 1.55,-34.62 17.02,-31.58 23.51,-26.12 20.36,-17.92 -27.11,-14.07 -5.85,-9.44 -7.57,-34.5 -2.15,-6.6 -0.31,-5.63 2.7,-10.29 3.17,-5.14 17.01,-21.06 5.98,-11.06 8.82,-22.8 4.24,-8.49 6.98,-7.71 15.55,-11.82 7.12,-8.79 4.77,-11.03 2.38,-10.45 3.39,-9.79 7.3,-8.74 10.54,-4.62 9.53,1.31 9.65,2.99 10.75,0.66 9.99,-3.17 46.39,-26.13 31.76,-12.44 83.86,-54.27 14.91,-6.69 20.75,-3.93 10.41,-4.29 5.38,-8.21 4.11,-9.33 7.37,-7.5 7.65,-1.93 32.16,-1.45 139.87,37.53 23.09,1.44 33.25,20.96 24.63,-4.88 -11.59,-35.93 9.42,-20.82 17.41,-18.02 12.14,-27.24 -1.88,-19.2 -9.13,-11.8 -11.73,-8.71 -8.94,-9.73 -5.35,-13.46 -7.04,-24.8 -6.43,-12.7 -18.23,-19.61 -42.07,-34.3 -16.63,-25.6 -35.46,-37.75 -12.96,-22.78 3.38,-28.17 15.15,-53.84 -10.7,-7.39 -3.41,0.04 -3.4,0.55 -3.27,-1.44 -0.74,-4.06 0.91,-14.14 -0.57,-3.81 -6.63,-3.12 -4.66,0.4 -5.37,1.91 -8.38,1.28 -7.89,-3.21 -5.64,-8.1 -17.94,10.87 -15.76,-5.92 -12.24,-13.17 -2.37,-14.56 -13.38,-3.07 -7.88,-10.78 -1.19,-13.59 -3.71,-10.51 -15.45,-1.79 2.08,4.01 3.63,10.37 -39.33,-4.27 -7.63,1.74 -10.97,4.76 -9.67,-8 -15.99,-22.86 -7.63,-6.15 -7.69,-4.66 -9.06,-2.82 -11.77,-0.78 -13.19,-4.41 -8.56,-10.23 -6.24,-10.32 -6.19,-4.6 -3.1,-8.08 -1.01,-52.52 -1.12,-8.62 0.29,-5.8 -0.69,-4.55 -4.02,-4.33 -7.31,-1.96 -3.04,5.78 -1.33,7.73 -2.25,3.87 -21.66,-5.22 -20.95,-10.34 -19.93,-5.88 -18.26,8.22 -13.36,-10.22 -13.29,-7.26 -12.52,-9.71 -11.04,-17.16 1.59,-0.27 -1.45,-18.17 -0.6,-0.53 -1.41,-2.95 -30.61,-50.23 -1.98,-2.19 -3.11,-0.62 -6.02,0.16 -2.34,-3.13 -2.14,-15.05 -4.14,-5.06 -4.63,-0.81 -5.6,0.35 -4.81,1.73 -1.92,3.29 -2.11,6.03 -4.81,-4.93 -4.23,-8.25 -0.28,-4.24 -41.71,-0.87 -20.27,5.74 -15.469,13.05 -10.77,-11.17 -9.312,-19.07 -6.57,-20.1 -6.93,-32.83 -9.57,-6.63 -12.61,-4.22 -13.469,-11.06 -7.359,-14.35 -4.191,-12 -7.77,-7.97 -17.898,-2.57 -21.953,-10.83 -12.618,-9.83 -2.031,-9.31 4.809,-1.86 78.312,1.64 1.5,-6.25 -7.812,-18.48 -3.668,-5.24 -3.27,-2.58 -2.722,-4.28 -2.047,-10.37 1.25,-6.44 3.629,-5.24 3.918,-4.16 1.75,-3.35 -5.399,-7.03 -34.301,-26.03 4.993,-15.37 -9.09,-1.95 -15.922,-6.7 -8.43,2.05 -3.121,5.49 -1.508,8.77 -3.351,9.32 -8.2,7.22 -21.179,2.68 -15.731,-8.93 -12.992,-12.97 -12.629,-9.28 -9.379,-1.29 -19.84,2.8 -9.601,-0.34 -17.328,-5.87 -16.403,-8.23 -25.769,-1.12 -7.738,-5.5 -7.172,-13.83 -0.688,-8.68 0.117,-6.84 -4.628,-8.15 11.468,-18 -7.347,-6.03 -29.571,1.97 -2.539,4.88 -1.351,10.47 -3.539,10.54 -8.5,5.04 -9.039,1.5 -12.032,5.56 -6.519,1.41 -55.25,3.52 -9.051,-1.39 -18.461,-10.82 -6.07,-15.22 -2.93,-19.12 -8.68,-22.63 10.243,-6.18 5.226,-2.13 6.91,-0.09 -0.226,-6.88 -14.102,-3.32 -54.269,2.52 -15.039,3.65 0.238,6.89 28.621,-0.62 4.418,3.35 5.512,18.26 0.3,11.31 -7.062,5.24 -58.758,5.44 -5.25,3.77 -15.012,11.4 -23.5,6.7 -25.078,0.39 -19.972,-7.23 2.261,6.52 1.828,10.65 2.383,5.38 -13.519,0.84 -12.91,-2.98 -24.153,-11.14 13.41,-6.07 16.52,-20.24 13.332,-6.38 -0.281,-7.58 -25.641,5.95 -13.039,0.54 -5.871,-8.32 -3.93,-15.11 -8.277,-4.98 -18.813,1.89 -38.898,18.6 -7.77,6.02 -4.132,15.3 6.613,9.81 26.75,12.45 -4.723,4.35 -5.379,2.47 -14.59,1.68 -7.261,3.7 -1.27,15.31 -7.258,3.7 -18.171,2.57 -15.598,5.73 -29.582,18.32 5.558,19.3 -15.277,9.08 -41.8398,3.4 -2.7031,-2.3 -1.8984,-5.19 -2.5586,-5.1 -4.8828,-2.16 -5.4102,1.4 -4.2695,2.76 -4.0391,3.96 -10.8203,4.87 -6.2304,6.09 -18.78911,27.77 -6.89844,3.99 -14.47265,-10.29 -10.6484,-5.28 -10.1016,-2.16 -4.2305,5.43 -8.2773,7.17 -19.5313,3.41 -20.789,-0.44 -12.7105,-4.11 -10.75,6.24 -23.661,-0.5 -10.148,4.44 -5.633,11.57 3.012,11.2 6.359,11.05 7.59,17.9 2.242,7.09 1.028,8.29 -2.309,-0.96 -5.289,3.82 -5.43,6.39 -2.992,6.66 2.512,57.48 -22.09,16.73 -109.172,-19.89 -35.449,6.9 -11.949,-4.14 -51.321,1.48 -19.75,6.55 -20.379,23.37 -2.992,25.32 12.211,21.96 25.781,12.96 72.118,-3.38 22.66,5.89 16.051,11.77 17.492,19.59 11.59,24.49 -1.653,26.42 -24.277,-14.48 -23.121,-7.28 -20.563,4.61 -16.269,21.03 -4.969,17.35 -0.051,9.49 -3.91,5.91 -16.437,6.47 -6.141,1.15 -19.16,0.04 -3.172,3.81 -10.848,16.42 -4.769,3.42 -5.864,-6.88 -5.886,-14.59 -4.653,-15.02 -1.82,-8.2 3.34,-21.22 6.832,-9.56 9.609,-5.81 11.231,-10.48 8.379,-28.3 -10.129,-24.37 -19.731,-12.73 -20.148,6.55 -15.91,-4.81 -43.012,27.8 -20.879,-8.41 -9.043,-6.57 -19.969,-3.39 -8.121,-6.5 -7.379,-14.97 3.481,-6.04 7.609,-7.28 5.051,-18.43 -31.031,10.81 -32.699,20.74 -26.129,27.26 -10.969,29.91 5.418,65.01 -1.121,19.08 -4.149,16.98 -7.359,19.61 -10.512,16.97 -13.418,9.07 -0.359,-6.92 22.066,-39.5 2.903,-11.86 -4.09,-79.64 9.289,-37.94 20.68,-24.08 23.8,-18.78 18.52,-22.4 -29.211,-9.86 -118.738,11.69 -32.52,10.92 -21.441,12.24 2.519,7.87 8.301,18.73 7.328,22.66 -0.308,19.62 -20.418,18.09 -35.153,9.23 -249.799,22.21 -19.4,5.38 -16.71,9.7 -5.62,7.21 -3.87,9.93 -12.43,59.82 -1.11,3.93 -19.85,18.53 -46.46,7.6 -49.22,-2.29 -28.08,-11.14 11.43,12.96 18.3,4.68 38.26,1.1 18.96,3.42 13.83,5.83 10.49,10.15 8.66,16.25 -45.52,-3.89 -24.43,-6.74 -37.89,-24.13 -51.11,-12.29 -22.68,-11.8 -55.28,-40.85 -6.6,-10.19 -3.24,-16.91 -11.53,-12.65 -69.98,-24.42 -0.43,-6.89 27.55,0.04 27.32,12.54 43.75,33.76 45.35,44.18 25.74,19.02 28.03,7.5 -0.5,-8.21 -169.58,-122.95 -94.49,-43.76 -27.82,-20.53 -72.16,-77.58 -17.52,-6.39 -31.39,18.22 -19.69,-2.32 -30.17,-12.7 -117.79,-77.91 -14.69,-15.92 -6.07,-9.7 -9.35,-20.44 -6.71,-10.29 -20.25,-15.55 -11.07,-10.86 -5.38,-12.95 -25.23,-33.19 -7.88,-1.41 -3.49,4.48 -4.55,7.51 -10.74,7.16 0.49,6.97 16.55,10.46 8.05,7.6 -3.27,3.98 -22.63,1.48 -9.98,-2.47 -4.52,-7.85 3.97,-31.11 12.48,-16.17 12.96,-9.31 5.43,-10.68 -4.57,-13.29 -16.79,-16.1 -4.36,-11.43 -4.28,-28.37 -3.64,-14.31 -3.64,-6.01 -6.83,-5.57 -4.64,-11.76 -5.43,-8.48 -9.04,4.08 -3,9.09 3.48,9.65 12.29,19.18 -17.89,-1.33 -7.82,-12.4 0.87,-17.57 8.03,-17.04 21.29,-20.2 2.89,-10.82 -13.8,-11.66 -5.71,-0.43 -11.22,6.85 -7.06,2.2 -3.7,-5.62 -0.97,-25.58 -3.62,-5.62 -9.91,-4.44 -34.7,-31.88 5.64,-7.82 4.14,-15.76 4.92,-7.24 6.89,-4.65 12.74,-2.4 22.56,-8.96 8.75,-4.88 4.44,-9.34 2.27,-19.64 -0.11,-19.69 -2.42,-19.96 -13.62,-55.76 -3.17,-7.62 -4.63,4.39 -9.39,16.47 -8.94,-10.87 -1.69,-9.46 2.95,-8.78 5,-8.86 3.6,-2.01 11.08,0.05 4.37,-3.16 1.77,-6.38 -1.28,-13.41 3.68,-84.86 6.87,-22.55 53.12,-62.12 24.16,-38.6 -1.63,-27.51 -1.57,-6.7 -56.72,-5.87 -21.6,0.46 -20.84,3.87 -16.55,6.56 -9.42,6.95 -7.4,9.03 -5.73,10.84 -4.41,12.63 -5.33,1.94 -24.01,2.33 -8.62,2.52 -14.69,-8.24 -25.87,12.15 -28.55,-19.13 -13.94,-1.3 -14.08,1.51 -13.37,-0.44 -13.75,-6.88 -26.61,-22.35 -13.8,-7.42 -17.39,-1.46 -31.88,7.35 -16.94,-0.01 -15.1,-6.38 -36.78,-24.85 -7.28,-9.09 5.9,-21.81 9.36,-12.28 -0.02,-4.84 -22.16,0.39 -17.88,4.78 -36.93,15.84 -15.96,0.78 -6.83,-5.37 -8.27,-17.47 -5.96,-5 -8.62,0.4 -8.97,3.8 -15.97,10.76 -14.93,5.22 -14.96,13.84 -11.6,18.31 -4.65,18.41 -13.06,1.65 -25.19,7.63 -46.14,26.3 -9.22,8.97 -21.95,14.77 -26.08,-0.73 -52.16,-11.82 -38.49,8.06 -13.61,-5.17 -4.38,-5.48 -7.55,-15.88 -4.44,-6.14 -20.9,-13.47 -15.1,-13.71 -10.05,-5.39 -13.82,-2.33 -21.67,-0.64 -11.01,2.7 -9.6,7.36 -15.01,15.44 -6.4,17.82 -7.34,42.47 -9.67,19.6 -12.29,6.7 -15.32,2.16 -18.93,6.13 -43.49,35.52 -16.64,8.68 -50.48,11.42 -14.59,7.59 0.72,3.38 -0.35,2.84 -1.42,2.4 -2.33,1.83 5.37,27.47 11.09,22.3 16.28,13.29 20.8,0.15 -8.92,15.66 -18.59,7.56 -12.51,9.53 9.08,21.95 -92.51,17.31 -8.61,5.02 -41.83,34.42 -12.63,0.19 -24.9,-7.07 -25.82,3.67 -16.56,-42.65 -18.83,-5.78 -10.48,16.58 -10.38,39.34 -13.8,23.22 -12.12,27.42 -6.52,4.33 -7.67,1.13 -3.75,4.83 5,15.46 -18.75,6.99 -100.92,9.62 -28.18,-6.29 -8.96,1.99 -13.1,11.6 -6.94,16.09 -4.57,17.81 -6.54,16.72 -13.24,14.37 -16.59,6.95 -69.35,11.35 -5.9,4.36 -12.47,12.38 -6.68,3.34 -8.64,-1.92 -8.3,-5.52 -8.17,-3.33 -8.44,4.53 -11.78,14.2 -6.58,6.15 -23.35,11.83 -33.29,24.41 -13.79,3.84 -16.05,0.01 -13.97,4.53 -27.13,13.93 -14.23,2.86 -22.56,0.59 -19.59,-5.56 -5.48,-15.58 -0.59,-23.92 -14.61,-29.98 7.8,-13.45 -6.57,-4.19 -3.52,-4.41 -6.11,-10.67 11.19,-5.32 8.59,-13.35 3.91,-17.39 -2.62,-17.8 -8.3,-11.15 -11.15,-2.84 -28.67,6.81 -102.5,7.31 -13.02,7.1 -32.11,-5.05 -16.08,0.77 -16.07,4.9 -3.61,4.23 -0.13,4.63 0.75,4.59 -1.43,3.8 -20.67,21.66 -15.41,-3.8 -16.04,-13.12 -26.38,-30.12 -12.37,-0.51 -11.2,16.55 -14.33,32.93 -12.41,7.86 -42.42,15.99 -13.52,-0.67 -16.47,-8.8 -51.07,-2.15 -65.75,-16.53 -28.67,0.42 -30.99,16.31 -4.21,5.42 -3.21,6.02 -5.1,5.66 -10.12,4.13 -8.22,4.81 -1.5,7.43 -0.21,7.96 -4.35,6.69 -12.29,12.59 -8.08,17.54 -2.68,19.73 3.93,19.1 -15.4,-4.62 -24.43,-3.91 -21.65,5.04 -7.44,21.75 -46.08,35.5 -11.25,13.26 -5.69,-10.53 -6.61,-7.84 -6.69,-1.75 -6.29,8.03 -42.81,-26.63 -21.13,-9.61 -25.22,0.87 -41.82,25.66 -20.79,2.96 -4.45,-26.29 -7.47,-1.62 -14.79,-7.86 -6.55,-0.26 -7.31,6.13 0.88,6.62 1.97,7.08 -3.96,7.26 -3.47,1.53 -13.28,1.53 -5.13,3.12 0.65,4.15 2.12,4.64 -0.64,4.88 -26.84,46.28 -13.13,13.86 -26.03,20.69 -8.12,2.34 -8.12,-0.24 -7.91,1.94 -7.37,9.07 -3.38,10.67 1.58,5.87 3.35,4.79 1.33,7.73 -10.69,41.38 -20.98,10.09 -64.29,-3.92 -64.44,13.11 -30,13.91 -25.87,24.75 -8.55,12.83 -13.07,5.54 -27.82,6.96 -5.5,5.85 -12.44,10.25 -6.75,3.65 -30.95,0.92 -23.93,24.99 -26.12,18.98 -46.24,14.25 -14.18,11.21 -11.8,17.59 -1.81,15.33 8.42,13.74 18.87,12.56 -17.79,7.17 -19.13,-4.65 -15.99,-14.11 -8.42,-21.58 -5.62,-28.88 -8.82,-14.15 -14.44,-2.84 -22.1,4.7 -19.3,7.85 -16.73,12.66 -12.67,18.61 -7.19,25.39 7.88,8.55 38.11,31.93 12.05,12.57 16.83,33.6 14.39,43.18 2.01,41.06 -20.31,27.03 -9.73,1.35 -9.39,-2.08 -9.22,-0.47 -31.62,22.08 -24.3,10.77 -16.05,2.63 -13.07,-5.83 -8.85,-18.16 -5.87,-9.15 -9.51,-3.97 -10.42,-0.01 -8.6,2.45 -9.32,5.84 -3.38,5.6 -3.47,19.78 -0.09,9.91 3.14,6.48 0.8,5.24 -7.27,6.78 -14.45,9.34 -7.31,1.82 -17.39,-4.87 -17.76,-0.06 -10.13,-3.45 -8.96,-0.32 -2.94,9.53 0.09,21.98 -8.32,15.07 -21.78,14.39 1.56,13.58 3.65,23.33 8.67,30.36 11.56,-10.95 7.23,7.44 15.73,4.31 73.19,2.26 19.81,4.42 19.34,7.43 16.55,9.17 8.3,8.71 21.95,32.16 5.2,12.03 8.12,7.95 46.97,27.78 7.83,12.05 18.18,39.77 10.01,34.26 27.54,60.76 56.18,177.93 27.16,61.2 46.43,140.33 91.51,308 41.61,153.05 14.2,68.26 0.14,16.61 -2.78,32.32 1.97,9.31 24.93,27.87 4.05,6.61 3.71,13.23 20.65,49.24 18.11,17.49 20.01,-1.71 47.05,-18.1 28.55,0.69 17.44,9.43 2.23,16.86 -16.96,23.05 10.85,-1.36 -5.83,16.94 -52.65,63.63 -8.24,4.83 -3.44,2.7 -2.84,3.86 -3.45,2.94 -5.5,0.17 -3.83,-3.01 -2.12,-4.63 -1.53,-4.24 -2.21,-1.65 -6.42,-9.68 -42.54,-49.96 -15.2,-47.89 -10.45,-25.85 -6.8,-11.86 117.89,542.08 55.05,171.58 43.9,232.54 6.91,15.63 33.56,50.78 13.4,15.79 13.13,3.17 7.71,-5.11 1.3,-5.3 -1.53,-8.2 -2.08,-12.51 -2.56,-3.41 -2.44,-5.69 -0.79,-5.91 1.62,-6.27 6.59,-14.36 5.65,-9.46 47.34,-47.41 30.6,-22.65 11.64,-5.3 81.59,-117.31 17.99,-35.24 5.09,-34.64 -0.72,-22.45 5.37,-42.6 2.12,-104.81 1.64,-13.01 18.77,-67.74 22.55,-38.18 26.66,-33.13 23.55,-17.9 5.99,-8.69 4.81,-14.72 0,-10.47 -4.44,-17.47 -1.78,-23.3 0.68,-23.49 4.47,-18.75 9.56,-9.46 -1.19,15.8 0.8,31.87 -3.18,14.29 10.93,29.03 -5.97,25.16 -15.41,20.05 -17.24,13.65 24.24,-4.12 19.77,-6.95 17.12,-11.23 16.01,-16.91 -15.61,37.29 -29.57,19.3 -32.85,15.21 -25.42,25.12 -10.87,30.66 -5.63,36.43 -4.15,216.35 -4.97,44.23 -17.53,73.2 -11.86,33.03 -14.03,29.98 -31.03,46.02 -100.57,94.25 -2.07,5.04 -0.43,21.28 -4.32,5.32 -24.62,12.73 -36.45,47.01 -22.13,12.5 -14.41,4.94 -11.69,9.602 -9.63,12.609 -7.93,13.73 -12.97,12.93 -28.16,-2.562 -13.21,7.55 23.35,75.621 1.76,14.239 53.58,9.25 15.16,-2.637 42,-64.801 8.08,-7.039 8.13,-9.953 51.29,-32.258 -14.91,21.938 -62.71,65.402 -17,26.609 -2.81,10.512 0.41,13.129 -1.29,16.957 -3.11,16.731 -5.08,12.492 9.17,3.488 6.33,5.84 4.78,6.09 4.36,4.519 9.65,6.633 12.93,5.93 7.38,0.051 6.03,-2.172 5.26,1.949 4.93,12.492 0.43,11.668 -2.94,12.043 -4.44,10.418 -3.98,6.461 4.63,3.078 8.83,7.391 4.33,2.711 -11.68,10.121 -6.53,16 -6.31,37.957 14.9,-13.399 12.74,-2.441 11.52,7.863 10.91,17.668 0.88,6.891 -2.7,5.301 -3.72,5.777 -4.55,4.781 -14.05,7.281 -1.55,9.469 0.6,11.301 -3.58,15.789 1.53,10.309 -0.53,4.441 -2.57,2.082 -9.47,4.648 -2.36,2.122 -3.96,5.808 -4.16,4.27 0.62,4.761 10.42,7.879 -16.26,16.032 -5.75,2.257 -2.92,2.543 0.89,5.008 1.69,5.27 -0.53,3.39 -4,1.391 -11.79,0.648 -7.7,3.45 -7.05,0.39 -6.44,2.231 -6.33,8.699 0.34,9.473 6.39,10.136 8.86,8.364 7.77,4 -1.33,21.878 10.33,13.481 57.3,26.187 8.1,13.313 0.44,9.039 -2.24,9.91 -0.09,15.942 -13.67,25.91 -34.12,6.808 -30.78,-13.5 -3.61,-35.179 -19.97,8.5 -12.38,19.757 -11.18,23.063 -11.94,5.098 -7.49,2.382 -21.81,17.379 -15.41,17.41 -9.72,5.641 -42.57,-7.601 -19.41,3.64 -5.13,24.852 -0.79,28.547 -9.43,21.933 -16.13,14.656 -20.5,7.051 -50.99,9.141 -19.83,9.59 8.42,12.8708 -10.83,13.6289 -39.96,12.8125 -22.61,26.2383 -20.83,8.8281 -8.88,7.3633 -4.28,9.9101 -5.2,25.4688 -5.67,13.0078 -1.67,-13.7969 1.89,-18.74217 -0.23,-9.89843 -3.97,-4.4805 -6.67,4.9492 -5.77,11.05864 -5.76,83.85156 5.99,18.8086 -11.53,6.9214 -4.29,13.168 -1.42,15.524 -3.03,13.57 -9.59,14.957 -10.31,11.77 -7.69,12.07 -3.73,29.41 -8.95,9.653 -12.29,6.168 -12.36,3.089 -5.56,7.653 -16.06,49.449 -36.17,50.437 -21.17,20.372 -18.83,9.628 -7.71,8.422 -3.14,18.149 0.05,21.652 1.86,19.098 5.24,23.66 6.84,10.723 21.5,11.488 -2.08,16.269 12.75,10.121 31.68,13.899 11.57,15.402 18.56,38.11 11.88,18.488 14.68,8.152 1.25,18.93 -5.62,20.891 -6.27,14.058 -10.13,13.32 -41.92,32.04 -85.17,27.992 -24.67,18.808 10.96,5.371 9.26,6.528 9.75,4.992 25.14,-0.102 6.4,3.082 3.66,8.778 4.64,16.07 2.49,14.973 -5.48,18.648 0.23,17 2.78,12.25 4.99,13.82 6.76,12.571 8.04,8.437 19.28,5.231 70.57,-2.668 5.75,3.211 5.48,1.847 5.8,0.172 4.85,-8.359 4.9,-6.082 37.21,-15.781 11.59,-1.289 -4.04,8.261 8.73,-1.351 7.74,-3.5 6.7,-5.828 5.73,-8.122 -15.49,2.192 -1.17,-8.281 27.74,-27.121 30.64,-10.629 6.92,-6.289 14.15,-20.34 16.29,-10.293 40.58,-6.969 -13.75,12.289 -30.21,10.641 -11.63,12.511 -19.02,30.469 -23.47,25.789 -23.86,19.539 -14.46,7.172 -17.53,4.36 -6.35,3.48 -8.99,12.301 -27.42,12.488 -105.22,7.77 -25.81,-11.071 -6.42,-7.429 -4.14,-6.84 -4.99,-6.36 -8.89,-6.019 -23.48,-3.34 -20.25,-15.051 -15.09,-3.648 -14.88,2.418 -12.8,7.621 -9.77,11.68 -15.22,24.152 -11.04,8.867 -12.4,3.5 -7.07,0.723 -5.81,-0.481 -6.78,-4.301 -3.96,-7.089 -2.14,-6.621 -1.29,-3.09 -21.94,4.019 -65.22,47.692 1.14,7.57 17.01,-5.129 30.15,-20.453 17.58,0.492 15.21,13.258 -4.78,15.863 -12.86,17.18 -9.12,17.328 -6,-2 -2.7,-1.33 -2.63,-2.1 2.47,-8.511 -0.32,-4.579 -5.65,-10.3 -5.61,0.84 3.54,32.41 -6.1,18.35 -28.18,25.01 65.28,26.85 7.91,-1.63 7.36,-4.52 12.24,-4.35 -2.39,-5.91 -0.91,0.08 -3.54,-1.59 4.58,-7.74 8.45,7.33 28.12,10.7 3.47,7.04 -11.17,4.06 -18.49,3.16 -11.6,6.77 9.22,14.65 -11,10.17 -15.46,4.01 -8.66,7.45 9.38,20.22 -8.53,15.99 9.51,6.16 47.31,-4.4 28.56,3.55 15.5,-3.36 -11.78,5.15 -20.68,-0.5 -13.69,2.21 -53.99,31.31 -11.56,3.64 -10.04,0.28 -25.71,-4.59 -28.23,4.26 -7.16,-1.35 -4.97,-3.23 -4.75,-0.1 -6.69,8.26 11.7,0.36 14.42,6.32 13.15,10.85 7.96,14.07 -13.26,-9.75 -10.97,-0.1 -10.94,2.77 -13.26,-1.09 5.94,-2.19 4.25,-2.88 2.38,-4.7 0.54,-7.67 -19.07,2.57 -8.46,3.4 -7.23,7.02 -5.2,-26.3 -11.16,-4.4 -23.55,12.86 -12.74,1.13 -41.29,-7.68 -14.67,0.88 -11.06,2.93 -9.05,6.45 -8.67,11.28 -0.8,4.47 -8.22,23.51 -2.67,1.65 -2.15,6.38 -6.7,4.59 -8.32,2.73 -2.09,1.52 1.35,1.41 0.36,5.49 -12.1,6.9 13.93,7.17 20.47,-3.12 7.61,-24.07 5.18,-0.8 5.05,5.29 4.79,1.78 4.91,-2.55 5.76,-7.69 1.96,7.03 6.72,15.63 9.6,-15.65 18.02,-9.14 20.7,-1.19 17.61,8.1 -4.43,8.42 35.54,36.21 6.57,20.17 -13.47,24.46 -1.05,-6.88 6.02,-8.63 -0.09,-7.29 -5.36,-4.69 -9.62,-1.23 9.49,-9.22 -4.1,-4.8 -3.78,-1.89 -8.77,0.76 -2.93,6.81 -33.81,29.81 15.43,-4.63 14.1,-7.6 -6.86,14.2 -8.06,7.16 -22.5,7.63 9.17,-8.45 -16.64,-5.01 -39.28,1.82 -8.95,-6.5 -8.59,-12.31 -15.84,-4.47 -25.77,-2.18 1.06,6.82 5.18,-0.81 1.29,8.28 -10.08,-0.13 -2.65,-1.46 -3.93,-4.29 -5.1,0.79 -0.79,13.98 1.01,11.41 3.68,8.2 7.22,4.19 -10.67,2.07 -6.98,7.08 -3.37,11.04 0.2,14.06 -5.58,0.87 -0.39,-8.86 1.41,-14.37 -0.18,-7.9 -4.15,-26.47 0.99,-11.6 4.7,-13.24 6.69,-12.47 6.58,-9.07 -3.08,-7.29 -1.68,-3.03 -2.69,-3.98 -1.5,4.28 -5.98,12.35 -6.91,-3.29 -5.64,8.1 -6.26,12.79 -8.63,10.74 2.13,-15.45 -5.32,-6.3 -6.4,4.03 -1.39,15.16 0.09,17.42 -5.25,-0.93 -4.43,-11.87 2.21,-15.44 -10.67,2.41 -4.11,2.29 -4.04,6.01 -25.7,-9.16 -12.11,0.86 -9.52,8.02 5.39,2.32 5.62,3.7 -6.2,7.91 -7.91,6.92 -8.45,0.81 -8.17,-10.78 3.09,-2.19 2.64,-4.27 3.27,-2.72 -14.09,-36.07 -0.81,-32.38 8.41,-27.71 13.59,-22.08 -10.14,2.12 -15.03,6.84 -5.64,-4.09 -4.61,0.72 -4,33.36 0.37,10.28 3.58,11.89 9.96,17.63 4.01,14.61 2.26,26.16 -2.22,20.03 -5.94,15.93 -8.76,13.97 -6.41,5.63 -7.83,4.95 -6.4,5.46 -1.89,7.29 3.96,14.09 13.99,29.58 60.35,17.27 -1.82,6.28 -0.64,6.42 0.55,8.08 1.73,10.94 -3.87,-1.79 -9.33,-2.1 -3.85,-1.79 3.22,23.45 1.7,7.49 -4.65,0.74 -7.74,-10.75 -7.69,3.34 -9.19,6.75 -12.19,-0.52 9.75,-5.73 5.87,-9.25 2.79,-12.58 0.88,-15.77 -3.89,-0.14 -0.98,-0.7 -0.22,-1.84 -1.72,-3.96 -7.89,7.93 -5.89,-3.2 -6.98,-6.2 -11.1,-1.22 2.35,-3.79 5.92,-13.05 -11.25,-3.37 -5.26,-9.8 -4,-9.87 -7.65,-3.51 -4.83,5.3 -18.64,29.53 -18.23,8.57 -31.42,14.24 -19.94,3.94 14.38,3.28 13.07,-3.61 28.19,-15.72 1.1,6.88 -10.77,9.14 -12.6,6.86 -30.92,8.29 1.34,8.25 6.85,-0.34 3.47,1.84 1.8,5.47 1.61,10.21 3.34,3.98 12.44,-4.01 4.83,0.66 13.58,23 8.9,12.14 10.88,6.06 1.33,8.2 -19.37,-16.51 -23.74,-16.03 -24.88,-9.88 -16.3,-1.09 5.19,-4.34 3.96,-5.4 2.59,-6.27 -1.12,-6.94 -63.83,-5.4 -10.07,5.09 -2.32,6.55 -17.55,32.43 -6.94,24.44 -6.73,10.96 -2.44,5.4 -1.46,8.72 -9.31,-5.47 -12.23,2.31 -25.34,10.89 -19.37,2.33 -6.15,1.9 -5.29,4.47 -6.89,11.03 -3.18,2.59 -28.44,3.35 -13.58,7.54 -3.69,16.16 -5.92,4.05 -42.65,-15.35 -9.1,12.55 -15.88,2.32 -17.32,-0.68 -13.37,3.67 -0.35,3.89 -9.8,29 -4.26,6.67 -4.64,5.2 -1.56,7.14 5.31,12.26 -6.43,1.39 -4.32,2.91 -8.2,7.43 -0.32,12.46 -11.28,18.48 -17.63,16.8 -19.06,7.21 2.91,-23.78 -8.29,-15.77 -19.81,-15.62 -14.56,6.74 7.42,-1.86 6.21,0.59 5.24,4.26 4.19,9.33 -9.56,-1.75 -7.49,0.87 -6.08,-1.49 -5.44,-9 -18.1,21.15 -9.19,5.65 -11.89,3.29 -8.11,6.77 -7.34,14.69 -4.26,18.63 0.8,18.44 -10.08,-11.85 1.51,-17.45 7.48,-16.87 7.5,-10.2 -1.19,-6.87 -9.47,0.87 -7.78,-1.37 -7.61,-3.75 -8.87,-6.19 -9.88,26.84 -10.85,-1.13 -4.48,-13.23 9.52,-9.76 -2.84,-3.76 -3.14,-2.99 -1.19,-6.9 20.35,-3.53 -1.43,-8.28 -28.33,-19.27 -12.56,-4.81 -19.3,-2.04 -108.54,24.41 1.87,8.26 1.08,15.75 2.38,6.25 5.13,2.05 7.03,-1.36 6.65,0.4 4.08,7.01 0.95,20.2 -6.24,30.35 -1.84,31.53 -7.66,22.16 -27.3,52.34 -56.61,63.89 -6.67,5.33 -11.12,-4.45 -11.14,-9.5 -10.66,-3.52 -18.29,25.8 -12.38,4.56 -25.4,3.11 -52.92,25.93 5.6,3.03 4.96,6.02 4.35,6.45 5.96,7.31 1.25,3.86 1.62,3.9 3.33,3.51 2.6,-0.33 4.63,-7.67 3.94,-2.51 248.45,10.88 40.19,-20.49 11.75,2.77 4.81,7.36 12.76,29.98 -1.27,13.12 -8.06,15.32 -0.89,8.07 0.65,25.44 -8.16,11.88 -30.17,12.6 -5.18,4.63 -3.71,6.21 -2.14,7.17 -0.53,7.45 -19.71,-3.56 -35,32.22 -21.83,-3.31 -14.27,-17.73 -14.86,-23.48 -16.86,-18.57 -20.33,-3.21 10.72,22.39 5.07,6.71 -6.15,14.22 -2.89,10.16 -0.24,8.52 5.9,12.44 6.66,3.88 3.57,3.82 -3.02,12.3 -8.66,3.95 -44.15,9.81 4.18,11.35 -0.08,11.31 8.95,3.05 6.06,-1.63 5.7,-3.54 7.82,-3.04 9.96,1.69 3.01,7.26 -0.47,8.09 -0.68,4.35 19.47,32.12 10.96,7.3 11.31,-7.97 -17.04,-39.21 18.68,-13.4 66.65,-7.13 6.87,-5.13 4.07,-5.68 4.89,-5.09 9.38,-3.53 9.05,-0.66 36.62,4.02 50.25,-5.39 -5.53,-3.86 -4.98,-1.13 -10.95,1.69 14.24,-8.73 62.73,2.29 1.45,8.3 -23.41,2.42 -7.92,5.76 -0.79,13.68 -8.36,-7.5 -10.73,-1.03 -8.54,5.36 -1.97,11.98 -4.99,-0.54 -31.89,3.45 7.94,8.93 3.56,1.9 6.75,1.56 1.1,4.55 4.23,4.1 8.16,3.93 17.09,13.21 -12.53,2.1 -18.84,-9.31 -12.22,-1.38 1.33,7.56 5.48,-0.97 1.46,8.24 -5.48,0.97 -3.29,-5.06 -5.55,-4.77 -3.59,-4.26 -10.14,6.7 -26.23,-12.06 -17.08,-0.06 2.79,3.82 0.89,0.28 3.08,1.79 -4.18,8.56 -7.27,-5.08 -9.28,-2.95 -10.44,-1 -10.39,0.79 1.23,6.87 51.28,43.62 9.41,5.11 77.85,29.47 -13.8,-1.63 -25.47,-9.13 -15.57,-2.9 -51.29,0.63 -24.64,-5.76 -51.81,-20.98 -37.72,-2.39 -24.03,-7.25 -14.73,0.72 -12.4,5.26 -23.76,15.19 -13.91,4.95 -3.27,-3.16 -1.39,-8.05 -2.75,-7.84 -7.22,-2.44 -37.14,7.11 -9.14,5.63 -4.37,12.51 -0.47,23.87 14.02,-1.09 1.45,14.37 -7.14,32.12 2.71,21 7.57,20.02 11.49,13.66 14.62,1.87 1.25,6.84 -16.19,17.25 13.32,30.65 24.37,30.51 16.71,16.86 6.7,-6.4 7.3,-4.64 -3.93,9.2 13.23,5.95 14.6,2.07 23.24,-1.7 13.56,-6.66 21.84,-18.15 9.68,1 -12.75,26.57 -2.46,16.07 10.71,5.01 32.03,-14.85 13.93,-1.98 -18.62,11.87 3.05,4.18 2.01,3.36 -0.93,3.71 -5.73,5.38 1.25,6.89 57.31,-10.34 17.19,-0.02 26.32,7.27 17.06,-2.53 -8.93,7.98 -4.28,2.21 1.48,8.21 21.52,0.05 22.52,8.37 21.2,4.2 18.91,-4.25 10.51,-18.28 -9.76,-23.48 17.44,-1.14 24.81,9.57 8.11,0.89 8.7,-3.33 15.44,-9.57 9.93,-1.57 1.44,8.21 -13.4,6.49 5.75,10.67 14.86,10.72 13.92,6.7 15.05,3.19 17.63,0.33 16.44,-4.12 11.8,-10.08 5.48,5.88 4.06,-0.88 2.7,-5.78 1.61,-8.71 4.55,-0.8 5.76,4.31 4.18,6.17 1.85,8.17 -1.05,10.62 10.45,0.18 9.55,1.88 17.14,7.04 27.32,3.22 3.92,-4.39 -3.64,-10.21 -4.05,-7.62 -0.06,-5.76 8.01,-4.75 -1.19,-6.92 -5.03,0.86 -1.41,-8.18 6.56,-5.97 3.4,-9.13 -0.74,-11.25 -6.07,-12.45 24.26,17.03 11.63,3.77 13.95,-6.05 -8.33,-5.4 -3.52,-1.05 -1.17,-6.81 6.81,-13.55 19.39,-17.59 7.25,-14.26 6.79,6.62 -4.21,8.49 6.8,6.65 -2.22,7.45 -1.07,9.58 -0.16,23.18 4.55,-0.78 1.24,-6.99 1.69,-3.64 4.81,-7.01 1.43,19.72 5.8,20.87 7.88,11.44 7.82,-8.53 4.04,4.49 2.51,5.11 1.47,5.88 1.01,7.01 7.26,-14.96 12.97,-6.57 34.35,-3.96 7.56,-4.7 14.32,-18.09 7.52,-5.63 9.29,-1.87 27.4,2.8 -3.42,-18.62 17.02,-8.75 21.49,-3.49 11.41,3.98 -2.97,26.8 -0.14,17.51 4.26,7.05 39.33,0.54 -9.47,8.58 -20,35.96 0.02,18.54 8.98,8.2 22.65,6.09 20.72,25.96 5.57,8.54 4.55,-0.76 5.85,-6.62 22.96,-5.3 22.77,-19.14 10.03,-2.54 -4.71,-2.63 -2.43,-2.66 -2.03,-3.37 -3.4,-4.79 16.98,-4.23 9.14,-0.63 7.27,3.21 8.81,7.84 5.61,2.66 65.51,13.1 9.61,5.12 5.02,-0.82 6.58,-2.96 26.21,23.64 11.32,-4.61 2.21,-16.76 -4.04,-21.5 -8.55,-19.12 -11.3,-9.68 -0.03,-5.16 0.43,-3.19 2.62,-7.66 4.88,13.61 7.66,9.63 26.42,23.67 20.44,12.55 7.82,7.25 7.04,-4.78 16.2,14.36 9.71,1.31 8.08,-7.41 3.53,-10.91 -1.38,-11.71 -6.89,-9.99 -1.11,-6.93 8.61,-9.85 -6.92,-8.05 -14.15,-27.33 -6.13,-8.05 -19.12,-18.25 -1.33,-8.24 5.47,-0.88 32.24,45.97 17.69,18.77 11.45,-4.78 8.31,5.01 7.98,0.78 7.35,-3.36 6.35,-7.24 -6.62,-6.69 2.67,-1.49 1.77,-0.22 0.56,-1.44 -0.8,-5.28 -7.38,-0.99 -6.08,-2.37 -13.89,-7.76 -1.12,-6.93 9.5,-1.52 -1.32,-8.25 17.62,-10.22 36.84,-7.75 13.71,-7.71 -2.43,-9.06 -0.99,-6.72 -0.29,-7.58 -8.01,-4.83 -3.23,-1.14 -1.1,-6.92 9.69,-8.71 11.39,-13.66 9.19,-14.79 3.07,-11.81 41.28,-48.83 2.16,-34.27 1.55,-9.31 0.15,-5.86 -2.86,-4.83 -2.43,-5.31 1.48,-7.37 3.1,-3.94 8.78,-6.31 15.59,-16.08 38.81,-27 -3.8,-9.7 -4.22,-7.32 -5.09,-5.72 -6.63,-4.52 8.64,-1.81 6.43,-4.99 5.14,-7.57 4.95,-9.28 8.97,-10.04 3.54,10.01 2.1,16.1 4.28,7.78 28.98,-6.03 12.87,3.35 16.62,13.42 21.64,24.82 6.72,6 8.61,4.9 13.77,2.31 54.35,23.42 12.09,10.03 1.15,7.56 -6.13,1.58 -13.21,9.13 34.19,4.96 15.66,-4.78 4.15,-16.15 20.36,4.68 24.37,11.23 22.04,16.01 13.12,18.6 0.77,-13.18 3.97,-8.98 6.94,-4.44 9.99,0.15 -1.24,-8.25 -6.12,-3.6 -4.13,-5.24 -3.57,-5.93 -4.68,-5.63 -23.92,-19.63 11.45,-12.47 15.15,7.3 17.26,13.35 17.94,5.78 2.64,-6.48 0.12,-26.55 1.62,-6.31 7.77,-5.19 3.46,-10.45 0.8,-12.85 -0.34,-11.96 8.73,3.27 6.56,7.61 4.21,11.08 1.67,13.61 0.78,-16.75 1.85,-14.5 5.59,-7.39 11.99,4.67 1.12,7.56 -2.92,1.49 -5.68,6.81 10.04,11.39 9.58,5.2 8.87,-2.27 7.88,-11.27 -4.12,7.58 -2.83,8.17 -3.65,16.79 34.5,6.67 35.66,-1.52 1.16,-5.32 11.29,-30.97 -0.57,-12.12 2.15,-11.58 5.15,-9.12 8.77,-4.59 -4.78,-10.42 -2.9,-3.88 14.77,-31.64 2.34,-15.47 -6.5,-24.1 8.39,6.86 25.1,11.51 -18.49,17.46 5.26,8.1 -7.91,21.22 -0.23,18.17 5.02,-0.73 2.35,-5.43 2.64,-3.78 7.87,-8.08 -3.49,13.65 -5.63,7.75 -7.3,3.69 -8.38,1.66 -5.9,7.47 -8.83,34.94 -5.07,14.61 3.58,8.61 7,9.16 9.68,6.83 11.68,1.64 3.1,3.17 1.13,7.8 2.51,7.65 7.12,2.59 27.54,-4.01 -3.36,8.86 76.87,4.38 -2.78,-4.57 -0.86,-4.85 1.55,-6.19 4.19,-8.55 -22.58,-27.17 -3.5,-25.93 13.99,-21.32 29.84,-13.1 53.66,-8.41 59.33,0.75 38.09,14.42 12.18,0.98 57.14,-15.69 81.38,6.81 25.53,-13.87 -8.99,20.79 -15.15,10.79 -27.86,6.41 -0.42,-2.51 -4.05,-3.82 -4.26,-1.16 -1.26,5.43 0.1,7.17 -1.61,6.53 -3.31,4.9 -24.23,10.96 -8.39,7.24 -2.96,7.37 -2.46,26.98 -23.9,28.12 -2.45,27.22 3.89,30.72 0.61,26.62 -6.45,18.67 -16.99,7.01 1.17,8.25 10.79,3.27 9.11,8.83 6.79,12.31 13.31,52.24 6.5,10.6 5.06,-10.29 5.78,12.1 1.98,9.71 -2.78,6.82 -8.37,3.46 -2.16,6.79 16.99,63.11 7.04,15.9 10.47,3.97 16.55,-11.03 0.96,6.88 -13,8.65 -16.38,2.36 -14.81,-5.92 -8.12,-16.38 -2.96,-4.14 -4.22,7.19 -3.56,11.79 -1.06,9.61 4.39,26.5 3.28,11.52 4.84,10.83 -10.06,3.53 -2.66,8.9 2.51,12.33 5.48,13.78 7.18,13.54 5.95,6.05 15.65,7.9 -8,8.26 -2.06,-1.29 -4.37,-4.93 -3.72,18.47 -1.92,21.6 -0.08,22.11 1.71,20.21 7.17,9.8 13.35,-0.9 25.1,-11.49 0.97,6.88 -14.77,6.87 -17.47,11.71 -15.44,2.6 -8.73,-20.22 -9.59,15.22 -6.21,42.62 -8.88,14.48 5.48,4.36 2.17,1.27 3.47,1.26 -18.41,19.41 -7.08,13.58 -3.06,18.1 14.87,-2.13 0.98,6.88 -6.18,24.03 -5.43,0.78 -8.67,-18.34 -12.15,10.57 -13.64,20.21 -13.17,10.62 3.12,7.32 1.75,3.09 2.81,3.92 -10.42,-1.07 -10.2,-2.91 -8.61,0.37 -5.88,8.69 -0.08,14.75 8.21,37.35 1.75,16.01 -0.95,7.92 -2.03,7.54 -7.73,20.78 -0.19,5.53 0.32,5.8 -1.33,8.97 -5.32,12.88 -15.35,25.59 -2.84,7.14 6.85,14.79 23.07,15.71 6.22,10.55 8.35,34.3 2.49,18.35 -3.03,16.53 -3.99,13.22 -2.45,11.35 -5.3,8.62 -22.5,7.98 -29.58,18.04 9.54,25.34 1.02,16.7 4.38,8.08 19.71,-0.39 6.45,-3.35 12.7,-12.45 8.07,-3.64 20.57,0.03 6.66,-4.01 2.8,-5.26 0.72,-13.8 2.39,-5.73 3.2,-1.46 8.13,0.34 3.46,-1.03 14.97,-7.67 46.63,-14.17 51.07,-26.16 11.54,-0.78 0.01,-2.57 -0.55,-5.47 1.01,-5.7 4.86,-3.15 7.05,1.51 11.37,9.48 8.15,1.35 8.24,-2.63 14.09,-7.9 8.55,-1.56 13.03,3.88 12.74,9.13 22.07,22.65 11.57,6.49 34.6,5.72 13.29,-0.52 84.16,-27.82 5.41,-4.14 1.78,-8.24 0.99,-18.94 11.14,-35.75 0.52,-19.68 -20.09,-10.67 -4.6,-9.93 -3.22,-10.18 -3.52,-4.36 -16.03,1.86 -6.65,-1.42 -5.31,-4.93 -7.21,-25.74 6.07,-23.15 9.76,-21.26 6.53,-32.08 45.54,-77.23 4.71,-17.68 -0.84,-24.58 -3.12,-12.01 -4.39,-8.16 -4.04,-5.28 -1.95,-3.18 0.82,-11.61 6.03,0.05 8.51,3.98 8.33,0.15 6.84,-7.7 4.43,-8.65 7.11,-5.52 14.68,1.99 1.02,7.5 -6.11,12.09 7.4,14.41 13.94,11.83 13.32,4.15 94.75,-17.83 81.36,-44.17 123.19,-23.79 29.78,-13.21 17.64,-4.07 28.26,11.12 17.15,-6.32 29.44,-17.77 49.49,-6.25 12.06,-6.93 20.14,-17.26 35.39,-13.03 62.85,-49.68 20.52,14.53 119.62,13.5 35.77,11.98 21.97,15.23 17.11,2.49 7.09,4.5 20.53,25.12 52.26,29.16 184.9,19.98 35.26,13.22 15.3,10.86 13.92,15.26 -55.08,-26.53 -60.68,-1.73 -58.87,15.16 -49.71,23.74 -14.75,1.74 -12.57,2.53 -15.93,7.36 -13.38,10.37 -4.88,11.51 -1.53,6.93 -9.38,8.15 -1.13,9.73 2.26,11.95 3.15,7.82 45.12,63.65 40.48,94.28 12.31,11.63 39.33,24.72 7.83,-0.75 8.1,6.26 98.99,32.46 8.41,9.61 96.14,43.58 25.71,4.75 30.38,16.19 58.36,14.29 61.65,-7.73 305.32,63.52 18.93,12.17 17.87,4.21 31.78,28.7 101.01,65.51 42.4,42.8 9.2,6.19 7.02,8.91 22.02,57.11 27.56,30.43 24.84,0.8 67.12,-41.51 7.05,-0.12 6.48,5.38 0.76,7.63 -7.42,0.21 -4.69,2.21 -3.2,5.18 -3.14,8.83 14.65,-1.45 0.82,8.26 -13.82,1.6 -13.81,6.18 -10.24,9.88 -3.32,12.91 -5.49,14.97 -28.89,17.85 -6,9.82 4.7,35.62 10.38,42.65 17.59,28.19 26.65,-8.4 0.7,6.94 -36.07,34.91 0.77,7.63 16.67,36.16 5.83,52.15 8.13,44.78 23.69,14.55 -16.19,31.41 -2.32,15.82 2.25,52.39 -2.58,48.18 1.96,23.04 5.48,19.33 19.35,42.38 9.65,15.54 5.98,20.67 -1.95,25.92 -7.28,42.11 0.04,15.58 0.35,5.65 18.5,11.92 6.28,1.92 14.73,-0.09 13.93,3.71 12.9,10.99 23.27,26.19 23.56,18.28 140.06,45.56 12.2,-3.78 25.4,11.81 113.76,3.52 123.68,28.33 7.74,3.28 5.95,0.45 41.48,-8.94 58.41,9.89 29.67,10.78 11,6.49 7.29,-22.89 0.98,-3.08 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7219" /><path
+               id="path3176" /><path
                d="m 3011.49,700.031 0,0 206.9,-127.351 0,-0.059 5.79,-26.152 22.51,-33.379 28.13,-12.59 21.73,-18.828 -0.23,-47.102 -7.19,-16.941 -28.96,-37.188 -3.44,-9.992 -3.75,-19.617 -2.83,-7.66 -25.55,-31.25 -24.03,-41.352 -12.37,-21.269 -12.83,-37.559 -1.56,-37.422 5.91,-18.34 8.33,-15.968 6.46,-17.762 0.55,-23.7188 -7.12,-14.8593 -11.54,-12.0235 -8.79,-11.9687 0.93,-10.3594 17.14,-4.9492 46.44,-7.4102 15.58,5.0899 14.24,-3.6602 39.76,5.2578 12.73,-1.8164 143.98,-43.85153 -1.12,-12.67967 3.25,-2.7188 4.71,0.4297 2.94,-3.4219 0.08,-6.539 -3.03,-10.6602 -1.6,-26.0898 -2.3,-12 1.37,-10.4102 9.83,-13.6211 19.05,-14.2575 81.79,-25.282 29.82,-27.609 17.31,-9.699 33.08,-10.113 15.76,-0.379 19.62,5.89 32.99,17.41 7.63,11.461 1.91,8.528 0.49,9.371 3.4,14.129 11.26,19.672 12.32,2.4996 14.85,-3.6406 18.95,1.199 0.05,20.7619 12.87,25.7188 18.81,22.3203 21.86,13.0391 4.15,0.9101 4.26,-0.7578 4.06,-2.5391 0.07,0 0.01,-0.1718 8.01,-8.3008 16.33,-25.2695 26.25,-20.0899 6.92,-7.9687 4.44,-18.6716 -8.75,-37.93 2.25,-23.691 -3.35,-35.848 -2.58,-10.039 -4.36,-7.141 -16.28,-20.351 1.72,-16.508 5.74,-16.07 2.17,-15.262 -8.98,-14.211 -12.8,-8.527 -2.9,-10.223 0.93,-12.649 -1.37,-15.789 -7.12,-13.25 -8.16,-8.043 -3.45,-10.628 6.77,-21.129 14.12,-15.84 32.66,-2.922 16.23,-13.137 6.17,-21.312 -0.02,-28.688 -5.59,-27.652 -10.37,-17.942 -13.82,-2.918 -55.17,13.469 -26.66,-2.969 -9.85,1.442 -8.7,3.848 -4.92,5.031 -4.13,5.531 -6.11,5.238 -31.77,10.352 -3.59,12.008 3.83,22.89 -1.7,12.52 -12.34,9.801 -19.69,-0.469 -72.19,-21.922 -7.3,-4.148 -3.21,-8.262 -8.93,-36.36 -6.22,-8.589 -16.34,-16.762 -6.45,-9.957 -0.93,-7.992 0.16,-24.41 -3.17,-11.872 1.08,-10.269 1.93,-8.039 3.81,-6.18 6.73,-4.449 -13.27,-23.199 12.26,-14.891 22.67,-8.48 34.48,-6.192 13.34,-5.148 5.82,-12.262 -5.45,-24.32 -5.46,-7.539 -15.94,-14.7 -5.65,-10.878 -3.69,-15.09 -0.34,-10.172 3.24,-9.32 7.17,-12.301 32.22,-31.879 10.16,-19.668 -9.8,-21.391 -21.33,-13.859 -32.34,-12.793 -25.52,0.18 -0.97,25.082 -8.05,18.789 -30.76,26.601 -11.5,15.129 -5.31,24.281 -0.59,21.989 -5.31,18.031 -19.39,12.398 -15.87,3.922 -14.96,0.949 -33.48,-6.152 -50.93,-26.828 -15.94,-5.348 -9.88,2.028 -18.88,11.129 -8.27,0.132 -8.26,-9.519 -1.4,-12.703 1.3,-12.598 -0.24,-8.762 -11.63,-16.41 -14.44,-5.98 -88.29,0.351 -17.95,6.422 -16.39,10.969 -9.88,13.43 -15.6,39.988 -6.87,5.582 -17.07,9.348 -5.59,5.421 -1.55,6.219 1.02,16.953 -5.2,106.539 -2.5,6.969 -6.02,-1.379 -12.32,-9.199 -5.2,-7.121 -2.66,-7.91 -3.69,-6.68 -8.32,-3.371 -5.8,2.5 -19.68,18.57 -0.62,13.75 -15.25,3.981 -37.33,-4.731 -14.63,-13.66 -13.24,-26.808 -5.95,-27.231 7.43,-14.992 10.27,-7.059 1.55,-11.14 -1.94,-14.008 0.13,-15.883 10.47,-39.379 1.08,-14.301 -4.69,-24.468 -22.38,-47.161 -11.36,-39.832 -6.98,-11.269 -8.9,-8.348 -9.24,-4.383 -8.36,-6.226 -4.28,-11.031 -3.56,-12.809 -6.04,-11.5 -56.04,-37.98 -14.27,-21.432 -3.02,-14.36 1.7,-25.03 -2.47,-13.67 -6.15,-10.4 -7.35,-4.31 -16.94,-5.35 -19.83,-15.33 -3.36,-12.63 13.76,-38.7 -25.45,-23.48 -1.68,-2.76 -0.57,-2.87 0.56,-2.81 1.69,-2.82 8.32,-8.44 6.41,-20.21 7.05,-10.45 7.54,-4.3 16.91,-3.38 7.29,-4.65 8.84,-18.42 -2.96,-18.9 -19.31,-37.61 -24.79,-30.44 -23.37,4.37 -25.44,11.32 -30.75,-9.32 2.91,17.1 4.67,13.2 3.14,13.78 -1.26,19.23 -4.31,14.53 -6.48,14.54 -13.43,23.96 -7.58,17.75 -5.04,7.07 -5.2,4.09 -44.39,23.92 -11.83,4.22 -13.29,0.9 1.29,2.98 2.98,5.33 13.69,31.2 22.22,26.88 11.49,26.04 -19.6,25.99 -11.66,4.11 -23.73,-0.51 -12.38,1.76 -5.9,4.04 -5.63,10.41 -6.38,2.38 -4.81,-2.22 -12.02,-10.58 -5.52,-3.08 -13.58,0.74 -35.93,21.17 -14.91,5.24 -7.49,3.88 -48.37,72.269 -21.79,22.641 -21.22,10.871 -20.11,8.23 -14.11,11.809 -8.32,17.922 -2.83,27.129 2.84,28.57 12.9,57.469 2.85,32 -0.16,33.531 -3,25.121 -10.45,15.348 -22.04,4.039 -42.86,-8.879 -20.98,-11.188 -16.51,-17.203 -6.56,-14.039 2.9,-4.73 5.05,-3.918 0.22,-11.262 -4.7,-10.121 -7.72,-9.09 -8.88,-6.668 -21.89,-10.82 -38.36,-49.582 -16.03,-10.918 -33.52,-7.102 -16.72,-7.508 -15.22,-15.101 -7.85,-10.77 -3.38,-9.32 2.66,-4.328 17.83,-15.891 22.3,-44.23 1.71,-40.789 -17.16,-35.821 -34.12,-28.891 -8.42,-2.72 -16,-1.53 -7.82,-5.88 -5.65,-11.35 -1.84,-12.73 -0.23,-12.46 -4.47,-31.58 -1.47,-2.22 -7.73,-16.45 -0.59,-2.4 -9.84,-12.45 -5.58,-4.53 -7.47,-2.2 -55.08,-11.66 -20.78,-14.13 -18.51,-34.07 -2.57,-11.39 0.56,-5.81 -1.9,-3.71 -9.78,-5.14 -4.48,0.3 -13.8,4.45 -21.33,-0.08 -37.05,14.19 -7.63,-0.74 -5.89,-2.66 -6.51,-1.45 -9.49,3.43 -1.07,2.83 -14.23,21.49 -11.44,10.99 -12.05,7.21 -78.59,21.14 -13.1,-6.47 -7.76,-12.5 -8.69,-10.92 -16.3,-1.76 -23.26,-9.54 -46.5,-32.63 -25.02,-8.22 -58.15,7.43 -10.25,-3.29 -22.1,-13.01 -48.31,-18.57 -23.52,-3.82 -25.36,0.13 -23.7,5.44 -17.78,11.23 -33.84,39.78 -5.14,9.09 -3.89,11.3 -4.94,20.46 -8.31,23.31 -2.5,11.9 -3.7,2.62 -50.87,60.48 -17.38,8.22 -6.55,-2.47 -5.67,-5.54 -6.04,-4.32 -7.32,1.23 -6.66,5.35 -0.39,3.46 1.73,4.61 -0.09,8.62 1.15,1.06 0.07,11.61 -1.06,11.06 -2.19,-1.04 3.67,5.65 6.44,7.41 5.66,8.351 1.03,8.481 -11.51,11.738 -61.11,15.238 -6.18,18.852 8.17,37.871 14.51,39.418 28.79,52.352 -16.68,30.629 -26.49,29.73 -14,25.789 4.5,12.723 20.94,23.199 6.01,18.449 -1.08,21.121 -6.84,11.219 -11.43,6.07 -113.571,32.95 -51.141,3.199 -49.507,-8.207 -66.969,-42.782 -25.152,-5.55 -25.301,-0.328 -23.938,-6.86 -25.703,-20.762 -22.937,-28.21 -17,-21.481 -4.672,-15.008 2.793,-11.191 6.429,-19.141 0.239,-4.488 6.761,-18.629 3.098,-4.832 7.902,-4.469 13.11,5.469 5.328,-2.539 3.109,-25.742 -20.648,-20.387 -50.5,-30.941 -41.051,-44.7 -25.527,-11.953 -25.832,12.672 -35.25,-0.07 -35.352,-7 -19.027,-10.371 11.219,23.722 6.332,10.969 2.757,9.442 -12.988,17.628 -7.473,15.52 3.383,13.27 19.27,11.23 47.07,20.879 1.289,0.351 1.281,0.071 1.43,-0.172 5.981,-2.18 4.597,-0.738 4.492,0.348 17.161,4.652 3.617,7.289 -0.34,10.301 0.84,11.988 6.64,31.262 2.871,8.578 26.918,54.781 -0.589,12.332 -8.77,17.16 -10.84,12.59 -40.519,26.988 9.129,8.11 1.703,7.269 -1.313,7.582 0.321,8.469 -0.43,3.442 -1.66,4.66 -1.469,5.289 0.211,5.679 3.269,6.661 9.079,9.089 28.41,44.84 28.351,33.231 -17.793,21.41 -1.84,14.719 10.793,13.121 106.25,90.508 55.789,28.179 7.801,6.153 20.899,22.031 25.789,12.59 8.25,5.738 8.961,10.512 3.218,9.117 0.301,18.762 -5.48,6.449 -3.84,5.582 -1.918,6.328 1.277,5.359 13.16,35.762 5.602,9.379 4.602,10.492 1.757,15.348 -2.039,12.359 -9.531,19.692 -2.82,10.1481 12.609,38.6211 37.57,20.1718 82.633,23.15628 51.889,37.08202 18.09,24.5508 -8.49,20.8789 10.72,17.3594 7.35,6.8203 19.26,6.2813 3.03,6.98 2.88,1.868 11.06,5.312 -0.39,19.039 22.96,7.27 50.96,44.55 15.07,23.372 22.61,22.058 52.4,36.328 -2.32,27.641 5.44,22.672 14.6,14.281 6.9,0.68 4.1,1.5 11.4,14.617 8.01,4.422 7.78,1.929 7.22,4.36 6.17,12.058 -7.6,11.481 -11.06,10.57 -11,9.442 -14.07,-6.332 -90.06,-6.45 4.13,14.11 9.84,17.121 11.55,14.281 19.72,10.91 1.73,20.93 19.92,3.891 12.42,6.75 11.47,9.269 5.93,9.211 -3.32,13.328 -7.39,15.57 -1.55,12.418 14.13,3.911 6.83,5.089 6.81,1.571 6.81,-1.918 6.72,-5.43 19.46,-3.34 37.69,5.617 17.66,-4.128 9.67,-5.891 10,-1.848 20.53,1.578 -14.45,-31.199 3.86,-18.25 16.13,-10.211 21.97,-7.461 3.07,-2.558 2.01,-4.039 2.95,-4.09 5.79,-2.61 5.09,0.918 28.8,11.77 20.05,3.762 52.32,-3.36 21.14,8.008 15.28,19.172 2.63,10.34 -1.12,6.289 -3.56,5.269 -2.44,2.75 -3.67,6.942 0.06,6.828 8.85,2.41 11.6,-4.309 9.68,-6.46 9.7,-1.629 11.73,10.168 1.36,1.839 1.07,3.141 0.14,2.902 -0.72,2.797 -5.23,7.66 -1.54,4.512 1.08,3.481 4.4,2.269 7.75,-1.82 6.11,1.902 3.39,6.278 -0.02,11.121 -2.57,-0.012 -12.34,9.832 -1.77,0.777 33.33,26.25 18.22,9.711 26.83,8.93 1.11,0.953 37.65,10.59 17.05,1.476 -10.35,-27.648 -8.14,-7.59 -19.67,0.531 38.52,-21.25 16.52,-2.492 62.89,11.981 14.28,7.808 12.19,14.153 14.01,21.179 10.49,-5.558 48.44,-3.641 4.52,-4.832 2.26,-10.449 1.33,-10.449 1.96,-4.743 97.88,-1.289 33.91,7.18 7.37,4.883 3.39,4.777 3.1,5.602 6.46,7.25 6.19,4.687 16.41,8.641 13.8,3.949 5.18,5.383 3.79,5.379 3.91,2.492 40.61,6.418 13.59,-0.078 19.44,-6.152 8.69,-1 3.99,-4.86 3.94,-10.75 5.19,-10.762 7.34,-4.886 28.46,-7.832 48.1,-0.66 23.19,3.73 0.97,5.281 8.91,18.949 23.1,15.059 22.53,2.16 11.51,-10.929 8.84,-15.098 8.26,-10.274 10.12,3.332 4.94,8.559 0.9,8.332 -0.35,7.899 0.98,7.57 -0.29,3.82 -1.77,4.352 -1.21,5.058 1.74,6.129 2.73,2.34 3.97,1.481 3.26,0.089 0.69,-1.781 0.43,-6.84 4.88,-2.488 4.4,26.309 -6.83,0.703 -12,5 -10.46,1.84 -36.51,-5.993 -11.29,-5.589 -10.45,-7.372 -11.14,-5.668 -13.36,-0.48 -15.46,8.949 -19.14,14.821 -3.72,0.601 -11.76,4.43 4.91,12 -1.79,9.488 -3.12,8.152 0.92,8.2 7.43,8.359 19.07,10.281 8.04,7.41 5.82,22.188 3.54,8.07 10.25,14.86 5.91,3.461 8.37,-0.282 40.39,7.782 11.34,5.679 -6.86,17.563 11.96,6.758 18.64,-1.129 13.82,-6.34 1.12,-8.102 0.63,-14.359 2.56,-13.508 7.33,-5.531 9.32,6.051 3.99,24.207 6.85,7.101 9.66,-3.262 7.15,-10.976 5.83,-12.891 5.54,-8.871 7.74,-1.781 8.29,1.691 7.36,-1.461 4.91,-11.25 -2.03,-4.179 -10.05,-14.989 -2.51,-7.25 3.15,-9.089 5.94,-7.403 1.83,-8.48 1.44,-7.239 39.63,0.442 -6.1,6.879 6.81,21.781 20.15,-0.98 24.46,-14.332 19.35,-18.391 -13.81,-3.18 0.06,-7.73 11.15,-11.188 21.78,-16.32 18.38,-4.852 29.42,2.762 27.32,8.711 11.95,12.977 14.2,5.632 83.72,-9.339 41.51,0.078 10.2,-15.852 28.09,0.113 29.21,-6.66 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3011.49,700.031 0,0 206.9,-127.351 0,-0.059 5.79,-26.152 22.51,-33.379 28.13,-12.59 21.73,-18.828 -0.23,-47.102 -7.19,-16.941 -28.96,-37.188 -3.44,-9.992 -3.75,-19.617 -2.83,-7.66 -25.55,-31.25 -24.03,-41.352 -12.37,-21.269 -12.83,-37.559 -1.56,-37.422 5.91,-18.34 8.33,-15.968 6.46,-17.762 0.55,-23.7188 -7.12,-14.8593 -11.54,-12.0235 -8.79,-11.9687 0.93,-10.3594 17.14,-4.9492 46.44,-7.4102 15.58,5.0899 14.24,-3.6602 39.76,5.2578 12.73,-1.8164 143.98,-43.85153 -1.12,-12.67967 3.25,-2.7188 4.71,0.4297 2.94,-3.4219 0.08,-6.539 -3.03,-10.6602 -1.6,-26.0898 -2.3,-12 1.37,-10.4102 9.83,-13.6211 19.05,-14.2575 81.79,-25.282 29.82,-27.609 17.31,-9.699 33.08,-10.113 15.76,-0.379 19.62,5.89 32.99,17.41 7.63,11.461 1.91,8.528 0.49,9.371 3.4,14.129 11.26,19.672 12.32,2.4996 14.85,-3.6406 18.95,1.199 0.05,20.7619 12.87,25.7188 18.81,22.3203 21.86,13.0391 4.15,0.9101 4.26,-0.7578 4.06,-2.5391 0.07,0 0.01,-0.1718 8.01,-8.3008 16.33,-25.2695 26.25,-20.0899 6.92,-7.9687 4.44,-18.6716 -8.75,-37.93 2.25,-23.691 -3.35,-35.848 -2.58,-10.039 -4.36,-7.141 -16.28,-20.351 1.72,-16.508 5.74,-16.07 2.17,-15.262 -8.98,-14.211 -12.8,-8.527 -2.9,-10.223 0.93,-12.649 -1.37,-15.789 -7.12,-13.25 -8.16,-8.043 -3.45,-10.628 6.77,-21.129 14.12,-15.84 32.66,-2.922 16.23,-13.137 6.17,-21.312 -0.02,-28.688 -5.59,-27.652 -10.37,-17.942 -13.82,-2.918 -55.17,13.469 -26.66,-2.969 -9.85,1.442 -8.7,3.848 -4.92,5.031 -4.13,5.531 -6.11,5.238 -31.77,10.352 -3.59,12.008 3.83,22.89 -1.7,12.52 -12.34,9.801 -19.69,-0.469 -72.19,-21.922 -7.3,-4.148 -3.21,-8.262 -8.93,-36.36 -6.22,-8.589 -16.34,-16.762 -6.45,-9.957 -0.93,-7.992 0.16,-24.41 -3.17,-11.872 1.08,-10.269 1.93,-8.039 3.81,-6.18 6.73,-4.449 -13.27,-23.199 12.26,-14.891 22.67,-8.48 34.48,-6.192 13.34,-5.148 5.82,-12.262 -5.45,-24.32 -5.46,-7.539 -15.94,-14.7 -5.65,-10.878 -3.69,-15.09 -0.34,-10.172 3.24,-9.32 7.17,-12.301 32.22,-31.879 10.16,-19.668 -9.8,-21.391 -21.33,-13.859 -32.34,-12.793 -25.52,0.18 -0.97,25.082 -8.05,18.789 -30.76,26.601 -11.5,15.129 -5.31,24.281 -0.59,21.989 -5.31,18.031 -19.39,12.398 -15.87,3.922 -14.96,0.949 -33.48,-6.152 -50.93,-26.828 -15.94,-5.348 -9.88,2.028 -18.88,11.129 -8.27,0.132 -8.26,-9.519 -1.4,-12.703 1.3,-12.598 -0.24,-8.762 -11.63,-16.41 -14.44,-5.98 -88.29,0.351 -17.95,6.422 -16.39,10.969 -9.88,13.43 -15.6,39.988 -6.87,5.582 -17.07,9.348 -5.59,5.421 -1.55,6.219 1.02,16.953 -5.2,106.539 -2.5,6.969 -6.02,-1.379 -12.32,-9.199 -5.2,-7.121 -2.66,-7.91 -3.69,-6.68 -8.32,-3.371 -5.8,2.5 -19.68,18.57 -0.62,13.75 -15.25,3.981 -37.33,-4.731 -14.63,-13.66 -13.24,-26.808 -5.95,-27.231 7.43,-14.992 10.27,-7.059 1.55,-11.14 -1.94,-14.008 0.13,-15.883 10.47,-39.379 1.08,-14.301 -4.69,-24.468 -22.38,-47.161 -11.36,-39.832 -6.98,-11.269 -8.9,-8.348 -9.24,-4.383 -8.36,-6.226 -4.28,-11.031 -3.56,-12.809 -6.04,-11.5 -56.04,-37.98 -14.27,-21.432 -3.02,-14.36 1.7,-25.03 -2.47,-13.67 -6.15,-10.4 -7.35,-4.31 -16.94,-5.35 -19.83,-15.33 -3.36,-12.63 13.76,-38.7 -25.45,-23.48 -1.68,-2.76 -0.57,-2.87 0.56,-2.81 1.69,-2.82 8.32,-8.44 6.41,-20.21 7.05,-10.45 7.54,-4.3 16.91,-3.38 7.29,-4.65 8.84,-18.42 -2.96,-18.9 -19.31,-37.61 -24.79,-30.44 -23.37,4.37 -25.44,11.32 -30.75,-9.32 2.91,17.1 4.67,13.2 3.14,13.78 -1.26,19.23 -4.31,14.53 -6.48,14.54 -13.43,23.96 -7.58,17.75 -5.04,7.07 -5.2,4.09 -44.39,23.92 -11.83,4.22 -13.29,0.9 1.29,2.98 2.98,5.33 13.69,31.2 22.22,26.88 11.49,26.04 -19.6,25.99 -11.66,4.11 -23.73,-0.51 -12.38,1.76 -5.9,4.04 -5.63,10.41 -6.38,2.38 -4.81,-2.22 -12.02,-10.58 -5.52,-3.08 -13.58,0.74 -35.93,21.17 -14.91,5.24 -7.49,3.88 -48.37,72.269 -21.79,22.641 -21.22,10.871 -20.11,8.23 -14.11,11.809 -8.32,17.922 -2.83,27.129 2.84,28.57 12.9,57.469 2.85,32 -0.16,33.531 -3,25.121 -10.45,15.348 -22.04,4.039 -42.86,-8.879 -20.98,-11.188 -16.51,-17.203 -6.56,-14.039 2.9,-4.73 5.05,-3.918 0.22,-11.262 -4.7,-10.121 -7.72,-9.09 -8.88,-6.668 -21.89,-10.82 -38.36,-49.582 -16.03,-10.918 -33.52,-7.102 -16.72,-7.508 -15.22,-15.101 -7.85,-10.77 -3.38,-9.32 2.66,-4.328 17.83,-15.891 22.3,-44.23 1.71,-40.789 -17.16,-35.821 -34.12,-28.891 -8.42,-2.72 -16,-1.53 -7.82,-5.88 -5.65,-11.35 -1.84,-12.73 -0.23,-12.46 -4.47,-31.58 -1.47,-2.22 -7.73,-16.45 -0.59,-2.4 -9.84,-12.45 -5.58,-4.53 -7.47,-2.2 -55.08,-11.66 -20.78,-14.13 -18.51,-34.07 -2.57,-11.39 0.56,-5.81 -1.9,-3.71 -9.78,-5.14 -4.48,0.3 -13.8,4.45 -21.33,-0.08 -37.05,14.19 -7.63,-0.74 -5.89,-2.66 -6.51,-1.45 -9.49,3.43 -1.07,2.83 -14.23,21.49 -11.44,10.99 -12.05,7.21 -78.59,21.14 -13.1,-6.47 -7.76,-12.5 -8.69,-10.92 -16.3,-1.76 -23.26,-9.54 -46.5,-32.63 -25.02,-8.22 -58.15,7.43 -10.25,-3.29 -22.1,-13.01 -48.31,-18.57 -23.52,-3.82 -25.36,0.13 -23.7,5.44 -17.78,11.23 -33.84,39.78 -5.14,9.09 -3.89,11.3 -4.94,20.46 -8.31,23.31 -2.5,11.9 -3.7,2.62 -50.87,60.48 -17.38,8.22 -6.55,-2.47 -5.67,-5.54 -6.04,-4.32 -7.32,1.23 -6.66,5.35 -0.39,3.46 1.73,4.61 -0.09,8.62 1.15,1.06 0.07,11.61 -1.06,11.06 -2.19,-1.04 3.67,5.65 6.44,7.41 5.66,8.351 1.03,8.481 -11.51,11.738 -61.11,15.238 -6.18,18.852 8.17,37.871 14.51,39.418 28.79,52.352 -16.68,30.629 -26.49,29.73 -14,25.789 4.5,12.723 20.94,23.199 6.01,18.449 -1.08,21.121 -6.84,11.219 -11.43,6.07 -113.571,32.95 -51.141,3.199 -49.507,-8.207 -66.969,-42.782 -25.152,-5.55 -25.301,-0.328 -23.938,-6.86 -25.703,-20.762 -22.937,-28.21 -17,-21.481 -4.672,-15.008 2.793,-11.191 6.429,-19.141 0.239,-4.488 6.761,-18.629 3.098,-4.832 7.902,-4.469 13.11,5.469 5.328,-2.539 3.109,-25.742 -20.648,-20.387 -50.5,-30.941 -41.051,-44.7 -25.527,-11.953 -25.832,12.672 -35.25,-0.07 -35.352,-7 -19.027,-10.371 11.219,23.722 6.332,10.969 2.757,9.442 -12.988,17.628 -7.473,15.52 3.383,13.27 19.27,11.23 47.07,20.879 1.289,0.351 1.281,0.071 1.43,-0.172 5.981,-2.18 4.597,-0.738 4.492,0.348 17.161,4.652 3.617,7.289 -0.34,10.301 0.84,11.988 6.64,31.262 2.871,8.578 26.918,54.781 -0.589,12.332 -8.77,17.16 -10.84,12.59 -40.519,26.988 9.129,8.11 1.703,7.269 -1.313,7.582 0.321,8.469 -0.43,3.442 -1.66,4.66 -1.469,5.289 0.211,5.679 3.269,6.661 9.079,9.089 28.41,44.84 28.351,33.231 -17.793,21.41 -1.84,14.719 10.793,13.121 106.25,90.508 55.789,28.179 7.801,6.153 20.899,22.031 25.789,12.59 8.25,5.738 8.961,10.512 3.218,9.117 0.301,18.762 -5.48,6.449 -3.84,5.582 -1.918,6.328 1.277,5.359 13.16,35.762 5.602,9.379 4.602,10.492 1.757,15.348 -2.039,12.359 -9.531,19.692 -2.82,10.1481 12.609,38.6211 37.57,20.1718 82.633,23.15628 51.889,37.08202 18.09,24.5508 -8.49,20.8789 10.72,17.3594 7.35,6.8203 19.26,6.2813 3.03,6.98 2.88,1.868 11.06,5.312 -0.39,19.039 22.96,7.27 50.96,44.55 15.07,23.372 22.61,22.058 52.4,36.328 -2.32,27.641 5.44,22.672 14.6,14.281 6.9,0.68 4.1,1.5 11.4,14.617 8.01,4.422 7.78,1.929 7.22,4.36 6.17,12.058 -7.6,11.481 -11.06,10.57 -11,9.442 -14.07,-6.332 -90.06,-6.45 4.13,14.11 9.84,17.121 11.55,14.281 19.72,10.91 1.73,20.93 19.92,3.891 12.42,6.75 11.47,9.269 5.93,9.211 -3.32,13.328 -7.39,15.57 -1.55,12.418 14.13,3.911 6.83,5.089 6.81,1.571 6.81,-1.918 6.72,-5.43 19.46,-3.34 37.69,5.617 17.66,-4.128 9.67,-5.891 10,-1.848 20.53,1.578 -14.45,-31.199 3.86,-18.25 16.13,-10.211 21.97,-7.461 3.07,-2.558 2.01,-4.039 2.95,-4.09 5.79,-2.61 5.09,0.918 28.8,11.77 20.05,3.762 52.32,-3.36 21.14,8.008 15.28,19.172 2.63,10.34 -1.12,6.289 -3.56,5.269 -2.44,2.75 -3.67,6.942 0.06,6.828 8.85,2.41 11.6,-4.309 9.68,-6.46 9.7,-1.629 11.73,10.168 1.36,1.839 1.07,3.141 0.14,2.902 -0.72,2.797 -5.23,7.66 -1.54,4.512 1.08,3.481 4.4,2.269 7.75,-1.82 6.11,1.902 3.39,6.278 -0.02,11.121 -2.57,-0.012 -12.34,9.832 -1.77,0.777 33.33,26.25 18.22,9.711 26.83,8.93 1.11,0.953 37.65,10.59 17.05,1.476 -10.35,-27.648 -8.14,-7.59 -19.67,0.531 38.52,-21.25 16.52,-2.492 62.89,11.981 14.28,7.808 12.19,14.153 14.01,21.179 10.49,-5.558 48.44,-3.641 4.52,-4.832 2.26,-10.449 1.33,-10.449 1.96,-4.743 97.88,-1.289 33.91,7.18 7.37,4.883 3.39,4.777 3.1,5.602 6.46,7.25 6.19,4.687 16.41,8.641 13.8,3.949 5.18,5.383 3.79,5.379 3.91,2.492 40.61,6.418 13.59,-0.078 19.44,-6.152 8.69,-1 3.99,-4.86 3.94,-10.75 5.19,-10.762 7.34,-4.886 28.46,-7.832 48.1,-0.66 23.19,3.73 0.97,5.281 8.91,18.949 23.1,15.059 22.53,2.16 11.51,-10.929 8.84,-15.098 8.26,-10.274 10.12,3.332 4.94,8.559 0.9,8.332 -0.35,7.899 0.98,7.57 -0.29,3.82 -1.77,4.352 -1.21,5.058 1.74,6.129 2.73,2.34 3.97,1.481 3.26,0.089 0.69,-1.781 0.43,-6.84 4.88,-2.488 4.4,26.309 -6.83,0.703 -12,5 -10.46,1.84 -36.51,-5.993 -11.29,-5.589 -10.45,-7.372 -11.14,-5.668 -13.36,-0.48 -15.46,8.949 -19.14,14.821 -3.72,0.601 -11.76,4.43 4.91,12 -1.79,9.488 -3.12,8.152 0.92,8.2 7.43,8.359 19.07,10.281 8.04,7.41 5.82,22.188 3.54,8.07 10.25,14.86 5.91,3.461 8.37,-0.282 40.39,7.782 11.34,5.679 -6.86,17.563 11.96,6.758 18.64,-1.129 13.82,-6.34 1.12,-8.102 0.63,-14.359 2.56,-13.508 7.33,-5.531 9.32,6.051 3.99,24.207 6.85,7.101 9.66,-3.262 7.15,-10.976 5.83,-12.891 5.54,-8.871 7.74,-1.781 8.29,1.691 7.36,-1.461 4.91,-11.25 -2.03,-4.179 -10.05,-14.989 -2.51,-7.25 3.15,-9.089 5.94,-7.403 1.83,-8.48 1.44,-7.239 39.63,0.442 -6.1,6.879 6.81,21.781 20.15,-0.98 24.46,-14.332 19.35,-18.391 -13.81,-3.18 0.06,-7.73 11.15,-11.188 21.78,-16.32 18.38,-4.852 29.42,2.762 27.32,8.711 11.95,12.977 14.2,5.632 83.72,-9.339 41.51,0.078 10.2,-15.852 28.09,0.113 29.21,-6.66 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7221" /><path
+               id="path3178" /><path
                d="m 6894.41,4427.43 0,0 15.01,0.66 24.86,9.14 80.76,0.55 0.68,9.71 -4.01,38.5 -1.06,3.09 -0.78,4.21 0.15,6.25 1.65,3.95 6.26,8.37 1.72,5.8 -3.43,32.2 -11.92,14.68 -12.12,8.09 -3.99,12.33 0.08,0.01 2.88,4.04 3.31,3.22 3.83,2.22 3.91,1.18 9.54,8.23 2.84,5.38 1.21,9.31 14.33,-11.16 36.13,-4.88 6.84,-10.47 8.94,-7.47 10.26,-4.06 7.77,2.26 1.37,11.5 -0.01,0.12 5.09,15.05 8.52,7.12 8.53,-3.44 4.68,-16.6 7.96,-15.75 39.98,2.74 19.49,-7.71 12.79,-17.24 0.19,-10.79 -5.1,-12.17 -3.2,-20.86 3.45,-15.6 8.2,-19.02 9.85,-17.66 8.51,-11.41 14.99,-10.05 13.2,-4.53 11.44,-7.92 10.23,-20.11 1.15,-10.77 -1,-11.3 0.33,-10.61 5.3,-8.8 10.25,-2.29 7.07,8.88 5.67,12.4 5.84,8.72 29.1,5.03 145.27,-36.84 8.49,-4.62 10.61,-13.44 5.63,-4.58 7.65,-1.68 57.26,19.52 17.63,-0.06 2.22,-7.43 2.89,-6.56 41.25,-57.36 4.67,-1.18 19.49,2.39 40.31,19.64 11.82,-0.56 10.34,-8.29 10.84,-16.57 7.56,-14.45 5.32,-14.95 -0.36,-13.35 -9.36,-9.23 -1.05,-3.74 -0.24,-3.62 0.84,-3.45 1.77,-3.19 29.5,8.36 39.73,46.59 30.06,-0.17 23.99,-14.93 11.22,-4.01 11.63,3.91 7.55,11.69 3.73,14.67 4.09,11.64 8.92,2.84 25.65,2 23.63,-3.63 22.89,-10.12 66.53,-57.72 8.56,-20.52 -21.3,-11.36 3.54,-8.1 0.37,-3.67 -1.67,-3.3 -2.42,-6.73 -0.54,-5.73 -0.09,-8.65 0.73,-6.53 1.91,0.83 -5.22,-9.1 -13.13,-15.85 -5.73,-10.02 -11.88,-3.9 -23.31,4.06 -10.77,-4.71 -4.08,-14.89 -9.72,-10.16 -11.72,-8.63 -10.02,-10.19 -3.73,-1.93 -6.12,-4.77 -4.28,-0.82 4.65,-12 1.65,-3.25 -14.46,1.83 -3.86,-18.16 8.61,-19.2 23.42,-1.82 11.97,-27.74 4.01,-6.09 9.82,-6.45 5.1,1.66 4.63,4.91 8.02,3.51 32.37,3.2 6.96,-1.45 6.01,-9.83 1.54,-10.28 0.42,-10.15 2.8,-9.52 14.3,-15.55 32.83,-8.43 16.91,-9.48 11.66,-13.38 21.41,-31.1 11.72,-12.96 10.7,-15.43 23.85,-20.3 9.87,-20.21 11.96,-37.04 8.13,-13.2 14.21,-15.12 26.88,-20.15 31.56,-12.46 28.79,5.12 18.87,32.29 14.66,13.13 7.41,13.24 6.16,15.84 10.79,20.73 14.54,15.4 13.93,3.55 14.39,0.54 16.19,6.01 6.07,6.68 10.1,17.73 7.91,6.82 6.23,0.89 13.68,-3.29 6.35,1.15 1.33,4.26 -1.59,13.41 1.66,3.25 10.47,0.95 4.58,-2.46 4.04,-6.36 8.8,-10.54 8.97,-2.33 3.54,9.95 -2.98,14.48 -10.6,11.27 -3.94,26.84 -9.65,19.1 -14.47,12.83 -18.43,8.28 -14.76,12.28 -9.28,20.77 -7.82,23.06 -10.24,19.44 -26.31,31.13 -1.72,15.48 18.02,13.75 16.42,-0.33 32.45,-15.02 16.2,3.73 75.09,-12.5 8.29,-3.91 18.03,-12.06 9.62,-3.82 9.77,0.96 21.14,6.86 8.57,-1.6 -1.2,-3.27 3.76,-11.78 5.99,-13.85 5.32,-9.16 7.82,-6.79 26.79,-13.04 17.44,-2.99 33.23,4.71 15.39,-4.59 -12.48,-6.75 2.46,-3.96 2.91,-3.45 3.3,-2.88 3.55,-2.45 0.75,-14.55 2.98,-13.89 6.21,-10.86 10.29,-6.09 5.43,21.17 15.59,2.98 16.94,-10.79 8.97,-19.89 3.87,-2 3.93,-0.43 3.66,1.23 3.39,2.89 17.99,27.73 33.53,6.99 64.89,-3.88 15.96,6.22 11.04,11.4 17.67,31.66 2.9,9.52 0.94,7.79 4.28,3.52 12.57,-3.05 4.4,-3.26 15.16,-16.12 2.06,-2.31 0.72,-2.94 -0.12,-3.38 -1.2,-3.69 -5.27,-21.67 -0.2,-10.31 2.94,-10.99 8.38,-6.57 13.53,-19.21 -4.71,-17.59 -12.95,-14.2 -28.2,-21.74 -18.13,-9.68 -34.25,-5.32 -7.35,-4.87 -3.93,-11.78 2.41,-7.92 39.74,-39.84 11.73,-3.74 7.07,2.16 5.64,4.2 7.39,2.67 9.66,-1.43 20.53,-7.35 10.29,-0.94 0.42,-1.05 0.27,-1.02 -0.05,-0.88 -0.2,-0.83 -5.97,-6.46 -1.57,-6.35 2.96,-6.1 7.51,-5.92 9.01,-8.53 6.32,-11.7 5.6,-13.23 7.18,-12.58 9.37,-10.17 51.82,-40.6 26.69,-2.4 25.08,11.04 18.81,21.34 12.6,4.95 28.58,4.33 22.44,9.77 3.02,5.31 -2.6,10.91 -5.96,7.07 -6.15,-0.57 -5.47,-2.47 -3.97,1.15 -6.22,24.72 22.67,-2.83 45.07,-22.18 -2.15,-21.04 10.63,-9.64 46.75,-3.03 11.62,-4.67 24.96,-16.64 8.9,-2.74 17.23,-1.4 9.29,-5.25 3.79,-5.7 7.11,-16.58 4.93,-7.01 15.67,-9.85 10.11,3.36 17.86,20 -1.05,1.79 -1.12,1.14 -1.34,0.47 -1.55,-0.19 28.41,7.19 28.93,-6.36 56.97,-22.63 16.65,2.19 25.89,21.67 11.41,-5.05 7.04,-19.55 0.41,-17.25 4.86,-13.18 20.37,-7.8 -16.76,-25.42 4.12,-29.7 16.81,-32.1 21.43,-32.66 11.38,-31.34 5.61,-7.72 10.46,-5.47 22.41,0.93 10.66,-1.76 10.37,-6.46 16.31,-14.84 9.78,-4.26 10.38,2.23 10.59,6.35 10.98,3.42 11.84,-6.61 4.12,-8.26 9.86,-37.53 4.75,-10.22 11.04,-18.26 4.53,-9.6 16.6,-45.92 5.11,-22.65 -0.62,-18.91 -29.45,-4.69 -12.84,-6.93 -26.08,-31.16 -20.09,-3.78 -21.74,3.7 -25.22,8.86 -5.14,0.39 -4.87,-1.68 -19.2,-13.55 -32.56,0.55 -13.66,-11.31 -2.58,-9.59 0.84,-20.86 -2.42,-10.21 -5.2,-6.84 -22.16,-15.81 -26.04,-41.62 -14.9,-12.71 -21.7,2.11 4.81,-52.91 -39.62,-39.89 -92.94,-50.13 -18.91,-22.86 -14.02,-30.57 -9.48,-35.49 -4.83,-37.53 0.97,-30.08 7.87,-56.12 -1.87,-24.95 -12.05,-27.46 -19.08,-22.6 -22.88,-14.03 -39.51,-1.64 -17.32,-4.85 -14.15,-11.68 -7.36,-20.52 -2.59,-16.99 -1.61,-35.02 -4.18,-15.9 -11.9,-14.72 -13.89,-2.44 -15.73,0.83 -17.63,-5.2 -10.65,-11.18 -20.21,-46.41 -11.7,-12.22 -134.43,-71.49 -27.29,1.16 -25.08,21.18 -11.26,3.96 -16.84,-7.05 -25.7,-21.27 -12.46,-3.82 -88.27,33.19 -36.2,5.34 -32.02,-10.55 -36.28,-32.92 -5.56,-11.04 -2.08,-21.4 -9.1,-14.5 -22.92,-24.55 -14.79,-32.66 -25.83,-111 -6.82,-16.35 -10.14,-15.42 0.38,-21.28 -28.5,26.89 -17.85,72.44 -19.93,22.63 -12.17,-0.34 -27.2,-12.96 -13.95,-3.18 -14.04,3.66 -28.37,14.89 -11.63,2.7 -27.82,-3.99 -11.9,0.88 -10.32,5.79 -6.64,12.61 -4.35,15.67 -7.11,12.79 -14.6,4.26 -13.74,0.24 -45.1,8.36 -13.3,6.78 -6.98,1.63 -6.65,-1.59 -12.71,-6.94 -7.55,-1.09 -21.46,1.01 -11.9,-9.74 -31.01,-67.45 -7.31,-8.3 -11.21,-4.51 -4.23,0.92 -10.48,6.98 -15.04,-3.77 -0.76,-0.83 -104.16,5.39 -67.47,-10.46 -40.51,13.25 -78.75,46.92 -1.56,5.41 -0.71,7.69 -4.3,4.41 -12.13,-4.35 -1.83,11.64 -5.91,4.49 -8.29,-0.4 -9.04,-3.03 6.59,10.61 -6.1,-0.95 -5.67,1.97 -8.56,5.12 -14.11,-0.23 -5.19,1.67 -4.15,5.35 -4.19,13.4 -4.53,2.83 -22.4,-2.07 -6.22,-2.12 -24.82,-16.1 -12,-5 -16.89,-1.5 -16.78,2.45 -59.68,27.09 -62.43,18.24 -38.85,28.24 -16.5,7.66 -33.44,8.2 -36.65,14.95 -16.72,3.28 -34.26,-2.46 -3.84,2.22 -3.48,5.26 -4.08,4.29 -5.59,-0.52 -2.57,-4.78 -0.58,-15.07 -1.93,-6.06 -9.13,-13 -3.58,-2.73 -54.57,-19.61 -14.55,-0.89 3.56,16.24 -0.93,15.12 -4.32,14.84 -6.64,15.23 -57.26,0.07 -41.75,10.71 -15.84,-3.34 -2.2,-2.02 -0.84,-3.82 0.41,-5.17 1.16,-5.97 -8.13,-24.21 2.19,-31.65 5.7,-33.75 2.35,-30.71 -10.07,-70.79 -4.21,-14.43 -0.6,-7.84 1.99,-6.89 3.87,-8.53 3.82,-6.92 1.76,-1.89 -6.9,-20.12 -14.77,-2.54 -39.16,12.61 -38.72,2.34 -10.75,-5.1 -3.52,-10.89 -1.93,-13.72 -6.38,-13.59 -2.1,-21.52 -36.11,-36.91 -12.21,-23.61 -0.42,-30.19 2.93,-33.93 -1.57,-29.16 -13.68,-15.88 -12.17,-0.1 -6.33,6.83 -5.12,10.13 -8.69,9.89 -4.88,0.71 -10.98,-4.77 -5.76,0.21 -2.7,4.51 -0.62,7.4 -1.44,7.02 -5.02,3.82 -11.28,-1.76 -21.3,-12.23 -10.86,-3.27 -8.83,1.49 -30.5,13.26 -19.15,19.52 -10.2,-8.18 -13.39,-45.01 -10.81,-12.8 -37.15,-19.21 -14.03,-12.95 -5.63,-2.7 -7.03,-1.3 -74.94,20.78 -105.24,4.66 -25.75,8.84 -6.54,5.1 -13.76,15.01 -3.6,5.88 -4.42,14.93 1.16,3.3 4.08,1.83 4.27,10.72 2.1,1.75 3.62,-0.45 3.28,1.25 0.91,7.04 -2.35,6.65 -4.62,2.81 -5.23,1.73 -3.96,3.25 -5.32,8.82 -13.47,17.97 -6.92,6.58 -51.23,24 -16.97,12.34 -14.04,9.59 -14.46,6.74 -30.03,6.05 -15.29,13.96 -39.85,68.4 -18.71,25.52 -10.66,5.1 -27.58,2.62 -14.26,5.7 -13.26,11.69 -12.49,16.64 -9.02,19.74 -3.1,20.91 -13.22,-2.3 -12.9,6.13 -13,9.19 -13.33,7.09 -16.99,2.56 -9.86,-5.25 -6.23,-12.65 -6.42,-19.79 -17.58,7.2 -24.12,15.24 -22.17,18.47 -11.49,16.45 -2.26,31.15 -9.27,18.88 -32.84,29.8 -23.87,28.42 -9.34,7.19 -14.95,4.8 -44.22,-0.4 -21.33,10.91 -12.64,18.03 -10.77,21.35 -73.22,88.93 -9.3,4.63 -0.16,0.1 0,0.06 -24.7,26.38 -3.86,10.16 -1.55,10.69 -4.53,8.86 -12.9,4.56 -21.57,20.57 -10.95,7.95 -12.66,5.97 -28.16,6.2 -9.82,-3.67 3.96,-14.14 -13.5,-2.53 -43.11,4.09 -14.67,4.5 -12.08,11.31 -26.43,52.06 -15.36,14.38 -34.2,14.1 -14.73,11.09 -9.02,15.68 -4.46,17.86 -3.85,36.37 -1.88,18.68 -5.59,4.11 -7.58,-1.46 -8.27,2.08 -8.24,7.84 -6.08,8.05 -5.03,9.72 -5.27,13.11 -3.53,12.9 -4.53,24.48 -5.65,11.82 -8.01,8.03 -17.68,8.66 -7.81,8.62 0.39,2.72 3.03,8.89 -5.88,2.55 -1.93,1.41 5.48,13.89 -1.21,14.74 -6.51,11.5 -10.24,4.76 -24.53,10.38 -11.37,7.02 -10.79,8.89 -15.87,20.74 -8.09,13.91 -4.1,11.56 7.73,17.09 29.18,14 10.93,12.12 1.46,18.38 -0.7,23.33 3.66,15.88 14.62,-3.75 4.47,17.42 15.13,31.39 4.99,17.27 1.21,21.7 -4.83,7.83 -10.42,3.49 -30.17,15.86 0.26,12.1 4.27,15.22 -2.61,16.17 -12.61,10.93 -26.49,1.54 -11.46,10.3 -0.74,-0.03 -110.94,53.19 -2.6,6.97 -0.59,10.1 -1.97,11.31 -6.84,10.7 -10.73,8.51 -11.74,6.11 -10.52,8.82 -6.93,16.56 -1.15,16.64 3.94,25.49 -2.78,16.63 -6.02,12.98 -8.57,12.06 -18.29,18.45 -36.15,20.53 -7.92,12.9 8.36,13.81 7.16,5.14 4.57,5.37 0.73,14.3 -3.31,15.74 -6.15,9.64 -17.12,16.44 52.25,-1.67 14.1,-9.13 4.63,-10.1 0.59,-19.08 3.17,-8.56 8.25,-6.66 10.52,-2.77 20.5,0.36 5.21,-2.59 2.53,-3.92 -0.15,-5.13 -2.89,-6.4 -1.1,-0.22 -0.94,-0.38 -0.93,-0.68 -0.85,-0.84 -1.83,-2.21 -0.56,-2.27 0.84,-2.43 1.96,-2.51 13,-12.04 3.28,-4.05 3.26,-7.11 1.54,-6.44 0.99,-5.71 9.9,-30.24 7.73,-10.94 12.24,-1.02 9.64,7.68 -0.44,9.88 -4.66,11.71 -2.75,13.69 1.34,19.86 3.36,10.62 13.27,18.67 1.13,17.72 5.43,8.93 7.7,5.93 7.71,8.87 20.25,41.16 7.31,7.93 20.34,12.68 8.11,7.97 2.5,1.61 6.41,0.07 2.79,1.69 1.36,4.15 -0.65,4.34 -1.13,3.69 -0.25,2.29 1.68,5.09 1.2,5.7 2.24,5.63 5.08,4.84 18.89,17.81 28.24,9.81 52.97,6.53 38.3,-5.03 9.2,1.5 7.55,8.03 14.5,25.14 8.64,9.48 11.38,4.77 11.34,1.27 12.78,-1.13 4.32,1.94 9.64,7.12 6.31,1.65 6.03,-1.48 67.85,-36.6 24.37,-0.09 20.09,22.04 9.42,12.43 3.53,20.52 2.17,45.57 5.64,4.4 5.85,1.75 5.93,-0.94 5.73,-3.84 6.32,-1.5 6.63,-0.21 6.64,0.88 6.35,2.14 0.07,0 0.14,0.13 19.63,7.99 37.48,-0.1 16.7,14.02 9.14,19.01 19.98,64.35 13.82,-0.48 11.95,-7.38 12.07,-4.54 14.41,8.44 6.22,22.95 3.54,7.29 25.43,20.4 3.96,4.84 0.2,4.05 1.89,1.49 8.81,-2.65 4.06,-4.08 10.93,-16.12 5.03,-5.58 16.25,-6.81 12.96,4.06 11.33,11.64 11.35,16.07 6.78,4.39 3.92,5.48 0.25,6.76 -4.64,8.65 11.22,9.62 8.67,12.75 1.86,15.16 -9.22,16.56 27.82,19.23 31.64,8.01 63.39,3.64 13.43,3.57 26.19,11.65 15.14,2.53 32.6,-1.51 12.52,3.41 19.57,14.09 4.3,0.4 3.98,1.7 4.36,7.21 -0.03,5.88 -2.19,7.7 -1.5,9.36 2.28,10.99 5.95,8.41 5.95,0.63 6.98,-1.61 8.8,1.91 6.85,5.88 9.85,14.5 7.2,5.91 13.56,3.91 25.98,-1.58 13.48,1.84 106.19,57.96 8.01,8.64 11.49,20.32 7.09,8.06 24.91,7.09 55.45,-0.39 19.35,19.01 2.19,27.98 -19.52,9.49 -26.45,5.76 -19.2,16.44 -0.19,11.71 5.65,4.56 0.93,2.32 -14.41,4.67 -23.92,1.41 -8.58,4.81 7.02,11.87 7.57,32.68 15.57,18.32 22.04,5.14 26.69,-6.63 5.63,-4.44 4.15,-5.9 5,-5.73 7.91,-3.57 7.76,0.39 18.99,10.15 25.53,0.44 7.66,4.73 4.93,15.81 4.76,-9.11 2.02,-6.58 2.89,-6.48 7.27,-8.6 9.15,-5.44 19.27,-3.34 9.13,-6.12 9.26,-9.64 6.03,-8.37 3,-10.69 -0.04,-16.81 -4.43,-13.78 -7.21,-16.6 -2.82,-13.84 8.53,-5.76 37.61,19.08 8.51,0.48 4.73,-12.29 -2.93,-15.06 -9.78,-28.87 -0.96,-20.05 4.05,-8.07 24.96,-5.02 10.46,-4.8 28.48,-18.36 26.57,-3.83 15.32,0.62 11.1,3.99 6.22,8.4 5.68,13.39 8.78,30.67 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 6894.41,4427.43 0,0 15.01,0.66 24.86,9.14 80.76,0.55 0.68,9.71 -4.01,38.5 -1.06,3.09 -0.78,4.21 0.15,6.25 1.65,3.95 6.26,8.37 1.72,5.8 -3.43,32.2 -11.92,14.68 -12.12,8.09 -3.99,12.33 0.08,0.01 2.88,4.04 3.31,3.22 3.83,2.22 3.91,1.18 9.54,8.23 2.84,5.38 1.21,9.31 14.33,-11.16 36.13,-4.88 6.84,-10.47 8.94,-7.47 10.26,-4.06 7.77,2.26 1.37,11.5 -0.01,0.12 5.09,15.05 8.52,7.12 8.53,-3.44 4.68,-16.6 7.96,-15.75 39.98,2.74 19.49,-7.71 12.79,-17.24 0.19,-10.79 -5.1,-12.17 -3.2,-20.86 3.45,-15.6 8.2,-19.02 9.85,-17.66 8.51,-11.41 14.99,-10.05 13.2,-4.53 11.44,-7.92 10.23,-20.11 1.15,-10.77 -1,-11.3 0.33,-10.61 5.3,-8.8 10.25,-2.29 7.07,8.88 5.67,12.4 5.84,8.72 29.1,5.03 145.27,-36.84 8.49,-4.62 10.61,-13.44 5.63,-4.58 7.65,-1.68 57.26,19.52 17.63,-0.06 2.22,-7.43 2.89,-6.56 41.25,-57.36 4.67,-1.18 19.49,2.39 40.31,19.64 11.82,-0.56 10.34,-8.29 10.84,-16.57 7.56,-14.45 5.32,-14.95 -0.36,-13.35 -9.36,-9.23 -1.05,-3.74 -0.24,-3.62 0.84,-3.45 1.77,-3.19 29.5,8.36 39.73,46.59 30.06,-0.17 23.99,-14.93 11.22,-4.01 11.63,3.91 7.55,11.69 3.73,14.67 4.09,11.64 8.92,2.84 25.65,2 23.63,-3.63 22.89,-10.12 66.53,-57.72 8.56,-20.52 -21.3,-11.36 3.54,-8.1 0.37,-3.67 -1.67,-3.3 -2.42,-6.73 -0.54,-5.73 -0.09,-8.65 0.73,-6.53 1.91,0.83 -5.22,-9.1 -13.13,-15.85 -5.73,-10.02 -11.88,-3.9 -23.31,4.06 -10.77,-4.71 -4.08,-14.89 -9.72,-10.16 -11.72,-8.63 -10.02,-10.19 -3.73,-1.93 -6.12,-4.77 -4.28,-0.82 4.65,-12 1.65,-3.25 -14.46,1.83 -3.86,-18.16 8.61,-19.2 23.42,-1.82 11.97,-27.74 4.01,-6.09 9.82,-6.45 5.1,1.66 4.63,4.91 8.02,3.51 32.37,3.2 6.96,-1.45 6.01,-9.83 1.54,-10.28 0.42,-10.15 2.8,-9.52 14.3,-15.55 32.83,-8.43 16.91,-9.48 11.66,-13.38 21.41,-31.1 11.72,-12.96 10.7,-15.43 23.85,-20.3 9.87,-20.21 11.96,-37.04 8.13,-13.2 14.21,-15.12 26.88,-20.15 31.56,-12.46 28.79,5.12 18.87,32.29 14.66,13.13 7.41,13.24 6.16,15.84 10.79,20.73 14.54,15.4 13.93,3.55 14.39,0.54 16.19,6.01 6.07,6.68 10.1,17.73 7.91,6.82 6.23,0.89 13.68,-3.29 6.35,1.15 1.33,4.26 -1.59,13.41 1.66,3.25 10.47,0.95 4.58,-2.46 4.04,-6.36 8.8,-10.54 8.97,-2.33 3.54,9.95 -2.98,14.48 -10.6,11.27 -3.94,26.84 -9.65,19.1 -14.47,12.83 -18.43,8.28 -14.76,12.28 -9.28,20.77 -7.82,23.06 -10.24,19.44 -26.31,31.13 -1.72,15.48 18.02,13.75 16.42,-0.33 32.45,-15.02 16.2,3.73 75.09,-12.5 8.29,-3.91 18.03,-12.06 9.62,-3.82 9.77,0.96 21.14,6.86 8.57,-1.6 -1.2,-3.27 3.76,-11.78 5.99,-13.85 5.32,-9.16 7.82,-6.79 26.79,-13.04 17.44,-2.99 33.23,4.71 15.39,-4.59 -12.48,-6.75 2.46,-3.96 2.91,-3.45 3.3,-2.88 3.55,-2.45 0.75,-14.55 2.98,-13.89 6.21,-10.86 10.29,-6.09 5.43,21.17 15.59,2.98 16.94,-10.79 8.97,-19.89 3.87,-2 3.93,-0.43 3.66,1.23 3.39,2.89 17.99,27.73 33.53,6.99 64.89,-3.88 15.96,6.22 11.04,11.4 17.67,31.66 2.9,9.52 0.94,7.79 4.28,3.52 12.57,-3.05 4.4,-3.26 15.16,-16.12 2.06,-2.31 0.72,-2.94 -0.12,-3.38 -1.2,-3.69 -5.27,-21.67 -0.2,-10.31 2.94,-10.99 8.38,-6.57 13.53,-19.21 -4.71,-17.59 -12.95,-14.2 -28.2,-21.74 -18.13,-9.68 -34.25,-5.32 -7.35,-4.87 -3.93,-11.78 2.41,-7.92 39.74,-39.84 11.73,-3.74 7.07,2.16 5.64,4.2 7.39,2.67 9.66,-1.43 20.53,-7.35 10.29,-0.94 0.42,-1.05 0.27,-1.02 -0.05,-0.88 -0.2,-0.83 -5.97,-6.46 -1.57,-6.35 2.96,-6.1 7.51,-5.92 9.01,-8.53 6.32,-11.7 5.6,-13.23 7.18,-12.58 9.37,-10.17 51.82,-40.6 26.69,-2.4 25.08,11.04 18.81,21.34 12.6,4.95 28.58,4.33 22.44,9.77 3.02,5.31 -2.6,10.91 -5.96,7.07 -6.15,-0.57 -5.47,-2.47 -3.97,1.15 -6.22,24.72 22.67,-2.83 45.07,-22.18 -2.15,-21.04 10.63,-9.64 46.75,-3.03 11.62,-4.67 24.96,-16.64 8.9,-2.74 17.23,-1.4 9.29,-5.25 3.79,-5.7 7.11,-16.58 4.93,-7.01 15.67,-9.85 10.11,3.36 17.86,20 -1.05,1.79 -1.12,1.14 -1.34,0.47 -1.55,-0.19 28.41,7.19 28.93,-6.36 56.97,-22.63 16.65,2.19 25.89,21.67 11.41,-5.05 7.04,-19.55 0.41,-17.25 4.86,-13.18 20.37,-7.8 -16.76,-25.42 4.12,-29.7 16.81,-32.1 21.43,-32.66 11.38,-31.34 5.61,-7.72 10.46,-5.47 22.41,0.93 10.66,-1.76 10.37,-6.46 16.31,-14.84 9.78,-4.26 10.38,2.23 10.59,6.35 10.98,3.42 11.84,-6.61 4.12,-8.26 9.86,-37.53 4.75,-10.22 11.04,-18.26 4.53,-9.6 16.6,-45.92 5.11,-22.65 -0.62,-18.91 -29.45,-4.69 -12.84,-6.93 -26.08,-31.16 -20.09,-3.78 -21.74,3.7 -25.22,8.86 -5.14,0.39 -4.87,-1.68 -19.2,-13.55 -32.56,0.55 -13.66,-11.31 -2.58,-9.59 0.84,-20.86 -2.42,-10.21 -5.2,-6.84 -22.16,-15.81 -26.04,-41.62 -14.9,-12.71 -21.7,2.11 4.81,-52.91 -39.62,-39.89 -92.94,-50.13 -18.91,-22.86 -14.02,-30.57 -9.48,-35.49 -4.83,-37.53 0.97,-30.08 7.87,-56.12 -1.87,-24.95 -12.05,-27.46 -19.08,-22.6 -22.88,-14.03 -39.51,-1.64 -17.32,-4.85 -14.15,-11.68 -7.36,-20.52 -2.59,-16.99 -1.61,-35.02 -4.18,-15.9 -11.9,-14.72 -13.89,-2.44 -15.73,0.83 -17.63,-5.2 -10.65,-11.18 -20.21,-46.41 -11.7,-12.22 -134.43,-71.49 -27.29,1.16 -25.08,21.18 -11.26,3.96 -16.84,-7.05 -25.7,-21.27 -12.46,-3.82 -88.27,33.19 -36.2,5.34 -32.02,-10.55 -36.28,-32.92 -5.56,-11.04 -2.08,-21.4 -9.1,-14.5 -22.92,-24.55 -14.79,-32.66 -25.83,-111 -6.82,-16.35 -10.14,-15.42 0.38,-21.28 -28.5,26.89 -17.85,72.44 -19.93,22.63 -12.17,-0.34 -27.2,-12.96 -13.95,-3.18 -14.04,3.66 -28.37,14.89 -11.63,2.7 -27.82,-3.99 -11.9,0.88 -10.32,5.79 -6.64,12.61 -4.35,15.67 -7.11,12.79 -14.6,4.26 -13.74,0.24 -45.1,8.36 -13.3,6.78 -6.98,1.63 -6.65,-1.59 -12.71,-6.94 -7.55,-1.09 -21.46,1.01 -11.9,-9.74 -31.01,-67.45 -7.31,-8.3 -11.21,-4.51 -4.23,0.92 -10.48,6.98 -15.04,-3.77 -0.76,-0.83 -104.16,5.39 -67.47,-10.46 -40.51,13.25 -78.75,46.92 -1.56,5.41 -0.71,7.69 -4.3,4.41 -12.13,-4.35 -1.83,11.64 -5.91,4.49 -8.29,-0.4 -9.04,-3.03 6.59,10.61 -6.1,-0.95 -5.67,1.97 -8.56,5.12 -14.11,-0.23 -5.19,1.67 -4.15,5.35 -4.19,13.4 -4.53,2.83 -22.4,-2.07 -6.22,-2.12 -24.82,-16.1 -12,-5 -16.89,-1.5 -16.78,2.45 -59.68,27.09 -62.43,18.24 -38.85,28.24 -16.5,7.66 -33.44,8.2 -36.65,14.95 -16.72,3.28 -34.26,-2.46 -3.84,2.22 -3.48,5.26 -4.08,4.29 -5.59,-0.52 -2.57,-4.78 -0.58,-15.07 -1.93,-6.06 -9.13,-13 -3.58,-2.73 -54.57,-19.61 -14.55,-0.89 3.56,16.24 -0.93,15.12 -4.32,14.84 -6.64,15.23 -57.26,0.07 -41.75,10.71 -15.84,-3.34 -2.2,-2.02 -0.84,-3.82 0.41,-5.17 1.16,-5.97 -8.13,-24.21 2.19,-31.65 5.7,-33.75 2.35,-30.71 -10.07,-70.79 -4.21,-14.43 -0.6,-7.84 1.99,-6.89 3.87,-8.53 3.82,-6.92 1.76,-1.89 -6.9,-20.12 -14.77,-2.54 -39.16,12.61 -38.72,2.34 -10.75,-5.1 -3.52,-10.89 -1.93,-13.72 -6.38,-13.59 -2.1,-21.52 -36.11,-36.91 -12.21,-23.61 -0.42,-30.19 2.93,-33.93 -1.57,-29.16 -13.68,-15.88 -12.17,-0.1 -6.33,6.83 -5.12,10.13 -8.69,9.89 -4.88,0.71 -10.98,-4.77 -5.76,0.21 -2.7,4.51 -0.62,7.4 -1.44,7.02 -5.02,3.82 -11.28,-1.76 -21.3,-12.23 -10.86,-3.27 -8.83,1.49 -30.5,13.26 -19.15,19.52 -10.2,-8.18 -13.39,-45.01 -10.81,-12.8 -37.15,-19.21 -14.03,-12.95 -5.63,-2.7 -7.03,-1.3 -74.94,20.78 -105.24,4.66 -25.75,8.84 -6.54,5.1 -13.76,15.01 -3.6,5.88 -4.42,14.93 1.16,3.3 4.08,1.83 4.27,10.72 2.1,1.75 3.62,-0.45 3.28,1.25 0.91,7.04 -2.35,6.65 -4.62,2.81 -5.23,1.73 -3.96,3.25 -5.32,8.82 -13.47,17.97 -6.92,6.58 -51.23,24 -16.97,12.34 -14.04,9.59 -14.46,6.74 -30.03,6.05 -15.29,13.96 -39.85,68.4 -18.71,25.52 -10.66,5.1 -27.58,2.62 -14.26,5.7 -13.26,11.69 -12.49,16.64 -9.02,19.74 -3.1,20.91 -13.22,-2.3 -12.9,6.13 -13,9.19 -13.33,7.09 -16.99,2.56 -9.86,-5.25 -6.23,-12.65 -6.42,-19.79 -17.58,7.2 -24.12,15.24 -22.17,18.47 -11.49,16.45 -2.26,31.15 -9.27,18.88 -32.84,29.8 -23.87,28.42 -9.34,7.19 -14.95,4.8 -44.22,-0.4 -21.33,10.91 -12.64,18.03 -10.77,21.35 -73.22,88.93 -9.3,4.63 -0.16,0.1 0,0.06 -24.7,26.38 -3.86,10.16 -1.55,10.69 -4.53,8.86 -12.9,4.56 -21.57,20.57 -10.95,7.95 -12.66,5.97 -28.16,6.2 -9.82,-3.67 3.96,-14.14 -13.5,-2.53 -43.11,4.09 -14.67,4.5 -12.08,11.31 -26.43,52.06 -15.36,14.38 -34.2,14.1 -14.73,11.09 -9.02,15.68 -4.46,17.86 -3.85,36.37 -1.88,18.68 -5.59,4.11 -7.58,-1.46 -8.27,2.08 -8.24,7.84 -6.08,8.05 -5.03,9.72 -5.27,13.11 -3.53,12.9 -4.53,24.48 -5.65,11.82 -8.01,8.03 -17.68,8.66 -7.81,8.62 0.39,2.72 3.03,8.89 -5.88,2.55 -1.93,1.41 5.48,13.89 -1.21,14.74 -6.51,11.5 -10.24,4.76 -24.53,10.38 -11.37,7.02 -10.79,8.89 -15.87,20.74 -8.09,13.91 -4.1,11.56 7.73,17.09 29.18,14 10.93,12.12 1.46,18.38 -0.7,23.33 3.66,15.88 14.62,-3.75 4.47,17.42 15.13,31.39 4.99,17.27 1.21,21.7 -4.83,7.83 -10.42,3.49 -30.17,15.86 0.26,12.1 4.27,15.22 -2.61,16.17 -12.61,10.93 -26.49,1.54 -11.46,10.3 -0.74,-0.03 -110.94,53.19 -2.6,6.97 -0.59,10.1 -1.97,11.31 -6.84,10.7 -10.73,8.51 -11.74,6.11 -10.52,8.82 -6.93,16.56 -1.15,16.64 3.94,25.49 -2.78,16.63 -6.02,12.98 -8.57,12.06 -18.29,18.45 -36.15,20.53 -7.92,12.9 8.36,13.81 7.16,5.14 4.57,5.37 0.73,14.3 -3.31,15.74 -6.15,9.64 -17.12,16.44 52.25,-1.67 14.1,-9.13 4.63,-10.1 0.59,-19.08 3.17,-8.56 8.25,-6.66 10.52,-2.77 20.5,0.36 5.21,-2.59 2.53,-3.92 -0.15,-5.13 -2.89,-6.4 -1.1,-0.22 -0.94,-0.38 -0.93,-0.68 -0.85,-0.84 -1.83,-2.21 -0.56,-2.27 0.84,-2.43 1.96,-2.51 13,-12.04 3.28,-4.05 3.26,-7.11 1.54,-6.44 0.99,-5.71 9.9,-30.24 7.73,-10.94 12.24,-1.02 9.64,7.68 -0.44,9.88 -4.66,11.71 -2.75,13.69 1.34,19.86 3.36,10.62 13.27,18.67 1.13,17.72 5.43,8.93 7.7,5.93 7.71,8.87 20.25,41.16 7.31,7.93 20.34,12.68 8.11,7.97 2.5,1.61 6.41,0.07 2.79,1.69 1.36,4.15 -0.65,4.34 -1.13,3.69 -0.25,2.29 1.68,5.09 1.2,5.7 2.24,5.63 5.08,4.84 18.89,17.81 28.24,9.81 52.97,6.53 38.3,-5.03 9.2,1.5 7.55,8.03 14.5,25.14 8.64,9.48 11.38,4.77 11.34,1.27 12.78,-1.13 4.32,1.94 9.64,7.12 6.31,1.65 6.03,-1.48 67.85,-36.6 24.37,-0.09 20.09,22.04 9.42,12.43 3.53,20.52 2.17,45.57 5.64,4.4 5.85,1.75 5.93,-0.94 5.73,-3.84 6.32,-1.5 6.63,-0.21 6.64,0.88 6.35,2.14 0.07,0 0.14,0.13 19.63,7.99 37.48,-0.1 16.7,14.02 9.14,19.01 19.98,64.35 13.82,-0.48 11.95,-7.38 12.07,-4.54 14.41,8.44 6.22,22.95 3.54,7.29 25.43,20.4 3.96,4.84 0.2,4.05 1.89,1.49 8.81,-2.65 4.06,-4.08 10.93,-16.12 5.03,-5.58 16.25,-6.81 12.96,4.06 11.33,11.64 11.35,16.07 6.78,4.39 3.92,5.48 0.25,6.76 -4.64,8.65 11.22,9.62 8.67,12.75 1.86,15.16 -9.22,16.56 27.82,19.23 31.64,8.01 63.39,3.64 13.43,3.57 26.19,11.65 15.14,2.53 32.6,-1.51 12.52,3.41 19.57,14.09 4.3,0.4 3.98,1.7 4.36,7.21 -0.03,5.88 -2.19,7.7 -1.5,9.36 2.28,10.99 5.95,8.41 5.95,0.63 6.98,-1.61 8.8,1.91 6.85,5.88 9.85,14.5 7.2,5.91 13.56,3.91 25.98,-1.58 13.48,1.84 106.19,57.96 8.01,8.64 11.49,20.32 7.09,8.06 24.91,7.09 55.45,-0.39 19.35,19.01 2.19,27.98 -19.52,9.49 -26.45,5.76 -19.2,16.44 -0.19,11.71 5.65,4.56 0.93,2.32 -14.41,4.67 -23.92,1.41 -8.58,4.81 7.02,11.87 7.57,32.68 15.57,18.32 22.04,5.14 26.69,-6.63 5.63,-4.44 4.15,-5.9 5,-5.73 7.91,-3.57 7.76,0.39 18.99,10.15 25.53,0.44 7.66,4.73 4.93,15.81 4.76,-9.11 2.02,-6.58 2.89,-6.48 7.27,-8.6 9.15,-5.44 19.27,-3.34 9.13,-6.12 9.26,-9.64 6.03,-8.37 3,-10.69 -0.04,-16.81 -4.43,-13.78 -7.21,-16.6 -2.82,-13.84 8.53,-5.76 37.61,19.08 8.51,0.48 4.73,-12.29 -2.93,-15.06 -9.78,-28.87 -0.96,-20.05 4.05,-8.07 24.96,-5.02 10.46,-4.8 28.48,-18.36 26.57,-3.83 15.32,0.62 11.1,3.99 6.22,8.4 5.68,13.39 8.78,30.67 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7223" /><path
+               id="path3180" /><path
                d="m 9671.96,8788.42 0,0 14.98,-8.83 33.61,-6.15 184.93,18.75 251.92,26.7 375.6,42.55 232.8,28.02 281.9,35.45 361.9,48.26 151.8,21.04 122.3,17.37 41.4,23.49 10.2,12.26 10.8,35.26 14.5,10.72 14,0.86 42.6,-12.18 7.1,0.5 14,6.02 6.9,-0.2 8.3,-5.57 5.4,-7.85 4.6,-8.02 5.4,-6.24 8.3,-3.48 22.6,1.86 5.3,-5.26 -0.2,-10.95 -1.2,-13.22 2.3,-11.69 14.9,-13.87 14.8,3.07 14,9.68 12.4,5.55 12.9,-3.3 46.8,-25.33 27.7,-10.02 56.1,-8.96 29.2,-16.02 8.2,-8.38 16.4,-20.04 7.7,-7.3 7.6,-3.16 14.7,-0.92 6.7,-2.29 14,-13.58 13.6,-20.14 12.2,-23.15 9.9,-22.46 20.2,-49.4 5.4,-24.83 -6.1,-18.91 -6.5,-8.18 -2.6,-5.06 -2.1,-5.55 2,-11.86 4.9,-9.44 6.9,-6.88 8.1,-4.24 4.8,-4.15 3.1,-5.13 0.8,-6.12 -1.3,-6.99 7.5,-32.09 12.3,-25.51 14,-23.58 12.4,-26.32 18.3,-57.31 11.6,-21.21 20.7,-19.95 0,-0.06 0.1,0.02 15.6,-67.3 31.7,-73.55 91.7,-159.61 44.6,-58.01 20.5,-32.04 48.4,-98.54 18.3,-28.89 15.3,-13.45 9.8,-14.19 8.5,-14.93 11.5,-15.38 14.6,-10.49 13.2,-6.41 9.8,-11.77 4.2,-27.01 -2.6,-17.15 -5.2,-14.96 -3.1,-16.52 3.6,-21.68 9.7,-17.46 25.6,-21.6 11.1,-14.69 2.8,-8.21 1.3,-13.57 1.5,-7.02 12.2,-29.48 2.2,-8.76 -0.6,-7.23 -4.2,-16.42 0,-9.07 3.1,-11.68 3.7,-6.12 3.8,-4.98 3.6,-8.06 42.3,-165.14 0.8,-49.04 -19.7,-38.48 -76.3,-79.46 -105.5,-55.28 -52.3,-46.94 -49.2,-61.48 -56.5,-142.91 -20.4,-38.59 -8.5,-21.87 -18.6,-70.38 2.2,-0.1 11.7,-6.41 9.6,-9.38 5.1,-14.07 -1.5,-20.69 17.2,-6.73 51.4,-3.38 9.6,6.17 10.7,-7.18 45.3,-7.31 14.5,1.37 1.4,-6.84 -2.9,-11.18 2.3,-1.43 9,5.74 9.2,-2.04 7.4,-5.06 6.7,0.08 7.1,13.18 3.6,-4.36 7.9,-4.27 5.5,-4.3 9.1,13.35 4.3,-7.77 0.8,-13.58 -1.9,-4.43 26.5,-33.85 14.1,-1.49 32,7.6 14.4,-5.13 6.2,-7.63 5.3,-8.26 5.5,-6.15 7,-1.53 9.5,-4.08 5.3,-12.17 3.3,-12.57 8.5,-12.57 18.2,-39.67 11.7,-17.23 -9,-10.15 -6.1,-15.95 -6.6,-33.26 -0.3,-21.2 6.9,-35.81 -1.9,-13.39 2.9,-0.54 1.2,0.19 0.8,-1.21 1.4,-5 -7.3,-6.27 2.1,-24.49 -5.7,-10.71 14.8,-17.78 16.1,-14.43 -2.4,-27.22 -10.5,-15.75 -12.6,-11.74 -8.8,-15.77 -1.2,-8.49 -0.3,-12.39 1.3,-26.22 3.6,-5.2 6.2,-6.81 3,-6.55 -5.7,-4.31 -2.1,-3.63 3.6,-6.65 5.8,-6.76 4.3,-4.09 -6.5,-12.71 -3.7,-3.42 -6,-2.11 1.7,-8.24 9.5,-6.91 3.1,-10.5 2.5,-30.53 5.6,-15.36 9.1,-14.15 20.4,-22.88 -4.7,-1.41 -4.7,-0.5 12,-15.51 11.8,-1.93 10.5,-3.74 5.8,-14.21 2.6,-6.55 7.8,-14.51 12.4,-5.29 13.4,-2.1 11.1,-4.65 -6.3,-24.26 2.5,-6.66 36.6,-35.67 8.3,-12.08 -7.2,-5.37 -3.3,-8.7 1.4,-11.53 7.4,-14.03 -11.7,-7.52 -9.6,-15.54 -6.2,-18.16 -0.7,-15.47 9.3,-22.55 12,-3.4 13.4,2.47 13.4,-5.29 55.6,-76.17 19.5,-15.81 39.9,-15.07 39.9,-26.86 10.5,-11.8 -10.2,-8.33 -0.5,-10.69 14.8,-19.72 24,-24.51 9.1,-13.52 17.8,-44.49 1.4,-6.85 -1.1,-9.27 6,-3.45 9.6,-1.76 9.7,-4.06 10.1,-10.15 3.9,-8.66 2.7,-9.77 6.9,-13.69 14,-15.17 56.2,-33.75 64.9,-19.94 11.9,-11.91 -4.6,-20.96 -20.2,-8.95 -23.2,-5.02 -12.9,-9.3 -20.7,6.59 -18.7,-6.58 -13.5,-15.53 -4.7,-20.72 5.7,-20.83 13.2,-11.89 18.2,-4.26 20,1.66 1.4,-6.85 -5.1,-21.23 13.4,-14.83 21.6,-8 19.8,-0.7 1,-26.04 10.3,-22.07 27,-39.6 -10.4,-31.51 18.1,-50.99 8,-13.56 4.3,-2.32 -0.3,-2.64 -6.2,-14.49 -10.4,-16.98 -40.4,-33.13 0.8,-13.7 5.5,-21.05 1.8,-14.57 -0.7,-12.58 -8,-39.54 -33.9,-23.05 -127.6,-27.7 -22.8,-12.64 -11,-8.69 -7.6,-11.35 -4.5,-17.77 -3.1,-32.76 -7,-16.25 -43.6,-71.81 -17.2,-20.65 -0.1,-0.01 0,-0.07 -0.1,-0.02 -32.7,-37.31 -27.1,-31.18 -127.9,-208.12 -15,-37.28 -22.1,-25.49 -22.4,-36.83 -55.6,-128.35 -24.1,-36.43 -2.1,-9.86 -1.6,-23.39 -1.8,-8.52 -5,-7.41 -11.8,-7.08 -5.5,-5.36 -5.4,-9.83 -29.1,-88.32 -9.7,-14.5 -7.3,-4.85 -14.8,-5.97 -6.7,-8.42 -3.5,-10.51 -5.8,-37.64 -40.9,-83.47 -10,-46.02 21.1,-37.01 7.9,-15.28 13.1,-46.23 5,-12.08 3.2,-5.75 12.1,-13.13 18.7,-13.58 5.6,-7.71 6.5,-17.02 28.5,-99.61 0.3,-16.58 -6,-35.94 -3,-41.07 -7.1,-26.08 -1.4,-14.15 5.5,-5.08 3,2.85 7.3,13.84 12.9,-5.9 -0.8,-0.62 -2.7,-1.2 26.7,-12.23 26.4,-24.03 15.2,-7.42 36,-12.18 10.8,-9.57 1.9,-9.36 -2.6,-22.91 1.9,-15.21 5.1,-9.82 15.6,-18.1 3.4,-5.51 -5.2,-19.26 -15.9,3.61 -18.8,11.53 -14.3,4.4 -8.5,1.08 -17,16.38 -8.7,5.61 -8,-0.54 -15.5,-8 -26.7,-2.91 -15.3,-4.34 -16,-0.99 -20.1,8.97 -32.8,25.15 -15.4,1.86 -12.6,-17.55 -27.5,7.84 -57.3,-7.83 -28.1,3.37 -43.5,30.4 -16.5,3.35 -39.9,-8.72 -36,4.35 -6.2,3.67 -2.9,6.69 0.8,7.51 -1.5,7.76 -9.5,7.46 -6.2,0.08 -17,-5.2 -7.4,-0.83 -9.1,2.23 -26.3,11.05 -53.1,0.75 -23.1,11.45 -11,34.4 -16,37.48 -26.7,30 -30.4,20.05 -42.3,12.69 -30.8,19.83 -14.5,5.27 -14.1,-5.21 -10.5,-13.59 -8.1,-13.95 -6.7,-6.33 -12.7,7.13 -30.7,33.25 -14.3,10.39 -7.6,0.9 -10.7,-4.44 -5.6,-0.18 -8.2,3.84 -15.7,10.82 -8.1,3.67 -14.1,1.2 -50.8,-14.6 -22.4,-13.85 -11.2,1.37 -25.8,-10.4 -11.9,-2.11 -73.8,8.17 -44,14.88 -10.4,0.75 -11.6,-11.2 -17,-37.14 -10.5,-13.65 -15.1,-5.13 -12.3,5.81 -12.2,9.82 -14.5,6.85 -11.4,-0.8 -28.4,-10.73 -10.2,-7.06 -12,-18.74 10.5,-8.65 18.3,-7.43 11.5,-15.28 -4.3,-11.09 -12.9,-4.86 -15.2,-2.64 -11,-4.24 -12.6,-16.89 -18,-38.44 -13.5,-16.08 -16,-8.85 -13.8,0.39 -13.1,6.65 -13.8,10.43 -15.1,7.91 -11.7,-0.09 -12.2,-2.7 -16.6,-0.06 -12.8,6.55 -76.4,66.65 -11.6,0.23 -26.6,-8.69 -16,-0.09 -6.6,-1.5 -6.7,-5.33 -9.3,-16.05 -7.1,-9.08 -16.2,-8.78 -16.5,1.44 -65.9,21.78 -10.9,-4.31 3.1,-19.05 -37.2,-7.15 -31.3,6.65 -8.6,-1.48 -6.6,-6.68 -1.6,-7.28 0.1,-10.42 -1.4,-16.37 -2.8,-16.13 -2.9,-5.47 -55.2,-13.36 -10,-7.84 -13,-21.21 -6.1,-7.71 -16.3,-0.49 -2,1.45 -3.3,-6.12 -9.2,-33.17 -2.2,-13.78 -3.2,-13.06 -7.4,-12.22 1.6,-39.34 -3.4,-28.84 -12.5,-13.04 -25.9,8.25 -42.6,29.72 -21.8,7.52 -22.8,-5.98 -11.8,-11.65 -20.7,-28.75 -15.3,-8.3 -33.8,-2.32 -19.3,4.06 -11.3,11.6 0.8,15.03 21.1,48.76 2.8,3.1 4.5,1.99 3.8,3.07 0.8,6.49 -2,4.62 -6.7,5.24 -1.7,2.73 -11.1,5.95 -3.1,3.35 -0.2,4.76 4.3,9.11 0.5,4.69 -12,53 -6.3,17.92 -9.8,20 -7.4,4.08 -22.8,-13.23 -14.4,-3.6 -16.1,-0.54 -43.7,8.25 -0.2,13.59 -2.9,17.29 0.2,6.18 2.4,7.47 -29,-3.83 -15.6,1.92 -13.8,7.81 -4.9,7.38 -16.6,33.64 -21,54.06 -11.9,21.06 -18.5,8.84 -6.2,5.02 -15.2,19.72 -10.6,2.71 -3.9,-2.41 -2,-5.89 -52.9,-77.65 -4.8,-5.46 -9.7,-5.54 -7.3,-2.24 -22.2,-2.84 -13.5,-4.89 -11,-7.41 -9.1,-11.48 -7.7,-17.11 -6.7,-37.57 1.5,-1.09 2.7,-3 2.2,-5.08 -0.7,-7.63 -2.9,-2.84 -8.9,-1.45 -2,-0.74 -2.1,-22.3 0,-14.07 -4,-9.59 -21.1,-11.97 -17.7,-6.08 -7.6,-0.5 -7.4,2.62 -15.8,8.54 -6.9,1.4 -15.3,-5.85 -25.8,-20.03 -18.2,-3.89 -14.5,0.75 -5.7,11.95 -1.8,36.85 -4.1,16.2 -5.5,14.55 -2.9,15.72 3.9,19.53 -22.62,9.99 -72.38,-2.88 0.62,18.91 -5.11,22.65 -16.6,45.92 -4.53,9.6 -11.04,18.26 -4.75,10.22 -9.86,37.53 -4.12,8.26 -11.84,6.61 -10.98,-3.42 -10.59,-6.35 -10.38,-2.23 -9.78,4.26 -16.31,14.84 -10.37,6.46 -10.66,1.76 -22.41,-0.93 -10.46,5.47 -5.61,7.72 -11.38,31.34 -21.43,32.66 -16.81,32.1 -4.12,29.7 16.76,25.42 -20.37,7.8 -4.86,13.18 -0.41,17.25 -7.04,19.55 -11.41,5.05 -25.89,-21.67 -16.65,-2.19 -56.97,22.63 -28.93,6.36 -28.41,-7.19 1.55,0.19 1.34,-0.47 1.12,-1.14 1.05,-1.79 -17.86,-20 -10.11,-3.36 -15.67,9.85 -4.93,7.01 -7.11,16.58 -3.79,5.7 -9.29,5.25 -17.23,1.4 -8.9,2.74 -24.96,16.64 -11.62,4.67 -46.75,3.03 -10.63,9.64 2.15,21.04 -45.07,22.18 -22.67,2.83 6.22,-24.72 3.97,-1.15 5.47,2.47 6.15,0.57 5.96,-7.07 2.6,-10.91 -3.02,-5.31 -22.44,-9.77 -28.58,-4.33 -12.6,-4.95 -18.81,-21.34 -25.08,-11.04 -26.69,2.4 -51.82,40.6 -9.37,10.17 -7.18,12.58 -5.6,13.23 -6.32,11.7 -9.01,8.53 -7.51,5.92 -2.96,6.1 1.57,6.35 5.97,6.46 0.2,0.83 0.05,0.88 -0.27,1.02 -0.42,1.05 -10.29,0.94 -20.53,7.35 -9.66,1.43 -7.39,-2.67 -5.64,-4.2 -7.07,-2.16 -11.73,3.74 -39.74,39.84 -2.41,7.92 3.93,11.78 7.35,4.87 34.25,5.32 18.13,9.68 28.2,21.74 12.95,14.2 4.71,17.59 -13.53,19.21 -8.38,6.57 -2.94,10.99 0.2,10.31 5.27,21.67 1.2,3.69 0.12,3.38 -0.72,2.94 -2.06,2.31 -15.16,16.12 -4.4,3.26 -12.57,3.05 -4.28,-3.52 -0.94,-7.79 -2.9,-9.52 -17.67,-31.66 -11.04,-11.4 -15.96,-6.22 -64.89,3.88 -33.53,-6.99 -17.99,-27.73 -3.39,-2.89 -3.66,-1.23 -3.93,0.43 -3.87,2 -8.97,19.89 -16.94,10.79 -15.59,-2.98 -5.43,-21.17 -10.29,6.09 -6.21,10.86 -2.98,13.89 -0.75,14.55 -3.55,2.45 -3.3,2.88 -2.91,3.45 -2.46,3.96 12.48,6.75 -15.39,4.59 -33.23,-4.71 -17.44,2.99 -26.79,13.04 -7.82,6.79 -5.32,9.16 -5.99,13.85 -3.76,11.78 1.2,3.27 -8.57,1.6 -21.14,-6.86 -9.77,-0.96 -9.62,3.82 -18.03,12.06 -8.29,3.91 -75.09,12.5 -16.2,-3.73 -32.45,15.02 -16.42,0.33 -18.02,-13.75 1.72,-15.48 26.31,-31.13 10.24,-19.44 7.82,-23.06 9.28,-20.77 14.76,-12.28 18.43,-8.28 14.47,-12.83 9.65,-19.1 3.94,-26.84 10.6,-11.27 2.98,-14.48 -3.54,-9.95 -8.97,2.33 -8.8,10.54 -4.04,6.36 -4.58,2.46 -10.47,-0.95 -1.66,-3.25 1.59,-13.41 -1.33,-4.26 -6.35,-1.15 -13.68,3.29 -6.23,-0.89 -7.91,-6.82 -10.1,-17.73 -6.07,-6.68 -16.19,-6.01 -14.39,-0.54 -13.93,-3.55 -14.54,-15.4 -10.79,-20.73 -6.16,-15.84 -7.41,-13.24 -14.66,-13.13 -18.87,-32.29 -28.79,-5.12 -31.56,12.46 -26.88,20.15 -14.21,15.12 -8.13,13.2 -11.96,37.04 -9.87,20.21 -23.85,20.3 -10.7,15.43 -11.72,12.96 -21.41,31.1 -11.66,13.38 -16.91,9.48 -32.83,8.43 -14.3,15.55 -2.8,9.52 -0.42,10.15 -1.54,10.28 -6.01,9.83 -6.96,1.45 -32.37,-3.2 -8.02,-3.51 -4.63,-4.91 -5.1,-1.66 -9.82,6.45 -4.01,6.09 -11.97,27.74 -23.42,1.82 -8.61,19.2 3.86,18.16 14.46,-1.83 -1.65,3.25 -4.65,12 4.28,0.82 6.12,4.77 3.73,1.93 10.02,10.19 11.72,8.63 9.72,10.16 4.08,14.89 10.77,4.71 23.31,-4.06 11.88,3.9 5.73,10.02 13.13,15.85 5.22,9.1 -1.91,-0.83 -0.73,6.53 0.09,8.65 0.54,5.73 2.42,6.73 1.67,3.3 -0.37,3.67 -3.54,8.1 21.3,11.36 -8.56,20.52 -66.53,57.72 -22.89,10.12 -23.63,3.63 -25.65,-2 -8.92,-2.84 -4.09,-11.64 -3.73,-14.67 -7.55,-11.69 -11.63,-3.91 -11.22,4.01 -23.99,14.93 -30.06,0.17 -39.73,-46.59 -29.5,-8.36 -1.77,3.19 -0.84,3.45 0.24,3.62 1.05,3.74 9.36,9.23 0.36,13.35 -5.32,14.95 -7.56,14.45 -10.84,16.57 -10.34,8.29 -11.82,0.56 -40.31,-19.64 -19.49,-2.39 -4.67,1.18 -41.25,57.36 -2.89,6.56 -2.22,7.43 -17.63,0.06 -57.26,-19.52 -7.65,1.68 -5.63,4.58 -10.61,13.44 -8.49,4.62 -145.27,36.84 -29.1,-5.03 -5.84,-8.72 -5.67,-12.4 -7.07,-8.88 -10.25,2.29 -5.3,8.8 -0.33,10.61 1,11.3 -1.15,10.77 -10.23,20.11 -11.44,7.92 -13.2,4.53 -14.99,10.05 -8.51,11.41 -9.85,17.66 -8.2,19.02 -3.45,15.6 3.2,20.86 5.1,12.17 -0.19,10.79 -12.79,17.24 -19.49,7.71 -39.98,-2.74 -7.96,15.75 -4.68,16.6 -8.53,3.44 -8.52,-7.12 -5.09,-15.05 0.01,-0.12 -1.37,-11.5 -7.77,-2.26 -10.26,4.06 -8.94,7.47 -6.84,10.47 -36.13,4.88 -14.33,11.16 -1.21,-9.31 -2.84,-5.38 -9.54,-8.23 -3.91,-1.18 -3.83,-2.22 -3.31,-3.22 -2.88,-4.04 -0.08,-0.01 3.99,-12.33 12.12,-8.09 11.92,-14.68 3.43,-32.2 -1.72,-5.8 -6.26,-8.37 -1.65,-3.95 -0.15,-6.25 0.78,-4.21 1.06,-3.09 4.01,-38.5 -0.68,-9.71 -80.76,-0.55 -24.86,-9.14 -15.01,-0.66 -1.56,20.67 8.65,17.2 22.76,29.77 28.65,87.04 24.87,81.83 1.06,12.91 -1.59,21.36 0.34,11.04 3.13,8 5.01,5.58 4.02,7.78 0.28,14.38 -1.5,28.13 3.15,31.64 7.03,30.36 10.04,24.49 -3.14,2.86 -2.81,3.24 0.95,32.52 -11.94,20.95 -17.28,17.28 -14.73,21.59 -2.56,7.51 -4.65,19.67 -0.08,1.03 -12.97,75.82 4.75,14.37 -8.42,14.72 -13.94,12.44 -11.51,7.62 -16.31,6.25 -33.32,7.03 -16.57,7.8 -0.01,0.12 -15.45,9.28 -46.48,11.66 -16.59,14.82 -5.33,19.42 3.96,22.03 11.78,22.38 6.4,22.89 -3.45,29.15 -9.01,27.66 -10.44,18.5 -35.72,25.3 -16.97,17.05 -9.32,27.69 -4.98,29.09 -10.54,12.07 -13.13,7.68 -12.65,16.43 -3.87,23.38 7.55,19.96 36.34,43.27 11.33,17.95 9.01,20.83 4.12,22.19 -2.92,68.02 2.84,11.08 12.68,28.06 2.07,10.74 0.47,10.29 1.41,10.13 4.49,9.86 11.34,16.7 -47.12,29.83 -8.11,15.39 1.9,29.15 5.76,20.78 1.35,16.08 -11.09,14.7 -0.55,6.88 11.94,18.68 -1.58,22.75 -12.12,18.68 -19.75,6.85 -19.72,2.99 -24.03,10.09 -16.62,16.01 2.52,20.52 -16.78,31.22 -19.9,47.24 -7.19,43.82 32.76,33.75 14.39,27.37 9.17,26.94 -4.08,11.61 -13.51,10.55 3.24,26.22 15.85,41.35 -22.41,15.69 -46.89,45.16 -41.67,12.94 -21.44,25.11 -13.29,5.02 -7.57,6.27 -26.52,43.85 -11.38,11.47 -75.53,47.54 -19.1,8.49 -23.89,24.41 -13.93,4.99 -15.04,0.01 -14.44,3.41 -12.34,8.35 -8.84,15.06 16.75,16.82 5.98,13.96 1.27,21.22 -2.53,13.78 -11.03,38.83 -4.82,10.88 -0.5,6.92 30.7,26.49 39.26,24.34 37.14,34.41 18.95,23.09 7.5,20.74 1.17,9.44 15.31,64.41 -2.6,15.97 -5.19,15.43 -3.77,17.88 0.74,14.92 3.74,13.94 5.87,10.4 6.74,4.33 4.34,7.69 14.75,35.6 -9.29,7.37 -3.09,6 -10.84,7.87 -4.6,6.76 -2.89,10.75 -1.94,20.12 -1.75,9.34 -24.89,84.24 -11.26,57.01 -15.68,22.44 -8.66,22.67 -17.96,23.72 -6.5,22.55 -2.31,24.6 -1.26,40.78 -2.05,10.88 -17.07,42.15 -11.58,21.02 1.44,17.48 -3.12,31.01 6.76,1.19 11.47,6.05 8.05,8.69 0.21,9.19 -12.19,7.23 6.19,4.34 1.9,3.89 -2.47,3.68 -6.74,3.2 3.05,8.6 6.96,-5.26 9.54,-3.96 8.64,-5.59 9.17,-20.79 10.01,-6.52 18.65,-7.3 14.24,-13.3 7.75,-5.41 29.42,-2.77 36.44,-9.95 13.1,-8.68 11.16,-13.68 24.98,-40.04 8.34,-9.16 3.16,3.54 -0.57,17.75 2.11,10.62 5.13,7.22 8.5,7.95 -0.81,4.16 -0.48,4.41 0.09,6.59 -7.18,1.45 -17.11,0.15 -7.82,3.49 -24.45,47.64 2.36,24.97 12.48,49.44 8.09,-6.12 6.31,2.41 6.94,4.88 10.09,1.32 -6.85,27.65 0.62,22.4 3.04,20.24 0.44,21.12 -4.49,-0.36 -0.5,-13.44 -4.46,-9.2 -14.44,-17.08 4.61,-7.26 -5.89,1.84 -4.79,2.63 -4.07,3.89 -3.91,5.41 3.08,3.48 5.34,8.45 3.83,4.29 -10.59,18.17 -16.24,7.68 -73.48,1.91 -11.05,10.53 6.55,22.22 -2.27,2.07 -0.5,0.31 -0.28,0.96 -1.54,3.99 -5.72,-11.65 -4.97,-1.88 -5.78,2.44 -8.03,1.53 -5.6,-2.62 -3.99,-5.85 -3.79,-7.57 -5.09,-7.6 19.83,-2.25 11.1,-4.11 6.11,-6.76 -0.26,-13.47 -6.11,-10.4 -8.05,-4.54 -6.25,3.97 -17.07,-12.62 -8.75,-3.6 -9.3,-1.69 0.57,-7.58 9.17,-2.88 -0.3,-2.34 -8.3,-2.36 -6.32,0.45 -10.73,4.63 -7.84,0.68 -11.49,6.53 -35.04,43.42 -15.86,5.93 -1.75,-0.3 -6.72,17.23 -12.5,13.28 6.11,2.3 5.15,4.13 8.92,30.68 11.55,-4.29 7.49,-5.45 20.77,-6.14 65.34,-0.45 25.62,7.38 24.38,15.5 44.32,38.27 167,90.96 145.95,51.62 174.83,92.52 114.64,41.98 125.18,46.82 120.69,69.4 103.44,23.37 69.34,31.32 -7.28,-9.08 -30.71,-17.71 15.19,-8.61 56.2,15.86 -0.71,6.88 -4.43,-0.45 -0.84,8.2 31.02,3.18 -0.9,5.41 -0.76,0.85 -1.26,-0.36 -2.23,1.28 -0.57,18.08 -15.17,-0.86 -34.23,-14.68 21.29,13.35 25.09,20.31 35.15,51.27 -6.33,-17.35 -12.97,-16.7 -4.79,-8.78 5.68,2.79 11.61,3.69 9.7,5.12 8,11.73 21.59,13.15 7.37,10.51 -9.46,15.36 -12.83,-0.94 -4.91,-7.52 -8.57,-10.63 22.43,50.33 64.83,104.36 0.73,-6.88 -2.39,-11.21 6.78,-2.07 10.05,5.19 7.27,10.4 2.46,15.46 -4.21,4.07 -8.03,-4.45 -8.65,-10.08 10.39,27.9 20.08,24.88 41.1,32.27 132.4,34.67 50,26.72 26.9,7.74 23.38,11.47 53.81,74.8 182.99,113.57 236.88,75.64 103.85,51.08 168.78,37.97 105.14,13.98 15.2,-3.5 25.94,-17.19 9.21,-3.36 13.9,-1.27 236.8,-100.73 47.31,-46.33 8.14,-11.16 9.01,-16.29 2.78,-14.9 -10.51,-7.14 -3.47,3.42 -4.18,7.58 -5.17,7.38 -12.79,6.66 -10.76,19.73 -12.52,12.01 -37.67,47.41 -6.44,2.08 -23.12,1.56 -6.02,1.56 -7.54,9.57 -19.04,3.83 -41.89,20.93 -40.16,12.98 -7.21,7.88 -23.02,13.13 -5.77,1.84 -7.4,-4.57 -3.26,-6.27 -4.86,-32.77 -0.2,-7.49 2.2,-16.2 4.01,-3.71 16.3,-4.79 4,-3.59 9.66,-12.45 12.07,-19.28 0.83,-8.52 -1.46,-7.66 1.11,-7.19 8.51,-6.89 -0.91,-22.1 8.63,-8.27 11.87,4.24 8.74,15.25 -1.26,-18.95 7.25,-13.93 9.67,-11.33 23.2,-48.13 6.51,-9.95 0.91,-25.83 6.48,-43.78 9.89,-40.86 11.61,-17.24 10.62,-2.1 21.77,-12.39 10.56,-2.04 8.81,0.28 11.26,-1.76 10.13,-4.78 5.21,-9.13 13.09,-13.81 113.88,-19.9 24.53,1.56 18.46,14.01 6.34,-4.76 8.23,-3.14 18.48,-2.79 237.23,71.64 49.59,33.9 24.46,9.76 19.06,12.46 33.37,47.53 10.27,6.48 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 9671.96,8788.42 0,0 14.98,-8.83 33.61,-6.15 184.93,18.75 251.92,26.7 375.6,42.55 232.8,28.02 281.9,35.45 361.9,48.26 151.8,21.04 122.3,17.37 41.4,23.49 10.2,12.26 10.8,35.26 14.5,10.72 14,0.86 42.6,-12.18 7.1,0.5 14,6.02 6.9,-0.2 8.3,-5.57 5.4,-7.85 4.6,-8.02 5.4,-6.24 8.3,-3.48 22.6,1.86 5.3,-5.26 -0.2,-10.95 -1.2,-13.22 2.3,-11.69 14.9,-13.87 14.8,3.07 14,9.68 12.4,5.55 12.9,-3.3 46.8,-25.33 27.7,-10.02 56.1,-8.96 29.2,-16.02 8.2,-8.38 16.4,-20.04 7.7,-7.3 7.6,-3.16 14.7,-0.92 6.7,-2.29 14,-13.58 13.6,-20.14 12.2,-23.15 9.9,-22.46 20.2,-49.4 5.4,-24.83 -6.1,-18.91 -6.5,-8.18 -2.6,-5.06 -2.1,-5.55 2,-11.86 4.9,-9.44 6.9,-6.88 8.1,-4.24 4.8,-4.15 3.1,-5.13 0.8,-6.12 -1.3,-6.99 7.5,-32.09 12.3,-25.51 14,-23.58 12.4,-26.32 18.3,-57.31 11.6,-21.21 20.7,-19.95 0,-0.06 0.1,0.02 15.6,-67.3 31.7,-73.55 91.7,-159.61 44.6,-58.01 20.5,-32.04 48.4,-98.54 18.3,-28.89 15.3,-13.45 9.8,-14.19 8.5,-14.93 11.5,-15.38 14.6,-10.49 13.2,-6.41 9.8,-11.77 4.2,-27.01 -2.6,-17.15 -5.2,-14.96 -3.1,-16.52 3.6,-21.68 9.7,-17.46 25.6,-21.6 11.1,-14.69 2.8,-8.21 1.3,-13.57 1.5,-7.02 12.2,-29.48 2.2,-8.76 -0.6,-7.23 -4.2,-16.42 0,-9.07 3.1,-11.68 3.7,-6.12 3.8,-4.98 3.6,-8.06 42.3,-165.14 0.8,-49.04 -19.7,-38.48 -76.3,-79.46 -105.5,-55.28 -52.3,-46.94 -49.2,-61.48 -56.5,-142.91 -20.4,-38.59 -8.5,-21.87 -18.6,-70.38 2.2,-0.1 11.7,-6.41 9.6,-9.38 5.1,-14.07 -1.5,-20.69 17.2,-6.73 51.4,-3.38 9.6,6.17 10.7,-7.18 45.3,-7.31 14.5,1.37 1.4,-6.84 -2.9,-11.18 2.3,-1.43 9,5.74 9.2,-2.04 7.4,-5.06 6.7,0.08 7.1,13.18 3.6,-4.36 7.9,-4.27 5.5,-4.3 9.1,13.35 4.3,-7.77 0.8,-13.58 -1.9,-4.43 26.5,-33.85 14.1,-1.49 32,7.6 14.4,-5.13 6.2,-7.63 5.3,-8.26 5.5,-6.15 7,-1.53 9.5,-4.08 5.3,-12.17 3.3,-12.57 8.5,-12.57 18.2,-39.67 11.7,-17.23 -9,-10.15 -6.1,-15.95 -6.6,-33.26 -0.3,-21.2 6.9,-35.81 -1.9,-13.39 2.9,-0.54 1.2,0.19 0.8,-1.21 1.4,-5 -7.3,-6.27 2.1,-24.49 -5.7,-10.71 14.8,-17.78 16.1,-14.43 -2.4,-27.22 -10.5,-15.75 -12.6,-11.74 -8.8,-15.77 -1.2,-8.49 -0.3,-12.39 1.3,-26.22 3.6,-5.2 6.2,-6.81 3,-6.55 -5.7,-4.31 -2.1,-3.63 3.6,-6.65 5.8,-6.76 4.3,-4.09 -6.5,-12.71 -3.7,-3.42 -6,-2.11 1.7,-8.24 9.5,-6.91 3.1,-10.5 2.5,-30.53 5.6,-15.36 9.1,-14.15 20.4,-22.88 -4.7,-1.41 -4.7,-0.5 12,-15.51 11.8,-1.93 10.5,-3.74 5.8,-14.21 2.6,-6.55 7.8,-14.51 12.4,-5.29 13.4,-2.1 11.1,-4.65 -6.3,-24.26 2.5,-6.66 36.6,-35.67 8.3,-12.08 -7.2,-5.37 -3.3,-8.7 1.4,-11.53 7.4,-14.03 -11.7,-7.52 -9.6,-15.54 -6.2,-18.16 -0.7,-15.47 9.3,-22.55 12,-3.4 13.4,2.47 13.4,-5.29 55.6,-76.17 19.5,-15.81 39.9,-15.07 39.9,-26.86 10.5,-11.8 -10.2,-8.33 -0.5,-10.69 14.8,-19.72 24,-24.51 9.1,-13.52 17.8,-44.49 1.4,-6.85 -1.1,-9.27 6,-3.45 9.6,-1.76 9.7,-4.06 10.1,-10.15 3.9,-8.66 2.7,-9.77 6.9,-13.69 14,-15.17 56.2,-33.75 64.9,-19.94 11.9,-11.91 -4.6,-20.96 -20.2,-8.95 -23.2,-5.02 -12.9,-9.3 -20.7,6.59 -18.7,-6.58 -13.5,-15.53 -4.7,-20.72 5.7,-20.83 13.2,-11.89 18.2,-4.26 20,1.66 1.4,-6.85 -5.1,-21.23 13.4,-14.83 21.6,-8 19.8,-0.7 1,-26.04 10.3,-22.07 27,-39.6 -10.4,-31.51 18.1,-50.99 8,-13.56 4.3,-2.32 -0.3,-2.64 -6.2,-14.49 -10.4,-16.98 -40.4,-33.13 0.8,-13.7 5.5,-21.05 1.8,-14.57 -0.7,-12.58 -8,-39.54 -33.9,-23.05 -127.6,-27.7 -22.8,-12.64 -11,-8.69 -7.6,-11.35 -4.5,-17.77 -3.1,-32.76 -7,-16.25 -43.6,-71.81 -17.2,-20.65 -0.1,-0.01 0,-0.07 -0.1,-0.02 -32.7,-37.31 -27.1,-31.18 -127.9,-208.12 -15,-37.28 -22.1,-25.49 -22.4,-36.83 -55.6,-128.35 -24.1,-36.43 -2.1,-9.86 -1.6,-23.39 -1.8,-8.52 -5,-7.41 -11.8,-7.08 -5.5,-5.36 -5.4,-9.83 -29.1,-88.32 -9.7,-14.5 -7.3,-4.85 -14.8,-5.97 -6.7,-8.42 -3.5,-10.51 -5.8,-37.64 -40.9,-83.47 -10,-46.02 21.1,-37.01 7.9,-15.28 13.1,-46.23 5,-12.08 3.2,-5.75 12.1,-13.13 18.7,-13.58 5.6,-7.71 6.5,-17.02 28.5,-99.61 0.3,-16.58 -6,-35.94 -3,-41.07 -7.1,-26.08 -1.4,-14.15 5.5,-5.08 3,2.85 7.3,13.84 12.9,-5.9 -0.8,-0.62 -2.7,-1.2 26.7,-12.23 26.4,-24.03 15.2,-7.42 36,-12.18 10.8,-9.57 1.9,-9.36 -2.6,-22.91 1.9,-15.21 5.1,-9.82 15.6,-18.1 3.4,-5.51 -5.2,-19.26 -15.9,3.61 -18.8,11.53 -14.3,4.4 -8.5,1.08 -17,16.38 -8.7,5.61 -8,-0.54 -15.5,-8 -26.7,-2.91 -15.3,-4.34 -16,-0.99 -20.1,8.97 -32.8,25.15 -15.4,1.86 -12.6,-17.55 -27.5,7.84 -57.3,-7.83 -28.1,3.37 -43.5,30.4 -16.5,3.35 -39.9,-8.72 -36,4.35 -6.2,3.67 -2.9,6.69 0.8,7.51 -1.5,7.76 -9.5,7.46 -6.2,0.08 -17,-5.2 -7.4,-0.83 -9.1,2.23 -26.3,11.05 -53.1,0.75 -23.1,11.45 -11,34.4 -16,37.48 -26.7,30 -30.4,20.05 -42.3,12.69 -30.8,19.83 -14.5,5.27 -14.1,-5.21 -10.5,-13.59 -8.1,-13.95 -6.7,-6.33 -12.7,7.13 -30.7,33.25 -14.3,10.39 -7.6,0.9 -10.7,-4.44 -5.6,-0.18 -8.2,3.84 -15.7,10.82 -8.1,3.67 -14.1,1.2 -50.8,-14.6 -22.4,-13.85 -11.2,1.37 -25.8,-10.4 -11.9,-2.11 -73.8,8.17 -44,14.88 -10.4,0.75 -11.6,-11.2 -17,-37.14 -10.5,-13.65 -15.1,-5.13 -12.3,5.81 -12.2,9.82 -14.5,6.85 -11.4,-0.8 -28.4,-10.73 -10.2,-7.06 -12,-18.74 10.5,-8.65 18.3,-7.43 11.5,-15.28 -4.3,-11.09 -12.9,-4.86 -15.2,-2.64 -11,-4.24 -12.6,-16.89 -18,-38.44 -13.5,-16.08 -16,-8.85 -13.8,0.39 -13.1,6.65 -13.8,10.43 -15.1,7.91 -11.7,-0.09 -12.2,-2.7 -16.6,-0.06 -12.8,6.55 -76.4,66.65 -11.6,0.23 -26.6,-8.69 -16,-0.09 -6.6,-1.5 -6.7,-5.33 -9.3,-16.05 -7.1,-9.08 -16.2,-8.78 -16.5,1.44 -65.9,21.78 -10.9,-4.31 3.1,-19.05 -37.2,-7.15 -31.3,6.65 -8.6,-1.48 -6.6,-6.68 -1.6,-7.28 0.1,-10.42 -1.4,-16.37 -2.8,-16.13 -2.9,-5.47 -55.2,-13.36 -10,-7.84 -13,-21.21 -6.1,-7.71 -16.3,-0.49 -2,1.45 -3.3,-6.12 -9.2,-33.17 -2.2,-13.78 -3.2,-13.06 -7.4,-12.22 1.6,-39.34 -3.4,-28.84 -12.5,-13.04 -25.9,8.25 -42.6,29.72 -21.8,7.52 -22.8,-5.98 -11.8,-11.65 -20.7,-28.75 -15.3,-8.3 -33.8,-2.32 -19.3,4.06 -11.3,11.6 0.8,15.03 21.1,48.76 2.8,3.1 4.5,1.99 3.8,3.07 0.8,6.49 -2,4.62 -6.7,5.24 -1.7,2.73 -11.1,5.95 -3.1,3.35 -0.2,4.76 4.3,9.11 0.5,4.69 -12,53 -6.3,17.92 -9.8,20 -7.4,4.08 -22.8,-13.23 -14.4,-3.6 -16.1,-0.54 -43.7,8.25 -0.2,13.59 -2.9,17.29 0.2,6.18 2.4,7.47 -29,-3.83 -15.6,1.92 -13.8,7.81 -4.9,7.38 -16.6,33.64 -21,54.06 -11.9,21.06 -18.5,8.84 -6.2,5.02 -15.2,19.72 -10.6,2.71 -3.9,-2.41 -2,-5.89 -52.9,-77.65 -4.8,-5.46 -9.7,-5.54 -7.3,-2.24 -22.2,-2.84 -13.5,-4.89 -11,-7.41 -9.1,-11.48 -7.7,-17.11 -6.7,-37.57 1.5,-1.09 2.7,-3 2.2,-5.08 -0.7,-7.63 -2.9,-2.84 -8.9,-1.45 -2,-0.74 -2.1,-22.3 0,-14.07 -4,-9.59 -21.1,-11.97 -17.7,-6.08 -7.6,-0.5 -7.4,2.62 -15.8,8.54 -6.9,1.4 -15.3,-5.85 -25.8,-20.03 -18.2,-3.89 -14.5,0.75 -5.7,11.95 -1.8,36.85 -4.1,16.2 -5.5,14.55 -2.9,15.72 3.9,19.53 -22.62,9.99 -72.38,-2.88 0.62,18.91 -5.11,22.65 -16.6,45.92 -4.53,9.6 -11.04,18.26 -4.75,10.22 -9.86,37.53 -4.12,8.26 -11.84,6.61 -10.98,-3.42 -10.59,-6.35 -10.38,-2.23 -9.78,4.26 -16.31,14.84 -10.37,6.46 -10.66,1.76 -22.41,-0.93 -10.46,5.47 -5.61,7.72 -11.38,31.34 -21.43,32.66 -16.81,32.1 -4.12,29.7 16.76,25.42 -20.37,7.8 -4.86,13.18 -0.41,17.25 -7.04,19.55 -11.41,5.05 -25.89,-21.67 -16.65,-2.19 -56.97,22.63 -28.93,6.36 -28.41,-7.19 1.55,0.19 1.34,-0.47 1.12,-1.14 1.05,-1.79 -17.86,-20 -10.11,-3.36 -15.67,9.85 -4.93,7.01 -7.11,16.58 -3.79,5.7 -9.29,5.25 -17.23,1.4 -8.9,2.74 -24.96,16.64 -11.62,4.67 -46.75,3.03 -10.63,9.64 2.15,21.04 -45.07,22.18 -22.67,2.83 6.22,-24.72 3.97,-1.15 5.47,2.47 6.15,0.57 5.96,-7.07 2.6,-10.91 -3.02,-5.31 -22.44,-9.77 -28.58,-4.33 -12.6,-4.95 -18.81,-21.34 -25.08,-11.04 -26.69,2.4 -51.82,40.6 -9.37,10.17 -7.18,12.58 -5.6,13.23 -6.32,11.7 -9.01,8.53 -7.51,5.92 -2.96,6.1 1.57,6.35 5.97,6.46 0.2,0.83 0.05,0.88 -0.27,1.02 -0.42,1.05 -10.29,0.94 -20.53,7.35 -9.66,1.43 -7.39,-2.67 -5.64,-4.2 -7.07,-2.16 -11.73,3.74 -39.74,39.84 -2.41,7.92 3.93,11.78 7.35,4.87 34.25,5.32 18.13,9.68 28.2,21.74 12.95,14.2 4.71,17.59 -13.53,19.21 -8.38,6.57 -2.94,10.99 0.2,10.31 5.27,21.67 1.2,3.69 0.12,3.38 -0.72,2.94 -2.06,2.31 -15.16,16.12 -4.4,3.26 -12.57,3.05 -4.28,-3.52 -0.94,-7.79 -2.9,-9.52 -17.67,-31.66 -11.04,-11.4 -15.96,-6.22 -64.89,3.88 -33.53,-6.99 -17.99,-27.73 -3.39,-2.89 -3.66,-1.23 -3.93,0.43 -3.87,2 -8.97,19.89 -16.94,10.79 -15.59,-2.98 -5.43,-21.17 -10.29,6.09 -6.21,10.86 -2.98,13.89 -0.75,14.55 -3.55,2.45 -3.3,2.88 -2.91,3.45 -2.46,3.96 12.48,6.75 -15.39,4.59 -33.23,-4.71 -17.44,2.99 -26.79,13.04 -7.82,6.79 -5.32,9.16 -5.99,13.85 -3.76,11.78 1.2,3.27 -8.57,1.6 -21.14,-6.86 -9.77,-0.96 -9.62,3.82 -18.03,12.06 -8.29,3.91 -75.09,12.5 -16.2,-3.73 -32.45,15.02 -16.42,0.33 -18.02,-13.75 1.72,-15.48 26.31,-31.13 10.24,-19.44 7.82,-23.06 9.28,-20.77 14.76,-12.28 18.43,-8.28 14.47,-12.83 9.65,-19.1 3.94,-26.84 10.6,-11.27 2.98,-14.48 -3.54,-9.95 -8.97,2.33 -8.8,10.54 -4.04,6.36 -4.58,2.46 -10.47,-0.95 -1.66,-3.25 1.59,-13.41 -1.33,-4.26 -6.35,-1.15 -13.68,3.29 -6.23,-0.89 -7.91,-6.82 -10.1,-17.73 -6.07,-6.68 -16.19,-6.01 -14.39,-0.54 -13.93,-3.55 -14.54,-15.4 -10.79,-20.73 -6.16,-15.84 -7.41,-13.24 -14.66,-13.13 -18.87,-32.29 -28.79,-5.12 -31.56,12.46 -26.88,20.15 -14.21,15.12 -8.13,13.2 -11.96,37.04 -9.87,20.21 -23.85,20.3 -10.7,15.43 -11.72,12.96 -21.41,31.1 -11.66,13.38 -16.91,9.48 -32.83,8.43 -14.3,15.55 -2.8,9.52 -0.42,10.15 -1.54,10.28 -6.01,9.83 -6.96,1.45 -32.37,-3.2 -8.02,-3.51 -4.63,-4.91 -5.1,-1.66 -9.82,6.45 -4.01,6.09 -11.97,27.74 -23.42,1.82 -8.61,19.2 3.86,18.16 14.46,-1.83 -1.65,3.25 -4.65,12 4.28,0.82 6.12,4.77 3.73,1.93 10.02,10.19 11.72,8.63 9.72,10.16 4.08,14.89 10.77,4.71 23.31,-4.06 11.88,3.9 5.73,10.02 13.13,15.85 5.22,9.1 -1.91,-0.83 -0.73,6.53 0.09,8.65 0.54,5.73 2.42,6.73 1.67,3.3 -0.37,3.67 -3.54,8.1 21.3,11.36 -8.56,20.52 -66.53,57.72 -22.89,10.12 -23.63,3.63 -25.65,-2 -8.92,-2.84 -4.09,-11.64 -3.73,-14.67 -7.55,-11.69 -11.63,-3.91 -11.22,4.01 -23.99,14.93 -30.06,0.17 -39.73,-46.59 -29.5,-8.36 -1.77,3.19 -0.84,3.45 0.24,3.62 1.05,3.74 9.36,9.23 0.36,13.35 -5.32,14.95 -7.56,14.45 -10.84,16.57 -10.34,8.29 -11.82,0.56 -40.31,-19.64 -19.49,-2.39 -4.67,1.18 -41.25,57.36 -2.89,6.56 -2.22,7.43 -17.63,0.06 -57.26,-19.52 -7.65,1.68 -5.63,4.58 -10.61,13.44 -8.49,4.62 -145.27,36.84 -29.1,-5.03 -5.84,-8.72 -5.67,-12.4 -7.07,-8.88 -10.25,2.29 -5.3,8.8 -0.33,10.61 1,11.3 -1.15,10.77 -10.23,20.11 -11.44,7.92 -13.2,4.53 -14.99,10.05 -8.51,11.41 -9.85,17.66 -8.2,19.02 -3.45,15.6 3.2,20.86 5.1,12.17 -0.19,10.79 -12.79,17.24 -19.49,7.71 -39.98,-2.74 -7.96,15.75 -4.68,16.6 -8.53,3.44 -8.52,-7.12 -5.09,-15.05 0.01,-0.12 -1.37,-11.5 -7.77,-2.26 -10.26,4.06 -8.94,7.47 -6.84,10.47 -36.13,4.88 -14.33,11.16 -1.21,-9.31 -2.84,-5.38 -9.54,-8.23 -3.91,-1.18 -3.83,-2.22 -3.31,-3.22 -2.88,-4.04 -0.08,-0.01 3.99,-12.33 12.12,-8.09 11.92,-14.68 3.43,-32.2 -1.72,-5.8 -6.26,-8.37 -1.65,-3.95 -0.15,-6.25 0.78,-4.21 1.06,-3.09 4.01,-38.5 -0.68,-9.71 -80.76,-0.55 -24.86,-9.14 -15.01,-0.66 -1.56,20.67 8.65,17.2 22.76,29.77 28.65,87.04 24.87,81.83 1.06,12.91 -1.59,21.36 0.34,11.04 3.13,8 5.01,5.58 4.02,7.78 0.28,14.38 -1.5,28.13 3.15,31.64 7.03,30.36 10.04,24.49 -3.14,2.86 -2.81,3.24 0.95,32.52 -11.94,20.95 -17.28,17.28 -14.73,21.59 -2.56,7.51 -4.65,19.67 -0.08,1.03 -12.97,75.82 4.75,14.37 -8.42,14.72 -13.94,12.44 -11.51,7.62 -16.31,6.25 -33.32,7.03 -16.57,7.8 -0.01,0.12 -15.45,9.28 -46.48,11.66 -16.59,14.82 -5.33,19.42 3.96,22.03 11.78,22.38 6.4,22.89 -3.45,29.15 -9.01,27.66 -10.44,18.5 -35.72,25.3 -16.97,17.05 -9.32,27.69 -4.98,29.09 -10.54,12.07 -13.13,7.68 -12.65,16.43 -3.87,23.38 7.55,19.96 36.34,43.27 11.33,17.95 9.01,20.83 4.12,22.19 -2.92,68.02 2.84,11.08 12.68,28.06 2.07,10.74 0.47,10.29 1.41,10.13 4.49,9.86 11.34,16.7 -47.12,29.83 -8.11,15.39 1.9,29.15 5.76,20.78 1.35,16.08 -11.09,14.7 -0.55,6.88 11.94,18.68 -1.58,22.75 -12.12,18.68 -19.75,6.85 -19.72,2.99 -24.03,10.09 -16.62,16.01 2.52,20.52 -16.78,31.22 -19.9,47.24 -7.19,43.82 32.76,33.75 14.39,27.37 9.17,26.94 -4.08,11.61 -13.51,10.55 3.24,26.22 15.85,41.35 -22.41,15.69 -46.89,45.16 -41.67,12.94 -21.44,25.11 -13.29,5.02 -7.57,6.27 -26.52,43.85 -11.38,11.47 -75.53,47.54 -19.1,8.49 -23.89,24.41 -13.93,4.99 -15.04,0.01 -14.44,3.41 -12.34,8.35 -8.84,15.06 16.75,16.82 5.98,13.96 1.27,21.22 -2.53,13.78 -11.03,38.83 -4.82,10.88 -0.5,6.92 30.7,26.49 39.26,24.34 37.14,34.41 18.95,23.09 7.5,20.74 1.17,9.44 15.31,64.41 -2.6,15.97 -5.19,15.43 -3.77,17.88 0.74,14.92 3.74,13.94 5.87,10.4 6.74,4.33 4.34,7.69 14.75,35.6 -9.29,7.37 -3.09,6 -10.84,7.87 -4.6,6.76 -2.89,10.75 -1.94,20.12 -1.75,9.34 -24.89,84.24 -11.26,57.01 -15.68,22.44 -8.66,22.67 -17.96,23.72 -6.5,22.55 -2.31,24.6 -1.26,40.78 -2.05,10.88 -17.07,42.15 -11.58,21.02 1.44,17.48 -3.12,31.01 6.76,1.19 11.47,6.05 8.05,8.69 0.21,9.19 -12.19,7.23 6.19,4.34 1.9,3.89 -2.47,3.68 -6.74,3.2 3.05,8.6 6.96,-5.26 9.54,-3.96 8.64,-5.59 9.17,-20.79 10.01,-6.52 18.65,-7.3 14.24,-13.3 7.75,-5.41 29.42,-2.77 36.44,-9.95 13.1,-8.68 11.16,-13.68 24.98,-40.04 8.34,-9.16 3.16,3.54 -0.57,17.75 2.11,10.62 5.13,7.22 8.5,7.95 -0.81,4.16 -0.48,4.41 0.09,6.59 -7.18,1.45 -17.11,0.15 -7.82,3.49 -24.45,47.64 2.36,24.97 12.48,49.44 8.09,-6.12 6.31,2.41 6.94,4.88 10.09,1.32 -6.85,27.65 0.62,22.4 3.04,20.24 0.44,21.12 -4.49,-0.36 -0.5,-13.44 -4.46,-9.2 -14.44,-17.08 4.61,-7.26 -5.89,1.84 -4.79,2.63 -4.07,3.89 -3.91,5.41 3.08,3.48 5.34,8.45 3.83,4.29 -10.59,18.17 -16.24,7.68 -73.48,1.91 -11.05,10.53 6.55,22.22 -2.27,2.07 -0.5,0.31 -0.28,0.96 -1.54,3.99 -5.72,-11.65 -4.97,-1.88 -5.78,2.44 -8.03,1.53 -5.6,-2.62 -3.99,-5.85 -3.79,-7.57 -5.09,-7.6 19.83,-2.25 11.1,-4.11 6.11,-6.76 -0.26,-13.47 -6.11,-10.4 -8.05,-4.54 -6.25,3.97 -17.07,-12.62 -8.75,-3.6 -9.3,-1.69 0.57,-7.58 9.17,-2.88 -0.3,-2.34 -8.3,-2.36 -6.32,0.45 -10.73,4.63 -7.84,0.68 -11.49,6.53 -35.04,43.42 -15.86,5.93 -1.75,-0.3 -6.72,17.23 -12.5,13.28 6.11,2.3 5.15,4.13 8.92,30.68 11.55,-4.29 7.49,-5.45 20.77,-6.14 65.34,-0.45 25.62,7.38 24.38,15.5 44.32,38.27 167,90.96 145.95,51.62 174.83,92.52 114.64,41.98 125.18,46.82 120.69,69.4 103.44,23.37 69.34,31.32 -7.28,-9.08 -30.71,-17.71 15.19,-8.61 56.2,15.86 -0.71,6.88 -4.43,-0.45 -0.84,8.2 31.02,3.18 -0.9,5.41 -0.76,0.85 -1.26,-0.36 -2.23,1.28 -0.57,18.08 -15.17,-0.86 -34.23,-14.68 21.29,13.35 25.09,20.31 35.15,51.27 -6.33,-17.35 -12.97,-16.7 -4.79,-8.78 5.68,2.79 11.61,3.69 9.7,5.12 8,11.73 21.59,13.15 7.37,10.51 -9.46,15.36 -12.83,-0.94 -4.91,-7.52 -8.57,-10.63 22.43,50.33 64.83,104.36 0.73,-6.88 -2.39,-11.21 6.78,-2.07 10.05,5.19 7.27,10.4 2.46,15.46 -4.21,4.07 -8.03,-4.45 -8.65,-10.08 10.39,27.9 20.08,24.88 41.1,32.27 132.4,34.67 50,26.72 26.9,7.74 23.38,11.47 53.81,74.8 182.99,113.57 236.88,75.64 103.85,51.08 168.78,37.97 105.14,13.98 15.2,-3.5 25.94,-17.19 9.21,-3.36 13.9,-1.27 236.8,-100.73 47.31,-46.33 8.14,-11.16 9.01,-16.29 2.78,-14.9 -10.51,-7.14 -3.47,3.42 -4.18,7.58 -5.17,7.38 -12.79,6.66 -10.76,19.73 -12.52,12.01 -37.67,47.41 -6.44,2.08 -23.12,1.56 -6.02,1.56 -7.54,9.57 -19.04,3.83 -41.89,20.93 -40.16,12.98 -7.21,7.88 -23.02,13.13 -5.77,1.84 -7.4,-4.57 -3.26,-6.27 -4.86,-32.77 -0.2,-7.49 2.2,-16.2 4.01,-3.71 16.3,-4.79 4,-3.59 9.66,-12.45 12.07,-19.28 0.83,-8.52 -1.46,-7.66 1.11,-7.19 8.51,-6.89 -0.91,-22.1 8.63,-8.27 11.87,4.24 8.74,15.25 -1.26,-18.95 7.25,-13.93 9.67,-11.33 23.2,-48.13 6.51,-9.95 0.91,-25.83 6.48,-43.78 9.89,-40.86 11.61,-17.24 10.62,-2.1 21.77,-12.39 10.56,-2.04 8.81,0.28 11.26,-1.76 10.13,-4.78 5.21,-9.13 13.09,-13.81 113.88,-19.9 24.53,1.56 18.46,14.01 6.34,-4.76 8.23,-3.14 18.48,-2.79 237.23,71.64 49.59,33.9 24.46,9.76 19.06,12.46 33.37,47.53 10.27,6.48 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7225" /><path
+               id="path3182" /><path
                d="m -102.012,4986.6 0,0 2.1018,-11.28 1.5704,-8.4 -29.3202,15.83 -7.828,-0.73 -0.043,-0.12 -4.75,-13.14 -0.008,-0.04 14.309,-7.31 48.4683,-4.52 6.0312,-1.75 6.6993,-1.94 12.7031,-7.02 13.4062,-7.41 15.3321,3.27 7.9882,7.3 10.26176,9.37 11.96093,13.98 5.41011,6.32 4.7774,7.24 6.8828,10.42 3.1797,7.16 2.6875,6.08 1.8125,6.83 0.957,3.62 4.4102,6.27 0.1015,0.02 10.879,2.27 0.1914,0.04 1.0898,-1.94 0.6094,-1.09 19.832,-14.67 4.5898,-9.73 7.9805,-16.89 -3.6015,-18.68 -8.6719,-17.22 -1.4688,-9.2 -2.3711,-14.79 3.8516,-10.83 0.0391,-0.05 22.4609,-27.68 0.0586,-0.21 3.1133,-9.98 5.6681,-25.1 2.89,-6.26 0.442,-0.97 0,0 0.637,-0.4 10.793,-6.71 27.058,0.94 3.039,-0.58 9.762,-1.84 11.367,-15.94 -1.668,-39.42 0.238,-0.07 12.153,-3.51 1.121,-0.06 25.418,5.18 82.5,-7.67 14.672,4.58 30.16,19.18 3.578,1.45 10.738,4.36 15.051,-2.5 7.59,-5.2 8.141,-5.57 9.558,-13.96 2.543,-3.72 3.801,-21.99 1.008,-25.38 15.64,-14.3 38.61,-13.59 4.949,-3.67 4.351,-3.23 6.329,-7.98 4.281,-3.54 3.219,-2.67 11.812,-0.53 16.641,2.9 12.859,2.25 5.09,-0.91 3.738,-0.67 11.129,-7.57 13.922,-20.65 8,-7.21 0.922,-0.83 10.769,2.16 10.918,2.18 3.481,-0.32 8.34,-0.76 0.109,-0.28 5.551,-14.7 1.539,-5.17 0.07,-0.22 -5.769,-4.96 -4.649,-4.01 -2.761,-12.85 15.128,-17.69 0.051,-0.06 -4.527,-2.68 -1.942,-1.16 -3.191,-1.18 -3.961,-1.48 -7.828,-0.84 -7.391,0.93 0.391,-2.61 0.762,-5.1 0.968,-3.58 1.418,-3.41 0.59,-1.4 -5.84,-15.08 -3.929,-6.62 -0.5,-0.84 -5.481,-6.84 -7.867,7.42 -6.062,-3.28 -2.321,-6.63 -1.539,-4.39 -0.969,-5.67 -1.519,-8.96 9.008,-13.26 0.062,-0.08 -12.32,-26.6 -29.313,-42.71 -0.128,-0.2 15.82,3.45 6.68,-0.3 6.492,-4.43 -2.102,-3.3 -6.289,-9.88 -13.422,-25.34 -9.527,-13.13 -3.844,-2.77 -7.937,-2.61 -6.45,-1.99 -1.851,-0.57 -43.449,-44.41 -9.903,-10.1 -0.218,-0.23 0.48,-16.68 0.238,-8.13 1.473,-2.48 8.918,-15.09 11.57,-8.76 3.981,-3.14 2.371,-0.98 2.39,-0.99 9.918,-5.61 0.25,-0.14 0.903,-0.29 9.777,-3.16 -0.027,-0.23 -1.133,-8.98 -0.527,-4.27 -3.223,-9.35 -5.379,-15.62 0.75,-0.43 2.52,-1.47 3.718,-2.49 5.711,-3.83 5.082,-1.04 2.34,-0.47 3.27,0.37 4.25,0.48 3.949,5.15 6.609,9.44 1.379,1.97 6.543,4.43 4.059,-1.99 2.519,-1.23 13.879,-16.52 6.844,-5.62 61.297,-0.84 8.441,-3.32 5.539,-1.99 0.992,-0.04 0.5,-0.02 51.059,-3.9 5.762,0.69 8.629,1.04 0.25,0.03 -0.692,-0.74 -0.879,-0.95 -0.461,-2.34 -0.07,-1.75 0.813,-1.39 0.25,-0.44 7.527,-4.62 3.762,-2.31 0.23,-8.21 0.07,-2.42 -3.062,-11.64 1.402,-6.05 0.809,-3.48 9.289,-1.55 28.32,6.52 11.551,-1.64 13.289,-14.07 7.34,-12.17 33.101,-54.79 -0.152,-0.08 -9.789,-5.43 7.59,-16.78 14.32,-8.22 48.981,-3 1.25,-6.54 -3.828,-7.19 -1.403,-2.63 -8.418,-9.48 -0.179,-0.21 -0.133,-3.53 -16.078,-8.83 -13.922,-10.97 -8.891,-7.01 -13.848,-19.98 -0.082,-0.12 11.082,-15.15 -5.968,-8.6 0.949,-4.75 0.027,-0.02 5.492,-2.55 8.25,-0.89 -0.082,-0.14 -5.777,-9.39 -0.012,-0.01 -0.148,-0.24 4.051,-3.65 1.418,-1.28 0.109,-0.24 1.813,-4.08 3.957,-8.87 3.613,-3.27 1.816,-1.66 2.071,-0.07 4.711,-0.18 20.941,5.32 3.328,0.85 0.082,0.07 1.32,1.16 0.411,0.37 0.128,0.11 1.52,0.52 1.48,-0.63 0.079,-0.08 1.722,-1.77 10.688,-5.69 30.172,-8.17 13.05,-1.04 0.047,-0.01 -8.16,-7.38 -0.617,-2.49 -1.563,-6.26 0.411,-2.2 1.461,-7.88 3.378,-11.31 1.903,-3.65 3.738,-7.17 4.133,-0.6 1.09,-0.16 1.297,-2.2 1.152,-1.95 0.051,-0.08 -0.282,-3.55 -1.14,-14.66 -5.512,-24.83 -0.316,-1.45 -5.41,-14.53 0.668,-13 22.921,-43.81 0,-0.08 0.938,-15.71 0.012,-0.15 -6.121,-5.91 -3.18,-3.08 -0.09,-0.08 -18.961,-2.86 -9.719,2.1 -5.019,2.46 -2.77,1.36 -7.89,0.89 -4.039,-2.33 -5.59,-3.22 -4.903,-5.23 -2.57,-2.75 -5.309,-10.99 -1.902,-10.55 2.973,-10.45 0.07,-0.24 -13.652,-11.29 -17.981,-4.15 -12.867,-2.96 -15.359,-6.47 -4.973,-7.55 -2.238,-3.4 -12.61,-7.98 -4.062,-2.57 -7.508,-9.12 0.051,-0.07 8.976,-10.89 0.762,-3.04 2.512,-10.06 -0.844,-12.33 -4.566,-10.42 -1.512,-0.93 -3.898,-2.4 -14.403,-0.62 -1.14,-0.61 -5.047,-2.69 -0.821,-2.25 -0.461,-1.24 -1.789,-7.38 -1.332,-5.45 -1.718,-5.25 6.937,-6.17 2.352,-7.02 0.039,-0.12 -0.649,-1.78 -1.879,-5.19 -6.761,-7.39 -10.328,5.09 -0.051,0.02 -0.481,3.7 -0.691,5.18 0.512,4.67 0.629,5.8 0.011,0.07 -2.64,10.14 -0.782,0.79 -8.32,8.4 -3.867,-0.29 -1.434,-0.11 -0.027,-0.03 -4.723,-5.07 -5.457,-2.73 -1.101,-0.55 -16.328,-1.72 -7.891,1.5 -2.77,1.21 -0.211,0.09 -6.308,3.18 -4.211,8.43 -1.859,10.69 -3.614,4.56 -0.707,0.91 -11.281,-8.38 -8.191,-0.63 -7.008,-0.54 -6.481,-10.32 -3.16,-12.69 -0.469,-1.89 -6.3,-15.65 -11.063,-10.74 -27.019,-11.86 -8.02,-6.79 -4.48,-3.8 -0.09,-0.07 -2.918,-6.96 -1.082,-10.05 -0.797,-7.53 -1.25,-4.28 -0.961,-3.28 -2.039,-2.9 -2.41,-3.42 -11.012,-8.94 -1.82,-2.39 -2.969,-3.91 0.398,-9.16 0.172,-3.81 -0.453,-10.6 -2.078,-8.02 -0.16,-0.63 -0.02,-0.09 -1.14,-1.04 -4.379,-4.02 -14.68,-5.88 -4.801,-5.66 -1.429,-15.28 0.097,-0.13 4.953,-6.56 2.379,-6 0,0 -8.621,-14.94 -3.41,-3.25 -2.508,-2.39 -10.73,-1.9 -5.09,-3.32 -4.75,-5.39 -1.262,-1.43 -1.187,-2.35 -1.731,-3.42 -0.812,-2.16 -1.34,-3.62 -0.688,-1.64 -2.25,-5.31 -17.14,-26.63 -9.801,-15.21 -1.281,-4.25 -1.86,-6.23 8.172,-4.47 2.457,-2.13 12.59,-10.9 6.383,-10.2 0.059,-0.09 -18.719,2.55 -0.223,0.03 0.07,-4.77 0.024,-1.71 -0.992,-2.26 -0.289,-0.65 -1.653,-2.86 -1.297,-3.49 0.118,-0.12 6.472,-6.64 -0.043,-0.02 -8.617,-5.5 -3.883,-10.45 0.563,-13.57 2.027,-6.99 1.953,-6.74 7.059,-13.26 7.031,-3.83 0.027,-0.01 0.571,-0.12 7,-1.39 2.941,-2.08 5.961,-4.2 3.891,-6.1 0.75,-1.18 3.847,-8.6 11.461,-25.63 0.93,-5.34 0.879,-15.37 -0.039,-0.94 -0.078,-1.84 -0.012,-0.15 3.828,-3.22 0.492,-0.41 0.11,-0.09 9.781,-3.38 2.219,-1.35 1.89,-1.16 4.192,-0.78 2.437,0.53 2.153,0.46 2.179,-0.09 2.399,-0.1 0.191,-0.35 3.719,-6.9 0.371,-3.71 0.437,-4.55 -1.187,-1.69 -2.063,-2.89 -3.57,-3.39 -1.43,-6.41 -0.668,-7.05 -2.089,-3.45 -1.289,-4.06 1.226,-4.47 1.07,-3.89 4.813,-3.74 14.059,-2.34 0.089,-0.08 5.082,-4.85 1.981,-8.63 1.566,-6.85 -0.09,-0.18 -4.507,-9.64 -7.172,-6.18 -0.028,-0.03 -5.972,-6.8 -6.219,-14.59 -4.398,-10.31 -6.211,-10.93 -8.352,-7.3 0.133,-0.08 7.387,-4.69 4.382,-2.78 0.047,-0.03 -3.988,-8.82 -3.602,-7.95 -17.597,-16.92 -17.211,-7.53 -7.84,2.02 -0.488,0.12 -0.043,0.03 -15.598,10.66 -7.609,1.51 -8.223,-3.79 -9.73,-11.95 -8.188,-3.41 -0.769,-0.31 -0.043,0 -15.528,3.61 -15.359,8.37 -15.922,4.21 0,0 -18.398,-8.58 -9.262,-11.27 -0.09,-0.11 -1.879,-7.57 -0.641,-1.18 -1.851,-3.43 -4.891,-0.31 -5.898,-0.38 -6.43,2.08 -22.101,11.6 -9.637,-4.12 -4.043,-1.73 -9.18,-6.39 -9.879,-6.88 -14.59,-7.79 -4.699,-2.51 -15.519,4.87 -2.934,8.03 -0.789,2.16 1.223,9.96 2.816,10.49 0.293,6.21 0.231,4.96 -2.563,10.71 -31.82,64.61 -12.797,12.38 -21.762,9.32 -3.699,2.57 -4.481,3.12 -4.179,0.76 -0.211,0.04 -0.129,0.03 -2.832,-2.83 -3.348,-5.71 -4.09,-5.7 -1.3,-0.39 -3.789,-1.15 -11.723,2.94 -0.109,0.15 -3.372,4.63 -0.089,0.12 -0.52,5 -0.519,5.07 3.058,15.74 0,0.02 0.82,0.45 5.102,2.8 1.328,1.62 1.934,2.37 -4.184,16.7 -12.879,17.73 -14.418,15.94 -0.101,0.1 -8.6409,0.11 -6.6172,0.08 -11.8711,-2.56 -21.4102,-4.6 -16.1523,5.54 -12.8672,10.68 -3.1992,3.34 -6.9414,7.2 -16.30862,26.75 -11.90235,19.52 -8.19923,8.57 -0.0195,0.02 -0.1016,0.1 -5.6484,1.89 -19.5,6.52 -14.0391,9.01 -25.25,27.86 -10.3633,6.46 -0.9296,0.81 -1.2383,1.07 -7.4685,-0.18 -7.832,-0.18 -14.371,-4.01 -17.438,-4.86 -12.051,-1.5 -4.468,-0.56 -11.122,2.4 -7.378,1.58 -0.012,0.01 -6.012,8.6 1.25,19.45 1.442,22.28 -1.489,6.35 -0.051,0.21 -6.55,12.15 -1.231,5.39 1.922,6.98 6.879,7.28 0.441,0.88 2.118,4.28 1.222,3.68 3.391,10.24 2.019,4.08 2.25,4.52 2.438,9.89 -0.328,6.49 -0.403,7.72 -9.718,20.85 -0.16,0.32 0,0 -19.481,9.37 -13.758,6.62 -0.101,0.05 -8.629,15.81 4.039,17.49 22.558,48.13 8.954,19.11 0,0.04 0.277,2.29 1.152,9.38 -0.621,9.48 0.949,7.25 0.352,2.7 0.027,0.05 4.25,8.18 10.633,20.43 0.09,0.02 4.519,0.91 7.079,-8.63 0.031,0.16 1.738,11.18 1.231,7.93 5.043,22.74 0.5,5.27 1.347,14.1 -5.969,9.17 -22.55,-3.47 -8.11,4 -2,15.88 -0.101,0.77 -19.758,-7.76 -80.813,-72.64 -4.648,-8.6 -2.531,-11.06 1.109,-4.84 0.402,-1.73 0.942,-2.49 1.34,-3.55 0.148,-3.4 0.192,-4.28 -2.532,-11.41 -5.211,-23.55 -5.949,-17.35 -1.09,-1.9 -6.101,-10.67 -5.629,-2.9 -2.61,-1.35 -29.859,-2.97 -25.93,-11.08 -77.203,-32.9 -21.449,-2.23 -7.117,2.19 -85.684,29.62 -18.359,6.37 -20.758,-1.79 -34.402,-2.94 -7.649,2.91 -1.648,0.63 -38.543,24.22 -0.238,0.15 5.507,-0.95 0.161,-0.03 -0.047,10.36 -0.032,6.2 -1.32,8.5 -1.379,8.8 -3.152,1.33 -0.168,0.07 0,0.01 3.867,12.71 3.512,7.13 0.43,0.89 0.05,0.05 5.7,6.06 8.332,7.02 5.339,4.49 12.411,7.63 5,3.07 10.046,4.29 7.801,3.33 0.16,0.07 0.321,4.98 0.14,2.08 -4.39,9.13 -2.008,6.33 -1.453,4.53 -9,48.99 -6.93,3.99 -7.641,-0.68 -14.777,-5.53 -4.242,2.29 -5.68,3.06 2.68,16.7 0.512,3.19 10.449,27.68 6.082,16.1 5.098,20.34 3.66,7.86 0.34,0.74 8.21,10.1 17.848,12.42 1.07,1.14 6.243,6.67 1.328,5.54 1.312,5.5 -4.043,7.93 -8.187,8.2 -5.91,4.1 -3.5,2.42 -6.129,2.72 -0.121,0.05 -8.911,-2.97 -0.031,-0.26 -0.84,-7.35 0.141,-3.89 0.129,-3.62 0,-0.18 -1.988,-1.55 -3.61,-2.81 -8.441,4.45 -4.36,2.3 -12.609,32.93 -3.851,10.08 -0.09,0.09 -13.77,13.8 -9.422,6.64 -5.398,3.8 -21.57,27.43 -0.719,0.39 -12.781,7 -6.68,-0.07 -8.461,-0.09 -30.75,-10.81 -15.738,-5.52 -9.692,0.66 -6.48,0.45 -2.891,1.57 -9.5,5.19 -6.449,5.45 -4.988,4.2 -14.129,8.68 -29.481,5.61 -31.019,-0.18 -4.364,-1.49 -5.707,-1.96 -6.113,-6.05 -14.34,-20.86 -2.75,-6.49 -0.886,-2.1 -0.864,-1.37 -1.269,-2.03 -3.547,-2.11 -1.043,1.23 -0.02,0.02 -1.179,-0.49 -3.11,-6.87 -23.172,25.29 -3.136,45.73 3.726,51.73 -2.91,43.35 -10.088,22.02 -12.9,14.53 -15.2,8.79 -15.89,4.71 -42.93,3.17 -2.82,0.21 -8.17,7.1 0.04,0.05 7.08,10.9 0.58,0.89 1.75,8.73 -4.03,6.22 -3.04,1.32 -6.83,2.97 -7.12,-0.3 -3.07,-0.12 -6.27,-3.31 -1.59,-0.84 -2.57,-2.31 -4.69,-4.22 -2.88,-1.77 -7.43,-4.55 -25.01,-7.36 -7,-2.06 -6.5,-0.17 -10.89,-0.27 -12.1,4.47 -29.51,18.23 -8.78,8.36 -8.84,13.03 -1.3,1.93 -2.82,12.64 1.65,35.96 -13.86,63.77 -3.06,32.76 5.94,9.01 5.55,8.43 -2.47,10.89 -3.67,16.19 -4.25,9.79 -0.53,1.24 -9.11,3.65 -0.04,0.01 -9.92,1.96 -5.11,6.93 -6.89,21.83 -6.78,15.02 -1.52,3.37 -1.31,2.82 -8.95,19.31 -11.05,12.11 -14.04,5.79 -3.76,1.55 -34.67,-8.02 -20.35,-4.7 -1.66,-0.31 -0.65,-0.11 -6.83,-1.58 -31,-7.16 -9.14,-4.6 -8.1,-4.07 -6.67,-6.29 -7.17,-6.76 -10.12,-14.46 -14.16,-20.23 -9.92,-6.29 -2.96,0.7 -4.78,1.13 -1.66,0.81 -1.23,0.61 -2.26,1.01 -1,0.45 0.01,0.11 0.04,0.49 -47.39,26.19 -6.83,3.78 -3.6,3.66 -8.5,8.64 -1.23,2.59 -1.98,4.18 -7.43,23.12 -3.46,7.98 -2.72,3.12 -21.18,24.38 -4.12,8.62 -0.02,0.03 -1.6,7.83 0,0 -2.79,6.74 -8.91,5.5 -1.74,0.31 -4.9,0.84 -13.2,-0.62 -5.97,0.51 -9.83,3.22 -4.26,2.39 -0.73,0.42 -3.19,6.78 -2.34,6.72 -2.76,7.94 -1.38,1.97 -1.29,1.82 -2.15,1.28 -6.03,3.57 -1.43,3.24 -0.44,0.99 -0.03,0.07 0.59,2.33 0.58,2.31 6.64,11.85 1.42,7.57 -4.81,24.39 -5.05,25.62 4.93,9.64 6.63,5.39 11.11,9.05 2.85,4.08 1.83,2.62 -0.32,21.95 -9.63,18 -0.01,0.01 -22.43,29.78 -5.15,22.37 -0.48,8.59 -2.25,40.81 -0.95,3.07 -7.19,23.13 15.3,8.71 27.04,6.5 101.3,64.05 152.27,72.99 147.62,80.83 159.67,38.27 1.95,-28.03 1.04,-14.76 -5.09,-27.41 -2.35,-25.84 4.94,-18.84 2.51,-9.54 15.52,-20.1 2.51,-1.38 8.6,-4.66 9.22,-4.98 15.31,-3.19 6.99,-1.45 28.16,2.38 5.07,0.42 1.22,4.27 1.77,6.16 -0.78,14.26 0.71,4.33 1.38,8.51 8.32,7.05 0.45,0.07 10.05,1.51 11.1,-0.22 28.129,4.41 1.391,-0.01 16.012,-0.09 17.5,-4.23 83.129,-34.39 12.66,-9.79 2.629,-14.96 -2,-12.27 0.281,-11.73 0,-0.09 9.469,-13.08 7.261,-3.64 0.969,-0.49 82.82,-4.62 10.551,2.41 5.289,1.2 4.739,3.27 28.761,19.85 89.27,37.7 36.469,24.75 30.031,35.69 0.082,0.1 3.25,7.71 1.117,2.65 6.832,25.53 0.699,4.68 0.09,-0.05 0.949,-0.59 12.102,-13.22 4.82,-10.92 3.84,-20.92 10.5,-14.84 11.801,-12 7.816,-11.12 2.102,-7.22 0.672,-7.14 -2.332,-7.52 -6.551,-9.61 5.742,2.57 2.629,1.01 5.961,6.11 11.289,20.56 -22.941,11.5 -5.2,5.06 -1.988,9.56 2.27,24.07 -1.43,11.91 -4.582,9.15 -9.438,13.54 -0.043,0.05 19.84,-1.86 7.551,-4.92 16.57,-10.81 7.832,-2.92 5.539,-2.06 26.649,-3.64 5.601,-0.76 13.711,6.23 1.098,4.67 3.422,14.53 -0.492,1.59 -2.91,9.24 -0.059,0.09 -14.559,19.74 -1.222,2.79 -3.278,7.52 0.829,8.72 0.23,2.43 4.969,8.54 1.961,7.57 -7.879,9.93 37.711,18.87 24.59,7.28 13.347,3.97 18.5,1.99 2.301,0.24 0.031,-0.01 8.649,-2.28 4.949,-9.75 -1.399,-13.58 -0.468,-4.61 -6.711,-13.74 -1.063,-5.25 -1.066,-5.26 4.348,-3.51 8.289,-6.69 4.851,-0.92 4.27,-0.81 5.172,0.72 15.296,2.16 20.782,-6.91 0.949,-0.31 0.043,0 1.5,-0.01 9.519,-0.05 9.399,2.99 7.32,4.87 0.141,0.14 57.777,63.13 23.453,10.45 9.828,-1.75 0,-0.01 5.422,-2.41 6.778,-3.01 0.121,-0.09 3.031,-2.23 8.18,-6 6.8082,-9.84 0.5,-17.14 -3.4101,-10 -1.918,-5.63 -2.6211,-11.02 -1.262,-5.27 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m -102.012,4986.6 0,0 2.1018,-11.28 1.5704,-8.4 -29.3202,15.83 -7.828,-0.73 -0.043,-0.12 -4.75,-13.14 -0.008,-0.04 14.309,-7.31 48.4683,-4.52 6.0312,-1.75 6.6993,-1.94 12.7031,-7.02 13.4062,-7.41 15.3321,3.27 7.9882,7.3 10.26176,9.37 11.96093,13.98 5.41011,6.32 4.7774,7.24 6.8828,10.42 3.1797,7.16 2.6875,6.08 1.8125,6.83 0.957,3.62 4.4102,6.27 0.1015,0.02 10.879,2.27 0.1914,0.04 1.0898,-1.94 0.6094,-1.09 19.832,-14.67 4.5898,-9.73 7.9805,-16.89 -3.6015,-18.68 -8.6719,-17.22 -1.4688,-9.2 -2.3711,-14.79 3.8516,-10.83 0.0391,-0.05 22.4609,-27.68 0.0586,-0.21 3.1133,-9.98 5.6681,-25.1 2.89,-6.26 0.442,-0.97 0,0 0.637,-0.4 10.793,-6.71 27.058,0.94 3.039,-0.58 9.762,-1.84 11.367,-15.94 -1.668,-39.42 0.238,-0.07 12.153,-3.51 1.121,-0.06 25.418,5.18 82.5,-7.67 14.672,4.58 30.16,19.18 3.578,1.45 10.738,4.36 15.051,-2.5 7.59,-5.2 8.141,-5.57 9.558,-13.96 2.543,-3.72 3.801,-21.99 1.008,-25.38 15.64,-14.3 38.61,-13.59 4.949,-3.67 4.351,-3.23 6.329,-7.98 4.281,-3.54 3.219,-2.67 11.812,-0.53 16.641,2.9 12.859,2.25 5.09,-0.91 3.738,-0.67 11.129,-7.57 13.922,-20.65 8,-7.21 0.922,-0.83 10.769,2.16 10.918,2.18 3.481,-0.32 8.34,-0.76 0.109,-0.28 5.551,-14.7 1.539,-5.17 0.07,-0.22 -5.769,-4.96 -4.649,-4.01 -2.761,-12.85 15.128,-17.69 0.051,-0.06 -4.527,-2.68 -1.942,-1.16 -3.191,-1.18 -3.961,-1.48 -7.828,-0.84 -7.391,0.93 0.391,-2.61 0.762,-5.1 0.968,-3.58 1.418,-3.41 0.59,-1.4 -5.84,-15.08 -3.929,-6.62 -0.5,-0.84 -5.481,-6.84 -7.867,7.42 -6.062,-3.28 -2.321,-6.63 -1.539,-4.39 -0.969,-5.67 -1.519,-8.96 9.008,-13.26 0.062,-0.08 -12.32,-26.6 -29.313,-42.71 -0.128,-0.2 15.82,3.45 6.68,-0.3 6.492,-4.43 -2.102,-3.3 -6.289,-9.88 -13.422,-25.34 -9.527,-13.13 -3.844,-2.77 -7.937,-2.61 -6.45,-1.99 -1.851,-0.57 -43.449,-44.41 -9.903,-10.1 -0.218,-0.23 0.48,-16.68 0.238,-8.13 1.473,-2.48 8.918,-15.09 11.57,-8.76 3.981,-3.14 2.371,-0.98 2.39,-0.99 9.918,-5.61 0.25,-0.14 0.903,-0.29 9.777,-3.16 -0.027,-0.23 -1.133,-8.98 -0.527,-4.27 -3.223,-9.35 -5.379,-15.62 0.75,-0.43 2.52,-1.47 3.718,-2.49 5.711,-3.83 5.082,-1.04 2.34,-0.47 3.27,0.37 4.25,0.48 3.949,5.15 6.609,9.44 1.379,1.97 6.543,4.43 4.059,-1.99 2.519,-1.23 13.879,-16.52 6.844,-5.62 61.297,-0.84 8.441,-3.32 5.539,-1.99 0.992,-0.04 0.5,-0.02 51.059,-3.9 5.762,0.69 8.629,1.04 0.25,0.03 -0.692,-0.74 -0.879,-0.95 -0.461,-2.34 -0.07,-1.75 0.813,-1.39 0.25,-0.44 7.527,-4.62 3.762,-2.31 0.23,-8.21 0.07,-2.42 -3.062,-11.64 1.402,-6.05 0.809,-3.48 9.289,-1.55 28.32,6.52 11.551,-1.64 13.289,-14.07 7.34,-12.17 33.101,-54.79 -0.152,-0.08 -9.789,-5.43 7.59,-16.78 14.32,-8.22 48.981,-3 1.25,-6.54 -3.828,-7.19 -1.403,-2.63 -8.418,-9.48 -0.179,-0.21 -0.133,-3.53 -16.078,-8.83 -13.922,-10.97 -8.891,-7.01 -13.848,-19.98 -0.082,-0.12 11.082,-15.15 -5.968,-8.6 0.949,-4.75 0.027,-0.02 5.492,-2.55 8.25,-0.89 -0.082,-0.14 -5.777,-9.39 -0.012,-0.01 -0.148,-0.24 4.051,-3.65 1.418,-1.28 0.109,-0.24 1.813,-4.08 3.957,-8.87 3.613,-3.27 1.816,-1.66 2.071,-0.07 4.711,-0.18 20.941,5.32 3.328,0.85 0.082,0.07 1.32,1.16 0.411,0.37 0.128,0.11 1.52,0.52 1.48,-0.63 0.079,-0.08 1.722,-1.77 10.688,-5.69 30.172,-8.17 13.05,-1.04 0.047,-0.01 -8.16,-7.38 -0.617,-2.49 -1.563,-6.26 0.411,-2.2 1.461,-7.88 3.378,-11.31 1.903,-3.65 3.738,-7.17 4.133,-0.6 1.09,-0.16 1.297,-2.2 1.152,-1.95 0.051,-0.08 -0.282,-3.55 -1.14,-14.66 -5.512,-24.83 -0.316,-1.45 -5.41,-14.53 0.668,-13 22.921,-43.81 0,-0.08 0.938,-15.71 0.012,-0.15 -6.121,-5.91 -3.18,-3.08 -0.09,-0.08 -18.961,-2.86 -9.719,2.1 -5.019,2.46 -2.77,1.36 -7.89,0.89 -4.039,-2.33 -5.59,-3.22 -4.903,-5.23 -2.57,-2.75 -5.309,-10.99 -1.902,-10.55 2.973,-10.45 0.07,-0.24 -13.652,-11.29 -17.981,-4.15 -12.867,-2.96 -15.359,-6.47 -4.973,-7.55 -2.238,-3.4 -12.61,-7.98 -4.062,-2.57 -7.508,-9.12 0.051,-0.07 8.976,-10.89 0.762,-3.04 2.512,-10.06 -0.844,-12.33 -4.566,-10.42 -1.512,-0.93 -3.898,-2.4 -14.403,-0.62 -1.14,-0.61 -5.047,-2.69 -0.821,-2.25 -0.461,-1.24 -1.789,-7.38 -1.332,-5.45 -1.718,-5.25 6.937,-6.17 2.352,-7.02 0.039,-0.12 -0.649,-1.78 -1.879,-5.19 -6.761,-7.39 -10.328,5.09 -0.051,0.02 -0.481,3.7 -0.691,5.18 0.512,4.67 0.629,5.8 0.011,0.07 -2.64,10.14 -0.782,0.79 -8.32,8.4 -3.867,-0.29 -1.434,-0.11 -0.027,-0.03 -4.723,-5.07 -5.457,-2.73 -1.101,-0.55 -16.328,-1.72 -7.891,1.5 -2.77,1.21 -0.211,0.09 -6.308,3.18 -4.211,8.43 -1.859,10.69 -3.614,4.56 -0.707,0.91 -11.281,-8.38 -8.191,-0.63 -7.008,-0.54 -6.481,-10.32 -3.16,-12.69 -0.469,-1.89 -6.3,-15.65 -11.063,-10.74 -27.019,-11.86 -8.02,-6.79 -4.48,-3.8 -0.09,-0.07 -2.918,-6.96 -1.082,-10.05 -0.797,-7.53 -1.25,-4.28 -0.961,-3.28 -2.039,-2.9 -2.41,-3.42 -11.012,-8.94 -1.82,-2.39 -2.969,-3.91 0.398,-9.16 0.172,-3.81 -0.453,-10.6 -2.078,-8.02 -0.16,-0.63 -0.02,-0.09 -1.14,-1.04 -4.379,-4.02 -14.68,-5.88 -4.801,-5.66 -1.429,-15.28 0.097,-0.13 4.953,-6.56 2.379,-6 0,0 -8.621,-14.94 -3.41,-3.25 -2.508,-2.39 -10.73,-1.9 -5.09,-3.32 -4.75,-5.39 -1.262,-1.43 -1.187,-2.35 -1.731,-3.42 -0.812,-2.16 -1.34,-3.62 -0.688,-1.64 -2.25,-5.31 -17.14,-26.63 -9.801,-15.21 -1.281,-4.25 -1.86,-6.23 8.172,-4.47 2.457,-2.13 12.59,-10.9 6.383,-10.2 0.059,-0.09 -18.719,2.55 -0.223,0.03 0.07,-4.77 0.024,-1.71 -0.992,-2.26 -0.289,-0.65 -1.653,-2.86 -1.297,-3.49 0.118,-0.12 6.472,-6.64 -0.043,-0.02 -8.617,-5.5 -3.883,-10.45 0.563,-13.57 2.027,-6.99 1.953,-6.74 7.059,-13.26 7.031,-3.83 0.027,-0.01 0.571,-0.12 7,-1.39 2.941,-2.08 5.961,-4.2 3.891,-6.1 0.75,-1.18 3.847,-8.6 11.461,-25.63 0.93,-5.34 0.879,-15.37 -0.039,-0.94 -0.078,-1.84 -0.012,-0.15 3.828,-3.22 0.492,-0.41 0.11,-0.09 9.781,-3.38 2.219,-1.35 1.89,-1.16 4.192,-0.78 2.437,0.53 2.153,0.46 2.179,-0.09 2.399,-0.1 0.191,-0.35 3.719,-6.9 0.371,-3.71 0.437,-4.55 -1.187,-1.69 -2.063,-2.89 -3.57,-3.39 -1.43,-6.41 -0.668,-7.05 -2.089,-3.45 -1.289,-4.06 1.226,-4.47 1.07,-3.89 4.813,-3.74 14.059,-2.34 0.089,-0.08 5.082,-4.85 1.981,-8.63 1.566,-6.85 -0.09,-0.18 -4.507,-9.64 -7.172,-6.18 -0.028,-0.03 -5.972,-6.8 -6.219,-14.59 -4.398,-10.31 -6.211,-10.93 -8.352,-7.3 0.133,-0.08 7.387,-4.69 4.382,-2.78 0.047,-0.03 -3.988,-8.82 -3.602,-7.95 -17.597,-16.92 -17.211,-7.53 -7.84,2.02 -0.488,0.12 -0.043,0.03 -15.598,10.66 -7.609,1.51 -8.223,-3.79 -9.73,-11.95 -8.188,-3.41 -0.769,-0.31 -0.043,0 -15.528,3.61 -15.359,8.37 -15.922,4.21 0,0 -18.398,-8.58 -9.262,-11.27 -0.09,-0.11 -1.879,-7.57 -0.641,-1.18 -1.851,-3.43 -4.891,-0.31 -5.898,-0.38 -6.43,2.08 -22.101,11.6 -9.637,-4.12 -4.043,-1.73 -9.18,-6.39 -9.879,-6.88 -14.59,-7.79 -4.699,-2.51 -15.519,4.87 -2.934,8.03 -0.789,2.16 1.223,9.96 2.816,10.49 0.293,6.21 0.231,4.96 -2.563,10.71 -31.82,64.61 -12.797,12.38 -21.762,9.32 -3.699,2.57 -4.481,3.12 -4.179,0.76 -0.211,0.04 -0.129,0.03 -2.832,-2.83 -3.348,-5.71 -4.09,-5.7 -1.3,-0.39 -3.789,-1.15 -11.723,2.94 -0.109,0.15 -3.372,4.63 -0.089,0.12 -0.52,5 -0.519,5.07 3.058,15.74 0,0.02 0.82,0.45 5.102,2.8 1.328,1.62 1.934,2.37 -4.184,16.7 -12.879,17.73 -14.418,15.94 -0.101,0.1 -8.6409,0.11 -6.6172,0.08 -11.8711,-2.56 -21.4102,-4.6 -16.1523,5.54 -12.8672,10.68 -3.1992,3.34 -6.9414,7.2 -16.30862,26.75 -11.90235,19.52 -8.19923,8.57 -0.0195,0.02 -0.1016,0.1 -5.6484,1.89 -19.5,6.52 -14.0391,9.01 -25.25,27.86 -10.3633,6.46 -0.9296,0.81 -1.2383,1.07 -7.4685,-0.18 -7.832,-0.18 -14.371,-4.01 -17.438,-4.86 -12.051,-1.5 -4.468,-0.56 -11.122,2.4 -7.378,1.58 -0.012,0.01 -6.012,8.6 1.25,19.45 1.442,22.28 -1.489,6.35 -0.051,0.21 -6.55,12.15 -1.231,5.39 1.922,6.98 6.879,7.28 0.441,0.88 2.118,4.28 1.222,3.68 3.391,10.24 2.019,4.08 2.25,4.52 2.438,9.89 -0.328,6.49 -0.403,7.72 -9.718,20.85 -0.16,0.32 0,0 -19.481,9.37 -13.758,6.62 -0.101,0.05 -8.629,15.81 4.039,17.49 22.558,48.13 8.954,19.11 0,0.04 0.277,2.29 1.152,9.38 -0.621,9.48 0.949,7.25 0.352,2.7 0.027,0.05 4.25,8.18 10.633,20.43 0.09,0.02 4.519,0.91 7.079,-8.63 0.031,0.16 1.738,11.18 1.231,7.93 5.043,22.74 0.5,5.27 1.347,14.1 -5.969,9.17 -22.55,-3.47 -8.11,4 -2,15.88 -0.101,0.77 -19.758,-7.76 -80.813,-72.64 -4.648,-8.6 -2.531,-11.06 1.109,-4.84 0.402,-1.73 0.942,-2.49 1.34,-3.55 0.148,-3.4 0.192,-4.28 -2.532,-11.41 -5.211,-23.55 -5.949,-17.35 -1.09,-1.9 -6.101,-10.67 -5.629,-2.9 -2.61,-1.35 -29.859,-2.97 -25.93,-11.08 -77.203,-32.9 -21.449,-2.23 -7.117,2.19 -85.684,29.62 -18.359,6.37 -20.758,-1.79 -34.402,-2.94 -7.649,2.91 -1.648,0.63 -38.543,24.22 -0.238,0.15 5.507,-0.95 0.161,-0.03 -0.047,10.36 -0.032,6.2 -1.32,8.5 -1.379,8.8 -3.152,1.33 -0.168,0.07 0,0.01 3.867,12.71 3.512,7.13 0.43,0.89 0.05,0.05 5.7,6.06 8.332,7.02 5.339,4.49 12.411,7.63 5,3.07 10.046,4.29 7.801,3.33 0.16,0.07 0.321,4.98 0.14,2.08 -4.39,9.13 -2.008,6.33 -1.453,4.53 -9,48.99 -6.93,3.99 -7.641,-0.68 -14.777,-5.53 -4.242,2.29 -5.68,3.06 2.68,16.7 0.512,3.19 10.449,27.68 6.082,16.1 5.098,20.34 3.66,7.86 0.34,0.74 8.21,10.1 17.848,12.42 1.07,1.14 6.243,6.67 1.328,5.54 1.312,5.5 -4.043,7.93 -8.187,8.2 -5.91,4.1 -3.5,2.42 -6.129,2.72 -0.121,0.05 -8.911,-2.97 -0.031,-0.26 -0.84,-7.35 0.141,-3.89 0.129,-3.62 0,-0.18 -1.988,-1.55 -3.61,-2.81 -8.441,4.45 -4.36,2.3 -12.609,32.93 -3.851,10.08 -0.09,0.09 -13.77,13.8 -9.422,6.64 -5.398,3.8 -21.57,27.43 -0.719,0.39 -12.781,7 -6.68,-0.07 -8.461,-0.09 -30.75,-10.81 -15.738,-5.52 -9.692,0.66 -6.48,0.45 -2.891,1.57 -9.5,5.19 -6.449,5.45 -4.988,4.2 -14.129,8.68 -29.481,5.61 -31.019,-0.18 -4.364,-1.49 -5.707,-1.96 -6.113,-6.05 -14.34,-20.86 -2.75,-6.49 -0.886,-2.1 -0.864,-1.37 -1.269,-2.03 -3.547,-2.11 -1.043,1.23 -0.02,0.02 -1.179,-0.49 -3.11,-6.87 -23.172,25.29 -3.136,45.73 3.726,51.73 -2.91,43.35 -10.088,22.02 -12.9,14.53 -15.2,8.79 -15.89,4.71 -42.93,3.17 -2.82,0.21 -8.17,7.1 0.04,0.05 7.08,10.9 0.58,0.89 1.75,8.73 -4.03,6.22 -3.04,1.32 -6.83,2.97 -7.12,-0.3 -3.07,-0.12 -6.27,-3.31 -1.59,-0.84 -2.57,-2.31 -4.69,-4.22 -2.88,-1.77 -7.43,-4.55 -25.01,-7.36 -7,-2.06 -6.5,-0.17 -10.89,-0.27 -12.1,4.47 -29.51,18.23 -8.78,8.36 -8.84,13.03 -1.3,1.93 -2.82,12.64 1.65,35.96 -13.86,63.77 -3.06,32.76 5.94,9.01 5.55,8.43 -2.47,10.89 -3.67,16.19 -4.25,9.79 -0.53,1.24 -9.11,3.65 -0.04,0.01 -9.92,1.96 -5.11,6.93 -6.89,21.83 -6.78,15.02 -1.52,3.37 -1.31,2.82 -8.95,19.31 -11.05,12.11 -14.04,5.79 -3.76,1.55 -34.67,-8.02 -20.35,-4.7 -1.66,-0.31 -0.65,-0.11 -6.83,-1.58 -31,-7.16 -9.14,-4.6 -8.1,-4.07 -6.67,-6.29 -7.17,-6.76 -10.12,-14.46 -14.16,-20.23 -9.92,-6.29 -2.96,0.7 -4.78,1.13 -1.66,0.81 -1.23,0.61 -2.26,1.01 -1,0.45 0.01,0.11 0.04,0.49 -47.39,26.19 -6.83,3.78 -3.6,3.66 -8.5,8.64 -1.23,2.59 -1.98,4.18 -7.43,23.12 -3.46,7.98 -2.72,3.12 -21.18,24.38 -4.12,8.62 -0.02,0.03 -1.6,7.83 0,0 -2.79,6.74 -8.91,5.5 -1.74,0.31 -4.9,0.84 -13.2,-0.62 -5.97,0.51 -9.83,3.22 -4.26,2.39 -0.73,0.42 -3.19,6.78 -2.34,6.72 -2.76,7.94 -1.38,1.97 -1.29,1.82 -2.15,1.28 -6.03,3.57 -1.43,3.24 -0.44,0.99 -0.03,0.07 0.59,2.33 0.58,2.31 6.64,11.85 1.42,7.57 -4.81,24.39 -5.05,25.62 4.93,9.64 6.63,5.39 11.11,9.05 2.85,4.08 1.83,2.62 -0.32,21.95 -9.63,18 -0.01,0.01 -22.43,29.78 -5.15,22.37 -0.48,8.59 -2.25,40.81 -0.95,3.07 -7.19,23.13 15.3,8.71 27.04,6.5 101.3,64.05 152.27,72.99 147.62,80.83 159.67,38.27 1.95,-28.03 1.04,-14.76 -5.09,-27.41 -2.35,-25.84 4.94,-18.84 2.51,-9.54 15.52,-20.1 2.51,-1.38 8.6,-4.66 9.22,-4.98 15.31,-3.19 6.99,-1.45 28.16,2.38 5.07,0.42 1.22,4.27 1.77,6.16 -0.78,14.26 0.71,4.33 1.38,8.51 8.32,7.05 0.45,0.07 10.05,1.51 11.1,-0.22 28.129,4.41 1.391,-0.01 16.012,-0.09 17.5,-4.23 83.129,-34.39 12.66,-9.79 2.629,-14.96 -2,-12.27 0.281,-11.73 0,-0.09 9.469,-13.08 7.261,-3.64 0.969,-0.49 82.82,-4.62 10.551,2.41 5.289,1.2 4.739,3.27 28.761,19.85 89.27,37.7 36.469,24.75 30.031,35.69 0.082,0.1 3.25,7.71 1.117,2.65 6.832,25.53 0.699,4.68 0.09,-0.05 0.949,-0.59 12.102,-13.22 4.82,-10.92 3.84,-20.92 10.5,-14.84 11.801,-12 7.816,-11.12 2.102,-7.22 0.672,-7.14 -2.332,-7.52 -6.551,-9.61 5.742,2.57 2.629,1.01 5.961,6.11 11.289,20.56 -22.941,11.5 -5.2,5.06 -1.988,9.56 2.27,24.07 -1.43,11.91 -4.582,9.15 -9.438,13.54 -0.043,0.05 19.84,-1.86 7.551,-4.92 16.57,-10.81 7.832,-2.92 5.539,-2.06 26.649,-3.64 5.601,-0.76 13.711,6.23 1.098,4.67 3.422,14.53 -0.492,1.59 -2.91,9.24 -0.059,0.09 -14.559,19.74 -1.222,2.79 -3.278,7.52 0.829,8.72 0.23,2.43 4.969,8.54 1.961,7.57 -7.879,9.93 37.711,18.87 24.59,7.28 13.347,3.97 18.5,1.99 2.301,0.24 0.031,-0.01 8.649,-2.28 4.949,-9.75 -1.399,-13.58 -0.468,-4.61 -6.711,-13.74 -1.063,-5.25 -1.066,-5.26 4.348,-3.51 8.289,-6.69 4.851,-0.92 4.27,-0.81 5.172,0.72 15.296,2.16 20.782,-6.91 0.949,-0.31 0.043,0 1.5,-0.01 9.519,-0.05 9.399,2.99 7.32,4.87 0.141,0.14 57.777,63.13 23.453,10.45 9.828,-1.75 0,-0.01 5.422,-2.41 6.778,-3.01 0.121,-0.09 3.031,-2.23 8.18,-6 6.8082,-9.84 0.5,-17.14 -3.4101,-10 -1.918,-5.63 -2.6211,-11.02 -1.262,-5.27 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7227" /><path
+               id="path3184" /><path
                d="m 8661.04,2065.54 0,0 12.29,-51.2 -3.43,-20.19 -10.78,-14.06 -11.17,-11.12 -4.4,-11.04 -2.36,-15.18 -16.41,-29.82 -5.93,-15.72 -1.41,-16.18 -0.46,-59.95 -1.18,-7.19 -1.5,-3.49 -0.78,-5.19 0.8,-12.23 2.98,-6.45 6.09,-2.88 15.08,-0.04 4.46,-2.03 8.47,-5.62 8.45,-7.68 4.28,-8.46 -1.17,-5.11 -2.25,-6.72 -0.79,-5.77 3.45,-1.96 2.24,-2.15 3.1,-5.3 3.03,-6.12 1.45,-4.96 3.13,-6.28 6.04,-3.06 7.06,-2.39 8.97,-6.61 4.76,-1.1 3.16,-3.56 1.19,-4.74 0.33,-12.81 0.86,-5.28 15.74,-38.67 5.62,-19.71 2.59,-24.06 7.11,-16.75 20.88,-18.58 10.87,-5.18 12.1,-0.58 8.36,-4.2 17.49,-25.16 10.78,-9.33 -6.62,-10.19 -2.66,-11.65 -2.05,-21.1 3.12,-1.53 9.7,-6.49 -2.08,-18.63 18.08,-7.55 25,-6.03 19.06,-13.78 -42.6,-44.14 8.82,-8.3 0.42,-6.91 -2.89,-7.33 -1.08,-9.74 -1.27,-2.02 -6.44,-5.47 -1.67,-3.36 1.28,-4.74 3.94,-1.85 4.06,-0.85 1.78,-2.04 -1,-20.09 -2.79,-15 -6.23,-12 -11.26,-10.99 -25.26,-8.47 -8.83,-5.88 1.49,-12.08 5.24,-4.5 16.44,-5.62 6.33,-3.81 9.36,-19.99 5.6,-6.51 -9.9,-13.66 3.01,-19 7.38,-21.96 5.19,-36.12 4.89,-10.8 7.23,-7.8 9.08,-4.44 -14.66,-8.79 -53.85,-13 -57.9,-21.03 -28.97,2.31 -13.9,27.98 -9.06,-9.42 -12.33,-24.93 -7.47,-9.02 -6.43,-2.25 -42.91,2.4 -8.55,4.12 -9.24,7.86 -6.89,10.9 -3.96,11.43 -5.02,9.58 -10.11,5.68 -62.33,17.42 -31.81,0.86 -26.26,-15.15 -3.44,-11.17 2.75,-14.5 -3.17,-9.96 -5.75,-6.76 -28.37,-18.72 -8.14,-8.9 -4.66,-3.55 -3.56,0.38 -4.05,3.12 -4.87,5.06 -4.97,-6.1 -9.61,-19.579 -5.79,-8.949 14.32,-6.531 43.69,-12.949 20.33,6.668 51.39,-15.36 24.34,6.68 17.11,-5.899 14.86,-16.32 8.59,-21.801 -2.06,-21.941 13.45,-5.91 11.47,-9.547 7.21,-13.332 0.85,-17.192 -6.6,-14.968 -21.01,-11.418 -7.64,-10.114 7.45,-44.429 -35.79,-34.117 -77.43,-44.911 -10.45,13.821 -10.73,6.027 -9.18,-3.488 -6.28,-14.789 5.96,-42.403 -1.33,-3.429 -3.56,-2.309 -2.99,-3.301 0.17,-6.621 2.51,-4.039 3.61,-1.512 3.48,-0.968 2.24,-2.008 27.58,-45.922 4.8,-17.949 -3.57,-15.352 -9.76,-10.84 -22.31,-14.968 0.01,-0.082 0,-0.028 4.36,-19.133 -9.33,-25.449 4.41,-18.078 4.91,-3.473 5.98,1.09 6.39,0.012 5.78,-6.691 1.17,-9.727 -4.37,-19.531 0.35,-6.172 10.82,-5.738 24.43,14.738 12.57,0 10.54,-12.598 -2.35,-13.34 -15.11,-24.539 -15.04,-11.472 -3.38,-16.68 7.05,-14.121 15.79,-3.637 9.37,-3.683 3.23,-5.508 -2.48,-6.379 -8.02,-6.301 -32.66,-17.062 -8.68,-9.45 22,-0.597 11.18,-2.571 11.87,-9 4.54,-11.699 -14.04,-4.851 -19.77,-2.121 -12.42,-3.559 0.01,-0.121 -3.01,-3.348 -3.6,-1.273 -4.03,0.711 -4.38,2.66 -14.05,8.621 -16.28,0.461 -30.59,-6.684 -28.88,3.051 -10.23,-2.367 -6.08,-12.961 -1.73,-17.152 -5.66,-5.649 -7.38,-2.359 -7.09,-7.321 -1.34,-6.949 1.2,-6.121 0.23,-6.781 -4.36,-8.559 -4.89,-4.558 -15.25,-8.242 -18.04,-15.961 -7.97,-9.938 -24.18,-40.2304 -8.9,-10.2695 -11.69,-6.8203 -44.72,-32.2813 -33.12,-11.4179 -4.26,-2.9922 -6.71,-8.4883 0.93,-2.3789 3.61,-2.16017 1.33,-7.8125 -2.21,-34.96873 0.56,-19.5899 2.36,-19.4023 11.18,-26.3984 17.2,-8.9302 10.14,-16.421 3.96,-25.477 -16,16.789 -8.9,5.109 -31.53,2.75 -54.11,21.602 -21.6,2.328 -21.08,-3.691 -49.98,-25.379 -20.12,-2.891 -59.26,3.699 -12.95,6.454 -0.95,-16.973 1.28,-14.25 -3.76,-10.117 -7.4,-6.582 -9.64,-3.641 -11.81,2.301 -16.26,-1.598 -16,-5.672 -10.95,-9.898 -6.19,-16.442 -1.4,-12.832 -4,-11.367 -13.31,-12.371 -22.6,-5.941 -18.22,9.39 -18.39,13.661 -23.23,6.628 -139.6,-18.589 -110.27,3.222 -42.95,-17.511 -25.39,-42.809 -16.31,20.008 -11.16,1.242 -26.15,-19.379 -15.66,-3.312 -10.86,0.519 -9.35,-4.828 -11.44,-19.551 -7.32,-19.359 -8.98,-35.871 -11.86,-33.688 -4,-4.07 -16.4,-8.992 -19.43,-4.711 -7.17,4.351 -12.34,-6.691 -4.22,-5.617 -3.26,-7.821 -8.18,-11.472 -4.49,-14.117 -10.36,1.097 -3.43,-1.168 -14.24,-17.179 -7.57,-5.731 -7.61,-2.851 -16.56,-2.68 -7.25,-3.57 -10.2,-17.141 -4.91,-21.949 -5.86,-18.758 -12.94,-6.82 -10.92,9.929 -9.99,18.43 -11.49,13.699 -26.08,-8.16 -13,1.121 -24.5,9.328 -4.64,4.871 -2.9,6.09 -4.01,4.969 -8.3,1.281 -25.49,-7.449 -163.35,-6.223 -9.85,2.012 -45.58,34.43 -11.63,4.929 -12.77,2.93 -13.5,-0.519 -25.56,-6.29 -12.71,0.75 -72.26,28.782 -23.38,2.418 -49.29,-11.231 -10.45,-0.758 -51.4,9.27 -11.67,0.281 -11.83,-3.07 -11.64,0.519 -94.56,24.707 -32.63,-0.668 -6.1,3.77 -11.55,11.73 -5.43,1.739 -46.53,-6.059 -33.83,4.012 -77.19,-20.961 -30.97,-0.121 -16.51,5.629 -50.29,27.351 -63.53,11.25 -179.91,3.91 -44.88,26.29 -26.2,7.441 -5.97,-1.09 -12.04,-5.379 -7.18,-0.57 -7.19,2.769 -14.41,9.891 -7.51,2.977 -37.97,2.101 -44.25,-7.89 -11.28,0.582 -12.93,5.519 -24.35,15.02 -41.82,5.461 -31.61,11.339 -27.47,22.231 -15.98,35.027 -7.74,24.031 -13.06,7.649 -15.95,1.512 -16.19,5.48 -7.55,4.859 -4.52,4.18 -2.13,7.449 -0.44,14.36 1.52,12.941 2.51,7.82 1.79,8.122 -0.8,13.66 -8.03,24 -12.39,7.789 -32.1,-0.199 -10.55,3.418 -4.86,5.21 -4.46,6.8091 -9.02,8.4921 -8.67,3.9376 -18.08,2.4921 -8.15,2.9493 10.73,11.5312 -0.33,10.168 -5.69,10.289 -5.45,12.1836 -5.66,25.44925 -3.81,12.55859 -5.47,10.83206 7.24,19.7773 44.99,27.5196 15.27,22.5703 -0.73,29.3009 -18.13,5.41 -48.49,-11.578 -75.34,-43.1017 -54.07,-4.6406 -33.1,-12.8594 -31.63,-18.6406 -25.49,-21.80079 -34.3,-6.73829 -8.22,-5.69921 -14.5,-12.72261 -8.73,-2.3477 -14.42,4.8984 -25.23,17.41019 -14.51,1 -5.71,-1 -5.75,0.33203 -0.95,0.25 -0.4,-0.01172 -39.39,6.6719 -18.02,-2.29299 -21.87,-7.179691 -0.08,-0.007813 -0.15,-0.121094 -0.08,0 -7.02,-4.078122 -7.11,-1.55078 -6.96,1.03906 -6.49,3.6992175 -4.18,5.2695325 -4.53,4.01953 -5.04,2.75005 -13.46,2.7617 -7.56,-1.9922 -6.6,-5.34768 -5.54,-8.83203 -0.08,-0.10937 -25.08,-25.80862 -23.31,0.461 -24.01,10.8281 -27.29,5.1094 -53.02,-10.4493 -52.19,-18.6015 -13.38,-8.5274 -47.92,-50.3203 -5.93,-13.8316 -7,-39.289 -13.44,-34.629 -0.52,-4.262 1.17,-11.52 -1.19,-5.609 -3.22,-3.668 -8.34,-4.043 -3.07,-3.07 -16.37,-29.731 L 4331,-260 l -10.85,-1.801 -13.05,4.012 -26.66,1.949 -13.05,-2.148 -25.28,-9.231 -7.56,-0.761 -7.89,3.062 -13.29,10.859 -6.94,3.399 -7.82,-0.059 -14.42,-4.472 -7.5,0.113 -22.21,11.969 -8.91,2.75 -15.97,-5.43 -8.22,0.098 -4.78,9.64 3.43,5.563 16.65,14.117 3.53,7.781 -7.66,11.059 -59.07,33.652 -11.8,2.859 -13.44,-1.781 -77.1,-22.89 -31.66,2.902 -25.12,19.598 -2.25,23.691 8.75,37.93 -4.44,18.6716 -6.92,7.9687 -26.25,20.0899 -16.33,25.2695 -8.01,8.3008 -0.01,0.1718 -0.07,0 -4.06,2.5391 -4.26,0.7578 -4.15,-0.9101 -21.86,-13.0391 -18.81,-22.3203 -12.87,-25.7188 -0.05,-20.7619 -18.95,-1.199 -14.85,3.6406 -12.32,-2.4996 -11.26,-19.672 -3.4,-14.129 -0.49,-9.371 -1.91,-8.528 -7.63,-11.461 -32.99,-17.41 -19.62,-5.89 -15.76,0.379 -33.08,10.113 -17.31,9.699 -29.82,27.609 -81.79,25.282 -19.05,14.2575 -9.83,13.6211 -1.37,10.4102 2.3,12 1.6,26.0898 3.03,10.6602 -0.08,6.539 -2.94,3.4219 -4.71,-0.4297 -3.25,2.7188 1.12,12.67967 -143.98,43.85153 -12.73,1.8164 -39.76,-5.2578 -14.24,3.6602 20.75,26.7109 5.03,28.9297 -7.9,28.2776 -18.22,25.023 -22.65,13.156 -0.15,9.641 7.4,16.77 0.72,7.933 -6.6,15.367 -7.27,9.633 -3.43,9.738 4.97,15.508 -12.83,11.711 -6.95,10.121 24.03,41.352 25.55,31.25 2.83,7.66 3.75,19.617 3.44,9.992 28.96,37.188 7.19,16.941 0.23,47.102 -21.73,18.828 -28.13,12.59 -22.51,33.379 -5.79,26.152 0,0.059 1.79,-1.078 47.32,-12.602 48.24,1.23 20.45,9.95 10.73,17.101 9.14,20.301 16.22,19.227 10.83,5.902 11.25,1.379 10.69,-3.738 8.88,-9.5 2.62,-13.133 -1.33,-13.539 3,-11.711 15.4,-7.77 6.07,0.531 9.19,6.071 3.8,1.078 22.73,-8.129 22.42,-1.52 11.33,2.372 9.01,7.41 2.33,-18.352 7.98,-10.301 9.54,-9.3 7.03,-14.879 0.05,-3.36 0.27,-3.379 1.25,-6.48 8.32,-4.832 6.58,2.953 6.62,5.949 8.52,4.02 37.8,-53.781 6.81,-12.942 -3.35,-11.738 -16.97,-13.578 8.4,-9.543 2.18,-11.508 0.87,-11.941 4.2,-10.571 7.44,-7.019 5.07,0.3 5.71,4.36 9.85,4.879 3.75,-0.43 7.87,-4.629 3.9,0.031 3.17,2.508 8.83,10.039 33.06,6.532 14.01,-7.278 -0.24,-20.023 -13.03,-41.328 1.83,-7.27 0.49,-6.66 -1.76,-7.43 -3.62,-3.679 -9.95,-3.133 -3.02,-2.149 -6.77,-12.648 -2.94,-6.992 3.39,-1.899 60,8.27 16.39,6.668 33.49,21.32 14.54,13.742 13.27,18.5 16.2,34.028 4.4,7.05 7.71,5.403 15.82,5.82 6.4,4.488 12.25,16.91 10.58,22.68 6.4,25.11 -0.61,23.832 -3.37,13.699 -4.23,9.719 -6.59,7.05 -10.7,5.578 6.82,44.454 0.74,10.296 -5.21,12.34 -6.75,12.141 -1.26,9.57 11.18,4.66 12.55,2.5 5.71,2.379 2.68,-2.019 3.54,-10.309 -0.85,-4.379 -3.55,-5.41 -2.67,-7.109 1.5,-9.512 4.06,-5.039 6.23,-4.25 11.85,-5.172 32.14,-4.258 8.84,1.719 9.41,7.891 14.82,21.578 10.27,7.48 18.2,0.141 100.12,-35.418 3.11,-3.434 2.62,-5.687 3.85,-5.199 6.5,-1.801 22.2,3.199 30.02,14.609 10.58,3.301 10.44,-0.469 8.12,-4.351 17.59,-12.59 -6.12,-7.789 -23.88,-17.152 5.35,-8.688 39.21,-17.039 38.64,-39.613 2.39,-4.989 0.42,-7.46 -1.52,-7.739 -2.29,-5.172 -1.79,-0.16 8.1,-14.847 10.68,-5.883 78.73,0.902 14.62,4.91 48.34,35.457 18.87,5.731 16.33,-6.137 -0.78,-30.262 18.15,-1.55 16.24,8 10.42,11.859 9.59,13.73 14.17,13.981 13.89,4.902 32.71,1.758 12.07,5.629 6.13,11.223 -3.14,8.187 -8.34,5.109 -9.35,2.25 34.25,41.954 16.99,4.546 18.6,-1.937 17.22,-4.859 35.14,7 16.13,7.027 13.19,15.672 3.47,10.398 5.06,25.922 4.74,11.949 20.37,18.91 2.45,3.301 13.93,0.008 33.01,-5.418 61.25,1.891 42.66,-7.172 7.68,2.859 6.85,19.172 8.28,5.367 62.59,15.211 172.96,-0.719 5.93,1.481 20.3,28.391 2.42,7.199 0.35,10.429 -2.47,29.629 -2.35,6.032 -3.91,2.398 -6.37,5.832 -5.81,7.07 -2.66,6.047 -1.84,9.012 11.66,5.309 17.43,15.793 6.34,4.347 10.73,5.25 1.84,0.461 -2.11,-5.18 -1.44,-11.941 -2.27,-8.898 -4.53,-6.86 -2.15,-7.859 4.62,-12.09 7.72,-6.32 8.09,1.578 16.39,9.461 16.26,3.051 43.75,-7.383 12.63,2.613 28.97,12.609 12.43,-1.871 3.78,-6.25 8.88,-23.34 4.52,-8.921 6.37,-6.989 23.16,-16.968 10.79,-4.723 15.47,0.293 15.7,3.816 11.48,5.742 32.07,31.399 13.94,7.851 26.46,7.68 26.76,1.27 42.64,-8.828 12.8,2.289 -6.82,-19.782 12.5,-13.898 20.11,-11.91 15.62,-13.68 -20,-11.172 -7.92,-26.199 5.3,-27.23 19.32,-14.071 11.69,-1.437 7.2,-2.184 6.63,-4.797 36.27,-36.152 38.3,-26 8.42,-2.938 6.27,2.539 6.06,3.7 7.85,0.64 7.44,-3.511 4.43,-4.2 4.82,-2.64 8.08,0.793 4.99,4.808 20.16,26.61 -0.71,9.23 -2.3,6.649 -2.71,5.55 -2.03,6 -0.98,6.86 -1,19.351 1.71,3 6.22,18.371 0.77,1.649 -1.6,-0.711 -1.93,25.172 2.06,-0.641 11.28,16.539 0.31,3.09 7.77,22.492 1.74,2.508 0.92,13.52 -0.24,13.523 -2.85,14.129 -6.82,15.82 -15.97,24.328 -9.81,10.68 -9.66,6.52 -11.72,1.269 -18.56,-9.34 -11.14,-2.5 -42.18,5.66 -12.87,11.813 12.86,22.238 0.15,0.121 -0.01,0.059 4.41,8.109 0.94,7.41 -0.13,7.133 1.12,7.141 3.66,8.937 44.29,79.93 -3.65,3.332 -17.4,23.279 -28.34,57.5 -13.21,11.71 -6.19,2.94 -15.83,14.77 -18.43,9.84 -6.46,8.51 -4.59,11.43 -2.92,13.44 -12.41,24.25 -55.16,52.31 -7.46,10.63 -7.27,13.05 -4.48,14.46 0.73,15.06 4.15,8.21 4.69,1.87 4.85,0 4.44,2.29 9.79,17.15 2.82,3.82 28.56,22.19 9.13,11.63 12.52,22.1 6.38,7.74 10.91,6.57 40.74,10.1 -1.13,2.6 11.03,9.89 23.26,14.59 26.23,27.97 11.51,9.15 75.27,34.65 101.16,23.44 24.12,15.31 68.81,67.4 9.33,17.91 2.84,23.82 1.12,5.82 3.03,5.94 2.85,7.83 0.85,11.66 -3.19,31.3 0.77,10.41 2.92,10.4 8.69,21.62 1.43,10.94 -2.17,9.67 -7.49,10.31 -4.14,19.87 -2.5,4.86 -0.69,4 3.59,7.96 6.27,6.53 23.55,10.45 24.49,4.79 77.71,-16.78 13.31,-6.16 12.51,-8.17 12.34,-16.65 31.09,-11.78 1.7,-1.59 4.73,30.06 5.46,13.05 2.55,-0.42 15.17,3.42 5.71,2.9 5.72,6.43 3.18,5.48 10.92,28.18 3.65,14.87 1.28,16.17 -0.65,18.69 -6.14,35.64 1.06,13.38 9.22,9.98 -9.48,3.84 -3.86,3.16 -8.8,14.95 -3.71,-1.62 1,10.67 19.03,47.67 30.03,-6.05 14.46,-6.74 14.04,-9.59 16.97,-12.34 51.23,-24 6.92,-6.58 13.47,-17.97 5.32,-8.82 3.96,-3.25 5.23,-1.73 4.62,-2.81 2.35,-6.65 -0.91,-7.04 -3.28,-1.25 -3.62,0.45 -2.1,-1.75 -4.27,-10.72 -4.08,-1.83 -1.16,-3.3 4.42,-14.93 3.6,-5.88 13.76,-15.01 6.54,-5.1 25.75,-8.84 105.24,-4.66 74.94,-20.78 7.03,1.3 5.63,2.7 14.03,12.95 37.15,19.21 10.81,12.8 13.39,45.01 10.2,8.18 19.15,-19.52 30.5,-13.26 8.83,-1.49 10.86,3.27 21.3,12.23 11.28,1.76 5.02,-3.82 1.44,-7.02 0.62,-7.4 2.7,-4.51 5.76,-0.21 10.98,4.77 4.88,-0.71 8.69,-9.89 5.12,-10.13 6.33,-6.83 12.17,0.1 13.68,15.88 1.57,29.16 -2.93,33.93 0.42,30.19 12.21,23.61 36.11,36.91 2.1,21.52 6.38,13.59 1.93,13.72 3.52,10.89 10.75,5.1 38.72,-2.34 39.16,-12.61 14.77,2.54 6.9,20.12 -1.76,1.89 -3.82,6.92 -3.87,8.53 -1.99,6.89 0.6,7.84 4.21,14.43 10.07,70.79 -2.35,30.71 -5.7,33.75 -2.19,31.65 8.13,24.21 -1.16,5.97 -0.41,5.17 0.84,3.82 2.2,2.02 15.84,3.34 41.75,-10.71 57.26,-0.07 6.64,-15.23 4.32,-14.84 0.93,-15.12 -3.56,-16.24 14.55,0.89 54.57,19.61 3.58,2.73 9.13,13 1.93,6.06 0.58,15.07 2.57,4.78 5.59,0.52 4.08,-4.29 3.48,-5.26 3.84,-2.22 34.26,2.46 16.72,-3.28 36.65,-14.95 33.44,-8.2 16.5,-7.66 38.85,-28.24 62.43,-18.24 59.68,-27.09 16.78,-2.45 16.89,1.5 12,5 24.82,16.1 6.22,2.12 22.4,2.07 4.53,-2.83 4.19,-13.4 4.15,-5.35 5.19,-1.67 14.11,0.23 8.56,-5.12 5.67,-1.97 6.1,0.95 -6.59,-10.61 9.04,3.03 8.29,0.4 5.91,-4.49 1.83,-11.64 12.13,4.35 4.3,-4.41 0.71,-7.69 1.56,-5.41 78.75,-46.92 40.51,-13.25 67.47,10.46 104.16,-5.39 0.76,0.83 15.04,3.77 10.48,-6.98 4.23,-0.92 11.21,4.51 7.31,8.3 31.01,67.45 11.9,9.74 21.46,-1.01 7.55,1.09 12.71,6.94 6.65,1.59 6.98,-1.63 13.3,-6.78 45.1,-8.36 13.74,-0.24 14.6,-4.26 7.11,-12.79 4.35,-15.67 6.64,-12.61 10.32,-5.79 11.9,-0.88 27.82,3.99 11.63,-2.7 28.37,-14.89 14.04,-3.66 13.95,3.18 27.2,12.96 12.17,0.34 19.93,-22.63 17.85,-72.44 28.5,-26.89 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 8661.04,2065.54 0,0 12.29,-51.2 -3.43,-20.19 -10.78,-14.06 -11.17,-11.12 -4.4,-11.04 -2.36,-15.18 -16.41,-29.82 -5.93,-15.72 -1.41,-16.18 -0.46,-59.95 -1.18,-7.19 -1.5,-3.49 -0.78,-5.19 0.8,-12.23 2.98,-6.45 6.09,-2.88 15.08,-0.04 4.46,-2.03 8.47,-5.62 8.45,-7.68 4.28,-8.46 -1.17,-5.11 -2.25,-6.72 -0.79,-5.77 3.45,-1.96 2.24,-2.15 3.1,-5.3 3.03,-6.12 1.45,-4.96 3.13,-6.28 6.04,-3.06 7.06,-2.39 8.97,-6.61 4.76,-1.1 3.16,-3.56 1.19,-4.74 0.33,-12.81 0.86,-5.28 15.74,-38.67 5.62,-19.71 2.59,-24.06 7.11,-16.75 20.88,-18.58 10.87,-5.18 12.1,-0.58 8.36,-4.2 17.49,-25.16 10.78,-9.33 -6.62,-10.19 -2.66,-11.65 -2.05,-21.1 3.12,-1.53 9.7,-6.49 -2.08,-18.63 18.08,-7.55 25,-6.03 19.06,-13.78 -42.6,-44.14 8.82,-8.3 0.42,-6.91 -2.89,-7.33 -1.08,-9.74 -1.27,-2.02 -6.44,-5.47 -1.67,-3.36 1.28,-4.74 3.94,-1.85 4.06,-0.85 1.78,-2.04 -1,-20.09 -2.79,-15 -6.23,-12 -11.26,-10.99 -25.26,-8.47 -8.83,-5.88 1.49,-12.08 5.24,-4.5 16.44,-5.62 6.33,-3.81 9.36,-19.99 5.6,-6.51 -9.9,-13.66 3.01,-19 7.38,-21.96 5.19,-36.12 4.89,-10.8 7.23,-7.8 9.08,-4.44 -14.66,-8.79 -53.85,-13 -57.9,-21.03 -28.97,2.31 -13.9,27.98 -9.06,-9.42 -12.33,-24.93 -7.47,-9.02 -6.43,-2.25 -42.91,2.4 -8.55,4.12 -9.24,7.86 -6.89,10.9 -3.96,11.43 -5.02,9.58 -10.11,5.68 -62.33,17.42 -31.81,0.86 -26.26,-15.15 -3.44,-11.17 2.75,-14.5 -3.17,-9.96 -5.75,-6.76 -28.37,-18.72 -8.14,-8.9 -4.66,-3.55 -3.56,0.38 -4.05,3.12 -4.87,5.06 -4.97,-6.1 -9.61,-19.579 -5.79,-8.949 14.32,-6.531 43.69,-12.949 20.33,6.668 51.39,-15.36 24.34,6.68 17.11,-5.899 14.86,-16.32 8.59,-21.801 -2.06,-21.941 13.45,-5.91 11.47,-9.547 7.21,-13.332 0.85,-17.192 -6.6,-14.968 -21.01,-11.418 -7.64,-10.114 7.45,-44.429 -35.79,-34.117 -77.43,-44.911 -10.45,13.821 -10.73,6.027 -9.18,-3.488 -6.28,-14.789 5.96,-42.403 -1.33,-3.429 -3.56,-2.309 -2.99,-3.301 0.17,-6.621 2.51,-4.039 3.61,-1.512 3.48,-0.968 2.24,-2.008 27.58,-45.922 4.8,-17.949 -3.57,-15.352 -9.76,-10.84 -22.31,-14.968 0.01,-0.082 0,-0.028 4.36,-19.133 -9.33,-25.449 4.41,-18.078 4.91,-3.473 5.98,1.09 6.39,0.012 5.78,-6.691 1.17,-9.727 -4.37,-19.531 0.35,-6.172 10.82,-5.738 24.43,14.738 12.57,0 10.54,-12.598 -2.35,-13.34 -15.11,-24.539 -15.04,-11.472 -3.38,-16.68 7.05,-14.121 15.79,-3.637 9.37,-3.683 3.23,-5.508 -2.48,-6.379 -8.02,-6.301 -32.66,-17.062 -8.68,-9.45 22,-0.597 11.18,-2.571 11.87,-9 4.54,-11.699 -14.04,-4.851 -19.77,-2.121 -12.42,-3.559 0.01,-0.121 -3.01,-3.348 -3.6,-1.273 -4.03,0.711 -4.38,2.66 -14.05,8.621 -16.28,0.461 -30.59,-6.684 -28.88,3.051 -10.23,-2.367 -6.08,-12.961 -1.73,-17.152 -5.66,-5.649 -7.38,-2.359 -7.09,-7.321 -1.34,-6.949 1.2,-6.121 0.23,-6.781 -4.36,-8.559 -4.89,-4.558 -15.25,-8.242 -18.04,-15.961 -7.97,-9.938 -24.18,-40.2304 -8.9,-10.2695 -11.69,-6.8203 -44.72,-32.2813 -33.12,-11.4179 -4.26,-2.9922 -6.71,-8.4883 0.93,-2.3789 3.61,-2.16017 1.33,-7.8125 -2.21,-34.96873 0.56,-19.5899 2.36,-19.4023 11.18,-26.3984 17.2,-8.9302 10.14,-16.421 3.96,-25.477 -16,16.789 -8.9,5.109 -31.53,2.75 -54.11,21.602 -21.6,2.328 -21.08,-3.691 -49.98,-25.379 -20.12,-2.891 -59.26,3.699 -12.95,6.454 -0.95,-16.973 1.28,-14.25 -3.76,-10.117 -7.4,-6.582 -9.64,-3.641 -11.81,2.301 -16.26,-1.598 -16,-5.672 -10.95,-9.898 -6.19,-16.442 -1.4,-12.832 -4,-11.367 -13.31,-12.371 -22.6,-5.941 -18.22,9.39 -18.39,13.661 -23.23,6.628 -139.6,-18.589 -110.27,3.222 -42.95,-17.511 -25.39,-42.809 -16.31,20.008 -11.16,1.242 -26.15,-19.379 -15.66,-3.312 -10.86,0.519 -9.35,-4.828 -11.44,-19.551 -7.32,-19.359 -8.98,-35.871 -11.86,-33.688 -4,-4.07 -16.4,-8.992 -19.43,-4.711 -7.17,4.351 -12.34,-6.691 -4.22,-5.617 -3.26,-7.821 -8.18,-11.472 -4.49,-14.117 -10.36,1.097 -3.43,-1.168 -14.24,-17.179 -7.57,-5.731 -7.61,-2.851 -16.56,-2.68 -7.25,-3.57 -10.2,-17.141 -4.91,-21.949 -5.86,-18.758 -12.94,-6.82 -10.92,9.929 -9.99,18.43 -11.49,13.699 -26.08,-8.16 -13,1.121 -24.5,9.328 -4.64,4.871 -2.9,6.09 -4.01,4.969 -8.3,1.281 -25.49,-7.449 -163.35,-6.223 -9.85,2.012 -45.58,34.43 -11.63,4.929 -12.77,2.93 -13.5,-0.519 -25.56,-6.29 -12.71,0.75 -72.26,28.782 -23.38,2.418 -49.29,-11.231 -10.45,-0.758 -51.4,9.27 -11.67,0.281 -11.83,-3.07 -11.64,0.519 -94.56,24.707 -32.63,-0.668 -6.1,3.77 -11.55,11.73 -5.43,1.739 -46.53,-6.059 -33.83,4.012 -77.19,-20.961 -30.97,-0.121 -16.51,5.629 -50.29,27.351 -63.53,11.25 -179.91,3.91 -44.88,26.29 -26.2,7.441 -5.97,-1.09 -12.04,-5.379 -7.18,-0.57 -7.19,2.769 -14.41,9.891 -7.51,2.977 -37.97,2.101 -44.25,-7.89 -11.28,0.582 -12.93,5.519 -24.35,15.02 -41.82,5.461 -31.61,11.339 -27.47,22.231 -15.98,35.027 -7.74,24.031 -13.06,7.649 -15.95,1.512 -16.19,5.48 -7.55,4.859 -4.52,4.18 -2.13,7.449 -0.44,14.36 1.52,12.941 2.51,7.82 1.79,8.122 -0.8,13.66 -8.03,24 -12.39,7.789 -32.1,-0.199 -10.55,3.418 -4.86,5.21 -4.46,6.8091 -9.02,8.4921 -8.67,3.9376 -18.08,2.4921 -8.15,2.9493 10.73,11.5312 -0.33,10.168 -5.69,10.289 -5.45,12.1836 -5.66,25.44925 -3.81,12.55859 -5.47,10.83206 7.24,19.7773 44.99,27.5196 15.27,22.5703 -0.73,29.3009 -18.13,5.41 -48.49,-11.578 -75.34,-43.1017 -54.07,-4.6406 -33.1,-12.8594 -31.63,-18.6406 -25.49,-21.80079 -34.3,-6.73829 -8.22,-5.69921 -14.5,-12.72261 -8.73,-2.3477 -14.42,4.8984 -25.23,17.41019 -14.51,1 -5.71,-1 -5.75,0.33203 -0.95,0.25 -0.4,-0.01172 -39.39,6.6719 -18.02,-2.29299 -21.87,-7.179691 -0.08,-0.007813 -0.15,-0.121094 -0.08,0 -7.02,-4.078122 -7.11,-1.55078 -6.96,1.03906 -6.49,3.6992175 -4.18,5.2695325 -4.53,4.01953 -5.04,2.75005 -13.46,2.7617 -7.56,-1.9922 -6.6,-5.34768 -5.54,-8.83203 -0.08,-0.10937 -25.08,-25.80862 -23.31,0.461 -24.01,10.8281 -27.29,5.1094 -53.02,-10.4493 -52.19,-18.6015 -13.38,-8.5274 -47.92,-50.3203 -5.93,-13.8316 -7,-39.289 -13.44,-34.629 -0.52,-4.262 1.17,-11.52 -1.19,-5.609 -3.22,-3.668 -8.34,-4.043 -3.07,-3.07 -16.37,-29.731 L 4331,-260 l -10.85,-1.801 -13.05,4.012 -26.66,1.949 -13.05,-2.148 -25.28,-9.231 -7.56,-0.761 -7.89,3.062 -13.29,10.859 -6.94,3.399 -7.82,-0.059 -14.42,-4.472 -7.5,0.113 -22.21,11.969 -8.91,2.75 -15.97,-5.43 -8.22,0.098 -4.78,9.64 3.43,5.563 16.65,14.117 3.53,7.781 -7.66,11.059 -59.07,33.652 -11.8,2.859 -13.44,-1.781 -77.1,-22.89 -31.66,2.902 -25.12,19.598 -2.25,23.691 8.75,37.93 -4.44,18.6716 -6.92,7.9687 -26.25,20.0899 -16.33,25.2695 -8.01,8.3008 -0.01,0.1718 -0.07,0 -4.06,2.5391 -4.26,0.7578 -4.15,-0.9101 -21.86,-13.0391 -18.81,-22.3203 -12.87,-25.7188 -0.05,-20.7619 -18.95,-1.199 -14.85,3.6406 -12.32,-2.4996 -11.26,-19.672 -3.4,-14.129 -0.49,-9.371 -1.91,-8.528 -7.63,-11.461 -32.99,-17.41 -19.62,-5.89 -15.76,0.379 -33.08,10.113 -17.31,9.699 -29.82,27.609 -81.79,25.282 -19.05,14.2575 -9.83,13.6211 -1.37,10.4102 2.3,12 1.6,26.0898 3.03,10.6602 -0.08,6.539 -2.94,3.4219 -4.71,-0.4297 -3.25,2.7188 1.12,12.67967 -143.98,43.85153 -12.73,1.8164 -39.76,-5.2578 -14.24,3.6602 20.75,26.7109 5.03,28.9297 -7.9,28.2776 -18.22,25.023 -22.65,13.156 -0.15,9.641 7.4,16.77 0.72,7.933 -6.6,15.367 -7.27,9.633 -3.43,9.738 4.97,15.508 -12.83,11.711 -6.95,10.121 24.03,41.352 25.55,31.25 2.83,7.66 3.75,19.617 3.44,9.992 28.96,37.188 7.19,16.941 0.23,47.102 -21.73,18.828 -28.13,12.59 -22.51,33.379 -5.79,26.152 0,0.059 1.79,-1.078 47.32,-12.602 48.24,1.23 20.45,9.95 10.73,17.101 9.14,20.301 16.22,19.227 10.83,5.902 11.25,1.379 10.69,-3.738 8.88,-9.5 2.62,-13.133 -1.33,-13.539 3,-11.711 15.4,-7.77 6.07,0.531 9.19,6.071 3.8,1.078 22.73,-8.129 22.42,-1.52 11.33,2.372 9.01,7.41 2.33,-18.352 7.98,-10.301 9.54,-9.3 7.03,-14.879 0.05,-3.36 0.27,-3.379 1.25,-6.48 8.32,-4.832 6.58,2.953 6.62,5.949 8.52,4.02 37.8,-53.781 6.81,-12.942 -3.35,-11.738 -16.97,-13.578 8.4,-9.543 2.18,-11.508 0.87,-11.941 4.2,-10.571 7.44,-7.019 5.07,0.3 5.71,4.36 9.85,4.879 3.75,-0.43 7.87,-4.629 3.9,0.031 3.17,2.508 8.83,10.039 33.06,6.532 14.01,-7.278 -0.24,-20.023 -13.03,-41.328 1.83,-7.27 0.49,-6.66 -1.76,-7.43 -3.62,-3.679 -9.95,-3.133 -3.02,-2.149 -6.77,-12.648 -2.94,-6.992 3.39,-1.899 60,8.27 16.39,6.668 33.49,21.32 14.54,13.742 13.27,18.5 16.2,34.028 4.4,7.05 7.71,5.403 15.82,5.82 6.4,4.488 12.25,16.91 10.58,22.68 6.4,25.11 -0.61,23.832 -3.37,13.699 -4.23,9.719 -6.59,7.05 -10.7,5.578 6.82,44.454 0.74,10.296 -5.21,12.34 -6.75,12.141 -1.26,9.57 11.18,4.66 12.55,2.5 5.71,2.379 2.68,-2.019 3.54,-10.309 -0.85,-4.379 -3.55,-5.41 -2.67,-7.109 1.5,-9.512 4.06,-5.039 6.23,-4.25 11.85,-5.172 32.14,-4.258 8.84,1.719 9.41,7.891 14.82,21.578 10.27,7.48 18.2,0.141 100.12,-35.418 3.11,-3.434 2.62,-5.687 3.85,-5.199 6.5,-1.801 22.2,3.199 30.02,14.609 10.58,3.301 10.44,-0.469 8.12,-4.351 17.59,-12.59 -6.12,-7.789 -23.88,-17.152 5.35,-8.688 39.21,-17.039 38.64,-39.613 2.39,-4.989 0.42,-7.46 -1.52,-7.739 -2.29,-5.172 -1.79,-0.16 8.1,-14.847 10.68,-5.883 78.73,0.902 14.62,4.91 48.34,35.457 18.87,5.731 16.33,-6.137 -0.78,-30.262 18.15,-1.55 16.24,8 10.42,11.859 9.59,13.73 14.17,13.981 13.89,4.902 32.71,1.758 12.07,5.629 6.13,11.223 -3.14,8.187 -8.34,5.109 -9.35,2.25 34.25,41.954 16.99,4.546 18.6,-1.937 17.22,-4.859 35.14,7 16.13,7.027 13.19,15.672 3.47,10.398 5.06,25.922 4.74,11.949 20.37,18.91 2.45,3.301 13.93,0.008 33.01,-5.418 61.25,1.891 42.66,-7.172 7.68,2.859 6.85,19.172 8.28,5.367 62.59,15.211 172.96,-0.719 5.93,1.481 20.3,28.391 2.42,7.199 0.35,10.429 -2.47,29.629 -2.35,6.032 -3.91,2.398 -6.37,5.832 -5.81,7.07 -2.66,6.047 -1.84,9.012 11.66,5.309 17.43,15.793 6.34,4.347 10.73,5.25 1.84,0.461 -2.11,-5.18 -1.44,-11.941 -2.27,-8.898 -4.53,-6.86 -2.15,-7.859 4.62,-12.09 7.72,-6.32 8.09,1.578 16.39,9.461 16.26,3.051 43.75,-7.383 12.63,2.613 28.97,12.609 12.43,-1.871 3.78,-6.25 8.88,-23.34 4.52,-8.921 6.37,-6.989 23.16,-16.968 10.79,-4.723 15.47,0.293 15.7,3.816 11.48,5.742 32.07,31.399 13.94,7.851 26.46,7.68 26.76,1.27 42.64,-8.828 12.8,2.289 -6.82,-19.782 12.5,-13.898 20.11,-11.91 15.62,-13.68 -20,-11.172 -7.92,-26.199 5.3,-27.23 19.32,-14.071 11.69,-1.437 7.2,-2.184 6.63,-4.797 36.27,-36.152 38.3,-26 8.42,-2.938 6.27,2.539 6.06,3.7 7.85,0.64 7.44,-3.511 4.43,-4.2 4.82,-2.64 8.08,0.793 4.99,4.808 20.16,26.61 -0.71,9.23 -2.3,6.649 -2.71,5.55 -2.03,6 -0.98,6.86 -1,19.351 1.71,3 6.22,18.371 0.77,1.649 -1.6,-0.711 -1.93,25.172 2.06,-0.641 11.28,16.539 0.31,3.09 7.77,22.492 1.74,2.508 0.92,13.52 -0.24,13.523 -2.85,14.129 -6.82,15.82 -15.97,24.328 -9.81,10.68 -9.66,6.52 -11.72,1.269 -18.56,-9.34 -11.14,-2.5 -42.18,5.66 -12.87,11.813 12.86,22.238 0.15,0.121 -0.01,0.059 4.41,8.109 0.94,7.41 -0.13,7.133 1.12,7.141 3.66,8.937 44.29,79.93 -3.65,3.332 -17.4,23.279 -28.34,57.5 -13.21,11.71 -6.19,2.94 -15.83,14.77 -18.43,9.84 -6.46,8.51 -4.59,11.43 -2.92,13.44 -12.41,24.25 -55.16,52.31 -7.46,10.63 -7.27,13.05 -4.48,14.46 0.73,15.06 4.15,8.21 4.69,1.87 4.85,0 4.44,2.29 9.79,17.15 2.82,3.82 28.56,22.19 9.13,11.63 12.52,22.1 6.38,7.74 10.91,6.57 40.74,10.1 -1.13,2.6 11.03,9.89 23.26,14.59 26.23,27.97 11.51,9.15 75.27,34.65 101.16,23.44 24.12,15.31 68.81,67.4 9.33,17.91 2.84,23.82 1.12,5.82 3.03,5.94 2.85,7.83 0.85,11.66 -3.19,31.3 0.77,10.41 2.92,10.4 8.69,21.62 1.43,10.94 -2.17,9.67 -7.49,10.31 -4.14,19.87 -2.5,4.86 -0.69,4 3.59,7.96 6.27,6.53 23.55,10.45 24.49,4.79 77.71,-16.78 13.31,-6.16 12.51,-8.17 12.34,-16.65 31.09,-11.78 1.7,-1.59 4.73,30.06 5.46,13.05 2.55,-0.42 15.17,3.42 5.71,2.9 5.72,6.43 3.18,5.48 10.92,28.18 3.65,14.87 1.28,16.17 -0.65,18.69 -6.14,35.64 1.06,13.38 9.22,9.98 -9.48,3.84 -3.86,3.16 -8.8,14.95 -3.71,-1.62 1,10.67 19.03,47.67 30.03,-6.05 14.46,-6.74 14.04,-9.59 16.97,-12.34 51.23,-24 6.92,-6.58 13.47,-17.97 5.32,-8.82 3.96,-3.25 5.23,-1.73 4.62,-2.81 2.35,-6.65 -0.91,-7.04 -3.28,-1.25 -3.62,0.45 -2.1,-1.75 -4.27,-10.72 -4.08,-1.83 -1.16,-3.3 4.42,-14.93 3.6,-5.88 13.76,-15.01 6.54,-5.1 25.75,-8.84 105.24,-4.66 74.94,-20.78 7.03,1.3 5.63,2.7 14.03,12.95 37.15,19.21 10.81,12.8 13.39,45.01 10.2,8.18 19.15,-19.52 30.5,-13.26 8.83,-1.49 10.86,3.27 21.3,12.23 11.28,1.76 5.02,-3.82 1.44,-7.02 0.62,-7.4 2.7,-4.51 5.76,-0.21 10.98,4.77 4.88,-0.71 8.69,-9.89 5.12,-10.13 6.33,-6.83 12.17,0.1 13.68,15.88 1.57,29.16 -2.93,33.93 0.42,30.19 12.21,23.61 36.11,36.91 2.1,21.52 6.38,13.59 1.93,13.72 3.52,10.89 10.75,5.1 38.72,-2.34 39.16,-12.61 14.77,2.54 6.9,20.12 -1.76,1.89 -3.82,6.92 -3.87,8.53 -1.99,6.89 0.6,7.84 4.21,14.43 10.07,70.79 -2.35,30.71 -5.7,33.75 -2.19,31.65 8.13,24.21 -1.16,5.97 -0.41,5.17 0.84,3.82 2.2,2.02 15.84,3.34 41.75,-10.71 57.26,-0.07 6.64,-15.23 4.32,-14.84 0.93,-15.12 -3.56,-16.24 14.55,0.89 54.57,19.61 3.58,2.73 9.13,13 1.93,6.06 0.58,15.07 2.57,4.78 5.59,0.52 4.08,-4.29 3.48,-5.26 3.84,-2.22 34.26,2.46 16.72,-3.28 36.65,-14.95 33.44,-8.2 16.5,-7.66 38.85,-28.24 62.43,-18.24 59.68,-27.09 16.78,-2.45 16.89,1.5 12,5 24.82,16.1 6.22,2.12 22.4,2.07 4.53,-2.83 4.19,-13.4 4.15,-5.35 5.19,-1.67 14.11,0.23 8.56,-5.12 5.67,-1.97 6.1,0.95 -6.59,-10.61 9.04,3.03 8.29,0.4 5.91,-4.49 1.83,-11.64 12.13,4.35 4.3,-4.41 0.71,-7.69 1.56,-5.41 78.75,-46.92 40.51,-13.25 67.47,10.46 104.16,-5.39 0.76,0.83 15.04,3.77 10.48,-6.98 4.23,-0.92 11.21,4.51 7.31,8.3 31.01,67.45 11.9,9.74 21.46,-1.01 7.55,1.09 12.71,6.94 6.65,1.59 6.98,-1.63 13.3,-6.78 45.1,-8.36 13.74,-0.24 14.6,-4.26 7.11,-12.79 4.35,-15.67 6.64,-12.61 10.32,-5.79 11.9,-0.88 27.82,3.99 11.63,-2.7 28.37,-14.89 14.04,-3.66 13.95,3.18 27.2,12.96 12.17,0.34 19.93,-22.63 17.85,-72.44 28.5,-26.89 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7229" /><path
+               id="path3186" /><path
                d="m 682.691,3520.35 0,0 8,-1.47 16.34,1.94 1,0.57 5.36,3.04 4.769,4.76 0.051,0 1.461,0.14 4.047,0.39 8.14,-8.5 0.743,-0.77 2.668,-10.23 0.031,-0.11 -0.66,-5.69 -0.563,-4.79 0.742,-5.06 0.532,-3.72 0.019,-0.08 10.449,-5.18 -5.57,-15.89 -4.07,-15.14 -5.719,-31.08 1.219,-0.85 4.308,0.23 1.621,-0.29 -2.808,-3.51 -7.16,-12.73 7.597,-4.78 4.301,-9.31 3.551,-23.38 -2.481,-12.28 2.77,-9.14 11.641,-19.31 9.699,-31.67 5.34,-9.92 8.293,14.99 11.558,-20.4 21.469,-57.75 10.793,-11.79 23.949,-11.75 10.231,-7.16 3.187,-6.21 6.52,-19.45 0.613,-3.76 5.769,-0.72 11.008,6.16 6.313,-0.4 11.918,-8.13 19.968,-20.43 11.922,-8.18 12.442,-3.88 34.508,-1.18 21.93,-7.29 2.82,-0.27 3.73,-4.32 -0.21,0.24 -1.62,-1.5 -0.38,-9.36 -1.07,-0.72 -4.23,-24.07 -0.34,-7.86 1.77,-5.01 -0.44,-4.3 -7.199,-5.91 -0.859,-9.92 1.34,-9.13 3.16,-8.1 4.908,-7.06 -6.182,2.67 -3.41,-1.55 -2.636,-5.32 4.726,-5.85 1.344,-2.46 -54.172,-32.55 -11.719,-15.3 1.141,-3.72 4.508,-3.32 4.261,-4.46 0.418,-7.37 -2.121,-4.94 -5.718,-7.85 -7.829,-14.8 -19.632,-22.55 -11.5,-16.73 -4.539,-12.1 -1.239,-35.21 -7.781,-46.37 1.059,-33.74 -0.289,-8.15 -14.469,2 -18.871,11.26 -34.809,28.06 -19.543,8.66 -20.5,2.94 -41.769,-3.03 4.32,-10.4 -20.5,-1.12 -5.238,-1.86 -4.082,-6.64 -0.2,-7.12 -1.879,-5.91 -8.89,-3 -7.449,-10.41 -10.789,-3.55 -61.942,-1.29 -12.75,-3.68 -8.68,32.22 -13.058,14.28 -45.5,12.87 -17.832,9.32 -12.141,12.36 -21.449,31.23 17.539,7.49 17.34,17.05 3.621,8.1 3.941,8.85 0.047,0.1 -4.429,2.68 -7.539,4.56 0.152,0.13 8.308,7.22 6.219,10.9 4.301,10.5 6.031,14.73 6.028,6.54 0.132,0.12 7.309,6.25 4.43,9.48 -0.032,0.12 -1.476,7.03 -1.863,8.81 -5.039,4.64 -0.161,0.03 -14.238,2.24 -4.762,3.94 -1.031,3.87 -1.156,4.4 1.207,3.92 2.312,3.47 0.668,7.22 1.379,6.1 3.672,3.81 1.801,2.8 1.07,1.69 -0.32,4.55 -0.289,3.99 -3.801,6.62 -0.09,0.16 -2.5,0.29 -2.179,0.25 -2.153,-0.62 -2.527,-0.74 -4,0.92 -1.992,1.23 -2.219,1.36 -9.891,3.46 -0.039,0.02 -0.453,0.39 -3.816,3.37 -0.192,0.17 0.27,1.67 0.14,0.9 -0.902,15.57 -0.898,5.28 -11.571,25.53 -3.961,8.74 -0.636,1.04 -3.821,6.23 -6.031,4.07 -2.871,1.95 -7.07,1.52 -0.598,0.13 -0.012,0.01 -7.14,3.88 -7.028,12.96 -1.863,6.98 -1.918,7.17 -0.461,13.32 3.66,10.48 8.801,5.37 -0.172,0.17 -6.457,6.57 0.028,0.09 1.41,3.87 1.453,2.53 0.258,0.72 0.922,2.57 0.046,1.4 0.153,4.74 0.008,0.29 18.652,-2.75 0.129,-0.02 -6.25,10.4 -12.852,10.72 -2.508,2.09 -8.281,4.45 2.02,6.29 1.34,4.15 9.742,15.31 16.988,26.74 2.402,5.2 0.797,1.74 1.231,3.52 0.722,2.04 1.821,3.54 1.097,2.14 1.352,1.64 4.609,5.59 5.18,3.17 10.711,2.01 2.578,2.23 3.582,3.09 8.508,14.95 -0.059,0.15 -2.57,6.11 -4.77,6.42 0.008,0.03 1.461,15.28 4.699,5.72 14.782,5.82 4.25,4.15 1.16,1.13 0.012,0.01 0.148,0.62 2,8.1 0.441,10.45 -0.082,3.88 -0.187,9.02 2.758,4.05 1.82,2.66 10.82,8.64 2.602,3.45 2.019,2.68 0.981,3.5 1.117,4.01 0.93,7.8 1.23,10.18 2.86,6.9 0.019,0.06 4.461,3.74 7.82,6.56 27.129,11.94 11.09,10.65 6.344,15.73 0.488,2.05 3.09,13.06 6.469,10.03 7.09,0.46 8.179,0.53 11.352,8.35 0.648,-0.78 3.723,-4.41 1.937,-10.72 4.024,-8.33 6.519,-3.49 2.75,-1.48 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 682.691,3520.35 0,0 8,-1.47 16.34,1.94 1,0.57 5.36,3.04 4.769,4.76 0.051,0 1.461,0.14 4.047,0.39 8.14,-8.5 0.743,-0.77 2.668,-10.23 0.031,-0.11 -0.66,-5.69 -0.563,-4.79 0.742,-5.06 0.532,-3.72 0.019,-0.08 10.449,-5.18 -5.57,-15.89 -4.07,-15.14 -5.719,-31.08 1.219,-0.85 4.308,0.23 1.621,-0.29 -2.808,-3.51 -7.16,-12.73 7.597,-4.78 4.301,-9.31 3.551,-23.38 -2.481,-12.28 2.77,-9.14 11.641,-19.31 9.699,-31.67 5.34,-9.92 8.293,14.99 11.558,-20.4 21.469,-57.75 10.793,-11.79 23.949,-11.75 10.231,-7.16 3.187,-6.21 6.52,-19.45 0.613,-3.76 5.769,-0.72 11.008,6.16 6.313,-0.4 11.918,-8.13 19.968,-20.43 11.922,-8.18 12.442,-3.88 34.508,-1.18 21.93,-7.29 2.82,-0.27 3.73,-4.32 -0.21,0.24 -1.62,-1.5 -0.38,-9.36 -1.07,-0.72 -4.23,-24.07 -0.34,-7.86 1.77,-5.01 -0.44,-4.3 -7.199,-5.91 -0.859,-9.92 1.34,-9.13 3.16,-8.1 4.908,-7.06 -6.182,2.67 -3.41,-1.55 -2.636,-5.32 4.726,-5.85 1.344,-2.46 -54.172,-32.55 -11.719,-15.3 1.141,-3.72 4.508,-3.32 4.261,-4.46 0.418,-7.37 -2.121,-4.94 -5.718,-7.85 -7.829,-14.8 -19.632,-22.55 -11.5,-16.73 -4.539,-12.1 -1.239,-35.21 -7.781,-46.37 1.059,-33.74 -0.289,-8.15 -14.469,2 -18.871,11.26 -34.809,28.06 -19.543,8.66 -20.5,2.94 -41.769,-3.03 4.32,-10.4 -20.5,-1.12 -5.238,-1.86 -4.082,-6.64 -0.2,-7.12 -1.879,-5.91 -8.89,-3 -7.449,-10.41 -10.789,-3.55 -61.942,-1.29 -12.75,-3.68 -8.68,32.22 -13.058,14.28 -45.5,12.87 -17.832,9.32 -12.141,12.36 -21.449,31.23 17.539,7.49 17.34,17.05 3.621,8.1 3.941,8.85 0.047,0.1 -4.429,2.68 -7.539,4.56 0.152,0.13 8.308,7.22 6.219,10.9 4.301,10.5 6.031,14.73 6.028,6.54 0.132,0.12 7.309,6.25 4.43,9.48 -0.032,0.12 -1.476,7.03 -1.863,8.81 -5.039,4.64 -0.161,0.03 -14.238,2.24 -4.762,3.94 -1.031,3.87 -1.156,4.4 1.207,3.92 2.312,3.47 0.668,7.22 1.379,6.1 3.672,3.81 1.801,2.8 1.07,1.69 -0.32,4.55 -0.289,3.99 -3.801,6.62 -0.09,0.16 -2.5,0.29 -2.179,0.25 -2.153,-0.62 -2.527,-0.74 -4,0.92 -1.992,1.23 -2.219,1.36 -9.891,3.46 -0.039,0.02 -0.453,0.39 -3.816,3.37 -0.192,0.17 0.27,1.67 0.14,0.9 -0.902,15.57 -0.898,5.28 -11.571,25.53 -3.961,8.74 -0.636,1.04 -3.821,6.23 -6.031,4.07 -2.871,1.95 -7.07,1.52 -0.598,0.13 -0.012,0.01 -7.14,3.88 -7.028,12.96 -1.863,6.98 -1.918,7.17 -0.461,13.32 3.66,10.48 8.801,5.37 -0.172,0.17 -6.457,6.57 0.028,0.09 1.41,3.87 1.453,2.53 0.258,0.72 0.922,2.57 0.046,1.4 0.153,4.74 0.008,0.29 18.652,-2.75 0.129,-0.02 -6.25,10.4 -12.852,10.72 -2.508,2.09 -8.281,4.45 2.02,6.29 1.34,4.15 9.742,15.31 16.988,26.74 2.402,5.2 0.797,1.74 1.231,3.52 0.722,2.04 1.821,3.54 1.097,2.14 1.352,1.64 4.609,5.59 5.18,3.17 10.711,2.01 2.578,2.23 3.582,3.09 8.508,14.95 -0.059,0.15 -2.57,6.11 -4.77,6.42 0.008,0.03 1.461,15.28 4.699,5.72 14.782,5.82 4.25,4.15 1.16,1.13 0.012,0.01 0.148,0.62 2,8.1 0.441,10.45 -0.082,3.88 -0.187,9.02 2.758,4.05 1.82,2.66 10.82,8.64 2.602,3.45 2.019,2.68 0.981,3.5 1.117,4.01 0.93,7.8 1.23,10.18 2.86,6.9 0.019,0.06 4.461,3.74 7.82,6.56 27.129,11.94 11.09,10.65 6.344,15.73 0.488,2.05 3.09,13.06 6.469,10.03 7.09,0.46 8.179,0.53 11.352,8.35 0.648,-0.78 3.723,-4.41 1.937,-10.72 4.024,-8.33 6.519,-3.49 2.75,-1.48 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7231" /><path
+               id="path3188" /><path
                d="m 3247.7,42.0508 0,0 -15.58,-5.0899 -46.44,7.4102 -17.14,4.9492 -0.93,10.3594 8.79,11.9687 11.54,12.0235 7.12,14.8593 -0.55,23.7188 -6.46,17.762 -8.33,15.968 -5.91,18.34 1.56,37.422 12.83,37.559 12.37,21.269 6.95,-10.121 12.83,-11.711 -4.97,-15.508 3.43,-9.738 7.27,-9.633 6.6,-15.367 -0.72,-7.933 -7.4,-16.77 0.15,-9.641 22.65,-13.156 18.22,-25.023 7.9,-28.2776 -5.03,-28.9297 -20.75,-26.7109 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3247.7,42.0508 0,0 -15.58,-5.0899 -46.44,7.4102 -17.14,4.9492 -0.93,10.3594 8.79,11.9687 11.54,12.0235 7.12,14.8593 -0.55,23.7188 -6.46,17.762 -8.33,15.968 -5.91,18.34 1.56,37.422 12.83,37.559 12.37,21.269 6.95,-10.121 12.83,-11.711 -4.97,-15.508 3.43,-9.738 7.27,-9.633 6.6,-15.367 -0.72,-7.933 -7.4,-16.77 0.15,-9.641 22.65,-13.156 18.22,-25.023 7.9,-28.2776 -5.03,-28.9297 -20.75,-26.7109 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7233" /><path
+               id="path3190" /><path
                d="m 4251.24,8845.95 0,0 31.18,-23.56 11.56,-4.91 11.78,-9.22 20.64,-41.61 15.64,-9.08 15.5,-3.03 116.59,-60.76 -7.03,19.2 -7.74,11.8 -0.89,9.58 13.69,12.6 17.51,0.65 15.31,7.83 6.32,1.27 -6.22,11.86 -2.12,13.85 0.47,14.06 1.51,12.55 50.62,-42.78 4.61,-15.94 15.96,-19.07 9.92,-7.21 10.8,-2.68 -6.19,-6.4 -2.73,-1.55 10.28,-19.51 33.29,-25.44 7.41,-10.4 2.47,-18.1 3.06,-8.05 0.2,-6.61 -6.06,-13.26 -6.98,-8.46 -6.55,-2.97 -5.5,-4.08 -4.45,-12.03 25.82,-10.36 -1.48,-24.19 -19.58,-24.27 -28.42,-10.63 -101.16,18.17 -32.38,-8.68 -30.27,-15.65 -23.6,-23.63 -14.57,2.02 -61.3,33.7 -40.59,33.18 -72.21,43.04 -32.15,6.14 -34.88,15.12 -35.09,7.31 -14.05,11.8 -6.99,16.66 3.71,18.92 15.81,9.89 19.68,-2.59 18.22,1.98 11.18,23.69 -10.6,3.54 -8.83,6.59 -35.34,41.54 -4.39,7.41 -0.56,19.15 8.24,17.9 25.73,33.03 9.08,-4.33 91.39,21.99 15.72,-6.98 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4251.24,8845.95 0,0 31.18,-23.56 11.56,-4.91 11.78,-9.22 20.64,-41.61 15.64,-9.08 15.5,-3.03 116.59,-60.76 -7.03,19.2 -7.74,11.8 -0.89,9.58 13.69,12.6 17.51,0.65 15.31,7.83 6.32,1.27 -6.22,11.86 -2.12,13.85 0.47,14.06 1.51,12.55 50.62,-42.78 4.61,-15.94 15.96,-19.07 9.92,-7.21 10.8,-2.68 -6.19,-6.4 -2.73,-1.55 10.28,-19.51 33.29,-25.44 7.41,-10.4 2.47,-18.1 3.06,-8.05 0.2,-6.61 -6.06,-13.26 -6.98,-8.46 -6.55,-2.97 -5.5,-4.08 -4.45,-12.03 25.82,-10.36 -1.48,-24.19 -19.58,-24.27 -28.42,-10.63 -101.16,18.17 -32.38,-8.68 -30.27,-15.65 -23.6,-23.63 -14.57,2.02 -61.3,33.7 -40.59,33.18 -72.21,43.04 -32.15,6.14 -34.88,15.12 -35.09,7.31 -14.05,11.8 -6.99,16.66 3.71,18.92 15.81,9.89 19.68,-2.59 18.22,1.98 11.18,23.69 -10.6,3.54 -8.83,6.59 -35.34,41.54 -4.39,7.41 -0.56,19.15 8.24,17.9 25.73,33.03 9.08,-4.33 91.39,21.99 15.72,-6.98 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7235" /><path
+               id="path3192" /><path
                d="m 3672.18,8766.65 0,0 9.49,-4.01 9.67,0.24 7.64,2.86 2.8,8.97 -5,18.59 9.53,-12.98 8.36,-33.19 7.03,-6.48 13.34,0.11 8.97,2.54 1.6,8.89 -8.95,19.09 10.75,-10.02 12.36,-7.39 8.84,-9.93 0.04,-17.55 6.33,-4.18 6.57,-3.13 -50.05,-12.8 -13.56,-15.52 -7.84,-3.55 -14.74,6.44 -112.68,118.7 -10.76,24.89 -4.07,17.36 9.44,-10.31 54.95,-29.5 16.22,-14.08 15.63,-24.09 8.09,-9.97 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3672.18,8766.65 0,0 9.49,-4.01 9.67,0.24 7.64,2.86 2.8,8.97 -5,18.59 9.53,-12.98 8.36,-33.19 7.03,-6.48 13.34,0.11 8.97,2.54 1.6,8.89 -8.95,19.09 10.75,-10.02 12.36,-7.39 8.84,-9.93 0.04,-17.55 6.33,-4.18 6.57,-3.13 -50.05,-12.8 -13.56,-15.52 -7.84,-3.55 -14.74,6.44 -112.68,118.7 -10.76,24.89 -4.07,17.36 9.44,-10.31 54.95,-29.5 16.22,-14.08 15.63,-24.09 8.09,-9.97 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7237" /><path
+               id="path3194" /><path
                d="m 5069.06,8933.05 0,0 12.18,-37.58 -0.58,-12.25 -5.55,-6.9 -10.31,-3.29 -14.99,-1.27 -76.42,12.71 -23.05,-4.51 -21.55,-11.11 -20.91,-19.24 -31.86,-48.26 -12,-7.69 -18.69,2.26 -41.79,18.5 -0.31,6.9 9.14,0.41 -3.36,11.31 2.25,8.91 5.61,6.53 6.84,4.22 -3.32,3.2 -6.55,8.4 -3.51,3.01 13.43,16.67 8.21,4.63 8.3,-4.75 4.38,8.55 -5.45,14.9 10.29,-0.39 15.96,-10.1 9.75,-3 6.22,1.49 20.55,9.72 7.49,5.53 -3.95,10.82 -0.62,9.01 2.53,6.74 5.3,4.06 -0.36,7.58 -21.56,13.97 -6.05,7.55 -3.81,10.99 1.75,7.8 6.94,4.36 11.48,0.54 14.95,-24.12 22.05,-8.69 52.4,-0.98 56.5,-8.84 22.05,-18.3 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5069.06,8933.05 0,0 12.18,-37.58 -0.58,-12.25 -5.55,-6.9 -10.31,-3.29 -14.99,-1.27 -76.42,12.71 -23.05,-4.51 -21.55,-11.11 -20.91,-19.24 -31.86,-48.26 -12,-7.69 -18.69,2.26 -41.79,18.5 -0.31,6.9 9.14,0.41 -3.36,11.31 2.25,8.91 5.61,6.53 6.84,4.22 -3.32,3.2 -6.55,8.4 -3.51,3.01 13.43,16.67 8.21,4.63 8.3,-4.75 4.38,8.55 -5.45,14.9 10.29,-0.39 15.96,-10.1 9.75,-3 6.22,1.49 20.55,9.72 7.49,5.53 -3.95,10.82 -0.62,9.01 2.53,6.74 5.3,4.06 -0.36,7.58 -21.56,13.97 -6.05,7.55 -3.81,10.99 1.75,7.8 6.94,4.36 11.48,0.54 14.95,-24.12 22.05,-8.69 52.4,-0.98 56.5,-8.84 22.05,-18.3 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7239" /><path
+               id="path3196" /><path
                d="m 3313.2,8965.9 0,0 38.62,-44.75 20.35,-10.79 28.4,-4.06 20.59,-12.2 16.66,-18.98 16.22,-24.44 9.52,-17.4 26.25,-76.39 -0.23,-10.87 -8.98,-2.55 -18.24,0.24 -9.48,-5.14 -12.39,-10.12 -12.44,-7.31 -9.27,3.27 -10.8,9.11 -29.57,8.99 -10.91,7.51 -0.09,7.59 16.99,8.78 20.2,-8.47 20.48,-14.05 17.82,-8.03 -0.11,7.59 -30.99,26.6 -29.23,9.97 -6.77,0.49 -6.26,-2.49 -9.16,-9.21 -6.25,-3.81 -25.01,1.14 -21.86,17.29 -12.91,29.07 1.59,36.19 -3.97,-0.04 -0.07,6.84 14.2,-9.79 15.48,-17.25 15.11,-12.82 12.81,3.26 -2.83,3.88 -4.26,7.54 -2.6,7.27 2.47,3.31 3.55,2.51 -4.57,5.35 -26.81,18.61 -4.59,8.81 7.88,10.72 -0.09,7.6 -50.11,-5.27 -8.8,0.83 -6.53,4.83 -7.74,1.13 -6.7,2.75 -3.6,10.09 2.33,4.97 11.87,9.2 3.41,8.77 -11.88,-0.63 -10.46,-4.24 -10.28,-1.88 -11.03,6.34 -0.07,8.22 56.1,27.4 22.53,3.86 26.51,-4.94 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3313.2,8965.9 0,0 38.62,-44.75 20.35,-10.79 28.4,-4.06 20.59,-12.2 16.66,-18.98 16.22,-24.44 9.52,-17.4 26.25,-76.39 -0.23,-10.87 -8.98,-2.55 -18.24,0.24 -9.48,-5.14 -12.39,-10.12 -12.44,-7.31 -9.27,3.27 -10.8,9.11 -29.57,8.99 -10.91,7.51 -0.09,7.59 16.99,8.78 20.2,-8.47 20.48,-14.05 17.82,-8.03 -0.11,7.59 -30.99,26.6 -29.23,9.97 -6.77,0.49 -6.26,-2.49 -9.16,-9.21 -6.25,-3.81 -25.01,1.14 -21.86,17.29 -12.91,29.07 1.59,36.19 -3.97,-0.04 -0.07,6.84 14.2,-9.79 15.48,-17.25 15.11,-12.82 12.81,3.26 -2.83,3.88 -4.26,7.54 -2.6,7.27 2.47,3.31 3.55,2.51 -4.57,5.35 -26.81,18.61 -4.59,8.81 7.88,10.72 -0.09,7.6 -50.11,-5.27 -8.8,0.83 -6.53,4.83 -7.74,1.13 -6.7,2.75 -3.6,10.09 2.33,4.97 11.87,9.2 3.41,8.77 -11.88,-0.63 -10.46,-4.24 -10.28,-1.88 -11.03,6.34 -0.07,8.22 56.1,27.4 22.53,3.86 26.51,-4.94 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7241" /><path
+               id="path3198" /><path
                d="m 3984.07,8818.85 0,0 -56.85,-207.3 -5.98,-13.84 -8.73,-4.99 -15.23,-0.88 -7.97,10.39 -17.98,65.04 -7.19,11.97 -9,9.68 -20.23,16.16 15.57,1.39 9.79,4.55 7.94,9.62 9.76,16.51 5.53,18.77 3.65,5.38 6.17,-5.43 3.29,-1.7 16.3,5.97 -1.86,10.95 -3.02,12.41 -5.58,-4.92 -5.46,-1.74 -5.54,1.48 -5.75,4.63 8.36,27.01 13.09,20.17 34.68,42.46 15.19,11.55 34.83,53.5 3.65,31.57 19.95,55.66 23.54,43.11 14.47,-6.28 -26.66,-138.25 -11.17,-36.9 -31.56,-67.7 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3984.07,8818.85 0,0 -56.85,-207.3 -5.98,-13.84 -8.73,-4.99 -15.23,-0.88 -7.97,10.39 -17.98,65.04 -7.19,11.97 -9,9.68 -20.23,16.16 15.57,1.39 9.79,4.55 7.94,9.62 9.76,16.51 5.53,18.77 3.65,5.38 6.17,-5.43 3.29,-1.7 16.3,5.97 -1.86,10.95 -3.02,12.41 -5.58,-4.92 -5.46,-1.74 -5.54,1.48 -5.75,4.63 8.36,27.01 13.09,20.17 34.68,42.46 15.19,11.55 34.83,53.5 3.65,31.57 19.95,55.66 23.54,43.11 14.47,-6.28 -26.66,-138.25 -11.17,-36.9 -31.56,-67.7 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7243" /><path
+               id="path3200" /><path
                d="m 3649.77,9560.33 0,0 44.04,-29.39 10.02,-11.99 8.23,-13.53 5.69,-7.18 6,-3.04 11.57,-1.2 10.58,-3.68 19.34,-12.99 -10.4,3.97 -9.85,-0.26 -7.18,-5.97 -2.59,-13.17 2.32,-4.78 9.56,-7.39 1.45,-6.53 -3.07,-9.39 -5.17,-2.69 -6.32,-0.48 -6.67,-3.14 -23.07,-34.59 10.84,-18.3 22.47,1.51 11.89,24.93 7.16,-1.74 40.23,22.17 23.8,8.08 2.72,3.57 -1.48,7.56 -3.24,7.52 -3.02,3.44 -5.65,1.31 -6.22,3.6 -5.2,5.06 -2.74,5.4 1.61,9.88 7.98,-3.51 8.61,-8.43 3.57,-5.04 7.74,12.61 -2.49,17.37 -6.52,19.59 -4.6,18.71 3.24,-4.99 10.08,-9.9 -0.31,18.7 -4.81,27.61 -0.04,7.48 11.96,0.92 18.92,-20.44 30.97,-48.79 1.42,-7.1 0.96,-9.87 1.52,-8.83 3.36,-3.77 1.56,-2.43 13.84,-13.01 4.3,-15.25 -1.14,-9.12 -5.66,-6.36 -18.06,-12.41 -29.09,-13.36 -43.75,3.06 -10.86,-2.66 -7.23,-6.78 -3.08,-14.28 6.1,-6.88 10.02,-0.12 9.28,5.97 -3.01,5.68 -0.86,3.55 4.5,11.55 12.56,-2.88 42.78,-8.99 9.63,-8.34 64.78,-89.34 4.38,-9.61 17.25,-47.65 4.35,-18.07 -4.73,-0.12 -7.85,11.65 -11.74,7.23 -10.49,-3.32 -4.08,-19.89 3.95,-13.6 17.58,-26.7 5.55,-16.37 1.81,-23.95 -1.07,-22 -3.66,-19.03 -9.22,-22.9 -1.63,-8.39 -0.16,-22.27 -1.95,-5.97 -15.16,-21.39 -5.66,-13.72 -4.03,-12.81 -5.4,-11.13 -9.9,-8.53 -7.8,-2.14 -25.13,1.35 -28.58,-0.68 -10.64,-2.31 -11.89,-5.85 -10.83,-8.71 -7.62,-11.04 -11.36,-11.81 -13.78,1.42 -25.33,13.38 -42.86,2.68 -14.02,3.8 -6.22,4.19 -5.18,4.85 -5.63,4.09 -7.43,1.64 -15.94,-1.98 -8.46,0.76 -50.66,30.89 -18.56,1.29 -4.67,-8.54 0.02,-24.22 -9.83,7.08 -15.34,17.29 -10.65,6.09 -13.07,0.02 -24.04,-6.47 -11.24,5.69 48.26,38.09 8.31,15.96 -11.33,15.74 -8.26,18.04 -8.66,14.42 -12.19,5.1 -9.43,-3.03 -7.24,-4.19 -7.53,-2.88 -10.35,1.23 -14.83,14.5 -8.27,3.39 -7.56,-10 2.23,-17.45 22.55,-33.55 -1.97,-18.49 -3.21,-1.55 -22.39,3.42 -1.7,3.2 0.86,4.44 -0.28,5.98 1.79,-0.73 1.65,4.57 -0.66,9.37 -9.56,24.54 -1.62,11.88 1.22,11.75 3.99,10.75 -0.84,8.85 -9.88,5.73 -25.67,6.15 -8.08,5.01 -7.19,6.18 -3.15,5.36 -1.53,6.02 -5.97,9.93 -1.47,6.71 1.3,6.86 5.71,10.2 1.37,6.23 -1.6,12.17 -6.09,19.42 -1.46,6.31 1.41,38.38 -6.55,4.81 -9.9,0.74 -18.33,-2.18 -8.55,3.06 -9.01,7.89 -15.68,19.72 10.63,4.15 11.83,1.51 10.43,4.38 6.13,12.5 -34.79,14.78 5.18,-1.04 16.48,1.29 -6.7,12.92 -11.72,6.99 -25.09,3.06 -8.93,3.65 -21.59,26.46 -0.07,6.9 16.88,-7.53 18.07,-15.28 17.78,-11.36 16.3,4.55 -63.01,54.87 -23.63,5 4.85,11.61 5.9,4.66 7.15,2.43 8.24,5.03 23.16,30.61 33.96,7.34 11.57,-1.93 2.29,-5.96 0.37,-9.37 5.69,-12.24 30.56,-16.24 32.73,12.17 62.01,43.73 81.02,28.67 27.4,20.89 15.46,5.74 16.85,1.51 5.03,-1.12 0.52,-3.38 4.26,-15.69 0.33,-3.61 8.8,3.44 2.12,8.44 -2.51,22.85 8.61,2.4 19.57,-8.54 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3649.77,9560.33 0,0 44.04,-29.39 10.02,-11.99 8.23,-13.53 5.69,-7.18 6,-3.04 11.57,-1.2 10.58,-3.68 19.34,-12.99 -10.4,3.97 -9.85,-0.26 -7.18,-5.97 -2.59,-13.17 2.32,-4.78 9.56,-7.39 1.45,-6.53 -3.07,-9.39 -5.17,-2.69 -6.32,-0.48 -6.67,-3.14 -23.07,-34.59 10.84,-18.3 22.47,1.51 11.89,24.93 7.16,-1.74 40.23,22.17 23.8,8.08 2.72,3.57 -1.48,7.56 -3.24,7.52 -3.02,3.44 -5.65,1.31 -6.22,3.6 -5.2,5.06 -2.74,5.4 1.61,9.88 7.98,-3.51 8.61,-8.43 3.57,-5.04 7.74,12.61 -2.49,17.37 -6.52,19.59 -4.6,18.71 3.24,-4.99 10.08,-9.9 -0.31,18.7 -4.81,27.61 -0.04,7.48 11.96,0.92 18.92,-20.44 30.97,-48.79 1.42,-7.1 0.96,-9.87 1.52,-8.83 3.36,-3.77 1.56,-2.43 13.84,-13.01 4.3,-15.25 -1.14,-9.12 -5.66,-6.36 -18.06,-12.41 -29.09,-13.36 -43.75,3.06 -10.86,-2.66 -7.23,-6.78 -3.08,-14.28 6.1,-6.88 10.02,-0.12 9.28,5.97 -3.01,5.68 -0.86,3.55 4.5,11.55 12.56,-2.88 42.78,-8.99 9.63,-8.34 64.78,-89.34 4.38,-9.61 17.25,-47.65 4.35,-18.07 -4.73,-0.12 -7.85,11.65 -11.74,7.23 -10.49,-3.32 -4.08,-19.89 3.95,-13.6 17.58,-26.7 5.55,-16.37 1.81,-23.95 -1.07,-22 -3.66,-19.03 -9.22,-22.9 -1.63,-8.39 -0.16,-22.27 -1.95,-5.97 -15.16,-21.39 -5.66,-13.72 -4.03,-12.81 -5.4,-11.13 -9.9,-8.53 -7.8,-2.14 -25.13,1.35 -28.58,-0.68 -10.64,-2.31 -11.89,-5.85 -10.83,-8.71 -7.62,-11.04 -11.36,-11.81 -13.78,1.42 -25.33,13.38 -42.86,2.68 -14.02,3.8 -6.22,4.19 -5.18,4.85 -5.63,4.09 -7.43,1.64 -15.94,-1.98 -8.46,0.76 -50.66,30.89 -18.56,1.29 -4.67,-8.54 0.02,-24.22 -9.83,7.08 -15.34,17.29 -10.65,6.09 -13.07,0.02 -24.04,-6.47 -11.24,5.69 48.26,38.09 8.31,15.96 -11.33,15.74 -8.26,18.04 -8.66,14.42 -12.19,5.1 -9.43,-3.03 -7.24,-4.19 -7.53,-2.88 -10.35,1.23 -14.83,14.5 -8.27,3.39 -7.56,-10 2.23,-17.45 22.55,-33.55 -1.97,-18.49 -3.21,-1.55 -22.39,3.42 -1.7,3.2 0.86,4.44 -0.28,5.98 1.79,-0.73 1.65,4.57 -0.66,9.37 -9.56,24.54 -1.62,11.88 1.22,11.75 3.99,10.75 -0.84,8.85 -9.88,5.73 -25.67,6.15 -8.08,5.01 -7.19,6.18 -3.15,5.36 -1.53,6.02 -5.97,9.93 -1.47,6.71 1.3,6.86 5.71,10.2 1.37,6.23 -1.6,12.17 -6.09,19.42 -1.46,6.31 1.41,38.38 -6.55,4.81 -9.9,0.74 -18.33,-2.18 -8.55,3.06 -9.01,7.89 -15.68,19.72 10.63,4.15 11.83,1.51 10.43,4.38 6.13,12.5 -34.79,14.78 5.18,-1.04 16.48,1.29 -6.7,12.92 -11.72,6.99 -25.09,3.06 -8.93,3.65 -21.59,26.46 -0.07,6.9 16.88,-7.53 18.07,-15.28 17.78,-11.36 16.3,4.55 -63.01,54.87 -23.63,5 4.85,11.61 5.9,4.66 7.15,2.43 8.24,5.03 23.16,30.61 33.96,7.34 11.57,-1.93 2.29,-5.96 0.37,-9.37 5.69,-12.24 30.56,-16.24 32.73,12.17 62.01,43.73 81.02,28.67 27.4,20.89 15.46,5.74 16.85,1.51 5.03,-1.12 0.52,-3.38 4.26,-15.69 0.33,-3.61 8.8,3.44 2.12,8.44 -2.51,22.85 8.61,2.4 19.57,-8.54 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7245" /><path
+               id="path3202" /><path
                d="m 4875.33,10177.2 0,0 55.21,-28.4 44.27,2.3 12.28,-5.9 22.86,-18.7 18.8,-7 33.78,-25.6 -7.58,-18 -23.75,-36.2 -8.12,-19.2 -14.68,-45.21 -7.35,-13.26 0.42,-8.24 18.52,-24.27 9.73,-16.7 4.49,-14.17 3.93,-20.81 8.18,-24.09 9.67,-21.4 8.47,-13.04 -1.96,-11.03 -0.65,-14.98 0.52,-23.66 -2.57,-19.38 -0.34,-7.39 1.12,-5.31 2.5,-5.57 6.52,-11.42 -12.28,-17.98 -22.68,-50.49 -22.96,-17.65 -3.4,-13.88 -5.32,-13.46 -13.75,-5.53 -10.6,3.16 -7.65,5.78 -8.51,4.59 -12.7,-0.28 -44.2,-28.7 -49.77,-57.2 -28.54,-66.82 19.56,-57.73 32.07,-25.92 11.03,-3.17 38.92,-0.9 10.89,-4.32 28.56,-21.93 15.18,-16.6 7.03,-16.01 2.07,-19.14 3.68,-15.95 10.47,-29.56 -8.8,-12.19 -3.44,-3.62 -31.91,-25.3 -131.79,-37.62 -9.56,-11.26 -15.83,-11.2 -11.97,-19.43 -6.69,-22.87 4.6,-18.86 -4.38,-9.76 -5.15,-4.26 -5.83,0.55 -6.02,4.86 3.61,24.23 -7.91,14.74 -13.2,3.57 -12.11,-9.57 -5.35,-5.77 -4.86,-1.99 -3.38,-4.06 -0.82,-11.61 3.62,-4.45 18.93,-13.64 53.68,-2.23 24.61,-7.12 6.58,-25.56 -3.13,-11.09 -3.82,-4.78 -4.57,-2.57 -5.35,-4.44 -12.79,-7.89 -6.07,-6.2 4.74,-2.5 26.35,-52.09 0.29,-21.06 -8.01,-11.77 -12.94,-5.3 -14.9,-1.53 -9.81,-4.29 -20.69,-17.61 -14.62,-3.58 -22.68,8.35 -36.11,31.46 -21.7,3.12 -0.05,-5.24 0.98,-1.34 1.72,0.19 2.03,-1.07 -3.42,-2.27 -1.87,-2.67 -2.29,-2.34 -4.77,-1.47 3.72,-21.09 -4.03,-12.89 -5.58,-11.11 -0.79,-16.04 5.28,-12.22 8.78,-7.06 9.71,-0.69 7.87,6.77 -1.89,3.96 -3.48,10.33 5.53,0.98 15.96,8.21 5.49,-5.98 9.94,-20.08 1.38,-4.37 6.15,-4.17 21.74,-19.45 10.84,-5.12 11.8,2.01 12.22,4.4 11.65,0.74 10.28,-8.93 19.12,-26.56 20.52,-21.82 0.32,-6.9 -54.75,-49.09 -8.89,-11.16 -23.03,-49.31 -3,-9.23 -6.25,-5.05 -16.4,-21.6 -6.59,-5.01 -8.74,-15.85 1.16,-35.37 10.01,-62.79 0.08,-39.85 -12.9,-1.98 -14.14,16.63 -3.59,15.56 -9.8,12.21 -22.93,40.91 -5.31,13.83 -0.01,23.09 7.06,18.19 16.48,28.84 -13.16,2.22 -9.3,5.83 -2.73,11.23 5.96,18.61 -7.42,4.02 -4.22,5.58 -6.77,12.51 -31.09,29.94 -2.59,4.97 -3.3,9.25 -1.62,8.86 0.5,5.95 -0.37,5.91 -4.47,8.75 -11.66,12.37 -10.19,7.54 -7.46,10.76 -3.52,21.97 -0.93,20.35 -2.74,15.66 -6.92,10.73 -13.34,5.58 -0.32,8.28 23.72,20.38 6.05,2.89 9.26,-3.03 13.04,-14.79 7.15,-3.12 6.78,4.6 13.92,16.1 2.78,-1.44 4.42,-5.98 8.85,5.49 12.42,13.69 -0.28,6.84 -6.97,8.47 -13.42,33.42 -7.98,10.96 -43.74,18.74 -12.24,1.81 -3.52,2.22 -8.86,10.13 -5.31,2.22 -40.53,0.67 -12.26,6.1 -10.79,9.49 -9.7,12.02 34.5,-6.07 68.71,-28.75 33.7,-6.19 -15.23,25.24 -40.67,28.03 -17.51,27.47 54.6,12.29 3.44,4.57 -2,8.85 -14.29,11.05 -36.16,-4.19 -11.37,14.24 8.95,10.37 4.89,13.26 -1.49,12.72 -10.15,8.7 -14.26,-0.79 -10.48,-10.13 -8.67,-12.65 -8.83,-8.51 -8.45,0.43 -23.82,9.81 -48.32,10.25 -11.76,6.54 -8.57,-4.97 -44.75,18.28 -8.08,-2.35 -17.08,-10.48 -8.83,-3.53 -43.86,-1.47 0.25,-7.64 13.34,-7.1 -22.06,0.08 -16.04,5.23 -10.5,15.49 -5.26,30.62 9.48,-6.6 9.41,-0.04 7.52,7.38 3.5,15.42 -6.4,-5.16 -6.69,-2.63 -14.88,-1.35 -2.17,6.03 0.9,27.14 -4.33,6.02 -11.63,6.47 -35.91,31.1 -6.22,10.11 5.74,3 9.08,1.32 7.42,4.03 0.82,11.42 -5.08,5.31 -9.26,2.41 -9.71,0.16 -6.52,-1.18 -4.2,-6.23 -2.53,-9.51 -4.43,-7.45 -9.77,-0.29 -4.15,4.88 -9.72,24.39 -0.25,8.28 17.08,-1.21 9.02,1.14 6.21,4.85 5.27,7.47 7.15,6.21 7.86,4.45 7.28,1.78 13.03,6.45 5.92,13.54 -1.14,13.2 -7.91,5.85 2.13,11.35 -6.09,24.9 -13.91,39.16 -8.27,13.61 -8.39,9.18 -9.95,4.98 -13.1,1.44 -11.05,-8.45 -6.98,-2.34 -3.38,6 0.79,15.1 3.28,8.16 6.03,3.46 8.46,0.78 16.44,6.83 6.15,16.13 -2.47,20.93 -9.19,21.07 -28.93,34.4 -31.18,17.37 -69.14,16.72 -0.23,8.28 99.37,-5.4 -11.02,18.31 -39.74,15.87 -15.42,9.45 -6.8,10.62 -4.01,8.35 -5.25,6.41 -10.53,5 -32.84,1.56 -10.21,5.48 -0.19,6.99 99.37,-12.42 20.41,4.17 38.77,16.83 21.56,4.23 0.23,-7.56 -6.97,0.79 -6.73,-0.67 -6.15,-2.66 -5.62,-5.24 10.52,-19.07 16.7,-14.67 18.43,-5.12 15.74,9.76 -26.88,21.94 8.37,8.5 5.97,-5.8 10.66,-2.25 22.57,1.07 10.12,4.42 20.77,16.03 21.37,5.63 9.54,5.68 7.11,10.69 2.41,16.63 0.35,8.7 2.46,15.46 0.4,7.03 -2.57,8.78 -11.55,15.61 -4.12,8.89 16.35,-10.14 15.49,-2 14.35,6.66 12.98,15.76 21.58,-3.89 16.25,30.89 1.63,44.13 -21.92,36.05 -18.4,6.89 -40.11,1.56 -50.51,17.31 -14.53,11.87 -6.38,19.45 81.05,-35.83 16.31,4.54 96.86,-11.75 11.83,-10.38 25.82,2.42 43.54,15.28 22.14,14.98 12.67,3.01 7.48,-9.4 -2.26,-11.26 -16.64,-21.86 -4.83,-13.43 7.89,-11.38 -3.84,-7.52 -10.01,-2.04 -10.49,5.03 1.13,4.13 2.15,11.26 -19.91,-1.96 -7.9,-4.71 -5.7,-9.9 33.08,-53.41 13.04,-30 -7.81,-22.3 -9.45,-2.1 -19.76,4.59 -9.25,-3.99 -10.82,-17.05 -7.09,-6.37 -11.53,-0.55 0.31,-8.22 10.3,-3.01 30.85,4.58 8.27,4.12 9.62,8.03 10.78,6.29 11.58,-0.92 4.56,-8.77 7.27,-17.97 5.65,-17.77 -0.33,-8.13 -50.16,-11.21 -10.98,-5.06 -4.21,-7.13 8.2,-8.61 9.14,-1.03 28.14,3.35 5.86,2.88 4.58,5.77 10.94,-10.22 16.03,-21.99 5.13,-14.47 -0.16,-5.54 -3.5,-6.88 -4.39,-18.83 10.82,10.97 7.76,10.86 23.88,58.73 1.92,2.15 -1.76,7.99 -6.41,13.78 -1.53,4.09 1.48,12.96 4.13,16.23 9.34,25.38 8.85,10.22 21.99,7.42 10.93,6.92 8.81,31.93 -14.4,35.67 -16.05,32.09 3.69,21.29 11.08,-0.45 23.14,-22.51 11.82,-5.48 6.22,-4.57 0.36,-11.27 -2.05,-12.59 -0.78,-8.79 3.32,-13.85 2.61,-5.01 3.06,-3.21 5.22,-8.47 13.07,-31.91 13.16,-45.44 3.77,-42.91 -15.12,-24.28 -23.07,7.18 -10.84,-1.91 -3.75,-18.7 -4,-12.9 -21.17,-22.38 -7.47,-15.86 12.79,-2.34 17.78,9.16 13.9,15.92 1.04,17.95 9.83,4.57 10.6,-2.94 9.24,-9.04 6.08,-13.9 -19.91,5.81 -2.49,-2.64 4.4,-10 9.95,-7.23 21.52,-8.15 4.56,23.58 12.78,35.99 0.77,24.92 -31.44,120.36 -1.73,39.32 -2.97,15.88 -17.4,58.67 -10.35,15.01 -11.67,5.4 -13.51,-1.34 -46.84,-21.56 -17.8,-4.03 -10.99,9.34 9.51,27.77 31.13,28.94 57.67,39.5 91.48,85.4 48.29,30.2 51.85,0.4 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4875.33,10177.2 0,0 55.21,-28.4 44.27,2.3 12.28,-5.9 22.86,-18.7 18.8,-7 33.78,-25.6 -7.58,-18 -23.75,-36.2 -8.12,-19.2 -14.68,-45.21 -7.35,-13.26 0.42,-8.24 18.52,-24.27 9.73,-16.7 4.49,-14.17 3.93,-20.81 8.18,-24.09 9.67,-21.4 8.47,-13.04 -1.96,-11.03 -0.65,-14.98 0.52,-23.66 -2.57,-19.38 -0.34,-7.39 1.12,-5.31 2.5,-5.57 6.52,-11.42 -12.28,-17.98 -22.68,-50.49 -22.96,-17.65 -3.4,-13.88 -5.32,-13.46 -13.75,-5.53 -10.6,3.16 -7.65,5.78 -8.51,4.59 -12.7,-0.28 -44.2,-28.7 -49.77,-57.2 -28.54,-66.82 19.56,-57.73 32.07,-25.92 11.03,-3.17 38.92,-0.9 10.89,-4.32 28.56,-21.93 15.18,-16.6 7.03,-16.01 2.07,-19.14 3.68,-15.95 10.47,-29.56 -8.8,-12.19 -3.44,-3.62 -31.91,-25.3 -131.79,-37.62 -9.56,-11.26 -15.83,-11.2 -11.97,-19.43 -6.69,-22.87 4.6,-18.86 -4.38,-9.76 -5.15,-4.26 -5.83,0.55 -6.02,4.86 3.61,24.23 -7.91,14.74 -13.2,3.57 -12.11,-9.57 -5.35,-5.77 -4.86,-1.99 -3.38,-4.06 -0.82,-11.61 3.62,-4.45 18.93,-13.64 53.68,-2.23 24.61,-7.12 6.58,-25.56 -3.13,-11.09 -3.82,-4.78 -4.57,-2.57 -5.35,-4.44 -12.79,-7.89 -6.07,-6.2 4.74,-2.5 26.35,-52.09 0.29,-21.06 -8.01,-11.77 -12.94,-5.3 -14.9,-1.53 -9.81,-4.29 -20.69,-17.61 -14.62,-3.58 -22.68,8.35 -36.11,31.46 -21.7,3.12 -0.05,-5.24 0.98,-1.34 1.72,0.19 2.03,-1.07 -3.42,-2.27 -1.87,-2.67 -2.29,-2.34 -4.77,-1.47 3.72,-21.09 -4.03,-12.89 -5.58,-11.11 -0.79,-16.04 5.28,-12.22 8.78,-7.06 9.71,-0.69 7.87,6.77 -1.89,3.96 -3.48,10.33 5.53,0.98 15.96,8.21 5.49,-5.98 9.94,-20.08 1.38,-4.37 6.15,-4.17 21.74,-19.45 10.84,-5.12 11.8,2.01 12.22,4.4 11.65,0.74 10.28,-8.93 19.12,-26.56 20.52,-21.82 0.32,-6.9 -54.75,-49.09 -8.89,-11.16 -23.03,-49.31 -3,-9.23 -6.25,-5.05 -16.4,-21.6 -6.59,-5.01 -8.74,-15.85 1.16,-35.37 10.01,-62.79 0.08,-39.85 -12.9,-1.98 -14.14,16.63 -3.59,15.56 -9.8,12.21 -22.93,40.91 -5.31,13.83 -0.01,23.09 7.06,18.19 16.48,28.84 -13.16,2.22 -9.3,5.83 -2.73,11.23 5.96,18.61 -7.42,4.02 -4.22,5.58 -6.77,12.51 -31.09,29.94 -2.59,4.97 -3.3,9.25 -1.62,8.86 0.5,5.95 -0.37,5.91 -4.47,8.75 -11.66,12.37 -10.19,7.54 -7.46,10.76 -3.52,21.97 -0.93,20.35 -2.74,15.66 -6.92,10.73 -13.34,5.58 -0.32,8.28 23.72,20.38 6.05,2.89 9.26,-3.03 13.04,-14.79 7.15,-3.12 6.78,4.6 13.92,16.1 2.78,-1.44 4.42,-5.98 8.85,5.49 12.42,13.69 -0.28,6.84 -6.97,8.47 -13.42,33.42 -7.98,10.96 -43.74,18.74 -12.24,1.81 -3.52,2.22 -8.86,10.13 -5.31,2.22 -40.53,0.67 -12.26,6.1 -10.79,9.49 -9.7,12.02 34.5,-6.07 68.71,-28.75 33.7,-6.19 -15.23,25.24 -40.67,28.03 -17.51,27.47 54.6,12.29 3.44,4.57 -2,8.85 -14.29,11.05 -36.16,-4.19 -11.37,14.24 8.95,10.37 4.89,13.26 -1.49,12.72 -10.15,8.7 -14.26,-0.79 -10.48,-10.13 -8.67,-12.65 -8.83,-8.51 -8.45,0.43 -23.82,9.81 -48.32,10.25 -11.76,6.54 -8.57,-4.97 -44.75,18.28 -8.08,-2.35 -17.08,-10.48 -8.83,-3.53 -43.86,-1.47 0.25,-7.64 13.34,-7.1 -22.06,0.08 -16.04,5.23 -10.5,15.49 -5.26,30.62 9.48,-6.6 9.41,-0.04 7.52,7.38 3.5,15.42 -6.4,-5.16 -6.69,-2.63 -14.88,-1.35 -2.17,6.03 0.9,27.14 -4.33,6.02 -11.63,6.47 -35.91,31.1 -6.22,10.11 5.74,3 9.08,1.32 7.42,4.03 0.82,11.42 -5.08,5.31 -9.26,2.41 -9.71,0.16 -6.52,-1.18 -4.2,-6.23 -2.53,-9.51 -4.43,-7.45 -9.77,-0.29 -4.15,4.88 -9.72,24.39 -0.25,8.28 17.08,-1.21 9.02,1.14 6.21,4.85 5.27,7.47 7.15,6.21 7.86,4.45 7.28,1.78 13.03,6.45 5.92,13.54 -1.14,13.2 -7.91,5.85 2.13,11.35 -6.09,24.9 -13.91,39.16 -8.27,13.61 -8.39,9.18 -9.95,4.98 -13.1,1.44 -11.05,-8.45 -6.98,-2.34 -3.38,6 0.79,15.1 3.28,8.16 6.03,3.46 8.46,0.78 16.44,6.83 6.15,16.13 -2.47,20.93 -9.19,21.07 -28.93,34.4 -31.18,17.37 -69.14,16.72 -0.23,8.28 99.37,-5.4 -11.02,18.31 -39.74,15.87 -15.42,9.45 -6.8,10.62 -4.01,8.35 -5.25,6.41 -10.53,5 -32.84,1.56 -10.21,5.48 -0.19,6.99 99.37,-12.42 20.41,4.17 38.77,16.83 21.56,4.23 0.23,-7.56 -6.97,0.79 -6.73,-0.67 -6.15,-2.66 -5.62,-5.24 10.52,-19.07 16.7,-14.67 18.43,-5.12 15.74,9.76 -26.88,21.94 8.37,8.5 5.97,-5.8 10.66,-2.25 22.57,1.07 10.12,4.42 20.77,16.03 21.37,5.63 9.54,5.68 7.11,10.69 2.41,16.63 0.35,8.7 2.46,15.46 0.4,7.03 -2.57,8.78 -11.55,15.61 -4.12,8.89 16.35,-10.14 15.49,-2 14.35,6.66 12.98,15.76 21.58,-3.89 16.25,30.89 1.63,44.13 -21.92,36.05 -18.4,6.89 -40.11,1.56 -50.51,17.31 -14.53,11.87 -6.38,19.45 81.05,-35.83 16.31,4.54 96.86,-11.75 11.83,-10.38 25.82,2.42 43.54,15.28 22.14,14.98 12.67,3.01 7.48,-9.4 -2.26,-11.26 -16.64,-21.86 -4.83,-13.43 7.89,-11.38 -3.84,-7.52 -10.01,-2.04 -10.49,5.03 1.13,4.13 2.15,11.26 -19.91,-1.96 -7.9,-4.71 -5.7,-9.9 33.08,-53.41 13.04,-30 -7.81,-22.3 -9.45,-2.1 -19.76,4.59 -9.25,-3.99 -10.82,-17.05 -7.09,-6.37 -11.53,-0.55 0.31,-8.22 10.3,-3.01 30.85,4.58 8.27,4.12 9.62,8.03 10.78,6.29 11.58,-0.92 4.56,-8.77 7.27,-17.97 5.65,-17.77 -0.33,-8.13 -50.16,-11.21 -10.98,-5.06 -4.21,-7.13 8.2,-8.61 9.14,-1.03 28.14,3.35 5.86,2.88 4.58,5.77 10.94,-10.22 16.03,-21.99 5.13,-14.47 -0.16,-5.54 -3.5,-6.88 -4.39,-18.83 10.82,10.97 7.76,10.86 23.88,58.73 1.92,2.15 -1.76,7.99 -6.41,13.78 -1.53,4.09 1.48,12.96 4.13,16.23 9.34,25.38 8.85,10.22 21.99,7.42 10.93,6.92 8.81,31.93 -14.4,35.67 -16.05,32.09 3.69,21.29 11.08,-0.45 23.14,-22.51 11.82,-5.48 6.22,-4.57 0.36,-11.27 -2.05,-12.59 -0.78,-8.79 3.32,-13.85 2.61,-5.01 3.06,-3.21 5.22,-8.47 13.07,-31.91 13.16,-45.44 3.77,-42.91 -15.12,-24.28 -23.07,7.18 -10.84,-1.91 -3.75,-18.7 -4,-12.9 -21.17,-22.38 -7.47,-15.86 12.79,-2.34 17.78,9.16 13.9,15.92 1.04,17.95 9.83,4.57 10.6,-2.94 9.24,-9.04 6.08,-13.9 -19.91,5.81 -2.49,-2.64 4.4,-10 9.95,-7.23 21.52,-8.15 4.56,23.58 12.78,35.99 0.77,24.92 -31.44,120.36 -1.73,39.32 -2.97,15.88 -17.4,58.67 -10.35,15.01 -11.67,5.4 -13.51,-1.34 -46.84,-21.56 -17.8,-4.03 -10.99,9.34 9.51,27.77 31.13,28.94 57.67,39.5 91.48,85.4 48.29,30.2 51.85,0.4 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7247" /><path
+               id="path3204" /><path
                d="m 3678.7,11810.4 0,0 -16.48,-67.1 17.89,-49.9 31.22,-45.4 23.73,-53.7 -16.4,-49.3 1.67,-58.1 15.27,-113.8 -9.99,-16.9 -30.39,-23.6 -14.04,-18.4 -20.49,-45.4 -9.01,-30.4 -5.92,-48.1 -13.97,-53.9 -6.99,-17.9 -4.99,-7.8 -4.87,-4.5 -6.56,-2.1 -28.7,-0.2 -8.87,-2.4 -10.93,-3.6 -51.44,33.6 -38.36,40.3 -25.11,9.8 -20.55,20.6 -15.1,4.5 -12.05,-7.1 -16.83,-28.4 -11.62,-3.1 11.24,-1.2 12.61,16.8 10.54,7.7 10.7,5.5 12.61,-5.1 60.87,-62.5 19.99,-9.5 23.72,-21 13.4,-4.6 49.07,-0.3 11.42,-6.2 -16.55,-21.6 -3.6,-9.2 -2.62,-14.8 -2.83,-30.4 -1.87,-8.1 4.75,-18.2 7.74,-56.7 3.43,-44.7 4.86,-23.6 15.75,-46.9 5.46,-7.3 6.13,-6.4 1.54,-7.3 -8.29,-10 -4.86,-0.3 -14.62,6.5 -7.69,1.6 -27.58,-0.5 -9.54,-4.4 -10.88,-11.2 -10.44,10.8 -11.72,8.5 -13.33,2.4 -15.25,-7.4 -13.49,-11.1 -5.6,-2.4 -9.9,-2.1 -9.23,-4.6 -18.69,-15.9 -22.36,-8.5 -27.45,-21.3 -85.38,-13.4 0.08,-7.6 27.83,-4.7 91.76,29.7 20.33,13.2 8.89,2.5 1.93,2.4 0.3,5.2 1.19,5.2 4.52,2.5 4.96,-1.2 8.38,-5.6 3.76,-1.3 6.55,1.8 7.46,4.6 6.17,6.4 2.47,7.3 3.87,15.1 9.51,2.4 20.3,-6.2 -1.51,-4.1 -2.86,-10.5 40.58,-7.2 25.49,2 16.13,10.5 14.58,5.9 11.87,-24.3 3.71,-36.8 -9.97,-31.8 -40.75,-32.7 -29.91,-35.2 -5.48,-2.6 -3.69,-36.3 -1.98,-10.1 4.93,-12.7 -2.58,-15.9 -6.62,-15 -7.35,-9.2 18.89,1.4 6.96,6 -1.52,42.1 1.43,30.6 5.96,14.9 25.37,20 19.79,28 10.77,7.4 12.79,-7.9 2.29,-7 3.84,-23.7 0.71,-7.1 2.74,-3.7 18.67,-14.9 46.51,-25.5 50.43,-4.8 145.58,26.7 20.46,-1.8 20.33,-10.8 9.5,-10.2 20.81,-34.5 39.36,-37.7 0.19,-6.8 -13.99,-14.6 -6.87,-25.9 -2.29,-29.7 0.15,-26.2 -6.08,-24.9 -54.77,-83 -28.29,-20.6 -10.57,-15.5 -2.95,-14.9 2.48,-34.6 -7.74,-34 -19.54,-4.6 -22.09,15.4 -15.05,25.5 15.9,3 6.39,6.3 2.93,14.1 -2.1,14.9 -6.32,4.4 -8.11,1.2 -7.57,5.5 -15.05,5 -14.88,-18.8 -13.48,-24.5 -19.35,-23.9 5.01,-25.8 8.73,-28.2 3.19,-18.6 -5.8,-8 -9.91,-5.1 -10.58,-1.4 -7.84,2.7 -6.44,9 -6.63,21.2 -4.8,10.9 4.83,5.3 10.36,8 5.66,2.3 -4.7,12.3 -5.58,5.9 -25.84,7.2 -5.55,-1.2 -13.74,-9.5 -17.32,-3.7 -10.83,8.4 -9.74,15.4 -13.74,16.9 13.76,1.7 20.36,17.4 11.63,4.6 8.92,-6.3 11.01,-11.5 10.74,-4 7.93,15.7 -10.89,17.5 0.47,13.9 17.45,37.2 -8.51,-0.3 -9.03,3.4 -8.33,6.5 -6.26,8.4 -6.94,4.4 -15.83,-7.9 -8.59,7 -2.07,-15 -3.2,-9.3 -5.34,-5 -8.61,-1.6 -4.49,-6 -15.81,-36.9 -14.87,-19.9 -32.95,-28.3 -14.63,-21.3 -8.21,-26.3 4.4,-16.1 10.55,-15.1 10.12,-22.7 4.63,-28 -2.18,-21.6 -7.37,-19.6 -10.81,-22.3 14.75,7.5 10.99,1.6 3.11,-7.8 -15.02,-35.4 -1.22,-14.23 1.54,-28.17 -0.23,-19.39 -0.69,-8.52 -2.28,-9.42 -14.7,-20 -2.26,-7.92 -3.04,0.01 -6.7,-4.61 -7.06,-6.96 -4.22,-6.81 3.15,-2.76 4.72,-10.79 2.53,-11.81 -5.29,-8.14 -1.92,-5.44 -3.21,-5.52 -5.84,-2.58 -7.74,1.94 -5.98,5.25 -9.96,15.23 -2.97,7.11 -1.94,8.19 -2.85,8.27 -5.94,7.24 -7.93,2.63 -60.8,-3.68 -8.04,-2.94 -4.95,-6.66 -3.77,-7.61 -4.26,-5.87 -16.21,-6.73 -33.02,1.58 -15.16,-3.96 15.88,-17.26 89.95,-18.62 6.49,-4.91 -2.16,-11.73 -9.96,-22.82 -4.9,-19.54 1.61,-8.52 8.79,-1.88 16.34,0.53 0.12,-7.59 -25.47,-15.16 -7.35,-12.59 7.41,-18.19 -2.31,-2.04 -5.75,-6.41 -14.88,8.93 -68.77,-21.11 -31.31,-17.29 -18.51,-1.94 -38.83,14.81 -22.29,19.44 -5.81,3.05 -65.01,-0.31 -14.8,7.19 -1.98,-4.33 -1.08,-3.06 -0.69,-3.34 -0.41,-5.24 13.11,-6.22 45.28,-0.12 8.24,-5.04 32.89,-33.26 6.84,-13.22 4.61,-11.97 6.47,-8.56 12.59,-3.26 60.14,0.7 -10.13,-12.78 -32.45,-26.43 -17.21,-22.74 -8.48,-5.96 -14.58,-2.11 -5.36,-4.83 -1.06,-10.42 -0.03,-10.47 -2.1,-4.79 -39.7,-10.34 -14.26,-10.59 -8.72,-2.44 -7.65,1.66 -14.21,6.09 -8.35,-0.41 1.73,-4.53 2.64,-3.03 -9.04,-13.01 -23.31,-7.94 -10.57,-9.8 11.15,-6.94 11.82,0.9 31.02,8.36 5.78,3.55 6.13,1.67 36.68,-19.45 2.74,-12.57 -2.67,-15.21 -6.8,-13.35 -8.71,-6.06 -21.28,-4.45 -9.18,-5.02 3.38,-12.34 7.99,-16.78 2.31,-8.78 -1.66,-12.5 -3.72,-9.75 1.12,-8.21 12.91,-8.17 7.87,-7.12 7.63,-10.28 2.07,-10.91 -8.64,-8.88 0.07,-8.28 6.63,-7.3 23.82,-40.2 7.91,-3.26 7.62,-7.23 2.88,-18.2 -2.3,-12.96 -4.39,-8.16 -4.17,-9.76 -1.66,-18.01 -3.35,-8.09 -8.16,-5.83 -10.04,-3.49 -8.74,-1.11 -37.37,6.57 -8.66,-2.55 -5.15,-5.9 -4.22,-7.46 -5.67,-7.12 -15.27,-9.83 -9.25,-3.98 -8.22,-1.61 -5.04,-4.81 0,-9.83 5.4,-8.19 10.93,0.08 0.06,-7.59 -18.78,0.55 -8.75,-2.3 -7.67,-6.78 6.43,-4.79 8.05,-1.9 18.46,0.08 8.53,-4.08 9.24,-9.94 15.36,-23.74 -16.33,-21.98 -10.88,-10.38 -11.77,-6.64 -29.15,-6.12 -11.5,-8.7 5.58,-15.84 7.87,-0.12 36.1,14.97 16.32,-0.97 5.48,1.14 4.66,3.66 4.38,5.32 5.31,4.93 7.31,2.13 13.85,-5.8 26.02,-28.3 13.32,-11.03 35.26,-9.14 8.53,-6.29 5.2,-16.22 15.07,-84.27 1.65,-4.93 -1.03,-3.4 -6.11,-5.01 -9.61,-0.39 -9,5.43 -7.5,0.9 -4.9,-13.85 8.05,-2.51 7.61,-4.75 6.5,-6.55 4.33,-8.06 2.49,-9.35 1.46,-12.87 -2.6,-11.52 -9.5,-4.99 -7.42,4.64 -9.44,20.83 -5.55,4.66 -26.72,-2.27 -8.38,1.94 -12.14,7.08 0.82,4.43 5.21,4.36 1.13,6.91 -11.42,16.4 -4.27,10.09 4.54,4.47 16.97,6.76 -3.57,12.85 -15.24,8.66 -18.1,-5.61 -3.59,-6.71 -8.23,-22.72 -7.12,-12.48 -3.91,-8.43 -2.96,-3.76 -4.83,-1.59 -10.42,1.42 -4.41,-3.83 -10.92,-12.96 -26.59,-22.95 -8.6,-13.75 -4.04,-23.54 -9.48,-3.28 -10.9,1.2 -13.02,12.18 -11.61,-2.71 -7.01,-6.36 -9.15,-2.58 -6.21,-6.53 -9.63,-1.82 -46.91,-0.02 -11.37,4.56 -4.76,13.22 -1.97,15.52 -2.96,11.2 -10.78,9.51 -136.16,32.03 -50.37,20.75 -51.21,8.95 -14.98,-2.26 -43.74,-16.3 -23.66,1.13 -22.04,7.06 5.19,18.84 -4.73,7.61 8.75,30.78 -5.29,28.26 -10.12,27.42 -5.94,28.27 2.63,36.04 7.74,29.81 9.3,27.33 7.05,28.95 -67.66,12.49 -7.58,-0.7 -2.43,-9.24 -1.92,-43.12 -4,-5.44 -6.27,-1.16 -8.24,-9.21 -8.86,-12.42 -9.88,-5.79 -9.82,2.37 -8.62,12.25 -7.11,27.72 1.07,26.68 4.22,26.94 2.66,28.84 12.01,21.71 26.4,3.78 26.86,-8.05 13.34,-14.17 -8.5,-2.25 -7.02,-5.7 -11.08,-14.66 1.76,-12.49 37.98,-5.74 34.81,-8.41 12.73,5.12 -1.28,21.17 -11.48,37.95 -7.99,47.71 -4.56,47.64 1.31,12.71 5.79,15.55 1.36,9.71 -1.05,14.27 -7,27.93 -5.51,50.18 -4.46,23.83 -8.97,21.38 -15.95,12.69 -22.52,5.71 -42.15,1.39 -30.45,9.83 -25.54,24.43 -56.43,86.22 0.54,7.87 13.45,2.4 0.07,6.9 -12.14,5.18 -14.45,1.3 -14.18,-3.48 -10.98,-9.37 -7.4,-15.57 1.84,-10.6 18.37,-20.21 -5.82,-1.38 -3.75,-2.6 -8.21,-11.07 14.53,-2.86 17.11,-11.34 14.2,-16.76 5.82,-19.32 -8.2,-3.03 -74.93,63.9 -15.35,9.21 -36.9,7.24 -9.52,10.02 -0.57,16.63 36.68,94.38 12.29,42.99 8.4,45.63 1.7,45.04 -27.22,219.05 -2.96,11.2 -1.78,2.43 -0.58,5.25 0.72,5.16 1.83,2.34 3.72,-1.31 1.64,-2.9 1.07,-2.83 1.79,-1.32 4.05,-5.91 14.4,-85.54 10.9,-29.66 1.47,-12.27 -1.54,-10.62 -6.33,-15.26 -1.57,-12.38 2.02,-15.29 5.34,-3.14 28.35,15.44 30.09,23.55 14.22,4.89 24.51,19.06 25.2,25.99 3.71,18.15 -3.96,19.27 -8.48,18.91 -9.79,17.12 -23.19,30.59 0.34,34.53 -6.62,40 -15.76,25.7 -21.38,15.8 -47.71,22.5 -12.96,2 -5.78,-9.4 0.06,-47.5 -1.38,-22.6 -4.11,-25.2 2.08,-18.58 -1.83,-7.11 -9.05,3.02 -2.5,5.9 -2.63,11.67 -2.08,13.3 -1.79,80.8 2.2,25.2 15.91,69.3 2.32,26.2 -2.15,385.4 2.72,18.7 4.75,19 28.7,95.9 12.83,29.7 9.21,14.3 3.7,-3.1 2.36,-9.6 5.57,-5.6 -0.53,-7.9 -14.22,-36 -4.87,-9.8 -0.08,-7.6 3.82,-3.8 4.03,-2.1 11.08,-1.2 2.11,-4.9 2.22,-10.7 3.12,-10.8 4.96,-4.9 25.14,-4.8 6.74,-4.7 -8.94,-5.2 2.18,-10.3 -1.83,-18 3.45,-10.4 5.54,-4.5 4.8,2.8 1.72,7.4 -3.53,9.3 0.08,7.7 19.43,6.2 29.78,0.6 27.25,-6 11.89,-13 5.71,-2 30.18,-24.8 8.48,3.8 8.07,9.6 6.69,12.3 4.65,12 3.81,0 18.29,-52.4 0.4,-8.6 -2.38,-4.6 0.95,-10.5 3.89,-10.4 10,-8.4 11.88,-15.6 7.11,-4.4 10.57,0.1 37.66,7.9 4.02,2 3.33,5.7 2.13,8.3 0.86,10.5 0.32,16.3 0.87,11 3.58,22.8 2.75,6.4 3.25,2.6 1.35,3.5 -3.02,9.6 -18.99,15.3 -6.22,0.6 -4.56,2.7 -2.77,5.7 -0.91,9.7 -2.74,9.8 -10.38,5.7 0.24,11.5 8.28,7.4 27.96,1.8 39.82,67.2 9.25,5.5 25.21,7.7 33.79,1.5 1.14,2.5 -14.67,5.5 -26.76,1 -6.18,6.2 5.67,19.8 9.01,17.4 7.29,9.4 19.48,14.6 28.82,28.5 11.42,2.5 6.75,-1.2 11.24,-5.8 6.82,-1.2 7.19,1.9 3.72,4.6 2.97,5.2 4.92,4.1 10.66,0.5 14.01,-4.6 12.14,-9.2 5.26,-13.6 3.71,-26 8.49,-15.3 9.95,-11 7.55,-12.6 8.03,-23.4 -16.95,-4.3 -17.98,-28.8 -15.51,-4.3 0.01,-8.3 2.55,-10.1 -6.64,-10 -16.84,-17.2 -5.7,-15.9 -0.69,-14 2.63,-35.5 4.58,-10.6 10.16,1.8 10.09,11.9 8.19,36.5 9.07,2.5 11.04,-2.3 9.71,2.1 -3.77,10.8 -5.08,3.8 -5.9,-1.3 -6.2,-5 4.67,12.1 4.74,8.7 4.22,9.7 3.07,15.1 4.12,0 -3.62,-24.9 16.05,-3.8 21.8,3.8 13.82,-1.9 8.39,-5.6 9.32,1.9 8.43,-0.8 5.51,-14 -1.67,-10.9 -14.06,-20.8 -5.41,-14.7 6.61,-2.6 1.29,-4.9 0.54,-6.8 4.22,-8.4 6,-6.1 15.48,-9 2.43,-4.6 1.49,-6 2.76,-4.8 5.98,-0.5 8.81,18.7 3.65,5.6 8.81,-8.2 7.33,8.9 -0.21,14.1 -13.75,7.3 -19.06,-11.5 -1.13,-3.4 -2.86,-1 -6.42,0.6 -5.28,3 -0.41,6.3 1.88,5.5 1.65,0.3 0.9,41.4 9.86,35.7 5.43,31.6 -12.61,28.9 -6.04,6.7 -3.24,2.6 -12.08,-1.8 -24.64,-11.5 -6.05,-8.7 -13.15,-8.6 -13.04,-0.9 -5.42,14.3 6.87,13.5 28.16,17.2 6.27,18.8 3.48,15.6 -1.29,7.7 -15.37,5.4 -6.21,5.5 -5.33,7.3 -4.26,7.8 -3.17,7.4 -3.57,11.1 -2.31,13.4 0.54,13.7 3.2,3.7 13.88,22.2 1.56,5.3 2.88,5.8 -0.54,12.8 -2.88,12.8 -3.86,5.8 -7.12,1.5 -5.42,3.8 -9.85,10.5 11.26,27.9 11.32,22.1 12.27,18.1 18.78,19.5 4.27,2.5 4.58,1.6 5.21,0.5 3.19,3.5 3.39,15.7 1.87,3.6 89.91,30.8 20.14,-0.5 71.09,-29.1 0.07,-8.3 -7.86,-5.3 -0.45,-6.9 4.83,-6.5 8.21,-4.1 8.28,0.8 5.86,5.8 21.9,35.6 9.78,20.2 10.95,16 23.67,9.1 19.99,13 29.05,-7.3 64.66,8.4 -36.4,33.1 -18.12,6.7 -12.4,10.2 -6.54,2.3 -4.85,-2.7 -21.03,-29.4 -11.52,-12.3 -12.85,-6.3 -11.37,8.6 -11.14,11.2 -11.43,-3.4 -21.13,-20 -24.29,-10.5 -52.67,-1.2 -138.69,-51.1 -11.98,-1.2 -11.51,5.2 -68.08,57.2 3.85,-14.7 -4.94,-7.5 -19.94,-8.3 -14.85,-11.2 -7.72,-3.9 -10.23,-0.1 3.76,6.9 -10.85,7.1 -10.61,-2.3 -10.29,-8.5 -10.11,-11.4 -9.85,1.1 -12.38,-12.3 -10.56,-13.4 -4.53,-2 -5.19,14.8 -12.04,5.8 -13.82,-1.4 -10.37,-7 8.89,-9.8 -22.16,-20.6 -30.22,-15.9 -21.66,6.5 -14.28,-3.1 -14.24,-6.5 -6.57,-8 -3.5,-21.6 -8.19,-13 -9.74,-9.9 -7.94,-12.4 -3.7,-31.6 -0.65,-2.6 -1.12,-9.6 -2.87,-5.6 -4,-4.6 -19.61,-30 -13.76,-1.1 -6.58,-3.1 -2.88,-6.4 -4.58,-4.4 -10,-4.1 -10.15,-7.4 -4.66,-14.6 4.96,-37.8 -0.76,-17.6 -9.25,-10.2 -0.05,-7 24.5,2.4 5.49,-2.6 4.59,-13.6 -3.87,-9.4 -7.89,-5.5 -8.05,-1.7 -7.07,2.4 -14.29,10.6 -7.95,2.4 -7.36,-2.1 -12.37,-10 -7.74,-2.9 -0.08,-8.3 29.32,8.1 8.78,-2.9 12.72,-10.3 5.93,-2.2 43.5,18.6 8.9,-3.8 1.54,-8.1 -1.78,-21.3 0.01,-9.3 9.1,-14.8 4.13,-10.7 -9.17,-16.3 -6.39,-7.8 -8.27,-3.5 -8.7,-1.3 -5.35,-3.5 0.09,-4.7 7.78,-5 -12.51,-0.2 -16.89,15.9 -14.95,20.5 -6.37,13.2 -5.45,16.7 -13.71,13.4 -17.09,9.1 -15.74,3.4 -10.71,5.9 -12.85,14.2 -11.98,17.4 -7.89,15.4 -6.3,40.2 -3.79,6.2 -8.37,3 -17,11.7 -10.16,0.9 8.4,-41.1 2.84,-24.1 -1.62,-15.1 -9.19,-1.4 -4.36,23.4 -0.69,51.4 7.64,45.9 14.12,34.2 110.82,177.7 32.96,34 50.66,79.5 19.33,18.3 21.65,-0.6 50.36,-18.2 28.36,-1.8 54.87,12.4 24.36,12.6 28.93,32.4 10.94,4.9 151.36,-21.8 54.94,6.7 54.85,20.8 51.43,35.6 45.1,51.4 127.2,242.2 22.4,34.3 40.65,46.9 20.12,40.2 7.84,5.8 13.98,21.2 28.88,6.2 55.11,-3.2 53.71,10.1 48.5,22.8 41.85,32.1 71.14,77.2 38.9,30.8 15.85,6.6 17.92,2.3 17.32,-3.6 14.49,-11.4 -32.2,-13.1 -30.21,-30.8 -47.27,-77.2 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3678.7,11810.4 0,0 -16.48,-67.1 17.89,-49.9 31.22,-45.4 23.73,-53.7 -16.4,-49.3 1.67,-58.1 15.27,-113.8 -9.99,-16.9 -30.39,-23.6 -14.04,-18.4 -20.49,-45.4 -9.01,-30.4 -5.92,-48.1 -13.97,-53.9 -6.99,-17.9 -4.99,-7.8 -4.87,-4.5 -6.56,-2.1 -28.7,-0.2 -8.87,-2.4 -10.93,-3.6 -51.44,33.6 -38.36,40.3 -25.11,9.8 -20.55,20.6 -15.1,4.5 -12.05,-7.1 -16.83,-28.4 -11.62,-3.1 11.24,-1.2 12.61,16.8 10.54,7.7 10.7,5.5 12.61,-5.1 60.87,-62.5 19.99,-9.5 23.72,-21 13.4,-4.6 49.07,-0.3 11.42,-6.2 -16.55,-21.6 -3.6,-9.2 -2.62,-14.8 -2.83,-30.4 -1.87,-8.1 4.75,-18.2 7.74,-56.7 3.43,-44.7 4.86,-23.6 15.75,-46.9 5.46,-7.3 6.13,-6.4 1.54,-7.3 -8.29,-10 -4.86,-0.3 -14.62,6.5 -7.69,1.6 -27.58,-0.5 -9.54,-4.4 -10.88,-11.2 -10.44,10.8 -11.72,8.5 -13.33,2.4 -15.25,-7.4 -13.49,-11.1 -5.6,-2.4 -9.9,-2.1 -9.23,-4.6 -18.69,-15.9 -22.36,-8.5 -27.45,-21.3 -85.38,-13.4 0.08,-7.6 27.83,-4.7 91.76,29.7 20.33,13.2 8.89,2.5 1.93,2.4 0.3,5.2 1.19,5.2 4.52,2.5 4.96,-1.2 8.38,-5.6 3.76,-1.3 6.55,1.8 7.46,4.6 6.17,6.4 2.47,7.3 3.87,15.1 9.51,2.4 20.3,-6.2 -1.51,-4.1 -2.86,-10.5 40.58,-7.2 25.49,2 16.13,10.5 14.58,5.9 11.87,-24.3 3.71,-36.8 -9.97,-31.8 -40.75,-32.7 -29.91,-35.2 -5.48,-2.6 -3.69,-36.3 -1.98,-10.1 4.93,-12.7 -2.58,-15.9 -6.62,-15 -7.35,-9.2 18.89,1.4 6.96,6 -1.52,42.1 1.43,30.6 5.96,14.9 25.37,20 19.79,28 10.77,7.4 12.79,-7.9 2.29,-7 3.84,-23.7 0.71,-7.1 2.74,-3.7 18.67,-14.9 46.51,-25.5 50.43,-4.8 145.58,26.7 20.46,-1.8 20.33,-10.8 9.5,-10.2 20.81,-34.5 39.36,-37.7 0.19,-6.8 -13.99,-14.6 -6.87,-25.9 -2.29,-29.7 0.15,-26.2 -6.08,-24.9 -54.77,-83 -28.29,-20.6 -10.57,-15.5 -2.95,-14.9 2.48,-34.6 -7.74,-34 -19.54,-4.6 -22.09,15.4 -15.05,25.5 15.9,3 6.39,6.3 2.93,14.1 -2.1,14.9 -6.32,4.4 -8.11,1.2 -7.57,5.5 -15.05,5 -14.88,-18.8 -13.48,-24.5 -19.35,-23.9 5.01,-25.8 8.73,-28.2 3.19,-18.6 -5.8,-8 -9.91,-5.1 -10.58,-1.4 -7.84,2.7 -6.44,9 -6.63,21.2 -4.8,10.9 4.83,5.3 10.36,8 5.66,2.3 -4.7,12.3 -5.58,5.9 -25.84,7.2 -5.55,-1.2 -13.74,-9.5 -17.32,-3.7 -10.83,8.4 -9.74,15.4 -13.74,16.9 13.76,1.7 20.36,17.4 11.63,4.6 8.92,-6.3 11.01,-11.5 10.74,-4 7.93,15.7 -10.89,17.5 0.47,13.9 17.45,37.2 -8.51,-0.3 -9.03,3.4 -8.33,6.5 -6.26,8.4 -6.94,4.4 -15.83,-7.9 -8.59,7 -2.07,-15 -3.2,-9.3 -5.34,-5 -8.61,-1.6 -4.49,-6 -15.81,-36.9 -14.87,-19.9 -32.95,-28.3 -14.63,-21.3 -8.21,-26.3 4.4,-16.1 10.55,-15.1 10.12,-22.7 4.63,-28 -2.18,-21.6 -7.37,-19.6 -10.81,-22.3 14.75,7.5 10.99,1.6 3.11,-7.8 -15.02,-35.4 -1.22,-14.23 1.54,-28.17 -0.23,-19.39 -0.69,-8.52 -2.28,-9.42 -14.7,-20 -2.26,-7.92 -3.04,0.01 -6.7,-4.61 -7.06,-6.96 -4.22,-6.81 3.15,-2.76 4.72,-10.79 2.53,-11.81 -5.29,-8.14 -1.92,-5.44 -3.21,-5.52 -5.84,-2.58 -7.74,1.94 -5.98,5.25 -9.96,15.23 -2.97,7.11 -1.94,8.19 -2.85,8.27 -5.94,7.24 -7.93,2.63 -60.8,-3.68 -8.04,-2.94 -4.95,-6.66 -3.77,-7.61 -4.26,-5.87 -16.21,-6.73 -33.02,1.58 -15.16,-3.96 15.88,-17.26 89.95,-18.62 6.49,-4.91 -2.16,-11.73 -9.96,-22.82 -4.9,-19.54 1.61,-8.52 8.79,-1.88 16.34,0.53 0.12,-7.59 -25.47,-15.16 -7.35,-12.59 7.41,-18.19 -2.31,-2.04 -5.75,-6.41 -14.88,8.93 -68.77,-21.11 -31.31,-17.29 -18.51,-1.94 -38.83,14.81 -22.29,19.44 -5.81,3.05 -65.01,-0.31 -14.8,7.19 -1.98,-4.33 -1.08,-3.06 -0.69,-3.34 -0.41,-5.24 13.11,-6.22 45.28,-0.12 8.24,-5.04 32.89,-33.26 6.84,-13.22 4.61,-11.97 6.47,-8.56 12.59,-3.26 60.14,0.7 -10.13,-12.78 -32.45,-26.43 -17.21,-22.74 -8.48,-5.96 -14.58,-2.11 -5.36,-4.83 -1.06,-10.42 -0.03,-10.47 -2.1,-4.79 -39.7,-10.34 -14.26,-10.59 -8.72,-2.44 -7.65,1.66 -14.21,6.09 -8.35,-0.41 1.73,-4.53 2.64,-3.03 -9.04,-13.01 -23.31,-7.94 -10.57,-9.8 11.15,-6.94 11.82,0.9 31.02,8.36 5.78,3.55 6.13,1.67 36.68,-19.45 2.74,-12.57 -2.67,-15.21 -6.8,-13.35 -8.71,-6.06 -21.28,-4.45 -9.18,-5.02 3.38,-12.34 7.99,-16.78 2.31,-8.78 -1.66,-12.5 -3.72,-9.75 1.12,-8.21 12.91,-8.17 7.87,-7.12 7.63,-10.28 2.07,-10.91 -8.64,-8.88 0.07,-8.28 6.63,-7.3 23.82,-40.2 7.91,-3.26 7.62,-7.23 2.88,-18.2 -2.3,-12.96 -4.39,-8.16 -4.17,-9.76 -1.66,-18.01 -3.35,-8.09 -8.16,-5.83 -10.04,-3.49 -8.74,-1.11 -37.37,6.57 -8.66,-2.55 -5.15,-5.9 -4.22,-7.46 -5.67,-7.12 -15.27,-9.83 -9.25,-3.98 -8.22,-1.61 -5.04,-4.81 0,-9.83 5.4,-8.19 10.93,0.08 0.06,-7.59 -18.78,0.55 -8.75,-2.3 -7.67,-6.78 6.43,-4.79 8.05,-1.9 18.46,0.08 8.53,-4.08 9.24,-9.94 15.36,-23.74 -16.33,-21.98 -10.88,-10.38 -11.77,-6.64 -29.15,-6.12 -11.5,-8.7 5.58,-15.84 7.87,-0.12 36.1,14.97 16.32,-0.97 5.48,1.14 4.66,3.66 4.38,5.32 5.31,4.93 7.31,2.13 13.85,-5.8 26.02,-28.3 13.32,-11.03 35.26,-9.14 8.53,-6.29 5.2,-16.22 15.07,-84.27 1.65,-4.93 -1.03,-3.4 -6.11,-5.01 -9.61,-0.39 -9,5.43 -7.5,0.9 -4.9,-13.85 8.05,-2.51 7.61,-4.75 6.5,-6.55 4.33,-8.06 2.49,-9.35 1.46,-12.87 -2.6,-11.52 -9.5,-4.99 -7.42,4.64 -9.44,20.83 -5.55,4.66 -26.72,-2.27 -8.38,1.94 -12.14,7.08 0.82,4.43 5.21,4.36 1.13,6.91 -11.42,16.4 -4.27,10.09 4.54,4.47 16.97,6.76 -3.57,12.85 -15.24,8.66 -18.1,-5.61 -3.59,-6.71 -8.23,-22.72 -7.12,-12.48 -3.91,-8.43 -2.96,-3.76 -4.83,-1.59 -10.42,1.42 -4.41,-3.83 -10.92,-12.96 -26.59,-22.95 -8.6,-13.75 -4.04,-23.54 -9.48,-3.28 -10.9,1.2 -13.02,12.18 -11.61,-2.71 -7.01,-6.36 -9.15,-2.58 -6.21,-6.53 -9.63,-1.82 -46.91,-0.02 -11.37,4.56 -4.76,13.22 -1.97,15.52 -2.96,11.2 -10.78,9.51 -136.16,32.03 -50.37,20.75 -51.21,8.95 -14.98,-2.26 -43.74,-16.3 -23.66,1.13 -22.04,7.06 5.19,18.84 -4.73,7.61 8.75,30.78 -5.29,28.26 -10.12,27.42 -5.94,28.27 2.63,36.04 7.74,29.81 9.3,27.33 7.05,28.95 -67.66,12.49 -7.58,-0.7 -2.43,-9.24 -1.92,-43.12 -4,-5.44 -6.27,-1.16 -8.24,-9.21 -8.86,-12.42 -9.88,-5.79 -9.82,2.37 -8.62,12.25 -7.11,27.72 1.07,26.68 4.22,26.94 2.66,28.84 12.01,21.71 26.4,3.78 26.86,-8.05 13.34,-14.17 -8.5,-2.25 -7.02,-5.7 -11.08,-14.66 1.76,-12.49 37.98,-5.74 34.81,-8.41 12.73,5.12 -1.28,21.17 -11.48,37.95 -7.99,47.71 -4.56,47.64 1.31,12.71 5.79,15.55 1.36,9.71 -1.05,14.27 -7,27.93 -5.51,50.18 -4.46,23.83 -8.97,21.38 -15.95,12.69 -22.52,5.71 -42.15,1.39 -30.45,9.83 -25.54,24.43 -56.43,86.22 0.54,7.87 13.45,2.4 0.07,6.9 -12.14,5.18 -14.45,1.3 -14.18,-3.48 -10.98,-9.37 -7.4,-15.57 1.84,-10.6 18.37,-20.21 -5.82,-1.38 -3.75,-2.6 -8.21,-11.07 14.53,-2.86 17.11,-11.34 14.2,-16.76 5.82,-19.32 -8.2,-3.03 -74.93,63.9 -15.35,9.21 -36.9,7.24 -9.52,10.02 -0.57,16.63 36.68,94.38 12.29,42.99 8.4,45.63 1.7,45.04 -27.22,219.05 -2.96,11.2 -1.78,2.43 -0.58,5.25 0.72,5.16 1.83,2.34 3.72,-1.31 1.64,-2.9 1.07,-2.83 1.79,-1.32 4.05,-5.91 14.4,-85.54 10.9,-29.66 1.47,-12.27 -1.54,-10.62 -6.33,-15.26 -1.57,-12.38 2.02,-15.29 5.34,-3.14 28.35,15.44 30.09,23.55 14.22,4.89 24.51,19.06 25.2,25.99 3.71,18.15 -3.96,19.27 -8.48,18.91 -9.79,17.12 -23.19,30.59 0.34,34.53 -6.62,40 -15.76,25.7 -21.38,15.8 -47.71,22.5 -12.96,2 -5.78,-9.4 0.06,-47.5 -1.38,-22.6 -4.11,-25.2 2.08,-18.58 -1.83,-7.11 -9.05,3.02 -2.5,5.9 -2.63,11.67 -2.08,13.3 -1.79,80.8 2.2,25.2 15.91,69.3 2.32,26.2 -2.15,385.4 2.72,18.7 4.75,19 28.7,95.9 12.83,29.7 9.21,14.3 3.7,-3.1 2.36,-9.6 5.57,-5.6 -0.53,-7.9 -14.22,-36 -4.87,-9.8 -0.08,-7.6 3.82,-3.8 4.03,-2.1 11.08,-1.2 2.11,-4.9 2.22,-10.7 3.12,-10.8 4.96,-4.9 25.14,-4.8 6.74,-4.7 -8.94,-5.2 2.18,-10.3 -1.83,-18 3.45,-10.4 5.54,-4.5 4.8,2.8 1.72,7.4 -3.53,9.3 0.08,7.7 19.43,6.2 29.78,0.6 27.25,-6 11.89,-13 5.71,-2 30.18,-24.8 8.48,3.8 8.07,9.6 6.69,12.3 4.65,12 3.81,0 18.29,-52.4 0.4,-8.6 -2.38,-4.6 0.95,-10.5 3.89,-10.4 10,-8.4 11.88,-15.6 7.11,-4.4 10.57,0.1 37.66,7.9 4.02,2 3.33,5.7 2.13,8.3 0.86,10.5 0.32,16.3 0.87,11 3.58,22.8 2.75,6.4 3.25,2.6 1.35,3.5 -3.02,9.6 -18.99,15.3 -6.22,0.6 -4.56,2.7 -2.77,5.7 -0.91,9.7 -2.74,9.8 -10.38,5.7 0.24,11.5 8.28,7.4 27.96,1.8 39.82,67.2 9.25,5.5 25.21,7.7 33.79,1.5 1.14,2.5 -14.67,5.5 -26.76,1 -6.18,6.2 5.67,19.8 9.01,17.4 7.29,9.4 19.48,14.6 28.82,28.5 11.42,2.5 6.75,-1.2 11.24,-5.8 6.82,-1.2 7.19,1.9 3.72,4.6 2.97,5.2 4.92,4.1 10.66,0.5 14.01,-4.6 12.14,-9.2 5.26,-13.6 3.71,-26 8.49,-15.3 9.95,-11 7.55,-12.6 8.03,-23.4 -16.95,-4.3 -17.98,-28.8 -15.51,-4.3 0.01,-8.3 2.55,-10.1 -6.64,-10 -16.84,-17.2 -5.7,-15.9 -0.69,-14 2.63,-35.5 4.58,-10.6 10.16,1.8 10.09,11.9 8.19,36.5 9.07,2.5 11.04,-2.3 9.71,2.1 -3.77,10.8 -5.08,3.8 -5.9,-1.3 -6.2,-5 4.67,12.1 4.74,8.7 4.22,9.7 3.07,15.1 4.12,0 -3.62,-24.9 16.05,-3.8 21.8,3.8 13.82,-1.9 8.39,-5.6 9.32,1.9 8.43,-0.8 5.51,-14 -1.67,-10.9 -14.06,-20.8 -5.41,-14.7 6.61,-2.6 1.29,-4.9 0.54,-6.8 4.22,-8.4 6,-6.1 15.48,-9 2.43,-4.6 1.49,-6 2.76,-4.8 5.98,-0.5 8.81,18.7 3.65,5.6 8.81,-8.2 7.33,8.9 -0.21,14.1 -13.75,7.3 -19.06,-11.5 -1.13,-3.4 -2.86,-1 -6.42,0.6 -5.28,3 -0.41,6.3 1.88,5.5 1.65,0.3 0.9,41.4 9.86,35.7 5.43,31.6 -12.61,28.9 -6.04,6.7 -3.24,2.6 -12.08,-1.8 -24.64,-11.5 -6.05,-8.7 -13.15,-8.6 -13.04,-0.9 -5.42,14.3 6.87,13.5 28.16,17.2 6.27,18.8 3.48,15.6 -1.29,7.7 -15.37,5.4 -6.21,5.5 -5.33,7.3 -4.26,7.8 -3.17,7.4 -3.57,11.1 -2.31,13.4 0.54,13.7 3.2,3.7 13.88,22.2 1.56,5.3 2.88,5.8 -0.54,12.8 -2.88,12.8 -3.86,5.8 -7.12,1.5 -5.42,3.8 -9.85,10.5 11.26,27.9 11.32,22.1 12.27,18.1 18.78,19.5 4.27,2.5 4.58,1.6 5.21,0.5 3.19,3.5 3.39,15.7 1.87,3.6 89.91,30.8 20.14,-0.5 71.09,-29.1 0.07,-8.3 -7.86,-5.3 -0.45,-6.9 4.83,-6.5 8.21,-4.1 8.28,0.8 5.86,5.8 21.9,35.6 9.78,20.2 10.95,16 23.67,9.1 19.99,13 29.05,-7.3 64.66,8.4 -36.4,33.1 -18.12,6.7 -12.4,10.2 -6.54,2.3 -4.85,-2.7 -21.03,-29.4 -11.52,-12.3 -12.85,-6.3 -11.37,8.6 -11.14,11.2 -11.43,-3.4 -21.13,-20 -24.29,-10.5 -52.67,-1.2 -138.69,-51.1 -11.98,-1.2 -11.51,5.2 -68.08,57.2 3.85,-14.7 -4.94,-7.5 -19.94,-8.3 -14.85,-11.2 -7.72,-3.9 -10.23,-0.1 3.76,6.9 -10.85,7.1 -10.61,-2.3 -10.29,-8.5 -10.11,-11.4 -9.85,1.1 -12.38,-12.3 -10.56,-13.4 -4.53,-2 -5.19,14.8 -12.04,5.8 -13.82,-1.4 -10.37,-7 8.89,-9.8 -22.16,-20.6 -30.22,-15.9 -21.66,6.5 -14.28,-3.1 -14.24,-6.5 -6.57,-8 -3.5,-21.6 -8.19,-13 -9.74,-9.9 -7.94,-12.4 -3.7,-31.6 -0.65,-2.6 -1.12,-9.6 -2.87,-5.6 -4,-4.6 -19.61,-30 -13.76,-1.1 -6.58,-3.1 -2.88,-6.4 -4.58,-4.4 -10,-4.1 -10.15,-7.4 -4.66,-14.6 4.96,-37.8 -0.76,-17.6 -9.25,-10.2 -0.05,-7 24.5,2.4 5.49,-2.6 4.59,-13.6 -3.87,-9.4 -7.89,-5.5 -8.05,-1.7 -7.07,2.4 -14.29,10.6 -7.95,2.4 -7.36,-2.1 -12.37,-10 -7.74,-2.9 -0.08,-8.3 29.32,8.1 8.78,-2.9 12.72,-10.3 5.93,-2.2 43.5,18.6 8.9,-3.8 1.54,-8.1 -1.78,-21.3 0.01,-9.3 9.1,-14.8 4.13,-10.7 -9.17,-16.3 -6.39,-7.8 -8.27,-3.5 -8.7,-1.3 -5.35,-3.5 0.09,-4.7 7.78,-5 -12.51,-0.2 -16.89,15.9 -14.95,20.5 -6.37,13.2 -5.45,16.7 -13.71,13.4 -17.09,9.1 -15.74,3.4 -10.71,5.9 -12.85,14.2 -11.98,17.4 -7.89,15.4 -6.3,40.2 -3.79,6.2 -8.37,3 -17,11.7 -10.16,0.9 8.4,-41.1 2.84,-24.1 -1.62,-15.1 -9.19,-1.4 -4.36,23.4 -0.69,51.4 7.64,45.9 14.12,34.2 110.82,177.7 32.96,34 50.66,79.5 19.33,18.3 21.65,-0.6 50.36,-18.2 28.36,-1.8 54.87,12.4 24.36,12.6 28.93,32.4 10.94,4.9 151.36,-21.8 54.94,6.7 54.85,20.8 51.43,35.6 45.1,51.4 127.2,242.2 22.4,34.3 40.65,46.9 20.12,40.2 7.84,5.8 13.98,21.2 28.88,6.2 55.11,-3.2 53.71,10.1 48.5,22.8 41.85,32.1 71.14,77.2 38.9,30.8 15.85,6.6 17.92,2.3 17.32,-3.6 14.49,-11.4 -32.2,-13.1 -30.21,-30.8 -47.27,-77.2 z"
                style="fill:none;stroke:#a9a9a9;stroke-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7249" /><path
+               id="path3206" /><path
                d="m 2586.56,6104.82 0,0 18.48,-34.39 1.96,-10.07 0.39,-7.13 -0.33,-4.05 -1.63,-10.54 -0.12,-5.35 0.29,-4.71 1.04,-3.66 2.2,-5.18 0.72,-2.79 -0.22,-3.68 -2.16,-12.37 -0.45,-6.12 0.09,-5.41 0.5,-4.37 0.73,-2.7 1.68,-2.6 1.15,-1.35 7.63,-2.01 69.88,-7.81 22.06,2.45 19.67,7.24 4.32,2.64 45.51,10.1 1.79,1.72 1.9,2.79 1.79,3.56 10.03,31.61 6.74,15.2 3.51,4.83 18.01,18.69 37.7,20.06 3.05,0.69 3.58,-0.83 3.9,-2.21 9.42,-13.87 1.48,-1.52 2.21,-1.77 2.64,-1.67 2.63,-0.91 5.37,-1.03 1.69,-2.06 0.33,-3.39 -2.94,-8.11 -2.83,-4.38 -3.37,-3.4 -2.53,-1.49 -4.1,-3.17 -1.58,-2.07 0.54,-5.87 0.74,-4.65 11.98,-37.37 -22.35,-36.45 -11.89,-25.94 -2.74,-4.08 -7.5,-2.88 -3.59,-2.05 -5.73,-5.03 -5.5,-0.64 -15.73,2.04 -3.7,-0.52 -3.27,-1.52 -2.43,-2.99 -2.12,-4.08 -4.12,-11.56 -1.19,-7.18 -2.86,-30.75 -1.48,-9.92 -1.38,-6.46 -1.48,-3.94 -0.21,-2.44 0.52,-3.28 2.33,-5 2.01,-2.44 2.12,-1.58 12.41,-3.08 22.66,-10.48 15.17,-3.55 3.07,-1.35 1.27,-1.18 -1.48,-2.53 -14.95,-10.33 -4.55,-4.28 -2.33,-5.75 0.43,-2.88 1.16,-3.36 1.38,-3.07 2.02,-6.47 1.28,-9.16 -1.17,-2.36 -2.86,-1.32 -15.26,1.31 -21.44,-6.21 4.27,-11.72 6.79,-15.01 1.16,-3.82 1.07,-5.66 0.21,-3.74 -0.32,-3.44 -1.06,-2.76 -1.59,-2.93 -1.27,-2.02 -2.87,-6.03 -0.64,-3.36 1.6,-1.01 3.29,0.23 8.17,2.73 10.5,1.38 8.81,-0.77 13.82,1.82 48.96,-6.74 5.1,-3.24 2.35,-3.44 -0.84,-5.26 -2.33,-6.33 -0.94,-3.34 -0.11,-2.55 0.54,-2.79 5.75,-6.08 19.06,-8.12 7.67,-10.9 0.87,-6.69 0.23,-4.52 -1.06,-3.1 -7.19,-13.13 -0.53,-1.75 -0.21,-2.27 0.54,-3.91 5.68,-17.74 8.46,-19.93 0.64,-2.67 -0.62,-4.22 -0.53,-2.48 -0.74,-1.95 -1.9,-3.28 -1.91,-2.42 -3.82,-3.46 -4.15,-2.63 -0.95,-1.03 -0.43,-1.07 -0.1,-1.2 0.22,-1.9 0.11,-2.7 -0.53,-1.67 -1.06,-1.73 -1.49,-1.44 -1.06,-1.32 2.99,-3.1 6.29,-4.24 17.49,-8.57 6.32,-1.42 3.09,1.22 -0.22,2.35 0.21,1.61 0.42,1.44 1.16,2.25 1.27,1.78 1.6,1.44 2.65,1.59 2.88,0.9 3.51,0.42 2.87,-0.11 26.49,-12 0.86,-2.55 -0.93,-6.13 -7.56,-30.58 -1.09,-2.24 -2.65,-4.49 -2.97,-3.41 -4.89,-4.67 -1.7,-2.07 1.39,-1.15 4.06,-0.21 17.72,2.96 9.06,-0.5 16.35,-7.87 3.37,-5.38 1.72,-3.5 0.97,-2.58 1.3,-5.4 1.32,-8.33 -1.43,-12.42 -9.62,-28.95 6.98,-1.64 7.15,1.67 12.14,5.32 3.74,0.59 30.79,-1.1 15.67,2.57 7.07,2.74 4.36,2.33 3.73,1.28 1.93,-0.85 2.25,-2.28 -1.88,-6.8 -1.57,-3.91 -3.49,-5.83 -6.39,-8.37 -1.06,-2.54 0.34,-2.53 2.51,-3.6 3.64,-0.18 5.67,-2.18 2.26,-1.54 0.86,-1.72 -0.31,-1.66 -4.88,-5.09 -1.15,-3.46 -0.51,-5.43 0.82,-11.46 -0.8,-8.92 -3.97,-14.13 -6.36,-16.31 -2.01,-3.63 -3.82,-4.99 -3.83,-3.48 -8.96,-5.51 -2.02,-1.67 -0.85,-1.22 -0.63,-2.64 -0.94,-4.84 -1.16,-3.05 -1.37,-2.71 -2.02,-2.65 -1.49,-1.3 -1.28,-1.53 -0.85,-1.68 -0.83,-4.94 -0.18,-6.1 0.36,-7.41 2.11,-13.32 0.45,-5.17 -0.3,-3.39 -2.23,-2.77 -1.28,-2.31 -0.51,-4.03 0.35,-4.99 1.65,-7.96 -0.84,-3.99 -1.63,-2.66 -4.59,-2.95 -1.92,-1.91 -1.49,-2.71 -1.05,-3.97 -0.51,-5.78 0.03,-5.86 0.45,-4.14 0.98,-3.18 1.19,-2.52 1.84,-1.92 10.33,-0.32 32.02,10.18 -10.83,-19.54 -4.48,-4.91 -49.64,-16.76 -6.1,-3.7 -2.78,-2.6 0.55,-1.55 2.37,-2.52 1.4,-1.17 8.94,-6.02 1.19,-1.15 0.65,-1.43 0.22,-1.7 -0.1,-1.72 -0.42,-1.76 -2.76,-6.56 -1.16,-3.51 -1.27,-5.07 -1.9,-5.84 -0.32,-1.75 -0.31,-1.7 -1.91,-6.99 -2.86,-8.18 -3.09,-4.92 -3.78,-4.47 -7.07,-6.3 -3.31,-4.78 -2.67,-5.42 -2.98,-8.17 -2.24,-3.75 -2.25,-2.76 -9.23,-5.27 -8.61,-7.96 -5.26,-3.93 -7.31,-2.27 -13.53,-8.66 -3.33,-3.12 -2.57,-2.94 -1.6,-3.71 -1.18,-3.77 -0.95,-3.97 -0.21,-1.72 0.01,-3.1 0.11,-2.93 -0.1,-1.56 -0.35,-2.47 -0.64,-2.87 -1.6,-5.47 -1.61,-1.9 -1.61,-0.92 -8.09,1.9 -3.55,-1.65 -24.55,-19.54 -2.91,-0.67 -5.49,-0.04 -25.87,5.13 -13.2,11.1 -3.34,4.63 -0.33,1.55 -0.11,1.66 0.85,11.21 0.32,1.52 0.43,2.27 -1.41,10.64 -4.2,6.08 -2.59,2.76 -2.48,1.03 -3.33,-0.23 -1.62,-0.35 -10.05,5.17 -13.56,10.36 -6.13,2.93 -4.09,1.29 -11.08,-5.8 -28.67,-7.47 -36.11,-18.09 -2.59,-3.02 -1.07,-2.21 -0.98,-2.73 -0.97,-4.82 -0.01,-2.99 0.54,-2.19 0.96,-1.78 6.03,-8.57 0.96,-1.78 1.61,-4.03 1.07,-4.94 1.29,-10.44 0.21,-2.15 -0.34,-10.4 0.22,-2.47 0.53,-1.61 0.97,-1.1 1.4,-0.63 14.48,-2.14 1.83,-1.04 1.94,-1.66 2.05,-3.57 -0.11,-3.91 -1.41,-4.85 -3.45,-9.17 -2.6,-3.59 -2.51,-1.92 -28.91,-1.4 -7.13,-2.75 -17.64,-13.42 -1.62,-0.63 -1.73,-0.22 -1.73,0.06 -14.66,4.66 -3.38,1.64 -3.56,0.99 -3.55,0.58 -4,0.01 -8.74,-1.47 -16.52,-5.47 -14.51,-1.96 -11.97,0.62 -4.75,-1.14 -16.47,-7.46 -12.97,-3.17 -2.7,-1.56 -1.41,-1.55 -0.12,-1.98 -4.35,-7.4 -7.79,-4.33 -5.67,-4.63 -0.44,-1.55 -0.12,-1.55 -0.44,-1.55 -0.99,-3.33 -2.06,-2.69 -22.91,-23.02 -15.16,-19.54 -3.82,-6.67 -7.34,-15.57 -1.32,-4.13 -0.44,-2.23 0.2,-1.56 0.54,-1.49 0.96,-1.45 1.29,-1.41 3.12,-2.69 4.42,-3.07 2.48,-2.49 0.64,-1.47 0.42,-1.46 0.73,-4.46 0.85,-3.6 0.53,-1.55 0.75,-1.56 1,-1.41 1.4,-1.19 3.03,-1.39 6.48,-1.25 3.36,0.13 2.06,0.54 1.84,1.19 1.64,2.12 3.71,7.34 0.66,0.83 1.08,1.06 1.52,0.97 3.47,1.1 14.32,1.17 14.19,4.19 15.41,11.26 3.25,1.54 3.18,0.62 1.51,-0.5 1.51,-0.9 1.07,-1.32 0.65,-1.5 0.32,-1.69 -0.34,-1.87 -2.51,-7.43 -0.22,-1.35 0.21,-1.27 1.19,-0.87 5.39,-2.8 1.08,-1.39 0.43,-0.86 3.41,-14.24 0.75,-3.68 0.21,-2.12 4.15,-18.75 0.53,-4.95 2.77,-13.34 0.42,-1.49 0.22,-1.38 1.17,-6.04 0.42,-3.08 0.2,-3.94 -0.24,-6.98 -0.55,-3.42 -0.87,-2.29 -22.64,-25.09 -14.22,-19.2 -1.42,-2.6 -0.11,-1.41 -0.01,-1.52 0.32,-1.59 0.65,-1.49 5.92,-9.85 0.97,-3.03 0.3,-5.31 -0.77,-2.7 -1.31,-1.78 -17.84,-9.55 -9.26,-7.57 -1.63,-0.83 -1.85,-0.33 -1.74,0.21 -21.83,5.93 -71.72,0.1 -3,-9.29 2.47,-5.3 2.79,-4.33 4.83,-9.92 1.6,-4.66 0.52,-3.42 -1.66,-4.56 -0.69,-6.43 1.15,-7.08 4.04,-15.14 1.26,-6.3 0.3,-4.46 -4.73,-8.07 -7.56,-8.86 -0.99,-1.77 -2.2,-4.64 -2.55,-6.71 -3.42,-6.76 -1.66,-4.47 -0.99,-1.95 -0.99,-1.49 -1.53,-0.96 -1.64,-0.62 -5.56,-1.23 -4.6,-5.26 -9,-20.05 -5.97,-12.31 -0.45,-2.35 -0.48,-5.63 -0.34,-17.58 -1.34,-4.51 -1.76,-2.45 -1.75,0.04 -7.94,2.07 -4.14,-0.32 -11.98,-8.01 -18.78,-18.07 -2.65,-3.88 0.5,-5.52 0.06,-5.21 -0.89,-2.72 -1.22,-1.83 -14.64,-11.48 -3.94,-2.15 -3.18,-1.18 -9.16,-0.07 -10.17,-1.66 -11.58,2.23 -4.01,3.03 -5.75,14.48 -1.94,2.43 -2.61,1.4 -8.51,-0.38 -2.85,-1.12 -2.08,-1.36 -8.62,-10.77 -30.65,-27.19 -1.44,-1.71 -3.11,-5.05 -1.65,-1.88 -13.79,-9.65 -1.22,-1.37 -0.78,-1.57 -5.18,-14.25 -34.13,-29.16 -3.65,-3.98 -0.57,-1.49 -0.35,-1.8 -0.01,-1.64 0.42,-1.38 0.86,-1.34 1.51,-1.16 1.41,-0.77 1.3,-1.05 0.75,-1.38 0.2,-1.56 -0.36,-3.16 0.09,-1.43 0.75,-1.51 1.4,-1.56 15.65,-12.14 3.02,-3.42 0.97,-1.56 0.86,-1.74 0.41,-1.9 0.09,-2.01 -4.26,-29.09 -1.97,-8.89 -1.67,-2.68 -2.31,-1.44 -7.28,-1.44 -3.1,-3.06 -2,-2.4 -6.86,-15.2 -19.46,12.47 -7.89,2.42 -4.27,-0.32 -17.73,-7.88 -3.73,-0.47 -2.06,2.09 -1.09,8.58 -1.46,6 -1.37,3.75 -11.48,20.9 -29.34,39.3 -7.06,14.06 -0.37,4.89 0.65,7.89 1.9,10.52 0.24,9.43 -1.09,8.43 -3.68,18.3 -2.2,6.93 -2.12,4.31 -1.85,0.51 -1.96,-0.03 -1.98,-0.54 -9.13,-4.73 -1.86,-0.46 -2.84,-0.02 -5.62,3.64 -7.37,6.66 -21.04,24.14 -5.49,4.94 -18.48,6.66 -6.48,4.01 -2.57,3.03 -1.04,3.46 0.49,3.5 1.29,6.04 1.72,4.95 2.03,4.56 3.21,10.01 2.53,15.83 -40.6,12.02 -9.19,-2.55 -22.18,-20.73 -1.4,-5.2 -1.21,-7.28 2.15,-27.51 0.89,-5.45 1.07,-3.73 1.37,-2.95 2.14,-2.05 1.58,-3.53 1.44,-5.2 0.35,-12.13 -0.74,-5.13 -1.91,-3.16 -1.64,-0.26 -1.42,0.19 -15.87,6.48 -1.75,-0.37 -2.76,-1.74 -11.26,-13.37 -4.11,-3.69 -26.53,-15.6 12.66,-13.5 3.27,-6.87 0.46,-4.75 -0.17,-3.59 -0.39,-3.1 -1.26,-3.42 -0.79,-1.63 -1.45,-1.47 -1.43,-0.69 -1.76,-0.34 -2.07,0.27 -1.62,1 -1.08,1.17 -1.27,2.15 -0.75,1.1 -1.65,-0.6 -2.44,-2.14 -6.55,-11.41 -2.12,-2.57 -2.1,-1.29 -22.72,-8.12 -6.63,-3.58 -3.23,-3.16 -2.15,-3.92 -3.23,-8.57 -2.14,-3.29 -2.66,-1.79 -12.68,2.77 -3.06,0 -3.74,-0.67 -6.06,-2.36 -22.07,-12.67 -59.47,-15.28 -26.48,2.83 -17.18,-4.69 -4.94,-5.24 0.51,-1.82 1.39,-1.67 1.05,-2.18 0.05,-2.53 -1.17,-8.54 -0.19,-3.35 0.46,-4.12 0.02,-4.4 -0.45,-5.31 -4.76,-7.14 -1.75,-4.88 -0.98,-4.49 0.18,-6.78 -0.61,-3.15 -1.14,-2.05 -19.42,-13.48 -2.88,-1.26 -33.16,-9.36 -8.04,-0.91 -39.77,3.81 -1.4,1.24 -0.93,2.07 -0.69,3.61 -0.82,2.43 -1.15,2.3 -0.74,1.05 -1.39,1.39 -4.98,2.96 -4.35,1.52 -2.34,-0.18 -1.57,-1.31 -1.17,-3.05 -0.94,-2.68 -6.25,-13.32 -5.09,-1.69 -17.45,-17.65 -7.74,-2.19 -15.36,6.19 -2.64,-0.22 -2.01,-1.56 -1.77,-4.67 -2.2,-4.43 -3.54,-5.6 -4.68,-2.44 -3.64,-0.62 -2.18,0.46 -11.29,6.44 -8.97,1.21 -6.99,-2.69 -38.17,-25.4 -19.78,-7.2 -12.57,-1.43 -6.31,-1.76 -3.89,-1.61 -1.26,-1.78 -0.93,-1.7 -1.29,-3.04 -4.63,-8.47 -11.17,-12.68 -16.95,-4.52 -1.36,-1.2 -1.82,-2.22 0.51,-5.3 0.96,-4.8 0.89,-7.56 0.36,-10.45 -2.28,-22.1 -5.34,-9.79 -5.24,-6.01 -7.09,-1.46 -2.78,0.08 -4.82,0.94 -4.68,1.81 -4.21,2.99 -2.68,2.55 -1.49,1.72 -4.1,6.73 -3.93,8.57 -0.99,3.65 -4.28,0.53 -27.3,-9.77 -11.86,-6.55 -0.27,-1.63 0.27,-2.08 0.78,-3.27 0.08,-4.75 -0.86,-6.55 -4.26,-9.65 -1.82,-5.47 -0.45,-4.07 1.04,-2.04 1.93,-1.67 9.23,-4.59 2.26,-1.79 2.03,-2.19 0.91,-2.56 0.36,-2.86 -0.49,-12.78 0.57,-10.48 1.18,-8.28 1.51,-4.79 1.76,-3.85 6.2,-10.36 1.76,-3.85 0.89,-3.59 1.01,-7.02 -1.01,-4.28 -1.75,-3.06 -1.91,-1.15 -17.63,-2.78 -37.47,-11.17 -11.72,2.72 -8.62,11.66 -4.94,4.61 -7.45,5.15 -5.63,-0.12 -4.63,-3.13 -5.22,-4.84 -10.34,-4.5 -7.39,0.24 -3.95,0.81 -0.81,2.24 0.98,2.96 2.45,4.24 1.54,3.31 -1.41,4.1 -4.4,3.85 -12.14,6.75 -5.89,2.09 -3.51,0.66 -5.08,-2.48 -4.13,-1.42 -29.03,-3.68 -3.02,-0.99 -1.75,-1.7 -32.52,-21.88 -11.89,-4.43 -4.56,-0.85 -2.59,1.82 -2.449,12.33 -1.543,3.27 -2.316,3.19 -11.582,6.61 -4.379,4.12 -1.571,2.59 -0.671,2.84 -1.129,2.45 -1.91,3.35 -5.141,4.55 -3.149,1.37 -2.98,-0.06 -1.809,-1.26 -2.062,-2.17 -1.09,-2.76 -0.187,-2.38 0.527,-3.52 21.691,-37.57 1.02,-2.45 0.488,-1.86 0.051,-1.78 -0.598,-1.42 -3.961,-2.74 -15.851,-6.87 -18.071,0.52 -0.429,7.55 -23.141,43.82 -0.476,13.22 5.449,14.67 5.929,26.05 1.219,18.54 -2.621,3.89 -4.957,1.1 -5.762,10.27 -3.449,11.4 -1.801,10.07 2.129,8.76 0.024,0.08 8.027,7.42 0.172,0.17 -12.91,1.15 -30.391,8.18 -10.691,5.57 -1.559,1.62 -1.629,0.6 -1.703,-0.48 -1.598,-1.5 -24.281,-6.51 -7.019,0.61 -5.442,4.75 -5.636,12.98 -5.481,5.45 6.008,9.38 -8.289,0.91 -5.59,2.63 -0.801,5.07 0,0 5.821,8.26 0.121,0.17 -11.301,15.3 0,0 0.23,0.34 13.539,19.48 0.082,0.11 23.02,17.68 16.039,8.77 0.109,0.06 0.153,4.04 0,0.01 8.379,9.37 0.07,0.07 5.301,9.75 -1.321,6.72 -48.832,3.02 -14.25,8.22 -7.609,16.27 -0.031,0.08 9.5,5.41 0.152,0.09 -40.5,67.45 -12.961,14.14 -11.73,1.56 -28.18,-6.58 -9.398,1.47 -2.403,9.42 3.102,11.55 0.027,10.7 -11.449,6.71 -0.899,2.08 -0.031,2.02 0.551,2 0.012,0.02 0.308,0.49 0.899,1.44 0.043,0.06 2.109,14.42 0.008,0.05 -4.32,6.91 -6.758,5.17 -5.012,9.52 -2.348,14.37 -0.011,0.06 10.519,-3.25 10.512,9.12 4.238,12.99 0,0.02 -1.109,10.34 -0.301,9.57 0,0.05 6.602,10.9 10.007,5.18 15.731,-2.05 8.23,9.06 4.711,11.26 0.571,8.81 0,0.06 -4.969,23.07 -0.012,0.02 1.57,7.31 3.981,5.88 1.469,4.38 0.019,0.05 -22.558,8.87 -16.18,11.1 -5.09,6.13 -1.5,8.87 -0.32,16.08 0,0.05 3.058,9.14 4.653,9.11 0.008,0.02 -1.211,5.92 -25.231,-2.08 -18.277,6.94 -9.629,1.7 -9.582,-2.28 -18.621,-8.28 -9.629,-1.55 0.469,28.01 -9.438,32.46 -2.941,26.2 -0.008,0.05 20.137,9.51 9.402,-5.9 7.84,-11.18 9.058,-8.95 12.95,0.84 8.98,9.15 14.711,27.74 9.859,10.44 66.77,48.2 40.691,20.03 10.879,13.41 0.031,0.04 -14.031,14.21 -0.039,0.03 16.481,12.42 5.589,3.02 0.059,0.04 -15.777,6.16 -35.762,-22.53 -16.07,9.76 -4.2,20.7 0,0.02 3.059,24.79 6.941,21.88 7.559,11.95 15.461,17.34 38.289,64.61 7.551,6.9 18.219,11.67 7.25,9.51 4.312,13.7 3.09,24.28 4.34,9.52 0.019,0.03 -9.98,13.04 0,0 1.68,20.48 6.191,23.35 3.379,21.88 0.012,0.03 -2.571,20.35 -3.551,36.62 -26.742,33.43 -43.59,65.25 -2.488,13.76 0,0.03 4.391,15.71 9.008,24.51 0.019,0.05 -45.949,22.51 -15.109,20.87 10.628,31.06 0.024,0.04 -6.672,7.36 -14.828,12.29 -7.774,4.15 -20.097,0.35 -6.731,3.15 0,0.01 1.071,11.86 3.398,3.1 12.609,11.49 2.114,22.42 0,0.05 -8.301,21.84 -15.152,12.69 -0.008,0.01 2.769,9.84 11.77,7.65 28.371,3.85 13.551,5.14 14.699,10.02 10.039,4.86 28.41,6.39 22.039,-6.86 16.102,-4.78 10.949,-3.18 0.051,-0.02 -8.68,14.96 -24.621,28.08 -8.23,6.8 -0.04,0.03 23.93,11.71 21.731,-11.38 21.429,-18.79 22.891,-10.43 21.668,3.9 5.633,-0.88 4.726,-4.92 7.172,-13.96 2.961,-4 26.188,-4.94 11,-6.99 1.441,-17.37 26.14,6.3 3.2,10.91 0.01,0.03 -4.67,25.19 -0.01,0.06 43.65,-14.64 13.99,-0.49 11.53,4.86 34.76,24.87 69.3,21.11 60.96,-0.03 18.94,9.57 16.62,18.61 16.53,27.99 5.9,6.04 5.25,0.76 3.58,3.28 1.04,13.5 0.01,0.07 -1.48,7.5 -3.38,5.56 -17.21,19.28 -44.04,26.5 -14.92,4.96 -10.67,8.11 -0.84,16.89 0,0.05 5.12,11.39 6.18,2.8 7.31,0.23 8.39,3.9 5.67,6.81 6.04,13.96 3.81,6.24 12.05,11.73 11.16,5.78 3.61,0.31 40.84,3.44 8.91,7.58 16.05,30.44 13.7,13.58 29.66,12.08 13.99,11.68 16.8,25.64 7.55,8.42 30.93,17.66 2.06,5.64 -1.37,2.74 18.01,-1.26 28.5,11.23 9.82,6.76 5.11,5.16 3.99,3.11 94.04,1.57 28.39,5.59 33.24,21.83 10.25,9.2 3.37,2.22 3.09,1.37 17.63,3.37 7.37,3.43 5.16,3.69 35.46,35.31 32.04,25.64 3.74,1.94 9.74,1.64 4.36,-0.21 12.73,-2.44 1.38,0.15 0.74,0.27 2.92,3.62 3.38,5.51 1.73,2.1 1.19,1.01 0.63,-0.1 3.64,8.27 4.53,15.86 2.55,6.13 3.17,4 4.78,1.51 0.35,2.01 -1.21,2.72 -4.52,6.24 -5.15,2.75 -1.99,5.9 -0.77,3.99 8.95,35.35 3.36,5.06 1.62,1.69 2.97,1.21 2.42,-0.11 48.3,-15.97 3.22,-2.53 2.17,-2.11 2.23,-5.21 1.46,-6.18 5.11,-38.38 1.76,-3.77 2.8,-2.98 16.45,-6.33 45.54,-29.84 2.28,-2.37 7.34,-9.66 4.32,-2.14 4.53,-0.68 44.96,16.97 3.27,-0.22 4.1,-1.38 3.48,-6.67 6.02,-7.22 5.86,-5.69 8.99,-13.79 12.23,-23.46 6.51,-10.26 1.54,-3.25 0.49,-2.82 -2.47,-2.26 -2.44,-1 -20.87,-2.75 -2.55,-1.11 -1.73,-2.56 -0.37,-3.45 1.38,-6.74 0.91,-3.01 1.33,-2.86 4.04,-6.01 3.7,-7.04 -0.14,-3.02 -1.43,-3.22 -4.21,-6.06 -12.61,-12.69 -2.6,-3.96 -0.13,-1.7 0.18,-2.35 1.41,-4.68 3.7,-7.47 0.91,-3.12 -0.16,-3.39 -1.55,-4.35 -4.12,-7.01 -9.15,-9.43 -2.39,-3.96 -0.16,-3.27 1.94,-5.09 2.82,-2.35 4.75,-1.85 6.35,-0.44 6.16,-1.35 0.84,-0.48 1.63,-4.91 1.16,-7.08 2.61,-2.97 3.37,-1.89 8.69,0.13 12.33,2.27 8.4,-0.67 12.24,-4.65 3.57,-2 2.52,-2.08 -0.17,-4.54 -2.42,-6.63 -7.31,-14.56 -4.54,-13.79 -0.28,-5.49 -1.79,-6.27 -2.94,-5.07 -7.38,-1.4 -8.81,-0.33 -13.31,-2.88 -17.25,-7.71 -12.14,-9.36 -7.98,-8.56 -1.16,-5.99 5.65,-13 2.65,-7.02 5.37,-17.73 1.57,-1.55 3.38,-1.77 19.18,-6.75 11.81,-6.92 3.15,-3.04 2.76,-0.12 3.86,2.1 30.19,28.24 10.59,4.94 24.96,4.11 24.47,-9.39 48.59,17.82 12.4,7.05 8.62,7.84 4.33,7.37 11.83,14.13 22.2,19.19 86.56,-25.65 4.89,1.25 3.52,1.98 1.39,1.51 1.62,3.52 5.66,16.57 2.37,4.58 3,3.45 27.53,17.3 6.72,5.47 3.53,3.99 3.64,5.27 3.91,6.81 3.66,8.02 0.87,3.79 -0.51,2.62 -7.3,6.57 -14.45,9.82 -1.16,1.1 -1.93,10.65 -1.19,39.79 1.79,40.56 -0.39,19.61 -2.71,19.04 -4.19,18.72 -5.78,17.46 -3.94,8.59 -4.95,5.96 -19.52,14.42 -44.06,21.25 -4.99,7.29 -3.42,6.01 -13.1,45.59 15.15,-5.89 15.49,-0.08 2.74,-0.77 5.24,-2.84 5.78,-1.63 38.65,4.79 11.87,5.54 4.78,3.93 2.76,3.72 1.3,3.9 5.47,27.37 0.65,2.18 0.85,1.84 1.28,1.71 4.34,3.59 6.13,3.81 7.34,5.72 3.29,3.63 13.79,1.69 33.6,-1.31 10.95,2.15 33.68,16.29 3.06,0.27 4.2,-0.17 11.38,-4.74 5.33,-5.48 5.88,-4.4 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2586.56,6104.82 0,0 18.48,-34.39 1.96,-10.07 0.39,-7.13 -0.33,-4.05 -1.63,-10.54 -0.12,-5.35 0.29,-4.71 1.04,-3.66 2.2,-5.18 0.72,-2.79 -0.22,-3.68 -2.16,-12.37 -0.45,-6.12 0.09,-5.41 0.5,-4.37 0.73,-2.7 1.68,-2.6 1.15,-1.35 7.63,-2.01 69.88,-7.81 22.06,2.45 19.67,7.24 4.32,2.64 45.51,10.1 1.79,1.72 1.9,2.79 1.79,3.56 10.03,31.61 6.74,15.2 3.51,4.83 18.01,18.69 37.7,20.06 3.05,0.69 3.58,-0.83 3.9,-2.21 9.42,-13.87 1.48,-1.52 2.21,-1.77 2.64,-1.67 2.63,-0.91 5.37,-1.03 1.69,-2.06 0.33,-3.39 -2.94,-8.11 -2.83,-4.38 -3.37,-3.4 -2.53,-1.49 -4.1,-3.17 -1.58,-2.07 0.54,-5.87 0.74,-4.65 11.98,-37.37 -22.35,-36.45 -11.89,-25.94 -2.74,-4.08 -7.5,-2.88 -3.59,-2.05 -5.73,-5.03 -5.5,-0.64 -15.73,2.04 -3.7,-0.52 -3.27,-1.52 -2.43,-2.99 -2.12,-4.08 -4.12,-11.56 -1.19,-7.18 -2.86,-30.75 -1.48,-9.92 -1.38,-6.46 -1.48,-3.94 -0.21,-2.44 0.52,-3.28 2.33,-5 2.01,-2.44 2.12,-1.58 12.41,-3.08 22.66,-10.48 15.17,-3.55 3.07,-1.35 1.27,-1.18 -1.48,-2.53 -14.95,-10.33 -4.55,-4.28 -2.33,-5.75 0.43,-2.88 1.16,-3.36 1.38,-3.07 2.02,-6.47 1.28,-9.16 -1.17,-2.36 -2.86,-1.32 -15.26,1.31 -21.44,-6.21 4.27,-11.72 6.79,-15.01 1.16,-3.82 1.07,-5.66 0.21,-3.74 -0.32,-3.44 -1.06,-2.76 -1.59,-2.93 -1.27,-2.02 -2.87,-6.03 -0.64,-3.36 1.6,-1.01 3.29,0.23 8.17,2.73 10.5,1.38 8.81,-0.77 13.82,1.82 48.96,-6.74 5.1,-3.24 2.35,-3.44 -0.84,-5.26 -2.33,-6.33 -0.94,-3.34 -0.11,-2.55 0.54,-2.79 5.75,-6.08 19.06,-8.12 7.67,-10.9 0.87,-6.69 0.23,-4.52 -1.06,-3.1 -7.19,-13.13 -0.53,-1.75 -0.21,-2.27 0.54,-3.91 5.68,-17.74 8.46,-19.93 0.64,-2.67 -0.62,-4.22 -0.53,-2.48 -0.74,-1.95 -1.9,-3.28 -1.91,-2.42 -3.82,-3.46 -4.15,-2.63 -0.95,-1.03 -0.43,-1.07 -0.1,-1.2 0.22,-1.9 0.11,-2.7 -0.53,-1.67 -1.06,-1.73 -1.49,-1.44 -1.06,-1.32 2.99,-3.1 6.29,-4.24 17.49,-8.57 6.32,-1.42 3.09,1.22 -0.22,2.35 0.21,1.61 0.42,1.44 1.16,2.25 1.27,1.78 1.6,1.44 2.65,1.59 2.88,0.9 3.51,0.42 2.87,-0.11 26.49,-12 0.86,-2.55 -0.93,-6.13 -7.56,-30.58 -1.09,-2.24 -2.65,-4.49 -2.97,-3.41 -4.89,-4.67 -1.7,-2.07 1.39,-1.15 4.06,-0.21 17.72,2.96 9.06,-0.5 16.35,-7.87 3.37,-5.38 1.72,-3.5 0.97,-2.58 1.3,-5.4 1.32,-8.33 -1.43,-12.42 -9.62,-28.95 6.98,-1.64 7.15,1.67 12.14,5.32 3.74,0.59 30.79,-1.1 15.67,2.57 7.07,2.74 4.36,2.33 3.73,1.28 1.93,-0.85 2.25,-2.28 -1.88,-6.8 -1.57,-3.91 -3.49,-5.83 -6.39,-8.37 -1.06,-2.54 0.34,-2.53 2.51,-3.6 3.64,-0.18 5.67,-2.18 2.26,-1.54 0.86,-1.72 -0.31,-1.66 -4.88,-5.09 -1.15,-3.46 -0.51,-5.43 0.82,-11.46 -0.8,-8.92 -3.97,-14.13 -6.36,-16.31 -2.01,-3.63 -3.82,-4.99 -3.83,-3.48 -8.96,-5.51 -2.02,-1.67 -0.85,-1.22 -0.63,-2.64 -0.94,-4.84 -1.16,-3.05 -1.37,-2.71 -2.02,-2.65 -1.49,-1.3 -1.28,-1.53 -0.85,-1.68 -0.83,-4.94 -0.18,-6.1 0.36,-7.41 2.11,-13.32 0.45,-5.17 -0.3,-3.39 -2.23,-2.77 -1.28,-2.31 -0.51,-4.03 0.35,-4.99 1.65,-7.96 -0.84,-3.99 -1.63,-2.66 -4.59,-2.95 -1.92,-1.91 -1.49,-2.71 -1.05,-3.97 -0.51,-5.78 0.03,-5.86 0.45,-4.14 0.98,-3.18 1.19,-2.52 1.84,-1.92 10.33,-0.32 32.02,10.18 -10.83,-19.54 -4.48,-4.91 -49.64,-16.76 -6.1,-3.7 -2.78,-2.6 0.55,-1.55 2.37,-2.52 1.4,-1.17 8.94,-6.02 1.19,-1.15 0.65,-1.43 0.22,-1.7 -0.1,-1.72 -0.42,-1.76 -2.76,-6.56 -1.16,-3.51 -1.27,-5.07 -1.9,-5.84 -0.32,-1.75 -0.31,-1.7 -1.91,-6.99 -2.86,-8.18 -3.09,-4.92 -3.78,-4.47 -7.07,-6.3 -3.31,-4.78 -2.67,-5.42 -2.98,-8.17 -2.24,-3.75 -2.25,-2.76 -9.23,-5.27 -8.61,-7.96 -5.26,-3.93 -7.31,-2.27 -13.53,-8.66 -3.33,-3.12 -2.57,-2.94 -1.6,-3.71 -1.18,-3.77 -0.95,-3.97 -0.21,-1.72 0.01,-3.1 0.11,-2.93 -0.1,-1.56 -0.35,-2.47 -0.64,-2.87 -1.6,-5.47 -1.61,-1.9 -1.61,-0.92 -8.09,1.9 -3.55,-1.65 -24.55,-19.54 -2.91,-0.67 -5.49,-0.04 -25.87,5.13 -13.2,11.1 -3.34,4.63 -0.33,1.55 -0.11,1.66 0.85,11.21 0.32,1.52 0.43,2.27 -1.41,10.64 -4.2,6.08 -2.59,2.76 -2.48,1.03 -3.33,-0.23 -1.62,-0.35 -10.05,5.17 -13.56,10.36 -6.13,2.93 -4.09,1.29 -11.08,-5.8 -28.67,-7.47 -36.11,-18.09 -2.59,-3.02 -1.07,-2.21 -0.98,-2.73 -0.97,-4.82 -0.01,-2.99 0.54,-2.19 0.96,-1.78 6.03,-8.57 0.96,-1.78 1.61,-4.03 1.07,-4.94 1.29,-10.44 0.21,-2.15 -0.34,-10.4 0.22,-2.47 0.53,-1.61 0.97,-1.1 1.4,-0.63 14.48,-2.14 1.83,-1.04 1.94,-1.66 2.05,-3.57 -0.11,-3.91 -1.41,-4.85 -3.45,-9.17 -2.6,-3.59 -2.51,-1.92 -28.91,-1.4 -7.13,-2.75 -17.64,-13.42 -1.62,-0.63 -1.73,-0.22 -1.73,0.06 -14.66,4.66 -3.38,1.64 -3.56,0.99 -3.55,0.58 -4,0.01 -8.74,-1.47 -16.52,-5.47 -14.51,-1.96 -11.97,0.62 -4.75,-1.14 -16.47,-7.46 -12.97,-3.17 -2.7,-1.56 -1.41,-1.55 -0.12,-1.98 -4.35,-7.4 -7.79,-4.33 -5.67,-4.63 -0.44,-1.55 -0.12,-1.55 -0.44,-1.55 -0.99,-3.33 -2.06,-2.69 -22.91,-23.02 -15.16,-19.54 -3.82,-6.67 -7.34,-15.57 -1.32,-4.13 -0.44,-2.23 0.2,-1.56 0.54,-1.49 0.96,-1.45 1.29,-1.41 3.12,-2.69 4.42,-3.07 2.48,-2.49 0.64,-1.47 0.42,-1.46 0.73,-4.46 0.85,-3.6 0.53,-1.55 0.75,-1.56 1,-1.41 1.4,-1.19 3.03,-1.39 6.48,-1.25 3.36,0.13 2.06,0.54 1.84,1.19 1.64,2.12 3.71,7.34 0.66,0.83 1.08,1.06 1.52,0.97 3.47,1.1 14.32,1.17 14.19,4.19 15.41,11.26 3.25,1.54 3.18,0.62 1.51,-0.5 1.51,-0.9 1.07,-1.32 0.65,-1.5 0.32,-1.69 -0.34,-1.87 -2.51,-7.43 -0.22,-1.35 0.21,-1.27 1.19,-0.87 5.39,-2.8 1.08,-1.39 0.43,-0.86 3.41,-14.24 0.75,-3.68 0.21,-2.12 4.15,-18.75 0.53,-4.95 2.77,-13.34 0.42,-1.49 0.22,-1.38 1.17,-6.04 0.42,-3.08 0.2,-3.94 -0.24,-6.98 -0.55,-3.42 -0.87,-2.29 -22.64,-25.09 -14.22,-19.2 -1.42,-2.6 -0.11,-1.41 -0.01,-1.52 0.32,-1.59 0.65,-1.49 5.92,-9.85 0.97,-3.03 0.3,-5.31 -0.77,-2.7 -1.31,-1.78 -17.84,-9.55 -9.26,-7.57 -1.63,-0.83 -1.85,-0.33 -1.74,0.21 -21.83,5.93 -71.72,0.1 -3,-9.29 2.47,-5.3 2.79,-4.33 4.83,-9.92 1.6,-4.66 0.52,-3.42 -1.66,-4.56 -0.69,-6.43 1.15,-7.08 4.04,-15.14 1.26,-6.3 0.3,-4.46 -4.73,-8.07 -7.56,-8.86 -0.99,-1.77 -2.2,-4.64 -2.55,-6.71 -3.42,-6.76 -1.66,-4.47 -0.99,-1.95 -0.99,-1.49 -1.53,-0.96 -1.64,-0.62 -5.56,-1.23 -4.6,-5.26 -9,-20.05 -5.97,-12.31 -0.45,-2.35 -0.48,-5.63 -0.34,-17.58 -1.34,-4.51 -1.76,-2.45 -1.75,0.04 -7.94,2.07 -4.14,-0.32 -11.98,-8.01 -18.78,-18.07 -2.65,-3.88 0.5,-5.52 0.06,-5.21 -0.89,-2.72 -1.22,-1.83 -14.64,-11.48 -3.94,-2.15 -3.18,-1.18 -9.16,-0.07 -10.17,-1.66 -11.58,2.23 -4.01,3.03 -5.75,14.48 -1.94,2.43 -2.61,1.4 -8.51,-0.38 -2.85,-1.12 -2.08,-1.36 -8.62,-10.77 -30.65,-27.19 -1.44,-1.71 -3.11,-5.05 -1.65,-1.88 -13.79,-9.65 -1.22,-1.37 -0.78,-1.57 -5.18,-14.25 -34.13,-29.16 -3.65,-3.98 -0.57,-1.49 -0.35,-1.8 -0.01,-1.64 0.42,-1.38 0.86,-1.34 1.51,-1.16 1.41,-0.77 1.3,-1.05 0.75,-1.38 0.2,-1.56 -0.36,-3.16 0.09,-1.43 0.75,-1.51 1.4,-1.56 15.65,-12.14 3.02,-3.42 0.97,-1.56 0.86,-1.74 0.41,-1.9 0.09,-2.01 -4.26,-29.09 -1.97,-8.89 -1.67,-2.68 -2.31,-1.44 -7.28,-1.44 -3.1,-3.06 -2,-2.4 -6.86,-15.2 -19.46,12.47 -7.89,2.42 -4.27,-0.32 -17.73,-7.88 -3.73,-0.47 -2.06,2.09 -1.09,8.58 -1.46,6 -1.37,3.75 -11.48,20.9 -29.34,39.3 -7.06,14.06 -0.37,4.89 0.65,7.89 1.9,10.52 0.24,9.43 -1.09,8.43 -3.68,18.3 -2.2,6.93 -2.12,4.31 -1.85,0.51 -1.96,-0.03 -1.98,-0.54 -9.13,-4.73 -1.86,-0.46 -2.84,-0.02 -5.62,3.64 -7.37,6.66 -21.04,24.14 -5.49,4.94 -18.48,6.66 -6.48,4.01 -2.57,3.03 -1.04,3.46 0.49,3.5 1.29,6.04 1.72,4.95 2.03,4.56 3.21,10.01 2.53,15.83 -40.6,12.02 -9.19,-2.55 -22.18,-20.73 -1.4,-5.2 -1.21,-7.28 2.15,-27.51 0.89,-5.45 1.07,-3.73 1.37,-2.95 2.14,-2.05 1.58,-3.53 1.44,-5.2 0.35,-12.13 -0.74,-5.13 -1.91,-3.16 -1.64,-0.26 -1.42,0.19 -15.87,6.48 -1.75,-0.37 -2.76,-1.74 -11.26,-13.37 -4.11,-3.69 -26.53,-15.6 12.66,-13.5 3.27,-6.87 0.46,-4.75 -0.17,-3.59 -0.39,-3.1 -1.26,-3.42 -0.79,-1.63 -1.45,-1.47 -1.43,-0.69 -1.76,-0.34 -2.07,0.27 -1.62,1 -1.08,1.17 -1.27,2.15 -0.75,1.1 -1.65,-0.6 -2.44,-2.14 -6.55,-11.41 -2.12,-2.57 -2.1,-1.29 -22.72,-8.12 -6.63,-3.58 -3.23,-3.16 -2.15,-3.92 -3.23,-8.57 -2.14,-3.29 -2.66,-1.79 -12.68,2.77 -3.06,0 -3.74,-0.67 -6.06,-2.36 -22.07,-12.67 -59.47,-15.28 -26.48,2.83 -17.18,-4.69 -4.94,-5.24 0.51,-1.82 1.39,-1.67 1.05,-2.18 0.05,-2.53 -1.17,-8.54 -0.19,-3.35 0.46,-4.12 0.02,-4.4 -0.45,-5.31 -4.76,-7.14 -1.75,-4.88 -0.98,-4.49 0.18,-6.78 -0.61,-3.15 -1.14,-2.05 -19.42,-13.48 -2.88,-1.26 -33.16,-9.36 -8.04,-0.91 -39.77,3.81 -1.4,1.24 -0.93,2.07 -0.69,3.61 -0.82,2.43 -1.15,2.3 -0.74,1.05 -1.39,1.39 -4.98,2.96 -4.35,1.52 -2.34,-0.18 -1.57,-1.31 -1.17,-3.05 -0.94,-2.68 -6.25,-13.32 -5.09,-1.69 -17.45,-17.65 -7.74,-2.19 -15.36,6.19 -2.64,-0.22 -2.01,-1.56 -1.77,-4.67 -2.2,-4.43 -3.54,-5.6 -4.68,-2.44 -3.64,-0.62 -2.18,0.46 -11.29,6.44 -8.97,1.21 -6.99,-2.69 -38.17,-25.4 -19.78,-7.2 -12.57,-1.43 -6.31,-1.76 -3.89,-1.61 -1.26,-1.78 -0.93,-1.7 -1.29,-3.04 -4.63,-8.47 -11.17,-12.68 -16.95,-4.52 -1.36,-1.2 -1.82,-2.22 0.51,-5.3 0.96,-4.8 0.89,-7.56 0.36,-10.45 -2.28,-22.1 -5.34,-9.79 -5.24,-6.01 -7.09,-1.46 -2.78,0.08 -4.82,0.94 -4.68,1.81 -4.21,2.99 -2.68,2.55 -1.49,1.72 -4.1,6.73 -3.93,8.57 -0.99,3.65 -4.28,0.53 -27.3,-9.77 -11.86,-6.55 -0.27,-1.63 0.27,-2.08 0.78,-3.27 0.08,-4.75 -0.86,-6.55 -4.26,-9.65 -1.82,-5.47 -0.45,-4.07 1.04,-2.04 1.93,-1.67 9.23,-4.59 2.26,-1.79 2.03,-2.19 0.91,-2.56 0.36,-2.86 -0.49,-12.78 0.57,-10.48 1.18,-8.28 1.51,-4.79 1.76,-3.85 6.2,-10.36 1.76,-3.85 0.89,-3.59 1.01,-7.02 -1.01,-4.28 -1.75,-3.06 -1.91,-1.15 -17.63,-2.78 -37.47,-11.17 -11.72,2.72 -8.62,11.66 -4.94,4.61 -7.45,5.15 -5.63,-0.12 -4.63,-3.13 -5.22,-4.84 -10.34,-4.5 -7.39,0.24 -3.95,0.81 -0.81,2.24 0.98,2.96 2.45,4.24 1.54,3.31 -1.41,4.1 -4.4,3.85 -12.14,6.75 -5.89,2.09 -3.51,0.66 -5.08,-2.48 -4.13,-1.42 -29.03,-3.68 -3.02,-0.99 -1.75,-1.7 -32.52,-21.88 -11.89,-4.43 -4.56,-0.85 -2.59,1.82 -2.449,12.33 -1.543,3.27 -2.316,3.19 -11.582,6.61 -4.379,4.12 -1.571,2.59 -0.671,2.84 -1.129,2.45 -1.91,3.35 -5.141,4.55 -3.149,1.37 -2.98,-0.06 -1.809,-1.26 -2.062,-2.17 -1.09,-2.76 -0.187,-2.38 0.527,-3.52 21.691,-37.57 1.02,-2.45 0.488,-1.86 0.051,-1.78 -0.598,-1.42 -3.961,-2.74 -15.851,-6.87 -18.071,0.52 -0.429,7.55 -23.141,43.82 -0.476,13.22 5.449,14.67 5.929,26.05 1.219,18.54 -2.621,3.89 -4.957,1.1 -5.762,10.27 -3.449,11.4 -1.801,10.07 2.129,8.76 0.024,0.08 8.027,7.42 0.172,0.17 -12.91,1.15 -30.391,8.18 -10.691,5.57 -1.559,1.62 -1.629,0.6 -1.703,-0.48 -1.598,-1.5 -24.281,-6.51 -7.019,0.61 -5.442,4.75 -5.636,12.98 -5.481,5.45 6.008,9.38 -8.289,0.91 -5.59,2.63 -0.801,5.07 0,0 5.821,8.26 0.121,0.17 -11.301,15.3 0,0 0.23,0.34 13.539,19.48 0.082,0.11 23.02,17.68 16.039,8.77 0.109,0.06 0.153,4.04 0,0.01 8.379,9.37 0.07,0.07 5.301,9.75 -1.321,6.72 -48.832,3.02 -14.25,8.22 -7.609,16.27 -0.031,0.08 9.5,5.41 0.152,0.09 -40.5,67.45 -12.961,14.14 -11.73,1.56 -28.18,-6.58 -9.398,1.47 -2.403,9.42 3.102,11.55 0.027,10.7 -11.449,6.71 -0.899,2.08 -0.031,2.02 0.551,2 0.012,0.02 0.308,0.49 0.899,1.44 0.043,0.06 2.109,14.42 0.008,0.05 -4.32,6.91 -6.758,5.17 -5.012,9.52 -2.348,14.37 -0.011,0.06 10.519,-3.25 10.512,9.12 4.238,12.99 0,0.02 -1.109,10.34 -0.301,9.57 0,0.05 6.602,10.9 10.007,5.18 15.731,-2.05 8.23,9.06 4.711,11.26 0.571,8.81 0,0.06 -4.969,23.07 -0.012,0.02 1.57,7.31 3.981,5.88 1.469,4.38 0.019,0.05 -22.558,8.87 -16.18,11.1 -5.09,6.13 -1.5,8.87 -0.32,16.08 0,0.05 3.058,9.14 4.653,9.11 0.008,0.02 -1.211,5.92 -25.231,-2.08 -18.277,6.94 -9.629,1.7 -9.582,-2.28 -18.621,-8.28 -9.629,-1.55 0.469,28.01 -9.438,32.46 -2.941,26.2 -0.008,0.05 20.137,9.51 9.402,-5.9 7.84,-11.18 9.058,-8.95 12.95,0.84 8.98,9.15 14.711,27.74 9.859,10.44 66.77,48.2 40.691,20.03 10.879,13.41 0.031,0.04 -14.031,14.21 -0.039,0.03 16.481,12.42 5.589,3.02 0.059,0.04 -15.777,6.16 -35.762,-22.53 -16.07,9.76 -4.2,20.7 0,0.02 3.059,24.79 6.941,21.88 7.559,11.95 15.461,17.34 38.289,64.61 7.551,6.9 18.219,11.67 7.25,9.51 4.312,13.7 3.09,24.28 4.34,9.52 0.019,0.03 -9.98,13.04 0,0 1.68,20.48 6.191,23.35 3.379,21.88 0.012,0.03 -2.571,20.35 -3.551,36.62 -26.742,33.43 -43.59,65.25 -2.488,13.76 0,0.03 4.391,15.71 9.008,24.51 0.019,0.05 -45.949,22.51 -15.109,20.87 10.628,31.06 0.024,0.04 -6.672,7.36 -14.828,12.29 -7.774,4.15 -20.097,0.35 -6.731,3.15 0,0.01 1.071,11.86 3.398,3.1 12.609,11.49 2.114,22.42 0,0.05 -8.301,21.84 -15.152,12.69 -0.008,0.01 2.769,9.84 11.77,7.65 28.371,3.85 13.551,5.14 14.699,10.02 10.039,4.86 28.41,6.39 22.039,-6.86 16.102,-4.78 10.949,-3.18 0.051,-0.02 -8.68,14.96 -24.621,28.08 -8.23,6.8 -0.04,0.03 23.93,11.71 21.731,-11.38 21.429,-18.79 22.891,-10.43 21.668,3.9 5.633,-0.88 4.726,-4.92 7.172,-13.96 2.961,-4 26.188,-4.94 11,-6.99 1.441,-17.37 26.14,6.3 3.2,10.91 0.01,0.03 -4.67,25.19 -0.01,0.06 43.65,-14.64 13.99,-0.49 11.53,4.86 34.76,24.87 69.3,21.11 60.96,-0.03 18.94,9.57 16.62,18.61 16.53,27.99 5.9,6.04 5.25,0.76 3.58,3.28 1.04,13.5 0.01,0.07 -1.48,7.5 -3.38,5.56 -17.21,19.28 -44.04,26.5 -14.92,4.96 -10.67,8.11 -0.84,16.89 0,0.05 5.12,11.39 6.18,2.8 7.31,0.23 8.39,3.9 5.67,6.81 6.04,13.96 3.81,6.24 12.05,11.73 11.16,5.78 3.61,0.31 40.84,3.44 8.91,7.58 16.05,30.44 13.7,13.58 29.66,12.08 13.99,11.68 16.8,25.64 7.55,8.42 30.93,17.66 2.06,5.64 -1.37,2.74 18.01,-1.26 28.5,11.23 9.82,6.76 5.11,5.16 3.99,3.11 94.04,1.57 28.39,5.59 33.24,21.83 10.25,9.2 3.37,2.22 3.09,1.37 17.63,3.37 7.37,3.43 5.16,3.69 35.46,35.31 32.04,25.64 3.74,1.94 9.74,1.64 4.36,-0.21 12.73,-2.44 1.38,0.15 0.74,0.27 2.92,3.62 3.38,5.51 1.73,2.1 1.19,1.01 0.63,-0.1 3.64,8.27 4.53,15.86 2.55,6.13 3.17,4 4.78,1.51 0.35,2.01 -1.21,2.72 -4.52,6.24 -5.15,2.75 -1.99,5.9 -0.77,3.99 8.95,35.35 3.36,5.06 1.62,1.69 2.97,1.21 2.42,-0.11 48.3,-15.97 3.22,-2.53 2.17,-2.11 2.23,-5.21 1.46,-6.18 5.11,-38.38 1.76,-3.77 2.8,-2.98 16.45,-6.33 45.54,-29.84 2.28,-2.37 7.34,-9.66 4.32,-2.14 4.53,-0.68 44.96,16.97 3.27,-0.22 4.1,-1.38 3.48,-6.67 6.02,-7.22 5.86,-5.69 8.99,-13.79 12.23,-23.46 6.51,-10.26 1.54,-3.25 0.49,-2.82 -2.47,-2.26 -2.44,-1 -20.87,-2.75 -2.55,-1.11 -1.73,-2.56 -0.37,-3.45 1.38,-6.74 0.91,-3.01 1.33,-2.86 4.04,-6.01 3.7,-7.04 -0.14,-3.02 -1.43,-3.22 -4.21,-6.06 -12.61,-12.69 -2.6,-3.96 -0.13,-1.7 0.18,-2.35 1.41,-4.68 3.7,-7.47 0.91,-3.12 -0.16,-3.39 -1.55,-4.35 -4.12,-7.01 -9.15,-9.43 -2.39,-3.96 -0.16,-3.27 1.94,-5.09 2.82,-2.35 4.75,-1.85 6.35,-0.44 6.16,-1.35 0.84,-0.48 1.63,-4.91 1.16,-7.08 2.61,-2.97 3.37,-1.89 8.69,0.13 12.33,2.27 8.4,-0.67 12.24,-4.65 3.57,-2 2.52,-2.08 -0.17,-4.54 -2.42,-6.63 -7.31,-14.56 -4.54,-13.79 -0.28,-5.49 -1.79,-6.27 -2.94,-5.07 -7.38,-1.4 -8.81,-0.33 -13.31,-2.88 -17.25,-7.71 -12.14,-9.36 -7.98,-8.56 -1.16,-5.99 5.65,-13 2.65,-7.02 5.37,-17.73 1.57,-1.55 3.38,-1.77 19.18,-6.75 11.81,-6.92 3.15,-3.04 2.76,-0.12 3.86,2.1 30.19,28.24 10.59,4.94 24.96,4.11 24.47,-9.39 48.59,17.82 12.4,7.05 8.62,7.84 4.33,7.37 11.83,14.13 22.2,19.19 86.56,-25.65 4.89,1.25 3.52,1.98 1.39,1.51 1.62,3.52 5.66,16.57 2.37,4.58 3,3.45 27.53,17.3 6.72,5.47 3.53,3.99 3.64,5.27 3.91,6.81 3.66,8.02 0.87,3.79 -0.51,2.62 -7.3,6.57 -14.45,9.82 -1.16,1.1 -1.93,10.65 -1.19,39.79 1.79,40.56 -0.39,19.61 -2.71,19.04 -4.19,18.72 -5.78,17.46 -3.94,8.59 -4.95,5.96 -19.52,14.42 -44.06,21.25 -4.99,7.29 -3.42,6.01 -13.1,45.59 15.15,-5.89 15.49,-0.08 2.74,-0.77 5.24,-2.84 5.78,-1.63 38.65,4.79 11.87,5.54 4.78,3.93 2.76,3.72 1.3,3.9 5.47,27.37 0.65,2.18 0.85,1.84 1.28,1.71 4.34,3.59 6.13,3.81 7.34,5.72 3.29,3.63 13.79,1.69 33.6,-1.31 10.95,2.15 33.68,16.29 3.06,0.27 4.2,-0.17 11.38,-4.74 5.33,-5.48 5.88,-4.4 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7251" /><path
+               id="path3208" /><path
                d="m 2586.56,6104.82 0,0 18.48,-34.39 1.96,-10.07 0.39,-7.13 -0.33,-4.05 -1.63,-10.54 -0.12,-5.35 0.29,-4.71 1.04,-3.66 2.2,-5.18 0.72,-2.79 -0.22,-3.68 -2.16,-12.37 -0.45,-6.12 0.09,-5.41 0.5,-4.37 0.73,-2.7 1.68,-2.6 1.15,-1.35 7.63,-2.01 69.88,-7.81 22.06,2.45 19.67,7.24 4.32,2.64 45.51,10.1 1.79,1.72 1.9,2.79 1.79,3.56 10.03,31.61 6.74,15.2 3.51,4.83 18.01,18.69 37.7,20.06 3.05,0.69 3.58,-0.83 3.9,-2.21 9.42,-13.87 1.48,-1.52 2.21,-1.77 2.64,-1.67 2.63,-0.91 5.37,-1.03 1.69,-2.06 0.33,-3.39 -2.94,-8.11 -2.83,-4.38 -3.37,-3.4 -2.53,-1.49 -4.1,-3.17 -1.58,-2.07 0.54,-5.87 0.74,-4.65 11.98,-37.37 -22.35,-36.45 -11.89,-25.94 -2.74,-4.08 -7.5,-2.88 -3.59,-2.05 -5.73,-5.03 -5.5,-0.64 -15.73,2.04 -3.7,-0.52 -3.27,-1.52 -2.43,-2.99 -2.12,-4.08 -4.12,-11.56 -1.19,-7.18 -2.86,-30.75 -1.48,-9.92 -1.38,-6.46 -1.48,-3.94 -0.21,-2.44 0.52,-3.28 2.33,-5 2.01,-2.44 2.12,-1.58 12.41,-3.08 22.66,-10.48 15.17,-3.55 3.07,-1.35 1.27,-1.18 -1.48,-2.53 -14.95,-10.33 -4.55,-4.28 -2.33,-5.75 0.43,-2.88 1.16,-3.36 1.38,-3.07 2.02,-6.47 1.28,-9.16 -1.17,-2.36 -2.86,-1.32 -15.26,1.31 -21.44,-6.21 4.27,-11.72 6.79,-15.01 1.16,-3.82 1.07,-5.66 0.21,-3.74 -0.32,-3.44 -1.06,-2.76 -1.59,-2.93 -1.27,-2.02 -2.87,-6.03 -0.64,-3.36 1.6,-1.01 3.29,0.23 8.17,2.73 10.5,1.38 8.81,-0.77 13.82,1.82 48.96,-6.74 5.1,-3.24 2.35,-3.44 -0.84,-5.26 -2.33,-6.33 -0.94,-3.34 -0.11,-2.55 0.54,-2.79 5.75,-6.08 19.06,-8.12 7.67,-10.9 0.87,-6.69 0.23,-4.52 -1.06,-3.1 -7.19,-13.13 -0.53,-1.75 -0.21,-2.27 0.54,-3.91 5.68,-17.74 8.46,-19.93 0.64,-2.67 -0.62,-4.22 -0.53,-2.48 -0.74,-1.95 -1.9,-3.28 -1.91,-2.42 -3.82,-3.46 -4.15,-2.63 -0.95,-1.03 -0.43,-1.07 -0.1,-1.2 0.22,-1.9 0.11,-2.7 -0.53,-1.67 -1.06,-1.73 -1.49,-1.44 -1.06,-1.32 2.99,-3.1 6.29,-4.24 17.49,-8.57 6.32,-1.42 3.09,1.22 -0.22,2.35 0.21,1.61 0.42,1.44 1.16,2.25 1.27,1.78 1.6,1.44 2.65,1.59 2.88,0.9 3.51,0.42 2.87,-0.11 26.49,-12 0.86,-2.55 -0.93,-6.13 -7.56,-30.58 -1.09,-2.24 -2.65,-4.49 -2.97,-3.41 -4.89,-4.67 -1.7,-2.07 1.39,-1.15 4.06,-0.21 17.72,2.96 9.06,-0.5 16.35,-7.87 3.37,-5.38 1.72,-3.5 0.97,-2.58 1.3,-5.4 1.32,-8.33 -1.43,-12.42 -9.62,-28.95 6.98,-1.64 7.15,1.67 12.14,5.32 3.74,0.59 30.79,-1.1 15.67,2.57 7.07,2.74 4.36,2.33 3.73,1.28 1.93,-0.85 2.25,-2.28 -1.88,-6.8 -1.57,-3.91 -3.49,-5.83 -6.39,-8.37 -1.06,-2.54 0.34,-2.53 2.51,-3.6 3.64,-0.18 5.67,-2.18 2.26,-1.54 0.86,-1.72 -0.31,-1.66 -4.88,-5.09 -1.15,-3.46 -0.51,-5.43 0.82,-11.46 -0.8,-8.92 -3.97,-14.13 -6.36,-16.31 -2.01,-3.63 -3.82,-4.99 -3.83,-3.48 -8.96,-5.51 -2.02,-1.67 -0.85,-1.22 -0.63,-2.64 -0.94,-4.84 -1.16,-3.05 -1.37,-2.71 -2.02,-2.65 -1.49,-1.3 -1.28,-1.53 -0.85,-1.68 -0.83,-4.94 -0.18,-6.1 0.36,-7.41 2.11,-13.32 0.45,-5.17 -0.3,-3.39 -2.23,-2.77 -1.28,-2.31 -0.51,-4.03 0.35,-4.99 1.65,-7.96 -0.84,-3.99 -1.63,-2.66 -4.59,-2.95 -1.92,-1.91 -1.49,-2.71 -1.05,-3.97 -0.51,-5.78 0.03,-5.86 0.45,-4.14 0.98,-3.18 1.19,-2.52 1.84,-1.92 10.33,-0.32 32.02,10.18 -10.83,-19.54 -4.48,-4.91 -49.64,-16.76 -6.1,-3.7 -2.78,-2.6 0.55,-1.55 2.37,-2.52 1.4,-1.17 8.94,-6.02 1.19,-1.15 0.65,-1.43 0.22,-1.7 -0.1,-1.72 -0.42,-1.76 -2.76,-6.56 -1.16,-3.51 -1.27,-5.07 -1.9,-5.84 -0.32,-1.75 -0.31,-1.7 -1.91,-6.99 -2.86,-8.18 -3.09,-4.92 -3.78,-4.47 -7.07,-6.3 -3.31,-4.78 -2.67,-5.42 -2.98,-8.17 -2.24,-3.75 -2.25,-2.76 -9.23,-5.27 -8.61,-7.96 -5.26,-3.93 -7.31,-2.27 -13.53,-8.66 -3.33,-3.12 -2.57,-2.94 -1.6,-3.71 -1.18,-3.77 -0.95,-3.97 -0.21,-1.72 0.01,-3.1 0.11,-2.93 -0.1,-1.56 -0.35,-2.47 -0.64,-2.87 -1.6,-5.47 -1.61,-1.9 -1.61,-0.92 -8.09,1.9 -3.55,-1.65 -24.55,-19.54 -2.91,-0.67 -5.49,-0.04 -25.87,5.13 -13.2,11.1 -3.34,4.63 -0.33,1.55 -0.11,1.66 0.85,11.21 0.32,1.52 0.43,2.27 -1.41,10.64 -4.2,6.08 -2.59,2.76 -2.48,1.03 -3.33,-0.23 -1.62,-0.35 -10.05,5.17 -13.56,10.36 -6.13,2.93 -4.09,1.29 -11.08,-5.8 -28.67,-7.47 -36.11,-18.09 -2.59,-3.02 -1.07,-2.21 -0.98,-2.73 -0.97,-4.82 -0.01,-2.99 0.54,-2.19 0.96,-1.78 6.03,-8.57 0.96,-1.78 1.61,-4.03 1.07,-4.94 1.29,-10.44 0.21,-2.15 -0.34,-10.4 0.22,-2.47 0.53,-1.61 0.97,-1.1 1.4,-0.63 14.48,-2.14 1.83,-1.04 1.94,-1.66 2.05,-3.57 -0.11,-3.91 -1.41,-4.85 -3.45,-9.17 -2.6,-3.59 -2.51,-1.92 -28.91,-1.4 -7.13,-2.75 -17.64,-13.42 -1.62,-0.63 -1.73,-0.22 -1.73,0.06 -14.66,4.66 -3.38,1.64 -3.56,0.99 -3.55,0.58 -4,0.01 -8.74,-1.47 -16.52,-5.47 -14.51,-1.96 -11.97,0.62 -4.75,-1.14 -16.47,-7.46 -12.97,-3.17 -2.7,-1.56 -1.41,-1.55 -0.12,-1.98 -4.35,-7.4 -7.79,-4.33 -5.67,-4.63 -0.44,-1.55 -0.12,-1.55 -0.44,-1.55 -0.99,-3.33 -2.06,-2.69 -22.91,-23.02 -15.16,-19.54 -3.82,-6.67 -7.34,-15.57 -1.32,-4.13 -0.44,-2.23 0.2,-1.56 0.54,-1.49 0.96,-1.45 1.29,-1.41 3.12,-2.69 4.42,-3.07 2.48,-2.49 0.64,-1.47 0.42,-1.46 0.73,-4.46 0.85,-3.6 0.53,-1.55 0.75,-1.56 1,-1.41 1.4,-1.19 3.03,-1.39 6.48,-1.25 3.36,0.13 2.06,0.54 1.84,1.19 1.64,2.12 3.71,7.34 0.66,0.83 1.08,1.06 1.52,0.97 3.47,1.1 14.32,1.17 14.19,4.19 15.41,11.26 3.25,1.54 3.18,0.62 1.51,-0.5 1.51,-0.9 1.07,-1.32 0.65,-1.5 0.32,-1.69 -0.34,-1.87 -2.51,-7.43 -0.22,-1.35 0.21,-1.27 1.19,-0.87 5.39,-2.8 1.08,-1.39 0.43,-0.86 3.41,-14.24 0.75,-3.68 0.21,-2.12 4.15,-18.75 0.53,-4.95 2.77,-13.34 0.42,-1.49 0.22,-1.38 1.17,-6.04 0.42,-3.08 0.2,-3.94 -0.24,-6.98 -0.55,-3.42 -0.87,-2.29 -22.64,-25.09 -14.22,-19.2 -1.42,-2.6 -0.11,-1.41 -0.01,-1.52 0.32,-1.59 0.65,-1.49 5.92,-9.85 0.97,-3.03 0.3,-5.31 -0.77,-2.7 -1.31,-1.78 -17.84,-9.55 -9.26,-7.57 -1.63,-0.83 -1.85,-0.33 -1.74,0.21 -21.83,5.93 -71.72,0.1 -3,-9.29 2.47,-5.3 2.79,-4.33 4.83,-9.92 1.6,-4.66 0.52,-3.42 -1.66,-4.56 -0.69,-6.43 1.15,-7.08 4.04,-15.14 1.26,-6.3 0.3,-4.46 -4.73,-8.07 -7.56,-8.86 -0.99,-1.77 -2.2,-4.64 -2.55,-6.71 -3.42,-6.76 -1.66,-4.47 -0.99,-1.95 -0.99,-1.49 -1.53,-0.96 -1.64,-0.62 -5.56,-1.23 -4.6,-5.26 -9,-20.05 -5.97,-12.31 -0.45,-2.35 -0.48,-5.63 -0.34,-17.58 -1.34,-4.51 -1.76,-2.45 -1.75,0.04 -7.94,2.07 -4.14,-0.32 -11.98,-8.01 -18.78,-18.07 -2.65,-3.88 0.5,-5.52 0.06,-5.21 -0.89,-2.72 -1.22,-1.83 -14.64,-11.48 -3.94,-2.15 -3.18,-1.18 -9.16,-0.07 -10.17,-1.66 -11.58,2.23 -4.01,3.03 -5.75,14.48 -1.94,2.43 -2.61,1.4 -8.51,-0.38 -2.85,-1.12 -2.08,-1.36 -8.62,-10.77 -30.65,-27.19 -1.44,-1.71 -3.11,-5.05 -1.65,-1.88 -13.79,-9.65 -1.22,-1.37 -0.78,-1.57 -5.18,-14.25 -34.13,-29.16 -3.65,-3.98 -0.57,-1.49 -0.35,-1.8 -0.01,-1.64 0.42,-1.38 0.86,-1.34 1.51,-1.16 1.41,-0.77 1.3,-1.05 0.75,-1.38 0.2,-1.56 -0.36,-3.16 0.09,-1.43 0.75,-1.51 1.4,-1.56 15.65,-12.14 3.02,-3.42 0.97,-1.56 0.86,-1.74 0.41,-1.9 0.09,-2.01 -4.26,-29.09 -1.97,-8.89 -1.67,-2.68 -2.31,-1.44 -7.28,-1.44 -3.1,-3.06 -2,-2.4 -6.86,-15.2 -19.46,12.47 -7.89,2.42 -4.27,-0.32 -17.73,-7.88 -3.73,-0.47 -2.06,2.09 -1.09,8.58 -1.46,6 -1.37,3.75 -11.48,20.9 -29.34,39.3 -7.06,14.06 -0.37,4.89 0.65,7.89 1.9,10.52 0.24,9.43 -1.09,8.43 -3.68,18.3 -2.2,6.93 -2.12,4.31 -1.85,0.51 -1.96,-0.03 -1.98,-0.54 -9.13,-4.73 -1.86,-0.46 -2.84,-0.02 -5.62,3.64 -7.37,6.66 -21.04,24.14 -5.49,4.94 -18.48,6.66 -6.48,4.01 -2.57,3.03 -1.04,3.46 0.49,3.5 1.29,6.04 1.72,4.95 2.03,4.56 3.21,10.01 2.53,15.83 -40.6,12.02 -9.19,-2.55 -22.18,-20.73 -1.4,-5.2 -1.21,-7.28 2.15,-27.51 0.89,-5.45 1.07,-3.73 1.37,-2.95 2.14,-2.05 1.58,-3.53 1.44,-5.2 0.35,-12.13 -0.74,-5.13 -1.91,-3.16 -1.64,-0.26 -1.42,0.19 -15.87,6.48 -1.75,-0.37 -2.76,-1.74 -11.26,-13.37 -4.11,-3.69 -26.53,-15.6 12.66,-13.5 3.27,-6.87 0.46,-4.75 -0.17,-3.59 -0.39,-3.1 -1.26,-3.42 -0.79,-1.63 -1.45,-1.47 -1.43,-0.69 -1.76,-0.34 -2.07,0.27 -1.62,1 -1.08,1.17 -1.27,2.15 -0.75,1.1 -1.65,-0.6 -2.44,-2.14 -6.55,-11.41 -2.12,-2.57 -2.1,-1.29 -22.72,-8.12 -6.63,-3.58 -3.23,-3.16 -2.15,-3.92 -3.23,-8.57 -2.14,-3.29 -2.66,-1.79 -12.68,2.77 -3.06,0 -3.74,-0.67 -6.06,-2.36 -22.07,-12.67 -59.47,-15.28 -26.48,2.83 -17.18,-4.69 -4.94,-5.24 0.51,-1.82 1.39,-1.67 1.05,-2.18 0.05,-2.53 -1.17,-8.54 -0.19,-3.35 0.46,-4.12 0.02,-4.4 -0.45,-5.31 -4.76,-7.14 -1.75,-4.88 -0.98,-4.49 0.18,-6.78 -0.61,-3.15 -1.14,-2.05 -19.42,-13.48 -2.88,-1.26 -33.16,-9.36 -8.04,-0.91 -39.77,3.81 -1.4,1.24 -0.93,2.07 -0.69,3.61 -0.82,2.43 -1.15,2.3 -0.74,1.05 -1.39,1.39 -4.98,2.96 -4.35,1.52 -2.34,-0.18 -1.57,-1.31 -1.17,-3.05 -0.94,-2.68 -6.25,-13.32 -5.09,-1.69 -17.45,-17.65 -7.74,-2.19 -15.36,6.19 -2.64,-0.22 -2.01,-1.56 -1.77,-4.67 -2.2,-4.43 -3.54,-5.6 -4.68,-2.44 -3.64,-0.62 -2.18,0.46 -11.29,6.44 -8.97,1.21 -6.99,-2.69 -38.17,-25.4 -19.78,-7.2 -12.57,-1.43 -6.31,-1.76 -3.89,-1.61 -1.26,-1.78 -0.93,-1.7 -1.29,-3.04 -4.63,-8.47 -11.17,-12.68 -16.95,-4.52 -1.36,-1.2 -1.82,-2.22 0.51,-5.3 0.96,-4.8 0.89,-7.56 0.36,-10.45 -2.28,-22.1 -5.34,-9.79 -5.24,-6.01 -7.09,-1.46 -2.78,0.08 -4.82,0.94 -4.68,1.81 -4.21,2.99 -2.68,2.55 -1.49,1.72 -4.1,6.73 -3.93,8.57 -0.99,3.65 -4.28,0.53 -27.3,-9.77 -11.86,-6.55 -0.27,-1.63 0.27,-2.08 0.78,-3.27 0.08,-4.75 -0.86,-6.55 -4.26,-9.65 -1.82,-5.47 -0.45,-4.07 1.04,-2.04 1.93,-1.67 9.23,-4.59 2.26,-1.79 2.03,-2.19 0.91,-2.56 0.36,-2.86 -0.49,-12.78 0.57,-10.48 1.18,-8.28 1.51,-4.79 1.76,-3.85 6.2,-10.36 1.76,-3.85 0.89,-3.59 1.01,-7.02 -1.01,-4.28 -1.75,-3.06 -1.91,-1.15 -17.63,-2.78 -37.47,-11.17 -11.72,2.72 -8.62,11.66 -4.94,4.61 -7.45,5.15 -5.63,-0.12 -4.63,-3.13 -5.22,-4.84 -10.34,-4.5 -7.39,0.24 -3.95,0.81 -0.81,2.24 0.98,2.96 2.45,4.24 1.54,3.31 -1.41,4.1 -4.4,3.85 -12.14,6.75 -5.89,2.09 -3.51,0.66 -5.08,-2.48 -4.13,-1.42 -29.03,-3.68 -3.02,-0.99 -1.75,-1.7 -32.52,-21.88 -11.89,-4.43 -4.56,-0.85 -2.59,1.82 -2.449,12.33 -1.543,3.27 -2.316,3.19 -11.582,6.61 -4.379,4.12 -1.571,2.59 -0.671,2.84 -1.129,2.45 -1.91,3.35 -5.141,4.55 -3.149,1.37 -2.98,-0.06 -1.809,-1.26 -2.062,-2.17 -1.09,-2.76 -0.187,-2.38 0.527,-3.52 21.691,-37.57 1.02,-2.45 0.488,-1.86 0.051,-1.78 -0.598,-1.42 -3.961,-2.74 -15.851,-6.87 -18.071,0.52 -0.429,7.55 -23.141,43.82 -0.476,13.22 5.449,14.67 5.929,26.05 1.219,18.54 -2.621,3.89 -4.957,1.1 -5.762,10.27 -3.449,11.4 -1.801,10.07 2.129,8.76 0.024,0.08 8.027,7.42 0.172,0.17 -12.91,1.15 -30.391,8.18 -10.691,5.57 -1.559,1.62 -1.629,0.6 -1.703,-0.48 -1.598,-1.5 -24.281,-6.51 -7.019,0.61 -5.442,4.75 -5.636,12.98 -5.481,5.45 6.008,9.38 -8.289,0.91 -5.59,2.63 -0.801,5.07 0,0 5.821,8.26 0.121,0.17 -11.301,15.3 0,0 0.23,0.34 13.539,19.48 0.082,0.11 23.02,17.68 16.039,8.77 0.109,0.06 0.153,4.04 0,0.01 8.379,9.37 0.07,0.07 5.301,9.75 -1.321,6.72 -48.832,3.02 -14.25,8.22 -7.609,16.27 -0.031,0.08 9.5,5.41 0.152,0.09 -40.5,67.45 -12.961,14.14 -11.73,1.56 -28.18,-6.58 -9.398,1.47 -2.403,9.42 3.102,11.55 0.027,10.7 -11.449,6.71 -0.899,2.08 -0.031,2.02 0.551,2 0.012,0.02 0.308,0.49 0.899,1.44 0.043,0.06 2.109,14.42 0.008,0.05 -4.32,6.91 -6.758,5.17 -5.012,9.52 -2.348,14.37 -0.011,0.06 10.519,-3.25 10.512,9.12 4.238,12.99 0,0.02 -1.109,10.34 -0.301,9.57 0,0.05 6.602,10.9 10.007,5.18 15.731,-2.05 8.23,9.06 4.711,11.26 0.571,8.81 0,0.06 -4.969,23.07 -0.012,0.02 1.57,7.31 3.981,5.88 1.469,4.38 0.019,0.05 -22.558,8.87 -16.18,11.1 -5.09,6.13 -1.5,8.87 -0.32,16.08 0,0.05 3.058,9.14 4.653,9.11 0.008,0.02 -1.211,5.92 -25.231,-2.08 -18.277,6.94 -9.629,1.7 -9.582,-2.28 -18.621,-8.28 -9.629,-1.55 0.469,28.01 -9.438,32.46 -2.941,26.2 -0.008,0.05 20.137,9.51 9.402,-5.9 7.84,-11.18 9.058,-8.95 12.95,0.84 8.98,9.15 14.711,27.74 9.859,10.44 66.77,48.2 40.691,20.03 10.879,13.41 0.031,0.04 -14.031,14.21 -0.039,0.03 16.481,12.42 5.589,3.02 0.059,0.04 -15.777,6.16 -35.762,-22.53 -16.07,9.76 -4.2,20.7 0,0.02 3.059,24.79 6.941,21.88 7.559,11.95 15.461,17.34 38.289,64.61 7.551,6.9 18.219,11.67 7.25,9.51 4.312,13.7 3.09,24.28 4.34,9.52 0.019,0.03 -9.98,13.04 0,0 1.68,20.48 6.191,23.35 3.379,21.88 0.012,0.03 -2.571,20.35 -3.551,36.62 -26.742,33.43 -43.59,65.25 -2.488,13.76 0,0.03 4.391,15.71 9.008,24.51 0.019,0.05 -45.949,22.51 -15.109,20.87 10.628,31.06 0.024,0.04 -6.672,7.36 -14.828,12.29 -7.774,4.15 -20.097,0.35 -6.731,3.15 0,0.01 1.071,11.86 3.398,3.1 12.609,11.49 2.114,22.42 0,0.05 -8.301,21.84 -15.152,12.69 -0.008,0.01 2.769,9.84 11.77,7.65 28.371,3.85 13.551,5.14 14.699,10.02 10.039,4.86 28.41,6.39 22.039,-6.86 16.102,-4.78 10.949,-3.18 0.051,-0.02 -8.68,14.96 -24.621,28.08 -8.23,6.8 -0.04,0.03 23.93,11.71 21.731,-11.38 21.429,-18.79 22.891,-10.43 21.668,3.9 5.633,-0.88 4.726,-4.92 7.172,-13.96 2.961,-4 26.188,-4.94 11,-6.99 1.441,-17.37 26.14,6.3 3.2,10.91 0.01,0.03 -4.67,25.19 -0.01,0.06 43.65,-14.64 13.99,-0.49 11.53,4.86 34.76,24.87 69.3,21.11 60.96,-0.03 18.94,9.57 16.62,18.61 16.53,27.99 5.9,6.04 5.25,0.76 3.58,3.28 1.04,13.5 0.01,0.07 -1.48,7.5 -3.38,5.56 -17.21,19.28 -44.04,26.5 -14.92,4.96 -10.67,8.11 -0.84,16.89 0,0.05 5.12,11.39 6.18,2.8 7.31,0.23 8.39,3.9 5.67,6.81 6.04,13.96 3.81,6.24 12.05,11.73 11.16,5.78 3.61,0.31 40.84,3.44 8.91,7.58 16.05,30.44 13.7,13.58 29.66,12.08 13.99,11.68 16.8,25.64 7.55,8.42 30.93,17.66 2.06,5.64 -1.37,2.74 18.01,-1.26 28.5,11.23 9.82,6.76 5.11,5.16 3.99,3.11 94.04,1.57 28.39,5.59 33.24,21.83 10.25,9.2 3.37,2.22 3.09,1.37 17.63,3.37 7.37,3.43 5.16,3.69 35.46,35.31 32.04,25.64 3.74,1.94 9.74,1.64 4.36,-0.21 12.73,-2.44 1.38,0.15 0.74,0.27 2.92,3.62 3.38,5.51 1.73,2.1 1.19,1.01 0.63,-0.1 3.64,8.27 4.53,15.86 2.55,6.13 3.17,4 4.78,1.51 0.35,2.01 -1.21,2.72 -4.52,6.24 -5.15,2.75 -1.99,5.9 -0.77,3.99 8.95,35.35 3.36,5.06 1.62,1.69 2.97,1.21 2.42,-0.11 48.3,-15.97 3.22,-2.53 2.17,-2.11 2.23,-5.21 1.46,-6.18 5.11,-38.38 1.76,-3.77 2.8,-2.98 16.45,-6.33 45.54,-29.84 2.28,-2.37 7.34,-9.66 4.32,-2.14 4.53,-0.68 44.96,16.97 3.27,-0.22 4.1,-1.38 3.48,-6.67 6.02,-7.22 5.86,-5.69 8.99,-13.79 12.23,-23.46 6.51,-10.26 1.54,-3.25 0.49,-2.82 -2.47,-2.26 -2.44,-1 -20.87,-2.75 -2.55,-1.11 -1.73,-2.56 -0.37,-3.45 1.38,-6.74 0.91,-3.01 1.33,-2.86 4.04,-6.01 3.7,-7.04 -0.14,-3.02 -1.43,-3.22 -4.21,-6.06 -12.61,-12.69 -2.6,-3.96 -0.13,-1.7 0.18,-2.35 1.41,-4.68 3.7,-7.47 0.91,-3.12 -0.16,-3.39 -1.55,-4.35 -4.12,-7.01 -9.15,-9.43 -2.39,-3.96 -0.16,-3.27 1.94,-5.09 2.82,-2.35 4.75,-1.85 6.35,-0.44 6.16,-1.35 0.84,-0.48 1.63,-4.91 1.16,-7.08 2.61,-2.97 3.37,-1.89 8.69,0.13 12.33,2.27 8.4,-0.67 12.24,-4.65 3.57,-2 2.52,-2.08 -0.17,-4.54 -2.42,-6.63 -7.31,-14.56 -4.54,-13.79 -0.28,-5.49 -1.79,-6.27 -2.94,-5.07 -7.38,-1.4 -8.81,-0.33 -13.31,-2.88 -17.25,-7.71 -12.14,-9.36 -7.98,-8.56 -1.16,-5.99 5.65,-13 2.65,-7.02 5.37,-17.73 1.57,-1.55 3.38,-1.77 19.18,-6.75 11.81,-6.92 3.15,-3.04 2.76,-0.12 3.86,2.1 30.19,28.24 10.59,4.94 24.96,4.11 24.47,-9.39 48.59,17.82 12.4,7.05 8.62,7.84 4.33,7.37 11.83,14.13 22.2,19.19 86.56,-25.65 4.89,1.25 3.52,1.98 1.39,1.51 1.62,3.52 5.66,16.57 2.37,4.58 3,3.45 27.53,17.3 6.72,5.47 3.53,3.99 3.64,5.27 3.91,6.81 3.66,8.02 0.87,3.79 -0.51,2.62 -7.3,6.57 -14.45,9.82 -1.16,1.1 -1.93,10.65 -1.19,39.79 1.79,40.56 -0.39,19.61 -2.71,19.04 -4.19,18.72 -5.78,17.46 -3.94,8.59 -4.95,5.96 -19.52,14.42 -44.06,21.25 -4.99,7.29 -3.42,6.01 -13.1,45.59 15.15,-5.89 15.49,-0.08 2.74,-0.77 5.24,-2.84 5.78,-1.63 38.65,4.79 11.87,5.54 4.78,3.93 2.76,3.72 1.3,3.9 5.47,27.37 0.65,2.18 0.85,1.84 1.28,1.71 4.34,3.59 6.13,3.81 7.34,5.72 3.29,3.63 13.79,1.69 33.6,-1.31 10.95,2.15 33.68,16.29 3.06,0.27 4.2,-0.17 11.38,-4.74 5.33,-5.48 5.88,-4.4 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2586.56,6104.82 0,0 18.48,-34.39 1.96,-10.07 0.39,-7.13 -0.33,-4.05 -1.63,-10.54 -0.12,-5.35 0.29,-4.71 1.04,-3.66 2.2,-5.18 0.72,-2.79 -0.22,-3.68 -2.16,-12.37 -0.45,-6.12 0.09,-5.41 0.5,-4.37 0.73,-2.7 1.68,-2.6 1.15,-1.35 7.63,-2.01 69.88,-7.81 22.06,2.45 19.67,7.24 4.32,2.64 45.51,10.1 1.79,1.72 1.9,2.79 1.79,3.56 10.03,31.61 6.74,15.2 3.51,4.83 18.01,18.69 37.7,20.06 3.05,0.69 3.58,-0.83 3.9,-2.21 9.42,-13.87 1.48,-1.52 2.21,-1.77 2.64,-1.67 2.63,-0.91 5.37,-1.03 1.69,-2.06 0.33,-3.39 -2.94,-8.11 -2.83,-4.38 -3.37,-3.4 -2.53,-1.49 -4.1,-3.17 -1.58,-2.07 0.54,-5.87 0.74,-4.65 11.98,-37.37 -22.35,-36.45 -11.89,-25.94 -2.74,-4.08 -7.5,-2.88 -3.59,-2.05 -5.73,-5.03 -5.5,-0.64 -15.73,2.04 -3.7,-0.52 -3.27,-1.52 -2.43,-2.99 -2.12,-4.08 -4.12,-11.56 -1.19,-7.18 -2.86,-30.75 -1.48,-9.92 -1.38,-6.46 -1.48,-3.94 -0.21,-2.44 0.52,-3.28 2.33,-5 2.01,-2.44 2.12,-1.58 12.41,-3.08 22.66,-10.48 15.17,-3.55 3.07,-1.35 1.27,-1.18 -1.48,-2.53 -14.95,-10.33 -4.55,-4.28 -2.33,-5.75 0.43,-2.88 1.16,-3.36 1.38,-3.07 2.02,-6.47 1.28,-9.16 -1.17,-2.36 -2.86,-1.32 -15.26,1.31 -21.44,-6.21 4.27,-11.72 6.79,-15.01 1.16,-3.82 1.07,-5.66 0.21,-3.74 -0.32,-3.44 -1.06,-2.76 -1.59,-2.93 -1.27,-2.02 -2.87,-6.03 -0.64,-3.36 1.6,-1.01 3.29,0.23 8.17,2.73 10.5,1.38 8.81,-0.77 13.82,1.82 48.96,-6.74 5.1,-3.24 2.35,-3.44 -0.84,-5.26 -2.33,-6.33 -0.94,-3.34 -0.11,-2.55 0.54,-2.79 5.75,-6.08 19.06,-8.12 7.67,-10.9 0.87,-6.69 0.23,-4.52 -1.06,-3.1 -7.19,-13.13 -0.53,-1.75 -0.21,-2.27 0.54,-3.91 5.68,-17.74 8.46,-19.93 0.64,-2.67 -0.62,-4.22 -0.53,-2.48 -0.74,-1.95 -1.9,-3.28 -1.91,-2.42 -3.82,-3.46 -4.15,-2.63 -0.95,-1.03 -0.43,-1.07 -0.1,-1.2 0.22,-1.9 0.11,-2.7 -0.53,-1.67 -1.06,-1.73 -1.49,-1.44 -1.06,-1.32 2.99,-3.1 6.29,-4.24 17.49,-8.57 6.32,-1.42 3.09,1.22 -0.22,2.35 0.21,1.61 0.42,1.44 1.16,2.25 1.27,1.78 1.6,1.44 2.65,1.59 2.88,0.9 3.51,0.42 2.87,-0.11 26.49,-12 0.86,-2.55 -0.93,-6.13 -7.56,-30.58 -1.09,-2.24 -2.65,-4.49 -2.97,-3.41 -4.89,-4.67 -1.7,-2.07 1.39,-1.15 4.06,-0.21 17.72,2.96 9.06,-0.5 16.35,-7.87 3.37,-5.38 1.72,-3.5 0.97,-2.58 1.3,-5.4 1.32,-8.33 -1.43,-12.42 -9.62,-28.95 6.98,-1.64 7.15,1.67 12.14,5.32 3.74,0.59 30.79,-1.1 15.67,2.57 7.07,2.74 4.36,2.33 3.73,1.28 1.93,-0.85 2.25,-2.28 -1.88,-6.8 -1.57,-3.91 -3.49,-5.83 -6.39,-8.37 -1.06,-2.54 0.34,-2.53 2.51,-3.6 3.64,-0.18 5.67,-2.18 2.26,-1.54 0.86,-1.72 -0.31,-1.66 -4.88,-5.09 -1.15,-3.46 -0.51,-5.43 0.82,-11.46 -0.8,-8.92 -3.97,-14.13 -6.36,-16.31 -2.01,-3.63 -3.82,-4.99 -3.83,-3.48 -8.96,-5.51 -2.02,-1.67 -0.85,-1.22 -0.63,-2.64 -0.94,-4.84 -1.16,-3.05 -1.37,-2.71 -2.02,-2.65 -1.49,-1.3 -1.28,-1.53 -0.85,-1.68 -0.83,-4.94 -0.18,-6.1 0.36,-7.41 2.11,-13.32 0.45,-5.17 -0.3,-3.39 -2.23,-2.77 -1.28,-2.31 -0.51,-4.03 0.35,-4.99 1.65,-7.96 -0.84,-3.99 -1.63,-2.66 -4.59,-2.95 -1.92,-1.91 -1.49,-2.71 -1.05,-3.97 -0.51,-5.78 0.03,-5.86 0.45,-4.14 0.98,-3.18 1.19,-2.52 1.84,-1.92 10.33,-0.32 32.02,10.18 -10.83,-19.54 -4.48,-4.91 -49.64,-16.76 -6.1,-3.7 -2.78,-2.6 0.55,-1.55 2.37,-2.52 1.4,-1.17 8.94,-6.02 1.19,-1.15 0.65,-1.43 0.22,-1.7 -0.1,-1.72 -0.42,-1.76 -2.76,-6.56 -1.16,-3.51 -1.27,-5.07 -1.9,-5.84 -0.32,-1.75 -0.31,-1.7 -1.91,-6.99 -2.86,-8.18 -3.09,-4.92 -3.78,-4.47 -7.07,-6.3 -3.31,-4.78 -2.67,-5.42 -2.98,-8.17 -2.24,-3.75 -2.25,-2.76 -9.23,-5.27 -8.61,-7.96 -5.26,-3.93 -7.31,-2.27 -13.53,-8.66 -3.33,-3.12 -2.57,-2.94 -1.6,-3.71 -1.18,-3.77 -0.95,-3.97 -0.21,-1.72 0.01,-3.1 0.11,-2.93 -0.1,-1.56 -0.35,-2.47 -0.64,-2.87 -1.6,-5.47 -1.61,-1.9 -1.61,-0.92 -8.09,1.9 -3.55,-1.65 -24.55,-19.54 -2.91,-0.67 -5.49,-0.04 -25.87,5.13 -13.2,11.1 -3.34,4.63 -0.33,1.55 -0.11,1.66 0.85,11.21 0.32,1.52 0.43,2.27 -1.41,10.64 -4.2,6.08 -2.59,2.76 -2.48,1.03 -3.33,-0.23 -1.62,-0.35 -10.05,5.17 -13.56,10.36 -6.13,2.93 -4.09,1.29 -11.08,-5.8 -28.67,-7.47 -36.11,-18.09 -2.59,-3.02 -1.07,-2.21 -0.98,-2.73 -0.97,-4.82 -0.01,-2.99 0.54,-2.19 0.96,-1.78 6.03,-8.57 0.96,-1.78 1.61,-4.03 1.07,-4.94 1.29,-10.44 0.21,-2.15 -0.34,-10.4 0.22,-2.47 0.53,-1.61 0.97,-1.1 1.4,-0.63 14.48,-2.14 1.83,-1.04 1.94,-1.66 2.05,-3.57 -0.11,-3.91 -1.41,-4.85 -3.45,-9.17 -2.6,-3.59 -2.51,-1.92 -28.91,-1.4 -7.13,-2.75 -17.64,-13.42 -1.62,-0.63 -1.73,-0.22 -1.73,0.06 -14.66,4.66 -3.38,1.64 -3.56,0.99 -3.55,0.58 -4,0.01 -8.74,-1.47 -16.52,-5.47 -14.51,-1.96 -11.97,0.62 -4.75,-1.14 -16.47,-7.46 -12.97,-3.17 -2.7,-1.56 -1.41,-1.55 -0.12,-1.98 -4.35,-7.4 -7.79,-4.33 -5.67,-4.63 -0.44,-1.55 -0.12,-1.55 -0.44,-1.55 -0.99,-3.33 -2.06,-2.69 -22.91,-23.02 -15.16,-19.54 -3.82,-6.67 -7.34,-15.57 -1.32,-4.13 -0.44,-2.23 0.2,-1.56 0.54,-1.49 0.96,-1.45 1.29,-1.41 3.12,-2.69 4.42,-3.07 2.48,-2.49 0.64,-1.47 0.42,-1.46 0.73,-4.46 0.85,-3.6 0.53,-1.55 0.75,-1.56 1,-1.41 1.4,-1.19 3.03,-1.39 6.48,-1.25 3.36,0.13 2.06,0.54 1.84,1.19 1.64,2.12 3.71,7.34 0.66,0.83 1.08,1.06 1.52,0.97 3.47,1.1 14.32,1.17 14.19,4.19 15.41,11.26 3.25,1.54 3.18,0.62 1.51,-0.5 1.51,-0.9 1.07,-1.32 0.65,-1.5 0.32,-1.69 -0.34,-1.87 -2.51,-7.43 -0.22,-1.35 0.21,-1.27 1.19,-0.87 5.39,-2.8 1.08,-1.39 0.43,-0.86 3.41,-14.24 0.75,-3.68 0.21,-2.12 4.15,-18.75 0.53,-4.95 2.77,-13.34 0.42,-1.49 0.22,-1.38 1.17,-6.04 0.42,-3.08 0.2,-3.94 -0.24,-6.98 -0.55,-3.42 -0.87,-2.29 -22.64,-25.09 -14.22,-19.2 -1.42,-2.6 -0.11,-1.41 -0.01,-1.52 0.32,-1.59 0.65,-1.49 5.92,-9.85 0.97,-3.03 0.3,-5.31 -0.77,-2.7 -1.31,-1.78 -17.84,-9.55 -9.26,-7.57 -1.63,-0.83 -1.85,-0.33 -1.74,0.21 -21.83,5.93 -71.72,0.1 -3,-9.29 2.47,-5.3 2.79,-4.33 4.83,-9.92 1.6,-4.66 0.52,-3.42 -1.66,-4.56 -0.69,-6.43 1.15,-7.08 4.04,-15.14 1.26,-6.3 0.3,-4.46 -4.73,-8.07 -7.56,-8.86 -0.99,-1.77 -2.2,-4.64 -2.55,-6.71 -3.42,-6.76 -1.66,-4.47 -0.99,-1.95 -0.99,-1.49 -1.53,-0.96 -1.64,-0.62 -5.56,-1.23 -4.6,-5.26 -9,-20.05 -5.97,-12.31 -0.45,-2.35 -0.48,-5.63 -0.34,-17.58 -1.34,-4.51 -1.76,-2.45 -1.75,0.04 -7.94,2.07 -4.14,-0.32 -11.98,-8.01 -18.78,-18.07 -2.65,-3.88 0.5,-5.52 0.06,-5.21 -0.89,-2.72 -1.22,-1.83 -14.64,-11.48 -3.94,-2.15 -3.18,-1.18 -9.16,-0.07 -10.17,-1.66 -11.58,2.23 -4.01,3.03 -5.75,14.48 -1.94,2.43 -2.61,1.4 -8.51,-0.38 -2.85,-1.12 -2.08,-1.36 -8.62,-10.77 -30.65,-27.19 -1.44,-1.71 -3.11,-5.05 -1.65,-1.88 -13.79,-9.65 -1.22,-1.37 -0.78,-1.57 -5.18,-14.25 -34.13,-29.16 -3.65,-3.98 -0.57,-1.49 -0.35,-1.8 -0.01,-1.64 0.42,-1.38 0.86,-1.34 1.51,-1.16 1.41,-0.77 1.3,-1.05 0.75,-1.38 0.2,-1.56 -0.36,-3.16 0.09,-1.43 0.75,-1.51 1.4,-1.56 15.65,-12.14 3.02,-3.42 0.97,-1.56 0.86,-1.74 0.41,-1.9 0.09,-2.01 -4.26,-29.09 -1.97,-8.89 -1.67,-2.68 -2.31,-1.44 -7.28,-1.44 -3.1,-3.06 -2,-2.4 -6.86,-15.2 -19.46,12.47 -7.89,2.42 -4.27,-0.32 -17.73,-7.88 -3.73,-0.47 -2.06,2.09 -1.09,8.58 -1.46,6 -1.37,3.75 -11.48,20.9 -29.34,39.3 -7.06,14.06 -0.37,4.89 0.65,7.89 1.9,10.52 0.24,9.43 -1.09,8.43 -3.68,18.3 -2.2,6.93 -2.12,4.31 -1.85,0.51 -1.96,-0.03 -1.98,-0.54 -9.13,-4.73 -1.86,-0.46 -2.84,-0.02 -5.62,3.64 -7.37,6.66 -21.04,24.14 -5.49,4.94 -18.48,6.66 -6.48,4.01 -2.57,3.03 -1.04,3.46 0.49,3.5 1.29,6.04 1.72,4.95 2.03,4.56 3.21,10.01 2.53,15.83 -40.6,12.02 -9.19,-2.55 -22.18,-20.73 -1.4,-5.2 -1.21,-7.28 2.15,-27.51 0.89,-5.45 1.07,-3.73 1.37,-2.95 2.14,-2.05 1.58,-3.53 1.44,-5.2 0.35,-12.13 -0.74,-5.13 -1.91,-3.16 -1.64,-0.26 -1.42,0.19 -15.87,6.48 -1.75,-0.37 -2.76,-1.74 -11.26,-13.37 -4.11,-3.69 -26.53,-15.6 12.66,-13.5 3.27,-6.87 0.46,-4.75 -0.17,-3.59 -0.39,-3.1 -1.26,-3.42 -0.79,-1.63 -1.45,-1.47 -1.43,-0.69 -1.76,-0.34 -2.07,0.27 -1.62,1 -1.08,1.17 -1.27,2.15 -0.75,1.1 -1.65,-0.6 -2.44,-2.14 -6.55,-11.41 -2.12,-2.57 -2.1,-1.29 -22.72,-8.12 -6.63,-3.58 -3.23,-3.16 -2.15,-3.92 -3.23,-8.57 -2.14,-3.29 -2.66,-1.79 -12.68,2.77 -3.06,0 -3.74,-0.67 -6.06,-2.36 -22.07,-12.67 -59.47,-15.28 -26.48,2.83 -17.18,-4.69 -4.94,-5.24 0.51,-1.82 1.39,-1.67 1.05,-2.18 0.05,-2.53 -1.17,-8.54 -0.19,-3.35 0.46,-4.12 0.02,-4.4 -0.45,-5.31 -4.76,-7.14 -1.75,-4.88 -0.98,-4.49 0.18,-6.78 -0.61,-3.15 -1.14,-2.05 -19.42,-13.48 -2.88,-1.26 -33.16,-9.36 -8.04,-0.91 -39.77,3.81 -1.4,1.24 -0.93,2.07 -0.69,3.61 -0.82,2.43 -1.15,2.3 -0.74,1.05 -1.39,1.39 -4.98,2.96 -4.35,1.52 -2.34,-0.18 -1.57,-1.31 -1.17,-3.05 -0.94,-2.68 -6.25,-13.32 -5.09,-1.69 -17.45,-17.65 -7.74,-2.19 -15.36,6.19 -2.64,-0.22 -2.01,-1.56 -1.77,-4.67 -2.2,-4.43 -3.54,-5.6 -4.68,-2.44 -3.64,-0.62 -2.18,0.46 -11.29,6.44 -8.97,1.21 -6.99,-2.69 -38.17,-25.4 -19.78,-7.2 -12.57,-1.43 -6.31,-1.76 -3.89,-1.61 -1.26,-1.78 -0.93,-1.7 -1.29,-3.04 -4.63,-8.47 -11.17,-12.68 -16.95,-4.52 -1.36,-1.2 -1.82,-2.22 0.51,-5.3 0.96,-4.8 0.89,-7.56 0.36,-10.45 -2.28,-22.1 -5.34,-9.79 -5.24,-6.01 -7.09,-1.46 -2.78,0.08 -4.82,0.94 -4.68,1.81 -4.21,2.99 -2.68,2.55 -1.49,1.72 -4.1,6.73 -3.93,8.57 -0.99,3.65 -4.28,0.53 -27.3,-9.77 -11.86,-6.55 -0.27,-1.63 0.27,-2.08 0.78,-3.27 0.08,-4.75 -0.86,-6.55 -4.26,-9.65 -1.82,-5.47 -0.45,-4.07 1.04,-2.04 1.93,-1.67 9.23,-4.59 2.26,-1.79 2.03,-2.19 0.91,-2.56 0.36,-2.86 -0.49,-12.78 0.57,-10.48 1.18,-8.28 1.51,-4.79 1.76,-3.85 6.2,-10.36 1.76,-3.85 0.89,-3.59 1.01,-7.02 -1.01,-4.28 -1.75,-3.06 -1.91,-1.15 -17.63,-2.78 -37.47,-11.17 -11.72,2.72 -8.62,11.66 -4.94,4.61 -7.45,5.15 -5.63,-0.12 -4.63,-3.13 -5.22,-4.84 -10.34,-4.5 -7.39,0.24 -3.95,0.81 -0.81,2.24 0.98,2.96 2.45,4.24 1.54,3.31 -1.41,4.1 -4.4,3.85 -12.14,6.75 -5.89,2.09 -3.51,0.66 -5.08,-2.48 -4.13,-1.42 -29.03,-3.68 -3.02,-0.99 -1.75,-1.7 -32.52,-21.88 -11.89,-4.43 -4.56,-0.85 -2.59,1.82 -2.449,12.33 -1.543,3.27 -2.316,3.19 -11.582,6.61 -4.379,4.12 -1.571,2.59 -0.671,2.84 -1.129,2.45 -1.91,3.35 -5.141,4.55 -3.149,1.37 -2.98,-0.06 -1.809,-1.26 -2.062,-2.17 -1.09,-2.76 -0.187,-2.38 0.527,-3.52 21.691,-37.57 1.02,-2.45 0.488,-1.86 0.051,-1.78 -0.598,-1.42 -3.961,-2.74 -15.851,-6.87 -18.071,0.52 -0.429,7.55 -23.141,43.82 -0.476,13.22 5.449,14.67 5.929,26.05 1.219,18.54 -2.621,3.89 -4.957,1.1 -5.762,10.27 -3.449,11.4 -1.801,10.07 2.129,8.76 0.024,0.08 8.027,7.42 0.172,0.17 -12.91,1.15 -30.391,8.18 -10.691,5.57 -1.559,1.62 -1.629,0.6 -1.703,-0.48 -1.598,-1.5 -24.281,-6.51 -7.019,0.61 -5.442,4.75 -5.636,12.98 -5.481,5.45 6.008,9.38 -8.289,0.91 -5.59,2.63 -0.801,5.07 0,0 5.821,8.26 0.121,0.17 -11.301,15.3 0,0 0.23,0.34 13.539,19.48 0.082,0.11 23.02,17.68 16.039,8.77 0.109,0.06 0.153,4.04 0,0.01 8.379,9.37 0.07,0.07 5.301,9.75 -1.321,6.72 -48.832,3.02 -14.25,8.22 -7.609,16.27 -0.031,0.08 9.5,5.41 0.152,0.09 -40.5,67.45 -12.961,14.14 -11.73,1.56 -28.18,-6.58 -9.398,1.47 -2.403,9.42 3.102,11.55 0.027,10.7 -11.449,6.71 -0.899,2.08 -0.031,2.02 0.551,2 0.012,0.02 0.308,0.49 0.899,1.44 0.043,0.06 2.109,14.42 0.008,0.05 -4.32,6.91 -6.758,5.17 -5.012,9.52 -2.348,14.37 -0.011,0.06 10.519,-3.25 10.512,9.12 4.238,12.99 0,0.02 -1.109,10.34 -0.301,9.57 0,0.05 6.602,10.9 10.007,5.18 15.731,-2.05 8.23,9.06 4.711,11.26 0.571,8.81 0,0.06 -4.969,23.07 -0.012,0.02 1.57,7.31 3.981,5.88 1.469,4.38 0.019,0.05 -22.558,8.87 -16.18,11.1 -5.09,6.13 -1.5,8.87 -0.32,16.08 0,0.05 3.058,9.14 4.653,9.11 0.008,0.02 -1.211,5.92 -25.231,-2.08 -18.277,6.94 -9.629,1.7 -9.582,-2.28 -18.621,-8.28 -9.629,-1.55 0.469,28.01 -9.438,32.46 -2.941,26.2 -0.008,0.05 20.137,9.51 9.402,-5.9 7.84,-11.18 9.058,-8.95 12.95,0.84 8.98,9.15 14.711,27.74 9.859,10.44 66.77,48.2 40.691,20.03 10.879,13.41 0.031,0.04 -14.031,14.21 -0.039,0.03 16.481,12.42 5.589,3.02 0.059,0.04 -15.777,6.16 -35.762,-22.53 -16.07,9.76 -4.2,20.7 0,0.02 3.059,24.79 6.941,21.88 7.559,11.95 15.461,17.34 38.289,64.61 7.551,6.9 18.219,11.67 7.25,9.51 4.312,13.7 3.09,24.28 4.34,9.52 0.019,0.03 -9.98,13.04 0,0 1.68,20.48 6.191,23.35 3.379,21.88 0.012,0.03 -2.571,20.35 -3.551,36.62 -26.742,33.43 -43.59,65.25 -2.488,13.76 0,0.03 4.391,15.71 9.008,24.51 0.019,0.05 -45.949,22.51 -15.109,20.87 10.628,31.06 0.024,0.04 -6.672,7.36 -14.828,12.29 -7.774,4.15 -20.097,0.35 -6.731,3.15 0,0.01 1.071,11.86 3.398,3.1 12.609,11.49 2.114,22.42 0,0.05 -8.301,21.84 -15.152,12.69 -0.008,0.01 2.769,9.84 11.77,7.65 28.371,3.85 13.551,5.14 14.699,10.02 10.039,4.86 28.41,6.39 22.039,-6.86 16.102,-4.78 10.949,-3.18 0.051,-0.02 -8.68,14.96 -24.621,28.08 -8.23,6.8 -0.04,0.03 23.93,11.71 21.731,-11.38 21.429,-18.79 22.891,-10.43 21.668,3.9 5.633,-0.88 4.726,-4.92 7.172,-13.96 2.961,-4 26.188,-4.94 11,-6.99 1.441,-17.37 26.14,6.3 3.2,10.91 0.01,0.03 -4.67,25.19 -0.01,0.06 43.65,-14.64 13.99,-0.49 11.53,4.86 34.76,24.87 69.3,21.11 60.96,-0.03 18.94,9.57 16.62,18.61 16.53,27.99 5.9,6.04 5.25,0.76 3.58,3.28 1.04,13.5 0.01,0.07 -1.48,7.5 -3.38,5.56 -17.21,19.28 -44.04,26.5 -14.92,4.96 -10.67,8.11 -0.84,16.89 0,0.05 5.12,11.39 6.18,2.8 7.31,0.23 8.39,3.9 5.67,6.81 6.04,13.96 3.81,6.24 12.05,11.73 11.16,5.78 3.61,0.31 40.84,3.44 8.91,7.58 16.05,30.44 13.7,13.58 29.66,12.08 13.99,11.68 16.8,25.64 7.55,8.42 30.93,17.66 2.06,5.64 -1.37,2.74 18.01,-1.26 28.5,11.23 9.82,6.76 5.11,5.16 3.99,3.11 94.04,1.57 28.39,5.59 33.24,21.83 10.25,9.2 3.37,2.22 3.09,1.37 17.63,3.37 7.37,3.43 5.16,3.69 35.46,35.31 32.04,25.64 3.74,1.94 9.74,1.64 4.36,-0.21 12.73,-2.44 1.38,0.15 0.74,0.27 2.92,3.62 3.38,5.51 1.73,2.1 1.19,1.01 0.63,-0.1 3.64,8.27 4.53,15.86 2.55,6.13 3.17,4 4.78,1.51 0.35,2.01 -1.21,2.72 -4.52,6.24 -5.15,2.75 -1.99,5.9 -0.77,3.99 8.95,35.35 3.36,5.06 1.62,1.69 2.97,1.21 2.42,-0.11 48.3,-15.97 3.22,-2.53 2.17,-2.11 2.23,-5.21 1.46,-6.18 5.11,-38.38 1.76,-3.77 2.8,-2.98 16.45,-6.33 45.54,-29.84 2.28,-2.37 7.34,-9.66 4.32,-2.14 4.53,-0.68 44.96,16.97 3.27,-0.22 4.1,-1.38 3.48,-6.67 6.02,-7.22 5.86,-5.69 8.99,-13.79 12.23,-23.46 6.51,-10.26 1.54,-3.25 0.49,-2.82 -2.47,-2.26 -2.44,-1 -20.87,-2.75 -2.55,-1.11 -1.73,-2.56 -0.37,-3.45 1.38,-6.74 0.91,-3.01 1.33,-2.86 4.04,-6.01 3.7,-7.04 -0.14,-3.02 -1.43,-3.22 -4.21,-6.06 -12.61,-12.69 -2.6,-3.96 -0.13,-1.7 0.18,-2.35 1.41,-4.68 3.7,-7.47 0.91,-3.12 -0.16,-3.39 -1.55,-4.35 -4.12,-7.01 -9.15,-9.43 -2.39,-3.96 -0.16,-3.27 1.94,-5.09 2.82,-2.35 4.75,-1.85 6.35,-0.44 6.16,-1.35 0.84,-0.48 1.63,-4.91 1.16,-7.08 2.61,-2.97 3.37,-1.89 8.69,0.13 12.33,2.27 8.4,-0.67 12.24,-4.65 3.57,-2 2.52,-2.08 -0.17,-4.54 -2.42,-6.63 -7.31,-14.56 -4.54,-13.79 -0.28,-5.49 -1.79,-6.27 -2.94,-5.07 -7.38,-1.4 -8.81,-0.33 -13.31,-2.88 -17.25,-7.71 -12.14,-9.36 -7.98,-8.56 -1.16,-5.99 5.65,-13 2.65,-7.02 5.37,-17.73 1.57,-1.55 3.38,-1.77 19.18,-6.75 11.81,-6.92 3.15,-3.04 2.76,-0.12 3.86,2.1 30.19,28.24 10.59,4.94 24.96,4.11 24.47,-9.39 48.59,17.82 12.4,7.05 8.62,7.84 4.33,7.37 11.83,14.13 22.2,19.19 86.56,-25.65 4.89,1.25 3.52,1.98 1.39,1.51 1.62,3.52 5.66,16.57 2.37,4.58 3,3.45 27.53,17.3 6.72,5.47 3.53,3.99 3.64,5.27 3.91,6.81 3.66,8.02 0.87,3.79 -0.51,2.62 -7.3,6.57 -14.45,9.82 -1.16,1.1 -1.93,10.65 -1.19,39.79 1.79,40.56 -0.39,19.61 -2.71,19.04 -4.19,18.72 -5.78,17.46 -3.94,8.59 -4.95,5.96 -19.52,14.42 -44.06,21.25 -4.99,7.29 -3.42,6.01 -13.1,45.59 15.15,-5.89 15.49,-0.08 2.74,-0.77 5.24,-2.84 5.78,-1.63 38.65,4.79 11.87,5.54 4.78,3.93 2.76,3.72 1.3,3.9 5.47,27.37 0.65,2.18 0.85,1.84 1.28,1.71 4.34,3.59 6.13,3.81 7.34,5.72 3.29,3.63 13.79,1.69 33.6,-1.31 10.95,2.15 33.68,16.29 3.06,0.27 4.2,-0.17 11.38,-4.74 5.33,-5.48 5.88,-4.4 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7253" /><path
+               id="path3210" /><path
                d="m 3159.67,3085.39 0,0 38.89,-18.12 8.75,-0.74 8.72,2.65 3.78,2.27 19.93,-12.62 7.5,1.61 12.24,4.84 6.33,4.02 3.32,2.84 2.45,1.17 2.13,-0.5 2.36,-2.1 1.49,-4.76 0.02,-2.5 -0.98,-2.59 -2.43,-3.13 -1.1,-2.1 -0.54,-1.9 0.01,-1.56 0.84,-5.96 1.39,-5.62 0.24,-2.82 0.02,-1.55 -0.44,-1.44 -1.09,-2.59 -1.1,-2.02 -0.88,-2.31 -0.53,-3.05 0.15,-3.96 1.51,-6.37 -0.1,-2.07 -1.1,-1.5 -3.56,-2.36 -1.21,-1.7 -0.32,-1.81 0.94,-5.68 0.02,-2.42 -0.65,-2.16 -4.72,-10.9 -0.65,-2.47 -0.31,-2.25 0.46,-1.54 0.56,-1.03 3.05,-2.97 5.62,-3.48 6.4,-2.79 10.18,-1.12 4.62,0.91 3.1,2.87 0.65,2.24 0.53,3.28 0.5,7.1 0.86,3.83 0.76,1.88 1.78,1.79 7.68,3.55 2.1,2.29 2.95,6.98 0.78,0.81 0.88,0.59 1.79,0.01 1.69,-1.62 0.83,-4.73 0.17,-5.69 0.6,-4.25 0.58,-2.58 7.08,-15.7 1.51,-1.71 2.36,-1.33 3.23,1.82 1.88,2 4.07,6.85 14.28,14.07 0.66,1.01 1.99,2.18 3.11,2.19 11.49,4.94 5.77,3.97 1.46,-0.73 1.92,-1.88 4.67,-7.42 20.61,-24.42 0.92,-2.26 0.37,-2.73 0.27,-4.65 -0.42,-22.64 0.89,-9.7 0.58,-2.01 0.73,-2 3.53,-4.62 25.04,-26.72 3.76,-5.18 1.27,-2.97 0.59,-2.53 0.02,-2.01 -0.43,-1.38 -0.53,-2.33 -0.65,-1.99 -1.21,-2.6 -5.41,-6.22 -6.4,-9.32 -1.3,-3.17 -0.41,-3.97 0.16,-3.51 1.18,-5.87 -0.08,-2.27 -0.63,-3.63 -1.21,-2.54 -1.43,-2.03 -10.08,-10.86 -2.1,-3.3 0.15,-3.41 1.83,-2.83 5.31,-3.21 4.49,-0.64 6.24,3.4 2.54,3.82 1.52,4.22 1.26,7.31 1.32,2.66 2.33,1.92 3.01,1.24 4.36,1.14 1.22,1.05 1.32,1.91 2.01,3.76 3.86,5.62 2.11,2.04 2.77,1.98 2.69,0.38 2.7,-0.83 3.18,-3.75 1.04,-2.46 0.25,-1.75 -0.42,-2.07 -1.75,-3.79 -1.32,-1.85 -0.99,-1.74 -0.21,-1.15 0.46,-0.97 9.73,-7.7 1.83,-2.44 0.81,-2.06 1.53,-15.07 1.91,-9.11 0.06,-5.05 -0.38,-5.44 -0.94,-5.47 -0.28,-4.48 0.28,-4.43 3.75,-21.96 -0.09,-1.89 -0.43,-1.79 0.25,-1.55 1.81,-1.38 6.46,-1.22 52.12,1.83 5.91,3.3 6.66,5.52 20.37,23.76 1.19,2.98 -0.53,5.88 -0.71,2.75 -1.49,2.33 -1.03,0.94 -1.6,1.96 -0.72,1.08 -0.8,0.96 -0.69,1.11 2.66,5.18 17.19,14.04 5.64,-2.68 2.38,-1.43 4.09,-3.18 0.69,-1.75 0.04,-2.24 -2.38,-6.04 -0.88,-1.62 -0.42,-1.5 -0.98,-2.48 0.37,-2.13 1.61,-2.44 4.88,-3.64 2.59,-1.17 2.26,-0.51 2.35,0.41 1.94,0.03 1.46,-0.15 2.49,-1.06 3.07,-2.51 1.05,-2.97 0.05,-3.56 -2.15,-6.24 -3.04,-6.94 -0.64,-1.91 1.09,-5.44 7.54,-16.32 -5.23,-18.35 -2.39,-5.32 -4.23,-5.12 -1.54,-2.38 -0.3,-2.65 1.6,-2.02 14.17,-4.87 3.06,-1.68 1.59,-1.44 1.39,-2.31 21.71,-51.32 0.37,-2.52 -1.2,-1.98 -5.65,0.89 -3.5,1.36 -4.54,2.43 -4.95,-0.42 -3.36,-0.97 -12.71,-15.77 -0.04,-19.91 -1.41,-3.98 0,-7.16 2.02,-7.49 7.25,-9.66 5,-3.32 3.86,-1.61 2.37,-0.3 1.92,-0.49 1.03,-0.68 1.25,-1.1 1.06,-2.71 0.17,-3.71 -5.17,-15.9 0.62,-3.96 2,-5.49 5.47,-10.89 1.78,-5.95 -0.34,-7.13 -1.2,-2.43 -2.35,-1.24 -3.05,0.3 -7.26,2.7 -2.17,1.41 -3.31,2.76 -1.47,0.38 -1.23,-0.76 -0.98,-2.37 -0.53,-2.6 0.52,-4.18 1.97,-3.94 10.21,-10.7 0.34,-0.52 0.75,-4.29 0.26,-9.88 -0.17,-3.77 0.19,-5.03 1.42,-4.31 2.32,-4.07 4.81,-4.76 2.42,-3.06 1.06,-2.75 -1.41,-3.52 -1.45,-1.43 -1.68,-0.69 -3.16,-0.33 -1.46,-0.54 -1.23,-1.14 0.6,-2.12 1.96,-2.81 6.18,-5.34 13.28,-8.64 2.86,-2.4 3.1,-3.23 15.14,-21.08 10.1,-9.49 1.71,-0.63 1.69,0.37 7.97,5.65 1.91,0.72 1.7,0.23 1.69,-0.09 1.6,-0.58 1.37,-1.01 11.6,-10.81 1.38,-1.65 1.21,-4.34 0.77,-6.02 -1.03,-12.72 -1.38,-5.31 -1.41,-3.61 -1.11,-1.6 -0.87,-1.57 -0.66,-1.56 -1.62,-4.68 -0.76,-1.57 -1.22,-1.54 -1.68,-1.09 -1.58,-0.66 -1.57,-0.37 -2.95,-0.05 -3.17,0.55 -1.59,-0.11 -1.46,-0.83 -0.99,-1.45 -0.66,-1.47 1.17,-2.23 2.76,-2.39 7.99,-4.41 7.06,-2.27 3.18,-0.44 1.26,-1.12 0.83,-2 -0.84,-4.04 -1.4,-4.45 -0.2,-1.61 0.25,-1.52 2.9,-4.26 11.26,-9.32 0.11,-6.55 -0.73,-3.51 -0.66,-1.51 -1.19,-3.18 -0.2,-1.73 0.14,-1.6 1.96,-1.98 3.78,-2.06 13.37,-4.6 3.63,-0.43 5.32,0.7 2.38,-0.14 3.08,-0.98 12.71,-7.53 1.6,-0.66 2.19,-0.25 8.61,0.27 2.19,-1.98 2.11,-3.52 2.75,-8.37 2.93,-11.07 4.52,-5.92 31.01,-24.51 5.88,-11.27 9.63,-10.74 1.26,-1.06 1.05,-1.31 0.82,-1.25 1.3,-2.53 3.24,-9.22 2.09,-2.77 4.19,-2.97 1.97,-2.14 1.52,-2.45 1.08,-2.88 1.95,-7.06 3.72,-10.21 0.52,-3.5 -0.5,-3.34 -3.47,-2.94 -2.25,-1.31 -8.16,-3.11 -1.91,-1.1 -0.54,-1.33 0.72,-1.83 6.04,-5 1.28,-1.41 0.66,-4.96 0.15,-7.55 -1.93,-30.21 -0.31,-1.7 -0.46,-1.59 -2.35,-7.86 -0.21,-1.03 0.26,-1.87 0.73,-2.54 5.92,-9.8 0.71,-1.74 0.72,-1.82 0.18,-3.28 -0.48,-4.72 -1.86,-9.63 -1.06,-4.39 -1.2,-2.72 -1.04,-1.37 -4.81,-4.14 -2.23,-2.57 -1.16,-4.85 -0.1,-6.73 1.08,-15.09 -0.23,-6.04 -0.73,-3.34 -1.8,-1.47 -1.11,-1.52 -0.66,-1.39 -0.86,-2.4 -0.41,-2.62 -0.17,-2.91 0.21,-5.48 0.91,-5.96 0.25,-1 0.72,-1.8 5.37,-6.76 14.54,-7.31 4.89,1.04 1.26,-0.44 1.52,-1.83 2.73,-5.64 1.98,-7.8 13.7,-24.33 -31.29,-30.26 -9.71,-5.98 -1.38,0.6 -1.05,1.02 -1.18,1.99 -0.84,2.11 -0.5,2.72 0.06,2.67 0.31,1.81 0.86,2.52 2.96,6.61 -0.17,3.04 -0.62,2.86 0.62,2.94 2.49,1.14 1.46,1.47 0.65,1.85 -2.01,3.66 -1.74,1.49 -3.1,1.18 -3.08,-0.09 -4.96,-3.54 -32.64,-39.21 -3.04,-2.44 -2.04,-0.72 -1.27,0.58 -1.63,1.81 -4.83,8.04 -5.6,13.49 -2.45,2.77 -3.79,1.31 -15.19,-1.41 -3.9,1.14 -2.76,1.44 -3.48,2.93 -6.62,7.07 -3.59,3.21 -3.07,-0.57 -2.91,-3.32 -5.24,-10.03 -6.48,-8.15 -1.24,-0.88 -0.99,-2.23 -0.47,-12.97 2.99,-7.88 2.81,-4.2 2.2,-2.18 1.52,-1.78 1.41,-2.56 1.25,-4.03 1.18,-2.22 1.63,-1.73 3.11,-1.84 4.14,-1.68 4.27,-2.49 3.94,-3.21 3.61,-4.13 4.18,-3.89 6.23,-3.37 1.86,-1.6 1.29,-1.76 0.5,-2.61 0.07,-4.13 -3.13,-3.99 -1.91,-1.7 -5.79,-2.14 -4.08,-2.49 -0.88,-1.59 -0.54,-2.05 0.54,-4.9 0.5,-2.64 0.73,-2.46 1.9,-3.99 3.77,-6.25 1.2,-3.31 1.22,-4.58 0.58,-7 -0.14,-5.2 -0.79,-7.25 -7.31,-20.73 -0.73,-4.09 0.05,-2.84 0.94,-1.4 1.29,-1.58 2.19,-1.34 1.62,-0.66 -1.47,-1.12 -1.82,-0.67 -28.17,-2 -6.27,-1.68 -1.92,-1.3 -2.37,-2.02 -4.04,-5.03 -1.78,-3.25 -0.77,-1.88 -1.74,-12.47 -71.1,-44.84 -3.91,0.63 -1.39,0.64 -1.62,1.16 -1.28,1.3 -0.82,1.48 -0.61,2.06 -0.56,7.29 -0.61,2.37 -0.83,2.06 -0.82,1.19 -2.68,2.98 -1.16,0.59 -1.38,0.46 -3.67,0.24 -2.85,-1.02 -9.11,-6.48 -5.31,-4.99 -2.39,-1.24 -13.24,-3.64 -9.04,-0.87 -2.85,-1.16 -3.67,-3.15 -6.2,-6.98 -3.26,-4.76 -3.78,-8.93 -0.29,-4.08 0.63,-4.3 2.16,-6.52 -5.34,-3.61 -40.7,-58.41 6.82,-12.32 5.28,0.07 1.6,0.36 0.81,-0.1 0.81,-0.31 0.69,-0.36 0.82,-0.91 0.62,-0.97 14.07,-30.23 10.24,-17.76 10.67,-15.43 3.19,-6.33 12.32,-39.73 31.16,-134.01 20.66,-44.97 2.52,-14.27 0.75,-11.99 -1.41,-29.73 -5.18,-24.52 -21.12,-61.8 -5.51,-3.47 -1.71,-1.46 -2.28,-2.44 -1.69,-3.3 -0.05,-4.65 1.36,-6.3 6.56,-13.3 1.53,-2.33 9.05,-9.12 0.64,-4.27 -0.43,-26.46 -0.92,-8.281 -1.08,-5.539 -3.06,-4.781 -0.76,-3.539 -1.89,-13.79 -0.78,-2.851 -1.13,-2 -2.17,-2.359 -1.03,-0.668 -0.8,-0.852 -2.62,-3.371 -0.33,-1.438 0.37,-1.461 1.19,-2.39 3.39,-1.301 1.74,-0.008 1.5,0.278 1.61,1.062 0.58,0.008 0.81,-0.109 0.94,-0.438 1.3,-2.051 2.87,-6.281 2.59,-10.328 14.42,-31.363 -4.26,-2.297 -1.05,-0.301 -1.72,-0.832 -1.49,-1.809 -1.12,-2.57 -1.49,-4.16 -1.59,-2.289 -2.07,-1.582 -12.76,-0.52 -2.32,-0.551 -1.38,-1.058 -1.83,-2.031 -3.39,-6.477 -0.76,-3.523 0.74,-3.289 4.48,-4.848 5.41,-4.352 2.73,-4.332 1.82,-5.136 1.41,-1.473 2.33,-0.719 5.93,0.121 1.52,-0.812 1.47,-2.278 0.96,-2.691 0.77,-4.578 1.28,-32.32 2.97,-20.641 2.96,-11.27 2.9,-7.691 0.86,-3.168 0.17,-3.422 -0.85,-5.328 -1.12,-3.633 -1.12,-2.89 -1.71,-2.258 -2.42,-1.59 -7.15,0.82 -14.04,5.367 -1.05,0.102 -1.39,-0.648 -1.25,-2.524 -1.21,-4.988 -0.7,-16.149 -7.21,-9.351 -5.01,8.691 -3.13,7.399 -3.78,12.468 -1.94,2.961 -3.86,1.61 -5.13,0.742 -8.95,-0.582 -18.55,-5.41 -16.1,-9.258 -13.32,-5.602 -12.3,-3.359 -18.07,-0.449 -18.21,4.168 -24.73,11.07 -5.72,1.481 -8.81,-3.43 -13.92,-7.621 -55.19,-50.278 -33.66,-17.582 -21.62,7.051 -4.78,0.18 -11.76,-5.84 -2.75,-4.91 -1.03,-2.82 -0.33,-2.008 -3.13,-1.871 -5.81,-2.289 -20.13,-4.043 -4.18,-1.84 -1.62,-1.278 -7.99,-11.89 -35.01,-49.25 -0.01,0 -3.74,1 -1.76,1.078 -206.93,127.332 -29.21,6.68 -28.05,-0.129 -10.24,15.847 -41.47,-0.078 -83.72,9.43 -14.12,-5.723 -12.07,-13.008 -27.28,-8.66 -29.42,-2.781 -18.42,4.852 -21.74,16.347 -11.15,11.192 -0.1,7.672 0,0.058 13.8,3.168 0.05,0.012 -19.39,18.359 -24.38,14.36 -20.15,0.953 -6.85,-21.774 0.01,-0.019 6.09,-6.84 -0.05,0 -39.57,-0.438 -1.45,7.207 -1.83,8.512 -5.9,7.399 -3.18,9.023 -0.01,0.008 2.47,7.289 10.09,15.012 1.98,4.148 0.02,0.031 -4.92,11.219 -7.32,1.461 -8.25,-1.691 -7.74,1.839 -5.62,8.84 -5.79,12.864 -7.19,10.976 -9.62,3.281 -6.81,-7.109 -4.02,-24.168 -9.33,-6.043 -7.29,5.5 -2.6,13.512 -0.63,14.359 -1.15,8.07 -13.71,6.309 -18.76,1.191 -11.92,-6.761 0.02,-0.047 6.88,-17.512 -0.02,-0.012 -11.35,-5.718 -40.36,-7.731 -8.4,0.281 -5.91,-3.429 -10.22,-14.949 -3.62,-8.012 -5.78,-22.219 -8.03,-7.379 -19.12,-10.312 -7.39,-8.321 -0.88,-8.211 0.01,-0.007 3.07,-8.172 1.79,-9.489 -0.01,-0.011 -4.86,-11.989 0.02,0 11.67,-4.449 3.76,-0.582 19.17,-14.808 15.39,-8.93 13.39,0.449 11.18,5.641 10.41,7.398 11.29,5.621 36.43,5.989 10.54,-1.84 8.99,-3.778 3.05,-1.281 6.75,-0.672 -0.01,-0.058 -4.39,-26.282 -4.8,2.524 -0.51,6.867 -0.61,1.781 -3.26,-0.09 -3.97,-1.48 -2.77,-2.34 -1.7,-6.101 0.01,-0.047 1.17,-5.043 1.8,-4.379 0.25,-3.82 -0.01,-0.028 -0.96,-7.512 0,-0.039 0.38,-7.89 0,-0.02 -0.94,-8.312 -4.94,-8.547 -10.12,-3.313 -8.26,10.332 -8.8,15.039 -11.59,10.899 -22.49,-2.16 -23.13,-15.059 -8.84,-18.949 -0.97,-5.25 -23.26,-3.699 -48.07,0.629 -28.42,7.828 -7.41,4.89 -5.15,10.731 -3.98,10.719 -3.92,4.863 -8.69,1.058 -19.48,6.149 -13.59,0.019 -40.57,-6.418 -3.95,-2.421 -3.78,-5.387 -5.11,-5.383 -13.87,-3.949 -16.38,-8.66 -6.23,-4.668 -6.38,-7.25 -3.17,-5.621 -3.44,-4.789 -7.36,-4.852 -33.91,-7.199 -97.85,1.289 -1.92,4.762 -1.36,10.476 -2.23,10.422 -4.55,4.84 -48.49,3.64 -10.41,5.5 -14,-21.16 -12.31,-14.14 -14.24,-7.789 -62.89,-12.012 -16.49,2.531 -38.4,21.18 -0.11,0.058 19.7,-0.519 8.14,7.613 10.33,27.617 0.03,0.063 -17.09,-1.543 -38.5,-10.789 -0.01,-0.008 3.23,11.227 1.89,3.953 0.01,0.008 -1.48,10.66 -3.77,5.871 -4.82,4.281 -4.4,5.707 -16.26,34.141 -9.86,14.379 -11.1,5.98 -2.85,5.199 -2.18,11.992 -1.63,23.942 0,0.047 2.76,6.613 12.74,12.938 4.59,7.332 0.69,18.058 0,0.051 -8.63,39.039 0,0.02 2.31,15.41 11.43,35.781 4.24,5.32 10.2,5.321 1.85,12.367 0,0.043 -3.44,20.738 0,0 0.25,4.891 0,0.05 -0.57,2.829 -0.37,2.789 0,0.031 0.97,4.582 2.3,4.887 5.03,4.621 3.15,5.492 4.92,11 1.4,4.93 0.01,0.007 -0.6,18.061 0,0.05 4.4,14.74 20.26,20.72 7.3,13.31 0,0 -1,34.72 -31.18,57.22 -1.42,45.94 0,0.05 5.02,21.62 5.39,16.85 5.56,9.78 5.2,6.66 3.93,8.69 1.79,15.94 5.12,13.52 48.11,65.05 8.15,16.01 5,18.7 1.91,22.52 5.53,23.26 12.12,9.62 13.76,7.18 10.5,16.18 1.16,15.47 0.01,0.05 -3.55,14.88 -4.59,14.21 -2.19,13.49 0,0.02 1.12,14.52 5.91,29.26 3.99,12.6 5.22,10.46 5.01,7.16 3.91,10.71 1.83,21.11 3.94,10.05 9,8.91 18.74,14.38 0.12,7.53 0,0.05 -8.33,23.69 0,0 0.72,38.71 6.74,36.15 31.85,48.12 8.65,5.9 12.24,3.79 11.4,9.68 20.54,23.87 8.82,5.51 9.91,9.34 8.01,10.43 3.43,8.8 1.2,21.21 3.97,9.83 8.39,2.65 20.66,0.13 5.69,1.76 4.18,3.62 1.68,6.07 1.73,10.49 3.49,5.88 3.45,3.23 1.63,2.71 6.42,0.23 27.16,14.2 4.49,3.74 9.32,15.23 34.26,91.21 23.38,43.09 14.43,16.28 0.08,0.03 23.31,8.23 23.93,25.24 15.61,23.75 54.71,110.25 3.34,11.15 14.78,105.76 5.01,19 7.93,8.07 9.29,4.78 50.66,58.92 2.68,13.94 -17.08,6.21 1.49,9.38 26.49,58.74 0,11.14 -4.6,18.47 -0.54,9.06 1.25,2.2 6.98,17.71 2.26,2.11 -7.67,12.86 -11.62,4.27 -13.21,1.65 -12.32,4.97 0.05,7.58 15.34,7.51 0.05,7.61 -9.58,20.69 -15.88,47.92 -13.84,23.44 6.34,26.89 23.79,9.68 6.06,0.56 2.91,-0.43 8.94,-3.1 17.09,-13.88 48.83,-51.52 15.96,5.1 2.26,2.03 2.81,1.77 1.02,0.97 9.02,3.11 2.59,1.83 1.81,2.17 1.13,2.52 0.58,2.27 0.01,2.9 -0.43,3.65 -1.64,8.48 -6.59,25.49 -0.21,2.18 -4.85,22.67 -0.1,3.1 0.8,1.55 1.79,1.08 50.76,12.62 3.02,-0.07 1.9,-1.38 0.53,-7.42 1.33,-2.82 7.68,-10.89 0.99,-5.38 -0.35,-4.13 -0.91,-2.09 -1.58,-2.73 -1.47,-3.12 -0.23,-1.18 0.11,-1.52 3.2,-11.65 8.65,-22.18 1.67,-3.23 2.12,-3.28 1.68,-2.07 4.95,-4.79 20.03,-13.23 13.78,-6.88 12.04,-2.05 15.15,1.74 3.7,-0.12 2.35,-1.67 3.47,-5.24 2.89,-9.49 1.34,-2.24 1.68,-2.07 3.29,-2.31 9.65,-0.48 35.29,4.07 2.01,-5.34 0.23,-0.92 0.11,-1.67 -0.23,-2.61 -0.68,-3.3 -1.35,-4.14 -2.03,-4.71 -2.25,-4.13 -5.67,-7.23 -2.13,-1.09 -2.47,0.01 -4.04,2.59 -2.92,3.11 -4.14,5.63 -2.13,0.07 -2.48,-1.49 -11.26,-13.48 -1.8,-2.98 -1.24,-3.39 -0.46,-3.68 -0.01,-4.65 0.33,-4.63 2.54,-17.32 -0.01,-3.16 -0.68,-2.82 -1.24,-2.43 -1.46,-1.47 -7.47,-3.77 -1.8,-1.43 -1.13,-1.32 -0.68,-1.38 -1.02,-5.68 -0.7,-8.56 0.33,-3.16 1.23,-2.62 1.35,-1.38 1.68,-0.9 10.16,-3.29 5.73,-0.05 5.51,-3.28 4.39,1.28 6.42,4.76 12.84,14.05 9.05,11.99 1.24,2.65 0.79,3.04 2.72,13.18 1.02,3.02 1.57,1.89 1.91,0.63 2.25,-2.19 1.11,-5.74 1.35,-1.9 2.59,-0.75 4.38,1.2 14.66,9.52 2.7,5.23 1.12,3.42 -1.9,7.67 -1.23,3.5 -1.57,3.68 -3.41,5.63 -4.37,5.64 -0.79,1.75 0.01,1.52 2.24,2.99 16.56,17.97 0,0.4 0.11,1.27 0.23,0.94 3.03,1.06 38.76,0.66 5.84,-0.89 1.91,-0.69 9.43,-1.72 3.47,1.61 3.6,1.21 16.85,16.27 5.95,0.58 7.75,-1.08 8.63,1.01 2.14,-0.48 1.23,-0.46 1.35,-1.38 5.43,-7.29 1.92,-1.83 2.02,-1.09 2.02,-0.4 2.47,0.46 1.57,0.55 0.44,3.31 -1.58,5.51 -6.64,12.57 -7.34,10.79 -1.47,2.76 -3.26,7.69 -3.26,4.76 -12.01,13.26 -2.7,4.51 -0.67,3.65 0.89,2.41 3.7,1.73 9.76,-9.36 4.04,-0.56 1.9,0.43 6.42,10.95 5.61,-4.33 2.58,-0.37 41.04,9.08 10.76,-1.9 43.19,0.5 4.03,1.42 3.68,2.83 3.23,5.93 1.45,3.54 2.2,9.51 1.37,2.77 2.35,2.82 6.69,6.29 1.01,1.64 0.1,1.81 -0.57,2.47 -1.95,13.58 1.66,4.06 3.68,3.37 10.05,5.99 5.7,2.06 5.82,1.03 10.22,-0.47 7.38,1.47 20.55,9.29 1.91,-0.33 2.46,-1.14 8.82,-9.55 3.81,-0.84 3.13,0.42 13.25,12.48 -2.61,7.71 -2.15,4.47 -0.45,0.52 -0.34,0.68 0.3,5.41 8.03,44.54 -0.68,1.43 -1.47,1.89 -2.13,1.88 -14,6.13 -1.46,0.05 -2.01,-0.41 -1.67,-0.81 -1.33,-1.33 -0.89,-1.39 -0.77,-1.95 -1.97,-8.46 -1.58,-3.83 -1.67,-2.45 -2.89,-1.79 -2.24,-0.76 -2.57,-0.04 -2.68,0.76 -1.36,2.81 0.2,4.02 2.31,8.14 0.43,3.88 -0.92,4.19 -2.47,2.34 -4.03,2.05 -24.41,3.68 -5.82,1.93 -2.58,2.29 -1.35,1.95 -0.46,3.24 -0.02,4.63 3.55,6.13 0.88,3.65 0.77,1.9 -0.22,0.75 -0.68,2.24 -4.9,14.77 3.91,6.28 7.56,7.87 8.2,5.38 8.69,2.92 35.09,-2.3 26.02,9.68 25.68,4.04 13.28,-0.29 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3159.67,3085.39 0,0 38.89,-18.12 8.75,-0.74 8.72,2.65 3.78,2.27 19.93,-12.62 7.5,1.61 12.24,4.84 6.33,4.02 3.32,2.84 2.45,1.17 2.13,-0.5 2.36,-2.1 1.49,-4.76 0.02,-2.5 -0.98,-2.59 -2.43,-3.13 -1.1,-2.1 -0.54,-1.9 0.01,-1.56 0.84,-5.96 1.39,-5.62 0.24,-2.82 0.02,-1.55 -0.44,-1.44 -1.09,-2.59 -1.1,-2.02 -0.88,-2.31 -0.53,-3.05 0.15,-3.96 1.51,-6.37 -0.1,-2.07 -1.1,-1.5 -3.56,-2.36 -1.21,-1.7 -0.32,-1.81 0.94,-5.68 0.02,-2.42 -0.65,-2.16 -4.72,-10.9 -0.65,-2.47 -0.31,-2.25 0.46,-1.54 0.56,-1.03 3.05,-2.97 5.62,-3.48 6.4,-2.79 10.18,-1.12 4.62,0.91 3.1,2.87 0.65,2.24 0.53,3.28 0.5,7.1 0.86,3.83 0.76,1.88 1.78,1.79 7.68,3.55 2.1,2.29 2.95,6.98 0.78,0.81 0.88,0.59 1.79,0.01 1.69,-1.62 0.83,-4.73 0.17,-5.69 0.6,-4.25 0.58,-2.58 7.08,-15.7 1.51,-1.71 2.36,-1.33 3.23,1.82 1.88,2 4.07,6.85 14.28,14.07 0.66,1.01 1.99,2.18 3.11,2.19 11.49,4.94 5.77,3.97 1.46,-0.73 1.92,-1.88 4.67,-7.42 20.61,-24.42 0.92,-2.26 0.37,-2.73 0.27,-4.65 -0.42,-22.64 0.89,-9.7 0.58,-2.01 0.73,-2 3.53,-4.62 25.04,-26.72 3.76,-5.18 1.27,-2.97 0.59,-2.53 0.02,-2.01 -0.43,-1.38 -0.53,-2.33 -0.65,-1.99 -1.21,-2.6 -5.41,-6.22 -6.4,-9.32 -1.3,-3.17 -0.41,-3.97 0.16,-3.51 1.18,-5.87 -0.08,-2.27 -0.63,-3.63 -1.21,-2.54 -1.43,-2.03 -10.08,-10.86 -2.1,-3.3 0.15,-3.41 1.83,-2.83 5.31,-3.21 4.49,-0.64 6.24,3.4 2.54,3.82 1.52,4.22 1.26,7.31 1.32,2.66 2.33,1.92 3.01,1.24 4.36,1.14 1.22,1.05 1.32,1.91 2.01,3.76 3.86,5.62 2.11,2.04 2.77,1.98 2.69,0.38 2.7,-0.83 3.18,-3.75 1.04,-2.46 0.25,-1.75 -0.42,-2.07 -1.75,-3.79 -1.32,-1.85 -0.99,-1.74 -0.21,-1.15 0.46,-0.97 9.73,-7.7 1.83,-2.44 0.81,-2.06 1.53,-15.07 1.91,-9.11 0.06,-5.05 -0.38,-5.44 -0.94,-5.47 -0.28,-4.48 0.28,-4.43 3.75,-21.96 -0.09,-1.89 -0.43,-1.79 0.25,-1.55 1.81,-1.38 6.46,-1.22 52.12,1.83 5.91,3.3 6.66,5.52 20.37,23.76 1.19,2.98 -0.53,5.88 -0.71,2.75 -1.49,2.33 -1.03,0.94 -1.6,1.96 -0.72,1.08 -0.8,0.96 -0.69,1.11 2.66,5.18 17.19,14.04 5.64,-2.68 2.38,-1.43 4.09,-3.18 0.69,-1.75 0.04,-2.24 -2.38,-6.04 -0.88,-1.62 -0.42,-1.5 -0.98,-2.48 0.37,-2.13 1.61,-2.44 4.88,-3.64 2.59,-1.17 2.26,-0.51 2.35,0.41 1.94,0.03 1.46,-0.15 2.49,-1.06 3.07,-2.51 1.05,-2.97 0.05,-3.56 -2.15,-6.24 -3.04,-6.94 -0.64,-1.91 1.09,-5.44 7.54,-16.32 -5.23,-18.35 -2.39,-5.32 -4.23,-5.12 -1.54,-2.38 -0.3,-2.65 1.6,-2.02 14.17,-4.87 3.06,-1.68 1.59,-1.44 1.39,-2.31 21.71,-51.32 0.37,-2.52 -1.2,-1.98 -5.65,0.89 -3.5,1.36 -4.54,2.43 -4.95,-0.42 -3.36,-0.97 -12.71,-15.77 -0.04,-19.91 -1.41,-3.98 0,-7.16 2.02,-7.49 7.25,-9.66 5,-3.32 3.86,-1.61 2.37,-0.3 1.92,-0.49 1.03,-0.68 1.25,-1.1 1.06,-2.71 0.17,-3.71 -5.17,-15.9 0.62,-3.96 2,-5.49 5.47,-10.89 1.78,-5.95 -0.34,-7.13 -1.2,-2.43 -2.35,-1.24 -3.05,0.3 -7.26,2.7 -2.17,1.41 -3.31,2.76 -1.47,0.38 -1.23,-0.76 -0.98,-2.37 -0.53,-2.6 0.52,-4.18 1.97,-3.94 10.21,-10.7 0.34,-0.52 0.75,-4.29 0.26,-9.88 -0.17,-3.77 0.19,-5.03 1.42,-4.31 2.32,-4.07 4.81,-4.76 2.42,-3.06 1.06,-2.75 -1.41,-3.52 -1.45,-1.43 -1.68,-0.69 -3.16,-0.33 -1.46,-0.54 -1.23,-1.14 0.6,-2.12 1.96,-2.81 6.18,-5.34 13.28,-8.64 2.86,-2.4 3.1,-3.23 15.14,-21.08 10.1,-9.49 1.71,-0.63 1.69,0.37 7.97,5.65 1.91,0.72 1.7,0.23 1.69,-0.09 1.6,-0.58 1.37,-1.01 11.6,-10.81 1.38,-1.65 1.21,-4.34 0.77,-6.02 -1.03,-12.72 -1.38,-5.31 -1.41,-3.61 -1.11,-1.6 -0.87,-1.57 -0.66,-1.56 -1.62,-4.68 -0.76,-1.57 -1.22,-1.54 -1.68,-1.09 -1.58,-0.66 -1.57,-0.37 -2.95,-0.05 -3.17,0.55 -1.59,-0.11 -1.46,-0.83 -0.99,-1.45 -0.66,-1.47 1.17,-2.23 2.76,-2.39 7.99,-4.41 7.06,-2.27 3.18,-0.44 1.26,-1.12 0.83,-2 -0.84,-4.04 -1.4,-4.45 -0.2,-1.61 0.25,-1.52 2.9,-4.26 11.26,-9.32 0.11,-6.55 -0.73,-3.51 -0.66,-1.51 -1.19,-3.18 -0.2,-1.73 0.14,-1.6 1.96,-1.98 3.78,-2.06 13.37,-4.6 3.63,-0.43 5.32,0.7 2.38,-0.14 3.08,-0.98 12.71,-7.53 1.6,-0.66 2.19,-0.25 8.61,0.27 2.19,-1.98 2.11,-3.52 2.75,-8.37 2.93,-11.07 4.52,-5.92 31.01,-24.51 5.88,-11.27 9.63,-10.74 1.26,-1.06 1.05,-1.31 0.82,-1.25 1.3,-2.53 3.24,-9.22 2.09,-2.77 4.19,-2.97 1.97,-2.14 1.52,-2.45 1.08,-2.88 1.95,-7.06 3.72,-10.21 0.52,-3.5 -0.5,-3.34 -3.47,-2.94 -2.25,-1.31 -8.16,-3.11 -1.91,-1.1 -0.54,-1.33 0.72,-1.83 6.04,-5 1.28,-1.41 0.66,-4.96 0.15,-7.55 -1.93,-30.21 -0.31,-1.7 -0.46,-1.59 -2.35,-7.86 -0.21,-1.03 0.26,-1.87 0.73,-2.54 5.92,-9.8 0.71,-1.74 0.72,-1.82 0.18,-3.28 -0.48,-4.72 -1.86,-9.63 -1.06,-4.39 -1.2,-2.72 -1.04,-1.37 -4.81,-4.14 -2.23,-2.57 -1.16,-4.85 -0.1,-6.73 1.08,-15.09 -0.23,-6.04 -0.73,-3.34 -1.8,-1.47 -1.11,-1.52 -0.66,-1.39 -0.86,-2.4 -0.41,-2.62 -0.17,-2.91 0.21,-5.48 0.91,-5.96 0.25,-1 0.72,-1.8 5.37,-6.76 14.54,-7.31 4.89,1.04 1.26,-0.44 1.52,-1.83 2.73,-5.64 1.98,-7.8 13.7,-24.33 -31.29,-30.26 -9.71,-5.98 -1.38,0.6 -1.05,1.02 -1.18,1.99 -0.84,2.11 -0.5,2.72 0.06,2.67 0.31,1.81 0.86,2.52 2.96,6.61 -0.17,3.04 -0.62,2.86 0.62,2.94 2.49,1.14 1.46,1.47 0.65,1.85 -2.01,3.66 -1.74,1.49 -3.1,1.18 -3.08,-0.09 -4.96,-3.54 -32.64,-39.21 -3.04,-2.44 -2.04,-0.72 -1.27,0.58 -1.63,1.81 -4.83,8.04 -5.6,13.49 -2.45,2.77 -3.79,1.31 -15.19,-1.41 -3.9,1.14 -2.76,1.44 -3.48,2.93 -6.62,7.07 -3.59,3.21 -3.07,-0.57 -2.91,-3.32 -5.24,-10.03 -6.48,-8.15 -1.24,-0.88 -0.99,-2.23 -0.47,-12.97 2.99,-7.88 2.81,-4.2 2.2,-2.18 1.52,-1.78 1.41,-2.56 1.25,-4.03 1.18,-2.22 1.63,-1.73 3.11,-1.84 4.14,-1.68 4.27,-2.49 3.94,-3.21 3.61,-4.13 4.18,-3.89 6.23,-3.37 1.86,-1.6 1.29,-1.76 0.5,-2.61 0.07,-4.13 -3.13,-3.99 -1.91,-1.7 -5.79,-2.14 -4.08,-2.49 -0.88,-1.59 -0.54,-2.05 0.54,-4.9 0.5,-2.64 0.73,-2.46 1.9,-3.99 3.77,-6.25 1.2,-3.31 1.22,-4.58 0.58,-7 -0.14,-5.2 -0.79,-7.25 -7.31,-20.73 -0.73,-4.09 0.05,-2.84 0.94,-1.4 1.29,-1.58 2.19,-1.34 1.62,-0.66 -1.47,-1.12 -1.82,-0.67 -28.17,-2 -6.27,-1.68 -1.92,-1.3 -2.37,-2.02 -4.04,-5.03 -1.78,-3.25 -0.77,-1.88 -1.74,-12.47 -71.1,-44.84 -3.91,0.63 -1.39,0.64 -1.62,1.16 -1.28,1.3 -0.82,1.48 -0.61,2.06 -0.56,7.29 -0.61,2.37 -0.83,2.06 -0.82,1.19 -2.68,2.98 -1.16,0.59 -1.38,0.46 -3.67,0.24 -2.85,-1.02 -9.11,-6.48 -5.31,-4.99 -2.39,-1.24 -13.24,-3.64 -9.04,-0.87 -2.85,-1.16 -3.67,-3.15 -6.2,-6.98 -3.26,-4.76 -3.78,-8.93 -0.29,-4.08 0.63,-4.3 2.16,-6.52 -5.34,-3.61 -40.7,-58.41 6.82,-12.32 5.28,0.07 1.6,0.36 0.81,-0.1 0.81,-0.31 0.69,-0.36 0.82,-0.91 0.62,-0.97 14.07,-30.23 10.24,-17.76 10.67,-15.43 3.19,-6.33 12.32,-39.73 31.16,-134.01 20.66,-44.97 2.52,-14.27 0.75,-11.99 -1.41,-29.73 -5.18,-24.52 -21.12,-61.8 -5.51,-3.47 -1.71,-1.46 -2.28,-2.44 -1.69,-3.3 -0.05,-4.65 1.36,-6.3 6.56,-13.3 1.53,-2.33 9.05,-9.12 0.64,-4.27 -0.43,-26.46 -0.92,-8.281 -1.08,-5.539 -3.06,-4.781 -0.76,-3.539 -1.89,-13.79 -0.78,-2.851 -1.13,-2 -2.17,-2.359 -1.03,-0.668 -0.8,-0.852 -2.62,-3.371 -0.33,-1.438 0.37,-1.461 1.19,-2.39 3.39,-1.301 1.74,-0.008 1.5,0.278 1.61,1.062 0.58,0.008 0.81,-0.109 0.94,-0.438 1.3,-2.051 2.87,-6.281 2.59,-10.328 14.42,-31.363 -4.26,-2.297 -1.05,-0.301 -1.72,-0.832 -1.49,-1.809 -1.12,-2.57 -1.49,-4.16 -1.59,-2.289 -2.07,-1.582 -12.76,-0.52 -2.32,-0.551 -1.38,-1.058 -1.83,-2.031 -3.39,-6.477 -0.76,-3.523 0.74,-3.289 4.48,-4.848 5.41,-4.352 2.73,-4.332 1.82,-5.136 1.41,-1.473 2.33,-0.719 5.93,0.121 1.52,-0.812 1.47,-2.278 0.96,-2.691 0.77,-4.578 1.28,-32.32 2.97,-20.641 2.96,-11.27 2.9,-7.691 0.86,-3.168 0.17,-3.422 -0.85,-5.328 -1.12,-3.633 -1.12,-2.89 -1.71,-2.258 -2.42,-1.59 -7.15,0.82 -14.04,5.367 -1.05,0.102 -1.39,-0.648 -1.25,-2.524 -1.21,-4.988 -0.7,-16.149 -7.21,-9.351 -5.01,8.691 -3.13,7.399 -3.78,12.468 -1.94,2.961 -3.86,1.61 -5.13,0.742 -8.95,-0.582 -18.55,-5.41 -16.1,-9.258 -13.32,-5.602 -12.3,-3.359 -18.07,-0.449 -18.21,4.168 -24.73,11.07 -5.72,1.481 -8.81,-3.43 -13.92,-7.621 -55.19,-50.278 -33.66,-17.582 -21.62,7.051 -4.78,0.18 -11.76,-5.84 -2.75,-4.91 -1.03,-2.82 -0.33,-2.008 -3.13,-1.871 -5.81,-2.289 -20.13,-4.043 -4.18,-1.84 -1.62,-1.278 -7.99,-11.89 -35.01,-49.25 -0.01,0 -3.74,1 -1.76,1.078 -206.93,127.332 -29.21,6.68 -28.05,-0.129 -10.24,15.847 -41.47,-0.078 -83.72,9.43 -14.12,-5.723 -12.07,-13.008 -27.28,-8.66 -29.42,-2.781 -18.42,4.852 -21.74,16.347 -11.15,11.192 -0.1,7.672 0,0.058 13.8,3.168 0.05,0.012 -19.39,18.359 -24.38,14.36 -20.15,0.953 -6.85,-21.774 0.01,-0.019 6.09,-6.84 -0.05,0 -39.57,-0.438 -1.45,7.207 -1.83,8.512 -5.9,7.399 -3.18,9.023 -0.01,0.008 2.47,7.289 10.09,15.012 1.98,4.148 0.02,0.031 -4.92,11.219 -7.32,1.461 -8.25,-1.691 -7.74,1.839 -5.62,8.84 -5.79,12.864 -7.19,10.976 -9.62,3.281 -6.81,-7.109 -4.02,-24.168 -9.33,-6.043 -7.29,5.5 -2.6,13.512 -0.63,14.359 -1.15,8.07 -13.71,6.309 -18.76,1.191 -11.92,-6.761 0.02,-0.047 6.88,-17.512 -0.02,-0.012 -11.35,-5.718 -40.36,-7.731 -8.4,0.281 -5.91,-3.429 -10.22,-14.949 -3.62,-8.012 -5.78,-22.219 -8.03,-7.379 -19.12,-10.312 -7.39,-8.321 -0.88,-8.211 0.01,-0.007 3.07,-8.172 1.79,-9.489 -0.01,-0.011 -4.86,-11.989 0.02,0 11.67,-4.449 3.76,-0.582 19.17,-14.808 15.39,-8.93 13.39,0.449 11.18,5.641 10.41,7.398 11.29,5.621 36.43,5.989 10.54,-1.84 8.99,-3.778 3.05,-1.281 6.75,-0.672 -0.01,-0.058 -4.39,-26.282 -4.8,2.524 -0.51,6.867 -0.61,1.781 -3.26,-0.09 -3.97,-1.48 -2.77,-2.34 -1.7,-6.101 0.01,-0.047 1.17,-5.043 1.8,-4.379 0.25,-3.82 -0.01,-0.028 -0.96,-7.512 0,-0.039 0.38,-7.89 0,-0.02 -0.94,-8.312 -4.94,-8.547 -10.12,-3.313 -8.26,10.332 -8.8,15.039 -11.59,10.899 -22.49,-2.16 -23.13,-15.059 -8.84,-18.949 -0.97,-5.25 -23.26,-3.699 -48.07,0.629 -28.42,7.828 -7.41,4.89 -5.15,10.731 -3.98,10.719 -3.92,4.863 -8.69,1.058 -19.48,6.149 -13.59,0.019 -40.57,-6.418 -3.95,-2.421 -3.78,-5.387 -5.11,-5.383 -13.87,-3.949 -16.38,-8.66 -6.23,-4.668 -6.38,-7.25 -3.17,-5.621 -3.44,-4.789 -7.36,-4.852 -33.91,-7.199 -97.85,1.289 -1.92,4.762 -1.36,10.476 -2.23,10.422 -4.55,4.84 -48.49,3.64 -10.41,5.5 -14,-21.16 -12.31,-14.14 -14.24,-7.789 -62.89,-12.012 -16.49,2.531 -38.4,21.18 -0.11,0.058 19.7,-0.519 8.14,7.613 10.33,27.617 0.03,0.063 -17.09,-1.543 -38.5,-10.789 -0.01,-0.008 3.23,11.227 1.89,3.953 0.01,0.008 -1.48,10.66 -3.77,5.871 -4.82,4.281 -4.4,5.707 -16.26,34.141 -9.86,14.379 -11.1,5.98 -2.85,5.199 -2.18,11.992 -1.63,23.942 0,0.047 2.76,6.613 12.74,12.938 4.59,7.332 0.69,18.058 0,0.051 -8.63,39.039 0,0.02 2.31,15.41 11.43,35.781 4.24,5.32 10.2,5.321 1.85,12.367 0,0.043 -3.44,20.738 0,0 0.25,4.891 0,0.05 -0.57,2.829 -0.37,2.789 0,0.031 0.97,4.582 2.3,4.887 5.03,4.621 3.15,5.492 4.92,11 1.4,4.93 0.01,0.007 -0.6,18.061 0,0.05 4.4,14.74 20.26,20.72 7.3,13.31 0,0 -1,34.72 -31.18,57.22 -1.42,45.94 0,0.05 5.02,21.62 5.39,16.85 5.56,9.78 5.2,6.66 3.93,8.69 1.79,15.94 5.12,13.52 48.11,65.05 8.15,16.01 5,18.7 1.91,22.52 5.53,23.26 12.12,9.62 13.76,7.18 10.5,16.18 1.16,15.47 0.01,0.05 -3.55,14.88 -4.59,14.21 -2.19,13.49 0,0.02 1.12,14.52 5.91,29.26 3.99,12.6 5.22,10.46 5.01,7.16 3.91,10.71 1.83,21.11 3.94,10.05 9,8.91 18.74,14.38 0.12,7.53 0,0.05 -8.33,23.69 0,0 0.72,38.71 6.74,36.15 31.85,48.12 8.65,5.9 12.24,3.79 11.4,9.68 20.54,23.87 8.82,5.51 9.91,9.34 8.01,10.43 3.43,8.8 1.2,21.21 3.97,9.83 8.39,2.65 20.66,0.13 5.69,1.76 4.18,3.62 1.68,6.07 1.73,10.49 3.49,5.88 3.45,3.23 1.63,2.71 6.42,0.23 27.16,14.2 4.49,3.74 9.32,15.23 34.26,91.21 23.38,43.09 14.43,16.28 0.08,0.03 23.31,8.23 23.93,25.24 15.61,23.75 54.71,110.25 3.34,11.15 14.78,105.76 5.01,19 7.93,8.07 9.29,4.78 50.66,58.92 2.68,13.94 -17.08,6.21 1.49,9.38 26.49,58.74 0,11.14 -4.6,18.47 -0.54,9.06 1.25,2.2 6.98,17.71 2.26,2.11 -7.67,12.86 -11.62,4.27 -13.21,1.65 -12.32,4.97 0.05,7.58 15.34,7.51 0.05,7.61 -9.58,20.69 -15.88,47.92 -13.84,23.44 6.34,26.89 23.79,9.68 6.06,0.56 2.91,-0.43 8.94,-3.1 17.09,-13.88 48.83,-51.52 15.96,5.1 2.26,2.03 2.81,1.77 1.02,0.97 9.02,3.11 2.59,1.83 1.81,2.17 1.13,2.52 0.58,2.27 0.01,2.9 -0.43,3.65 -1.64,8.48 -6.59,25.49 -0.21,2.18 -4.85,22.67 -0.1,3.1 0.8,1.55 1.79,1.08 50.76,12.62 3.02,-0.07 1.9,-1.38 0.53,-7.42 1.33,-2.82 7.68,-10.89 0.99,-5.38 -0.35,-4.13 -0.91,-2.09 -1.58,-2.73 -1.47,-3.12 -0.23,-1.18 0.11,-1.52 3.2,-11.65 8.65,-22.18 1.67,-3.23 2.12,-3.28 1.68,-2.07 4.95,-4.79 20.03,-13.23 13.78,-6.88 12.04,-2.05 15.15,1.74 3.7,-0.12 2.35,-1.67 3.47,-5.24 2.89,-9.49 1.34,-2.24 1.68,-2.07 3.29,-2.31 9.65,-0.48 35.29,4.07 2.01,-5.34 0.23,-0.92 0.11,-1.67 -0.23,-2.61 -0.68,-3.3 -1.35,-4.14 -2.03,-4.71 -2.25,-4.13 -5.67,-7.23 -2.13,-1.09 -2.47,0.01 -4.04,2.59 -2.92,3.11 -4.14,5.63 -2.13,0.07 -2.48,-1.49 -11.26,-13.48 -1.8,-2.98 -1.24,-3.39 -0.46,-3.68 -0.01,-4.65 0.33,-4.63 2.54,-17.32 -0.01,-3.16 -0.68,-2.82 -1.24,-2.43 -1.46,-1.47 -7.47,-3.77 -1.8,-1.43 -1.13,-1.32 -0.68,-1.38 -1.02,-5.68 -0.7,-8.56 0.33,-3.16 1.23,-2.62 1.35,-1.38 1.68,-0.9 10.16,-3.29 5.73,-0.05 5.51,-3.28 4.39,1.28 6.42,4.76 12.84,14.05 9.05,11.99 1.24,2.65 0.79,3.04 2.72,13.18 1.02,3.02 1.57,1.89 1.91,0.63 2.25,-2.19 1.11,-5.74 1.35,-1.9 2.59,-0.75 4.38,1.2 14.66,9.52 2.7,5.23 1.12,3.42 -1.9,7.67 -1.23,3.5 -1.57,3.68 -3.41,5.63 -4.37,5.64 -0.79,1.75 0.01,1.52 2.24,2.99 16.56,17.97 0,0.4 0.11,1.27 0.23,0.94 3.03,1.06 38.76,0.66 5.84,-0.89 1.91,-0.69 9.43,-1.72 3.47,1.61 3.6,1.21 16.85,16.27 5.95,0.58 7.75,-1.08 8.63,1.01 2.14,-0.48 1.23,-0.46 1.35,-1.38 5.43,-7.29 1.92,-1.83 2.02,-1.09 2.02,-0.4 2.47,0.46 1.57,0.55 0.44,3.31 -1.58,5.51 -6.64,12.57 -7.34,10.79 -1.47,2.76 -3.26,7.69 -3.26,4.76 -12.01,13.26 -2.7,4.51 -0.67,3.65 0.89,2.41 3.7,1.73 9.76,-9.36 4.04,-0.56 1.9,0.43 6.42,10.95 5.61,-4.33 2.58,-0.37 41.04,9.08 10.76,-1.9 43.19,0.5 4.03,1.42 3.68,2.83 3.23,5.93 1.45,3.54 2.2,9.51 1.37,2.77 2.35,2.82 6.69,6.29 1.01,1.64 0.1,1.81 -0.57,2.47 -1.95,13.58 1.66,4.06 3.68,3.37 10.05,5.99 5.7,2.06 5.82,1.03 10.22,-0.47 7.38,1.47 20.55,9.29 1.91,-0.33 2.46,-1.14 8.82,-9.55 3.81,-0.84 3.13,0.42 13.25,12.48 -2.61,7.71 -2.15,4.47 -0.45,0.52 -0.34,0.68 0.3,5.41 8.03,44.54 -0.68,1.43 -1.47,1.89 -2.13,1.88 -14,6.13 -1.46,0.05 -2.01,-0.41 -1.67,-0.81 -1.33,-1.33 -0.89,-1.39 -0.77,-1.95 -1.97,-8.46 -1.58,-3.83 -1.67,-2.45 -2.89,-1.79 -2.24,-0.76 -2.57,-0.04 -2.68,0.76 -1.36,2.81 0.2,4.02 2.31,8.14 0.43,3.88 -0.92,4.19 -2.47,2.34 -4.03,2.05 -24.41,3.68 -5.82,1.93 -2.58,2.29 -1.35,1.95 -0.46,3.24 -0.02,4.63 3.55,6.13 0.88,3.65 0.77,1.9 -0.22,0.75 -0.68,2.24 -4.9,14.77 3.91,6.28 7.56,7.87 8.2,5.38 8.69,2.92 35.09,-2.3 26.02,9.68 25.68,4.04 13.28,-0.29 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7255" /><path
+               id="path3212" /><path
                d="m 3466.9,4852.68 0,0 -12.94,-11.4 -2.53,-4.89 -2.17,-7.87 0.27,-4.43 1.01,-3.32 1.12,-2.54 0.79,-2.95 0.73,-6.72 0.8,-2.92 1.32,-2.28 3.94,-3.69 2.41,-3.01 1.58,-5.44 2.19,-10.15 -0.52,-10.46 1.57,-4.52 2,-1.01 2.58,0.89 3.47,-1.1 4.37,-3.11 5.74,-9.23 4.27,-3.94 3.6,-2.37 3.35,-0.12 7.67,0.88 1.84,-0.38 15.92,-6.39 10.61,-0.89 6.2,-2.72 2.42,-2.96 0.91,-3.17 -3.55,-9.08 0.09,-5.72 1.79,-4.17 1.87,-2.5 11.1,-8.81 1.8,-4.65 1.7,-12.88 2.32,-3.25 2.84,-1.79 3.15,-0.36 2.72,-0.99 4.59,-2.87 2.94,-1.28 3.37,-0.63 4.69,-2.06 3.84,-0.92 7.05,-0.7 4.13,-1.08 6.25,-4.73 4.47,-1.77 3.8,-0.63 6.49,0.67 6.76,-0.75 9.51,-5.54 7.59,-6.83 14.21,-7.82 9.2,-3.35 1.23,-1.99 0.69,-2.92 -0.19,-1.44 -2.28,-6.36 -10.33,-13.11 -3.72,-11.32 -0.46,-4.78 0,-6.61 -2.99,-23.07 -2.75,-4.36 -1.62,-0.54 -1.12,2.37 -0.95,4.81 -1.55,1.81 -4.17,3.27 -0.34,0.91 -0.36,1.66 0.84,1.74 0.29,2.42 -0.69,2.29 -5.65,7.78 -2.76,2.89 -5.04,0.55 -6.93,-0.6 -15.44,-4.58 -4.51,-3.17 -1.26,-2.43 2.3,-1.58 1.98,-1.86 1.56,-2.34 1.12,-2.56 0.81,-2.87 1.12,-2.57 1.45,-2.21 2.19,-1.58 2.62,-0.88 12.95,-2.07 2.42,-1.94 -0.14,-5.29 -2.35,-9.18 -8.99,-14.97 -3.12,-8.96 -2.05,-7.82 -1.89,-11.26 -0.13,-5.98 1.04,-3.84 2.84,-0.99 6.53,-0.59 2.95,-0.72 2.3,-1.49 3.97,-3.62 2.35,-1.51 2.73,-0.82 9.57,-0.13 2.51,-1.11 1.45,-2.14 2.26,-5.28 5.12,-7.04 1.57,-3.19 1.49,-4.81 -0.58,-4.03 -9.83,-24.16 -2.02,-2.99 -2.27,-1.07 -16.04,0.55 -15.4,-3.12 -3.6,0.12 -3.27,0.58 -2.63,1.11 -3.74,2.7 -1.11,1.36 -0.23,0.92 -0.02,1.15 0.8,5.04 -0.37,2.58 -1.43,1.1 -2.17,-0.29 -7.28,-3.24 -2.28,-0.18 -7.77,2.84 -21.21,-0.16 -8.38,-1.93 -17.34,-12.81 -1.64,-15.16 2.06,-6.76 2.09,-1.86 2.64,-1.89 3.11,-4.53 4.14,-7.53 2.26,-13.99 -0.9,-5.76 -2.24,-3.31 -11.17,-3.37 -8.48,-1.21 -24.8,2.31 -2.4,0.66 -1.22,1.01 -1.32,1.48 -2.41,1 -3.49,-0.19 -4.77,-1.47 -1.81,-3.24 -0.94,-3.4 -0.34,-6.87 1.02,-3.58 2.1,-1.87 2.61,0.32 1.94,1.61 3.54,4.09 1.76,-1.12 1.25,-3.78 -0.6,-12.77 0.95,-5.79 1.9,-3.14 2.5,0.38 2.16,1.35 1.83,1.98 1.6,2.26 1.28,2.67 1.49,2.26 1.5,1.97 1.83,1.69 1.95,1.21 1.95,0.74 1.74,0.37 2.43,-0.08 1.64,-0.5 1.98,-0.95 7.15,-4.75 8.05,-7.13 2.34,-3.42 2.47,-4.59 3.52,-9.95 2.45,-4.11 5.99,-6.75 -18.66,-22.79 -2.02,-4.06 -1.9,-4.91 2.63,-8.35 -0.39,-10.9 -2.02,-4.16 -3.03,-1.86 -3.71,-0.19 -4.46,-1.07 -6.21,-3.76 -4.02,-1.72 -14.06,-1.91 -10.32,-4.56 -4.11,-3.13 -1.71,-2.64 0.36,-2.75 -0.07,-3.08 -3.65,-8.06 -1.15,-3.52 -0.29,-3.51 -0.06,-3.62 0.59,-3.16 1.6,-6.21 0.6,-3.87 0.4,-5.17 -0.96,-2.37 -1.53,-0.02 -1.22,1.57 -1.54,0.58 -2.29,-0.6 -3.14,-1.82 -3.49,-1.26 -3.69,-10.56 8.2,-8.95 2.47,-5.14 0.36,-2.44 0.09,-6.92 -0.79,-6.53 -0.93,-4.33 -2.22,-6.29 -9.41,-17.64 -2.65,-7.68 -0.26,-5.15 1.38,-5.18 -0.51,-2.88 -4.52,-6.61 -1.84,-2.03 -2.17,-1.58 -2.51,-1.24 -3.03,-2.94 -3.38,-4.43 -4.81,-9.86 -1.47,-5.59 -0.59,-5.67 0.29,-5.51 -0.44,-9.41 1.4,-7.19 2.23,-3.42 3.08,-0.83 5.39,2.08 2.39,1.46 2.51,1.07 2.74,0.35 2.97,-0.83 11.49,-7.33 5.84,-2.16 6.6,-0.93 3.1,0.36 2.62,1.1 1.94,2.03 2.01,5.78 2.24,4.79 -0.36,2.47 -1.79,2.68 -5.67,6.59 -1.61,2.91 -0.48,2.87 0.29,3.17 0.99,2.65 1.62,2.26 2.5,1.3 11.47,3.14 5,2.59 8.9,6.33 4.9,2.07 4.64,0.41 2.96,-0.36 11.88,-3.8 12.4,-1.32 6.71,-1.81 3.43,-1.96 2.47,-2.06 1.8,-3.22 7.96,-19.69 2.02,-25.71 -1.17,-2.67 -1.29,-2 -1.88,1.53 -3.4,-0.31 -4.5,-2.48 -7.12,-8.2 -1.69,-4.54 -0.06,-3.62 1.45,-1.93 0.81,-3.07 0.39,-3.99 -0.7,-20.06 0.15,-3.51 0.27,-3.24 0.59,-2.95 0.7,-2.52 4.99,-11.77 -0.58,-5.52 -5.77,-19.22 -1.33,-6.57 -0.59,-4.98 0.26,-2.62 1.9,-2.84 5.4,-0.44 -4.12,-12.19 -0.83,-3.31 -1.16,-3.84 -1.06,-2.43 -14.83,-25.29 -7.16,-15.19 -8.22,-13.96 -14.03,-12.54 -44.08,-26.77 -42.04,-16.94 -8.14,-1.24 -6.17,0.1 -2.69,0.6 -4.65,2.19 -6.45,5.13 -3.68,4.07 -5.48,8.27 -1.68,1.82 -1.88,1.13 -1.88,0.3 -2.19,-0.63 -8.22,-4.05 -3.88,-1.33 -8.56,-13.63 -16.36,-61.31 2.58,-15.49 0.61,-5.65 0.72,-5.02 0.86,-9.36 -0.22,-10.63 -2.72,-4.68 -4.48,-4.3 -11.77,-8.07 -12.32,-5.72 -7.49,-1.97 -9.57,-4.69 -4.82,-4.92 -5.71,-7.81 -4.94,-15.39 -0.27,-7.87 1.49,-5.45 3.8,-4.33 -1.19,-2.77 -1.54,-1.8 -21.83,-6.91 -13.12,-4.71 -10.21,-0.25 -3.33,0.75 -2.1,1.02 -1.9,2.08 -1.22,0.82 -1.45,0.74 -2.43,0.18 -3.21,-0.31 -11.25,-3.65 -1.77,0.13 -1.55,0.99 -1.49,1.57 -3.36,5.23 -2.11,2.4 -1.78,1.17 -1.55,0.53 -1.55,-0.24 -6.5,-3.84 -2.65,-0.07 -4.43,1.06 -6.32,2.54 -2.21,-0.71 -1.19,-2.7 -0.62,-7.16 2.47,-22.02 -0.85,-4.83 -4.88,-15.26 -1.1,-5.33 -0.42,-3.3 0.23,-2.59 0.5,-2.21 0.78,-1.54 1.01,-1 2,-0.91 12.52,-1.46 2.44,-0.91 1.56,-1.59 0.9,-1.55 0.23,-1.95 -1.3,-3.74 -8.63,-16.9 -2.17,-6.14 -0.96,-5.69 0.46,-3.59 4.25,-20.31 -1.86,-3.69 -5.29,-5.38 -43.38,-18.84 -11,-1.81 -16.99,2.69 -4.91,5.78 -4.91,6.98 -1.24,2.69 -2.93,9.33 -1.27,2.66 -1.12,2.01 -4.68,4.8 -6.89,4.56 -27.8,13.12 -3.76,0.24 -9.2,-1.08 -3.32,0.51 -5.1,1.93 -2.33,0.68 -31.84,0.75 -7.76,2.15 -3.88,0.16 -4.54,-0.59 -22.06,-6.49 -3.1,-1.68 -1.54,-2.01 -0.77,-4.83 0.35,-5.69 -0.22,-2.38 -1.65,-3.66 -12.38,-14.74 -10.44,-7.66 -4.87,-2.42 -2.22,-0.01 0.22,1.9 1.21,2.87 4.31,6.88 0.77,1.98 -0.33,1.55 -1.67,1.21 -9.65,2.99 -3.88,2.5 -8.99,7.34 -3,1.54 -2.21,0.52 -2.11,0.17 -2.1,-0.53 -36.04,-17.1 -23.65,-5.56 -3.77,-1.69 -3.32,-2.99 -1.66,-2.01 -1.34,-2.47 -0.99,-3.85 -0.56,-5.23 -0.11,-16.03 -0.44,-4.51 -1,-4.28 -2.11,-2.3 -2.55,-1.15 -3.1,-0.23 -3.04,0.69 -1.99,-1.32 -6.66,-8.28 -1.56,-2.49 4.88,-3.14 6.4,-4.71 3.63,-0.86 3.22,3.79 6.99,1.27 6.99,-1.27 3.22,-3.79 0.67,-2.01 3.79,-24.22 6.89,-10.71 -0.89,-12.64 0.56,-1.84 2.78,-6.78 5.16,-9.93 0.56,-2.24 -1.56,-0.58 -1.26,-1.09 -15.12,5.85 -1.41,-82.22 0.44,-4.54 9.48,-27.77 6.69,-18.18 9.09,-29.12 2.34,-3.39 1.9,-4.42 0.9,-1.56 0.89,-0.94 1.56,-0.32 0.78,0.32 1.11,1.12 1.23,2.47 4.45,8.05 2.11,2.47 1.56,0.95 1.12,-0.14 1.23,-0.74 0.89,-1.32 0.34,-2.59 -0.22,-4.57 -1.66,-8.53 -0.33,-7.18 0.68,-7.3 3.58,-11.14 2.46,-5.23 3.25,-4.33 3.61,-2.15 3.01,-0.74 3.57,0.58 3.01,1.3 3.23,0.72 2.68,0.12 1.9,-0.74 2.23,-1.72 2.47,-3.45 1.12,-3.9 -0.33,-4.08 -3.33,-6.7 -9.81,-13.2 -1.77,-4.32 -0.11,-4.62 2.46,-4.33 5.82,-3.64 11.29,-4.84 1.68,-2.92 -0.33,-4.08 -9.46,-20.07 -1.78,-5.09 -0.77,-4.45 -0.1,-5.09 1.35,-5.83 1.12,-3.39 0.01,-2.75 -1.23,-2.19 -4.13,-4.43 -3.35,-2.33 -3.02,-1.47 -2.68,-0.47 -5.37,-0.06 -2.83,-0.41 -3.02,-1.5 -0.44,-5.68 1.02,-9.31 7.24,-30.15 0.8,-6.67 -2.12,-5.03 -1.72,-2.33 -2.12,-2.24 -2.57,-1.67 -5.93,-5.03 -7.27,-7.62 -1.79,-2.71 -1.56,-1.61 -2.8,-3.96 0.23,-4.26 2.69,-4.19 14.24,-13.54 10.38,-17.74 -6.42,-10.95 -1.9,-0.43 -4.04,0.56 -9.76,9.36 -3.7,-1.73 -0.89,-2.41 0.67,-3.65 2.7,-4.51 12.01,-13.26 3.26,-4.76 3.26,-7.69 1.47,-2.76 7.34,-10.79 6.64,-12.57 1.58,-5.51 -0.44,-3.31 -1.57,-0.55 -2.47,-0.46 -2.02,0.4 -2.02,1.09 -1.92,1.83 -5.43,7.29 -1.35,1.38 -1.23,0.46 -2.14,0.48 -8.63,-1.01 -7.75,1.08 -5.95,-0.58 -16.85,-16.27 -3.6,-1.21 -3.47,-1.61 -9.43,1.72 -1.91,0.69 -5.84,0.89 -38.76,-0.66 -3.03,-1.06 -0.23,-0.94 -0.11,-1.27 0,-0.4 -16.56,-17.97 -2.24,-2.99 -0.01,-1.52 0.79,-1.75 4.37,-5.64 3.41,-5.63 1.57,-3.68 1.23,-3.5 1.9,-7.67 -1.12,-3.42 -2.7,-5.23 -14.66,-9.52 -4.38,-1.2 -2.59,0.75 -1.35,1.9 -1.11,5.74 -2.25,2.19 -1.91,-0.63 -1.57,-1.89 -1.02,-3.02 -2.72,-13.18 -0.79,-3.04 -1.24,-2.65 -9.05,-11.99 -12.84,-14.05 -6.42,-4.76 -4.39,-1.28 -5.51,3.28 -5.73,0.05 -10.16,3.29 -1.68,0.9 -1.35,1.38 -1.23,2.62 -0.33,3.16 0.7,8.56 1.02,5.68 0.68,1.38 1.13,1.32 1.8,1.43 7.47,3.77 1.46,1.47 1.24,2.43 0.68,2.82 0.01,3.16 -2.54,17.32 -0.33,4.63 0.01,4.65 0.46,3.68 1.24,3.39 1.8,2.98 11.26,13.48 2.48,1.49 2.13,-0.07 4.14,-5.63 2.92,-3.11 4.04,-2.59 2.47,-0.01 2.13,1.09 5.67,7.23 2.25,4.13 2.03,4.71 1.35,4.14 0.68,3.3 0.23,2.61 -0.11,1.67 -0.23,0.92 -2.01,5.34 -35.29,-4.07 -9.65,0.48 -3.29,2.31 -1.68,2.07 -1.34,2.24 -2.89,9.49 -3.47,5.24 -2.35,1.67 -3.7,0.12 -15.15,-1.74 -12.04,2.05 -13.78,6.88 -20.03,13.23 -4.95,4.79 -1.68,2.07 -2.12,3.28 -1.67,3.23 -8.65,22.18 -3.2,11.65 -0.11,1.52 0.23,1.18 1.47,3.12 1.58,2.73 0.91,2.09 0.35,4.13 -0.99,5.38 -7.68,10.89 -1.33,2.82 -0.53,7.42 -1.9,1.38 -3.02,0.07 -50.76,-12.62 -1.79,-1.08 -0.8,-1.55 0.1,-3.1 4.85,-22.67 0.21,-2.18 6.59,-25.49 1.64,-8.48 0.43,-3.65 -0.01,-2.9 -0.58,-2.27 -1.13,-2.52 -1.81,-2.17 -2.59,-1.83 -9.02,-3.11 -1.02,-0.97 -2.81,-1.77 -2.26,-2.03 -15.96,-5.1 -48.83,51.52 -17.09,13.88 -8.94,3.1 -2.91,0.43 -6.06,-0.56 -23.79,-9.68 -11.87,34.51 -17.49,34.27 -10.52,26.06 1.48,29.41 12.4,21.55 19.74,13.2 23.58,4.39 15.78,19.07 9.49,15.13 2.08,11.17 -10.13,4.03 -14.64,-3.25 -13.26,-0.74 -5.68,11.65 -1.42,7.77 -3.58,8.88 -13.37,25.27 -2.41,9.5 -1.45,9.44 -2.62,11.45 -7.04,15.63 -16.24,24.53 -5.26,13.93 11.13,38.4 -13.8,37.92 -76.08,88.08 -10.73,7.06 -8.79,2.16 -19.28,-0.36 -90.07,-29.42 -28.09,-20.81 -34.5,-17.57 -31.23,-9.82 -29,-0.61 -12.53,19.19 -1.93,13.99 -5.19,9.16 -45.75,42.73 -7.06,2.96 -2.62,2.72 28.54,21.43 12.78,6.12 7.53,6.01 2.84,4.23 0.48,9.94 0.86,5.16 1.97,5.48 5.58,9.95 3.38,3.19 3.34,0.93 2.64,-1.31 3.8,-0.69 3.88,0.26 6.02,2.15 4.22,0.83 2.66,-0.33 2.51,-2.22 3.81,-5.08 2.84,-2.89 2.63,-2.19 4.51,-2.14 1.68,1.01 0.6,3.18 0.28,3.97 0.49,3.24 1.18,4.66 3.62,10.24 0.59,3.09 -0.08,2.16 -1.18,2.4 -1.9,1.69 -13.29,7.84 -2.18,2.04 -2.72,3.38 -2.5,3.77 -0.43,8.11 1.7,10 8.81,19.47 4.65,7.69 4.16,4.56 12.4,5.29 9.72,6.73 19.7,8.89 4.54,6 3.03,2.63 1.78,1.18 1.65,-0.42 1.87,-1.23 3.81,-4.05 2.61,-3.57 2.73,-2.45 3.3,-2.02 5.08,-0.41 2.91,2.29 2.5,5.22 8.38,12.28 1.14,2.86 -0.64,2.24 -6.34,8.19 -0.07,2.79 0.6,3.87 2.98,7.89 2.51,3.3 2.89,1.63 35.89,-1.88 11.57,2.79 3.79,2.71 2.12,1.93 1.14,3.03 0.48,3.04 0.04,3.91 -0.51,3.05 -2.15,5.66 -7.83,28.31 -4.63,9.36 -1.42,1.23 -6.51,3.55 -6.64,7.47 -4.74,9.25 -12.85,30.68 -3.57,5.91 -12.3,6.19 -1.4,2.43 -0.73,3.75 -0.16,4.48 -2.06,2.24 -2.41,0.98 -29.91,7.82 -3.16,2.91 -1.51,2.12 1.28,5.41 8.95,7.35 3.67,10.47 2.81,12.03 3.09,9.04 10.83,10.83 2.02,3.13 0.69,2.06 -1.09,1.23 -6.55,3.67 -2.29,1.76 -1.96,1.89 -1.29,1.86 -0.74,2.02 -0.57,6.96 -0.08,2.36 -0.2,1.73 2.15,36.66 1.87,8.48 1.27,4.73 3.43,1.39 4.21,2.79 4.24,4.22 7.16,10.31 3.57,4.15 4.04,3.16 8.04,1.63 6.92,0.42 3.07,-0.67 2.4,-1.75 11.88,-15.92 1.96,-1.75 2.18,-1.26 7.28,-1.18 2.53,-0.03 2.09,0.66 3.21,1.77 11.31,8.23 3.11,3.04 1.79,2.76 1.01,2.06 11.35,28.83 7.01,18.09 -2.05,2.86 -0.85,2.74 -6.36,3.41 -1.93,3.64 -2.67,6.24 -2.23,16.58 -3.5,10.21 -9.5,21.37 -1.05,4.56 0.48,3.06 1.13,3.3 3.15,6.11 2.82,6.92 3.06,18.47 6.86,15.2 2,2.4 3.1,3.06 7.28,1.44 2.31,1.44 1.67,2.68 1.97,8.89 4.26,29.09 -0.09,2.01 -0.41,1.9 -0.86,1.74 -0.97,1.56 -3.02,3.42 -15.65,12.14 -1.4,1.56 -0.75,1.51 -0.09,1.43 0.36,3.16 -0.2,1.56 -0.75,1.38 -1.3,1.05 -1.41,0.77 -1.51,1.16 -0.86,1.34 -0.42,1.38 0.01,1.64 0.35,1.8 0.57,1.49 3.65,3.98 34.13,29.16 5.18,14.25 0.78,1.57 1.22,1.37 13.79,9.65 1.65,1.88 3.11,5.05 1.44,1.71 30.65,27.19 8.62,10.77 2.08,1.36 2.85,1.12 8.51,0.38 2.61,-1.4 1.94,-2.43 5.75,-14.48 4.01,-3.03 11.58,-2.23 10.17,1.66 9.16,0.07 3.18,1.18 3.94,2.15 14.64,11.48 1.22,1.83 0.89,2.72 -0.06,5.21 -0.5,5.52 2.65,3.88 18.78,18.07 11.98,8.01 4.14,0.32 7.94,-2.07 1.75,-0.04 1.76,2.45 1.34,4.51 0.34,17.58 0.48,5.63 0.45,2.35 5.97,12.31 9,20.05 4.6,5.26 5.56,1.23 1.64,0.62 1.53,0.96 0.99,1.49 0.99,1.95 1.66,4.47 3.42,6.76 2.55,6.71 2.2,4.64 0.99,1.77 7.56,8.86 4.73,8.07 -0.3,4.46 -1.26,6.3 -4.04,15.14 -1.15,7.08 0.69,6.43 1.66,4.56 -0.52,3.42 -1.6,4.66 -4.83,9.92 -2.79,4.33 -2.47,5.3 3,9.29 71.72,-0.1 21.83,-5.93 1.74,-0.21 1.85,0.33 1.63,0.83 9.26,7.57 17.84,9.55 1.31,1.78 0.77,2.7 -0.3,5.31 -0.97,3.03 -5.92,9.85 -0.65,1.49 -0.32,1.59 0.01,1.52 0.11,1.41 1.42,2.6 14.22,19.2 22.64,25.09 0.87,2.29 0.55,3.42 0.24,6.98 -0.2,3.94 -0.42,3.08 -1.17,6.04 -0.22,1.38 -0.42,1.49 -2.77,13.34 -0.53,4.95 -4.15,18.75 -0.21,2.12 -0.75,3.68 -3.41,14.24 -0.43,0.86 -1.08,1.39 -5.39,2.8 -1.19,0.87 -0.21,1.27 0.22,1.35 2.51,7.43 0.34,1.87 -0.32,1.69 -0.65,1.5 -1.07,1.32 -1.51,0.9 -1.51,0.5 -3.18,-0.62 -3.25,-1.54 -15.41,-11.26 -14.19,-4.19 -14.32,-1.17 -3.47,-1.1 -1.52,-0.97 -1.08,-1.06 -0.66,-0.83 -3.71,-7.34 -1.64,-2.12 -1.84,-1.19 -2.06,-0.54 -3.36,-0.13 -6.48,1.25 -3.03,1.39 -1.4,1.19 -1,1.41 -0.75,1.56 -0.53,1.55 -0.85,3.6 -0.73,4.46 -0.42,1.46 -0.64,1.47 -2.48,2.49 -4.42,3.07 -3.12,2.69 -1.29,1.41 -0.96,1.45 -0.54,1.49 -0.2,1.56 0.44,2.23 1.32,4.13 7.34,15.57 3.82,6.67 15.16,19.54 22.91,23.02 2.06,2.69 0.99,3.33 0.44,1.55 0.12,1.55 0.44,1.55 5.67,4.63 7.79,4.33 4.35,7.4 0.12,1.98 1.41,1.55 2.7,1.56 12.97,3.17 16.47,7.46 4.75,1.14 11.97,-0.62 14.51,1.96 16.52,5.47 8.74,1.47 4,-0.01 3.55,-0.58 3.56,-0.99 3.38,-1.64 14.66,-4.66 1.73,-0.06 1.73,0.22 1.62,0.63 17.64,13.42 7.13,2.75 28.91,1.4 2.51,1.92 2.6,3.59 3.45,9.17 1.41,4.85 0.11,3.91 -2.05,3.57 -1.94,1.66 -1.83,1.04 -14.48,2.14 -1.4,0.63 -0.97,1.1 -0.53,1.61 -0.22,2.47 0.34,10.4 -0.21,2.15 -1.29,10.44 -1.07,4.94 -1.61,4.03 -0.96,1.78 -6.03,8.57 -0.96,1.78 -0.54,2.19 0.01,2.99 0.97,4.82 0.98,2.73 1.07,2.21 2.59,3.02 36.11,18.09 28.67,7.47 11.08,5.8 4.09,-1.29 6.13,-2.93 13.56,-10.36 10.05,-5.17 1.62,0.35 3.33,0.23 2.48,-1.03 2.59,-2.76 4.2,-6.08 1.41,-10.64 -0.43,-2.27 -0.32,-1.52 -0.85,-11.21 0.11,-1.66 0.33,-1.55 3.34,-4.63 13.2,-11.1 25.87,-5.13 5.49,0.04 2.91,0.67 24.55,19.54 3.55,1.65 8.09,-1.9 1.61,0.92 1.61,1.9 1.6,5.47 0.64,2.87 0.35,2.47 0.1,1.56 -0.11,2.93 -0.01,3.1 0.21,1.72 0.95,3.97 1.18,3.77 1.6,3.71 2.57,2.94 3.33,3.12 13.53,8.66 7.31,2.27 5.26,3.93 8.61,7.96 9.23,5.27 2.25,2.76 2.24,3.75 2.98,8.17 2.67,5.42 3.31,4.78 7.07,6.3 3.78,4.47 3.09,4.92 2.86,8.18 1.91,6.99 0.31,1.7 0.32,1.75 1.9,5.84 1.27,5.07 1.16,3.51 2.76,6.56 0.42,1.76 0.1,1.72 -0.22,1.7 -0.65,1.43 -1.19,1.15 -8.94,6.02 -1.4,1.17 -2.37,2.52 -0.55,1.55 2.78,2.6 6.1,3.7 49.64,16.76 4.48,4.91 10.83,19.54 5.86,-5.53 12.58,12.29 11.16,-0.3 2.8,-1.54 2.39,-4.41 0.13,-3.64 -0.19,-3.77 0.13,-3.33 0.34,-3.16 0.88,-2.81 1.62,-2.41 3.6,-2.18 5.7,-1.86 9.12,-0.28 4.82,0.81 3.21,1.69 1.81,2.08 1.59,2.25 3.51,4.05 2.14,1.71 2.46,1.09 2.57,-0.27 2.2,-1.97 2.83,-4.89 3.14,-3.77 8.61,-3.61 5.7,-1.16 5.04,-0.25 8.57,2 7.73,3.6 3.22,0.54 1.73,-1.82 1.45,-6.03 1.43,-4.18 2.5,-3.37 13.79,-6.55 2.5,-3.36 1.98,-4.7 1.91,-9.75 4.72,-11.28 13.71,-14.36 -5.9,-12.47 -4.18,-1.71 -2.05,1.14 -17.02,12.75 -1.51,0.64 -1.4,0.11 -1.39,-0.53 -1.5,-1.45 -1.16,-2.2 0.03,-3.22 1.11,-4.27 6.77,-11.58 -0.2,-1.84 -2.57,-1.63 -3.11,-0.2 -2.8,0.44 -1.94,0.78 -4.65,2.95 -2.37,0.24 -1.69,-2.97 -0.81,-6.5 -0.11,-12.16 -0.7,-6.3 -1.36,-4.15 -1.96,-1.91 -2.57,-1 -6.35,-0.63 -1.37,-2.65 1.46,-7.35 13.85,-30.81 4.69,-7.14 3.36,-3.48 5.41,-2.31 1.85,-1.93 0.34,-2.53 -1.48,-3.35 -3.83,-4.8 -0.63,-2.59 0.68,-3.36 3.05,-4.54 1.23,-4.3 -0.27,-6.38 -0.83,-4.38 -0.39,-4.14 2.94,-28.14 -1.57,-5.53 -2.56,-3.12 -19.65,-2.53 -5.16,-2.05 -2.69,-0.08 -4.87,1.74 -2.7,0.27 -2.14,-1.4 -1.39,-2.59 -1.58,-3.69 -1.82,-2.52 -5.78,-5.88 -0.51,-3.45 1.22,-5.11 4.72,-9.27 0.68,-4.88 -0.84,-2.91 -2.69,-0.88 -3.13,0 -6.31,1.39 -10.72,4.69 -2.38,0.39 0.57,-3.16 4.03,-6 19.72,-17.61 11.79,-3.13 48.72,-21.77 4.44,-0.59 5,0.73 9.23,-5.03 20.35,-25.87 7.36,-1.11 2.52,0.26 5.48,2.93 19.71,18.07 5.12,6.23 2.43,4.66 -0.13,2.26 -0.24,2.62 0.08,2.07 0.42,1.55 0.74,1.22 1.18,1.56 0.96,0.93 0.75,0.84 0.89,0.73 1.91,2.75 1.06,2.28 0.3,1.85 -0.01,1.29 -1.1,1.34 -1.09,1.05 -1.52,1.1 -2.95,-0.03 -3.66,-1.5 -7.27,-7.06 -1.7,-2.4 -1.72,-1.43 -2.59,0.49 -5.55,3.62 -16.84,17.68 -2.52,4.03 -1.89,4.98 -0.13,2.53 -0.02,1.67 0.75,1.32 29.21,17.4 8.34,7.3 16.7,5.4 4.59,4.71 2.02,2.98 -2.31,3.74 -0.77,1.83 -0.67,2.29 -0.36,2.7 0.31,1.84 3.01,0.55 5.09,-1.72 12.58,-6.93 4.79,-3.63 3.11,-4.39 1.22,-3.49 4,-9.9 3.3,-5.53 2.3,-2.45 2.83,-2.38 3.13,-0.02 3.55,1.48 4.89,6.21 1.58,3.18 -0.04,3.33 -5.98,12.46 -1.21,1.82 -1.1,2.26 -0.78,2.06 -0.79,3.18 0.08,2.59 0.62,2.19 1.92,1.63 2.9,0.87 8.73,0.1 1.83,0.34 4.5,5.8 1.81,1.75 2.35,1.35 2.81,-0.08 1.86,-2.22 0.83,-6.31 0.3,-6.84 0.13,-1.6 6.23,-6.62 24.31,-17.34 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3466.9,4852.68 0,0 -12.94,-11.4 -2.53,-4.89 -2.17,-7.87 0.27,-4.43 1.01,-3.32 1.12,-2.54 0.79,-2.95 0.73,-6.72 0.8,-2.92 1.32,-2.28 3.94,-3.69 2.41,-3.01 1.58,-5.44 2.19,-10.15 -0.52,-10.46 1.57,-4.52 2,-1.01 2.58,0.89 3.47,-1.1 4.37,-3.11 5.74,-9.23 4.27,-3.94 3.6,-2.37 3.35,-0.12 7.67,0.88 1.84,-0.38 15.92,-6.39 10.61,-0.89 6.2,-2.72 2.42,-2.96 0.91,-3.17 -3.55,-9.08 0.09,-5.72 1.79,-4.17 1.87,-2.5 11.1,-8.81 1.8,-4.65 1.7,-12.88 2.32,-3.25 2.84,-1.79 3.15,-0.36 2.72,-0.99 4.59,-2.87 2.94,-1.28 3.37,-0.63 4.69,-2.06 3.84,-0.92 7.05,-0.7 4.13,-1.08 6.25,-4.73 4.47,-1.77 3.8,-0.63 6.49,0.67 6.76,-0.75 9.51,-5.54 7.59,-6.83 14.21,-7.82 9.2,-3.35 1.23,-1.99 0.69,-2.92 -0.19,-1.44 -2.28,-6.36 -10.33,-13.11 -3.72,-11.32 -0.46,-4.78 0,-6.61 -2.99,-23.07 -2.75,-4.36 -1.62,-0.54 -1.12,2.37 -0.95,4.81 -1.55,1.81 -4.17,3.27 -0.34,0.91 -0.36,1.66 0.84,1.74 0.29,2.42 -0.69,2.29 -5.65,7.78 -2.76,2.89 -5.04,0.55 -6.93,-0.6 -15.44,-4.58 -4.51,-3.17 -1.26,-2.43 2.3,-1.58 1.98,-1.86 1.56,-2.34 1.12,-2.56 0.81,-2.87 1.12,-2.57 1.45,-2.21 2.19,-1.58 2.62,-0.88 12.95,-2.07 2.42,-1.94 -0.14,-5.29 -2.35,-9.18 -8.99,-14.97 -3.12,-8.96 -2.05,-7.82 -1.89,-11.26 -0.13,-5.98 1.04,-3.84 2.84,-0.99 6.53,-0.59 2.95,-0.72 2.3,-1.49 3.97,-3.62 2.35,-1.51 2.73,-0.82 9.57,-0.13 2.51,-1.11 1.45,-2.14 2.26,-5.28 5.12,-7.04 1.57,-3.19 1.49,-4.81 -0.58,-4.03 -9.83,-24.16 -2.02,-2.99 -2.27,-1.07 -16.04,0.55 -15.4,-3.12 -3.6,0.12 -3.27,0.58 -2.63,1.11 -3.74,2.7 -1.11,1.36 -0.23,0.92 -0.02,1.15 0.8,5.04 -0.37,2.58 -1.43,1.1 -2.17,-0.29 -7.28,-3.24 -2.28,-0.18 -7.77,2.84 -21.21,-0.16 -8.38,-1.93 -17.34,-12.81 -1.64,-15.16 2.06,-6.76 2.09,-1.86 2.64,-1.89 3.11,-4.53 4.14,-7.53 2.26,-13.99 -0.9,-5.76 -2.24,-3.31 -11.17,-3.37 -8.48,-1.21 -24.8,2.31 -2.4,0.66 -1.22,1.01 -1.32,1.48 -2.41,1 -3.49,-0.19 -4.77,-1.47 -1.81,-3.24 -0.94,-3.4 -0.34,-6.87 1.02,-3.58 2.1,-1.87 2.61,0.32 1.94,1.61 3.54,4.09 1.76,-1.12 1.25,-3.78 -0.6,-12.77 0.95,-5.79 1.9,-3.14 2.5,0.38 2.16,1.35 1.83,1.98 1.6,2.26 1.28,2.67 1.49,2.26 1.5,1.97 1.83,1.69 1.95,1.21 1.95,0.74 1.74,0.37 2.43,-0.08 1.64,-0.5 1.98,-0.95 7.15,-4.75 8.05,-7.13 2.34,-3.42 2.47,-4.59 3.52,-9.95 2.45,-4.11 5.99,-6.75 -18.66,-22.79 -2.02,-4.06 -1.9,-4.91 2.63,-8.35 -0.39,-10.9 -2.02,-4.16 -3.03,-1.86 -3.71,-0.19 -4.46,-1.07 -6.21,-3.76 -4.02,-1.72 -14.06,-1.91 -10.32,-4.56 -4.11,-3.13 -1.71,-2.64 0.36,-2.75 -0.07,-3.08 -3.65,-8.06 -1.15,-3.52 -0.29,-3.51 -0.06,-3.62 0.59,-3.16 1.6,-6.21 0.6,-3.87 0.4,-5.17 -0.96,-2.37 -1.53,-0.02 -1.22,1.57 -1.54,0.58 -2.29,-0.6 -3.14,-1.82 -3.49,-1.26 -3.69,-10.56 8.2,-8.95 2.47,-5.14 0.36,-2.44 0.09,-6.92 -0.79,-6.53 -0.93,-4.33 -2.22,-6.29 -9.41,-17.64 -2.65,-7.68 -0.26,-5.15 1.38,-5.18 -0.51,-2.88 -4.52,-6.61 -1.84,-2.03 -2.17,-1.58 -2.51,-1.24 -3.03,-2.94 -3.38,-4.43 -4.81,-9.86 -1.47,-5.59 -0.59,-5.67 0.29,-5.51 -0.44,-9.41 1.4,-7.19 2.23,-3.42 3.08,-0.83 5.39,2.08 2.39,1.46 2.51,1.07 2.74,0.35 2.97,-0.83 11.49,-7.33 5.84,-2.16 6.6,-0.93 3.1,0.36 2.62,1.1 1.94,2.03 2.01,5.78 2.24,4.79 -0.36,2.47 -1.79,2.68 -5.67,6.59 -1.61,2.91 -0.48,2.87 0.29,3.17 0.99,2.65 1.62,2.26 2.5,1.3 11.47,3.14 5,2.59 8.9,6.33 4.9,2.07 4.64,0.41 2.96,-0.36 11.88,-3.8 12.4,-1.32 6.71,-1.81 3.43,-1.96 2.47,-2.06 1.8,-3.22 7.96,-19.69 2.02,-25.71 -1.17,-2.67 -1.29,-2 -1.88,1.53 -3.4,-0.31 -4.5,-2.48 -7.12,-8.2 -1.69,-4.54 -0.06,-3.62 1.45,-1.93 0.81,-3.07 0.39,-3.99 -0.7,-20.06 0.15,-3.51 0.27,-3.24 0.59,-2.95 0.7,-2.52 4.99,-11.77 -0.58,-5.52 -5.77,-19.22 -1.33,-6.57 -0.59,-4.98 0.26,-2.62 1.9,-2.84 5.4,-0.44 -4.12,-12.19 -0.83,-3.31 -1.16,-3.84 -1.06,-2.43 -14.83,-25.29 -7.16,-15.19 -8.22,-13.96 -14.03,-12.54 -44.08,-26.77 -42.04,-16.94 -8.14,-1.24 -6.17,0.1 -2.69,0.6 -4.65,2.19 -6.45,5.13 -3.68,4.07 -5.48,8.27 -1.68,1.82 -1.88,1.13 -1.88,0.3 -2.19,-0.63 -8.22,-4.05 -3.88,-1.33 -8.56,-13.63 -16.36,-61.31 2.58,-15.49 0.61,-5.65 0.72,-5.02 0.86,-9.36 -0.22,-10.63 -2.72,-4.68 -4.48,-4.3 -11.77,-8.07 -12.32,-5.72 -7.49,-1.97 -9.57,-4.69 -4.82,-4.92 -5.71,-7.81 -4.94,-15.39 -0.27,-7.87 1.49,-5.45 3.8,-4.33 -1.19,-2.77 -1.54,-1.8 -21.83,-6.91 -13.12,-4.71 -10.21,-0.25 -3.33,0.75 -2.1,1.02 -1.9,2.08 -1.22,0.82 -1.45,0.74 -2.43,0.18 -3.21,-0.31 -11.25,-3.65 -1.77,0.13 -1.55,0.99 -1.49,1.57 -3.36,5.23 -2.11,2.4 -1.78,1.17 -1.55,0.53 -1.55,-0.24 -6.5,-3.84 -2.65,-0.07 -4.43,1.06 -6.32,2.54 -2.21,-0.71 -1.19,-2.7 -0.62,-7.16 2.47,-22.02 -0.85,-4.83 -4.88,-15.26 -1.1,-5.33 -0.42,-3.3 0.23,-2.59 0.5,-2.21 0.78,-1.54 1.01,-1 2,-0.91 12.52,-1.46 2.44,-0.91 1.56,-1.59 0.9,-1.55 0.23,-1.95 -1.3,-3.74 -8.63,-16.9 -2.17,-6.14 -0.96,-5.69 0.46,-3.59 4.25,-20.31 -1.86,-3.69 -5.29,-5.38 -43.38,-18.84 -11,-1.81 -16.99,2.69 -4.91,5.78 -4.91,6.98 -1.24,2.69 -2.93,9.33 -1.27,2.66 -1.12,2.01 -4.68,4.8 -6.89,4.56 -27.8,13.12 -3.76,0.24 -9.2,-1.08 -3.32,0.51 -5.1,1.93 -2.33,0.68 -31.84,0.75 -7.76,2.15 -3.88,0.16 -4.54,-0.59 -22.06,-6.49 -3.1,-1.68 -1.54,-2.01 -0.77,-4.83 0.35,-5.69 -0.22,-2.38 -1.65,-3.66 -12.38,-14.74 -10.44,-7.66 -4.87,-2.42 -2.22,-0.01 0.22,1.9 1.21,2.87 4.31,6.88 0.77,1.98 -0.33,1.55 -1.67,1.21 -9.65,2.99 -3.88,2.5 -8.99,7.34 -3,1.54 -2.21,0.52 -2.11,0.17 -2.1,-0.53 -36.04,-17.1 -23.65,-5.56 -3.77,-1.69 -3.32,-2.99 -1.66,-2.01 -1.34,-2.47 -0.99,-3.85 -0.56,-5.23 -0.11,-16.03 -0.44,-4.51 -1,-4.28 -2.11,-2.3 -2.55,-1.15 -3.1,-0.23 -3.04,0.69 -1.99,-1.32 -6.66,-8.28 -1.56,-2.49 4.88,-3.14 6.4,-4.71 3.63,-0.86 3.22,3.79 6.99,1.27 6.99,-1.27 3.22,-3.79 0.67,-2.01 3.79,-24.22 6.89,-10.71 -0.89,-12.64 0.56,-1.84 2.78,-6.78 5.16,-9.93 0.56,-2.24 -1.56,-0.58 -1.26,-1.09 -15.12,5.85 -1.41,-82.22 0.44,-4.54 9.48,-27.77 6.69,-18.18 9.09,-29.12 2.34,-3.39 1.9,-4.42 0.9,-1.56 0.89,-0.94 1.56,-0.32 0.78,0.32 1.11,1.12 1.23,2.47 4.45,8.05 2.11,2.47 1.56,0.95 1.12,-0.14 1.23,-0.74 0.89,-1.32 0.34,-2.59 -0.22,-4.57 -1.66,-8.53 -0.33,-7.18 0.68,-7.3 3.58,-11.14 2.46,-5.23 3.25,-4.33 3.61,-2.15 3.01,-0.74 3.57,0.58 3.01,1.3 3.23,0.72 2.68,0.12 1.9,-0.74 2.23,-1.72 2.47,-3.45 1.12,-3.9 -0.33,-4.08 -3.33,-6.7 -9.81,-13.2 -1.77,-4.32 -0.11,-4.62 2.46,-4.33 5.82,-3.64 11.29,-4.84 1.68,-2.92 -0.33,-4.08 -9.46,-20.07 -1.78,-5.09 -0.77,-4.45 -0.1,-5.09 1.35,-5.83 1.12,-3.39 0.01,-2.75 -1.23,-2.19 -4.13,-4.43 -3.35,-2.33 -3.02,-1.47 -2.68,-0.47 -5.37,-0.06 -2.83,-0.41 -3.02,-1.5 -0.44,-5.68 1.02,-9.31 7.24,-30.15 0.8,-6.67 -2.12,-5.03 -1.72,-2.33 -2.12,-2.24 -2.57,-1.67 -5.93,-5.03 -7.27,-7.62 -1.79,-2.71 -1.56,-1.61 -2.8,-3.96 0.23,-4.26 2.69,-4.19 14.24,-13.54 10.38,-17.74 -6.42,-10.95 -1.9,-0.43 -4.04,0.56 -9.76,9.36 -3.7,-1.73 -0.89,-2.41 0.67,-3.65 2.7,-4.51 12.01,-13.26 3.26,-4.76 3.26,-7.69 1.47,-2.76 7.34,-10.79 6.64,-12.57 1.58,-5.51 -0.44,-3.31 -1.57,-0.55 -2.47,-0.46 -2.02,0.4 -2.02,1.09 -1.92,1.83 -5.43,7.29 -1.35,1.38 -1.23,0.46 -2.14,0.48 -8.63,-1.01 -7.75,1.08 -5.95,-0.58 -16.85,-16.27 -3.6,-1.21 -3.47,-1.61 -9.43,1.72 -1.91,0.69 -5.84,0.89 -38.76,-0.66 -3.03,-1.06 -0.23,-0.94 -0.11,-1.27 0,-0.4 -16.56,-17.97 -2.24,-2.99 -0.01,-1.52 0.79,-1.75 4.37,-5.64 3.41,-5.63 1.57,-3.68 1.23,-3.5 1.9,-7.67 -1.12,-3.42 -2.7,-5.23 -14.66,-9.52 -4.38,-1.2 -2.59,0.75 -1.35,1.9 -1.11,5.74 -2.25,2.19 -1.91,-0.63 -1.57,-1.89 -1.02,-3.02 -2.72,-13.18 -0.79,-3.04 -1.24,-2.65 -9.05,-11.99 -12.84,-14.05 -6.42,-4.76 -4.39,-1.28 -5.51,3.28 -5.73,0.05 -10.16,3.29 -1.68,0.9 -1.35,1.38 -1.23,2.62 -0.33,3.16 0.7,8.56 1.02,5.68 0.68,1.38 1.13,1.32 1.8,1.43 7.47,3.77 1.46,1.47 1.24,2.43 0.68,2.82 0.01,3.16 -2.54,17.32 -0.33,4.63 0.01,4.65 0.46,3.68 1.24,3.39 1.8,2.98 11.26,13.48 2.48,1.49 2.13,-0.07 4.14,-5.63 2.92,-3.11 4.04,-2.59 2.47,-0.01 2.13,1.09 5.67,7.23 2.25,4.13 2.03,4.71 1.35,4.14 0.68,3.3 0.23,2.61 -0.11,1.67 -0.23,0.92 -2.01,5.34 -35.29,-4.07 -9.65,0.48 -3.29,2.31 -1.68,2.07 -1.34,2.24 -2.89,9.49 -3.47,5.24 -2.35,1.67 -3.7,0.12 -15.15,-1.74 -12.04,2.05 -13.78,6.88 -20.03,13.23 -4.95,4.79 -1.68,2.07 -2.12,3.28 -1.67,3.23 -8.65,22.18 -3.2,11.65 -0.11,1.52 0.23,1.18 1.47,3.12 1.58,2.73 0.91,2.09 0.35,4.13 -0.99,5.38 -7.68,10.89 -1.33,2.82 -0.53,7.42 -1.9,1.38 -3.02,0.07 -50.76,-12.62 -1.79,-1.08 -0.8,-1.55 0.1,-3.1 4.85,-22.67 0.21,-2.18 6.59,-25.49 1.64,-8.48 0.43,-3.65 -0.01,-2.9 -0.58,-2.27 -1.13,-2.52 -1.81,-2.17 -2.59,-1.83 -9.02,-3.11 -1.02,-0.97 -2.81,-1.77 -2.26,-2.03 -15.96,-5.1 -48.83,51.52 -17.09,13.88 -8.94,3.1 -2.91,0.43 -6.06,-0.56 -23.79,-9.68 -11.87,34.51 -17.49,34.27 -10.52,26.06 1.48,29.41 12.4,21.55 19.74,13.2 23.58,4.39 15.78,19.07 9.49,15.13 2.08,11.17 -10.13,4.03 -14.64,-3.25 -13.26,-0.74 -5.68,11.65 -1.42,7.77 -3.58,8.88 -13.37,25.27 -2.41,9.5 -1.45,9.44 -2.62,11.45 -7.04,15.63 -16.24,24.53 -5.26,13.93 11.13,38.4 -13.8,37.92 -76.08,88.08 -10.73,7.06 -8.79,2.16 -19.28,-0.36 -90.07,-29.42 -28.09,-20.81 -34.5,-17.57 -31.23,-9.82 -29,-0.61 -12.53,19.19 -1.93,13.99 -5.19,9.16 -45.75,42.73 -7.06,2.96 -2.62,2.72 28.54,21.43 12.78,6.12 7.53,6.01 2.84,4.23 0.48,9.94 0.86,5.16 1.97,5.48 5.58,9.95 3.38,3.19 3.34,0.93 2.64,-1.31 3.8,-0.69 3.88,0.26 6.02,2.15 4.22,0.83 2.66,-0.33 2.51,-2.22 3.81,-5.08 2.84,-2.89 2.63,-2.19 4.51,-2.14 1.68,1.01 0.6,3.18 0.28,3.97 0.49,3.24 1.18,4.66 3.62,10.24 0.59,3.09 -0.08,2.16 -1.18,2.4 -1.9,1.69 -13.29,7.84 -2.18,2.04 -2.72,3.38 -2.5,3.77 -0.43,8.11 1.7,10 8.81,19.47 4.65,7.69 4.16,4.56 12.4,5.29 9.72,6.73 19.7,8.89 4.54,6 3.03,2.63 1.78,1.18 1.65,-0.42 1.87,-1.23 3.81,-4.05 2.61,-3.57 2.73,-2.45 3.3,-2.02 5.08,-0.41 2.91,2.29 2.5,5.22 8.38,12.28 1.14,2.86 -0.64,2.24 -6.34,8.19 -0.07,2.79 0.6,3.87 2.98,7.89 2.51,3.3 2.89,1.63 35.89,-1.88 11.57,2.79 3.79,2.71 2.12,1.93 1.14,3.03 0.48,3.04 0.04,3.91 -0.51,3.05 -2.15,5.66 -7.83,28.31 -4.63,9.36 -1.42,1.23 -6.51,3.55 -6.64,7.47 -4.74,9.25 -12.85,30.68 -3.57,5.91 -12.3,6.19 -1.4,2.43 -0.73,3.75 -0.16,4.48 -2.06,2.24 -2.41,0.98 -29.91,7.82 -3.16,2.91 -1.51,2.12 1.28,5.41 8.95,7.35 3.67,10.47 2.81,12.03 3.09,9.04 10.83,10.83 2.02,3.13 0.69,2.06 -1.09,1.23 -6.55,3.67 -2.29,1.76 -1.96,1.89 -1.29,1.86 -0.74,2.02 -0.57,6.96 -0.08,2.36 -0.2,1.73 2.15,36.66 1.87,8.48 1.27,4.73 3.43,1.39 4.21,2.79 4.24,4.22 7.16,10.31 3.57,4.15 4.04,3.16 8.04,1.63 6.92,0.42 3.07,-0.67 2.4,-1.75 11.88,-15.92 1.96,-1.75 2.18,-1.26 7.28,-1.18 2.53,-0.03 2.09,0.66 3.21,1.77 11.31,8.23 3.11,3.04 1.79,2.76 1.01,2.06 11.35,28.83 7.01,18.09 -2.05,2.86 -0.85,2.74 -6.36,3.41 -1.93,3.64 -2.67,6.24 -2.23,16.58 -3.5,10.21 -9.5,21.37 -1.05,4.56 0.48,3.06 1.13,3.3 3.15,6.11 2.82,6.92 3.06,18.47 6.86,15.2 2,2.4 3.1,3.06 7.28,1.44 2.31,1.44 1.67,2.68 1.97,8.89 4.26,29.09 -0.09,2.01 -0.41,1.9 -0.86,1.74 -0.97,1.56 -3.02,3.42 -15.65,12.14 -1.4,1.56 -0.75,1.51 -0.09,1.43 0.36,3.16 -0.2,1.56 -0.75,1.38 -1.3,1.05 -1.41,0.77 -1.51,1.16 -0.86,1.34 -0.42,1.38 0.01,1.64 0.35,1.8 0.57,1.49 3.65,3.98 34.13,29.16 5.18,14.25 0.78,1.57 1.22,1.37 13.79,9.65 1.65,1.88 3.11,5.05 1.44,1.71 30.65,27.19 8.62,10.77 2.08,1.36 2.85,1.12 8.51,0.38 2.61,-1.4 1.94,-2.43 5.75,-14.48 4.01,-3.03 11.58,-2.23 10.17,1.66 9.16,0.07 3.18,1.18 3.94,2.15 14.64,11.48 1.22,1.83 0.89,2.72 -0.06,5.21 -0.5,5.52 2.65,3.88 18.78,18.07 11.98,8.01 4.14,0.32 7.94,-2.07 1.75,-0.04 1.76,2.45 1.34,4.51 0.34,17.58 0.48,5.63 0.45,2.35 5.97,12.31 9,20.05 4.6,5.26 5.56,1.23 1.64,0.62 1.53,0.96 0.99,1.49 0.99,1.95 1.66,4.47 3.42,6.76 2.55,6.71 2.2,4.64 0.99,1.77 7.56,8.86 4.73,8.07 -0.3,4.46 -1.26,6.3 -4.04,15.14 -1.15,7.08 0.69,6.43 1.66,4.56 -0.52,3.42 -1.6,4.66 -4.83,9.92 -2.79,4.33 -2.47,5.3 3,9.29 71.72,-0.1 21.83,-5.93 1.74,-0.21 1.85,0.33 1.63,0.83 9.26,7.57 17.84,9.55 1.31,1.78 0.77,2.7 -0.3,5.31 -0.97,3.03 -5.92,9.85 -0.65,1.49 -0.32,1.59 0.01,1.52 0.11,1.41 1.42,2.6 14.22,19.2 22.64,25.09 0.87,2.29 0.55,3.42 0.24,6.98 -0.2,3.94 -0.42,3.08 -1.17,6.04 -0.22,1.38 -0.42,1.49 -2.77,13.34 -0.53,4.95 -4.15,18.75 -0.21,2.12 -0.75,3.68 -3.41,14.24 -0.43,0.86 -1.08,1.39 -5.39,2.8 -1.19,0.87 -0.21,1.27 0.22,1.35 2.51,7.43 0.34,1.87 -0.32,1.69 -0.65,1.5 -1.07,1.32 -1.51,0.9 -1.51,0.5 -3.18,-0.62 -3.25,-1.54 -15.41,-11.26 -14.19,-4.19 -14.32,-1.17 -3.47,-1.1 -1.52,-0.97 -1.08,-1.06 -0.66,-0.83 -3.71,-7.34 -1.64,-2.12 -1.84,-1.19 -2.06,-0.54 -3.36,-0.13 -6.48,1.25 -3.03,1.39 -1.4,1.19 -1,1.41 -0.75,1.56 -0.53,1.55 -0.85,3.6 -0.73,4.46 -0.42,1.46 -0.64,1.47 -2.48,2.49 -4.42,3.07 -3.12,2.69 -1.29,1.41 -0.96,1.45 -0.54,1.49 -0.2,1.56 0.44,2.23 1.32,4.13 7.34,15.57 3.82,6.67 15.16,19.54 22.91,23.02 2.06,2.69 0.99,3.33 0.44,1.55 0.12,1.55 0.44,1.55 5.67,4.63 7.79,4.33 4.35,7.4 0.12,1.98 1.41,1.55 2.7,1.56 12.97,3.17 16.47,7.46 4.75,1.14 11.97,-0.62 14.51,1.96 16.52,5.47 8.74,1.47 4,-0.01 3.55,-0.58 3.56,-0.99 3.38,-1.64 14.66,-4.66 1.73,-0.06 1.73,0.22 1.62,0.63 17.64,13.42 7.13,2.75 28.91,1.4 2.51,1.92 2.6,3.59 3.45,9.17 1.41,4.85 0.11,3.91 -2.05,3.57 -1.94,1.66 -1.83,1.04 -14.48,2.14 -1.4,0.63 -0.97,1.1 -0.53,1.61 -0.22,2.47 0.34,10.4 -0.21,2.15 -1.29,10.44 -1.07,4.94 -1.61,4.03 -0.96,1.78 -6.03,8.57 -0.96,1.78 -0.54,2.19 0.01,2.99 0.97,4.82 0.98,2.73 1.07,2.21 2.59,3.02 36.11,18.09 28.67,7.47 11.08,5.8 4.09,-1.29 6.13,-2.93 13.56,-10.36 10.05,-5.17 1.62,0.35 3.33,0.23 2.48,-1.03 2.59,-2.76 4.2,-6.08 1.41,-10.64 -0.43,-2.27 -0.32,-1.52 -0.85,-11.21 0.11,-1.66 0.33,-1.55 3.34,-4.63 13.2,-11.1 25.87,-5.13 5.49,0.04 2.91,0.67 24.55,19.54 3.55,1.65 8.09,-1.9 1.61,0.92 1.61,1.9 1.6,5.47 0.64,2.87 0.35,2.47 0.1,1.56 -0.11,2.93 -0.01,3.1 0.21,1.72 0.95,3.97 1.18,3.77 1.6,3.71 2.57,2.94 3.33,3.12 13.53,8.66 7.31,2.27 5.26,3.93 8.61,7.96 9.23,5.27 2.25,2.76 2.24,3.75 2.98,8.17 2.67,5.42 3.31,4.78 7.07,6.3 3.78,4.47 3.09,4.92 2.86,8.18 1.91,6.99 0.31,1.7 0.32,1.75 1.9,5.84 1.27,5.07 1.16,3.51 2.76,6.56 0.42,1.76 0.1,1.72 -0.22,1.7 -0.65,1.43 -1.19,1.15 -8.94,6.02 -1.4,1.17 -2.37,2.52 -0.55,1.55 2.78,2.6 6.1,3.7 49.64,16.76 4.48,4.91 10.83,19.54 5.86,-5.53 12.58,12.29 11.16,-0.3 2.8,-1.54 2.39,-4.41 0.13,-3.64 -0.19,-3.77 0.13,-3.33 0.34,-3.16 0.88,-2.81 1.62,-2.41 3.6,-2.18 5.7,-1.86 9.12,-0.28 4.82,0.81 3.21,1.69 1.81,2.08 1.59,2.25 3.51,4.05 2.14,1.71 2.46,1.09 2.57,-0.27 2.2,-1.97 2.83,-4.89 3.14,-3.77 8.61,-3.61 5.7,-1.16 5.04,-0.25 8.57,2 7.73,3.6 3.22,0.54 1.73,-1.82 1.45,-6.03 1.43,-4.18 2.5,-3.37 13.79,-6.55 2.5,-3.36 1.98,-4.7 1.91,-9.75 4.72,-11.28 13.71,-14.36 -5.9,-12.47 -4.18,-1.71 -2.05,1.14 -17.02,12.75 -1.51,0.64 -1.4,0.11 -1.39,-0.53 -1.5,-1.45 -1.16,-2.2 0.03,-3.22 1.11,-4.27 6.77,-11.58 -0.2,-1.84 -2.57,-1.63 -3.11,-0.2 -2.8,0.44 -1.94,0.78 -4.65,2.95 -2.37,0.24 -1.69,-2.97 -0.81,-6.5 -0.11,-12.16 -0.7,-6.3 -1.36,-4.15 -1.96,-1.91 -2.57,-1 -6.35,-0.63 -1.37,-2.65 1.46,-7.35 13.85,-30.81 4.69,-7.14 3.36,-3.48 5.41,-2.31 1.85,-1.93 0.34,-2.53 -1.48,-3.35 -3.83,-4.8 -0.63,-2.59 0.68,-3.36 3.05,-4.54 1.23,-4.3 -0.27,-6.38 -0.83,-4.38 -0.39,-4.14 2.94,-28.14 -1.57,-5.53 -2.56,-3.12 -19.65,-2.53 -5.16,-2.05 -2.69,-0.08 -4.87,1.74 -2.7,0.27 -2.14,-1.4 -1.39,-2.59 -1.58,-3.69 -1.82,-2.52 -5.78,-5.88 -0.51,-3.45 1.22,-5.11 4.72,-9.27 0.68,-4.88 -0.84,-2.91 -2.69,-0.88 -3.13,0 -6.31,1.39 -10.72,4.69 -2.38,0.39 0.57,-3.16 4.03,-6 19.72,-17.61 11.79,-3.13 48.72,-21.77 4.44,-0.59 5,0.73 9.23,-5.03 20.35,-25.87 7.36,-1.11 2.52,0.26 5.48,2.93 19.71,18.07 5.12,6.23 2.43,4.66 -0.13,2.26 -0.24,2.62 0.08,2.07 0.42,1.55 0.74,1.22 1.18,1.56 0.96,0.93 0.75,0.84 0.89,0.73 1.91,2.75 1.06,2.28 0.3,1.85 -0.01,1.29 -1.1,1.34 -1.09,1.05 -1.52,1.1 -2.95,-0.03 -3.66,-1.5 -7.27,-7.06 -1.7,-2.4 -1.72,-1.43 -2.59,0.49 -5.55,3.62 -16.84,17.68 -2.52,4.03 -1.89,4.98 -0.13,2.53 -0.02,1.67 0.75,1.32 29.21,17.4 8.34,7.3 16.7,5.4 4.59,4.71 2.02,2.98 -2.31,3.74 -0.77,1.83 -0.67,2.29 -0.36,2.7 0.31,1.84 3.01,0.55 5.09,-1.72 12.58,-6.93 4.79,-3.63 3.11,-4.39 1.22,-3.49 4,-9.9 3.3,-5.53 2.3,-2.45 2.83,-2.38 3.13,-0.02 3.55,1.48 4.89,6.21 1.58,3.18 -0.04,3.33 -5.98,12.46 -1.21,1.82 -1.1,2.26 -0.78,2.06 -0.79,3.18 0.08,2.59 0.62,2.19 1.92,1.63 2.9,0.87 8.73,0.1 1.83,0.34 4.5,5.8 1.81,1.75 2.35,1.35 2.81,-0.08 1.86,-2.22 0.83,-6.31 0.3,-6.84 0.13,-1.6 6.23,-6.62 24.31,-17.34 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7257" /><path
+               id="path3214" /><path
                d="m 2512.87,6885.64 0,0 2.59,-0.88 1.24,0.05 12.55,3.89 3.42,-0.07 18.4,-11.8 39.31,-16.29 9,-2.2 7.25,0.72 1.66,0.45 0.73,0.46 1.25,1.31 2.59,0.71 15.16,0.95 8.28,-1.21 1.34,-0.95 0.93,-1.3 0.62,-1.41 0.2,-1.61 -0.21,-1.55 -0.42,-1.78 1.44,-2.71 3.41,-3.06 14.71,-9.45 3.42,-1.41 18.66,0.58 8.18,-1.69 1.24,-1.04 9.96,-10.26 13.25,-9.68 23.04,-11.63 6.01,-1.38 3.63,1 1.97,0.92 1.35,1.43 0.94,1.9 0.62,1.81 0.73,3.3 1.04,3.16 3.12,7.59 1.56,3.04 1.45,1.98 3.01,2.07 2.18,-0.2 2.1,-1.1 6.73,-6.44 15.76,-18.35 1.55,-2.81 -0.1,-2.59 -2.08,-2.47 -7.78,-7.13 -1.46,-3.07 -0.31,-1.53 2.49,-6.78 16.39,-17.54 1.45,-3.22 1.14,-3.97 -1.14,-2.24 -4.57,-6.29 -1.56,-4.74 -1.56,-6.73 -0.94,-15.29 -0.83,-6.12 -0.94,-4.23 -10.09,-11.09 -23.33,-16.85 -5.62,-3.13 -32.53,25.52 -0.21,-0.72 -0.11,-1.64 0.31,-3.04 -0.01,-3.25 -1.87,-2.73 -3.44,-1.77 -9.36,-2.74 -6.44,0.38 -6.59,1.66 -31.85,20.49 -3.52,1.45 -2.33,0.01 -6.55,-2.8 -26.21,-4.56 -9.79,1.85 -0.62,1.04 -1.04,0.72 0.11,0.64 0.11,1.14 -0.2,1.82 0.32,28.37 -0.6,3.96 -1.45,2.71 -4.45,2.52 -26.05,30.85 -10.5,16.26 -1.43,4.03 -1.32,5.64 -0.3,2.71 -1.14,20.21 -9.44,19.28 -4.12,3.59 -14.58,-1.13 -7.46,0.93 -15.71,11.02 -27.62,11.48 -5.53,12.63 -2.1,6.68 -3.5,7.79 15.13,2.19 7.23,-1.66 20.65,-13.58 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2512.87,6885.64 0,0 2.59,-0.88 1.24,0.05 12.55,3.89 3.42,-0.07 18.4,-11.8 39.31,-16.29 9,-2.2 7.25,0.72 1.66,0.45 0.73,0.46 1.25,1.31 2.59,0.71 15.16,0.95 8.28,-1.21 1.34,-0.95 0.93,-1.3 0.62,-1.41 0.2,-1.61 -0.21,-1.55 -0.42,-1.78 1.44,-2.71 3.41,-3.06 14.71,-9.45 3.42,-1.41 18.66,0.58 8.18,-1.69 1.24,-1.04 9.96,-10.26 13.25,-9.68 23.04,-11.63 6.01,-1.38 3.63,1 1.97,0.92 1.35,1.43 0.94,1.9 0.62,1.81 0.73,3.3 1.04,3.16 3.12,7.59 1.56,3.04 1.45,1.98 3.01,2.07 2.18,-0.2 2.1,-1.1 6.73,-6.44 15.76,-18.35 1.55,-2.81 -0.1,-2.59 -2.08,-2.47 -7.78,-7.13 -1.46,-3.07 -0.31,-1.53 2.49,-6.78 16.39,-17.54 1.45,-3.22 1.14,-3.97 -1.14,-2.24 -4.57,-6.29 -1.56,-4.74 -1.56,-6.73 -0.94,-15.29 -0.83,-6.12 -0.94,-4.23 -10.09,-11.09 -23.33,-16.85 -5.62,-3.13 -32.53,25.52 -0.21,-0.72 -0.11,-1.64 0.31,-3.04 -0.01,-3.25 -1.87,-2.73 -3.44,-1.77 -9.36,-2.74 -6.44,0.38 -6.59,1.66 -31.85,20.49 -3.52,1.45 -2.33,0.01 -6.55,-2.8 -26.21,-4.56 -9.79,1.85 -0.62,1.04 -1.04,0.72 0.11,0.64 0.11,1.14 -0.2,1.82 0.32,28.37 -0.6,3.96 -1.45,2.71 -4.45,2.52 -26.05,30.85 -10.5,16.26 -1.43,4.03 -1.32,5.64 -0.3,2.71 -1.14,20.21 -9.44,19.28 -4.12,3.59 -14.58,-1.13 -7.46,0.93 -15.71,11.02 -27.62,11.48 -5.53,12.63 -2.1,6.68 -3.5,7.79 15.13,2.19 7.23,-1.66 20.65,-13.58 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7259" /><path
+               id="path3216" /><path
                d="m 2516.8,7323.61 0,0 14.45,-2.67 27.12,1.03 3.69,-1.17 0.6,-2.19 -2.37,-2.92 -1.96,-2.83 -1.56,-3.13 -0.84,-2.78 -1.05,-4.31 0.59,-5.95 1.61,-5.76 5.18,-10.66 2.42,-8.52 4.3,-22.91 0.47,-8.25 -0.55,-7.33 -0.85,-6.03 -1.05,-3.59 -10.36,-16.01 -13.85,-12.98 -1.17,-0.51 -1.03,-0.31 -1.33,0.95 -1.64,1.8 -4.37,8.9 -0.31,0.18 -0.31,0.03 -1.23,-0.02 -4.84,-1.18 -3.48,2.92 -7.92,15.46 -2.83,2.78 0.17,0.17 6.26,31.69 -3.25,5.57 -16.8,43.6 -5.02,6.56 -6.71,15.08 -2.54,7.46 32.36,-12.17 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2516.8,7323.61 0,0 14.45,-2.67 27.12,1.03 3.69,-1.17 0.6,-2.19 -2.37,-2.92 -1.96,-2.83 -1.56,-3.13 -0.84,-2.78 -1.05,-4.31 0.59,-5.95 1.61,-5.76 5.18,-10.66 2.42,-8.52 4.3,-22.91 0.47,-8.25 -0.55,-7.33 -0.85,-6.03 -1.05,-3.59 -10.36,-16.01 -13.85,-12.98 -1.17,-0.51 -1.03,-0.31 -1.33,0.95 -1.64,1.8 -4.37,8.9 -0.31,0.18 -0.31,0.03 -1.23,-0.02 -4.84,-1.18 -3.48,2.92 -7.92,15.46 -2.83,2.78 0.17,0.17 6.26,31.69 -3.25,5.57 -16.8,43.6 -5.02,6.56 -6.71,15.08 -2.54,7.46 32.36,-12.17 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7261" /><path
+               id="path3218" /><path
                d="m 1311.64,7315.58 0,0 4.62,-6.82 4.35,-10.75 -5.78,3.66 -8.29,10.51 -5.58,2.36 -6.81,-0.99 -9.92,-4.86 -4.04,-1.08 -11.68,6.31 -8.67,13.34 -2.14,13.14 7.89,5.66 50.88,13.84 24.77,1.18 8.31,-17.69 -14.94,-1.66 -23.36,-9.39 -12.27,-2.55 -0.22,-6.89 7.3,-3.11 5.58,-4.21 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1311.64,7315.58 0,0 4.62,-6.82 4.35,-10.75 -5.78,3.66 -8.29,10.51 -5.58,2.36 -6.81,-0.99 -9.92,-4.86 -4.04,-1.08 -11.68,6.31 -8.67,13.34 -2.14,13.14 7.89,5.66 50.88,13.84 24.77,1.18 8.31,-17.69 -14.94,-1.66 -23.36,-9.39 -12.27,-2.55 -0.22,-6.89 7.3,-3.11 5.58,-4.21 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7263" /><path
+               id="path3220" /><path
                d="m 1542.14,7429.75 0,0 -140.2,-11.92 24.8,11.43 90.23,9.11 25.17,-8.62 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1542.14,7429.75 0,0 -140.2,-11.92 24.8,11.43 90.23,9.11 25.17,-8.62 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7265" /><path
+               id="path3222" /><path
                d="m 1715.53,7465.72 0,0 -1.05,-1.27 -1.77,0.13 -31.02,-11.64 -80.93,-8.68 -26.44,8.1 30.67,16.98 35.74,5.08 74.62,-3.43 0.18,-5.27 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1715.53,7465.72 0,0 -1.05,-1.27 -1.77,0.13 -31.02,-11.64 -80.93,-8.68 -26.44,8.1 30.67,16.98 35.74,5.08 74.62,-3.43 0.18,-5.27 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7267" /><path
+               id="path3224" /><path
                d="m 1765.92,7476.77 0,0 8.4,-7.12 -2.24,-4.26 -2.15,-1.71 -5.22,-1.41 -26.2,8.79 -9.66,-0.39 10.98,7.43 13.47,1.77 12.62,-3.1 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1765.92,7476.77 0,0 8.4,-7.12 -2.24,-4.26 -2.15,-1.71 -5.22,-1.41 -26.2,8.79 -9.66,-0.39 10.98,7.43 13.47,1.77 12.62,-3.1 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7269" /><path
+               id="path3226" /><path
                d="m 2259.93,7458.86 0,0 -10.56,-10.17 -3.33,-2.26 -5.71,1.59 -3.55,2.6 -3.99,0.57 -7.01,-4.51 0.09,7.61 8.43,14.25 12.99,5.56 14.87,-2.56 13.75,-10.25 -9.41,0.11 -6.57,-2.54 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2259.93,7458.86 0,0 -10.56,-10.17 -3.33,-2.26 -5.71,1.59 -3.55,2.6 -3.99,0.57 -7.01,-4.51 0.09,7.61 8.43,14.25 12.99,5.56 14.87,-2.56 13.75,-10.25 -9.41,0.11 -6.57,-2.54 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7271" /><path
+               id="path3228" /><path
                d="m 1901.22,7492.59 0,0 -0.97,-1.13 -1.64,0.15 -1.82,-1 -47.95,2.45 -22.46,-5 -2.11,-19.48 -19.35,-0.54 -5.79,5.41 -1.89,15.05 3.54,12.7 8.22,4.88 20.15,0.38 58.77,-0.67 13.09,-8.36 0.21,-4.84 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1901.22,7492.59 0,0 -0.97,-1.13 -1.64,0.15 -1.82,-1 -47.95,2.45 -22.46,-5 -2.11,-19.48 -19.35,-0.54 -5.79,5.41 -1.89,15.05 3.54,12.7 8.22,4.88 20.15,0.38 58.77,-0.67 13.09,-8.36 0.21,-4.84 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7273" /><path
+               id="path3230" /><path
                d="m 2014.76,7518.83 0,0 -14.88,-9.12 -18.66,-7.5 -19,-0.81 -15.91,11.04 -6.12,-8.51 -5.91,-4.29 -5.58,0.19 -5.03,4.75 17.12,20.76 27.76,5.68 55.73,-4.73 -0.12,-7.62 -9.4,0.16 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2014.76,7518.83 0,0 -14.88,-9.12 -18.66,-7.5 -19,-0.81 -15.91,11.04 -6.12,-8.51 -5.91,-4.29 -5.58,0.19 -5.03,4.75 17.12,20.76 27.76,5.68 55.73,-4.73 -0.12,-7.62 -9.4,0.16 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7275" /><path
+               id="path3232" /><path
                d="m 2100.88,7535.51 0,0 17.37,-11.04 -6.28,1.27 -7.1,-0.73 -27.61,6.8 -11.76,-0.41 -1.23,-13.38 -12.55,9.37 2.97,6.94 11.78,4.24 13.88,1.33 10.77,-1.2 9.76,-3.19 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2100.88,7535.51 0,0 17.37,-11.04 -6.28,1.27 -7.1,-0.73 -27.61,6.8 -11.76,-0.41 -1.23,-13.38 -12.55,9.37 2.97,6.94 11.78,4.24 13.88,1.33 10.77,-1.2 9.76,-3.19 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7277" /><path
+               id="path3234" /><path
                d="m 2663.3,7585.92 0,0 51.42,-12.93 28.23,0.82 47.86,11.8 26.28,-2.07 12.4,14.5 52.26,12.93 52.1,-0.41 11.12,8.14 8.96,-6.7 10.78,-1.94 22.35,1.2 5.66,-3.83 14.6,-19.03 64.73,-113.29 26.68,-31.11 18.68,-15.15 9.12,-11.64 9.32,-33.57 45.81,-66.64 10.27,-9.17 12.33,-5.47 15.75,-1.76 8.24,-3.96 39.72,-26.68 44.5,-9.46 0.56,-4.59 2.9,-39.58 5.93,-6.44 1.39,-2.45 0.97,-3.9 1.16,-2.52 1.88,-2.05 4.14,-2.89 1.57,-2.22 1.59,-3.89 3.2,-10.03 2.75,-6.7 3.99,-7.54 4.09,-5.99 5.21,-6.09 22.01,-20.38 2.69,-0.66 2.55,1.32 8.09,12.75 3.47,2.77 5.32,2.08 3.24,-0.39 2.91,-2.23 3.68,-5.93 1.9,-11.6 0.54,-10.28 0.46,-3.85 2.4,-2.73 4.02,0.06 13.1,7.15 4.11,1.12 3.34,-0.88 12.37,-8.22 4.54,-0.4 6.68,1.21 17.14,7.4 10.93,6.83 1.62,1.92 0.28,2.19 -0.13,2.12 -0.44,1.6 -0.34,2.36 -0.13,1.95 1.91,2.9 4.19,2.42 24.62,8.53 4.73,0.59 10.8,-12.54 8.13,-6.09 13.48,-3.46 7.9,-8.68 7.13,-9.94 10.95,-7.65 11.14,-2.28 36.54,3.09 1.39,3.13 14.49,19.92 6.52,4.26 6.17,2.18 28.33,0.52 14.98,-0.41 24.03,-8.63 95.55,-55.32 27.57,-8.89 20.92,9.32 49.35,3.2 22.9,-5.41 14.98,-17.84 2.21,-15.71 0.64,-17.93 3.56,-14.66 11.06,-5.86 12.96,-2.7 7.97,-7.36 14.17,-19.46 21.74,-16.73 61.61,-33.61 75.3,-66.99 19.07,-11.56 6.6,-7.06 8.03,-5.11 6.74,5.02 6.15,8.24 10.26,7.38 5.28,6.25 6.74,5.84 8.45,1.58 5.7,-3.16 4.12,-5.89 4.05,-7.21 5.52,-7.37 7.26,-12.21 4.71,-0.37 8.49,9.76 6.67,4.69 5.26,-4.55 5.17,-7.38 10.99,-6.16 4.62,-5.95 20.19,-35.2 25.5,-28.23 8.99,-5.11 2.31,-1.31 14.49,-2.11 12.35,3.89 21.32,16.04 14.01,3.76 15.57,-4.39 20.66,-20.08 12.62,-4.28 15.49,-1.53 33.33,-11.93 -11.72,-36.99 -6.48,-5.09 -8.73,-0.43 -5.6,2.19 -3.76,0.47 -6.7,-1.9 -3.46,-3.34 -1.87,-3.09 -2.97,-10.38 -0.52,-3.09 -2.36,-22.06 0.25,-7.1 0.33,-3.39 1.14,-6.05 1.86,-5.46 1.25,-5.94 -1.19,-1.77 -1.22,-0.91 -12.68,-1.1 -6,-1.5 -37.73,-38.74 -2.39,-1.4 -23.35,-7.11 -40.34,-18.87 -13.85,-1.13 -5.32,2.19 -3.83,-1.22 -3.88,-2.59 -5.58,-5.24 -4.13,-1.51 -3.23,-0.28 -1.9,0.81 -1.6,0.98 -1.41,1.86 -1.32,2.2 -1.03,2.73 -1.43,2.28 -2.07,1.84 -8.56,3.21 -2.14,1.6 -1.73,2.14 -1.94,1.95 -2.35,1.6 -32.64,5.13 -39.36,-4.14 -5.24,0.77 -12.29,6.43 -20.41,4.71 -11.07,0.57 -13.2,-1.72 -8.07,-3.74 -1.22,-1.21 -0.49,-0.85 -0.7,-1.17 -0.88,-2.21 -0.96,-2.84 -0.64,-3.24 -0.43,-3.32 -0.12,-3.2 0.05,-5.57 -0.27,-1.82 -0.87,-2.36 -1.51,-2.02 -12.45,-10.38 -6.33,-9.03 -12.58,-7.1 -18.42,-6.45 -10.09,-5.62 -8.96,-2.19 -28.99,0.71 -31.67,-3.18 -22.27,-9.41 -2.21,-3.71 1.61,-5.68 -0.12,-3.86 -1.64,-5.33 -0.64,-3.98 0.29,-3.33 1.61,-5.71 0.59,-3.06 0.19,-3.28 0.08,-3.27 -1.64,-9.96 -0.34,-3.29 0.19,-3.33 0.81,-3.17 0.99,-2.14 3.05,-4.75 7.54,-17.24 3.12,-3.61 8.94,-8.69 1.53,-2.66 0.84,-8.41 1.12,-6.96 3.56,-12.85 3.48,-4.77 3.61,-2.18 7.12,0.18 4.78,-2.41 5.65,-3.77 7.21,-14.19 26.9,-50.44 24.57,-34.89 5.82,-5.71 3.82,-1.34 2.39,1.1 7.46,7.62 2.27,1.5 3.44,0.9 4.14,-0.35 6.9,-2.91 2.41,-3.33 0.72,-3.43 -0.87,-2.9 -1.29,-2.57 -3.24,-4.49 -10.93,-12.63 -1.51,-2.4 -1.3,-2.51 -0.77,-2.9 -0.33,-3.05 0.05,-17.46 0.57,-5.53 2.06,-10.18 1.61,-5.25 1.72,-3.87 1.54,-2.28 3.47,-4.02 2.05,-1.76 1.84,-2.02 19.66,-29.74 3.88,-7.03 1.61,-4.9 -1.86,-1.26 -3.05,-0.25 -12.6,2.53 -3.16,0.02 -3.04,-0.6 -2.82,-0.94 -4.7,-2.68 -2.05,-1.87 -1.63,-2.23 -1.09,-2.56 -0.66,-2.66 -0.21,-4.03 -0.38,-1.51 -0.6,-1.4 -1.3,-2.28 -1.17,-3.53 -0.52,-4.1 -0.63,-11.87 50.5,-63.9 3.25,-3.07 3.8,-2.48 2.46,-1.14 9.04,-2.39 20.45,-16.22 2.21,-3.5 2.15,-4.8 -0.56,-4.07 -0.93,-4.25 -0.72,-7.01 -1.53,-3.12 -1.94,-2.13 -11.32,-3.51 -19.04,-3.01 -7.14,-2.9 -4.67,-3.01 -1.44,-1.42 0.07,-2.41 0.59,-2.4 0.68,-5.33 0.72,-3.2 0.9,-1.76 2.04,-1.24 5.45,-1.95 4.76,-2.8 1.53,-1.65 0.77,-1.33 0.6,-2.34 0.39,-2.58 0.7,-2.39 1,-1.7 2.07,-2.24 2.34,-4.08 0.08,-3.07 -1.09,-2.62 -7.33,-6.51 -3.5,-4.58 -1,-2.27 0.5,-2.52 8.87,-13.38 4.36,-4.37 2.82,-2.27 3.34,-6.06 1.75,-1.85 2.34,-0.57 5.35,1.71 3.32,-1.23 1.15,-3.19 -0.07,-8.52 0.79,-5.49 0.7,-2.46 1.84,-0.15 1.44,1.74 1.28,2.17 1.38,3.37 0.54,0.94 1.47,0.61 1.91,-0.29 3.19,-4.16 1.17,-3.85 0.64,-3.95 0.2,-10.43 -0.44,-3.24 -0.87,-3.01 -1.3,-2.6 -1.74,-2.09 -4.2,-2.62 -9.58,-2.15 -13.81,-6.63 -2.16,-2.13 -3.39,-3.97 -5.34,-13.58 -0.83,-4.54 0.1,-3.48 2.48,-5.36 1.67,-2.89 1.54,-1.97 1.96,-1.84 2.27,-1.49 2.68,-1.16 3.09,-0.46 2.96,0.42 3.12,-1.52 2.76,-3.6 2.76,-11.48 0.17,-5.75 -0.83,-4.45 -5.34,-10.33 -3.26,-4.78 -3.38,-4.32 -16.3,-14.66 -14.1,-8.56 -23.61,-8.18 -4.39,-2.85 -1.83,-2.98 -0.66,-3.09 0.59,-2.35 0.67,-1.3 1.64,-1.57 10.77,-7.82 1.53,-1.51 0.6,-2.57 0.55,-4.58 -0.29,-9.1 -0.93,-4.86 -1.6,-3.55 -1.97,-1.83 -2.66,-1.45 -2.39,-0.76 -6.83,-0.47 -33.85,0.02 -13.66,-2.42 -17.57,-7.58 -91.09,-2.27 -38.7,-7.02 -5.68,-2.49 -0.9,-2.61 0.17,-2.87 0.6,-2.97 0.17,-2.93 -0.57,-2.89 -5.29,-6.04 -5.47,-7.6 -9.08,-8.26 -4.46,-1.99 -3.92,-0.78 -20.16,1.92 -4.22,-1.71 -2.5,-2.35 -0.26,-2.91 0.37,-2.26 0.34,-1.03 0.45,-0.97 1.1,-1.9 9.54,-12.53 1.11,-1.99 0.57,-1.77 1.35,-8.42 17.44,-8.24 2.3,-2.56 4.33,-6.32 3.25,-2.14 3.74,-0.63 4.87,1.51 1.81,-0.21 0.68,-1.77 -0.68,-2.55 -1.77,-1.99 -10.13,-4.83 -2.2,-1.54 -3.66,-4.68 -1.91,-10.28 -1.14,-10.84 0.35,-1.54 1.13,-2.68 11.72,-7.56 2.4,-2.3 2.15,-5.3 2.4,-16.85 0.02,-5.46 -0.67,-3.47 -0.93,-1.46 -1.45,-1.81 -1.34,-2.27 -2.22,-5.6 -1.44,-2.48 -1.99,-1.74 -5.22,-2.27 -2.51,-2.07 -2.29,-2.98 -2.23,-5.28 -2.18,-2.87 -2.52,-2.01 -9.2,-4.17 -3.34,-3.69 -1.32,-3.19 0.35,-16.27 -0.99,-27.9 0.43,-5.34 0.45,-0.85 0.82,-3.32 2,-13.47 1.07,-4.63 1.02,-2.63 3.59,-3.08 3.62,-3.95 1.55,-2.2 3.72,-4.01 4.36,-3.29 4.88,-2.88 2.18,-1.62 2.14,-3.29 1.7,-4.33 2.83,-11.55 1.35,-3.08 5.74,-7.69 4.43,-11.05 1.54,-1.64 8.29,-6.68 2.1,-2.91 2.13,-4.15 3.12,-9.88 0.78,-5.9 0.48,-25.69 20.6,-35.69 -33.28,-20.37 -11.81,-14.41 -1.08,-4.28 -0.27,-2.48 1.12,-1.98 3.1,-4.36 4.14,-7.27 6.94,-7.55 1.2,-0.92 1.36,-2.81 0.95,-4.24 -1.18,-9.63 -2.28,-3.73 -3.19,-1.56 -2.6,1.06 -2.29,1.5 -9.91,10.47 -4.13,0.23 -5.56,-1.1 -33.2,-17.57 -3.09,-0.98 -21.36,-1.78 -8.62,0.8 -24.95,19.99 -33.47,17.12 -6.47,1.17 -5.11,-2.37 -9.52,-2.25 -10.56,-0.38 -4.7,-1.23 -2.45,-1.2 -0.5,-1.91 0.03,-1.61 0.12,-0.91 0.45,-0.92 2.1,-3.17 0.56,-1.4 0.59,-2.32 0.16,-2.99 -0.96,-6.34 -1.7,-6.3 -7.04,-20.42 -4.71,-6.82 -11.14,-8.48 -2.13,-3.37 -0.58,-3.35 -1.47,-1.98 -1.91,-1.59 -5.86,-2.92 -11.92,-7.69 -3.27,-3.76 -1.98,-3.52 -0.78,-4.69 -1.92,-7.14 -2.21,-2.51 -2.99,-1.4 -3.04,-0.75 -29.49,-19.79 -5.02,-2.33 -6.6,-0.16 -2.82,0.81 -1.85,1.64 -1.22,1.87 -0.34,1.26 -0.36,2.07 -0.45,1.14 -2.29,1.57 -3.56,0.63 -6.77,-0.91 -3.53,-1.73 -2.55,-2.17 -1.57,-2.21 -1.47,-2.41 -0.83,-2.45 -0.28,-2.39 0.24,-1.52 0.89,-1.77 0.68,-1.94 -0.08,-1.61 -1.46,-3.56 -5.12,-9.91 -2.57,-3.03 -3.52,-2.1 -9.34,-2.56 -2.12,-2.28 -0.28,-2.62 0.24,-1.23 2.24,-5.94 -34.75,0.84 -10.42,-2.34 -4,-6.67 -3.7,-4.82 -2.9,-0.91 -2.17,0.95 -14.34,12.21 -2.8,0.13 -1.37,-1.91 -1.79,-3.36 -3.39,-3.79 -9.96,-5.37 -4.27,-3.1 -7.77,-9.59 -34.99,-29.87 -24.31,17.34 -6.23,6.62 -0.13,1.6 -0.3,6.84 -0.83,6.31 -1.86,2.22 -2.81,0.08 -2.35,-1.35 -1.81,-1.75 -4.5,-5.8 -1.83,-0.34 -8.73,-0.1 -2.9,-0.87 -1.92,-1.63 -0.62,-2.19 -0.08,-2.59 0.79,-3.18 0.78,-2.06 1.1,-2.26 1.21,-1.82 5.98,-12.46 0.04,-3.33 -1.58,-3.18 -4.89,-6.21 -3.55,-1.48 -3.13,0.02 -2.83,2.38 -2.3,2.45 -3.3,5.53 -4,9.9 -1.22,3.49 -3.11,4.39 -4.79,3.63 -12.58,6.93 -5.09,1.72 -3.01,-0.55 -0.31,-1.84 0.36,-2.7 0.67,-2.29 0.77,-1.83 2.31,-3.74 -2.02,-2.98 -4.59,-4.71 -16.7,-5.4 -8.34,-7.3 -29.21,-17.4 -0.75,-1.32 0.02,-1.67 0.13,-2.53 1.89,-4.98 2.52,-4.03 16.84,-17.68 5.55,-3.62 2.59,-0.49 1.72,1.43 1.7,2.4 7.27,7.06 3.66,1.5 2.95,0.03 1.52,-1.1 1.09,-1.05 1.1,-1.34 0.01,-1.29 -0.3,-1.85 -1.06,-2.28 -1.91,-2.75 -0.89,-0.73 -0.75,-0.84 -0.96,-0.93 -1.18,-1.56 -0.74,-1.22 -0.42,-1.55 -0.08,-2.07 0.24,-2.62 0.13,-2.26 -2.43,-4.66 -5.12,-6.23 -19.71,-18.07 -5.48,-2.93 -2.52,-0.26 -7.36,1.11 -20.35,25.87 -9.23,5.03 -5,-0.73 -4.44,0.59 -48.72,21.77 -11.79,3.13 -19.72,17.61 -4.03,6 -0.57,3.16 2.38,-0.39 10.72,-4.69 6.31,-1.39 3.13,0 2.69,0.88 0.84,2.91 -0.68,4.88 -4.72,9.27 -1.22,5.11 0.51,3.45 5.78,5.88 1.82,2.52 1.58,3.69 1.39,2.59 2.14,1.4 2.7,-0.27 4.87,-1.74 2.69,0.08 5.16,2.05 19.65,2.53 2.56,3.12 1.57,5.53 -2.94,28.14 0.39,4.14 0.83,4.38 0.27,6.38 -1.23,4.3 -3.05,4.54 -0.68,3.36 0.63,2.59 3.83,4.8 1.48,3.35 -0.34,2.53 -1.85,1.93 -5.41,2.31 -3.36,3.48 -4.69,7.14 -13.85,30.81 -1.46,7.35 1.37,2.65 6.35,0.63 2.57,1 1.96,1.91 1.36,4.15 0.7,6.3 0.11,12.16 0.81,6.5 1.69,2.97 2.37,-0.24 4.65,-2.95 1.94,-0.78 2.8,-0.44 3.11,0.2 2.57,1.63 0.2,1.84 -6.77,11.58 -1.11,4.27 -0.03,3.22 1.16,2.2 1.5,1.45 1.39,0.53 1.4,-0.11 1.51,-0.64 17.02,-12.75 2.05,-1.14 4.18,1.71 5.9,12.47 -13.71,14.36 -4.72,11.28 -1.91,9.75 -1.98,4.7 -2.5,3.36 -13.79,6.55 -2.5,3.37 -1.43,4.18 -1.45,6.03 -1.73,1.82 -3.22,-0.54 -7.73,-3.6 -8.57,-2 -5.04,0.25 -5.7,1.16 -8.61,3.61 -3.14,3.77 -2.83,4.89 -2.2,1.97 -2.57,0.27 -2.46,-1.09 -2.14,-1.71 -3.51,-4.05 -1.59,-2.25 -1.81,-2.08 -3.21,-1.69 -4.82,-0.81 -9.12,0.28 -5.7,1.86 -3.6,2.18 -1.62,2.41 -0.88,2.81 -0.34,3.16 -0.13,3.33 0.19,3.77 -0.13,3.64 -2.39,4.41 -2.8,1.54 -11.16,0.3 -12.58,-12.29 -5.86,5.53 -32.02,-10.18 -10.33,0.32 -1.84,1.92 -1.19,2.52 -0.98,3.18 -0.45,4.14 -0.03,5.86 0.51,5.78 1.05,3.97 1.49,2.71 1.92,1.91 4.59,2.95 1.63,2.66 0.84,3.99 -1.65,7.96 -0.35,4.99 0.51,4.03 1.28,2.31 2.23,2.77 0.3,3.39 -0.45,5.17 -2.11,13.32 -0.36,7.41 0.18,6.1 0.83,4.94 0.85,1.68 1.28,1.53 1.49,1.3 2.02,2.65 1.37,2.71 1.16,3.05 0.94,4.84 0.63,2.64 0.85,1.22 2.02,1.67 8.96,5.51 3.83,3.48 3.82,4.99 2.01,3.63 6.36,16.31 3.97,14.13 0.8,8.92 -0.82,11.46 0.51,5.43 1.15,3.46 4.88,5.09 0.31,1.66 -0.86,1.72 -2.26,1.54 -5.67,2.18 -3.64,0.18 -2.51,3.6 -0.34,2.53 1.06,2.54 6.39,8.37 3.49,5.83 1.57,3.91 1.88,6.8 -2.25,2.28 -1.93,0.85 -3.73,-1.28 -4.36,-2.33 -7.07,-2.74 -15.67,-2.57 -30.79,1.1 -3.74,-0.59 -12.14,-5.32 -7.15,-1.67 -6.98,1.64 9.62,28.95 1.43,12.42 -1.32,8.33 -1.3,5.4 -0.97,2.58 -1.72,3.5 -3.37,5.38 -16.35,7.87 -9.06,0.5 -17.72,-2.96 -4.06,0.21 -1.39,1.15 1.7,2.07 4.89,4.67 2.97,3.41 2.65,4.49 1.09,2.24 7.56,30.58 0.93,6.13 -0.86,2.55 -26.49,12 -2.87,0.11 -3.51,-0.42 -2.88,-0.9 -2.65,-1.59 -1.6,-1.44 -1.27,-1.78 -1.16,-2.25 -0.42,-1.44 -0.21,-1.61 0.22,-2.35 -3.09,-1.22 -6.32,1.42 -17.49,8.57 -6.29,4.24 -2.99,3.1 1.06,1.32 1.49,1.44 1.06,1.73 0.53,1.67 -0.11,2.7 -0.22,1.9 0.1,1.2 0.43,1.07 0.95,1.03 4.15,2.63 3.82,3.46 1.91,2.42 1.9,3.28 0.74,1.95 0.53,2.48 0.62,4.22 -0.64,2.67 -8.46,19.93 -5.68,17.74 -0.54,3.91 0.21,2.27 0.53,1.75 7.19,13.13 1.06,3.1 -0.23,4.52 -0.87,6.69 -7.67,10.9 -19.06,8.12 -5.75,6.08 -0.54,2.79 0.11,2.55 0.94,3.34 2.33,6.33 0.84,5.26 -2.35,3.44 -5.1,3.24 -48.96,6.74 -13.82,-1.82 -8.81,0.77 -10.5,-1.38 -8.17,-2.73 -3.29,-0.23 -1.6,1.01 0.64,3.36 2.87,6.03 1.27,2.02 1.59,2.93 1.06,2.76 0.32,3.44 -0.21,3.74 -1.07,5.66 -1.16,3.82 -6.79,15.01 -4.27,11.72 21.44,6.21 15.26,-1.31 2.86,1.32 1.17,2.36 -1.28,9.16 -2.02,6.47 -1.38,3.07 -1.16,3.36 -0.43,2.88 2.33,5.75 4.55,4.28 14.95,10.33 1.48,2.53 -1.27,1.18 -3.07,1.35 -15.17,3.55 -22.66,10.48 -12.41,3.08 -2.12,1.58 -2.01,2.44 -2.33,5 -0.52,3.28 0.21,2.44 1.48,3.94 1.38,6.46 1.48,9.92 2.86,30.75 1.19,7.18 4.12,11.56 2.12,4.08 2.43,2.99 3.27,1.52 3.7,0.52 15.73,-2.04 5.5,0.64 5.73,5.03 3.59,2.05 7.5,2.88 2.74,4.08 11.89,25.94 22.35,36.45 -11.98,37.37 -0.74,4.65 -0.54,5.87 1.58,2.07 4.1,3.17 2.53,1.49 3.37,3.4 2.83,4.38 2.94,8.11 -0.33,3.39 -1.69,2.06 -5.37,1.03 -2.63,0.91 -2.64,1.67 -2.21,1.77 -1.48,1.52 -9.42,13.87 -3.9,2.21 -3.58,0.83 -3.05,-0.69 -37.7,-20.06 -18.01,-18.69 -3.51,-4.83 -6.74,-15.2 -10.03,-31.61 -1.79,-3.56 -1.9,-2.79 -1.79,-1.72 -45.51,-10.1 -4.32,-2.64 -19.67,-7.24 -22.06,-2.45 -69.88,7.81 -7.63,2.01 -1.15,1.35 -1.68,2.6 -0.73,2.7 -0.5,4.37 -0.09,5.41 0.45,6.12 2.16,12.37 0.22,3.68 -0.72,2.79 -2.2,5.18 -1.04,3.66 -0.29,4.71 0.12,5.35 1.63,10.54 0.33,4.05 -0.39,7.13 -1.96,10.07 -18.48,34.39 -5.88,4.4 -5.33,5.48 -11.38,4.74 -4.2,0.17 -3.06,-0.27 -33.68,-16.29 -10.95,-2.15 -33.6,1.31 -13.79,-1.69 -3.29,-3.63 -7.34,-5.72 -6.13,-3.81 -4.34,-3.59 -1.28,-1.71 -0.85,-1.84 -0.65,-2.18 -5.47,-27.37 -1.3,-3.9 -2.76,-3.72 -4.78,-3.93 -11.87,-5.54 -38.65,-4.79 -5.78,1.63 -5.24,2.84 -2.74,0.77 -15.49,0.08 -15.15,5.89 13.1,-45.59 3.42,-6.01 4.99,-7.29 44.06,-21.25 19.52,-14.42 4.95,-5.96 3.94,-8.59 5.78,-17.46 4.19,-18.72 2.71,-19.04 0.39,-19.61 -1.79,-40.56 1.19,-39.79 1.93,-10.65 1.16,-1.1 14.45,-9.82 7.3,-6.57 0.51,-2.62 -0.87,-3.79 -3.66,-8.02 -3.91,-6.81 -3.64,-5.27 -3.53,-3.99 -6.72,-5.47 -27.53,-17.3 -3,-3.45 -2.37,-4.58 -5.66,-16.57 -1.62,-3.52 -1.39,-1.51 -3.52,-1.98 -4.89,-1.25 -86.56,25.65 -22.2,-19.19 -11.83,-14.13 -4.33,-7.37 -8.62,-7.84 -12.4,-7.05 -48.59,-17.82 -24.47,9.39 -24.96,-4.11 -10.59,-4.94 -30.19,-28.24 -3.86,-2.1 -2.76,0.12 -3.15,3.04 -11.81,6.92 -19.18,6.75 -3.38,1.77 -1.57,1.55 -5.37,17.73 -2.65,7.02 -5.65,13 1.16,5.99 7.98,8.56 12.14,9.36 17.25,7.71 13.31,2.88 8.81,0.33 7.38,1.4 2.94,5.07 1.79,6.27 0.28,5.49 4.54,13.79 7.31,14.56 2.42,6.63 0.17,4.54 -2.52,2.08 -3.57,2 -12.24,4.65 -8.4,0.67 -12.33,-2.27 -8.69,-0.13 -3.37,1.89 -2.61,2.97 -1.16,7.08 -1.63,4.91 -0.84,0.48 -6.16,1.35 -6.35,0.44 -4.75,1.85 -2.82,2.35 -1.94,5.09 0.16,3.27 2.39,3.96 9.15,9.43 4.12,7.01 1.55,4.35 0.16,3.39 -0.91,3.12 -3.7,7.47 -1.41,4.68 -0.18,2.35 0.13,1.7 2.6,3.96 12.61,12.69 4.21,6.06 1.43,3.22 0.14,3.02 -3.7,7.04 -4.04,6.01 -1.33,2.86 -0.91,3.01 -1.38,6.74 0.37,3.45 1.73,2.56 2.55,1.11 20.87,2.75 2.44,1 2.47,2.26 -0.49,2.82 -1.54,3.25 -6.51,10.26 -12.23,23.46 -8.99,13.79 -5.86,5.69 -6.02,7.22 -3.48,6.67 -4.1,1.38 -3.27,0.22 -44.96,-16.97 -4.53,0.68 -4.32,2.14 -7.34,9.66 -2.28,2.37 -45.54,29.84 -16.45,6.33 -2.8,2.98 -1.76,3.77 -5.11,38.38 -1.46,6.18 -2.23,5.21 -2.17,2.11 -3.22,2.53 -48.3,15.97 -2.42,0.11 -2.97,-1.21 -1.62,-1.69 -3.36,-5.06 -8.95,-35.35 0.77,-3.99 1.99,-5.9 5.15,-2.75 4.52,-6.24 1.21,-2.72 -0.35,-2.01 -4.78,-1.51 -3.17,-4 -2.55,-6.13 -4.53,-15.86 -3.64,-8.27 -0.63,0.1 -1.19,-1.01 -1.73,-2.1 -3.38,-5.51 -2.92,-3.62 -0.74,-0.27 -1.38,-0.15 -12.73,2.44 -4.36,0.21 -9.74,-1.64 -3.74,-1.94 -32.04,-25.64 -35.46,-35.31 -5.16,-3.69 -7.37,-3.43 -17.63,-3.37 -3.09,-1.37 -3.37,-2.22 -10.25,-9.2 -33.24,-21.83 -28.39,-5.59 -94.04,-1.57 -3.99,-3.11 -5.11,-5.16 -9.82,-6.76 -28.5,-11.23 -18.01,1.26 -4.06,7.96 -5.45,23.93 0,0 1.06,20.39 5.35,16.62 14.54,31.44 6.79,40.32 0,0.04 -8.79,28.88 -39.49,68.56 -4.34,-1.95 -4.43,-7.35 -6.49,-5.8 -17.1,-4.46 -17.99,-0.63 -18.98,3.6 -34.79,14.5 -53.52,9.24 -17.6,9.38 -12.87,16 -3.72,16.77 -0.35,19.57 -1.75,19.94 -7.71,17.65 -0.03,0.08 11.17,0.65 38.22,17.87 0.05,0.02 -21.54,19.49 -4.54,7.31 0.09,9.17 0,0.06 3.37,9.15 1.64,9.91 0.01,0.05 -5.28,11.8 -0.02,0.05 11.67,7.93 12.66,8.61 22.88,6.36 64.28,-0.97 35.52,-11.91 33.54,4.05 10.09,-4.6 23.92,-8.25 12.95,23.45 6,39.07 9.53,119.83 6.93,37.14 7.29,18.98 5.55,14.44 57.52,85.58 15.52,36.87 7.04,35.31 2.04,39.82 0.01,0.04 -4.22,79.82 -2.18,9.69 -3.14,5.92 -2.34,7.14 -0.14,13.29 0,0.05 1.88,8.93 10.06,24.24 5,18.97 2.55,17.29 0,0.02 -0.28,17.83 -0.69,31.31 6.61,3.52 7.82,7.97 6.03,8.01 6.22,11.73 2.63,13.19 -4.65,12.42 17.46,25.11 9.13,4.38 15.49,-0.14 14.3,-4.14 22.66,-15.08 12.51,-5.41 -15.49,24 -26.2,10.33 -151.43,9.16 -24.29,12.95 -8.91,31.25 2.18,82.4 3.4,18.57 13.71,33.45 3.34,16.53 5.79,10.02 12.98,-0.64 26.6,-6.46 3.83,8.87 6.36,3.2 5.08,10.71 -0.73,14.11 -5.68,8.12 -19.11,10.31 -8.39,9.09 -1.01,14.58 9.73,12.07 21.73,14.33 24.62,26.31 13.11,8.55 25.2,25.02 52.61,19.1 101.91,9.16 6.99,-5.07 6.72,-9.86 15.55,-4.04 97.86,18.37 198.46,24.46 52.58,-16.13 -0.12,-8.28 -4.72,-31.19 17.93,-40.57 26.82,-35.49 22,-15.8 -0.09,-6.89 -5.82,-14.02 10.21,-5.13 14.6,-4.37 7.32,-11.7 -2.25,-20.04 -6.43,-10.13 -14.45,-10.61 -12.07,-6.03 -26.14,-2.05 -11.78,-7.15 11.65,-37.3 5.86,-14.05 8.9,-9.83 8.49,3.98 7.66,3.15 11.12,-0.51 7.73,-4.46 12.5,-14.75 4.66,-3.21 5.31,-4.78 5.34,-10.53 6.85,-10.54 9.6,-4.82 11.07,0.23 8.12,1.69 7.16,4.24 8.26,7.97 14.34,23.19 15.1,38.24 3.96,38.02 -19,22.64 -26.11,-6.69 -13.92,2.53 1.48,16.28 5.91,18.17 5.16,37.77 5.71,15.7 8.88,9.28 11.29,4.34 27.63,1.08 12.67,-5.98 9.62,-13.65 7.97,-15.31 7.94,-10.94 26.69,-13.96 56.39,-11.57 25.6,-12.59 -0.05,-8.28 -15.99,-13.52 -14.68,-17.67 -10.86,-23.89 -4.39,-32.28 0.27,-62.5 3.76,-27.51 8.83,-20.58 2.15,27.55 -6.63,69.49 0.85,32.8 10.25,24.13 15.29,10.71 13.83,13.08 2.83,-2.78 7.92,-15.46 3.48,-2.92 4.84,1.18 1.23,0.02 0.31,-0.03 0.31,-0.18 4.37,-8.9 1.64,-1.8 1.33,-0.95 1.03,0.31 1.17,0.51 13.85,12.98 10.36,16.01 1.05,3.59 0.85,6.03 0.55,7.33 -0.47,8.25 -4.3,22.91 -2.42,8.52 -5.18,10.66 -1.61,5.76 -0.59,5.95 1.05,4.31 0.84,2.78 1.56,3.13 1.96,2.83 2.37,2.92 -0.6,2.19 -3.69,1.17 -27.12,-1.03 -14.45,2.67 -32.36,12.17 -3.22,9.2 -4.54,21.24 -9.14,25.37 -1.98,18.58 1.64,18.73 4.17,16.36 25.03,61.63 17.96,66.87 11.41,29.71 9.46,14.09 12.88,12.32 14.68,8.69 14.79,3.28 13.82,-1.01 7.7,-3.48 16.12,-18.47 23.27,-19.9 24.81,-13.07 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2663.3,7585.92 0,0 51.42,-12.93 28.23,0.82 47.86,11.8 26.28,-2.07 12.4,14.5 52.26,12.93 52.1,-0.41 11.12,8.14 8.96,-6.7 10.78,-1.94 22.35,1.2 5.66,-3.83 14.6,-19.03 64.73,-113.29 26.68,-31.11 18.68,-15.15 9.12,-11.64 9.32,-33.57 45.81,-66.64 10.27,-9.17 12.33,-5.47 15.75,-1.76 8.24,-3.96 39.72,-26.68 44.5,-9.46 0.56,-4.59 2.9,-39.58 5.93,-6.44 1.39,-2.45 0.97,-3.9 1.16,-2.52 1.88,-2.05 4.14,-2.89 1.57,-2.22 1.59,-3.89 3.2,-10.03 2.75,-6.7 3.99,-7.54 4.09,-5.99 5.21,-6.09 22.01,-20.38 2.69,-0.66 2.55,1.32 8.09,12.75 3.47,2.77 5.32,2.08 3.24,-0.39 2.91,-2.23 3.68,-5.93 1.9,-11.6 0.54,-10.28 0.46,-3.85 2.4,-2.73 4.02,0.06 13.1,7.15 4.11,1.12 3.34,-0.88 12.37,-8.22 4.54,-0.4 6.68,1.21 17.14,7.4 10.93,6.83 1.62,1.92 0.28,2.19 -0.13,2.12 -0.44,1.6 -0.34,2.36 -0.13,1.95 1.91,2.9 4.19,2.42 24.62,8.53 4.73,0.59 10.8,-12.54 8.13,-6.09 13.48,-3.46 7.9,-8.68 7.13,-9.94 10.95,-7.65 11.14,-2.28 36.54,3.09 1.39,3.13 14.49,19.92 6.52,4.26 6.17,2.18 28.33,0.52 14.98,-0.41 24.03,-8.63 95.55,-55.32 27.57,-8.89 20.92,9.32 49.35,3.2 22.9,-5.41 14.98,-17.84 2.21,-15.71 0.64,-17.93 3.56,-14.66 11.06,-5.86 12.96,-2.7 7.97,-7.36 14.17,-19.46 21.74,-16.73 61.61,-33.61 75.3,-66.99 19.07,-11.56 6.6,-7.06 8.03,-5.11 6.74,5.02 6.15,8.24 10.26,7.38 5.28,6.25 6.74,5.84 8.45,1.58 5.7,-3.16 4.12,-5.89 4.05,-7.21 5.52,-7.37 7.26,-12.21 4.71,-0.37 8.49,9.76 6.67,4.69 5.26,-4.55 5.17,-7.38 10.99,-6.16 4.62,-5.95 20.19,-35.2 25.5,-28.23 8.99,-5.11 2.31,-1.31 14.49,-2.11 12.35,3.89 21.32,16.04 14.01,3.76 15.57,-4.39 20.66,-20.08 12.62,-4.28 15.49,-1.53 33.33,-11.93 -11.72,-36.99 -6.48,-5.09 -8.73,-0.43 -5.6,2.19 -3.76,0.47 -6.7,-1.9 -3.46,-3.34 -1.87,-3.09 -2.97,-10.38 -0.52,-3.09 -2.36,-22.06 0.25,-7.1 0.33,-3.39 1.14,-6.05 1.86,-5.46 1.25,-5.94 -1.19,-1.77 -1.22,-0.91 -12.68,-1.1 -6,-1.5 -37.73,-38.74 -2.39,-1.4 -23.35,-7.11 -40.34,-18.87 -13.85,-1.13 -5.32,2.19 -3.83,-1.22 -3.88,-2.59 -5.58,-5.24 -4.13,-1.51 -3.23,-0.28 -1.9,0.81 -1.6,0.98 -1.41,1.86 -1.32,2.2 -1.03,2.73 -1.43,2.28 -2.07,1.84 -8.56,3.21 -2.14,1.6 -1.73,2.14 -1.94,1.95 -2.35,1.6 -32.64,5.13 -39.36,-4.14 -5.24,0.77 -12.29,6.43 -20.41,4.71 -11.07,0.57 -13.2,-1.72 -8.07,-3.74 -1.22,-1.21 -0.49,-0.85 -0.7,-1.17 -0.88,-2.21 -0.96,-2.84 -0.64,-3.24 -0.43,-3.32 -0.12,-3.2 0.05,-5.57 -0.27,-1.82 -0.87,-2.36 -1.51,-2.02 -12.45,-10.38 -6.33,-9.03 -12.58,-7.1 -18.42,-6.45 -10.09,-5.62 -8.96,-2.19 -28.99,0.71 -31.67,-3.18 -22.27,-9.41 -2.21,-3.71 1.61,-5.68 -0.12,-3.86 -1.64,-5.33 -0.64,-3.98 0.29,-3.33 1.61,-5.71 0.59,-3.06 0.19,-3.28 0.08,-3.27 -1.64,-9.96 -0.34,-3.29 0.19,-3.33 0.81,-3.17 0.99,-2.14 3.05,-4.75 7.54,-17.24 3.12,-3.61 8.94,-8.69 1.53,-2.66 0.84,-8.41 1.12,-6.96 3.56,-12.85 3.48,-4.77 3.61,-2.18 7.12,0.18 4.78,-2.41 5.65,-3.77 7.21,-14.19 26.9,-50.44 24.57,-34.89 5.82,-5.71 3.82,-1.34 2.39,1.1 7.46,7.62 2.27,1.5 3.44,0.9 4.14,-0.35 6.9,-2.91 2.41,-3.33 0.72,-3.43 -0.87,-2.9 -1.29,-2.57 -3.24,-4.49 -10.93,-12.63 -1.51,-2.4 -1.3,-2.51 -0.77,-2.9 -0.33,-3.05 0.05,-17.46 0.57,-5.53 2.06,-10.18 1.61,-5.25 1.72,-3.87 1.54,-2.28 3.47,-4.02 2.05,-1.76 1.84,-2.02 19.66,-29.74 3.88,-7.03 1.61,-4.9 -1.86,-1.26 -3.05,-0.25 -12.6,2.53 -3.16,0.02 -3.04,-0.6 -2.82,-0.94 -4.7,-2.68 -2.05,-1.87 -1.63,-2.23 -1.09,-2.56 -0.66,-2.66 -0.21,-4.03 -0.38,-1.51 -0.6,-1.4 -1.3,-2.28 -1.17,-3.53 -0.52,-4.1 -0.63,-11.87 50.5,-63.9 3.25,-3.07 3.8,-2.48 2.46,-1.14 9.04,-2.39 20.45,-16.22 2.21,-3.5 2.15,-4.8 -0.56,-4.07 -0.93,-4.25 -0.72,-7.01 -1.53,-3.12 -1.94,-2.13 -11.32,-3.51 -19.04,-3.01 -7.14,-2.9 -4.67,-3.01 -1.44,-1.42 0.07,-2.41 0.59,-2.4 0.68,-5.33 0.72,-3.2 0.9,-1.76 2.04,-1.24 5.45,-1.95 4.76,-2.8 1.53,-1.65 0.77,-1.33 0.6,-2.34 0.39,-2.58 0.7,-2.39 1,-1.7 2.07,-2.24 2.34,-4.08 0.08,-3.07 -1.09,-2.62 -7.33,-6.51 -3.5,-4.58 -1,-2.27 0.5,-2.52 8.87,-13.38 4.36,-4.37 2.82,-2.27 3.34,-6.06 1.75,-1.85 2.34,-0.57 5.35,1.71 3.32,-1.23 1.15,-3.19 -0.07,-8.52 0.79,-5.49 0.7,-2.46 1.84,-0.15 1.44,1.74 1.28,2.17 1.38,3.37 0.54,0.94 1.47,0.61 1.91,-0.29 3.19,-4.16 1.17,-3.85 0.64,-3.95 0.2,-10.43 -0.44,-3.24 -0.87,-3.01 -1.3,-2.6 -1.74,-2.09 -4.2,-2.62 -9.58,-2.15 -13.81,-6.63 -2.16,-2.13 -3.39,-3.97 -5.34,-13.58 -0.83,-4.54 0.1,-3.48 2.48,-5.36 1.67,-2.89 1.54,-1.97 1.96,-1.84 2.27,-1.49 2.68,-1.16 3.09,-0.46 2.96,0.42 3.12,-1.52 2.76,-3.6 2.76,-11.48 0.17,-5.75 -0.83,-4.45 -5.34,-10.33 -3.26,-4.78 -3.38,-4.32 -16.3,-14.66 -14.1,-8.56 -23.61,-8.18 -4.39,-2.85 -1.83,-2.98 -0.66,-3.09 0.59,-2.35 0.67,-1.3 1.64,-1.57 10.77,-7.82 1.53,-1.51 0.6,-2.57 0.55,-4.58 -0.29,-9.1 -0.93,-4.86 -1.6,-3.55 -1.97,-1.83 -2.66,-1.45 -2.39,-0.76 -6.83,-0.47 -33.85,0.02 -13.66,-2.42 -17.57,-7.58 -91.09,-2.27 -38.7,-7.02 -5.68,-2.49 -0.9,-2.61 0.17,-2.87 0.6,-2.97 0.17,-2.93 -0.57,-2.89 -5.29,-6.04 -5.47,-7.6 -9.08,-8.26 -4.46,-1.99 -3.92,-0.78 -20.16,1.92 -4.22,-1.71 -2.5,-2.35 -0.26,-2.91 0.37,-2.26 0.34,-1.03 0.45,-0.97 1.1,-1.9 9.54,-12.53 1.11,-1.99 0.57,-1.77 1.35,-8.42 17.44,-8.24 2.3,-2.56 4.33,-6.32 3.25,-2.14 3.74,-0.63 4.87,1.51 1.81,-0.21 0.68,-1.77 -0.68,-2.55 -1.77,-1.99 -10.13,-4.83 -2.2,-1.54 -3.66,-4.68 -1.91,-10.28 -1.14,-10.84 0.35,-1.54 1.13,-2.68 11.72,-7.56 2.4,-2.3 2.15,-5.3 2.4,-16.85 0.02,-5.46 -0.67,-3.47 -0.93,-1.46 -1.45,-1.81 -1.34,-2.27 -2.22,-5.6 -1.44,-2.48 -1.99,-1.74 -5.22,-2.27 -2.51,-2.07 -2.29,-2.98 -2.23,-5.28 -2.18,-2.87 -2.52,-2.01 -9.2,-4.17 -3.34,-3.69 -1.32,-3.19 0.35,-16.27 -0.99,-27.9 0.43,-5.34 0.45,-0.85 0.82,-3.32 2,-13.47 1.07,-4.63 1.02,-2.63 3.59,-3.08 3.62,-3.95 1.55,-2.2 3.72,-4.01 4.36,-3.29 4.88,-2.88 2.18,-1.62 2.14,-3.29 1.7,-4.33 2.83,-11.55 1.35,-3.08 5.74,-7.69 4.43,-11.05 1.54,-1.64 8.29,-6.68 2.1,-2.91 2.13,-4.15 3.12,-9.88 0.78,-5.9 0.48,-25.69 20.6,-35.69 -33.28,-20.37 -11.81,-14.41 -1.08,-4.28 -0.27,-2.48 1.12,-1.98 3.1,-4.36 4.14,-7.27 6.94,-7.55 1.2,-0.92 1.36,-2.81 0.95,-4.24 -1.18,-9.63 -2.28,-3.73 -3.19,-1.56 -2.6,1.06 -2.29,1.5 -9.91,10.47 -4.13,0.23 -5.56,-1.1 -33.2,-17.57 -3.09,-0.98 -21.36,-1.78 -8.62,0.8 -24.95,19.99 -33.47,17.12 -6.47,1.17 -5.11,-2.37 -9.52,-2.25 -10.56,-0.38 -4.7,-1.23 -2.45,-1.2 -0.5,-1.91 0.03,-1.61 0.12,-0.91 0.45,-0.92 2.1,-3.17 0.56,-1.4 0.59,-2.32 0.16,-2.99 -0.96,-6.34 -1.7,-6.3 -7.04,-20.42 -4.71,-6.82 -11.14,-8.48 -2.13,-3.37 -0.58,-3.35 -1.47,-1.98 -1.91,-1.59 -5.86,-2.92 -11.92,-7.69 -3.27,-3.76 -1.98,-3.52 -0.78,-4.69 -1.92,-7.14 -2.21,-2.51 -2.99,-1.4 -3.04,-0.75 -29.49,-19.79 -5.02,-2.33 -6.6,-0.16 -2.82,0.81 -1.85,1.64 -1.22,1.87 -0.34,1.26 -0.36,2.07 -0.45,1.14 -2.29,1.57 -3.56,0.63 -6.77,-0.91 -3.53,-1.73 -2.55,-2.17 -1.57,-2.21 -1.47,-2.41 -0.83,-2.45 -0.28,-2.39 0.24,-1.52 0.89,-1.77 0.68,-1.94 -0.08,-1.61 -1.46,-3.56 -5.12,-9.91 -2.57,-3.03 -3.52,-2.1 -9.34,-2.56 -2.12,-2.28 -0.28,-2.62 0.24,-1.23 2.24,-5.94 -34.75,0.84 -10.42,-2.34 -4,-6.67 -3.7,-4.82 -2.9,-0.91 -2.17,0.95 -14.34,12.21 -2.8,0.13 -1.37,-1.91 -1.79,-3.36 -3.39,-3.79 -9.96,-5.37 -4.27,-3.1 -7.77,-9.59 -34.99,-29.87 -24.31,17.34 -6.23,6.62 -0.13,1.6 -0.3,6.84 -0.83,6.31 -1.86,2.22 -2.81,0.08 -2.35,-1.35 -1.81,-1.75 -4.5,-5.8 -1.83,-0.34 -8.73,-0.1 -2.9,-0.87 -1.92,-1.63 -0.62,-2.19 -0.08,-2.59 0.79,-3.18 0.78,-2.06 1.1,-2.26 1.21,-1.82 5.98,-12.46 0.04,-3.33 -1.58,-3.18 -4.89,-6.21 -3.55,-1.48 -3.13,0.02 -2.83,2.38 -2.3,2.45 -3.3,5.53 -4,9.9 -1.22,3.49 -3.11,4.39 -4.79,3.63 -12.58,6.93 -5.09,1.72 -3.01,-0.55 -0.31,-1.84 0.36,-2.7 0.67,-2.29 0.77,-1.83 2.31,-3.74 -2.02,-2.98 -4.59,-4.71 -16.7,-5.4 -8.34,-7.3 -29.21,-17.4 -0.75,-1.32 0.02,-1.67 0.13,-2.53 1.89,-4.98 2.52,-4.03 16.84,-17.68 5.55,-3.62 2.59,-0.49 1.72,1.43 1.7,2.4 7.27,7.06 3.66,1.5 2.95,0.03 1.52,-1.1 1.09,-1.05 1.1,-1.34 0.01,-1.29 -0.3,-1.85 -1.06,-2.28 -1.91,-2.75 -0.89,-0.73 -0.75,-0.84 -0.96,-0.93 -1.18,-1.56 -0.74,-1.22 -0.42,-1.55 -0.08,-2.07 0.24,-2.62 0.13,-2.26 -2.43,-4.66 -5.12,-6.23 -19.71,-18.07 -5.48,-2.93 -2.52,-0.26 -7.36,1.11 -20.35,25.87 -9.23,5.03 -5,-0.73 -4.44,0.59 -48.72,21.77 -11.79,3.13 -19.72,17.61 -4.03,6 -0.57,3.16 2.38,-0.39 10.72,-4.69 6.31,-1.39 3.13,0 2.69,0.88 0.84,2.91 -0.68,4.88 -4.72,9.27 -1.22,5.11 0.51,3.45 5.78,5.88 1.82,2.52 1.58,3.69 1.39,2.59 2.14,1.4 2.7,-0.27 4.87,-1.74 2.69,0.08 5.16,2.05 19.65,2.53 2.56,3.12 1.57,5.53 -2.94,28.14 0.39,4.14 0.83,4.38 0.27,6.38 -1.23,4.3 -3.05,4.54 -0.68,3.36 0.63,2.59 3.83,4.8 1.48,3.35 -0.34,2.53 -1.85,1.93 -5.41,2.31 -3.36,3.48 -4.69,7.14 -13.85,30.81 -1.46,7.35 1.37,2.65 6.35,0.63 2.57,1 1.96,1.91 1.36,4.15 0.7,6.3 0.11,12.16 0.81,6.5 1.69,2.97 2.37,-0.24 4.65,-2.95 1.94,-0.78 2.8,-0.44 3.11,0.2 2.57,1.63 0.2,1.84 -6.77,11.58 -1.11,4.27 -0.03,3.22 1.16,2.2 1.5,1.45 1.39,0.53 1.4,-0.11 1.51,-0.64 17.02,-12.75 2.05,-1.14 4.18,1.71 5.9,12.47 -13.71,14.36 -4.72,11.28 -1.91,9.75 -1.98,4.7 -2.5,3.36 -13.79,6.55 -2.5,3.37 -1.43,4.18 -1.45,6.03 -1.73,1.82 -3.22,-0.54 -7.73,-3.6 -8.57,-2 -5.04,0.25 -5.7,1.16 -8.61,3.61 -3.14,3.77 -2.83,4.89 -2.2,1.97 -2.57,0.27 -2.46,-1.09 -2.14,-1.71 -3.51,-4.05 -1.59,-2.25 -1.81,-2.08 -3.21,-1.69 -4.82,-0.81 -9.12,0.28 -5.7,1.86 -3.6,2.18 -1.62,2.41 -0.88,2.81 -0.34,3.16 -0.13,3.33 0.19,3.77 -0.13,3.64 -2.39,4.41 -2.8,1.54 -11.16,0.3 -12.58,-12.29 -5.86,5.53 -32.02,-10.18 -10.33,0.32 -1.84,1.92 -1.19,2.52 -0.98,3.18 -0.45,4.14 -0.03,5.86 0.51,5.78 1.05,3.97 1.49,2.71 1.92,1.91 4.59,2.95 1.63,2.66 0.84,3.99 -1.65,7.96 -0.35,4.99 0.51,4.03 1.28,2.31 2.23,2.77 0.3,3.39 -0.45,5.17 -2.11,13.32 -0.36,7.41 0.18,6.1 0.83,4.94 0.85,1.68 1.28,1.53 1.49,1.3 2.02,2.65 1.37,2.71 1.16,3.05 0.94,4.84 0.63,2.64 0.85,1.22 2.02,1.67 8.96,5.51 3.83,3.48 3.82,4.99 2.01,3.63 6.36,16.31 3.97,14.13 0.8,8.92 -0.82,11.46 0.51,5.43 1.15,3.46 4.88,5.09 0.31,1.66 -0.86,1.72 -2.26,1.54 -5.67,2.18 -3.64,0.18 -2.51,3.6 -0.34,2.53 1.06,2.54 6.39,8.37 3.49,5.83 1.57,3.91 1.88,6.8 -2.25,2.28 -1.93,0.85 -3.73,-1.28 -4.36,-2.33 -7.07,-2.74 -15.67,-2.57 -30.79,1.1 -3.74,-0.59 -12.14,-5.32 -7.15,-1.67 -6.98,1.64 9.62,28.95 1.43,12.42 -1.32,8.33 -1.3,5.4 -0.97,2.58 -1.72,3.5 -3.37,5.38 -16.35,7.87 -9.06,0.5 -17.72,-2.96 -4.06,0.21 -1.39,1.15 1.7,2.07 4.89,4.67 2.97,3.41 2.65,4.49 1.09,2.24 7.56,30.58 0.93,6.13 -0.86,2.55 -26.49,12 -2.87,0.11 -3.51,-0.42 -2.88,-0.9 -2.65,-1.59 -1.6,-1.44 -1.27,-1.78 -1.16,-2.25 -0.42,-1.44 -0.21,-1.61 0.22,-2.35 -3.09,-1.22 -6.32,1.42 -17.49,8.57 -6.29,4.24 -2.99,3.1 1.06,1.32 1.49,1.44 1.06,1.73 0.53,1.67 -0.11,2.7 -0.22,1.9 0.1,1.2 0.43,1.07 0.95,1.03 4.15,2.63 3.82,3.46 1.91,2.42 1.9,3.28 0.74,1.95 0.53,2.48 0.62,4.22 -0.64,2.67 -8.46,19.93 -5.68,17.74 -0.54,3.91 0.21,2.27 0.53,1.75 7.19,13.13 1.06,3.1 -0.23,4.52 -0.87,6.69 -7.67,10.9 -19.06,8.12 -5.75,6.08 -0.54,2.79 0.11,2.55 0.94,3.34 2.33,6.33 0.84,5.26 -2.35,3.44 -5.1,3.24 -48.96,6.74 -13.82,-1.82 -8.81,0.77 -10.5,-1.38 -8.17,-2.73 -3.29,-0.23 -1.6,1.01 0.64,3.36 2.87,6.03 1.27,2.02 1.59,2.93 1.06,2.76 0.32,3.44 -0.21,3.74 -1.07,5.66 -1.16,3.82 -6.79,15.01 -4.27,11.72 21.44,6.21 15.26,-1.31 2.86,1.32 1.17,2.36 -1.28,9.16 -2.02,6.47 -1.38,3.07 -1.16,3.36 -0.43,2.88 2.33,5.75 4.55,4.28 14.95,10.33 1.48,2.53 -1.27,1.18 -3.07,1.35 -15.17,3.55 -22.66,10.48 -12.41,3.08 -2.12,1.58 -2.01,2.44 -2.33,5 -0.52,3.28 0.21,2.44 1.48,3.94 1.38,6.46 1.48,9.92 2.86,30.75 1.19,7.18 4.12,11.56 2.12,4.08 2.43,2.99 3.27,1.52 3.7,0.52 15.73,-2.04 5.5,0.64 5.73,5.03 3.59,2.05 7.5,2.88 2.74,4.08 11.89,25.94 22.35,36.45 -11.98,37.37 -0.74,4.65 -0.54,5.87 1.58,2.07 4.1,3.17 2.53,1.49 3.37,3.4 2.83,4.38 2.94,8.11 -0.33,3.39 -1.69,2.06 -5.37,1.03 -2.63,0.91 -2.64,1.67 -2.21,1.77 -1.48,1.52 -9.42,13.87 -3.9,2.21 -3.58,0.83 -3.05,-0.69 -37.7,-20.06 -18.01,-18.69 -3.51,-4.83 -6.74,-15.2 -10.03,-31.61 -1.79,-3.56 -1.9,-2.79 -1.79,-1.72 -45.51,-10.1 -4.32,-2.64 -19.67,-7.24 -22.06,-2.45 -69.88,7.81 -7.63,2.01 -1.15,1.35 -1.68,2.6 -0.73,2.7 -0.5,4.37 -0.09,5.41 0.45,6.12 2.16,12.37 0.22,3.68 -0.72,2.79 -2.2,5.18 -1.04,3.66 -0.29,4.71 0.12,5.35 1.63,10.54 0.33,4.05 -0.39,7.13 -1.96,10.07 -18.48,34.39 -5.88,4.4 -5.33,5.48 -11.38,4.74 -4.2,0.17 -3.06,-0.27 -33.68,-16.29 -10.95,-2.15 -33.6,1.31 -13.79,-1.69 -3.29,-3.63 -7.34,-5.72 -6.13,-3.81 -4.34,-3.59 -1.28,-1.71 -0.85,-1.84 -0.65,-2.18 -5.47,-27.37 -1.3,-3.9 -2.76,-3.72 -4.78,-3.93 -11.87,-5.54 -38.65,-4.79 -5.78,1.63 -5.24,2.84 -2.74,0.77 -15.49,0.08 -15.15,5.89 13.1,-45.59 3.42,-6.01 4.99,-7.29 44.06,-21.25 19.52,-14.42 4.95,-5.96 3.94,-8.59 5.78,-17.46 4.19,-18.72 2.71,-19.04 0.39,-19.61 -1.79,-40.56 1.19,-39.79 1.93,-10.65 1.16,-1.1 14.45,-9.82 7.3,-6.57 0.51,-2.62 -0.87,-3.79 -3.66,-8.02 -3.91,-6.81 -3.64,-5.27 -3.53,-3.99 -6.72,-5.47 -27.53,-17.3 -3,-3.45 -2.37,-4.58 -5.66,-16.57 -1.62,-3.52 -1.39,-1.51 -3.52,-1.98 -4.89,-1.25 -86.56,25.65 -22.2,-19.19 -11.83,-14.13 -4.33,-7.37 -8.62,-7.84 -12.4,-7.05 -48.59,-17.82 -24.47,9.39 -24.96,-4.11 -10.59,-4.94 -30.19,-28.24 -3.86,-2.1 -2.76,0.12 -3.15,3.04 -11.81,6.92 -19.18,6.75 -3.38,1.77 -1.57,1.55 -5.37,17.73 -2.65,7.02 -5.65,13 1.16,5.99 7.98,8.56 12.14,9.36 17.25,7.71 13.31,2.88 8.81,0.33 7.38,1.4 2.94,5.07 1.79,6.27 0.28,5.49 4.54,13.79 7.31,14.56 2.42,6.63 0.17,4.54 -2.52,2.08 -3.57,2 -12.24,4.65 -8.4,0.67 -12.33,-2.27 -8.69,-0.13 -3.37,1.89 -2.61,2.97 -1.16,7.08 -1.63,4.91 -0.84,0.48 -6.16,1.35 -6.35,0.44 -4.75,1.85 -2.82,2.35 -1.94,5.09 0.16,3.27 2.39,3.96 9.15,9.43 4.12,7.01 1.55,4.35 0.16,3.39 -0.91,3.12 -3.7,7.47 -1.41,4.68 -0.18,2.35 0.13,1.7 2.6,3.96 12.61,12.69 4.21,6.06 1.43,3.22 0.14,3.02 -3.7,7.04 -4.04,6.01 -1.33,2.86 -0.91,3.01 -1.38,6.74 0.37,3.45 1.73,2.56 2.55,1.11 20.87,2.75 2.44,1 2.47,2.26 -0.49,2.82 -1.54,3.25 -6.51,10.26 -12.23,23.46 -8.99,13.79 -5.86,5.69 -6.02,7.22 -3.48,6.67 -4.1,1.38 -3.27,0.22 -44.96,-16.97 -4.53,0.68 -4.32,2.14 -7.34,9.66 -2.28,2.37 -45.54,29.84 -16.45,6.33 -2.8,2.98 -1.76,3.77 -5.11,38.38 -1.46,6.18 -2.23,5.21 -2.17,2.11 -3.22,2.53 -48.3,15.97 -2.42,0.11 -2.97,-1.21 -1.62,-1.69 -3.36,-5.06 -8.95,-35.35 0.77,-3.99 1.99,-5.9 5.15,-2.75 4.52,-6.24 1.21,-2.72 -0.35,-2.01 -4.78,-1.51 -3.17,-4 -2.55,-6.13 -4.53,-15.86 -3.64,-8.27 -0.63,0.1 -1.19,-1.01 -1.73,-2.1 -3.38,-5.51 -2.92,-3.62 -0.74,-0.27 -1.38,-0.15 -12.73,2.44 -4.36,0.21 -9.74,-1.64 -3.74,-1.94 -32.04,-25.64 -35.46,-35.31 -5.16,-3.69 -7.37,-3.43 -17.63,-3.37 -3.09,-1.37 -3.37,-2.22 -10.25,-9.2 -33.24,-21.83 -28.39,-5.59 -94.04,-1.57 -3.99,-3.11 -5.11,-5.16 -9.82,-6.76 -28.5,-11.23 -18.01,1.26 -4.06,7.96 -5.45,23.93 0,0 1.06,20.39 5.35,16.62 14.54,31.44 6.79,40.32 0,0.04 -8.79,28.88 -39.49,68.56 -4.34,-1.95 -4.43,-7.35 -6.49,-5.8 -17.1,-4.46 -17.99,-0.63 -18.98,3.6 -34.79,14.5 -53.52,9.24 -17.6,9.38 -12.87,16 -3.72,16.77 -0.35,19.57 -1.75,19.94 -7.71,17.65 -0.03,0.08 11.17,0.65 38.22,17.87 0.05,0.02 -21.54,19.49 -4.54,7.31 0.09,9.17 0,0.06 3.37,9.15 1.64,9.91 0.01,0.05 -5.28,11.8 -0.02,0.05 11.67,7.93 12.66,8.61 22.88,6.36 64.28,-0.97 35.52,-11.91 33.54,4.05 10.09,-4.6 23.92,-8.25 12.95,23.45 6,39.07 9.53,119.83 6.93,37.14 7.29,18.98 5.55,14.44 57.52,85.58 15.52,36.87 7.04,35.31 2.04,39.82 0.01,0.04 -4.22,79.82 -2.18,9.69 -3.14,5.92 -2.34,7.14 -0.14,13.29 0,0.05 1.88,8.93 10.06,24.24 5,18.97 2.55,17.29 0,0.02 -0.28,17.83 -0.69,31.31 6.61,3.52 7.82,7.97 6.03,8.01 6.22,11.73 2.63,13.19 -4.65,12.42 17.46,25.11 9.13,4.38 15.49,-0.14 14.3,-4.14 22.66,-15.08 12.51,-5.41 -15.49,24 -26.2,10.33 -151.43,9.16 -24.29,12.95 -8.91,31.25 2.18,82.4 3.4,18.57 13.71,33.45 3.34,16.53 5.79,10.02 12.98,-0.64 26.6,-6.46 3.83,8.87 6.36,3.2 5.08,10.71 -0.73,14.11 -5.68,8.12 -19.11,10.31 -8.39,9.09 -1.01,14.58 9.73,12.07 21.73,14.33 24.62,26.31 13.11,8.55 25.2,25.02 52.61,19.1 101.91,9.16 6.99,-5.07 6.72,-9.86 15.55,-4.04 97.86,18.37 198.46,24.46 52.58,-16.13 -0.12,-8.28 -4.72,-31.19 17.93,-40.57 26.82,-35.49 22,-15.8 -0.09,-6.89 -5.82,-14.02 10.21,-5.13 14.6,-4.37 7.32,-11.7 -2.25,-20.04 -6.43,-10.13 -14.45,-10.61 -12.07,-6.03 -26.14,-2.05 -11.78,-7.15 11.65,-37.3 5.86,-14.05 8.9,-9.83 8.49,3.98 7.66,3.15 11.12,-0.51 7.73,-4.46 12.5,-14.75 4.66,-3.21 5.31,-4.78 5.34,-10.53 6.85,-10.54 9.6,-4.82 11.07,0.23 8.12,1.69 7.16,4.24 8.26,7.97 14.34,23.19 15.1,38.24 3.96,38.02 -19,22.64 -26.11,-6.69 -13.92,2.53 1.48,16.28 5.91,18.17 5.16,37.77 5.71,15.7 8.88,9.28 11.29,4.34 27.63,1.08 12.67,-5.98 9.62,-13.65 7.97,-15.31 7.94,-10.94 26.69,-13.96 56.39,-11.57 25.6,-12.59 -0.05,-8.28 -15.99,-13.52 -14.68,-17.67 -10.86,-23.89 -4.39,-32.28 0.27,-62.5 3.76,-27.51 8.83,-20.58 2.15,27.55 -6.63,69.49 0.85,32.8 10.25,24.13 15.29,10.71 13.83,13.08 2.83,-2.78 7.92,-15.46 3.48,-2.92 4.84,1.18 1.23,0.02 0.31,-0.03 0.31,-0.18 4.37,-8.9 1.64,-1.8 1.33,-0.95 1.03,0.31 1.17,0.51 13.85,12.98 10.36,16.01 1.05,3.59 0.85,6.03 0.55,7.33 -0.47,8.25 -4.3,22.91 -2.42,8.52 -5.18,10.66 -1.61,5.76 -0.59,5.95 1.05,4.31 0.84,2.78 1.56,3.13 1.96,2.83 2.37,2.92 -0.6,2.19 -3.69,1.17 -27.12,-1.03 -14.45,2.67 -32.36,12.17 -3.22,9.2 -4.54,21.24 -9.14,25.37 -1.98,18.58 1.64,18.73 4.17,16.36 25.03,61.63 17.96,66.87 11.41,29.71 9.46,14.09 12.88,12.32 14.68,8.69 14.79,3.28 13.82,-1.01 7.7,-3.48 16.12,-18.47 23.27,-19.9 24.81,-13.07 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7279" /><path
+               id="path3236" /><path
                d="m 2524.32,6849.09 0,0 7.46,-0.93 14.58,1.13 4.12,-3.59 9.44,-19.28 1.14,-20.21 0.3,-2.71 1.32,-5.64 1.43,-4.03 10.5,-16.26 26.05,-30.85 4.45,-2.52 1.45,-2.71 0.6,-3.96 -0.32,-28.37 0.2,-1.82 -0.11,-1.14 -0.11,-0.64 1.04,-0.72 0.62,-1.04 9.79,-1.85 26.21,4.56 6.55,2.8 2.33,-0.01 3.52,-1.45 31.85,-20.49 6.59,-1.66 6.44,-0.38 9.36,2.74 3.44,1.77 1.87,2.73 0.01,3.25 -0.31,3.04 0.11,1.64 0.21,0.72 32.53,-25.52 5.62,3.13 23.33,16.85 10.09,11.09 0.94,4.23 0.83,6.12 0.94,15.29 1.56,6.73 1.56,4.74 4.57,6.29 1.14,2.24 -1.14,3.97 -1.45,3.22 -16.39,17.54 -2.49,6.78 0.31,1.53 1.46,3.07 7.78,7.13 2.08,2.47 0.1,2.59 -1.55,2.81 -15.76,18.35 -6.73,6.44 -2.1,1.1 -2.18,0.2 -3.01,-2.07 -1.45,-1.98 -1.56,-3.04 -3.12,-7.59 -1.04,-3.16 -0.73,-3.3 -0.62,-1.81 -0.94,-1.9 -1.35,-1.43 -1.97,-0.92 -3.63,-1 -6.01,1.38 -23.04,11.63 -13.25,9.68 -9.96,10.26 -1.24,1.04 -8.18,1.69 -18.66,-0.58 -3.42,1.41 -14.71,9.45 -3.41,3.06 -1.44,2.71 0.42,1.78 0.21,1.55 -0.2,1.61 -0.62,1.41 -0.93,1.3 -1.34,0.95 -8.28,1.21 -15.16,-0.95 -2.59,-0.71 -1.25,-1.31 -0.73,-0.46 -1.66,-0.45 -7.25,-0.72 -9,2.2 -39.31,16.29 -18.4,11.8 -3.42,0.07 -12.55,-3.89 -1.24,-0.05 -2.59,0.88 -20.65,13.58 -7.23,1.66 -15.13,-2.19 3.5,-7.79 2.1,-6.68 5.53,-12.63 27.62,-11.48 15.71,-11.02 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2524.32,6849.09 0,0 7.46,-0.93 14.58,1.13 4.12,-3.59 9.44,-19.28 1.14,-20.21 0.3,-2.71 1.32,-5.64 1.43,-4.03 10.5,-16.26 26.05,-30.85 4.45,-2.52 1.45,-2.71 0.6,-3.96 -0.32,-28.37 0.2,-1.82 -0.11,-1.14 -0.11,-0.64 1.04,-0.72 0.62,-1.04 9.79,-1.85 26.21,4.56 6.55,2.8 2.33,-0.01 3.52,-1.45 31.85,-20.49 6.59,-1.66 6.44,-0.38 9.36,2.74 3.44,1.77 1.87,2.73 0.01,3.25 -0.31,3.04 0.11,1.64 0.21,0.72 32.53,-25.52 5.62,3.13 23.33,16.85 10.09,11.09 0.94,4.23 0.83,6.12 0.94,15.29 1.56,6.73 1.56,4.74 4.57,6.29 1.14,2.24 -1.14,3.97 -1.45,3.22 -16.39,17.54 -2.49,6.78 0.31,1.53 1.46,3.07 7.78,7.13 2.08,2.47 0.1,2.59 -1.55,2.81 -15.76,18.35 -6.73,6.44 -2.1,1.1 -2.18,0.2 -3.01,-2.07 -1.45,-1.98 -1.56,-3.04 -3.12,-7.59 -1.04,-3.16 -0.73,-3.3 -0.62,-1.81 -0.94,-1.9 -1.35,-1.43 -1.97,-0.92 -3.63,-1 -6.01,1.38 -23.04,11.63 -13.25,9.68 -9.96,10.26 -1.24,1.04 -8.18,1.69 -18.66,-0.58 -3.42,1.41 -14.71,9.45 -3.41,3.06 -1.44,2.71 0.42,1.78 0.21,1.55 -0.2,1.61 -0.62,1.41 -0.93,1.3 -1.34,0.95 -8.28,1.21 -15.16,-0.95 -2.59,-0.71 -1.25,-1.31 -0.73,-0.46 -1.66,-0.45 -7.25,-0.72 -9,2.2 -39.31,16.29 -18.4,11.8 -3.42,0.07 -12.55,-3.89 -1.24,-0.05 -2.59,0.88 -20.65,13.58 -7.23,1.66 -15.13,-2.19 3.5,-7.79 2.1,-6.68 5.53,-12.63 27.62,-11.48 15.71,-11.02 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7281" /><path
+               id="path3238" /><path
                d="m 5092.65,4567.66 0,0 44.88,6.56 109.87,-27.79 7.01,-32.94 2.37,-4.21 20.81,-31.94 8.14,-16.71 9.81,-8.91 10.16,-4.87 9.97,-3.2 20.53,-10.89 18.07,-25.63 16.43,-31.2 0.28,-3.56 -0.09,-4.84 -7.39,-3.7 -3.98,-3.42 -1.53,-2.21 -5.93,-10.6 -5.28,-6.07 -1.74,-0.06 -1.72,1.64 -3.31,5.05 -3.01,1.18 -2.74,0.13 -5.35,-2.37 -3.02,-0.66 -22.87,2.06 -15.21,-2.63 -3.42,0.59 -10.69,4.24 -1.07,-9.64 -1.44,-1.85 -1.88,-1.91 -25.96,-15.76 -13.82,-17.8 -11.57,-19.36 -2.58,-0.87 -2.11,-0.04 -0.34,2.57 -2.69,1.38 -5.09,1.31 -20.44,-2.66 -4.74,-1.6 -4.34,-3.25 -16.92,-16.02 -5.74,-3.83 -50.57,-17.68 -0.38,-11.36 9.07,-9.32 11.79,-4.26 2.36,-3.69 0.45,-2.86 -1.19,-2.76 -5.2,-6.27 -4.32,-6.35 -1.05,-0.85 -1.61,-0.94 -2.27,-0.67 -4.28,0.12 -3.19,-2.12 -3.97,-4.44 -4.83,-12.99 -0.72,-6.01 0.94,-3.93 2.64,-0.29 2.54,0.28 3.78,1.38 2.84,0.21 3.44,-0.91 4.46,-4.18 1.37,-3.68 -0.49,-3.88 -1.47,-4.04 -0.97,-7.69 1.47,-6.1 3.82,-9.38 2.83,-4.48 2.34,-3.29 2.26,-1.52 2.58,-1.26 3,-0.79 6.59,-0.17 9.41,1.46 6.81,-2.69 -13.23,-25.6 -2.62,-3.63 -5.12,-5.78 -21.17,-17.92 -4.19,-2.25 -17.53,-1.75 -13.6,2.12 -12.26,-0.94 -3.27,-1.4 -2.94,-3.27 -3.79,-6.35 -12.15,-16.4 2.05,-22.24 -1.46,-7.03 -2.75,-10.36 -2.57,-4.14 -2.76,-2.42 -6.99,-2.02 -8.18,-4.2 -3.71,-0.79 -2.98,0.28 -2.8,1.26 -2.15,1.52 -1.94,1.71 -5.57,1.63 -11.1,-2.73 -14.76,-27.03 -6.97,-6.93 -3.18,-0.48 -3.52,0 -2.99,0.46 -2.68,1.07 -2.27,1.6 -1.63,1.49 -1.01,1.34 -5.07,7.45 -1.82,1.42 -3.57,1.32 -6.66,1.46 -5.02,-1.1 -3.12,-1.56 -1.56,-2.37 -0.59,-1.63 -1.64,-2.97 -1.2,-3.02 -9.15,-11.47 -16.19,-13.45 -7.16,-10.95 -4.12,-10.09 -1.1,-5.65 0.18,-4.37 1.31,-2.54 1.95,-1.99 8.94,-6.18 2.12,-3.45 1.51,-4.55 0.71,-9.75 -1.47,-4.43 -5.5,-5.91 -0.62,-3.74 0.1,-5.49 -0.97,-3.2 -2.23,-2.05 -11.3,-4.21 -3.02,-1.87 -3.13,-2.51 -4.35,-4.52 -1.52,-3.45 0.13,-3.19 5.97,-8.94 -16.71,-9.75 -6.21,-5.01 -3.35,-1.68 -12.58,-3.82 -7.47,-3.8 -1.91,-1.88 -2.58,-1.74 -2.49,-1.22 -3.65,0.29 -1.24,3.49 0.33,2.81 1.13,2.28 -1.07,1.98 -2.48,1.51 -7.59,2.42 -3.61,1.99 -2.42,1.87 -0.56,1.07 -1.11,2.2 -0.47,0.82 -1.01,1.37 -3.36,0.5 -5.19,0.01 -11.72,-1.96 -4.9,-1.68 -1.01,-2.63 -1.04,-1.59 -0.7,-1.92 -12.24,-4.19 -83.49,-20.79 -21.34,7.79 -9.19,0.81 -6.28,-1.2 -2.38,-1.41 -1.57,-2.32 -1.78,-5.93 -1.46,-2.47 -2.15,-1.77 -2.61,-1.12 -9.2,-1.81 -5.34,-2.08 -4.21,0.66 -5.88,2.91 -11.45,9.04 -6.17,3.27 -4.53,3.39 -1.97,3.04 -0.97,15.78 -1.75,9.49 -1.32,3.12 -2.29,2.54 -4.58,1.95 -3.53,0.05 -2.99,-0.84 -2.37,-1.58 -3.09,0.13 -3.91,1.71 -5.72,6.43 -7.12,5.34 -7.03,2.79 -1.62,5.62 -0.92,4.57 0.55,37.22 4.06,3.76 6.45,4.67 1.58,2.15 0.35,2.63 -0.39,2.03 -0.37,1.14 -1.3,2.71 -6.76,11.52 -11.88,3.4 -45.28,1.02 -6.37,-8.36 -5.13,-1.57 -3.64,-3.02 -2.28,-4.64 -0.47,-2.52 -0.17,-1.67 0.16,-1.38 -0.06,-1.84 -0.39,-1.42 -2.32,-3.38 -14.25,-9.99 -13.65,-3.56 -19.4,-10.05 3.78,-12.02 2.26,-5.56 0.39,-2.06 -0.15,-2.42 -1.42,-4.01 1.36,-4.91 1.32,-3.41 1.41,-3 0.86,-2.85 1.18,-6.12 0.43,-3.26 0,-3.51 -1.83,-19.66 0.13,-4.14 1.07,-2.84 2.8,-4.81 0.53,-3.03 0.03,-4.54 0.65,-3.34 1.3,-2.72 5.26,-6.2 1.18,-2.49 1.08,-2.67 0.31,-3.1 0.1,-3.1 0.18,-2.52 0.53,-2.75 1.59,-5.01 -0.16,-1.9 -0.95,-1.5 -5.14,-1.74 -1.72,-1.29 -0.17,-1.9 0.6,-4.98 0.87,-3.25 0.31,-2.84 -0.79,-3.19 -5.74,-14.43 -0.94,-5.38 0.12,-4.02 4.19,-7.12 1.07,-2.58 0.01,-3.77 -0.97,-4.63 -4.19,-7.34 -1.21,-4.1 -0.69,-2.72 1.47,-8.18 0.19,-2.58 -0.17,-1.79 -0.92,-2.44 -3.05,-1.59 -4.85,-0.6 -16.31,4.51 -3.82,2.01 -6.37,6.02 -3.69,-2.03 -6.69,-13.34 -35.89,31.96 -5.89,8.86 13.45,16.2 0.93,2.21 0.29,1.56 -0.29,2.5 -0.96,2.47 -1.18,2.55 -2.89,4.66 -3.33,4.28 -5.79,9.35 -2.14,1.66 -2.56,0.9 -4.55,-0.53 -2.35,1.14 -2.33,4.42 -1.96,6.79 -2.36,1.48 -2.86,-0.22 -7.23,-2.19 -3.12,-2.68 -2.35,-2.91 -1.36,-2.45 -1.93,-2.01 -2.62,-1.14 -9.6,-1.3 -2.96,-0.83 -10.12,-4.94 -2.88,0.15 -2.91,1.65 -3.48,6.11 -3.86,3.75 -5.15,2.79 -19.29,2.24 -1.65,-0.45 -0.96,-1.12 -0.78,-8.07 -0.49,-2.08 -1.05,-2.07 -1.5,-1.68 -4.5,3.1 -3.05,2.85 -25.23,34.84 -5.43,1.21 -5.71,-0.81 -17.85,-6.58 -2.49,-0.41 -2.24,0.17 -1.67,0.59 -1.7,1.68 -1.48,1.95 -1.28,2.38 -1.6,2.29 -1.81,1.91 -2.02,1.36 -1.89,0.78 -1.88,-0.05 -2.51,-0.89 -3.03,-2.23 -5.34,-2.5 -13.21,1.95 -2.86,-0.33 -2.61,-1.1 -8.67,-6.54 -2.39,-1.24 -5.14,-1.64 -2.43,0.05 -1.77,0.3 -6.81,3.14 -1.44,0.34 -2.54,0.26 -3.07,-2.12 -3.44,-3.7 -9.63,-17.02 -1.36,-3.13 -1.9,-3.67 -1.93,-2.57 -2.28,-1.32 -2.43,0.11 -1.56,0.37 -10.13,4.1 -3.13,0.07 -2.97,-0.53 -3,-3.75 -2.72,-6.5 -2.04,-26.09 0.71,-6.99 2.97,-4.36 2.71,-2.35 2.91,-1.83 7.96,-3.52 8.52,-5.47 1.24,-1.12 8.73,-9.62 1.92,-1.8 2.36,-1.55 2.9,-0.91 3.1,-0.44 12.38,1.45 2.78,-0.86 2.35,-1.43 1.6,-2.21 1.8,-5.67 1.06,-2.59 1.59,-2.09 1.93,-1.85 2.57,-1.38 2.91,-1.13 12.56,-3.09 2.36,-1.66 1.61,-2.21 1.2,-2.55 1.47,-5.8 0.52,-3.12 0.32,-3.73 -0.24,-3.97 -0.99,-4.74 -1.73,-2.83 -2.05,-2.27 -3.4,-1.23 -4.52,-0.28 -8.79,1.79 -10.29,5.07 -2.9,0.79 -22.57,-5.71 -5.85,-0.57 -3.88,0.51 -2.82,2.52 -1.8,1.14 -2.67,0.68 -2.87,-0.18 -5.09,-6.1 -2.78,-23.46 0.21,-8.79 -0.15,-3.28 -0.94,-2.63 -3.29,-0.97 -5.01,1.12 -9.98,5.66 -9.34,6.98 -17.73,4.48 -32.21,-0.85 -5.79,6.86 -3.21,5.25 -0.73,2.77 -0.06,2.82 1.81,3.37 0.7,3.4 -0.42,4.25 -6.79,12.15 -2.57,6.79 -0.64,4.07 0.99,5.05 1.47,3.74 0.42,6.1 1.14,3.59 -0.01,5.46 -0.92,6.88 -3.72,13.71 -1.14,7.28 -0.46,5.56 -0.84,3.43 -2.39,3.14 -9.93,5.17 -6.33,6.88 -9.85,20.71 -11.76,-1.85 -4.55,-4.23 -2.17,-1.6 -3.41,-0.47 -5.98,1.08 -9.43,0.44 -1.78,1.03 -1.26,2.02 0.26,3.97 -0.62,3.35 -1.72,3.15 -19.39,15.83 -3.73,4.41 -2.5,3.57 -2.41,5.07 -0.72,3 -1.08,2.77 -1.8,1.86 -4.83,-1.36 -6.33,-2.82 -6.38,-1.05 -13.68,1.07 -3.12,1.6 -2.69,2.31 -3.46,6.23 -0.4,3.87 0.71,3.35 3.59,4.03 1.61,2.16 0.73,2.6 -1.84,3.79 -19.15,14.84 -3.03,3.34 -2.95,4.66 -3.27,4.3 -3.6,4.02 -10.16,7.92 -1.84,2.61 -0.94,3.03 -0.05,3.1 0.31,6.85 -0.16,3.1 -0.6,2.52 -2.53,5.93 -0.71,2.83 -3.69,3.58 -6.33,3.51 -57.55,18.75 -4.66,2.71 -2.48,3.3 -1.34,5.95 -3.21,7.94 -1.2,6.13 -1.69,2.79 -2.57,2.71 -4.34,3.09 -2.46,2.67 -1.8,2.58 -3.88,1.98 -6.28,0.99 -34.68,-4.19 -3.86,0.83 -2.77,1.51 -1.24,2.39 -0.7,2.58 0.17,3.31 0.28,3.07 -0.27,3.16 -1.24,1.88 -11.55,-8.39 -38.07,-43.89 -5.4,0.44 -1.9,2.84 -0.26,2.62 0.59,4.98 1.33,6.57 5.77,19.22 0.58,5.52 -4.99,11.77 -0.7,2.52 -0.59,2.95 -0.27,3.24 -0.15,3.51 0.7,20.06 -0.39,3.99 -0.81,3.07 -1.45,1.93 0.06,3.62 1.69,4.54 7.12,8.2 4.5,2.48 3.4,0.31 1.88,-1.53 1.29,2 1.17,2.67 -2.02,25.71 -7.96,19.69 -1.8,3.22 -2.47,2.06 -3.43,1.96 -6.71,1.81 -12.4,1.32 -11.88,3.8 -2.96,0.36 -4.64,-0.41 -4.9,-2.07 -8.9,-6.33 -5,-2.59 -11.47,-3.14 -2.5,-1.3 -1.62,-2.26 -0.99,-2.65 -0.29,-3.17 0.48,-2.87 1.61,-2.91 5.67,-6.59 1.79,-2.68 0.36,-2.47 -2.24,-4.79 -2.01,-5.78 -1.94,-2.03 -2.62,-1.1 -3.1,-0.36 -6.6,0.93 -5.84,2.16 -11.49,7.33 -2.97,0.83 -2.74,-0.35 -2.51,-1.07 -2.39,-1.46 -5.39,-2.08 -3.08,0.83 -2.23,3.42 -1.4,7.19 0.44,9.41 -0.29,5.51 0.59,5.67 1.47,5.59 4.81,9.86 3.38,4.43 3.03,2.94 2.51,1.24 2.17,1.58 1.84,2.03 4.52,6.61 0.51,2.88 -1.38,5.18 0.26,5.15 2.65,7.68 9.41,17.64 2.22,6.29 0.93,4.33 0.79,6.53 -0.09,6.92 -0.36,2.44 -2.47,5.14 -8.2,8.95 3.69,10.56 3.49,1.26 3.14,1.82 2.29,0.6 1.54,-0.58 1.22,-1.57 1.53,0.02 0.96,2.37 -0.4,5.17 -0.6,3.87 -1.6,6.21 -0.59,3.16 0.06,3.62 0.29,3.51 1.15,3.52 3.65,8.06 0.07,3.08 -0.36,2.75 1.71,2.64 4.11,3.13 10.32,4.56 14.06,1.91 4.02,1.72 6.21,3.76 4.46,1.07 3.71,0.19 3.03,1.86 2.02,4.16 0.39,10.9 -2.63,8.35 1.9,4.91 2.02,4.06 18.66,22.79 -5.99,6.75 -2.45,4.11 -3.52,9.95 -2.47,4.59 -2.34,3.42 -8.05,7.13 -7.15,4.75 -1.98,0.95 -1.64,0.5 -2.43,0.08 -1.74,-0.37 -1.95,-0.74 -1.95,-1.21 -1.83,-1.69 -1.5,-1.97 -1.49,-2.26 -1.28,-2.67 -1.6,-2.26 -1.83,-1.98 -2.16,-1.35 -2.5,-0.38 -1.9,3.14 -0.95,5.79 0.6,12.77 -1.25,3.78 -1.76,1.12 -3.54,-4.09 -1.94,-1.61 -2.61,-0.32 -2.1,1.87 -1.02,3.58 0.34,6.87 0.94,3.4 1.81,3.24 4.77,1.47 3.49,0.19 2.41,-1 1.32,-1.48 1.22,-1.01 2.4,-0.66 24.8,-2.31 8.48,1.21 11.17,3.37 2.24,3.31 0.9,5.76 -2.26,13.99 -4.14,7.53 -3.11,4.53 -2.64,1.89 -2.09,1.86 -2.06,6.76 1.64,15.16 17.34,12.81 8.38,1.93 21.21,0.16 7.77,-2.84 2.28,0.18 7.28,3.24 2.17,0.29 1.43,-1.1 0.37,-2.58 -0.8,-5.04 0.02,-1.15 0.23,-0.92 1.11,-1.36 3.74,-2.7 2.63,-1.11 3.27,-0.58 3.6,-0.12 15.4,3.12 16.04,-0.55 2.27,1.07 2.02,2.99 9.83,24.16 0.58,4.03 -1.49,4.81 -1.57,3.19 -5.12,7.04 -2.26,5.28 -1.45,2.14 -2.51,1.11 -9.57,0.13 -2.73,0.82 -2.35,1.51 -3.97,3.62 -2.3,1.49 -2.95,0.72 -6.53,0.59 -2.84,0.99 -1.04,3.84 0.13,5.98 1.89,11.26 2.05,7.82 3.12,8.96 8.99,14.97 2.35,9.18 0.14,5.29 -2.42,1.94 -12.95,2.07 -2.62,0.88 -2.19,1.58 -1.45,2.21 -1.12,2.57 -0.81,2.87 -1.12,2.56 -1.56,2.34 -1.98,1.86 -2.3,1.58 1.26,2.43 4.51,3.17 15.44,4.58 6.93,0.6 5.04,-0.55 2.76,-2.89 5.65,-7.78 0.69,-2.29 -0.29,-2.42 -0.84,-1.74 0.36,-1.66 0.34,-0.91 4.17,-3.27 1.55,-1.81 0.95,-4.81 1.12,-2.37 1.62,0.54 2.75,4.36 2.99,23.07 0,6.61 0.46,4.78 3.72,11.32 10.33,13.11 2.28,6.36 0.19,1.44 -0.69,2.92 -1.23,1.99 -9.2,3.35 -14.21,7.82 -7.59,6.83 -9.51,5.54 -6.76,0.75 -6.49,-0.67 -3.8,0.63 -4.47,1.77 -6.25,4.73 -4.13,1.08 -7.05,0.7 -3.84,0.92 -4.69,2.06 -3.37,0.63 -2.94,1.28 -4.59,2.87 -2.72,0.99 -3.15,0.36 -2.84,1.79 -2.32,3.25 -1.7,12.88 -1.8,4.65 -11.1,8.81 -1.87,2.5 -1.79,4.17 -0.09,5.72 3.55,9.08 -0.91,3.17 -2.42,2.96 -6.2,2.72 -10.61,0.89 -15.92,6.39 -1.84,0.38 -7.67,-0.88 -3.35,0.12 -3.6,2.37 -4.27,3.94 -5.74,9.23 -4.37,3.11 -3.47,1.1 -2.58,-0.89 -2,1.01 -1.57,4.52 0.52,10.46 -2.19,10.15 -1.58,5.44 -2.41,3.01 -3.94,3.69 -1.32,2.28 -0.8,2.92 -0.73,6.72 -0.79,2.95 -1.12,2.54 -1.01,3.32 -0.27,4.43 2.17,7.87 2.53,4.89 12.94,11.4 34.99,29.87 7.77,9.59 4.27,3.1 9.96,5.37 3.39,3.79 1.79,3.36 1.37,1.91 2.8,-0.13 14.34,-12.21 2.17,-0.95 2.9,0.91 3.7,4.82 4,6.67 10.42,2.34 34.75,-0.84 -2.24,5.94 -0.24,1.23 0.28,2.62 2.12,2.28 9.34,2.56 3.52,2.1 2.57,3.03 5.12,9.91 1.46,3.56 0.08,1.61 -0.68,1.94 -0.89,1.77 -0.24,1.52 0.28,2.39 0.83,2.45 1.47,2.41 1.57,2.21 2.55,2.17 3.53,1.73 6.77,0.91 3.56,-0.63 2.29,-1.57 0.45,-1.14 0.36,-2.07 0.34,-1.26 1.22,-1.87 1.85,-1.64 2.82,-0.81 6.6,0.16 5.02,2.33 29.49,19.79 3.04,0.75 2.99,1.4 2.21,2.51 1.92,7.14 0.78,4.69 1.98,3.52 3.27,3.76 11.92,7.69 5.86,2.92 1.91,1.59 1.47,1.98 0.58,3.35 2.13,3.37 11.14,8.48 4.71,6.82 7.04,20.42 1.7,6.3 0.96,6.34 -0.16,2.99 -0.59,2.32 -0.56,1.4 -2.1,3.17 -0.45,0.92 -0.12,0.91 -0.03,1.61 0.5,1.91 2.45,1.2 4.7,1.23 10.56,0.38 9.52,2.25 5.11,2.37 6.47,-1.17 33.47,-17.12 24.95,-19.99 8.62,-0.8 21.36,1.78 3.09,0.98 33.2,17.57 5.56,1.1 4.13,-0.23 9.91,-10.47 2.29,-1.5 2.6,-1.06 3.19,1.56 2.28,3.73 1.18,9.63 -0.95,4.24 -1.36,2.81 -1.2,0.92 -6.94,7.55 -4.14,7.27 -3.1,4.36 -1.12,1.98 0.27,2.48 1.08,4.28 11.81,14.41 33.28,20.37 11.11,-6.7 62.26,3.11 4.86,-1.32 5.86,-2.44 15.27,-9.68 5.68,-2.13 3.45,-0.75 17.16,0.76 8.92,-8.45 23.26,-9.03 9.24,-0.04 3.07,-2.31 2.69,-4.15 3.58,-9.4 1.33,-5.48 0.02,-4.77 -2.8,-3.7 -2.97,-1.69 -3.32,-0.29 -2.6,0.77 -5.23,2.68 -2.71,0.67 -3.01,0.04 -2.33,-1.24 -1.78,-1.86 -1.12,-2.62 0.6,-6.25 2.71,-9.07 7.92,-19.12 4.51,-7.75 4,-4.96 2.41,-1.37 2.3,-1.55 1.48,-3.18 0.77,-4.55 -1.24,-18.06 0.19,-3.1 0.94,-3.08 1.63,-4.5 8.78,-16.85 6.69,-8.47 1.06,-3.28 0.33,-4.31 -3.74,-21.14 -0.54,-8.3 0.26,-9.48 5.89,-10.54 18.72,-10.01 107.98,-10.17 29.46,1.51 64.82,-7.57 18.24,-5.58 37.31,-27.56 20.17,-35.36 41.99,-58.32 -5.49,-13.9 -6.07,-9.75 -7.97,-7.88 -17.34,-10.61 -31.04,-6.21 -4.13,-1.8 -4,-4.64 -2.16,-3.55 -2.75,-5.72 2.34,-5.39 6.1,-7.6 16.06,-9.81 15.25,-5.32 7.41,-7.69 15.83,-25.2 4.27,-14.41 0.65,-3.31 0.82,-5.07 0.53,-6.05 -0.06,-4.95 -0.9,-2.3 -2.67,-1.38 -2.26,-0.56 -1.13,-1.85 -0.48,-1.86 2.68,-12.39 2.87,-7.96 1.17,-2.41 1.73,-3.02 1.79,-1.75 2.45,-1.64 7.83,-3.57 3.95,-1.19 38.42,-0.66 2.8,0.81 2.57,1.3 2.26,1.66 5.68,5.54 4.68,2.81 3.01,0.91 32.43,-3.42 18.31,1.62 14.06,-1.11 5.11,0.76 5.67,2.56 13.88,3.81 3.28,-0.54 4.19,-1.58 11.14,-7.64 3.33,-3.82 1.81,-4.83 0.5,-10.65 1.28,-11.29 6.58,-10.46 2.37,-8.05 3.99,-4.94 4.5,-6.97 1.09,-2.95 2.08,-9.36 1.08,-2.66 1.84,-2.7 3.05,-2.93 4.94,-2.87 5.08,-1.94 8.65,7.29 56.41,6.34 6.25,1.62 8.25,-1.29 15.79,-11.15 34.9,-14.19 6.41,-5.09 4.31,-4.2 3.48,-8.09 1.17,-4.62 3.56,-4.6 2.94,-2.67 23.4,-11.49 1.6,-7.41 0.32,-2.35 1.93,-1.82 4.47,-0.11 23.87,3.97 12.47,4.26 2.34,1.36 5.45,0.11 37.37,-11.32 3.71,0.02 4.21,1.04 6.3,4.04 5.54,5.76 3.15,0.07 4.21,-1.46 13.4,-12.25 5.4,-3.77 5.56,-9.26 5.8,-0.26 12.28,11.09 -3.14,9.45 1.02,9.19 18.93,25.7 4.22,6.52 15.07,31.34 0.28,3.47 -0.63,4.35 -3.57,6.86 -2.98,3.21 -3.15,2.3 -11.4,4.3 -1.69,3.79 -0.1,7.13 2.64,15.89 10.25,19.85 0.87,2.43 -1.78,8.35 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5092.65,4567.66 0,0 44.88,6.56 109.87,-27.79 7.01,-32.94 2.37,-4.21 20.81,-31.94 8.14,-16.71 9.81,-8.91 10.16,-4.87 9.97,-3.2 20.53,-10.89 18.07,-25.63 16.43,-31.2 0.28,-3.56 -0.09,-4.84 -7.39,-3.7 -3.98,-3.42 -1.53,-2.21 -5.93,-10.6 -5.28,-6.07 -1.74,-0.06 -1.72,1.64 -3.31,5.05 -3.01,1.18 -2.74,0.13 -5.35,-2.37 -3.02,-0.66 -22.87,2.06 -15.21,-2.63 -3.42,0.59 -10.69,4.24 -1.07,-9.64 -1.44,-1.85 -1.88,-1.91 -25.96,-15.76 -13.82,-17.8 -11.57,-19.36 -2.58,-0.87 -2.11,-0.04 -0.34,2.57 -2.69,1.38 -5.09,1.31 -20.44,-2.66 -4.74,-1.6 -4.34,-3.25 -16.92,-16.02 -5.74,-3.83 -50.57,-17.68 -0.38,-11.36 9.07,-9.32 11.79,-4.26 2.36,-3.69 0.45,-2.86 -1.19,-2.76 -5.2,-6.27 -4.32,-6.35 -1.05,-0.85 -1.61,-0.94 -2.27,-0.67 -4.28,0.12 -3.19,-2.12 -3.97,-4.44 -4.83,-12.99 -0.72,-6.01 0.94,-3.93 2.64,-0.29 2.54,0.28 3.78,1.38 2.84,0.21 3.44,-0.91 4.46,-4.18 1.37,-3.68 -0.49,-3.88 -1.47,-4.04 -0.97,-7.69 1.47,-6.1 3.82,-9.38 2.83,-4.48 2.34,-3.29 2.26,-1.52 2.58,-1.26 3,-0.79 6.59,-0.17 9.41,1.46 6.81,-2.69 -13.23,-25.6 -2.62,-3.63 -5.12,-5.78 -21.17,-17.92 -4.19,-2.25 -17.53,-1.75 -13.6,2.12 -12.26,-0.94 -3.27,-1.4 -2.94,-3.27 -3.79,-6.35 -12.15,-16.4 2.05,-22.24 -1.46,-7.03 -2.75,-10.36 -2.57,-4.14 -2.76,-2.42 -6.99,-2.02 -8.18,-4.2 -3.71,-0.79 -2.98,0.28 -2.8,1.26 -2.15,1.52 -1.94,1.71 -5.57,1.63 -11.1,-2.73 -14.76,-27.03 -6.97,-6.93 -3.18,-0.48 -3.52,0 -2.99,0.46 -2.68,1.07 -2.27,1.6 -1.63,1.49 -1.01,1.34 -5.07,7.45 -1.82,1.42 -3.57,1.32 -6.66,1.46 -5.02,-1.1 -3.12,-1.56 -1.56,-2.37 -0.59,-1.63 -1.64,-2.97 -1.2,-3.02 -9.15,-11.47 -16.19,-13.45 -7.16,-10.95 -4.12,-10.09 -1.1,-5.65 0.18,-4.37 1.31,-2.54 1.95,-1.99 8.94,-6.18 2.12,-3.45 1.51,-4.55 0.71,-9.75 -1.47,-4.43 -5.5,-5.91 -0.62,-3.74 0.1,-5.49 -0.97,-3.2 -2.23,-2.05 -11.3,-4.21 -3.02,-1.87 -3.13,-2.51 -4.35,-4.52 -1.52,-3.45 0.13,-3.19 5.97,-8.94 -16.71,-9.75 -6.21,-5.01 -3.35,-1.68 -12.58,-3.82 -7.47,-3.8 -1.91,-1.88 -2.58,-1.74 -2.49,-1.22 -3.65,0.29 -1.24,3.49 0.33,2.81 1.13,2.28 -1.07,1.98 -2.48,1.51 -7.59,2.42 -3.61,1.99 -2.42,1.87 -0.56,1.07 -1.11,2.2 -0.47,0.82 -1.01,1.37 -3.36,0.5 -5.19,0.01 -11.72,-1.96 -4.9,-1.68 -1.01,-2.63 -1.04,-1.59 -0.7,-1.92 -12.24,-4.19 -83.49,-20.79 -21.34,7.79 -9.19,0.81 -6.28,-1.2 -2.38,-1.41 -1.57,-2.32 -1.78,-5.93 -1.46,-2.47 -2.15,-1.77 -2.61,-1.12 -9.2,-1.81 -5.34,-2.08 -4.21,0.66 -5.88,2.91 -11.45,9.04 -6.17,3.27 -4.53,3.39 -1.97,3.04 -0.97,15.78 -1.75,9.49 -1.32,3.12 -2.29,2.54 -4.58,1.95 -3.53,0.05 -2.99,-0.84 -2.37,-1.58 -3.09,0.13 -3.91,1.71 -5.72,6.43 -7.12,5.34 -7.03,2.79 -1.62,5.62 -0.92,4.57 0.55,37.22 4.06,3.76 6.45,4.67 1.58,2.15 0.35,2.63 -0.39,2.03 -0.37,1.14 -1.3,2.71 -6.76,11.52 -11.88,3.4 -45.28,1.02 -6.37,-8.36 -5.13,-1.57 -3.64,-3.02 -2.28,-4.64 -0.47,-2.52 -0.17,-1.67 0.16,-1.38 -0.06,-1.84 -0.39,-1.42 -2.32,-3.38 -14.25,-9.99 -13.65,-3.56 -19.4,-10.05 3.78,-12.02 2.26,-5.56 0.39,-2.06 -0.15,-2.42 -1.42,-4.01 1.36,-4.91 1.32,-3.41 1.41,-3 0.86,-2.85 1.18,-6.12 0.43,-3.26 0,-3.51 -1.83,-19.66 0.13,-4.14 1.07,-2.84 2.8,-4.81 0.53,-3.03 0.03,-4.54 0.65,-3.34 1.3,-2.72 5.26,-6.2 1.18,-2.49 1.08,-2.67 0.31,-3.1 0.1,-3.1 0.18,-2.52 0.53,-2.75 1.59,-5.01 -0.16,-1.9 -0.95,-1.5 -5.14,-1.74 -1.72,-1.29 -0.17,-1.9 0.6,-4.98 0.87,-3.25 0.31,-2.84 -0.79,-3.19 -5.74,-14.43 -0.94,-5.38 0.12,-4.02 4.19,-7.12 1.07,-2.58 0.01,-3.77 -0.97,-4.63 -4.19,-7.34 -1.21,-4.1 -0.69,-2.72 1.47,-8.18 0.19,-2.58 -0.17,-1.79 -0.92,-2.44 -3.05,-1.59 -4.85,-0.6 -16.31,4.51 -3.82,2.01 -6.37,6.02 -3.69,-2.03 -6.69,-13.34 -35.89,31.96 -5.89,8.86 13.45,16.2 0.93,2.21 0.29,1.56 -0.29,2.5 -0.96,2.47 -1.18,2.55 -2.89,4.66 -3.33,4.28 -5.79,9.35 -2.14,1.66 -2.56,0.9 -4.55,-0.53 -2.35,1.14 -2.33,4.42 -1.96,6.79 -2.36,1.48 -2.86,-0.22 -7.23,-2.19 -3.12,-2.68 -2.35,-2.91 -1.36,-2.45 -1.93,-2.01 -2.62,-1.14 -9.6,-1.3 -2.96,-0.83 -10.12,-4.94 -2.88,0.15 -2.91,1.65 -3.48,6.11 -3.86,3.75 -5.15,2.79 -19.29,2.24 -1.65,-0.45 -0.96,-1.12 -0.78,-8.07 -0.49,-2.08 -1.05,-2.07 -1.5,-1.68 -4.5,3.1 -3.05,2.85 -25.23,34.84 -5.43,1.21 -5.71,-0.81 -17.85,-6.58 -2.49,-0.41 -2.24,0.17 -1.67,0.59 -1.7,1.68 -1.48,1.95 -1.28,2.38 -1.6,2.29 -1.81,1.91 -2.02,1.36 -1.89,0.78 -1.88,-0.05 -2.51,-0.89 -3.03,-2.23 -5.34,-2.5 -13.21,1.95 -2.86,-0.33 -2.61,-1.1 -8.67,-6.54 -2.39,-1.24 -5.14,-1.64 -2.43,0.05 -1.77,0.3 -6.81,3.14 -1.44,0.34 -2.54,0.26 -3.07,-2.12 -3.44,-3.7 -9.63,-17.02 -1.36,-3.13 -1.9,-3.67 -1.93,-2.57 -2.28,-1.32 -2.43,0.11 -1.56,0.37 -10.13,4.1 -3.13,0.07 -2.97,-0.53 -3,-3.75 -2.72,-6.5 -2.04,-26.09 0.71,-6.99 2.97,-4.36 2.71,-2.35 2.91,-1.83 7.96,-3.52 8.52,-5.47 1.24,-1.12 8.73,-9.62 1.92,-1.8 2.36,-1.55 2.9,-0.91 3.1,-0.44 12.38,1.45 2.78,-0.86 2.35,-1.43 1.6,-2.21 1.8,-5.67 1.06,-2.59 1.59,-2.09 1.93,-1.85 2.57,-1.38 2.91,-1.13 12.56,-3.09 2.36,-1.66 1.61,-2.21 1.2,-2.55 1.47,-5.8 0.52,-3.12 0.32,-3.73 -0.24,-3.97 -0.99,-4.74 -1.73,-2.83 -2.05,-2.27 -3.4,-1.23 -4.52,-0.28 -8.79,1.79 -10.29,5.07 -2.9,0.79 -22.57,-5.71 -5.85,-0.57 -3.88,0.51 -2.82,2.52 -1.8,1.14 -2.67,0.68 -2.87,-0.18 -5.09,-6.1 -2.78,-23.46 0.21,-8.79 -0.15,-3.28 -0.94,-2.63 -3.29,-0.97 -5.01,1.12 -9.98,5.66 -9.34,6.98 -17.73,4.48 -32.21,-0.85 -5.79,6.86 -3.21,5.25 -0.73,2.77 -0.06,2.82 1.81,3.37 0.7,3.4 -0.42,4.25 -6.79,12.15 -2.57,6.79 -0.64,4.07 0.99,5.05 1.47,3.74 0.42,6.1 1.14,3.59 -0.01,5.46 -0.92,6.88 -3.72,13.71 -1.14,7.28 -0.46,5.56 -0.84,3.43 -2.39,3.14 -9.93,5.17 -6.33,6.88 -9.85,20.71 -11.76,-1.85 -4.55,-4.23 -2.17,-1.6 -3.41,-0.47 -5.98,1.08 -9.43,0.44 -1.78,1.03 -1.26,2.02 0.26,3.97 -0.62,3.35 -1.72,3.15 -19.39,15.83 -3.73,4.41 -2.5,3.57 -2.41,5.07 -0.72,3 -1.08,2.77 -1.8,1.86 -4.83,-1.36 -6.33,-2.82 -6.38,-1.05 -13.68,1.07 -3.12,1.6 -2.69,2.31 -3.46,6.23 -0.4,3.87 0.71,3.35 3.59,4.03 1.61,2.16 0.73,2.6 -1.84,3.79 -19.15,14.84 -3.03,3.34 -2.95,4.66 -3.27,4.3 -3.6,4.02 -10.16,7.92 -1.84,2.61 -0.94,3.03 -0.05,3.1 0.31,6.85 -0.16,3.1 -0.6,2.52 -2.53,5.93 -0.71,2.83 -3.69,3.58 -6.33,3.51 -57.55,18.75 -4.66,2.71 -2.48,3.3 -1.34,5.95 -3.21,7.94 -1.2,6.13 -1.69,2.79 -2.57,2.71 -4.34,3.09 -2.46,2.67 -1.8,2.58 -3.88,1.98 -6.28,0.99 -34.68,-4.19 -3.86,0.83 -2.77,1.51 -1.24,2.39 -0.7,2.58 0.17,3.31 0.28,3.07 -0.27,3.16 -1.24,1.88 -11.55,-8.39 -38.07,-43.89 -5.4,0.44 -1.9,2.84 -0.26,2.62 0.59,4.98 1.33,6.57 5.77,19.22 0.58,5.52 -4.99,11.77 -0.7,2.52 -0.59,2.95 -0.27,3.24 -0.15,3.51 0.7,20.06 -0.39,3.99 -0.81,3.07 -1.45,1.93 0.06,3.62 1.69,4.54 7.12,8.2 4.5,2.48 3.4,0.31 1.88,-1.53 1.29,2 1.17,2.67 -2.02,25.71 -7.96,19.69 -1.8,3.22 -2.47,2.06 -3.43,1.96 -6.71,1.81 -12.4,1.32 -11.88,3.8 -2.96,0.36 -4.64,-0.41 -4.9,-2.07 -8.9,-6.33 -5,-2.59 -11.47,-3.14 -2.5,-1.3 -1.62,-2.26 -0.99,-2.65 -0.29,-3.17 0.48,-2.87 1.61,-2.91 5.67,-6.59 1.79,-2.68 0.36,-2.47 -2.24,-4.79 -2.01,-5.78 -1.94,-2.03 -2.62,-1.1 -3.1,-0.36 -6.6,0.93 -5.84,2.16 -11.49,7.33 -2.97,0.83 -2.74,-0.35 -2.51,-1.07 -2.39,-1.46 -5.39,-2.08 -3.08,0.83 -2.23,3.42 -1.4,7.19 0.44,9.41 -0.29,5.51 0.59,5.67 1.47,5.59 4.81,9.86 3.38,4.43 3.03,2.94 2.51,1.24 2.17,1.58 1.84,2.03 4.52,6.61 0.51,2.88 -1.38,5.18 0.26,5.15 2.65,7.68 9.41,17.64 2.22,6.29 0.93,4.33 0.79,6.53 -0.09,6.92 -0.36,2.44 -2.47,5.14 -8.2,8.95 3.69,10.56 3.49,1.26 3.14,1.82 2.29,0.6 1.54,-0.58 1.22,-1.57 1.53,0.02 0.96,2.37 -0.4,5.17 -0.6,3.87 -1.6,6.21 -0.59,3.16 0.06,3.62 0.29,3.51 1.15,3.52 3.65,8.06 0.07,3.08 -0.36,2.75 1.71,2.64 4.11,3.13 10.32,4.56 14.06,1.91 4.02,1.72 6.21,3.76 4.46,1.07 3.71,0.19 3.03,1.86 2.02,4.16 0.39,10.9 -2.63,8.35 1.9,4.91 2.02,4.06 18.66,22.79 -5.99,6.75 -2.45,4.11 -3.52,9.95 -2.47,4.59 -2.34,3.42 -8.05,7.13 -7.15,4.75 -1.98,0.95 -1.64,0.5 -2.43,0.08 -1.74,-0.37 -1.95,-0.74 -1.95,-1.21 -1.83,-1.69 -1.5,-1.97 -1.49,-2.26 -1.28,-2.67 -1.6,-2.26 -1.83,-1.98 -2.16,-1.35 -2.5,-0.38 -1.9,3.14 -0.95,5.79 0.6,12.77 -1.25,3.78 -1.76,1.12 -3.54,-4.09 -1.94,-1.61 -2.61,-0.32 -2.1,1.87 -1.02,3.58 0.34,6.87 0.94,3.4 1.81,3.24 4.77,1.47 3.49,0.19 2.41,-1 1.32,-1.48 1.22,-1.01 2.4,-0.66 24.8,-2.31 8.48,1.21 11.17,3.37 2.24,3.31 0.9,5.76 -2.26,13.99 -4.14,7.53 -3.11,4.53 -2.64,1.89 -2.09,1.86 -2.06,6.76 1.64,15.16 17.34,12.81 8.38,1.93 21.21,0.16 7.77,-2.84 2.28,0.18 7.28,3.24 2.17,0.29 1.43,-1.1 0.37,-2.58 -0.8,-5.04 0.02,-1.15 0.23,-0.92 1.11,-1.36 3.74,-2.7 2.63,-1.11 3.27,-0.58 3.6,-0.12 15.4,3.12 16.04,-0.55 2.27,1.07 2.02,2.99 9.83,24.16 0.58,4.03 -1.49,4.81 -1.57,3.19 -5.12,7.04 -2.26,5.28 -1.45,2.14 -2.51,1.11 -9.57,0.13 -2.73,0.82 -2.35,1.51 -3.97,3.62 -2.3,1.49 -2.95,0.72 -6.53,0.59 -2.84,0.99 -1.04,3.84 0.13,5.98 1.89,11.26 2.05,7.82 3.12,8.96 8.99,14.97 2.35,9.18 0.14,5.29 -2.42,1.94 -12.95,2.07 -2.62,0.88 -2.19,1.58 -1.45,2.21 -1.12,2.57 -0.81,2.87 -1.12,2.56 -1.56,2.34 -1.98,1.86 -2.3,1.58 1.26,2.43 4.51,3.17 15.44,4.58 6.93,0.6 5.04,-0.55 2.76,-2.89 5.65,-7.78 0.69,-2.29 -0.29,-2.42 -0.84,-1.74 0.36,-1.66 0.34,-0.91 4.17,-3.27 1.55,-1.81 0.95,-4.81 1.12,-2.37 1.62,0.54 2.75,4.36 2.99,23.07 0,6.61 0.46,4.78 3.72,11.32 10.33,13.11 2.28,6.36 0.19,1.44 -0.69,2.92 -1.23,1.99 -9.2,3.35 -14.21,7.82 -7.59,6.83 -9.51,5.54 -6.76,0.75 -6.49,-0.67 -3.8,0.63 -4.47,1.77 -6.25,4.73 -4.13,1.08 -7.05,0.7 -3.84,0.92 -4.69,2.06 -3.37,0.63 -2.94,1.28 -4.59,2.87 -2.72,0.99 -3.15,0.36 -2.84,1.79 -2.32,3.25 -1.7,12.88 -1.8,4.65 -11.1,8.81 -1.87,2.5 -1.79,4.17 -0.09,5.72 3.55,9.08 -0.91,3.17 -2.42,2.96 -6.2,2.72 -10.61,0.89 -15.92,6.39 -1.84,0.38 -7.67,-0.88 -3.35,0.12 -3.6,2.37 -4.27,3.94 -5.74,9.23 -4.37,3.11 -3.47,1.1 -2.58,-0.89 -2,1.01 -1.57,4.52 0.52,10.46 -2.19,10.15 -1.58,5.44 -2.41,3.01 -3.94,3.69 -1.32,2.28 -0.8,2.92 -0.73,6.72 -0.79,2.95 -1.12,2.54 -1.01,3.32 -0.27,4.43 2.17,7.87 2.53,4.89 12.94,11.4 34.99,29.87 7.77,9.59 4.27,3.1 9.96,5.37 3.39,3.79 1.79,3.36 1.37,1.91 2.8,-0.13 14.34,-12.21 2.17,-0.95 2.9,0.91 3.7,4.82 4,6.67 10.42,2.34 34.75,-0.84 -2.24,5.94 -0.24,1.23 0.28,2.62 2.12,2.28 9.34,2.56 3.52,2.1 2.57,3.03 5.12,9.91 1.46,3.56 0.08,1.61 -0.68,1.94 -0.89,1.77 -0.24,1.52 0.28,2.39 0.83,2.45 1.47,2.41 1.57,2.21 2.55,2.17 3.53,1.73 6.77,0.91 3.56,-0.63 2.29,-1.57 0.45,-1.14 0.36,-2.07 0.34,-1.26 1.22,-1.87 1.85,-1.64 2.82,-0.81 6.6,0.16 5.02,2.33 29.49,19.79 3.04,0.75 2.99,1.4 2.21,2.51 1.92,7.14 0.78,4.69 1.98,3.52 3.27,3.76 11.92,7.69 5.86,2.92 1.91,1.59 1.47,1.98 0.58,3.35 2.13,3.37 11.14,8.48 4.71,6.82 7.04,20.42 1.7,6.3 0.96,6.34 -0.16,2.99 -0.59,2.32 -0.56,1.4 -2.1,3.17 -0.45,0.92 -0.12,0.91 -0.03,1.61 0.5,1.91 2.45,1.2 4.7,1.23 10.56,0.38 9.52,2.25 5.11,2.37 6.47,-1.17 33.47,-17.12 24.95,-19.99 8.62,-0.8 21.36,1.78 3.09,0.98 33.2,17.57 5.56,1.1 4.13,-0.23 9.91,-10.47 2.29,-1.5 2.6,-1.06 3.19,1.56 2.28,3.73 1.18,9.63 -0.95,4.24 -1.36,2.81 -1.2,0.92 -6.94,7.55 -4.14,7.27 -3.1,4.36 -1.12,1.98 0.27,2.48 1.08,4.28 11.81,14.41 33.28,20.37 11.11,-6.7 62.26,3.11 4.86,-1.32 5.86,-2.44 15.27,-9.68 5.68,-2.13 3.45,-0.75 17.16,0.76 8.92,-8.45 23.26,-9.03 9.24,-0.04 3.07,-2.31 2.69,-4.15 3.58,-9.4 1.33,-5.48 0.02,-4.77 -2.8,-3.7 -2.97,-1.69 -3.32,-0.29 -2.6,0.77 -5.23,2.68 -2.71,0.67 -3.01,0.04 -2.33,-1.24 -1.78,-1.86 -1.12,-2.62 0.6,-6.25 2.71,-9.07 7.92,-19.12 4.51,-7.75 4,-4.96 2.41,-1.37 2.3,-1.55 1.48,-3.18 0.77,-4.55 -1.24,-18.06 0.19,-3.1 0.94,-3.08 1.63,-4.5 8.78,-16.85 6.69,-8.47 1.06,-3.28 0.33,-4.31 -3.74,-21.14 -0.54,-8.3 0.26,-9.48 5.89,-10.54 18.72,-10.01 107.98,-10.17 29.46,1.51 64.82,-7.57 18.24,-5.58 37.31,-27.56 20.17,-35.36 41.99,-58.32 -5.49,-13.9 -6.07,-9.75 -7.97,-7.88 -17.34,-10.61 -31.04,-6.21 -4.13,-1.8 -4,-4.64 -2.16,-3.55 -2.75,-5.72 2.34,-5.39 6.1,-7.6 16.06,-9.81 15.25,-5.32 7.41,-7.69 15.83,-25.2 4.27,-14.41 0.65,-3.31 0.82,-5.07 0.53,-6.05 -0.06,-4.95 -0.9,-2.3 -2.67,-1.38 -2.26,-0.56 -1.13,-1.85 -0.48,-1.86 2.68,-12.39 2.87,-7.96 1.17,-2.41 1.73,-3.02 1.79,-1.75 2.45,-1.64 7.83,-3.57 3.95,-1.19 38.42,-0.66 2.8,0.81 2.57,1.3 2.26,1.66 5.68,5.54 4.68,2.81 3.01,0.91 32.43,-3.42 18.31,1.62 14.06,-1.11 5.11,0.76 5.67,2.56 13.88,3.81 3.28,-0.54 4.19,-1.58 11.14,-7.64 3.33,-3.82 1.81,-4.83 0.5,-10.65 1.28,-11.29 6.58,-10.46 2.37,-8.05 3.99,-4.94 4.5,-6.97 1.09,-2.95 2.08,-9.36 1.08,-2.66 1.84,-2.7 3.05,-2.93 4.94,-2.87 5.08,-1.94 8.65,7.29 56.41,6.34 6.25,1.62 8.25,-1.29 15.79,-11.15 34.9,-14.19 6.41,-5.09 4.31,-4.2 3.48,-8.09 1.17,-4.62 3.56,-4.6 2.94,-2.67 23.4,-11.49 1.6,-7.41 0.32,-2.35 1.93,-1.82 4.47,-0.11 23.87,3.97 12.47,4.26 2.34,1.36 5.45,0.11 37.37,-11.32 3.71,0.02 4.21,1.04 6.3,4.04 5.54,5.76 3.15,0.07 4.21,-1.46 13.4,-12.25 5.4,-3.77 5.56,-9.26 5.8,-0.26 12.28,11.09 -3.14,9.45 1.02,9.19 18.93,25.7 4.22,6.52 15.07,31.34 0.28,3.47 -0.63,4.35 -3.57,6.86 -2.98,3.21 -3.15,2.3 -11.4,4.3 -1.69,3.79 -0.1,7.13 2.64,15.89 10.25,19.85 0.87,2.43 -1.78,8.35 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7283" /><path
+               id="path3240" /><path
                d="m 3688.57,7137.8 0,0 -28.33,-0.52 -6.17,-2.18 -6.52,-4.26 -14.49,-19.92 -1.39,-3.13 -36.54,-3.09 -11.14,2.28 -10.95,7.65 -7.13,9.94 -7.9,8.68 -13.48,3.46 -8.13,6.09 -10.8,12.54 -4.73,-0.59 -24.62,-8.53 -4.19,-2.42 -1.91,-2.9 0.13,-1.95 0.34,-2.36 0.44,-1.6 0.13,-2.12 -0.28,-2.19 -1.62,-1.92 -10.93,-6.83 -17.14,-7.4 -6.68,-1.21 -4.54,0.4 -12.37,8.22 -3.34,0.88 -4.11,-1.12 -13.1,-7.15 -4.02,-0.06 -2.4,2.73 -0.46,3.85 -0.54,10.28 -1.9,11.6 -3.68,5.93 -2.91,2.23 -3.24,0.39 -5.32,-2.08 -3.47,-2.77 -8.09,-12.75 -2.55,-1.32 -2.69,0.66 -22.01,20.38 -5.21,6.09 -4.09,5.99 -3.99,7.54 -2.75,6.7 -3.2,10.03 -1.59,3.89 -1.57,2.22 -4.14,2.89 -1.88,2.05 -1.16,2.52 -0.97,3.9 -1.39,2.45 -5.93,6.44 -2.9,39.58 -0.56,4.59 36.66,-7.81 8.62,3.72 -8.38,14.42 -25.01,14.24 -27.45,2.92 5.08,21.45 1.06,6.73 0.64,7.43 0.68,3.57 0.79,2.39 1.42,2 2.64,2.68 2.02,2.66 1.1,2.57 0.94,8.26 1.19,3.24 2.15,0.59 3.18,-0.31 7.75,-1.92 5.57,-3.22 1.45,-1.53 5.48,-3.68 2.08,-2.22 0.34,-3.1 -1.84,-9.57 -0.66,-5.12 -0.17,-3.16 0.54,-2.13 0.73,-1.14 0.73,-0.91 0.93,-0.74 1.34,-0.79 2.37,-0.83 8.26,4.69 64.62,54.68 16.77,5.45 18.29,-3.8 2.56,0.2 3.66,1.92 2.73,3.23 6.14,17.2 2.91,4.35 3.55,2.64 8.05,2.9 4.59,0.93 4.1,0.03 8.73,-1.42 5.2,3.53 3.23,3.21 8.06,35.83 2.5,3.89 2.82,2.86 1.52,0.94 1.02,0.42 1.74,0.14 32.68,-7.13 3.78,0.46 3.65,2.24 11.38,10.94 3.79,2.19 3.36,0.69 3.59,-0.22 2.98,-1.02 1.25,-1.62 0.77,-2.83 -1.24,-5.4 -1.08,-2.83 -7.29,-10.76 -6.36,-13.48 -2.55,-6.97 -0.67,-3.17 0.87,-2.69 2.21,-3.82 23.78,-17.2 0.42,-0.51 0.82,-5.96 0.33,-7.24 1.64,-6.3 3.64,-3.22 2.9,-1.73 1.79,-2.67 0.9,-4.62 -0.88,-8.32 -0.76,-3.69 -2.05,-5.79 -0.86,-3.93 -1.1,-13.93 -0.35,-15.07 -0.47,-2.89 -0.59,-1.36 -1.31,-1.49 -1.72,-1.32 -6.62,-3.07 -11.76,-3.19 -1.72,-1.23 -1.51,-1.87 -0.15,-3.62 0.91,-5.05 4.71,-18.12 1.19,-9.61 0.02,-7.71 0.82,-5.65 2.33,-4.01 7.26,-3.85 10.95,-3.06 5.97,-6.37 16.95,-26.68 14.85,-7.84 5.43,-4.33 23.54,-24.71 0.51,0.36 1.02,0.42 2.57,0.34 1.24,-0.21 1.76,-5.78 3.56,-19.71 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3688.57,7137.8 0,0 -28.33,-0.52 -6.17,-2.18 -6.52,-4.26 -14.49,-19.92 -1.39,-3.13 -36.54,-3.09 -11.14,2.28 -10.95,7.65 -7.13,9.94 -7.9,8.68 -13.48,3.46 -8.13,6.09 -10.8,12.54 -4.73,-0.59 -24.62,-8.53 -4.19,-2.42 -1.91,-2.9 0.13,-1.95 0.34,-2.36 0.44,-1.6 0.13,-2.12 -0.28,-2.19 -1.62,-1.92 -10.93,-6.83 -17.14,-7.4 -6.68,-1.21 -4.54,0.4 -12.37,8.22 -3.34,0.88 -4.11,-1.12 -13.1,-7.15 -4.02,-0.06 -2.4,2.73 -0.46,3.85 -0.54,10.28 -1.9,11.6 -3.68,5.93 -2.91,2.23 -3.24,0.39 -5.32,-2.08 -3.47,-2.77 -8.09,-12.75 -2.55,-1.32 -2.69,0.66 -22.01,20.38 -5.21,6.09 -4.09,5.99 -3.99,7.54 -2.75,6.7 -3.2,10.03 -1.59,3.89 -1.57,2.22 -4.14,2.89 -1.88,2.05 -1.16,2.52 -0.97,3.9 -1.39,2.45 -5.93,6.44 -2.9,39.58 -0.56,4.59 36.66,-7.81 8.62,3.72 -8.38,14.42 -25.01,14.24 -27.45,2.92 5.08,21.45 1.06,6.73 0.64,7.43 0.68,3.57 0.79,2.39 1.42,2 2.64,2.68 2.02,2.66 1.1,2.57 0.94,8.26 1.19,3.24 2.15,0.59 3.18,-0.31 7.75,-1.92 5.57,-3.22 1.45,-1.53 5.48,-3.68 2.08,-2.22 0.34,-3.1 -1.84,-9.57 -0.66,-5.12 -0.17,-3.16 0.54,-2.13 0.73,-1.14 0.73,-0.91 0.93,-0.74 1.34,-0.79 2.37,-0.83 8.26,4.69 64.62,54.68 16.77,5.45 18.29,-3.8 2.56,0.2 3.66,1.92 2.73,3.23 6.14,17.2 2.91,4.35 3.55,2.64 8.05,2.9 4.59,0.93 4.1,0.03 8.73,-1.42 5.2,3.53 3.23,3.21 8.06,35.83 2.5,3.89 2.82,2.86 1.52,0.94 1.02,0.42 1.74,0.14 32.68,-7.13 3.78,0.46 3.65,2.24 11.38,10.94 3.79,2.19 3.36,0.69 3.59,-0.22 2.98,-1.02 1.25,-1.62 0.77,-2.83 -1.24,-5.4 -1.08,-2.83 -7.29,-10.76 -6.36,-13.48 -2.55,-6.97 -0.67,-3.17 0.87,-2.69 2.21,-3.82 23.78,-17.2 0.42,-0.51 0.82,-5.96 0.33,-7.24 1.64,-6.3 3.64,-3.22 2.9,-1.73 1.79,-2.67 0.9,-4.62 -0.88,-8.32 -0.76,-3.69 -2.05,-5.79 -0.86,-3.93 -1.1,-13.93 -0.35,-15.07 -0.47,-2.89 -0.59,-1.36 -1.31,-1.49 -1.72,-1.32 -6.62,-3.07 -11.76,-3.19 -1.72,-1.23 -1.51,-1.87 -0.15,-3.62 0.91,-5.05 4.71,-18.12 1.19,-9.61 0.02,-7.71 0.82,-5.65 2.33,-4.01 7.26,-3.85 10.95,-3.06 5.97,-6.37 16.95,-26.68 14.85,-7.84 5.43,-4.33 23.54,-24.71 0.51,0.36 1.02,0.42 2.57,0.34 1.24,-0.21 1.76,-5.78 3.56,-19.71 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7285" /><path
+               id="path3242" /><path
                d="m 2085.15,7982.97 0,0 3.84,-4.43 2.19,-11.48 -3.28,-2.48 -0.01,0.02 -0.03,-0.02 -0.93,4.68 -2.69,0.9 -2.01,4.98 -2.85,3.55 -3.85,3.63 9.59,0.65 0.03,0 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2085.15,7982.97 0,0 3.84,-4.43 2.19,-11.48 -3.28,-2.48 -0.01,0.02 -0.03,-0.02 -0.93,4.68 -2.69,0.9 -2.01,4.98 -2.85,3.55 -3.85,3.63 9.59,0.65 0.03,0 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7287" /><path
+               id="path3244" /><path
                d="m 2108.12,7983.36 0,0 -11.41,-3.21 3.31,-5.86 -3.35,5.86 11.45,3.21 0,0 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2108.12,7983.36 0,0 -11.41,-3.21 3.31,-5.86 -3.35,5.86 11.45,3.21 0,0 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7289" /><path
+               id="path3246" /><path
                d="m 2100.02,7974.29 0,0 10.37,3.06 -2.27,6.01 0.03,0 2.27,-6.01 -10.4,-3.06 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2100.02,7974.29 0,0 10.37,3.06 -2.27,6.01 0.03,0 2.27,-6.01 -10.4,-3.06 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7291" /><path
+               id="path3248" /><path
                d="m 2733.83,8282.24 0,0 -28.17,-2.16 -13.38,4.86 -7.1,12.59 7.1,3.77 1.12,6.33 -2.99,6.79 -5.18,5.19 20.5,19.73 22.86,10.42 25.52,1.4 28.42,-7.5 -2.98,-1.38 -1.44,-3.39 -0.27,-4.94 0.67,-6.19 -11.86,-11.46 -8.31,-13.73 -9.43,-12.56 -15.08,-7.77 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2733.83,8282.24 0,0 -28.17,-2.16 -13.38,4.86 -7.1,12.59 7.1,3.77 1.12,6.33 -2.99,6.79 -5.18,5.19 20.5,19.73 22.86,10.42 25.52,1.4 28.42,-7.5 -2.98,-1.38 -1.44,-3.39 -0.27,-4.94 0.67,-6.19 -11.86,-11.46 -8.31,-13.73 -9.43,-12.56 -15.08,-7.77 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7293" /><path
+               id="path3250" /><path
                d="m 4267.82,8316.99 0,0 40.37,-70.91 -82.04,11.08 -11.62,-7.15 3.02,-4.4 2.95,-1.98 -26.1,-2.47 -17.09,2.36 -7.58,8.92 0.53,22.75 -3.24,8.62 -9.39,3.17 -17.03,0.05 -6.87,-2.48 -4.63,-6.72 -4.82,-0.14 -2.32,8.11 -2.37,4.53 -3.43,0.13 -7.66,-5.08 -2.21,15.33 16.81,45.47 24.63,25.55 31.1,6.25 56.01,-22.21 16.97,-13.74 5.3,-6.59 10.71,-18.45 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4267.82,8316.99 0,0 40.37,-70.91 -82.04,11.08 -11.62,-7.15 3.02,-4.4 2.95,-1.98 -26.1,-2.47 -17.09,2.36 -7.58,8.92 0.53,22.75 -3.24,8.62 -9.39,3.17 -17.03,0.05 -6.87,-2.48 -4.63,-6.72 -4.82,-0.14 -2.32,8.11 -2.37,4.53 -3.43,0.13 -7.66,-5.08 -2.21,15.33 16.81,45.47 24.63,25.55 31.1,6.25 56.01,-22.21 16.97,-13.74 5.3,-6.59 10.71,-18.45 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7295" /><path
+               id="path3252" /><path
                d="m 2592.47,8319.72 0,0 -18.53,-10.49 -14.49,0.36 -8.23,7.35 -6.56,16.14 4.15,17.91 11.72,8.97 4.79,2.21 4.6,2.97 41.63,17.6 1.28,-12.08 -5.23,-27.26 -15.13,-23.68 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2592.47,8319.72 0,0 -18.53,-10.49 -14.49,0.36 -8.23,7.35 -6.56,16.14 4.15,17.91 11.72,8.97 4.79,2.21 4.6,2.97 41.63,17.6 1.28,-12.08 -5.23,-27.26 -15.13,-23.68 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7297" /><path
+               id="path3254" /><path
                d="m 2394.59,8552.82 0,0 -1.11,-1.14 -1.79,0.25 -1.78,-1.25 -7.23,-7.27 -6.5,-8.48 31.67,-61.04 12.15,-7.03 -8.88,-7.55 -22.05,-7.71 -15.02,13.95 -11.89,22.37 -12.7,17.55 19.01,35.06 11.71,12.57 14.2,5.13 0.21,-5.41 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2394.59,8552.82 0,0 -1.11,-1.14 -1.79,0.25 -1.78,-1.25 -7.23,-7.27 -6.5,-8.48 31.67,-61.04 12.15,-7.03 -8.88,-7.55 -22.05,-7.71 -15.02,13.95 -11.89,22.37 -12.7,17.55 19.01,35.06 11.71,12.57 14.2,5.13 0.21,-5.41 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7299" /><path
+               id="path3256" /><path
                d="m 2531.89,8534.44 0,0 -5.34,-7.59 -8.81,-2.76 -10.96,1.28 -9.83,3.92 -5.56,4.7 -16.8,-6.27 -20.91,6.66 -37.3,23.65 12.84,23.21 14.76,14 17.58,6.82 21.53,1.74 35.77,-2.46 14.58,-9.09 11.36,-19.96 -0.04,-7.59 -5.38,-8.94 -7.49,-21.32 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2531.89,8534.44 0,0 -5.34,-7.59 -8.81,-2.76 -10.96,1.28 -9.83,3.92 -5.56,4.7 -16.8,-6.27 -20.91,6.66 -37.3,23.65 12.84,23.21 14.76,14 17.58,6.82 21.53,1.74 35.77,-2.46 14.58,-9.09 11.36,-19.96 -0.04,-7.59 -5.38,-8.94 -7.49,-21.32 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7301" /><path
+               id="path3258" /><path
                d="m 2744.64,8760.41 0,0 50.33,-20.77 136.16,-32 10.78,-9.48 2.95,-11.24 1.98,-15.46 4.76,-13.27 11.34,-4.56 46.97,0.02 9.59,1.82 6.25,6.59 9.09,2.52 7.07,6.42 11.57,2.65 12.99,-12.18 11,-1.17 9.38,3.3 0.01,0 9.72,-0.05 38.12,19.7 12.04,15.27 15.58,6.36 8.01,14.64 8.37,6.91 2.32,-40.09 31.24,-11.26 39.47,-1.75 26.86,-11.57 11.35,-8.45 16.82,-7.06 15.34,-10.7 6.87,-19.19 7.57,-10.32 16.79,3.08 29.12,11.69 -2.75,23.11 15.1,1.23 21.08,-12.69 14.98,-18.6 9.31,-37.88 4.19,-8.8 6.01,-8.4 12.24,-12.85 -8.17,-6.44 -8.57,0.91 -7.95,3.57 -6.11,1.53 0.46,-2.41 -15.81,-12.93 -2.07,-0.08 -4.09,-2.88 -2.8,0.14 -1.53,-2.32 -0.17,-10.27 9.47,-0.48 16.69,5.32 16.85,1.18 9.95,-12.91 6.81,6.08 7.36,0.63 3.63,-6.68 -4.37,-15.71 3.6,-15.36 0.66,-22.04 -3.03,-46.14 -2.92,-19.83 -4.28,-15.7 -6,-12.97 -8.03,-11.91 -20.6,-19.81 -25.77,-14.92 -28,-9.45 -27.08,-3.43 0.09,-7.59 28.11,-14.38 155.93,39.72 12.15,-4.18 39.75,-33.64 -12.62,-13.15 0.07,-12.14 5.4,-13.62 3.69,-17.77 -3.47,-14.95 -8.93,-14.01 -11.55,-10.23 -11.22,-3.55 1.75,-2.47 2.31,-1.83 0.36,-3.45 -4.18,-7.43 7.08,-7.42 2.17,-9.34 -2.35,-10.5 -6.28,-10.74 14.23,5.55 10.53,13.43 14.69,34.87 8.03,37.06 4.46,9.45 6.43,4.43 24.47,3.02 8.82,5.43 4.18,6.08 3.2,6.27 5.93,6.09 7.39,2.56 27.63,-1.89 14.41,-6.85 39.9,-30.75 103.36,-43.35 59.22,-53.38 26.96,-6.08 29.64,6.26 21.57,14.19 36.2,35.69 21.02,14.45 22.09,10.01 54.03,8.59 0.22,-7.58 -11.59,-0.94 -16.31,-0.55 11.42,-4.79 11.17,4.05 15.44,-10.2 44.82,29.4 20.59,-7.15 -23.28,-27.86 -6.63,-11.01 -3.89,3.05 -10.07,4.13 7.56,-18.02 7.32,-44.05 5.77,-20.95 -4.5,-14.14 1.14,-18.9 5.29,-31.86 -2.27,-19.17 -5.96,-10.33 -6.1,-7.2 -2.55,-9.74 -74.37,-51.54 -25.38,-34.4 -11.22,-7.72 -26.18,-9.84 -5.01,0.04 -5.51,-5.15 -4.51,3.08 -4.69,4.91 -5.89,0.42 -5.16,-3.5 -2.49,-2.96 -24.3,-40.02 -6.51,-7.7 0.17,-6.9 9.28,-21.51 9.94,-15.74 12.9,-10.2 18.03,-5.18 25.27,3.25 6.47,-2.42 4.98,-11.54 1.06,-13.15 2.68,-10.17 9.81,-2.61 2.48,-0.11 -0.93,-4.51 0.57,-28.98 2.22,-3.16 2.25,-4.08 3.11,-1.93 1.98,-1.67 1.35,-0.83 26.63,-7.73 0.54,-1.13 -0.49,-0.56 -1.35,-0.36 -1.01,-0.48 -1.46,-1.19 -2.51,-2.6 -3.49,-2.57 -18.04,-3.89 -3.15,-0.09 -0.83,0.27 -0.72,0.38 -1.25,1.06 -1.37,1.75 -0.57,2.23 0.05,1.72 0.56,2.09 0.76,2.09 0.05,1.73 -0.75,1.42 -8.15,2.48 -2.17,1.21 -1.95,0.32 -2.33,-0.32 -15.41,-10.76 -31.43,-31.07 -12.64,-8.43 -13.13,-6.37 -3.6,-2.97 -2.38,-2.62 -4.8,-12.05 -0.84,-2.99 -1.6,-9.56 -0.15,-2.36 0.06,-2.33 0.47,-2.6 0.98,-2.68 5.94,-12.8 0.88,-2.82 1.67,-9.6 1.82,-7.26 2.66,-12.61 -0.62,-11.9 -1.21,-9 -5.3,-25.38 -0.33,-3.06 0.75,-1.42 1.36,-1.29 5.54,-0.84 5.83,0.18 18.46,-4.71 2.51,-2.16 5.28,-6.42 5.34,-8.66 14.64,-18.41 7.33,-6.42 5.4,-2.88 8.74,2.56 4.92,0.05 6.17,-0.93 12.64,-4.27 7.19,-4.63 8.73,-8.37 3.2,-4.54 1.95,-3.83 0.19,-3.27 -0.33,-3.12 0.3,-3.53 0.82,-3.54 5.92,-10.4 0.83,-2.82 0.29,-2.84 -0.13,-2.99 -0.25,-3.43 0.29,-3.05 0.09,-3.04 -0.61,-2.78 -1.09,-2.65 -3.48,-3.98 -5.17,-2.44 1.04,-19.24 8.83,-29.84 0.91,-7.11 -0.38,-4.79 -2.21,-1.84 -4.75,-2.78 0.74,-0.98 5.06,-0.9 2.31,-1.86 -0.68,-1.52 -2.29,-2.59 -3.51,-3.2 -3.89,-8.11 -2.99,-3.36 -2.94,-1.34 -1.99,1.5 -1.5,2.17 -0.7,3.09 -0.9,6.5 -0.9,2.86 -1.09,2.55 -1.3,2.56 -1.6,2.14 -2.31,1.78 -2.49,0.88 -2.77,0.07 -30.2,-5.4 -2.98,0.1 -2.38,0.77 -5.56,2.93 -5.44,-0.14 -2.31,-2.07 -0.84,-2.96 0.28,-3.1 1.88,-9.18 1.59,-5.88 0.2,-3.59 -0.51,-4.16 -4.26,-10.52 -1.03,-3.85 -0.13,-3.11 -0.96,-6.32 -0.23,-3.34 0.82,-3.72 -1.39,-1.91 -10.13,-6.26 -29.06,-24.37 -3.15,-1.43 -6.76,-1.35 -12.76,-5.6 -11.58,-2.15 -2.53,-1.93 -1.69,-2.51 -1.89,-6.92 -0.83,-4.42 -1.6,-5.96 -2.31,-2.7 -3.06,-1.05 -7.82,2.66 -3.71,-0.23 -5.22,-1.33 -9.15,-4.93 -4.14,-3.4 -2.6,-3.51 -0.86,-2.95 -4.66,-35.22 -0.35,-6.91 0.28,-3.39 0.38,-3.21 -0.82,-4.79 -2.21,-7.01 -6.48,-11.36 -6.99,-10.28 -20.92,-9.32 -27.57,8.89 -95.55,55.32 -24.03,8.63 -14.98,0.41 -3.56,19.71 -1.76,5.78 -1.24,0.21 -2.57,-0.34 -1.02,-0.42 -0.51,-0.36 -23.54,24.71 -5.43,4.33 -14.85,7.84 -16.95,26.68 -5.97,6.37 -10.95,3.06 -7.26,3.85 -2.33,4.01 -0.82,5.65 -0.02,7.71 -1.19,9.61 -4.71,18.12 -0.91,5.05 0.15,3.62 1.51,1.87 1.72,1.23 11.76,3.19 6.62,3.07 1.72,1.32 1.31,1.49 0.59,1.36 0.47,2.89 0.35,15.07 1.1,13.93 0.86,3.93 2.05,5.79 0.76,3.69 0.88,8.32 -0.9,4.62 -1.79,2.67 -2.9,1.73 -3.64,3.22 -1.64,6.3 -0.33,7.24 -0.82,5.96 -0.42,0.51 -23.78,17.2 -2.21,3.82 -0.87,2.69 0.67,3.17 2.55,6.97 6.36,13.48 7.29,10.76 1.08,2.83 1.24,5.4 -0.77,2.83 -1.25,1.62 -2.98,1.02 -3.59,0.22 -3.36,-0.69 -3.79,-2.19 -11.38,-10.94 -3.65,-2.24 -3.78,-0.46 -32.68,7.13 -1.74,-0.14 -1.02,-0.42 -1.52,-0.94 -2.82,-2.86 -2.5,-3.89 -8.06,-35.83 -3.23,-3.21 -5.2,-3.53 -8.73,1.42 -4.1,-0.03 -4.59,-0.93 -8.05,-2.9 -3.55,-2.64 -2.91,-4.35 -6.14,-17.2 -2.73,-3.23 -3.66,-1.92 -2.56,-0.2 -18.29,3.8 -16.77,-5.45 -64.62,-54.68 -8.26,-4.69 -2.37,0.83 -1.34,0.79 -0.93,0.74 -0.73,0.91 -0.73,1.14 -0.54,2.13 0.17,3.16 0.66,5.12 1.84,9.57 -0.34,3.1 -2.08,2.22 -5.48,3.68 -1.45,1.53 -5.57,3.22 -7.75,1.92 -3.18,0.31 -2.15,-0.59 -1.19,-3.24 -0.94,-8.26 -1.1,-2.57 -2.02,-2.66 -2.64,-2.68 -1.42,-2 -0.79,-2.39 -0.68,-3.57 -0.64,-7.43 -1.06,-6.73 -5.08,-21.45 -32.03,3.42 -24.35,9.37 -48.01,30.57 -21.9,24.49 -8.02,35.44 -2.11,30.29 -2.77,19.38 -6.66,5.99 -31.12,17.09 -9.91,3.55 -16.18,14.65 -15.59,33.34 -10.63,35.9 -1.17,22.16 -23.96,9.39 -41.7,35.83 -24.86,15.13 -24.65,5.61 -83.48,1.74 -24.97,11.62 -16.77,4.65 -7.61,-4.89 -6.89,-11.39 -15.24,5.06 -23.12,17.72 -21.82,27.22 -54.09,110.31 25.2,11.62 12.35,0.9 15.69,-4.33 25.61,-17.39 14.11,-4.69 14.36,6.86 5.01,12.14 5.34,22.05 3.54,23.83 -0.1,17.25 -7.61,11.44 -12.09,10.84 -8.95,11.3 1.86,12.7 0.01,6.9 -15.97,4.93 -22.75,-4.21 -21.35,-10.26 -11.74,-13.18 -4.46,0.01 -17.76,31.12 -11.51,25.04 -1.8,5.38 5.28,22.32 10.12,19.21 6.85,17.47 -4.64,16.94 0.01,7.59 8.03,6.08 27.58,7.94 11.31,1.08 6.77,5.62 10.21,13.88 10.13,17.56 6.47,16.78 -14.79,-2.92 -24.57,-21.3 -14.01,-6.11 1.36,3.65 1.76,7.93 1.38,3.62 -19.81,-2.35 -33.96,-10.35 -19.98,-2.33 -23.3,4.08 -10.04,-3.96 -21.72,-20.87 -7.68,-2.49 -17.27,6.4 -18.49,17 -13.28,24.57 -1.68,28.96 9.2,11.42 17.84,7.99 19.9,3.9 15.31,-0.82 0.03,7.59 -11.63,2.9 -8.86,8.49 -8.58,2.77 -10.45,-13.97 -5.47,12.27 2.01,12.53 6.07,11.58 6.49,9.14 13.89,-6.25 52.62,14.27 71.3,-0.19 16.54,4.4 13.69,8.54 27.41,24.24 25.1,12.35 10.75,8.28 4.39,18.06 0.03,26.96 -16.43,25.53 -52.83,57.14 -7.46,11.89 -3.12,11.82 -5.97,5.18 -13.28,-0.43 -13.7,-3.82 -7.15,-4.99 -4.42,8.29 22.09,15.16 -22.3,60.52 -8.35,15.54 -18.45,11.67 -34.79,30.72 -21.75,11.05 0.04,7.59 3.74,20.08 -8.34,22.69 -12.36,22.31 -8.6,19.31 -3.47,29.29 3.05,25.8 8.87,32.33 0.02,0 22.09,-7.06 23.6,-1.07 43.8,16.24 14.95,2.26 51.25,-8.96 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2744.64,8760.41 0,0 50.33,-20.77 136.16,-32 10.78,-9.48 2.95,-11.24 1.98,-15.46 4.76,-13.27 11.34,-4.56 46.97,0.02 9.59,1.82 6.25,6.59 9.09,2.52 7.07,6.42 11.57,2.65 12.99,-12.18 11,-1.17 9.38,3.3 0.01,0 9.72,-0.05 38.12,19.7 12.04,15.27 15.58,6.36 8.01,14.64 8.37,6.91 2.32,-40.09 31.24,-11.26 39.47,-1.75 26.86,-11.57 11.35,-8.45 16.82,-7.06 15.34,-10.7 6.87,-19.19 7.57,-10.32 16.79,3.08 29.12,11.69 -2.75,23.11 15.1,1.23 21.08,-12.69 14.98,-18.6 9.31,-37.88 4.19,-8.8 6.01,-8.4 12.24,-12.85 -8.17,-6.44 -8.57,0.91 -7.95,3.57 -6.11,1.53 0.46,-2.41 -15.81,-12.93 -2.07,-0.08 -4.09,-2.88 -2.8,0.14 -1.53,-2.32 -0.17,-10.27 9.47,-0.48 16.69,5.32 16.85,1.18 9.95,-12.91 6.81,6.08 7.36,0.63 3.63,-6.68 -4.37,-15.71 3.6,-15.36 0.66,-22.04 -3.03,-46.14 -2.92,-19.83 -4.28,-15.7 -6,-12.97 -8.03,-11.91 -20.6,-19.81 -25.77,-14.92 -28,-9.45 -27.08,-3.43 0.09,-7.59 28.11,-14.38 155.93,39.72 12.15,-4.18 39.75,-33.64 -12.62,-13.15 0.07,-12.14 5.4,-13.62 3.69,-17.77 -3.47,-14.95 -8.93,-14.01 -11.55,-10.23 -11.22,-3.55 1.75,-2.47 2.31,-1.83 0.36,-3.45 -4.18,-7.43 7.08,-7.42 2.17,-9.34 -2.35,-10.5 -6.28,-10.74 14.23,5.55 10.53,13.43 14.69,34.87 8.03,37.06 4.46,9.45 6.43,4.43 24.47,3.02 8.82,5.43 4.18,6.08 3.2,6.27 5.93,6.09 7.39,2.56 27.63,-1.89 14.41,-6.85 39.9,-30.75 103.36,-43.35 59.22,-53.38 26.96,-6.08 29.64,6.26 21.57,14.19 36.2,35.69 21.02,14.45 22.09,10.01 54.03,8.59 0.22,-7.58 -11.59,-0.94 -16.31,-0.55 11.42,-4.79 11.17,4.05 15.44,-10.2 44.82,29.4 20.59,-7.15 -23.28,-27.86 -6.63,-11.01 -3.89,3.05 -10.07,4.13 7.56,-18.02 7.32,-44.05 5.77,-20.95 -4.5,-14.14 1.14,-18.9 5.29,-31.86 -2.27,-19.17 -5.96,-10.33 -6.1,-7.2 -2.55,-9.74 -74.37,-51.54 -25.38,-34.4 -11.22,-7.72 -26.18,-9.84 -5.01,0.04 -5.51,-5.15 -4.51,3.08 -4.69,4.91 -5.89,0.42 -5.16,-3.5 -2.49,-2.96 -24.3,-40.02 -6.51,-7.7 0.17,-6.9 9.28,-21.51 9.94,-15.74 12.9,-10.2 18.03,-5.18 25.27,3.25 6.47,-2.42 4.98,-11.54 1.06,-13.15 2.68,-10.17 9.81,-2.61 2.48,-0.11 -0.93,-4.51 0.57,-28.98 2.22,-3.16 2.25,-4.08 3.11,-1.93 1.98,-1.67 1.35,-0.83 26.63,-7.73 0.54,-1.13 -0.49,-0.56 -1.35,-0.36 -1.01,-0.48 -1.46,-1.19 -2.51,-2.6 -3.49,-2.57 -18.04,-3.89 -3.15,-0.09 -0.83,0.27 -0.72,0.38 -1.25,1.06 -1.37,1.75 -0.57,2.23 0.05,1.72 0.56,2.09 0.76,2.09 0.05,1.73 -0.75,1.42 -8.15,2.48 -2.17,1.21 -1.95,0.32 -2.33,-0.32 -15.41,-10.76 -31.43,-31.07 -12.64,-8.43 -13.13,-6.37 -3.6,-2.97 -2.38,-2.62 -4.8,-12.05 -0.84,-2.99 -1.6,-9.56 -0.15,-2.36 0.06,-2.33 0.47,-2.6 0.98,-2.68 5.94,-12.8 0.88,-2.82 1.67,-9.6 1.82,-7.26 2.66,-12.61 -0.62,-11.9 -1.21,-9 -5.3,-25.38 -0.33,-3.06 0.75,-1.42 1.36,-1.29 5.54,-0.84 5.83,0.18 18.46,-4.71 2.51,-2.16 5.28,-6.42 5.34,-8.66 14.64,-18.41 7.33,-6.42 5.4,-2.88 8.74,2.56 4.92,0.05 6.17,-0.93 12.64,-4.27 7.19,-4.63 8.73,-8.37 3.2,-4.54 1.95,-3.83 0.19,-3.27 -0.33,-3.12 0.3,-3.53 0.82,-3.54 5.92,-10.4 0.83,-2.82 0.29,-2.84 -0.13,-2.99 -0.25,-3.43 0.29,-3.05 0.09,-3.04 -0.61,-2.78 -1.09,-2.65 -3.48,-3.98 -5.17,-2.44 1.04,-19.24 8.83,-29.84 0.91,-7.11 -0.38,-4.79 -2.21,-1.84 -4.75,-2.78 0.74,-0.98 5.06,-0.9 2.31,-1.86 -0.68,-1.52 -2.29,-2.59 -3.51,-3.2 -3.89,-8.11 -2.99,-3.36 -2.94,-1.34 -1.99,1.5 -1.5,2.17 -0.7,3.09 -0.9,6.5 -0.9,2.86 -1.09,2.55 -1.3,2.56 -1.6,2.14 -2.31,1.78 -2.49,0.88 -2.77,0.07 -30.2,-5.4 -2.98,0.1 -2.38,0.77 -5.56,2.93 -5.44,-0.14 -2.31,-2.07 -0.84,-2.96 0.28,-3.1 1.88,-9.18 1.59,-5.88 0.2,-3.59 -0.51,-4.16 -4.26,-10.52 -1.03,-3.85 -0.13,-3.11 -0.96,-6.32 -0.23,-3.34 0.82,-3.72 -1.39,-1.91 -10.13,-6.26 -29.06,-24.37 -3.15,-1.43 -6.76,-1.35 -12.76,-5.6 -11.58,-2.15 -2.53,-1.93 -1.69,-2.51 -1.89,-6.92 -0.83,-4.42 -1.6,-5.96 -2.31,-2.7 -3.06,-1.05 -7.82,2.66 -3.71,-0.23 -5.22,-1.33 -9.15,-4.93 -4.14,-3.4 -2.6,-3.51 -0.86,-2.95 -4.66,-35.22 -0.35,-6.91 0.28,-3.39 0.38,-3.21 -0.82,-4.79 -2.21,-7.01 -6.48,-11.36 -6.99,-10.28 -20.92,-9.32 -27.57,8.89 -95.55,55.32 -24.03,8.63 -14.98,0.41 -3.56,19.71 -1.76,5.78 -1.24,0.21 -2.57,-0.34 -1.02,-0.42 -0.51,-0.36 -23.54,24.71 -5.43,4.33 -14.85,7.84 -16.95,26.68 -5.97,6.37 -10.95,3.06 -7.26,3.85 -2.33,4.01 -0.82,5.65 -0.02,7.71 -1.19,9.61 -4.71,18.12 -0.91,5.05 0.15,3.62 1.51,1.87 1.72,1.23 11.76,3.19 6.62,3.07 1.72,1.32 1.31,1.49 0.59,1.36 0.47,2.89 0.35,15.07 1.1,13.93 0.86,3.93 2.05,5.79 0.76,3.69 0.88,8.32 -0.9,4.62 -1.79,2.67 -2.9,1.73 -3.64,3.22 -1.64,6.3 -0.33,7.24 -0.82,5.96 -0.42,0.51 -23.78,17.2 -2.21,3.82 -0.87,2.69 0.67,3.17 2.55,6.97 6.36,13.48 7.29,10.76 1.08,2.83 1.24,5.4 -0.77,2.83 -1.25,1.62 -2.98,1.02 -3.59,0.22 -3.36,-0.69 -3.79,-2.19 -11.38,-10.94 -3.65,-2.24 -3.78,-0.46 -32.68,7.13 -1.74,-0.14 -1.02,-0.42 -1.52,-0.94 -2.82,-2.86 -2.5,-3.89 -8.06,-35.83 -3.23,-3.21 -5.2,-3.53 -8.73,1.42 -4.1,-0.03 -4.59,-0.93 -8.05,-2.9 -3.55,-2.64 -2.91,-4.35 -6.14,-17.2 -2.73,-3.23 -3.66,-1.92 -2.56,-0.2 -18.29,3.8 -16.77,-5.45 -64.62,-54.68 -8.26,-4.69 -2.37,0.83 -1.34,0.79 -0.93,0.74 -0.73,0.91 -0.73,1.14 -0.54,2.13 0.17,3.16 0.66,5.12 1.84,9.57 -0.34,3.1 -2.08,2.22 -5.48,3.68 -1.45,1.53 -5.57,3.22 -7.75,1.92 -3.18,0.31 -2.15,-0.59 -1.19,-3.24 -0.94,-8.26 -1.1,-2.57 -2.02,-2.66 -2.64,-2.68 -1.42,-2 -0.79,-2.39 -0.68,-3.57 -0.64,-7.43 -1.06,-6.73 -5.08,-21.45 -32.03,3.42 -24.35,9.37 -48.01,30.57 -21.9,24.49 -8.02,35.44 -2.11,30.29 -2.77,19.38 -6.66,5.99 -31.12,17.09 -9.91,3.55 -16.18,14.65 -15.59,33.34 -10.63,35.9 -1.17,22.16 -23.96,9.39 -41.7,35.83 -24.86,15.13 -24.65,5.61 -83.48,1.74 -24.97,11.62 -16.77,4.65 -7.61,-4.89 -6.89,-11.39 -15.24,5.06 -23.12,17.72 -21.82,27.22 -54.09,110.31 25.2,11.62 12.35,0.9 15.69,-4.33 25.61,-17.39 14.11,-4.69 14.36,6.86 5.01,12.14 5.34,22.05 3.54,23.83 -0.1,17.25 -7.61,11.44 -12.09,10.84 -8.95,11.3 1.86,12.7 0.01,6.9 -15.97,4.93 -22.75,-4.21 -21.35,-10.26 -11.74,-13.18 -4.46,0.01 -17.76,31.12 -11.51,25.04 -1.8,5.38 5.28,22.32 10.12,19.21 6.85,17.47 -4.64,16.94 0.01,7.59 8.03,6.08 27.58,7.94 11.31,1.08 6.77,5.62 10.21,13.88 10.13,17.56 6.47,16.78 -14.79,-2.92 -24.57,-21.3 -14.01,-6.11 1.36,3.65 1.76,7.93 1.38,3.62 -19.81,-2.35 -33.96,-10.35 -19.98,-2.33 -23.3,4.08 -10.04,-3.96 -21.72,-20.87 -7.68,-2.49 -17.27,6.4 -18.49,17 -13.28,24.57 -1.68,28.96 9.2,11.42 17.84,7.99 19.9,3.9 15.31,-0.82 0.03,7.59 -11.63,2.9 -8.86,8.49 -8.58,2.77 -10.45,-13.97 -5.47,12.27 2.01,12.53 6.07,11.58 6.49,9.14 13.89,-6.25 52.62,14.27 71.3,-0.19 16.54,4.4 13.69,8.54 27.41,24.24 25.1,12.35 10.75,8.28 4.39,18.06 0.03,26.96 -16.43,25.53 -52.83,57.14 -7.46,11.89 -3.12,11.82 -5.97,5.18 -13.28,-0.43 -13.7,-3.82 -7.15,-4.99 -4.42,8.29 22.09,15.16 -22.3,60.52 -8.35,15.54 -18.45,11.67 -34.79,30.72 -21.75,11.05 0.04,7.59 3.74,20.08 -8.34,22.69 -12.36,22.31 -8.6,19.31 -3.47,29.29 3.05,25.8 8.87,32.33 0.02,0 22.09,-7.06 23.6,-1.07 43.8,16.24 14.95,2.26 51.25,-8.96 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7303" /><path
+               id="path3260" /><path
                d="m 2414.16,8757.66 0,0 30.79,-8.03 139.83,6.17 -16.15,-12.68 -80.13,4.98 -10.12,-5.36 -17.71,-13.76 -9.77,-2.68 -44.21,0.37 -4.19,2.16 -5.48,9.77 -5.35,2.7 -6.17,-0.18 -4.19,-1.68 -19.6,-13.36 -3.28,-3.1 -1.78,-8.12 -1.14,-21.92 -2.01,-4.47 1.58,-60.8 -1.82,-19.82 -3.42,-15.27 -4.12,-3.32 -4.03,15.77 -0.3,29.28 8.74,120.67 6.33,23.66 49.69,135.74 27.16,33.52 30.31,-16.57 -38.98,-1.76 -5.1,-5.47 17.72,-1.99 5.11,-13.56 -5.84,-15.31 -26.11,-14.44 -12.29,-17.95 -6.79,-22.33 5.4,-20.61 -4.13,-39.44 21.55,-20.81 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2414.16,8757.66 0,0 30.79,-8.03 139.83,6.17 -16.15,-12.68 -80.13,4.98 -10.12,-5.36 -17.71,-13.76 -9.77,-2.68 -44.21,0.37 -4.19,2.16 -5.48,9.77 -5.35,2.7 -6.17,-0.18 -4.19,-1.68 -19.6,-13.36 -3.28,-3.1 -1.78,-8.12 -1.14,-21.92 -2.01,-4.47 1.58,-60.8 -1.82,-19.82 -3.42,-15.27 -4.12,-3.32 -4.03,15.77 -0.3,29.28 8.74,120.67 6.33,23.66 49.69,135.74 27.16,33.52 30.31,-16.57 -38.98,-1.76 -5.1,-5.47 17.72,-1.99 5.11,-13.56 -5.84,-15.31 -26.11,-14.44 -12.29,-17.95 -6.79,-22.33 5.4,-20.61 -4.13,-39.44 21.55,-20.81 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7305" /><path
+               id="path3262" /><path
                d="m 2048.64,4252.67 0,0 7.37,-6.66 5.62,-3.64 2.84,0.02 1.86,0.46 9.13,4.73 1.98,0.54 1.96,0.03 1.85,-0.51 2.12,-4.31 2.2,-6.93 3.68,-18.3 1.09,-8.43 -0.24,-9.43 -1.9,-10.52 -0.65,-7.89 0.37,-4.89 7.06,-14.06 29.34,-39.3 11.48,-20.9 1.37,-3.75 1.46,-6 1.09,-8.58 2.06,-2.09 3.73,0.47 17.73,7.88 4.27,0.32 7.89,-2.42 19.46,-12.47 -3.06,-18.47 -2.82,-6.92 -3.15,-6.11 -1.13,-3.3 -0.48,-3.06 1.05,-4.56 9.5,-21.37 3.5,-10.21 2.23,-16.58 2.67,-6.24 1.93,-3.64 6.36,-3.41 0.85,-2.74 2.05,-2.86 -7.01,-18.09 -11.35,-28.83 -1.01,-2.06 -1.79,-2.76 -3.11,-3.04 -11.31,-8.23 -3.21,-1.77 -2.09,-0.66 -2.53,0.03 -7.28,1.18 -2.18,1.26 -1.96,1.75 -11.88,15.92 -2.4,1.75 -3.07,0.67 -6.92,-0.42 -8.04,-1.63 -4.04,-3.16 -3.57,-4.15 -7.16,-10.31 -4.24,-4.22 -4.21,-2.79 -3.43,-1.39 -1.27,-4.73 -1.87,-8.48 -2.15,-36.66 0.2,-1.73 0.08,-2.36 0.57,-6.96 0.74,-2.02 1.29,-1.86 1.96,-1.89 2.29,-1.76 6.55,-3.67 1.09,-1.23 -0.69,-2.06 -2.02,-3.13 -10.83,-10.83 -3.09,-9.04 -2.81,-12.03 -3.67,-10.47 -8.95,-7.35 -1.28,-5.41 1.51,-2.12 3.16,-2.91 29.91,-7.82 2.41,-0.98 2.06,-2.24 0.16,-4.48 0.73,-3.75 1.4,-2.43 12.3,-6.19 3.57,-5.91 12.85,-30.68 4.74,-9.25 6.64,-7.47 6.51,-3.55 1.42,-1.23 4.63,-9.36 7.83,-28.31 2.15,-5.66 0.51,-3.05 -0.04,-3.91 -0.48,-3.04 -1.14,-3.03 -2.12,-1.93 -3.79,-2.71 -11.57,-2.79 -35.89,1.88 -2.89,-1.63 -2.51,-3.3 -2.98,-7.89 -0.6,-3.87 0.07,-2.79 6.34,-8.19 0.64,-2.24 -1.14,-2.86 -8.38,-12.28 -2.5,-5.22 -2.91,-2.29 -5.08,0.41 -3.3,2.02 -2.73,2.45 -2.61,3.57 -3.81,4.05 -1.87,1.23 -1.65,0.42 -1.78,-1.18 -3.03,-2.63 -4.54,-6 -19.7,-8.89 -9.72,-6.73 -12.4,-5.29 -4.16,-4.56 -4.65,-7.69 -8.81,-19.47 -1.7,-10 0.43,-8.11 2.5,-3.77 2.72,-3.38 2.18,-2.04 13.29,-7.84 1.9,-1.69 1.18,-2.4 0.08,-2.16 -0.59,-3.09 -3.62,-10.24 -1.18,-4.66 -0.49,-3.24 -0.28,-3.97 -0.6,-3.18 -1.68,-1.01 -4.51,2.14 -2.63,2.19 -2.84,2.89 -3.81,5.08 -2.51,2.22 -2.66,0.33 -4.22,-0.83 -6.02,-2.15 -3.88,-0.26 -3.8,0.69 -2.64,1.31 -3.34,-0.93 -3.38,-3.19 -5.58,-9.95 -1.97,-5.48 -0.86,-5.16 -0.48,-9.94 -2.84,-4.23 -7.53,-6.01 -12.78,-6.12 -28.54,-21.43 2.62,-2.72 7.06,-2.96 45.75,-42.73 5.19,-9.16 1.93,-13.99 12.53,-19.19 29,0.61 31.23,9.82 34.5,17.57 28.09,20.81 90.07,29.42 19.28,0.36 8.79,-2.16 10.73,-7.06 76.08,-88.08 13.8,-37.92 -11.13,-38.4 5.26,-13.93 16.24,-24.53 7.04,-15.63 2.62,-11.45 1.45,-9.44 2.41,-9.5 13.37,-25.27 3.58,-8.88 1.42,-7.77 5.68,-11.65 13.26,0.74 14.64,3.25 10.13,-4.03 -2.08,-11.17 -9.49,-15.13 -15.78,-19.07 -23.58,-4.39 -19.74,-13.2 -12.4,-21.55 -1.48,-29.41 10.52,-26.06 17.49,-34.27 11.87,-34.51 -6.34,-26.89 13.84,-23.44 15.88,-47.92 9.58,-20.69 -0.05,-7.61 -15.34,-7.51 -0.05,-7.58 12.32,-4.97 13.21,-1.65 11.62,-4.27 7.67,-12.86 -2.26,-2.11 -6.98,-17.71 -1.25,-2.2 0.54,-9.06 4.6,-18.47 0,-11.14 -26.49,-58.74 -1.49,-9.38 17.08,-6.21 -2.68,-13.94 -50.66,-58.92 -9.29,-4.78 -7.93,-8.07 -5.01,-19 -14.78,-105.76 -3.34,-11.15 -54.71,-110.25 -15.61,-23.75 -23.93,-25.24 -23.31,-8.23 -0.08,-0.03 1.09,1.22 0.02,0.03 -8.38,8.02 -71.73,15.72 -115.13,63.35 -13.16,1.8 -41.69,-3.87 -60.6,18.59 -8.08,-2 -17.22,-9.08 -9.07,-2.18 -6.97,1.18 -15.39,5.81 -8.13,1.49 -9.21,-1.73 -8.56,-3.59 -8.77,-2.14 -10.08,2.59 -6.73,5.87 -6.84,14.55 -5.2,6.76 -16.07,8.77 -31.83,6.12 -15.8,10.39 -9.34,12.37 -15.92,27.18 -10.1,10.85 -0.01,0.01 1.32,3.66 1.93,2.48 5.56,3.33 0.02,0.01 -4.62,16.24 -13.09,5.09 -31.41,2.78 -2.91,12.47 -14.1,1.57 -14.29,-4.01 -1.45,2.73 -14.62,-0.08 -13.52,12.22 -25.27,29.21 -0.51,2.34 -0.89,10.86 -1.32,6.46 -2.28,8.96 -0.1,5.29 1.24,5.15 4.61,9.03 1.17,1.96 0.57,0.3 2.61,0.46 1.69,-0.21 1.12,-0.31 0.67,-0.25 0.67,-0.18 1.13,-0.14 3.32,0.32 1.93,0.71 1.6,0.88 1.38,1.15 1.5,1.66 1.98,2.43 5.03,8.16 2.67,8.45 1.2,8.19 0.88,4.18 1.2,3.42 1.98,3 2.09,2.37 5.05,4.03 2.32,3.28 1.23,4.52 2.07,12.11 1.31,3.24 3.46,3.61 8.51,6.11 3.1,3.03 2.79,3.74 3.63,6.59 0.54,3.95 -0.71,3.87 -2.37,4.82 0.64,3.89 0.5,2.4 4.33,7.56 -3.72,10.05 -7.01,4.26 -17.44,6.98 -36.13,6.96 -6.99,4.58 1.53,2.9 0.81,1.18 0.36,0.97 0.58,0.91 -1.57,4.86 -12.03,15.34 -16.98,21.37 -4.11,16.93 3.61,5.32 2.83,0.68 3.7,3.08 14.46,17.77 6.18,5.09 5.59,3.55 7.49,3.45 2.33,3.69 0.57,5.39 -0.5,7.8 -0.59,3.55 -0.96,2.32 -1.44,0.83 -2.9,0.87 -2.91,0.41 -1.5,3.2 -0.78,5.36 0.34,14.77 -0.78,10.19 -7.93,16.39 -4.05,14.29 0.27,16.72 -1.88,1.25 -2.22,0.82 -4.21,-2.69 -4.35,-3.98 -6.42,-4.27 -6.78,-2.26 -13.63,-2.61 -7.72,1.1 -4.45,1.32 -1.86,2.11 -2.09,3.1 -26.33,19.6 -15.23,15.72 -3.66,1.33 -43.91,2.81 -4.88,1.67 -3.51,2.97 -43.74,25.58 -14.85,-10.62 -5.44,-0.86 -6.35,5.64 -9.51,4.57 -4.8,0.65 -4.16,-0.75 -56.41,-34.76 -107.99,-45.98 -10.96,-2.14 -2.73,-0.09 -17.11,2.14 -47.47,-19.84 -83.171,6.73 -96.871,-5.48 -5.969,-0.54 1.852,11.21 1.238,35.16 4.582,12.08 11.391,16.58 0.109,0.16 19.547,22.5 0.07,0.08 7.793,14.75 0.008,0.02 0.711,0.96 5.012,6.84 2.148,4.98 -0.41,7.38 -4.289,4.46 -4.48,3.29 -1.18,3.74 0,0.01 3.629,4.71 8.019,10.39 0.11,0.14 54.043,32.46 0.16,0.09 -1.332,2.52 -4.77,5.85 2.602,5.17 0.078,0.15 3.371,1.5 5.839,-2.48 0.34,-0.15 -4.878,7.01 -3.192,8.16 -1.3,9.13 0.879,9.87 0.011,0.08 7.02,5.79 0.11,0.09 0.48,4.3 -1.81,5.01 0.34,7.86 4.25,23.97 0.02,0.1 0.91,0.64 0.12,0.08 0.42,9.29 0,0.07 1.47,1.36 0.14,0.13 0.22,-0.23 -3.77,4.32 -2.78,0.27 -22.011,7.29 -34.5,1.18 -12.379,3.88 -11.961,8.15 -20,20.46 -11.879,8.13 -6.351,0.34 -11,-6.1 -5.707,0.72 -0.613,3.7 -6.508,19.51 -3.231,6.21 -10.3,7.16 -23.848,11.75 -10.82,11.79 -21.512,57.75 -11.481,20.39 -0.097,-0.17 -8.262,-14.81 -0.012,0.02 -5.289,9.9 -9.699,31.73 -11.648,19.25 -2.762,9.2 2.469,12.19 -3.579,23.41 -4.269,9.31 -7.602,4.78 7.129,12.68 0.043,0.07 2.668,3.35 0.129,0.17 -1.656,0.27 -4.301,-0.24 -1.23,0.85 5.757,31.08 4.032,15.09 5.59,15.88 0.019,0.06 6.699,7.29 0.102,0.1 2.39,7.33 -2.289,6.99 -7.043,6.14 1.832,5.4 2.848,12.37 1.41,3.5 0.063,0.13 6.23,3.56 14.25,0.63 5.391,3.18 0.047,0.03 4.679,10.3 0.961,12.59 -3.578,12.76 -9.031,10.93 0.391,0.47 7.308,8.9 16.653,10.82 7.378,10.53 15.032,6.48 31.039,7.45 13.347,11.25 0.122,0.11 -2.801,10.14 1.851,11.06 5.211,10.51 2.481,2.82 4.898,5.57 9.809,5.25 7.953,-0.98 7.867,-3.45 9.621,-2.1 18.961,2.81 9.117,9.04 0.121,0.12 -0.461,8.01 18.071,-0.52 15.851,6.87 3.961,2.74 0.598,1.42 -0.051,1.78 -0.488,1.86 -1.02,2.45 -21.691,37.57 -0.527,3.52 0.187,2.38 1.09,2.76 2.062,2.17 1.809,1.26 2.98,0.06 3.149,-1.37 5.141,-4.55 1.91,-3.35 1.129,-2.45 0.671,-2.84 1.571,-2.59 4.379,-4.12 11.582,-6.61 2.316,-3.19 1.543,-3.27 2.449,-12.33 2.59,-1.82 4.56,0.85 11.89,4.43 32.52,21.88 1.75,1.7 3.02,0.99 29.03,3.68 4.13,1.42 5.08,2.48 3.51,-0.66 5.89,-2.09 12.14,-6.75 4.4,-3.85 1.41,-4.1 -1.54,-3.31 -2.45,-4.24 -0.98,-2.96 0.81,-2.24 3.95,-0.81 7.39,-0.24 10.34,4.5 5.22,4.84 4.63,3.13 5.63,0.12 7.45,-5.15 4.94,-4.61 8.62,-11.66 11.72,-2.72 37.47,11.17 17.63,2.78 1.91,1.15 1.75,3.06 1.01,4.28 -1.01,7.02 -0.89,3.59 -1.76,3.85 -6.2,10.36 -1.76,3.85 -1.51,4.79 -1.18,8.28 -0.57,10.48 0.49,12.78 -0.36,2.86 -0.91,2.56 -2.03,2.19 -2.26,1.79 -9.23,4.59 -1.93,1.67 -1.04,2.04 0.45,4.07 1.82,5.47 4.26,9.65 0.86,6.55 -0.08,4.75 -0.78,3.27 -0.27,2.08 0.27,1.63 11.86,6.55 27.3,9.77 4.28,-0.53 0.99,-3.65 3.93,-8.57 4.1,-6.73 1.49,-1.72 2.68,-2.55 4.21,-2.99 4.68,-1.81 4.82,-0.94 2.78,-0.08 7.09,1.46 5.24,6.01 5.34,9.79 2.28,22.1 -0.36,10.45 -0.89,7.56 -0.96,4.8 -0.51,5.3 1.82,2.22 1.36,1.2 16.95,4.52 11.17,12.68 4.63,8.47 1.29,3.04 0.93,1.7 1.26,1.78 3.89,1.61 6.31,1.76 12.57,1.43 19.78,7.2 38.17,25.4 6.99,2.69 8.97,-1.21 11.29,-6.44 2.18,-0.46 3.64,0.62 4.68,2.44 3.54,5.6 2.2,4.43 1.77,4.67 2.01,1.56 2.64,0.22 15.36,-6.19 7.74,2.19 17.45,17.65 5.09,1.69 6.25,13.32 0.94,2.68 1.17,3.05 1.57,1.31 2.34,0.18 4.35,-1.52 4.98,-2.96 1.39,-1.39 0.74,-1.05 1.15,-2.3 0.82,-2.43 0.69,-3.61 0.93,-2.07 1.4,-1.24 39.77,-3.81 8.04,0.91 33.16,9.36 2.88,1.26 19.42,13.48 1.14,2.05 0.61,3.15 -0.18,6.78 0.98,4.49 1.75,4.88 4.76,7.14 0.45,5.31 -0.02,4.4 -0.46,4.12 0.19,3.35 1.17,8.54 -0.05,2.53 -1.05,2.18 -1.39,1.67 -0.51,1.82 4.94,5.24 17.18,4.69 26.48,-2.83 59.47,15.28 22.07,12.67 6.06,2.36 3.74,0.67 3.06,0 12.68,-2.77 2.66,1.79 2.14,3.29 3.23,8.57 2.15,3.92 3.23,3.16 6.63,3.58 22.72,8.12 2.1,1.29 2.12,2.57 6.55,11.41 2.44,2.14 1.65,0.6 0.75,-1.1 1.27,-2.15 1.08,-1.17 1.62,-1 2.07,-0.27 1.76,0.34 1.43,0.69 1.45,1.47 0.79,1.63 1.26,3.42 0.39,3.1 0.17,3.59 -0.46,4.75 -3.27,6.87 -12.66,13.5 26.53,15.6 4.11,3.69 11.26,13.37 2.76,1.74 1.75,0.37 15.87,-6.48 1.42,-0.19 1.64,0.26 1.91,3.16 0.74,5.13 -0.35,12.13 -1.44,5.2 -1.58,3.53 -2.14,2.05 -1.37,2.95 -1.07,3.73 -0.89,5.45 -2.15,27.51 1.21,7.28 1.4,5.2 22.18,20.73 9.19,2.55 40.6,-12.02 -2.53,-15.83 -3.21,-10.01 -2.03,-4.56 -1.72,-4.95 -1.29,-6.04 -0.49,-3.5 1.04,-3.46 2.57,-3.03 6.48,-4.01 18.48,-6.66 5.49,-4.94 21.04,-24.14 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2048.64,4252.67 0,0 7.37,-6.66 5.62,-3.64 2.84,0.02 1.86,0.46 9.13,4.73 1.98,0.54 1.96,0.03 1.85,-0.51 2.12,-4.31 2.2,-6.93 3.68,-18.3 1.09,-8.43 -0.24,-9.43 -1.9,-10.52 -0.65,-7.89 0.37,-4.89 7.06,-14.06 29.34,-39.3 11.48,-20.9 1.37,-3.75 1.46,-6 1.09,-8.58 2.06,-2.09 3.73,0.47 17.73,7.88 4.27,0.32 7.89,-2.42 19.46,-12.47 -3.06,-18.47 -2.82,-6.92 -3.15,-6.11 -1.13,-3.3 -0.48,-3.06 1.05,-4.56 9.5,-21.37 3.5,-10.21 2.23,-16.58 2.67,-6.24 1.93,-3.64 6.36,-3.41 0.85,-2.74 2.05,-2.86 -7.01,-18.09 -11.35,-28.83 -1.01,-2.06 -1.79,-2.76 -3.11,-3.04 -11.31,-8.23 -3.21,-1.77 -2.09,-0.66 -2.53,0.03 -7.28,1.18 -2.18,1.26 -1.96,1.75 -11.88,15.92 -2.4,1.75 -3.07,0.67 -6.92,-0.42 -8.04,-1.63 -4.04,-3.16 -3.57,-4.15 -7.16,-10.31 -4.24,-4.22 -4.21,-2.79 -3.43,-1.39 -1.27,-4.73 -1.87,-8.48 -2.15,-36.66 0.2,-1.73 0.08,-2.36 0.57,-6.96 0.74,-2.02 1.29,-1.86 1.96,-1.89 2.29,-1.76 6.55,-3.67 1.09,-1.23 -0.69,-2.06 -2.02,-3.13 -10.83,-10.83 -3.09,-9.04 -2.81,-12.03 -3.67,-10.47 -8.95,-7.35 -1.28,-5.41 1.51,-2.12 3.16,-2.91 29.91,-7.82 2.41,-0.98 2.06,-2.24 0.16,-4.48 0.73,-3.75 1.4,-2.43 12.3,-6.19 3.57,-5.91 12.85,-30.68 4.74,-9.25 6.64,-7.47 6.51,-3.55 1.42,-1.23 4.63,-9.36 7.83,-28.31 2.15,-5.66 0.51,-3.05 -0.04,-3.91 -0.48,-3.04 -1.14,-3.03 -2.12,-1.93 -3.79,-2.71 -11.57,-2.79 -35.89,1.88 -2.89,-1.63 -2.51,-3.3 -2.98,-7.89 -0.6,-3.87 0.07,-2.79 6.34,-8.19 0.64,-2.24 -1.14,-2.86 -8.38,-12.28 -2.5,-5.22 -2.91,-2.29 -5.08,0.41 -3.3,2.02 -2.73,2.45 -2.61,3.57 -3.81,4.05 -1.87,1.23 -1.65,0.42 -1.78,-1.18 -3.03,-2.63 -4.54,-6 -19.7,-8.89 -9.72,-6.73 -12.4,-5.29 -4.16,-4.56 -4.65,-7.69 -8.81,-19.47 -1.7,-10 0.43,-8.11 2.5,-3.77 2.72,-3.38 2.18,-2.04 13.29,-7.84 1.9,-1.69 1.18,-2.4 0.08,-2.16 -0.59,-3.09 -3.62,-10.24 -1.18,-4.66 -0.49,-3.24 -0.28,-3.97 -0.6,-3.18 -1.68,-1.01 -4.51,2.14 -2.63,2.19 -2.84,2.89 -3.81,5.08 -2.51,2.22 -2.66,0.33 -4.22,-0.83 -6.02,-2.15 -3.88,-0.26 -3.8,0.69 -2.64,1.31 -3.34,-0.93 -3.38,-3.19 -5.58,-9.95 -1.97,-5.48 -0.86,-5.16 -0.48,-9.94 -2.84,-4.23 -7.53,-6.01 -12.78,-6.12 -28.54,-21.43 2.62,-2.72 7.06,-2.96 45.75,-42.73 5.19,-9.16 1.93,-13.99 12.53,-19.19 29,0.61 31.23,9.82 34.5,17.57 28.09,20.81 90.07,29.42 19.28,0.36 8.79,-2.16 10.73,-7.06 76.08,-88.08 13.8,-37.92 -11.13,-38.4 5.26,-13.93 16.24,-24.53 7.04,-15.63 2.62,-11.45 1.45,-9.44 2.41,-9.5 13.37,-25.27 3.58,-8.88 1.42,-7.77 5.68,-11.65 13.26,0.74 14.64,3.25 10.13,-4.03 -2.08,-11.17 -9.49,-15.13 -15.78,-19.07 -23.58,-4.39 -19.74,-13.2 -12.4,-21.55 -1.48,-29.41 10.52,-26.06 17.49,-34.27 11.87,-34.51 -6.34,-26.89 13.84,-23.44 15.88,-47.92 9.58,-20.69 -0.05,-7.61 -15.34,-7.51 -0.05,-7.58 12.32,-4.97 13.21,-1.65 11.62,-4.27 7.67,-12.86 -2.26,-2.11 -6.98,-17.71 -1.25,-2.2 0.54,-9.06 4.6,-18.47 0,-11.14 -26.49,-58.74 -1.49,-9.38 17.08,-6.21 -2.68,-13.94 -50.66,-58.92 -9.29,-4.78 -7.93,-8.07 -5.01,-19 -14.78,-105.76 -3.34,-11.15 -54.71,-110.25 -15.61,-23.75 -23.93,-25.24 -23.31,-8.23 -0.08,-0.03 1.09,1.22 0.02,0.03 -8.38,8.02 -71.73,15.72 -115.13,63.35 -13.16,1.8 -41.69,-3.87 -60.6,18.59 -8.08,-2 -17.22,-9.08 -9.07,-2.18 -6.97,1.18 -15.39,5.81 -8.13,1.49 -9.21,-1.73 -8.56,-3.59 -8.77,-2.14 -10.08,2.59 -6.73,5.87 -6.84,14.55 -5.2,6.76 -16.07,8.77 -31.83,6.12 -15.8,10.39 -9.34,12.37 -15.92,27.18 -10.1,10.85 -0.01,0.01 1.32,3.66 1.93,2.48 5.56,3.33 0.02,0.01 -4.62,16.24 -13.09,5.09 -31.41,2.78 -2.91,12.47 -14.1,1.57 -14.29,-4.01 -1.45,2.73 -14.62,-0.08 -13.52,12.22 -25.27,29.21 -0.51,2.34 -0.89,10.86 -1.32,6.46 -2.28,8.96 -0.1,5.29 1.24,5.15 4.61,9.03 1.17,1.96 0.57,0.3 2.61,0.46 1.69,-0.21 1.12,-0.31 0.67,-0.25 0.67,-0.18 1.13,-0.14 3.32,0.32 1.93,0.71 1.6,0.88 1.38,1.15 1.5,1.66 1.98,2.43 5.03,8.16 2.67,8.45 1.2,8.19 0.88,4.18 1.2,3.42 1.98,3 2.09,2.37 5.05,4.03 2.32,3.28 1.23,4.52 2.07,12.11 1.31,3.24 3.46,3.61 8.51,6.11 3.1,3.03 2.79,3.74 3.63,6.59 0.54,3.95 -0.71,3.87 -2.37,4.82 0.64,3.89 0.5,2.4 4.33,7.56 -3.72,10.05 -7.01,4.26 -17.44,6.98 -36.13,6.96 -6.99,4.58 1.53,2.9 0.81,1.18 0.36,0.97 0.58,0.91 -1.57,4.86 -12.03,15.34 -16.98,21.37 -4.11,16.93 3.61,5.32 2.83,0.68 3.7,3.08 14.46,17.77 6.18,5.09 5.59,3.55 7.49,3.45 2.33,3.69 0.57,5.39 -0.5,7.8 -0.59,3.55 -0.96,2.32 -1.44,0.83 -2.9,0.87 -2.91,0.41 -1.5,3.2 -0.78,5.36 0.34,14.77 -0.78,10.19 -7.93,16.39 -4.05,14.29 0.27,16.72 -1.88,1.25 -2.22,0.82 -4.21,-2.69 -4.35,-3.98 -6.42,-4.27 -6.78,-2.26 -13.63,-2.61 -7.72,1.1 -4.45,1.32 -1.86,2.11 -2.09,3.1 -26.33,19.6 -15.23,15.72 -3.66,1.33 -43.91,2.81 -4.88,1.67 -3.51,2.97 -43.74,25.58 -14.85,-10.62 -5.44,-0.86 -6.35,5.64 -9.51,4.57 -4.8,0.65 -4.16,-0.75 -56.41,-34.76 -107.99,-45.98 -10.96,-2.14 -2.73,-0.09 -17.11,2.14 -47.47,-19.84 -83.171,6.73 -96.871,-5.48 -5.969,-0.54 1.852,11.21 1.238,35.16 4.582,12.08 11.391,16.58 0.109,0.16 19.547,22.5 0.07,0.08 7.793,14.75 0.008,0.02 0.711,0.96 5.012,6.84 2.148,4.98 -0.41,7.38 -4.289,4.46 -4.48,3.29 -1.18,3.74 0,0.01 3.629,4.71 8.019,10.39 0.11,0.14 54.043,32.46 0.16,0.09 -1.332,2.52 -4.77,5.85 2.602,5.17 0.078,0.15 3.371,1.5 5.839,-2.48 0.34,-0.15 -4.878,7.01 -3.192,8.16 -1.3,9.13 0.879,9.87 0.011,0.08 7.02,5.79 0.11,0.09 0.48,4.3 -1.81,5.01 0.34,7.86 4.25,23.97 0.02,0.1 0.91,0.64 0.12,0.08 0.42,9.29 0,0.07 1.47,1.36 0.14,0.13 0.22,-0.23 -3.77,4.32 -2.78,0.27 -22.011,7.29 -34.5,1.18 -12.379,3.88 -11.961,8.15 -20,20.46 -11.879,8.13 -6.351,0.34 -11,-6.1 -5.707,0.72 -0.613,3.7 -6.508,19.51 -3.231,6.21 -10.3,7.16 -23.848,11.75 -10.82,11.79 -21.512,57.75 -11.481,20.39 -0.097,-0.17 -8.262,-14.81 -0.012,0.02 -5.289,9.9 -9.699,31.73 -11.648,19.25 -2.762,9.2 2.469,12.19 -3.579,23.41 -4.269,9.31 -7.602,4.78 7.129,12.68 0.043,0.07 2.668,3.35 0.129,0.17 -1.656,0.27 -4.301,-0.24 -1.23,0.85 5.757,31.08 4.032,15.09 5.59,15.88 0.019,0.06 6.699,7.29 0.102,0.1 2.39,7.33 -2.289,6.99 -7.043,6.14 1.832,5.4 2.848,12.37 1.41,3.5 0.063,0.13 6.23,3.56 14.25,0.63 5.391,3.18 0.047,0.03 4.679,10.3 0.961,12.59 -3.578,12.76 -9.031,10.93 0.391,0.47 7.308,8.9 16.653,10.82 7.378,10.53 15.032,6.48 31.039,7.45 13.347,11.25 0.122,0.11 -2.801,10.14 1.851,11.06 5.211,10.51 2.481,2.82 4.898,5.57 9.809,5.25 7.953,-0.98 7.867,-3.45 9.621,-2.1 18.961,2.81 9.117,9.04 0.121,0.12 -0.461,8.01 18.071,-0.52 15.851,6.87 3.961,2.74 0.598,1.42 -0.051,1.78 -0.488,1.86 -1.02,2.45 -21.691,37.57 -0.527,3.52 0.187,2.38 1.09,2.76 2.062,2.17 1.809,1.26 2.98,0.06 3.149,-1.37 5.141,-4.55 1.91,-3.35 1.129,-2.45 0.671,-2.84 1.571,-2.59 4.379,-4.12 11.582,-6.61 2.316,-3.19 1.543,-3.27 2.449,-12.33 2.59,-1.82 4.56,0.85 11.89,4.43 32.52,21.88 1.75,1.7 3.02,0.99 29.03,3.68 4.13,1.42 5.08,2.48 3.51,-0.66 5.89,-2.09 12.14,-6.75 4.4,-3.85 1.41,-4.1 -1.54,-3.31 -2.45,-4.24 -0.98,-2.96 0.81,-2.24 3.95,-0.81 7.39,-0.24 10.34,4.5 5.22,4.84 4.63,3.13 5.63,0.12 7.45,-5.15 4.94,-4.61 8.62,-11.66 11.72,-2.72 37.47,11.17 17.63,2.78 1.91,1.15 1.75,3.06 1.01,4.28 -1.01,7.02 -0.89,3.59 -1.76,3.85 -6.2,10.36 -1.76,3.85 -1.51,4.79 -1.18,8.28 -0.57,10.48 0.49,12.78 -0.36,2.86 -0.91,2.56 -2.03,2.19 -2.26,1.79 -9.23,4.59 -1.93,1.67 -1.04,2.04 0.45,4.07 1.82,5.47 4.26,9.65 0.86,6.55 -0.08,4.75 -0.78,3.27 -0.27,2.08 0.27,1.63 11.86,6.55 27.3,9.77 4.28,-0.53 0.99,-3.65 3.93,-8.57 4.1,-6.73 1.49,-1.72 2.68,-2.55 4.21,-2.99 4.68,-1.81 4.82,-0.94 2.78,-0.08 7.09,1.46 5.24,6.01 5.34,9.79 2.28,22.1 -0.36,10.45 -0.89,7.56 -0.96,4.8 -0.51,5.3 1.82,2.22 1.36,1.2 16.95,4.52 11.17,12.68 4.63,8.47 1.29,3.04 0.93,1.7 1.26,1.78 3.89,1.61 6.31,1.76 12.57,1.43 19.78,7.2 38.17,25.4 6.99,2.69 8.97,-1.21 11.29,-6.44 2.18,-0.46 3.64,0.62 4.68,2.44 3.54,5.6 2.2,4.43 1.77,4.67 2.01,1.56 2.64,0.22 15.36,-6.19 7.74,2.19 17.45,17.65 5.09,1.69 6.25,13.32 0.94,2.68 1.17,3.05 1.57,1.31 2.34,0.18 4.35,-1.52 4.98,-2.96 1.39,-1.39 0.74,-1.05 1.15,-2.3 0.82,-2.43 0.69,-3.61 0.93,-2.07 1.4,-1.24 39.77,-3.81 8.04,0.91 33.16,9.36 2.88,1.26 19.42,13.48 1.14,2.05 0.61,3.15 -0.18,6.78 0.98,4.49 1.75,4.88 4.76,7.14 0.45,5.31 -0.02,4.4 -0.46,4.12 0.19,3.35 1.17,8.54 -0.05,2.53 -1.05,2.18 -1.39,1.67 -0.51,1.82 4.94,5.24 17.18,4.69 26.48,-2.83 59.47,15.28 22.07,12.67 6.06,2.36 3.74,0.67 3.06,0 12.68,-2.77 2.66,1.79 2.14,3.29 3.23,8.57 2.15,3.92 3.23,3.16 6.63,3.58 22.72,8.12 2.1,1.29 2.12,2.57 6.55,11.41 2.44,2.14 1.65,0.6 0.75,-1.1 1.27,-2.15 1.08,-1.17 1.62,-1 2.07,-0.27 1.76,0.34 1.43,0.69 1.45,1.47 0.79,1.63 1.26,3.42 0.39,3.1 0.17,3.59 -0.46,4.75 -3.27,6.87 -12.66,13.5 26.53,15.6 4.11,3.69 11.26,13.37 2.76,1.74 1.75,0.37 15.87,-6.48 1.42,-0.19 1.64,0.26 1.91,3.16 0.74,5.13 -0.35,12.13 -1.44,5.2 -1.58,3.53 -2.14,2.05 -1.37,2.95 -1.07,3.73 -0.89,5.45 -2.15,27.51 1.21,7.28 1.4,5.2 22.18,20.73 9.19,2.55 40.6,-12.02 -2.53,-15.83 -3.21,-10.01 -2.03,-4.56 -1.72,-4.95 -1.29,-6.04 -0.49,-3.5 1.04,-3.46 2.57,-3.03 6.48,-4.01 18.48,-6.66 5.49,-4.94 21.04,-24.14 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7307" /><path
+               id="path3264" /><path
                d="m 1361.15,2919.16 0,0 43.74,-25.58 3.51,-2.97 4.88,-1.67 43.91,-2.81 3.66,-1.33 15.23,-15.72 26.33,-19.6 2.09,-3.1 1.86,-2.11 4.45,-1.32 7.72,-1.1 13.63,2.61 6.78,2.26 6.42,4.27 4.35,3.98 4.21,2.69 2.22,-0.82 1.88,-1.25 -0.27,-16.72 4.05,-14.29 7.93,-16.39 0.78,-10.19 -0.34,-14.77 0.78,-5.36 1.5,-3.2 2.91,-0.41 2.9,-0.87 1.44,-0.83 0.96,-2.32 0.59,-3.55 0.5,-7.8 -0.57,-5.39 -2.33,-3.69 -7.49,-3.45 -5.59,-3.55 -6.18,-5.09 -14.46,-17.77 -3.7,-3.08 -2.83,-0.68 -3.61,-5.32 4.11,-16.93 16.98,-21.37 12.03,-15.34 1.57,-4.86 -0.58,-0.91 -0.36,-0.97 -0.81,-1.18 -1.53,-2.9 6.99,-4.58 36.13,-6.96 17.44,-6.98 7.01,-4.26 3.72,-10.05 -4.33,-7.56 -0.5,-2.4 -0.64,-3.89 2.37,-4.82 0.71,-3.87 -0.54,-3.95 -3.63,-6.59 -2.79,-3.74 -3.1,-3.03 -8.51,-6.11 -3.46,-3.61 -1.31,-3.24 -2.07,-12.11 -1.23,-4.52 -2.32,-3.28 -5.05,-4.03 -2.09,-2.37 -1.98,-3 -1.2,-3.42 -0.88,-4.18 -1.2,-8.19 -2.67,-8.45 -5.03,-8.16 -1.98,-2.43 -1.5,-1.66 -1.38,-1.15 -1.6,-0.88 -1.93,-0.71 -3.32,-0.32 -1.13,0.14 -0.67,0.18 -0.67,0.25 -1.12,0.31 -1.69,0.21 -2.61,-0.46 -0.57,-0.3 -1.17,-1.96 -4.61,-9.03 -1.24,-5.15 0.1,-5.29 2.28,-8.96 1.32,-6.46 0.89,-10.86 0.51,-2.34 25.27,-29.21 13.52,-12.22 14.62,0.08 1.45,-2.73 -2.96,-0.85 -12.31,-6.63 -3.52,-5.44 -5.63,-16.09 -3.79,-6.04 -5.48,-2.46 -15.05,-1.59 -6.57,-2.07 -4.68,-5.41 -8.01,-15.57 -4.4,-4.29 -4.63,0.79 -19.4,9.65 -62.88,2.07 -11.4,4.18 -11.28,6.26 -27.39,20.98 -4.02,0.62 -6.72,-6.44 0,-0.06 0.41,-6.1 2.19,-5.81 -0.01,-0.04 -1.23,-5.56 -22.83,-13.58 -15.7,13.08 -7.61,30.72 0,0 1.41,39.17 0,0.05 -15.76,1.2 -44.78,26.99 -8.02,1.48 -21.28,-1.56 -30.22,7.81 -7.39,-1.54 -4.62,-15.28 0.01,-0.03 4.94,-18.16 2.26,-18.58 -0.01,0 -13.02,-16.3 -9.29,-1.85 -28.14,11.34 -32.47,1.25 -8.48,3.94 -8.86,15.86 -0.01,0.01 2.45,13.47 4.11,14.02 0.01,0.03 -3.99,17.74 -3.01,0.03 -9.98,-6.16 -3.29,-0.21 -1.83,3.99 -1.16,8.86 -0.72,2.47 -2.22,4.72 -5.01,20.74 -3.02,3.37 -9.93,3.96 -3.78,3.11 -0.76,4.48 0,0.03 1.92,11.12 0.01,0.06 -1.09,4.72 -46.88,48.23 -11.69,15.21 -4.15,12.96 -0.01,0.03 4.35,10.07 12.89,0.15 3.43,8.89 0.01,0.03 -2.26,6.74 -34.08,38.6 -4.74,7.59 -0.04,0.05 1.44,0.38 0,0 0.09,6.21 -1.68,9.22 -4.19,9.4 -11.971,12.44 -65.461,35.49 -7.918,1.63 -6,-2.07 -14.07,-9 -7.84,-1.16 -6.082,0.85 0.332,8.15 -1.058,33.74 5.847,35.22 5.969,0.54 96.871,5.48 83.171,-6.73 47.47,19.84 17.11,-2.14 2.73,0.09 10.96,2.14 107.99,45.98 56.41,34.76 4.16,0.75 4.8,-0.65 9.51,-4.57 6.35,-5.64 5.44,0.86 14.85,10.62 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1361.15,2919.16 0,0 43.74,-25.58 3.51,-2.97 4.88,-1.67 43.91,-2.81 3.66,-1.33 15.23,-15.72 26.33,-19.6 2.09,-3.1 1.86,-2.11 4.45,-1.32 7.72,-1.1 13.63,2.61 6.78,2.26 6.42,4.27 4.35,3.98 4.21,2.69 2.22,-0.82 1.88,-1.25 -0.27,-16.72 4.05,-14.29 7.93,-16.39 0.78,-10.19 -0.34,-14.77 0.78,-5.36 1.5,-3.2 2.91,-0.41 2.9,-0.87 1.44,-0.83 0.96,-2.32 0.59,-3.55 0.5,-7.8 -0.57,-5.39 -2.33,-3.69 -7.49,-3.45 -5.59,-3.55 -6.18,-5.09 -14.46,-17.77 -3.7,-3.08 -2.83,-0.68 -3.61,-5.32 4.11,-16.93 16.98,-21.37 12.03,-15.34 1.57,-4.86 -0.58,-0.91 -0.36,-0.97 -0.81,-1.18 -1.53,-2.9 6.99,-4.58 36.13,-6.96 17.44,-6.98 7.01,-4.26 3.72,-10.05 -4.33,-7.56 -0.5,-2.4 -0.64,-3.89 2.37,-4.82 0.71,-3.87 -0.54,-3.95 -3.63,-6.59 -2.79,-3.74 -3.1,-3.03 -8.51,-6.11 -3.46,-3.61 -1.31,-3.24 -2.07,-12.11 -1.23,-4.52 -2.32,-3.28 -5.05,-4.03 -2.09,-2.37 -1.98,-3 -1.2,-3.42 -0.88,-4.18 -1.2,-8.19 -2.67,-8.45 -5.03,-8.16 -1.98,-2.43 -1.5,-1.66 -1.38,-1.15 -1.6,-0.88 -1.93,-0.71 -3.32,-0.32 -1.13,0.14 -0.67,0.18 -0.67,0.25 -1.12,0.31 -1.69,0.21 -2.61,-0.46 -0.57,-0.3 -1.17,-1.96 -4.61,-9.03 -1.24,-5.15 0.1,-5.29 2.28,-8.96 1.32,-6.46 0.89,-10.86 0.51,-2.34 25.27,-29.21 13.52,-12.22 14.62,0.08 1.45,-2.73 -2.96,-0.85 -12.31,-6.63 -3.52,-5.44 -5.63,-16.09 -3.79,-6.04 -5.48,-2.46 -15.05,-1.59 -6.57,-2.07 -4.68,-5.41 -8.01,-15.57 -4.4,-4.29 -4.63,0.79 -19.4,9.65 -62.88,2.07 -11.4,4.18 -11.28,6.26 -27.39,20.98 -4.02,0.62 -6.72,-6.44 0,-0.06 0.41,-6.1 2.19,-5.81 -0.01,-0.04 -1.23,-5.56 -22.83,-13.58 -15.7,13.08 -7.61,30.72 0,0 1.41,39.17 0,0.05 -15.76,1.2 -44.78,26.99 -8.02,1.48 -21.28,-1.56 -30.22,7.81 -7.39,-1.54 -4.62,-15.28 0.01,-0.03 4.94,-18.16 2.26,-18.58 -0.01,0 -13.02,-16.3 -9.29,-1.85 -28.14,11.34 -32.47,1.25 -8.48,3.94 -8.86,15.86 -0.01,0.01 2.45,13.47 4.11,14.02 0.01,0.03 -3.99,17.74 -3.01,0.03 -9.98,-6.16 -3.29,-0.21 -1.83,3.99 -1.16,8.86 -0.72,2.47 -2.22,4.72 -5.01,20.74 -3.02,3.37 -9.93,3.96 -3.78,3.11 -0.76,4.48 0,0.03 1.92,11.12 0.01,0.06 -1.09,4.72 -46.88,48.23 -11.69,15.21 -4.15,12.96 -0.01,0.03 4.35,10.07 12.89,0.15 3.43,8.89 0.01,0.03 -2.26,6.74 -34.08,38.6 -4.74,7.59 -0.04,0.05 1.44,0.38 0,0 0.09,6.21 -1.68,9.22 -4.19,9.4 -11.971,12.44 -65.461,35.49 -7.918,1.63 -6,-2.07 -14.07,-9 -7.84,-1.16 -6.082,0.85 0.332,8.15 -1.058,33.74 5.847,35.22 5.969,0.54 96.871,5.48 83.171,-6.73 47.47,19.84 17.11,-2.14 2.73,0.09 10.96,2.14 107.99,45.98 56.41,34.76 4.16,0.75 4.8,-0.65 9.51,-4.57 6.35,-5.64 5.44,0.86 14.85,10.62 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7309" /><path
+               id="path3266" /><path
                d="m 3609.67,3925.87 0,0 3.86,-0.83 34.68,4.19 6.28,-0.99 3.88,-1.98 1.8,-2.58 2.46,-2.67 4.34,-3.09 2.57,-2.71 1.69,-2.79 1.2,-6.13 3.21,-7.94 1.34,-5.95 2.48,-3.3 4.66,-2.71 57.55,-18.75 6.33,-3.51 3.69,-3.58 0.71,-2.83 2.53,-5.93 0.6,-2.52 0.16,-3.1 -0.31,-6.85 0.05,-3.1 0.94,-3.03 1.84,-2.61 10.16,-7.92 3.6,-4.02 3.27,-4.3 2.95,-4.66 3.03,-3.34 19.15,-14.84 1.84,-3.79 -0.73,-2.6 -1.61,-2.16 -3.59,-4.03 -0.71,-3.35 0.4,-3.87 3.46,-6.23 2.69,-2.31 3.12,-1.6 13.68,-1.07 6.38,1.05 6.33,2.82 4.83,1.36 1.8,-1.86 1.08,-2.77 0.72,-3 2.41,-5.07 2.5,-3.57 3.73,-4.41 19.39,-15.83 1.72,-3.15 0.62,-3.35 -0.26,-3.97 1.26,-2.02 1.78,-1.03 9.43,-0.44 5.98,-1.08 3.41,0.47 2.17,1.6 4.55,4.23 11.76,1.85 9.85,-20.71 6.33,-6.88 9.93,-5.17 2.39,-3.14 0.84,-3.43 0.46,-5.56 1.14,-7.28 3.72,-13.71 0.92,-6.88 0.01,-5.46 -1.14,-3.59 -0.42,-6.1 -1.47,-3.74 -0.99,-5.05 0.64,-4.07 2.57,-6.79 6.79,-12.15 0.42,-4.25 -0.7,-3.4 -1.81,-3.37 0.06,-2.82 0.73,-2.77 3.21,-5.25 5.79,-6.86 32.21,0.85 17.73,-4.48 9.34,-6.98 9.98,-5.66 5.01,-1.12 3.29,0.97 0.94,2.63 0.15,3.28 -0.21,8.79 2.78,23.46 5.09,6.1 2.87,0.18 2.67,-0.68 1.8,-1.14 2.82,-2.52 3.88,-0.51 5.85,0.57 22.57,5.71 2.9,-0.79 10.29,-5.07 8.79,-1.79 4.52,0.28 3.4,1.23 2.05,2.27 1.73,2.83 0.99,4.74 0.24,3.97 -0.32,3.73 -0.52,3.12 -1.47,5.8 -1.2,2.55 -1.61,2.21 -2.36,1.66 -12.56,3.09 -2.91,1.13 -2.57,1.38 -1.93,1.85 -1.59,2.09 -1.06,2.59 -1.8,5.67 -1.6,2.21 -2.35,1.43 -2.78,0.86 -12.38,-1.45 -3.1,0.44 -2.9,0.91 -2.36,1.55 -1.92,1.8 -8.73,9.62 -1.24,1.12 -8.52,5.47 -7.96,3.52 -2.91,1.83 -2.71,2.35 -2.97,4.36 -0.71,6.99 2.04,26.09 2.72,6.5 3,3.75 2.97,0.53 3.13,-0.07 10.13,-4.1 1.56,-0.37 2.43,-0.11 2.28,1.32 1.93,2.57 1.9,3.67 1.36,3.13 9.63,17.02 3.44,3.7 3.07,2.12 2.54,-0.26 1.44,-0.34 6.81,-3.14 1.77,-0.3 2.43,-0.05 5.14,1.64 2.39,1.24 8.67,6.54 2.61,1.1 2.86,0.33 13.21,-1.95 5.34,2.5 3.03,2.23 2.51,0.89 1.88,0.05 1.89,-0.78 2.02,-1.36 1.81,-1.91 1.6,-2.29 1.28,-2.38 1.48,-1.95 1.7,-1.68 1.67,-0.59 2.24,-0.17 2.49,0.41 17.85,6.58 5.71,0.81 5.43,-1.21 25.23,-34.84 3.05,-2.85 4.5,-3.1 1.5,1.68 1.05,2.07 0.49,2.08 0.78,8.07 0.96,1.12 1.65,0.45 19.29,-2.24 5.15,-2.79 3.86,-3.75 3.48,-6.11 2.91,-1.65 2.88,-0.15 10.12,4.94 2.96,0.83 9.6,1.3 2.62,1.14 1.93,2.01 1.36,2.45 2.35,2.91 3.12,2.68 7.23,2.19 2.86,0.22 2.36,-1.48 1.96,-6.79 2.33,-4.42 2.35,-1.14 4.55,0.53 2.56,-0.9 2.14,-1.66 5.79,-9.35 3.33,-4.28 2.89,-4.66 1.18,-2.55 0.96,-2.47 0.29,-2.5 -0.29,-1.56 -0.93,-2.21 -13.45,-16.2 5.89,-8.86 35.89,-31.96 6.69,13.34 3.69,2.03 6.37,-6.02 3.82,-2.01 16.31,-4.51 4.85,0.6 3.05,1.59 0.92,2.44 0.17,1.79 -0.19,2.58 -1.47,8.18 0.69,2.72 1.21,4.1 4.19,7.34 0.97,4.63 -0.01,3.77 -1.07,2.58 -4.19,7.12 -0.12,4.02 0.94,5.38 5.74,14.43 0.79,3.19 -0.31,2.84 -0.87,3.25 -0.6,4.98 0.17,1.9 1.72,1.29 5.14,1.74 0.95,1.5 0.16,1.9 -1.59,5.01 -0.53,2.75 -0.18,2.52 -0.1,3.1 -0.31,3.1 -1.08,2.67 -1.18,2.49 -5.26,6.2 -1.3,2.72 -0.65,3.34 -0.03,4.54 -0.53,3.03 -2.8,4.81 -1.07,2.84 -0.13,4.14 1.83,19.66 0,3.51 -0.43,3.26 -1.18,6.12 -0.86,2.85 -1.41,3 -1.32,3.41 -1.36,4.91 1.42,4.01 0.15,2.42 -0.39,2.06 -2.26,5.56 -3.78,12.02 19.4,10.05 13.65,3.56 14.25,9.99 2.32,3.38 0.39,1.42 0.06,1.84 -0.16,1.38 0.17,1.67 0.47,2.52 2.28,4.64 3.64,3.02 5.13,1.57 6.37,8.36 45.28,-1.02 11.88,-3.4 6.76,-11.52 1.3,-2.71 0.37,-1.14 0.39,-2.03 -0.35,-2.63 -1.58,-2.15 -6.45,-4.67 -4.06,-3.76 -0.55,-37.22 0.92,-4.57 1.62,-5.62 7.03,-2.79 7.12,-5.34 5.72,-6.43 3.91,-1.71 3.09,-0.13 2.37,1.58 2.99,0.84 3.53,-0.05 4.58,-1.95 2.29,-2.54 1.32,-3.12 1.75,-9.49 0.97,-15.78 1.97,-3.04 4.53,-3.39 6.17,-3.27 11.45,-9.04 5.88,-2.91 4.21,-0.66 5.34,2.08 9.2,1.81 2.61,1.12 2.15,1.77 1.46,2.47 1.78,5.93 1.57,2.32 2.38,1.41 6.28,1.2 9.19,-0.81 21.34,-7.79 83.49,20.79 12.24,4.19 0.7,1.92 1.04,1.59 1.01,2.63 4.9,1.68 11.72,1.96 5.19,-0.01 3.36,-0.5 1.01,-1.37 0.47,-0.82 1.11,-2.2 0.56,-1.07 2.42,-1.87 3.61,-1.99 7.59,-2.42 2.48,-1.51 1.07,-1.98 -1.13,-2.28 -0.33,-2.81 1.24,-3.49 3.65,-0.29 2.49,1.22 2.58,1.74 1.91,1.88 7.47,3.8 12.58,3.82 3.35,1.68 6.21,5.01 16.71,9.75 18.68,2.69 6.38,-2.4 2.49,-4.39 1.41,-2.13 1.62,-1.95 1.5,-1.63 7.87,-12 15.31,-9.23 2.73,-4.98 -0.89,-2.4 -0.63,-3.59 -0.14,-4.73 3.85,-21.71 2.53,-2.54 6.85,-2.77 29.95,-18.38 2.59,-1.1 3.01,-0.71 3.09,0.01 9.44,1.51 20.47,-5.05 5.57,-8.95 -18.08,0.6 0.06,-0.06 17.13,-16.37 6.16,-9.7 3.31,-15.69 0,-0.03 -0.73,-14.27 -4.54,-5.37 -7.16,-5.16 -8.47,-13.78 0.02,-0.03 8.01,-12.87 36.19,-20.53 18.21,-18.45 8.57,-12.09 5.99,-12.96 2.78,-16.65 -0.01,-0.02 -3.9,-25.44 0,-0.05 1.08,-16.59 7.07,-16.59 10.49,-8.79 11.7,-6.11 10.7,-8.58 6.87,-10.63 1.97,-11.31 0.63,-10.13 2.56,-7 110.94,-53.13 0.78,0.03 11.42,-10.3 26.53,-1.54 12.57,-10.99 2.61,-16.11 -0.01,-0.02 -4.26,-15.2 -0.26,-12.1 0,-0.01 30.21,-15.88 10.42,-3.49 4.83,-7.8 0,-0.05 -1.28,-21.65 -4.92,-17.27 -15.2,-31.4 -4.48,-17.41 -14.62,3.75 -3.62,-15.94 0.74,-23.28 -1.5,-18.37 -10.97,-12.07 -29.18,-14.05 -7.7,-17.07 0.02,-0.03 4.09,-11.55 8.12,-13.88 15.88,-20.78 10.71,-8.89 11.48,-7.01 24.42,-10.39 10.27,-4.7 6.52,-11.61 1.25,-14.68 -0.01,0 -5.51,-13.9 0.02,-0.01 1.91,-1.39 5.88,-2.55 -0.02,-0.05 -3.01,-8.84 -0.36,-2.72 0.01,-0.01 7.76,-8.55 17.65,-8.73 8.01,-8.03 5.62,-11.88 4.63,-24.41 3.54,-12.9 5.22,-13.11 5.04,-9.75 6.08,-8.03 8.24,-7.84 8.23,-2.08 7.65,1.46 5.56,-4.05 1.84,-18.73 3.89,-36.37 4.46,-17.86 9.02,-15.68 14.73,-11.09 34.19,-14.1 15.37,-14.38 26.42,-52.06 12.08,-11.37 14.64,-4.42 43.07,-4.12 13.56,2.53 0.01,0.01 -3.87,14.08 -0.02,0.05 9.75,3.67 28.24,-6.17 12.62,-5.99 10.92,-8.01 21.56,-20.52 12.9,-4.56 4.54,-8.85 1.54,-10.69 3.86,-10.16 24.74,-26.41 0,-0.03 0.12,-0.11 0,-0.03 9.3,-4.6 73.22,-88.92 10.78,-21.39 12.63,-17.99 21.33,-10.92 44.19,0.41 14.98,-4.8 9.37,-7.13 23.8,-28.46 32.88,-29.83 9.27,-18.88 2.26,-31.21 11.54,-16.44 22.08,-18.36 24.16,-15.3 17.58,-7.2 6.38,19.79 6.31,12.65 9.85,5.26 4.97,-0.75 11.99,-1.81 13.33,-7.04 13,-9.3 12.9,-6.11 13.26,2.33 3.09,-20.96 8.99,-19.68 12.49,-16.65 13.3,-11.69 14.26,-5.72 27.57,-2.62 10.7,-5.13 18.59,-25.47 39.94,-68.39 15.36,-13.96 -0.02,-0.04 -19.08,-47.63 -1.05,-10.67 3.75,1.62 8.77,-14.96 3.86,-3.16 9.51,-3.83 -9.25,-10.01 -1.07,-13.36 6.15,-35.67 0.68,-18.66 -1.35,-16.17 -3.57,-14.92 -10.93,-28.1 -3.17,-5.53 -5.72,-6.44 -5.71,-2.92 -15.17,-3.42 -2.55,0.47 -5.47,-13.07 -4.73,-30.01 -1.66,1.54 -31.12,11.8 -12.35,16.65 -12.62,8.11 -13.23,6.23 -77.71,16.72 -24.5,-4.74 -23.54,-10.48 -6.24,-6.53 -3.66,-7.96 0.69,-3.99 2.57,-4.84 4.15,-19.92 7.49,-10.28 2.17,-9.64 -1.43,-10.94 -8.81,-21.6 -2.88,-10.43 -0.78,-10.38 3.2,-31.36 -0.81,-11.69 -2.89,-7.83 -2.99,-5.87 -1.2,-5.83 -2.76,-23.84 -9.33,-17.88 -68.82,-67.4 -24.15,-15.35 -101.09,-23.41 -75.29,-34.7 -11.6,-9.13 -26.15,-27.97 -23.25,-14.61 -11.04,-9.84 1.17,-2.62 -40.74,-10.04 -11.02,-6.6 -6.35,-7.75 -12.48,-22.13 -9.13,-11.59 -28.52,-22.19 -2.82,-3.83 -9.79,-17.17 -4.52,-2.29 -4.81,-0.01 -4.73,-1.84 -4.11,-8.23 -0.77,-15.09 4.52,-14.4 7.27,-13 7.46,-10.72 55.12,-52.22 12.41,-24.31 2.72,-12.38 0.24,-1.06 4.55,-11.45 6.49,-8.49 18.48,-9.83 15.79,-14.81 6.19,-2.91 13.2,-11.7 28.27,-57.51 17.51,-23.281 3.66,-3.321 -44.3,-79.988 -3.7,-8.879 -1.11,-7.141 0.13,-7.128 -0.98,-7.422 -4.45,-8.141 0.01,-0.027 -0.11,-0.121 0,-0.032 -12.82,-22.257 12.79,-11.793 42.25,-5.68 11.14,2.531 18.52,9.36 11.73,-1.29 9.74,-6.519 9.77,-10.723 15.93,-24.316 6.78,-15.742 2.93,-14.211 0.24,-13.457 -1,-13.532 -1.74,-2.511 -7.69,-22.508 -0.31,-3.012 -11.25,-16.59 -2.06,0.641 1.9,-25.18 1.6,0.719 -0.74,-1.598 -6.25,-18.461 -1.67,-3.019 1,-19.289 0.94,-6.922 2.03,-5.941 2.7,-5.559 2.34,-6.668 0.72,-9.23 -20.21,-26.563 -5.02,-4.859 -8.04,-0.821 -4.78,2.723 -4.47,4.18 -7.48,3.468 -7.81,-0.628 -6.06,-3.704 -6.27,-2.507 -8.43,2.91 -38.26,26.051 -36.35,36.128 -6.63,4.852 -7.16,2.117 -11.72,1.383 -19.24,14.137 -5.3,27.203 7.83,26.219 20.05,11.168 -15.66,13.711 -20.07,11.89 -12.54,13.922 6.82,19.727 -12.76,-2.258 -42.69,8.879 -26.75,-1.258 -26.38,-7.781 -14.06,-7.821 -31.99,-31.398 -11.48,-5.762 -15.7,-3.82 -15.47,-0.301 -10.83,4.75 -23.08,16.981 -6.49,6.96 -4.48,8.95 -8.84,23.312 -3.78,6.278 -12.39,1.871 -29.01,-12.672 -12.64,-2.5 -43.74,7.301 -16.26,-3.02 -16.39,-9.441 -8.13,-1.539 -7.72,6.261 -4.62,12.09 2.15,7.879 4.57,6.84 2.23,8.89 1.44,11.911 2.15,5.211 -1.88,-0.481 -10.68,-5.281 -6.34,-4.352 -17.44,-15.726 -11.7,-5.262 1.81,-9.102 2.69,-6.007 5.92,-7.071 6.3,-5.828 3.95,-2.371 2.27,-6.09 2.51,-29.609 -0.31,-10.422 -2.46,-7.238 -20.3,-28.383 -5.93,-1.449 -172.92,0.718 -62.63,-15.207 -8.32,-5.371 -6.77,-19.14 -7.79,-2.899 -42.67,7.149 -61.13,-1.86 -33.05,5.36 -13.92,0.019 -2.46,-3.269 -20.37,-18.86 -4.74,-12.019 -5.05,-25.903 -3.47,-10.41 -13.2,-15.656 -16.09,-7.031 -35.22,-7 -17.1,4.859 -18.67,1.942 -17,-4.614 -34.2,-41.859 9.3,-2.25 8.31,-5.168 3.17,-8.16 -6.16,-11.219 -12.08,-5.633 -32.66,-1.758 -13.89,-4.902 -14.18,-13.98 -9.62,-13.789 -10.39,-11.77 -16.27,-8.031 -18.12,1.551 0.74,30.261 -16.2,6.09 -18.95,-5.699 -48.34,-35.473 -14.62,-4.847 -78.81,-0.93 -10.6,5.879 -8.1,14.82 1.79,0.188 2.28,5.23 1.56,7.68 -0.42,7.461 -2.42,4.968 -38.6,39.692 -39.26,16.98 -5.35,8.719 23.97,17.121 6.04,7.789 -17.59,12.621 -8.12,4.289 -10.48,0.473 -10.55,-3.273 -30.01,-14.629 -22.24,-3.18 -6.5,1.801 -3.81,5.199 -2.62,5.75 -3.12,3.379 -100.11,35.391 -18.16,-0.18 -10.31,-7.442 -14.86,-21.558 -9.37,-7.891 -8.84,-1.687 -32.1,4.23 -11.89,5.18 -6.27,4.187 -4.06,5.09 -1.5,9.512 2.71,7.09 3.51,5.437 0.97,4.321 -3.65,10.332 -2.65,2.019 -5.71,-2.32 -12.54,-2.559 -11.19,-4.652 1.3,-9.547 6.75,-12.113 5.13,-12.367 -0.66,-10.301 -6.86,-44.473 10.7,-5.547 6.59,-7.062 4.16,-9.75 3.41,-13.719 0.64,-23.801 -6.4,-25.051 -10.58,-22.718 -12.21,-16.969 -6.48,-4.422 -15.78,-5.859 -7.71,-5.328 -4.4,-7.063 -16.2,-34.09 -13.24,-18.41 -14.57,-13.797 -33.49,-21.293 -16.43,-6.699 -48.49,-6.699 -11.43,-1.571 -3.43,1.899 2.94,7 6.77,12.621 3.06,2.172 9.91,3.137 3.58,3.671 1.76,7.442 -0.45,6.648 -1.87,7.27 13.07,41.332 0.24,19.988 -14.01,7.309 -33.06,-6.52 -8.83,-10.008 -3.16,-2.582 -3.87,0.063 -7.87,4.566 -3.83,0.461 -9.77,-4.929 -5.79,-4.329 -5.11,-0.3 -7.39,7.019 -4.21,10.559 -0.78,11.941 -2.23,11.539 -8.4,9.512 16.97,13.617 3.31,11.703 -6.73,12.891 -37.88,53.828 -8.48,-4.02 -6.58,-5.941 -6.58,-2.957 -8.35,4.84 -1.29,6.41 -0.28,3.418 0,3.422 -7.04,14.84 -9.57,9.25 -7.95,10.41 -2.29,18.289 -9.12,-7.402 -11.26,-2.379 -22.38,1.5 -22.73,8.101 -3.84,-1.082 -9.15,-6.008 -6.1,-0.531 -15.41,7.731 -3,11.718 1.34,13.571 -2.67,13.121 -8.84,9.5 -10.65,3.687 -11.33,-1.316 -10.78,-5.91 -16.14,-19.223 -9.3,-20.309 -10.7,-17.089 -20.33,-9.95 -48.35,-1.261 -43.58,11.621 0.01,0 35.01,49.25 7.99,11.89 1.62,1.278 4.18,1.84 20.13,4.043 5.81,2.289 3.13,1.871 0.33,2.008 1.03,2.82 2.75,4.91 11.76,5.84 4.78,-0.18 21.62,-7.051 33.66,17.582 55.19,50.278 13.92,7.621 8.81,3.43 5.72,-1.481 24.73,-11.07 18.21,-4.168 18.07,0.449 12.3,3.359 13.32,5.602 16.1,9.258 18.55,5.41 8.95,0.582 5.13,-0.742 3.86,-1.61 1.94,-2.961 3.78,-12.468 3.13,-7.399 5.01,-8.691 7.21,9.351 0.7,16.149 1.21,4.988 1.25,2.524 1.39,0.648 1.05,-0.102 14.04,-5.367 7.15,-0.82 2.42,1.59 1.71,2.258 1.12,2.89 1.12,3.633 0.85,5.328 -0.17,3.422 -0.86,3.168 -2.9,7.691 -2.96,11.27 -2.97,20.641 -1.28,32.32 -0.77,4.578 -0.96,2.691 -1.47,2.278 -1.52,0.812 -5.93,-0.121 -2.33,0.719 -1.41,1.473 -1.82,5.136 -2.73,4.332 -5.41,4.352 -4.48,4.848 -0.74,3.289 0.76,3.523 3.39,6.477 1.83,2.031 1.38,1.058 2.32,0.551 12.76,0.52 2.07,1.582 1.59,2.289 1.49,4.16 1.12,2.57 1.49,1.809 1.72,0.832 1.05,0.301 4.26,2.297 -14.42,31.363 -2.59,10.328 -2.87,6.281 -1.3,2.051 -0.94,0.438 -0.81,0.109 -0.58,-0.008 -1.61,-1.062 -1.5,-0.278 -1.74,0.008 -3.39,1.301 -1.19,2.39 -0.37,1.461 0.33,1.438 2.62,3.371 0.8,0.852 1.03,0.668 2.17,2.359 1.13,2 0.78,2.851 1.89,13.79 0.76,3.539 3.06,4.781 1.08,5.539 0.92,8.281 0.43,26.46 -0.64,4.27 -9.05,9.12 -1.53,2.33 -6.56,13.3 -1.36,6.3 0.05,4.65 1.69,3.3 2.28,2.44 1.71,1.46 5.51,3.47 21.12,61.8 5.18,24.52 1.41,29.73 -0.75,11.99 -2.52,14.27 -20.66,44.97 -31.16,134.01 -12.32,39.73 -3.19,6.33 -10.67,15.43 -10.24,17.76 -14.07,30.23 -0.62,0.97 -0.82,0.91 -0.69,0.36 -0.81,0.31 -0.81,0.1 -1.6,-0.36 -5.28,-0.07 -6.82,12.32 40.7,58.41 5.34,3.61 -2.16,6.52 -0.63,4.3 0.29,4.08 3.78,8.93 3.26,4.76 6.2,6.98 3.67,3.15 2.85,1.16 9.04,0.87 13.24,3.64 2.39,1.24 5.31,4.99 9.11,6.48 2.85,1.02 3.67,-0.24 1.38,-0.46 1.16,-0.59 2.68,-2.98 0.82,-1.19 0.83,-2.06 0.61,-2.37 0.56,-7.29 0.61,-2.06 0.82,-1.48 1.28,-1.3 1.62,-1.16 1.39,-0.64 3.91,-0.63 71.1,44.84 1.74,12.47 0.77,1.88 1.78,3.25 4.04,5.03 2.37,2.02 1.92,1.3 6.27,1.68 28.17,2 1.82,0.67 1.47,1.12 -1.62,0.66 -2.19,1.34 -1.29,1.58 -0.94,1.4 -0.05,2.84 0.73,4.09 7.31,20.73 0.79,7.25 0.14,5.2 -0.58,7 -1.22,4.58 -1.2,3.31 -3.77,6.25 -1.9,3.99 -0.73,2.46 -0.5,2.64 -0.54,4.9 0.54,2.05 0.88,1.59 4.08,2.49 5.79,2.14 1.91,1.7 3.13,3.99 -0.07,4.13 -0.5,2.61 -1.29,1.76 -1.86,1.6 -6.23,3.37 -4.18,3.89 -3.61,4.13 -3.94,3.21 -4.27,2.49 -4.14,1.68 -3.11,1.84 -1.63,1.73 -1.18,2.22 -1.25,4.03 -1.41,2.56 -1.52,1.78 -2.2,2.18 -2.81,4.2 -2.99,7.88 0.47,12.97 0.99,2.23 1.24,0.88 6.48,8.15 5.24,10.03 2.91,3.32 3.07,0.57 3.59,-3.21 6.62,-7.07 3.48,-2.93 2.76,-1.44 3.9,-1.14 15.19,1.41 3.79,-1.31 2.45,-2.77 5.6,-13.49 4.83,-8.04 1.63,-1.81 1.27,-0.58 2.04,0.72 3.04,2.44 32.64,39.21 4.96,3.54 3.08,0.09 3.1,-1.18 1.74,-1.49 2.01,-3.66 -0.65,-1.85 -1.46,-1.47 -2.49,-1.14 -0.62,-2.94 0.62,-2.86 0.17,-3.04 -2.96,-6.61 -0.86,-2.52 -0.31,-1.81 -0.06,-2.67 0.5,-2.72 0.84,-2.11 1.18,-1.99 1.05,-1.02 1.38,-0.6 9.71,5.98 31.29,30.26 -13.7,24.33 -1.98,7.8 -2.73,5.64 -1.52,1.83 -1.26,0.44 -4.89,-1.04 -14.54,7.31 -5.37,6.76 -0.72,1.8 -0.25,1 -0.91,5.96 -0.21,5.48 0.17,2.91 0.41,2.62 0.86,2.4 0.66,1.39 1.11,1.52 1.8,1.47 0.73,3.34 0.23,6.04 -1.08,15.09 0.1,6.73 1.16,4.85 2.23,2.57 4.81,4.14 1.04,1.37 1.2,2.72 1.06,4.39 1.86,9.63 0.48,4.72 -0.18,3.28 -0.72,1.82 -0.71,1.74 -5.92,9.8 -0.73,2.54 -0.26,1.87 0.21,1.03 2.35,7.86 0.46,1.59 0.31,1.7 1.93,30.21 -0.15,7.55 -0.66,4.96 -1.28,1.41 -6.04,5 -0.72,1.83 0.54,1.33 1.91,1.1 8.16,3.11 2.25,1.31 3.47,2.94 0.5,3.34 -0.52,3.5 -3.72,10.21 -1.95,7.06 -1.08,2.88 -1.52,2.45 -1.97,2.14 -4.19,2.97 -2.09,2.77 -3.24,9.22 -1.3,2.53 -0.82,1.25 -1.05,1.31 -1.26,1.06 -9.63,10.74 -5.88,11.27 -31.01,24.51 -4.52,5.92 -2.93,11.07 -2.75,8.37 -2.11,3.52 -2.19,1.98 -8.61,-0.27 -2.19,0.25 -1.6,0.66 -12.71,7.53 -3.08,0.98 -2.38,0.14 -5.32,-0.7 -3.63,0.43 -13.37,4.6 -3.78,2.06 -1.96,1.98 -0.14,1.6 0.2,1.73 1.19,3.18 0.66,1.51 0.73,3.51 -0.11,6.55 -11.26,9.32 -2.9,4.26 -0.25,1.52 0.2,1.61 1.4,4.45 0.84,4.04 -0.83,2 -1.26,1.12 -3.18,0.44 -7.06,2.27 -7.99,4.41 -2.76,2.39 -1.17,2.23 0.66,1.47 0.99,1.45 1.46,0.83 1.59,0.11 3.17,-0.55 2.95,0.05 1.57,0.37 1.58,0.66 1.68,1.09 1.22,1.54 0.76,1.57 1.62,4.68 0.66,1.56 0.87,1.57 1.11,1.6 1.41,3.61 1.38,5.31 1.03,12.72 -0.77,6.02 -1.21,4.34 -1.38,1.65 -11.6,10.81 -1.37,1.01 -1.6,0.58 -1.69,0.09 -1.7,-0.23 -1.91,-0.72 -7.97,-5.65 -1.69,-0.37 -1.71,0.63 -10.1,9.49 -15.14,21.08 -3.1,3.23 -2.86,2.4 -13.28,8.64 -6.18,5.34 -1.96,2.81 -0.6,2.12 1.23,1.14 1.46,0.54 3.16,0.33 1.68,0.69 1.45,1.43 1.41,3.52 -1.06,2.75 -2.42,3.06 -4.81,4.76 -2.32,4.07 -1.42,4.31 -0.19,5.03 0.17,3.77 -0.26,9.88 -0.75,4.29 -0.34,0.52 -10.21,10.7 -1.97,3.94 -0.52,4.18 0.53,2.6 0.98,2.37 1.23,0.76 1.47,-0.38 3.31,-2.76 2.17,-1.41 7.26,-2.7 3.05,-0.3 2.35,1.24 1.2,2.43 0.34,7.13 -1.78,5.95 -5.47,10.89 -2,5.49 -0.62,3.96 5.17,15.9 -0.17,3.71 -1.06,2.71 -1.25,1.1 -1.03,0.68 -1.92,0.49 -2.37,0.3 -3.86,1.61 -5,3.32 -7.25,9.66 -2.02,7.49 0,7.16 1.41,3.98 0.04,19.91 12.71,15.77 3.36,0.97 4.95,0.42 4.54,-2.43 3.5,-1.36 5.65,-0.89 1.2,1.98 -0.37,2.52 -21.71,51.32 -1.39,2.31 -1.59,1.44 -3.06,1.68 -14.17,4.87 -1.6,2.02 0.3,2.65 1.54,2.38 4.23,5.12 2.39,5.32 5.23,18.35 -7.54,16.32 -1.09,5.44 0.64,1.91 3.04,6.94 2.15,6.24 -0.05,3.56 -1.05,2.97 -3.07,2.51 -2.49,1.06 -1.46,0.15 -1.94,-0.03 -2.35,-0.41 -2.26,0.51 -2.59,1.17 -4.88,3.64 -1.61,2.44 -0.37,2.13 0.98,2.48 0.42,1.5 0.88,1.62 2.38,6.04 -0.04,2.24 -0.69,1.75 -4.09,3.18 -2.38,1.43 -5.64,2.68 -17.19,-14.04 -2.66,-5.18 0.69,-1.11 0.8,-0.96 0.72,-1.08 1.6,-1.96 1.03,-0.94 1.49,-2.33 0.71,-2.75 0.53,-5.88 -1.19,-2.98 -20.37,-23.76 -6.66,-5.52 -5.91,-3.3 -52.12,-1.83 -6.46,1.22 -1.81,1.38 -0.25,1.55 0.43,1.79 0.09,1.89 -3.75,21.96 -0.28,4.43 0.28,4.48 0.94,5.47 0.38,5.44 -0.06,5.05 -1.91,9.11 -1.53,15.07 -0.81,2.06 -1.83,2.44 -9.73,7.7 -0.46,0.97 0.21,1.15 0.99,1.74 1.32,1.85 1.75,3.79 0.42,2.07 -0.25,1.75 -1.04,2.46 -3.18,3.75 -2.7,0.83 -2.69,-0.38 -2.77,-1.98 -2.11,-2.04 -3.86,-5.62 -2.01,-3.76 -1.32,-1.91 -1.22,-1.05 -4.36,-1.14 -3.01,-1.24 -2.33,-1.92 -1.32,-2.66 -1.26,-7.31 -1.52,-4.22 -2.54,-3.82 -6.24,-3.4 -4.49,0.64 -5.31,3.21 -1.83,2.83 -0.15,3.41 2.1,3.3 10.08,10.86 1.43,2.03 1.21,2.54 0.63,3.63 0.08,2.27 -1.18,5.87 -0.16,3.51 0.41,3.97 1.3,3.17 6.4,9.32 5.41,6.22 1.21,2.6 0.65,1.99 0.53,2.33 0.43,1.38 -0.02,2.01 -0.59,2.53 -1.27,2.97 -3.76,5.18 -25.04,26.72 -3.53,4.62 -0.73,2 -0.58,2.01 -0.89,9.7 0.42,22.64 -0.27,4.65 -0.37,2.73 -0.92,2.26 -20.61,24.42 -4.67,7.42 -1.92,1.88 -1.46,0.73 -5.77,-3.97 -11.49,-4.94 -3.11,-2.19 -1.99,-2.18 -0.66,-1.01 -14.28,-14.07 -4.07,-6.85 -1.88,-2 -3.23,-1.82 -2.36,1.33 -1.51,1.71 -7.08,15.7 -0.58,2.58 -0.6,4.25 -0.17,5.69 -0.83,4.73 -1.69,1.62 -1.79,-0.01 -0.88,-0.59 -0.78,-0.81 -2.95,-6.98 -2.1,-2.29 -7.68,-3.55 -1.78,-1.79 -0.76,-1.88 -0.86,-3.83 -0.5,-7.1 -0.53,-3.28 -0.65,-2.24 -3.1,-2.87 -4.62,-0.91 -10.18,1.12 -6.4,2.79 -5.62,3.48 -3.05,2.97 -0.56,1.03 -0.46,1.54 0.31,2.25 0.65,2.47 4.72,10.9 0.65,2.16 -0.02,2.42 -0.94,5.68 0.32,1.81 1.21,1.7 3.56,2.36 1.1,1.5 0.1,2.07 -1.51,6.37 -0.15,3.96 0.53,3.05 0.88,2.31 1.1,2.02 1.09,2.59 0.44,1.44 -0.02,1.55 -0.24,2.82 -1.39,5.62 -0.84,5.96 -0.01,1.56 0.54,1.9 1.1,2.1 2.43,3.13 0.98,2.59 -0.02,2.5 -1.49,4.76 -2.36,2.1 -2.13,0.5 -2.45,-1.17 -3.32,-2.84 -6.33,-4.02 -12.24,-4.84 -7.5,-1.61 -19.93,12.62 -3.78,-2.27 -8.72,-2.65 -8.75,0.74 -38.89,18.12 -13.28,0.29 -25.68,-4.04 -26.02,-9.68 -35.09,2.3 -8.69,-2.92 -8.2,-5.38 -7.56,-7.87 -3.91,-6.28 4.9,-14.77 0.68,-2.24 0.22,-0.75 -0.77,-1.9 -0.88,-3.65 -3.55,-6.13 0.02,-4.63 0.46,-3.24 1.35,-1.95 2.58,-2.29 5.82,-1.93 24.41,-3.68 4.03,-2.05 2.47,-2.34 0.92,-4.19 -0.43,-3.88 -2.31,-8.14 -0.2,-4.02 1.36,-2.81 2.68,-0.76 2.57,0.04 2.24,0.76 2.89,1.79 1.67,2.45 1.58,3.83 1.97,8.46 0.77,1.95 0.89,1.39 1.33,1.33 1.67,0.81 2.01,0.41 1.46,-0.05 14,-6.13 2.13,-1.88 1.47,-1.89 0.68,-1.43 -8.03,-44.54 -0.3,-5.41 0.34,-0.68 0.45,-0.52 2.15,-4.47 2.61,-7.71 -13.25,-12.48 -3.13,-0.42 -3.81,0.84 -8.82,9.55 -2.46,1.14 -1.91,0.33 -20.55,-9.29 -7.38,-1.47 -10.22,0.47 -5.82,-1.03 -5.7,-2.06 -10.05,-5.99 -3.68,-3.37 -1.66,-4.06 1.95,-13.58 0.57,-2.47 -0.1,-1.81 -1.01,-1.64 -6.69,-6.29 -2.35,-2.82 -1.37,-2.77 -2.2,-9.51 -1.45,-3.54 -3.23,-5.93 -3.68,-2.83 -4.03,-1.42 -43.19,-0.5 -10.76,1.9 -41.04,-9.08 -2.58,0.37 -5.61,4.33 -10.38,17.74 -14.24,13.54 -2.69,4.19 -0.23,4.26 2.8,3.96 1.56,1.61 1.79,2.71 7.27,7.62 5.93,5.03 2.57,1.67 2.12,2.24 1.72,2.33 2.12,5.03 -0.8,6.67 -7.24,30.15 -1.02,9.31 0.44,5.68 3.02,1.5 2.83,0.41 5.37,0.06 2.68,0.47 3.02,1.47 3.35,2.33 4.13,4.43 1.23,2.19 -0.01,2.75 -1.12,3.39 -1.35,5.83 0.1,5.09 0.77,4.45 1.78,5.09 9.46,20.07 0.33,4.08 -1.68,2.92 -11.29,4.84 -5.82,3.64 -2.46,4.33 0.11,4.62 1.77,4.32 9.81,13.2 3.33,6.7 0.33,4.08 -1.12,3.9 -2.47,3.45 -2.23,1.72 -1.9,0.74 -2.68,-0.12 -3.23,-0.72 -3.01,-1.3 -3.57,-0.58 -3.01,0.74 -3.61,2.15 -3.25,4.33 -2.46,5.23 -3.58,11.14 -0.68,7.3 0.33,7.18 1.66,8.53 0.22,4.57 -0.34,2.59 -0.89,1.32 -1.23,0.74 -1.12,0.14 -1.56,-0.95 -2.11,-2.47 -4.45,-8.05 -1.23,-2.47 -1.11,-1.12 -0.78,-0.32 -1.56,0.32 -0.89,0.94 -0.9,1.56 -1.9,4.42 -2.34,3.39 -9.09,29.12 -6.69,18.18 -9.48,27.77 -0.44,4.54 1.41,82.22 15.12,-5.85 1.26,1.09 1.56,0.58 -0.56,2.24 -5.16,9.93 -2.78,6.78 -0.56,1.84 0.89,12.64 -6.89,10.71 -3.79,24.22 -0.67,2.01 -3.22,3.79 -6.99,1.27 -6.99,-1.27 -3.22,-3.79 -3.63,0.86 -6.4,4.71 -4.88,3.14 1.56,2.49 6.66,8.28 1.99,1.32 3.04,-0.69 3.1,0.23 2.55,1.15 2.11,2.3 1,4.28 0.44,4.51 0.11,16.03 0.56,5.23 0.99,3.85 1.34,2.47 1.66,2.01 3.32,2.99 3.77,1.69 23.65,5.56 36.04,17.1 2.1,0.53 2.11,-0.17 2.21,-0.52 3,-1.54 8.99,-7.34 3.88,-2.5 9.65,-2.99 1.67,-1.21 0.33,-1.55 -0.77,-1.98 -4.31,-6.88 -1.21,-2.87 -0.22,-1.9 2.22,0.01 4.87,2.42 10.44,7.66 12.38,14.74 1.65,3.66 0.22,2.38 -0.35,5.69 0.77,4.83 1.54,2.01 3.1,1.68 22.06,6.49 4.54,0.59 3.88,-0.16 7.76,-2.15 31.84,-0.75 2.33,-0.68 5.1,-1.93 3.32,-0.51 9.2,1.08 3.76,-0.24 27.8,-13.12 6.89,-4.56 4.68,-4.8 1.12,-2.01 1.27,-2.66 2.93,-9.33 1.24,-2.69 4.91,-6.98 4.91,-5.78 16.99,-2.69 11,1.81 43.38,18.84 5.29,5.38 1.86,3.69 -4.25,20.31 -0.46,3.59 0.96,5.69 2.17,6.14 8.63,16.9 1.3,3.74 -0.23,1.95 -0.9,1.55 -1.56,1.59 -2.44,0.91 -12.52,1.46 -2,0.91 -1.01,1 -0.78,1.54 -0.5,2.21 -0.23,2.59 0.42,3.3 1.1,5.33 4.88,15.26 0.85,4.83 -2.47,22.02 0.62,7.16 1.19,2.7 2.21,0.71 6.32,-2.54 4.43,-1.06 2.65,0.07 6.5,3.84 1.55,0.24 1.55,-0.53 1.78,-1.17 2.11,-2.4 3.36,-5.23 1.49,-1.57 1.55,-0.99 1.77,-0.13 11.25,3.65 3.21,0.31 2.43,-0.18 1.45,-0.74 1.22,-0.82 1.9,-2.08 2.1,-1.02 3.33,-0.75 10.21,0.25 13.12,4.71 21.83,6.91 1.54,1.8 1.19,2.77 -3.8,4.33 -1.49,5.45 0.27,7.87 4.94,15.39 5.71,7.81 4.82,4.92 9.57,4.69 7.49,1.97 12.32,5.72 11.77,8.07 4.48,4.3 2.72,4.68 0.22,10.63 -0.86,9.36 -0.72,5.02 -0.61,5.65 -2.58,15.49 16.36,61.31 8.56,13.63 3.88,1.33 8.22,4.05 2.19,0.63 1.88,-0.3 1.88,-1.13 1.68,-1.82 5.48,-8.27 3.68,-4.07 6.45,-5.13 4.65,-2.19 2.69,-0.6 6.17,-0.1 8.14,1.24 42.04,16.94 44.08,26.77 14.03,12.54 8.22,13.96 7.16,15.19 14.83,25.29 1.06,2.43 1.16,3.84 0.83,3.31 4.12,12.19 38.07,43.89 11.55,8.39 1.24,-1.88 0.27,-3.16 -0.28,-3.07 -0.17,-3.31 0.7,-2.58 1.24,-2.39 2.77,-1.51 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3609.67,3925.87 0,0 3.86,-0.83 34.68,4.19 6.28,-0.99 3.88,-1.98 1.8,-2.58 2.46,-2.67 4.34,-3.09 2.57,-2.71 1.69,-2.79 1.2,-6.13 3.21,-7.94 1.34,-5.95 2.48,-3.3 4.66,-2.71 57.55,-18.75 6.33,-3.51 3.69,-3.58 0.71,-2.83 2.53,-5.93 0.6,-2.52 0.16,-3.1 -0.31,-6.85 0.05,-3.1 0.94,-3.03 1.84,-2.61 10.16,-7.92 3.6,-4.02 3.27,-4.3 2.95,-4.66 3.03,-3.34 19.15,-14.84 1.84,-3.79 -0.73,-2.6 -1.61,-2.16 -3.59,-4.03 -0.71,-3.35 0.4,-3.87 3.46,-6.23 2.69,-2.31 3.12,-1.6 13.68,-1.07 6.38,1.05 6.33,2.82 4.83,1.36 1.8,-1.86 1.08,-2.77 0.72,-3 2.41,-5.07 2.5,-3.57 3.73,-4.41 19.39,-15.83 1.72,-3.15 0.62,-3.35 -0.26,-3.97 1.26,-2.02 1.78,-1.03 9.43,-0.44 5.98,-1.08 3.41,0.47 2.17,1.6 4.55,4.23 11.76,1.85 9.85,-20.71 6.33,-6.88 9.93,-5.17 2.39,-3.14 0.84,-3.43 0.46,-5.56 1.14,-7.28 3.72,-13.71 0.92,-6.88 0.01,-5.46 -1.14,-3.59 -0.42,-6.1 -1.47,-3.74 -0.99,-5.05 0.64,-4.07 2.57,-6.79 6.79,-12.15 0.42,-4.25 -0.7,-3.4 -1.81,-3.37 0.06,-2.82 0.73,-2.77 3.21,-5.25 5.79,-6.86 32.21,0.85 17.73,-4.48 9.34,-6.98 9.98,-5.66 5.01,-1.12 3.29,0.97 0.94,2.63 0.15,3.28 -0.21,8.79 2.78,23.46 5.09,6.1 2.87,0.18 2.67,-0.68 1.8,-1.14 2.82,-2.52 3.88,-0.51 5.85,0.57 22.57,5.71 2.9,-0.79 10.29,-5.07 8.79,-1.79 4.52,0.28 3.4,1.23 2.05,2.27 1.73,2.83 0.99,4.74 0.24,3.97 -0.32,3.73 -0.52,3.12 -1.47,5.8 -1.2,2.55 -1.61,2.21 -2.36,1.66 -12.56,3.09 -2.91,1.13 -2.57,1.38 -1.93,1.85 -1.59,2.09 -1.06,2.59 -1.8,5.67 -1.6,2.21 -2.35,1.43 -2.78,0.86 -12.38,-1.45 -3.1,0.44 -2.9,0.91 -2.36,1.55 -1.92,1.8 -8.73,9.62 -1.24,1.12 -8.52,5.47 -7.96,3.52 -2.91,1.83 -2.71,2.35 -2.97,4.36 -0.71,6.99 2.04,26.09 2.72,6.5 3,3.75 2.97,0.53 3.13,-0.07 10.13,-4.1 1.56,-0.37 2.43,-0.11 2.28,1.32 1.93,2.57 1.9,3.67 1.36,3.13 9.63,17.02 3.44,3.7 3.07,2.12 2.54,-0.26 1.44,-0.34 6.81,-3.14 1.77,-0.3 2.43,-0.05 5.14,1.64 2.39,1.24 8.67,6.54 2.61,1.1 2.86,0.33 13.21,-1.95 5.34,2.5 3.03,2.23 2.51,0.89 1.88,0.05 1.89,-0.78 2.02,-1.36 1.81,-1.91 1.6,-2.29 1.28,-2.38 1.48,-1.95 1.7,-1.68 1.67,-0.59 2.24,-0.17 2.49,0.41 17.85,6.58 5.71,0.81 5.43,-1.21 25.23,-34.84 3.05,-2.85 4.5,-3.1 1.5,1.68 1.05,2.07 0.49,2.08 0.78,8.07 0.96,1.12 1.65,0.45 19.29,-2.24 5.15,-2.79 3.86,-3.75 3.48,-6.11 2.91,-1.65 2.88,-0.15 10.12,4.94 2.96,0.83 9.6,1.3 2.62,1.14 1.93,2.01 1.36,2.45 2.35,2.91 3.12,2.68 7.23,2.19 2.86,0.22 2.36,-1.48 1.96,-6.79 2.33,-4.42 2.35,-1.14 4.55,0.53 2.56,-0.9 2.14,-1.66 5.79,-9.35 3.33,-4.28 2.89,-4.66 1.18,-2.55 0.96,-2.47 0.29,-2.5 -0.29,-1.56 -0.93,-2.21 -13.45,-16.2 5.89,-8.86 35.89,-31.96 6.69,13.34 3.69,2.03 6.37,-6.02 3.82,-2.01 16.31,-4.51 4.85,0.6 3.05,1.59 0.92,2.44 0.17,1.79 -0.19,2.58 -1.47,8.18 0.69,2.72 1.21,4.1 4.19,7.34 0.97,4.63 -0.01,3.77 -1.07,2.58 -4.19,7.12 -0.12,4.02 0.94,5.38 5.74,14.43 0.79,3.19 -0.31,2.84 -0.87,3.25 -0.6,4.98 0.17,1.9 1.72,1.29 5.14,1.74 0.95,1.5 0.16,1.9 -1.59,5.01 -0.53,2.75 -0.18,2.52 -0.1,3.1 -0.31,3.1 -1.08,2.67 -1.18,2.49 -5.26,6.2 -1.3,2.72 -0.65,3.34 -0.03,4.54 -0.53,3.03 -2.8,4.81 -1.07,2.84 -0.13,4.14 1.83,19.66 0,3.51 -0.43,3.26 -1.18,6.12 -0.86,2.85 -1.41,3 -1.32,3.41 -1.36,4.91 1.42,4.01 0.15,2.42 -0.39,2.06 -2.26,5.56 -3.78,12.02 19.4,10.05 13.65,3.56 14.25,9.99 2.32,3.38 0.39,1.42 0.06,1.84 -0.16,1.38 0.17,1.67 0.47,2.52 2.28,4.64 3.64,3.02 5.13,1.57 6.37,8.36 45.28,-1.02 11.88,-3.4 6.76,-11.52 1.3,-2.71 0.37,-1.14 0.39,-2.03 -0.35,-2.63 -1.58,-2.15 -6.45,-4.67 -4.06,-3.76 -0.55,-37.22 0.92,-4.57 1.62,-5.62 7.03,-2.79 7.12,-5.34 5.72,-6.43 3.91,-1.71 3.09,-0.13 2.37,1.58 2.99,0.84 3.53,-0.05 4.58,-1.95 2.29,-2.54 1.32,-3.12 1.75,-9.49 0.97,-15.78 1.97,-3.04 4.53,-3.39 6.17,-3.27 11.45,-9.04 5.88,-2.91 4.21,-0.66 5.34,2.08 9.2,1.81 2.61,1.12 2.15,1.77 1.46,2.47 1.78,5.93 1.57,2.32 2.38,1.41 6.28,1.2 9.19,-0.81 21.34,-7.79 83.49,20.79 12.24,4.19 0.7,1.92 1.04,1.59 1.01,2.63 4.9,1.68 11.72,1.96 5.19,-0.01 3.36,-0.5 1.01,-1.37 0.47,-0.82 1.11,-2.2 0.56,-1.07 2.42,-1.87 3.61,-1.99 7.59,-2.42 2.48,-1.51 1.07,-1.98 -1.13,-2.28 -0.33,-2.81 1.24,-3.49 3.65,-0.29 2.49,1.22 2.58,1.74 1.91,1.88 7.47,3.8 12.58,3.82 3.35,1.68 6.21,5.01 16.71,9.75 18.68,2.69 6.38,-2.4 2.49,-4.39 1.41,-2.13 1.62,-1.95 1.5,-1.63 7.87,-12 15.31,-9.23 2.73,-4.98 -0.89,-2.4 -0.63,-3.59 -0.14,-4.73 3.85,-21.71 2.53,-2.54 6.85,-2.77 29.95,-18.38 2.59,-1.1 3.01,-0.71 3.09,0.01 9.44,1.51 20.47,-5.05 5.57,-8.95 -18.08,0.6 0.06,-0.06 17.13,-16.37 6.16,-9.7 3.31,-15.69 0,-0.03 -0.73,-14.27 -4.54,-5.37 -7.16,-5.16 -8.47,-13.78 0.02,-0.03 8.01,-12.87 36.19,-20.53 18.21,-18.45 8.57,-12.09 5.99,-12.96 2.78,-16.65 -0.01,-0.02 -3.9,-25.44 0,-0.05 1.08,-16.59 7.07,-16.59 10.49,-8.79 11.7,-6.11 10.7,-8.58 6.87,-10.63 1.97,-11.31 0.63,-10.13 2.56,-7 110.94,-53.13 0.78,0.03 11.42,-10.3 26.53,-1.54 12.57,-10.99 2.61,-16.11 -0.01,-0.02 -4.26,-15.2 -0.26,-12.1 0,-0.01 30.21,-15.88 10.42,-3.49 4.83,-7.8 0,-0.05 -1.28,-21.65 -4.92,-17.27 -15.2,-31.4 -4.48,-17.41 -14.62,3.75 -3.62,-15.94 0.74,-23.28 -1.5,-18.37 -10.97,-12.07 -29.18,-14.05 -7.7,-17.07 0.02,-0.03 4.09,-11.55 8.12,-13.88 15.88,-20.78 10.71,-8.89 11.48,-7.01 24.42,-10.39 10.27,-4.7 6.52,-11.61 1.25,-14.68 -0.01,0 -5.51,-13.9 0.02,-0.01 1.91,-1.39 5.88,-2.55 -0.02,-0.05 -3.01,-8.84 -0.36,-2.72 0.01,-0.01 7.76,-8.55 17.65,-8.73 8.01,-8.03 5.62,-11.88 4.63,-24.41 3.54,-12.9 5.22,-13.11 5.04,-9.75 6.08,-8.03 8.24,-7.84 8.23,-2.08 7.65,1.46 5.56,-4.05 1.84,-18.73 3.89,-36.37 4.46,-17.86 9.02,-15.68 14.73,-11.09 34.19,-14.1 15.37,-14.38 26.42,-52.06 12.08,-11.37 14.64,-4.42 43.07,-4.12 13.56,2.53 0.01,0.01 -3.87,14.08 -0.02,0.05 9.75,3.67 28.24,-6.17 12.62,-5.99 10.92,-8.01 21.56,-20.52 12.9,-4.56 4.54,-8.85 1.54,-10.69 3.86,-10.16 24.74,-26.41 0,-0.03 0.12,-0.11 0,-0.03 9.3,-4.6 73.22,-88.92 10.78,-21.39 12.63,-17.99 21.33,-10.92 44.19,0.41 14.98,-4.8 9.37,-7.13 23.8,-28.46 32.88,-29.83 9.27,-18.88 2.26,-31.21 11.54,-16.44 22.08,-18.36 24.16,-15.3 17.58,-7.2 6.38,19.79 6.31,12.65 9.85,5.26 4.97,-0.75 11.99,-1.81 13.33,-7.04 13,-9.3 12.9,-6.11 13.26,2.33 3.09,-20.96 8.99,-19.68 12.49,-16.65 13.3,-11.69 14.26,-5.72 27.57,-2.62 10.7,-5.13 18.59,-25.47 39.94,-68.39 15.36,-13.96 -0.02,-0.04 -19.08,-47.63 -1.05,-10.67 3.75,1.62 8.77,-14.96 3.86,-3.16 9.51,-3.83 -9.25,-10.01 -1.07,-13.36 6.15,-35.67 0.68,-18.66 -1.35,-16.17 -3.57,-14.92 -10.93,-28.1 -3.17,-5.53 -5.72,-6.44 -5.71,-2.92 -15.17,-3.42 -2.55,0.47 -5.47,-13.07 -4.73,-30.01 -1.66,1.54 -31.12,11.8 -12.35,16.65 -12.62,8.11 -13.23,6.23 -77.71,16.72 -24.5,-4.74 -23.54,-10.48 -6.24,-6.53 -3.66,-7.96 0.69,-3.99 2.57,-4.84 4.15,-19.92 7.49,-10.28 2.17,-9.64 -1.43,-10.94 -8.81,-21.6 -2.88,-10.43 -0.78,-10.38 3.2,-31.36 -0.81,-11.69 -2.89,-7.83 -2.99,-5.87 -1.2,-5.83 -2.76,-23.84 -9.33,-17.88 -68.82,-67.4 -24.15,-15.35 -101.09,-23.41 -75.29,-34.7 -11.6,-9.13 -26.15,-27.97 -23.25,-14.61 -11.04,-9.84 1.17,-2.62 -40.74,-10.04 -11.02,-6.6 -6.35,-7.75 -12.48,-22.13 -9.13,-11.59 -28.52,-22.19 -2.82,-3.83 -9.79,-17.17 -4.52,-2.29 -4.81,-0.01 -4.73,-1.84 -4.11,-8.23 -0.77,-15.09 4.52,-14.4 7.27,-13 7.46,-10.72 55.12,-52.22 12.41,-24.31 2.72,-12.38 0.24,-1.06 4.55,-11.45 6.49,-8.49 18.48,-9.83 15.79,-14.81 6.19,-2.91 13.2,-11.7 28.27,-57.51 17.51,-23.281 3.66,-3.321 -44.3,-79.988 -3.7,-8.879 -1.11,-7.141 0.13,-7.128 -0.98,-7.422 -4.45,-8.141 0.01,-0.027 -0.11,-0.121 0,-0.032 -12.82,-22.257 12.79,-11.793 42.25,-5.68 11.14,2.531 18.52,9.36 11.73,-1.29 9.74,-6.519 9.77,-10.723 15.93,-24.316 6.78,-15.742 2.93,-14.211 0.24,-13.457 -1,-13.532 -1.74,-2.511 -7.69,-22.508 -0.31,-3.012 -11.25,-16.59 -2.06,0.641 1.9,-25.18 1.6,0.719 -0.74,-1.598 -6.25,-18.461 -1.67,-3.019 1,-19.289 0.94,-6.922 2.03,-5.941 2.7,-5.559 2.34,-6.668 0.72,-9.23 -20.21,-26.563 -5.02,-4.859 -8.04,-0.821 -4.78,2.723 -4.47,4.18 -7.48,3.468 -7.81,-0.628 -6.06,-3.704 -6.27,-2.507 -8.43,2.91 -38.26,26.051 -36.35,36.128 -6.63,4.852 -7.16,2.117 -11.72,1.383 -19.24,14.137 -5.3,27.203 7.83,26.219 20.05,11.168 -15.66,13.711 -20.07,11.89 -12.54,13.922 6.82,19.727 -12.76,-2.258 -42.69,8.879 -26.75,-1.258 -26.38,-7.781 -14.06,-7.821 -31.99,-31.398 -11.48,-5.762 -15.7,-3.82 -15.47,-0.301 -10.83,4.75 -23.08,16.981 -6.49,6.96 -4.48,8.95 -8.84,23.312 -3.78,6.278 -12.39,1.871 -29.01,-12.672 -12.64,-2.5 -43.74,7.301 -16.26,-3.02 -16.39,-9.441 -8.13,-1.539 -7.72,6.261 -4.62,12.09 2.15,7.879 4.57,6.84 2.23,8.89 1.44,11.911 2.15,5.211 -1.88,-0.481 -10.68,-5.281 -6.34,-4.352 -17.44,-15.726 -11.7,-5.262 1.81,-9.102 2.69,-6.007 5.92,-7.071 6.3,-5.828 3.95,-2.371 2.27,-6.09 2.51,-29.609 -0.31,-10.422 -2.46,-7.238 -20.3,-28.383 -5.93,-1.449 -172.92,0.718 -62.63,-15.207 -8.32,-5.371 -6.77,-19.14 -7.79,-2.899 -42.67,7.149 -61.13,-1.86 -33.05,5.36 -13.92,0.019 -2.46,-3.269 -20.37,-18.86 -4.74,-12.019 -5.05,-25.903 -3.47,-10.41 -13.2,-15.656 -16.09,-7.031 -35.22,-7 -17.1,4.859 -18.67,1.942 -17,-4.614 -34.2,-41.859 9.3,-2.25 8.31,-5.168 3.17,-8.16 -6.16,-11.219 -12.08,-5.633 -32.66,-1.758 -13.89,-4.902 -14.18,-13.98 -9.62,-13.789 -10.39,-11.77 -16.27,-8.031 -18.12,1.551 0.74,30.261 -16.2,6.09 -18.95,-5.699 -48.34,-35.473 -14.62,-4.847 -78.81,-0.93 -10.6,5.879 -8.1,14.82 1.79,0.188 2.28,5.23 1.56,7.68 -0.42,7.461 -2.42,4.968 -38.6,39.692 -39.26,16.98 -5.35,8.719 23.97,17.121 6.04,7.789 -17.59,12.621 -8.12,4.289 -10.48,0.473 -10.55,-3.273 -30.01,-14.629 -22.24,-3.18 -6.5,1.801 -3.81,5.199 -2.62,5.75 -3.12,3.379 -100.11,35.391 -18.16,-0.18 -10.31,-7.442 -14.86,-21.558 -9.37,-7.891 -8.84,-1.687 -32.1,4.23 -11.89,5.18 -6.27,4.187 -4.06,5.09 -1.5,9.512 2.71,7.09 3.51,5.437 0.97,4.321 -3.65,10.332 -2.65,2.019 -5.71,-2.32 -12.54,-2.559 -11.19,-4.652 1.3,-9.547 6.75,-12.113 5.13,-12.367 -0.66,-10.301 -6.86,-44.473 10.7,-5.547 6.59,-7.062 4.16,-9.75 3.41,-13.719 0.64,-23.801 -6.4,-25.051 -10.58,-22.718 -12.21,-16.969 -6.48,-4.422 -15.78,-5.859 -7.71,-5.328 -4.4,-7.063 -16.2,-34.09 -13.24,-18.41 -14.57,-13.797 -33.49,-21.293 -16.43,-6.699 -48.49,-6.699 -11.43,-1.571 -3.43,1.899 2.94,7 6.77,12.621 3.06,2.172 9.91,3.137 3.58,3.671 1.76,7.442 -0.45,6.648 -1.87,7.27 13.07,41.332 0.24,19.988 -14.01,7.309 -33.06,-6.52 -8.83,-10.008 -3.16,-2.582 -3.87,0.063 -7.87,4.566 -3.83,0.461 -9.77,-4.929 -5.79,-4.329 -5.11,-0.3 -7.39,7.019 -4.21,10.559 -0.78,11.941 -2.23,11.539 -8.4,9.512 16.97,13.617 3.31,11.703 -6.73,12.891 -37.88,53.828 -8.48,-4.02 -6.58,-5.941 -6.58,-2.957 -8.35,4.84 -1.29,6.41 -0.28,3.418 0,3.422 -7.04,14.84 -9.57,9.25 -7.95,10.41 -2.29,18.289 -9.12,-7.402 -11.26,-2.379 -22.38,1.5 -22.73,8.101 -3.84,-1.082 -9.15,-6.008 -6.1,-0.531 -15.41,7.731 -3,11.718 1.34,13.571 -2.67,13.121 -8.84,9.5 -10.65,3.687 -11.33,-1.316 -10.78,-5.91 -16.14,-19.223 -9.3,-20.309 -10.7,-17.089 -20.33,-9.95 -48.35,-1.261 -43.58,11.621 0.01,0 35.01,49.25 7.99,11.89 1.62,1.278 4.18,1.84 20.13,4.043 5.81,2.289 3.13,1.871 0.33,2.008 1.03,2.82 2.75,4.91 11.76,5.84 4.78,-0.18 21.62,-7.051 33.66,17.582 55.19,50.278 13.92,7.621 8.81,3.43 5.72,-1.481 24.73,-11.07 18.21,-4.168 18.07,0.449 12.3,3.359 13.32,5.602 16.1,9.258 18.55,5.41 8.95,0.582 5.13,-0.742 3.86,-1.61 1.94,-2.961 3.78,-12.468 3.13,-7.399 5.01,-8.691 7.21,9.351 0.7,16.149 1.21,4.988 1.25,2.524 1.39,0.648 1.05,-0.102 14.04,-5.367 7.15,-0.82 2.42,1.59 1.71,2.258 1.12,2.89 1.12,3.633 0.85,5.328 -0.17,3.422 -0.86,3.168 -2.9,7.691 -2.96,11.27 -2.97,20.641 -1.28,32.32 -0.77,4.578 -0.96,2.691 -1.47,2.278 -1.52,0.812 -5.93,-0.121 -2.33,0.719 -1.41,1.473 -1.82,5.136 -2.73,4.332 -5.41,4.352 -4.48,4.848 -0.74,3.289 0.76,3.523 3.39,6.477 1.83,2.031 1.38,1.058 2.32,0.551 12.76,0.52 2.07,1.582 1.59,2.289 1.49,4.16 1.12,2.57 1.49,1.809 1.72,0.832 1.05,0.301 4.26,2.297 -14.42,31.363 -2.59,10.328 -2.87,6.281 -1.3,2.051 -0.94,0.438 -0.81,0.109 -0.58,-0.008 -1.61,-1.062 -1.5,-0.278 -1.74,0.008 -3.39,1.301 -1.19,2.39 -0.37,1.461 0.33,1.438 2.62,3.371 0.8,0.852 1.03,0.668 2.17,2.359 1.13,2 0.78,2.851 1.89,13.79 0.76,3.539 3.06,4.781 1.08,5.539 0.92,8.281 0.43,26.46 -0.64,4.27 -9.05,9.12 -1.53,2.33 -6.56,13.3 -1.36,6.3 0.05,4.65 1.69,3.3 2.28,2.44 1.71,1.46 5.51,3.47 21.12,61.8 5.18,24.52 1.41,29.73 -0.75,11.99 -2.52,14.27 -20.66,44.97 -31.16,134.01 -12.32,39.73 -3.19,6.33 -10.67,15.43 -10.24,17.76 -14.07,30.23 -0.62,0.97 -0.82,0.91 -0.69,0.36 -0.81,0.31 -0.81,0.1 -1.6,-0.36 -5.28,-0.07 -6.82,12.32 40.7,58.41 5.34,3.61 -2.16,6.52 -0.63,4.3 0.29,4.08 3.78,8.93 3.26,4.76 6.2,6.98 3.67,3.15 2.85,1.16 9.04,0.87 13.24,3.64 2.39,1.24 5.31,4.99 9.11,6.48 2.85,1.02 3.67,-0.24 1.38,-0.46 1.16,-0.59 2.68,-2.98 0.82,-1.19 0.83,-2.06 0.61,-2.37 0.56,-7.29 0.61,-2.06 0.82,-1.48 1.28,-1.3 1.62,-1.16 1.39,-0.64 3.91,-0.63 71.1,44.84 1.74,12.47 0.77,1.88 1.78,3.25 4.04,5.03 2.37,2.02 1.92,1.3 6.27,1.68 28.17,2 1.82,0.67 1.47,1.12 -1.62,0.66 -2.19,1.34 -1.29,1.58 -0.94,1.4 -0.05,2.84 0.73,4.09 7.31,20.73 0.79,7.25 0.14,5.2 -0.58,7 -1.22,4.58 -1.2,3.31 -3.77,6.25 -1.9,3.99 -0.73,2.46 -0.5,2.64 -0.54,4.9 0.54,2.05 0.88,1.59 4.08,2.49 5.79,2.14 1.91,1.7 3.13,3.99 -0.07,4.13 -0.5,2.61 -1.29,1.76 -1.86,1.6 -6.23,3.37 -4.18,3.89 -3.61,4.13 -3.94,3.21 -4.27,2.49 -4.14,1.68 -3.11,1.84 -1.63,1.73 -1.18,2.22 -1.25,4.03 -1.41,2.56 -1.52,1.78 -2.2,2.18 -2.81,4.2 -2.99,7.88 0.47,12.97 0.99,2.23 1.24,0.88 6.48,8.15 5.24,10.03 2.91,3.32 3.07,0.57 3.59,-3.21 6.62,-7.07 3.48,-2.93 2.76,-1.44 3.9,-1.14 15.19,1.41 3.79,-1.31 2.45,-2.77 5.6,-13.49 4.83,-8.04 1.63,-1.81 1.27,-0.58 2.04,0.72 3.04,2.44 32.64,39.21 4.96,3.54 3.08,0.09 3.1,-1.18 1.74,-1.49 2.01,-3.66 -0.65,-1.85 -1.46,-1.47 -2.49,-1.14 -0.62,-2.94 0.62,-2.86 0.17,-3.04 -2.96,-6.61 -0.86,-2.52 -0.31,-1.81 -0.06,-2.67 0.5,-2.72 0.84,-2.11 1.18,-1.99 1.05,-1.02 1.38,-0.6 9.71,5.98 31.29,30.26 -13.7,24.33 -1.98,7.8 -2.73,5.64 -1.52,1.83 -1.26,0.44 -4.89,-1.04 -14.54,7.31 -5.37,6.76 -0.72,1.8 -0.25,1 -0.91,5.96 -0.21,5.48 0.17,2.91 0.41,2.62 0.86,2.4 0.66,1.39 1.11,1.52 1.8,1.47 0.73,3.34 0.23,6.04 -1.08,15.09 0.1,6.73 1.16,4.85 2.23,2.57 4.81,4.14 1.04,1.37 1.2,2.72 1.06,4.39 1.86,9.63 0.48,4.72 -0.18,3.28 -0.72,1.82 -0.71,1.74 -5.92,9.8 -0.73,2.54 -0.26,1.87 0.21,1.03 2.35,7.86 0.46,1.59 0.31,1.7 1.93,30.21 -0.15,7.55 -0.66,4.96 -1.28,1.41 -6.04,5 -0.72,1.83 0.54,1.33 1.91,1.1 8.16,3.11 2.25,1.31 3.47,2.94 0.5,3.34 -0.52,3.5 -3.72,10.21 -1.95,7.06 -1.08,2.88 -1.52,2.45 -1.97,2.14 -4.19,2.97 -2.09,2.77 -3.24,9.22 -1.3,2.53 -0.82,1.25 -1.05,1.31 -1.26,1.06 -9.63,10.74 -5.88,11.27 -31.01,24.51 -4.52,5.92 -2.93,11.07 -2.75,8.37 -2.11,3.52 -2.19,1.98 -8.61,-0.27 -2.19,0.25 -1.6,0.66 -12.71,7.53 -3.08,0.98 -2.38,0.14 -5.32,-0.7 -3.63,0.43 -13.37,4.6 -3.78,2.06 -1.96,1.98 -0.14,1.6 0.2,1.73 1.19,3.18 0.66,1.51 0.73,3.51 -0.11,6.55 -11.26,9.32 -2.9,4.26 -0.25,1.52 0.2,1.61 1.4,4.45 0.84,4.04 -0.83,2 -1.26,1.12 -3.18,0.44 -7.06,2.27 -7.99,4.41 -2.76,2.39 -1.17,2.23 0.66,1.47 0.99,1.45 1.46,0.83 1.59,0.11 3.17,-0.55 2.95,0.05 1.57,0.37 1.58,0.66 1.68,1.09 1.22,1.54 0.76,1.57 1.62,4.68 0.66,1.56 0.87,1.57 1.11,1.6 1.41,3.61 1.38,5.31 1.03,12.72 -0.77,6.02 -1.21,4.34 -1.38,1.65 -11.6,10.81 -1.37,1.01 -1.6,0.58 -1.69,0.09 -1.7,-0.23 -1.91,-0.72 -7.97,-5.65 -1.69,-0.37 -1.71,0.63 -10.1,9.49 -15.14,21.08 -3.1,3.23 -2.86,2.4 -13.28,8.64 -6.18,5.34 -1.96,2.81 -0.6,2.12 1.23,1.14 1.46,0.54 3.16,0.33 1.68,0.69 1.45,1.43 1.41,3.52 -1.06,2.75 -2.42,3.06 -4.81,4.76 -2.32,4.07 -1.42,4.31 -0.19,5.03 0.17,3.77 -0.26,9.88 -0.75,4.29 -0.34,0.52 -10.21,10.7 -1.97,3.94 -0.52,4.18 0.53,2.6 0.98,2.37 1.23,0.76 1.47,-0.38 3.31,-2.76 2.17,-1.41 7.26,-2.7 3.05,-0.3 2.35,1.24 1.2,2.43 0.34,7.13 -1.78,5.95 -5.47,10.89 -2,5.49 -0.62,3.96 5.17,15.9 -0.17,3.71 -1.06,2.71 -1.25,1.1 -1.03,0.68 -1.92,0.49 -2.37,0.3 -3.86,1.61 -5,3.32 -7.25,9.66 -2.02,7.49 0,7.16 1.41,3.98 0.04,19.91 12.71,15.77 3.36,0.97 4.95,0.42 4.54,-2.43 3.5,-1.36 5.65,-0.89 1.2,1.98 -0.37,2.52 -21.71,51.32 -1.39,2.31 -1.59,1.44 -3.06,1.68 -14.17,4.87 -1.6,2.02 0.3,2.65 1.54,2.38 4.23,5.12 2.39,5.32 5.23,18.35 -7.54,16.32 -1.09,5.44 0.64,1.91 3.04,6.94 2.15,6.24 -0.05,3.56 -1.05,2.97 -3.07,2.51 -2.49,1.06 -1.46,0.15 -1.94,-0.03 -2.35,-0.41 -2.26,0.51 -2.59,1.17 -4.88,3.64 -1.61,2.44 -0.37,2.13 0.98,2.48 0.42,1.5 0.88,1.62 2.38,6.04 -0.04,2.24 -0.69,1.75 -4.09,3.18 -2.38,1.43 -5.64,2.68 -17.19,-14.04 -2.66,-5.18 0.69,-1.11 0.8,-0.96 0.72,-1.08 1.6,-1.96 1.03,-0.94 1.49,-2.33 0.71,-2.75 0.53,-5.88 -1.19,-2.98 -20.37,-23.76 -6.66,-5.52 -5.91,-3.3 -52.12,-1.83 -6.46,1.22 -1.81,1.38 -0.25,1.55 0.43,1.79 0.09,1.89 -3.75,21.96 -0.28,4.43 0.28,4.48 0.94,5.47 0.38,5.44 -0.06,5.05 -1.91,9.11 -1.53,15.07 -0.81,2.06 -1.83,2.44 -9.73,7.7 -0.46,0.97 0.21,1.15 0.99,1.74 1.32,1.85 1.75,3.79 0.42,2.07 -0.25,1.75 -1.04,2.46 -3.18,3.75 -2.7,0.83 -2.69,-0.38 -2.77,-1.98 -2.11,-2.04 -3.86,-5.62 -2.01,-3.76 -1.32,-1.91 -1.22,-1.05 -4.36,-1.14 -3.01,-1.24 -2.33,-1.92 -1.32,-2.66 -1.26,-7.31 -1.52,-4.22 -2.54,-3.82 -6.24,-3.4 -4.49,0.64 -5.31,3.21 -1.83,2.83 -0.15,3.41 2.1,3.3 10.08,10.86 1.43,2.03 1.21,2.54 0.63,3.63 0.08,2.27 -1.18,5.87 -0.16,3.51 0.41,3.97 1.3,3.17 6.4,9.32 5.41,6.22 1.21,2.6 0.65,1.99 0.53,2.33 0.43,1.38 -0.02,2.01 -0.59,2.53 -1.27,2.97 -3.76,5.18 -25.04,26.72 -3.53,4.62 -0.73,2 -0.58,2.01 -0.89,9.7 0.42,22.64 -0.27,4.65 -0.37,2.73 -0.92,2.26 -20.61,24.42 -4.67,7.42 -1.92,1.88 -1.46,0.73 -5.77,-3.97 -11.49,-4.94 -3.11,-2.19 -1.99,-2.18 -0.66,-1.01 -14.28,-14.07 -4.07,-6.85 -1.88,-2 -3.23,-1.82 -2.36,1.33 -1.51,1.71 -7.08,15.7 -0.58,2.58 -0.6,4.25 -0.17,5.69 -0.83,4.73 -1.69,1.62 -1.79,-0.01 -0.88,-0.59 -0.78,-0.81 -2.95,-6.98 -2.1,-2.29 -7.68,-3.55 -1.78,-1.79 -0.76,-1.88 -0.86,-3.83 -0.5,-7.1 -0.53,-3.28 -0.65,-2.24 -3.1,-2.87 -4.62,-0.91 -10.18,1.12 -6.4,2.79 -5.62,3.48 -3.05,2.97 -0.56,1.03 -0.46,1.54 0.31,2.25 0.65,2.47 4.72,10.9 0.65,2.16 -0.02,2.42 -0.94,5.68 0.32,1.81 1.21,1.7 3.56,2.36 1.1,1.5 0.1,2.07 -1.51,6.37 -0.15,3.96 0.53,3.05 0.88,2.31 1.1,2.02 1.09,2.59 0.44,1.44 -0.02,1.55 -0.24,2.82 -1.39,5.62 -0.84,5.96 -0.01,1.56 0.54,1.9 1.1,2.1 2.43,3.13 0.98,2.59 -0.02,2.5 -1.49,4.76 -2.36,2.1 -2.13,0.5 -2.45,-1.17 -3.32,-2.84 -6.33,-4.02 -12.24,-4.84 -7.5,-1.61 -19.93,12.62 -3.78,-2.27 -8.72,-2.65 -8.75,0.74 -38.89,18.12 -13.28,0.29 -25.68,-4.04 -26.02,-9.68 -35.09,2.3 -8.69,-2.92 -8.2,-5.38 -7.56,-7.87 -3.91,-6.28 4.9,-14.77 0.68,-2.24 0.22,-0.75 -0.77,-1.9 -0.88,-3.65 -3.55,-6.13 0.02,-4.63 0.46,-3.24 1.35,-1.95 2.58,-2.29 5.82,-1.93 24.41,-3.68 4.03,-2.05 2.47,-2.34 0.92,-4.19 -0.43,-3.88 -2.31,-8.14 -0.2,-4.02 1.36,-2.81 2.68,-0.76 2.57,0.04 2.24,0.76 2.89,1.79 1.67,2.45 1.58,3.83 1.97,8.46 0.77,1.95 0.89,1.39 1.33,1.33 1.67,0.81 2.01,0.41 1.46,-0.05 14,-6.13 2.13,-1.88 1.47,-1.89 0.68,-1.43 -8.03,-44.54 -0.3,-5.41 0.34,-0.68 0.45,-0.52 2.15,-4.47 2.61,-7.71 -13.25,-12.48 -3.13,-0.42 -3.81,0.84 -8.82,9.55 -2.46,1.14 -1.91,0.33 -20.55,-9.29 -7.38,-1.47 -10.22,0.47 -5.82,-1.03 -5.7,-2.06 -10.05,-5.99 -3.68,-3.37 -1.66,-4.06 1.95,-13.58 0.57,-2.47 -0.1,-1.81 -1.01,-1.64 -6.69,-6.29 -2.35,-2.82 -1.37,-2.77 -2.2,-9.51 -1.45,-3.54 -3.23,-5.93 -3.68,-2.83 -4.03,-1.42 -43.19,-0.5 -10.76,1.9 -41.04,-9.08 -2.58,0.37 -5.61,4.33 -10.38,17.74 -14.24,13.54 -2.69,4.19 -0.23,4.26 2.8,3.96 1.56,1.61 1.79,2.71 7.27,7.62 5.93,5.03 2.57,1.67 2.12,2.24 1.72,2.33 2.12,5.03 -0.8,6.67 -7.24,30.15 -1.02,9.31 0.44,5.68 3.02,1.5 2.83,0.41 5.37,0.06 2.68,0.47 3.02,1.47 3.35,2.33 4.13,4.43 1.23,2.19 -0.01,2.75 -1.12,3.39 -1.35,5.83 0.1,5.09 0.77,4.45 1.78,5.09 9.46,20.07 0.33,4.08 -1.68,2.92 -11.29,4.84 -5.82,3.64 -2.46,4.33 0.11,4.62 1.77,4.32 9.81,13.2 3.33,6.7 0.33,4.08 -1.12,3.9 -2.47,3.45 -2.23,1.72 -1.9,0.74 -2.68,-0.12 -3.23,-0.72 -3.01,-1.3 -3.57,-0.58 -3.01,0.74 -3.61,2.15 -3.25,4.33 -2.46,5.23 -3.58,11.14 -0.68,7.3 0.33,7.18 1.66,8.53 0.22,4.57 -0.34,2.59 -0.89,1.32 -1.23,0.74 -1.12,0.14 -1.56,-0.95 -2.11,-2.47 -4.45,-8.05 -1.23,-2.47 -1.11,-1.12 -0.78,-0.32 -1.56,0.32 -0.89,0.94 -0.9,1.56 -1.9,4.42 -2.34,3.39 -9.09,29.12 -6.69,18.18 -9.48,27.77 -0.44,4.54 1.41,82.22 15.12,-5.85 1.26,1.09 1.56,0.58 -0.56,2.24 -5.16,9.93 -2.78,6.78 -0.56,1.84 0.89,12.64 -6.89,10.71 -3.79,24.22 -0.67,2.01 -3.22,3.79 -6.99,1.27 -6.99,-1.27 -3.22,-3.79 -3.63,0.86 -6.4,4.71 -4.88,3.14 1.56,2.49 6.66,8.28 1.99,1.32 3.04,-0.69 3.1,0.23 2.55,1.15 2.11,2.3 1,4.28 0.44,4.51 0.11,16.03 0.56,5.23 0.99,3.85 1.34,2.47 1.66,2.01 3.32,2.99 3.77,1.69 23.65,5.56 36.04,17.1 2.1,0.53 2.11,-0.17 2.21,-0.52 3,-1.54 8.99,-7.34 3.88,-2.5 9.65,-2.99 1.67,-1.21 0.33,-1.55 -0.77,-1.98 -4.31,-6.88 -1.21,-2.87 -0.22,-1.9 2.22,0.01 4.87,2.42 10.44,7.66 12.38,14.74 1.65,3.66 0.22,2.38 -0.35,5.69 0.77,4.83 1.54,2.01 3.1,1.68 22.06,6.49 4.54,0.59 3.88,-0.16 7.76,-2.15 31.84,-0.75 2.33,-0.68 5.1,-1.93 3.32,-0.51 9.2,1.08 3.76,-0.24 27.8,-13.12 6.89,-4.56 4.68,-4.8 1.12,-2.01 1.27,-2.66 2.93,-9.33 1.24,-2.69 4.91,-6.98 4.91,-5.78 16.99,-2.69 11,1.81 43.38,18.84 5.29,5.38 1.86,3.69 -4.25,20.31 -0.46,3.59 0.96,5.69 2.17,6.14 8.63,16.9 1.3,3.74 -0.23,1.95 -0.9,1.55 -1.56,1.59 -2.44,0.91 -12.52,1.46 -2,0.91 -1.01,1 -0.78,1.54 -0.5,2.21 -0.23,2.59 0.42,3.3 1.1,5.33 4.88,15.26 0.85,4.83 -2.47,22.02 0.62,7.16 1.19,2.7 2.21,0.71 6.32,-2.54 4.43,-1.06 2.65,0.07 6.5,3.84 1.55,0.24 1.55,-0.53 1.78,-1.17 2.11,-2.4 3.36,-5.23 1.49,-1.57 1.55,-0.99 1.77,-0.13 11.25,3.65 3.21,0.31 2.43,-0.18 1.45,-0.74 1.22,-0.82 1.9,-2.08 2.1,-1.02 3.33,-0.75 10.21,0.25 13.12,4.71 21.83,6.91 1.54,1.8 1.19,2.77 -3.8,4.33 -1.49,5.45 0.27,7.87 4.94,15.39 5.71,7.81 4.82,4.92 9.57,4.69 7.49,1.97 12.32,5.72 11.77,8.07 4.48,4.3 2.72,4.68 0.22,10.63 -0.86,9.36 -0.72,5.02 -0.61,5.65 -2.58,15.49 16.36,61.31 8.56,13.63 3.88,1.33 8.22,4.05 2.19,0.63 1.88,-0.3 1.88,-1.13 1.68,-1.82 5.48,-8.27 3.68,-4.07 6.45,-5.13 4.65,-2.19 2.69,-0.6 6.17,-0.1 8.14,1.24 42.04,16.94 44.08,26.77 14.03,12.54 8.22,13.96 7.16,15.19 14.83,25.29 1.06,2.43 1.16,3.84 0.83,3.31 4.12,12.19 38.07,43.89 11.55,8.39 1.24,-1.88 0.27,-3.16 -0.28,-3.07 -0.17,-3.31 0.7,-2.58 1.24,-2.39 2.77,-1.51 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7311" /><path
+               id="path3268" /><path
                d="m 5851.13,6346.87 0,0 0.92,-2.88 0.26,-2.58 -0.51,-10.24 -0.7,-5.75 0.34,-5.4 0.91,-6.11 0.37,-0.9 2.09,-3.1 47.81,-49.17 15.51,-10.2 8.43,-2.67 6.15,-5.48 10.38,-3.92 14.42,-1.15 1.18,-8.46 -13.47,-38.3 -0.63,-8.34 2.26,-3.89 25.71,4.71 9.14,-4.14 13.79,-15.54 27.88,-10.46 4.57,-3.53 6.13,-6.38 0.25,-3.79 -0.8,-2.3 -4.18,-4.02 -2.06,-2.39 -0.61,-3.58 -0.09,-3.56 0.79,-7.18 -0.98,-4.39 -1.35,-3.58 -11.76,-11.1 -2.35,-2.92 -2.29,-3.84 -2.28,-7.65 0.43,-6.57 2.25,-9.69 0.23,-5.69 -0.64,-4.26 -1.1,-2.66 -1.26,-2.25 -0.88,-1.12 -1.31,-1.12 -1.22,-0.72 -15.17,-6.23 -1.42,-0.93 -2.67,-2.91 -7.62,-19.81 -6.45,-0.76 -0.74,1.62 -0.72,1.37 -0.2,2.98 -1.89,14.67 -3.73,16.78 -3.79,6.33 -4.19,2.55 -7.74,-1.53 -3.5,0.12 -17.47,4.6 -13.34,6.71 -26.29,8.66 -5.69,-0.41 -3.5,-1.55 -1.55,-2.34 -1.77,-2.07 -2.03,-1.37 -1.96,-0.84 -5.57,-0.58 -7.22,0.36 -3.43,1.8 -2.74,3.38 -1.96,4.2 -4.01,6.64 -3.52,2.23 -3.43,0.74 -6.16,-1.33 -10.18,-4.63 -2.34,-1.5 -1.89,-1.93 -1.33,-2.45 -0.44,-3.25 0.27,-3.16 0.6,-3.02 1.83,-5.65 0.63,-3.3 0.17,-2.88 -0.78,-7.88 -21.52,-1.18 -12.8,5.19 -3.08,3.1 -4.48,6.36 -7.85,6.73 -3.85,4.21 -2.52,1.52 -6.12,-1.98 -15.9,-7.04 -2.43,0.52 -3.07,1.14 -4.32,8.68 -2.46,4 -1.23,1.14 -1.25,-0.36 -0.79,-0.85 -3.55,-2.55 -18.26,-8.34 -4.06,-1.08 -2.77,0.18 -6.18,6.33 -9.07,4.88 -4.92,1.04 -3.79,-0.28 -27.4,-14.85 -2.01,-1.78 -1.87,-2.48 -2,-3.91 -2.67,-1.31 -1.88,-0.4 -23.92,3.41 -2.59,0.84 -4.23,1.95 -12.1,8.24 -1.56,1.32 -0.45,0.47 -0.24,0.56 -0.17,1.14 0.22,1.69 0.93,2.24 5.98,8.29 0.67,1.13 0.75,1.72 -0.2,1.74 0.16,2.66 1.02,2.57 1.45,2.33 1.68,2.05 2.81,2.59 0.04,1.15 -3.85,6.32 -1,2.74 -1.29,6.09 -0.21,3.53 0.54,7.21 1.2,6.87 0.88,3.05 1.33,2.49 1.89,2.04 4.59,2.83 2,1.9 17.21,22.66 -0.42,3.49 -0.07,3.08 -11.76,18.66 -0.16,30.82 2.12,16.4 -0.17,10.22 -1,5.82 -2.02,4.56 0.24,3.18 0.75,2.84 1.25,2.69 1.98,5.76 1.57,1.91 1.74,0.94 5.17,-2.07 29.64,-11.01 6.25,1.11 -0.13,2.24 -0.66,2.18 -0.83,1.71 -2.31,3.44 -1.19,2.35 -0.9,2.72 -0.19,3.27 0.33,3.31 0.66,3.2 5.33,18.59 1.81,1.52 19.54,4.09 5.8,3.88 7.04,7.22 2.52,5.46 1.9,5.12 1.31,6.28 2.17,2.46 2.13,1.31 7.55,0.25 1.73,-0.73 -0.54,-1.59 -0.94,-1.81 -0.29,-2.15 2.27,-4.51 0.9,-2.86 0.2,-10.3 1.09,-2.42 1.8,-2.02 2.31,-1.54 11.34,-4.27 25.59,-0.24 6.65,1.84 3.69,1.75 1.43,2.37 0.67,2.86 3.26,6.95 14.92,14.11 13.56,-7.84 1.89,0.11 2.89,0.9 0.96,3.18 1.37,3.31 1.62,2.81 14.88,16.11 3.55,0.48 2.12,-2.03 2.08,-4.16 3.05,-3.85 11.55,-9.19 1.17,-1.89 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5851.13,6346.87 0,0 0.92,-2.88 0.26,-2.58 -0.51,-10.24 -0.7,-5.75 0.34,-5.4 0.91,-6.11 0.37,-0.9 2.09,-3.1 47.81,-49.17 15.51,-10.2 8.43,-2.67 6.15,-5.48 10.38,-3.92 14.42,-1.15 1.18,-8.46 -13.47,-38.3 -0.63,-8.34 2.26,-3.89 25.71,4.71 9.14,-4.14 13.79,-15.54 27.88,-10.46 4.57,-3.53 6.13,-6.38 0.25,-3.79 -0.8,-2.3 -4.18,-4.02 -2.06,-2.39 -0.61,-3.58 -0.09,-3.56 0.79,-7.18 -0.98,-4.39 -1.35,-3.58 -11.76,-11.1 -2.35,-2.92 -2.29,-3.84 -2.28,-7.65 0.43,-6.57 2.25,-9.69 0.23,-5.69 -0.64,-4.26 -1.1,-2.66 -1.26,-2.25 -0.88,-1.12 -1.31,-1.12 -1.22,-0.72 -15.17,-6.23 -1.42,-0.93 -2.67,-2.91 -7.62,-19.81 -6.45,-0.76 -0.74,1.62 -0.72,1.37 -0.2,2.98 -1.89,14.67 -3.73,16.78 -3.79,6.33 -4.19,2.55 -7.74,-1.53 -3.5,0.12 -17.47,4.6 -13.34,6.71 -26.29,8.66 -5.69,-0.41 -3.5,-1.55 -1.55,-2.34 -1.77,-2.07 -2.03,-1.37 -1.96,-0.84 -5.57,-0.58 -7.22,0.36 -3.43,1.8 -2.74,3.38 -1.96,4.2 -4.01,6.64 -3.52,2.23 -3.43,0.74 -6.16,-1.33 -10.18,-4.63 -2.34,-1.5 -1.89,-1.93 -1.33,-2.45 -0.44,-3.25 0.27,-3.16 0.6,-3.02 1.83,-5.65 0.63,-3.3 0.17,-2.88 -0.78,-7.88 -21.52,-1.18 -12.8,5.19 -3.08,3.1 -4.48,6.36 -7.85,6.73 -3.85,4.21 -2.52,1.52 -6.12,-1.98 -15.9,-7.04 -2.43,0.52 -3.07,1.14 -4.32,8.68 -2.46,4 -1.23,1.14 -1.25,-0.36 -0.79,-0.85 -3.55,-2.55 -18.26,-8.34 -4.06,-1.08 -2.77,0.18 -6.18,6.33 -9.07,4.88 -4.92,1.04 -3.79,-0.28 -27.4,-14.85 -2.01,-1.78 -1.87,-2.48 -2,-3.91 -2.67,-1.31 -1.88,-0.4 -23.92,3.41 -2.59,0.84 -4.23,1.95 -12.1,8.24 -1.56,1.32 -0.45,0.47 -0.24,0.56 -0.17,1.14 0.22,1.69 0.93,2.24 5.98,8.29 0.67,1.13 0.75,1.72 -0.2,1.74 0.16,2.66 1.02,2.57 1.45,2.33 1.68,2.05 2.81,2.59 0.04,1.15 -3.85,6.32 -1,2.74 -1.29,6.09 -0.21,3.53 0.54,7.21 1.2,6.87 0.88,3.05 1.33,2.49 1.89,2.04 4.59,2.83 2,1.9 17.21,22.66 -0.42,3.49 -0.07,3.08 -11.76,18.66 -0.16,30.82 2.12,16.4 -0.17,10.22 -1,5.82 -2.02,4.56 0.24,3.18 0.75,2.84 1.25,2.69 1.98,5.76 1.57,1.91 1.74,0.94 5.17,-2.07 29.64,-11.01 6.25,1.11 -0.13,2.24 -0.66,2.18 -0.83,1.71 -2.31,3.44 -1.19,2.35 -0.9,2.72 -0.19,3.27 0.33,3.31 0.66,3.2 5.33,18.59 1.81,1.52 19.54,4.09 5.8,3.88 7.04,7.22 2.52,5.46 1.9,5.12 1.31,6.28 2.17,2.46 2.13,1.31 7.55,0.25 1.73,-0.73 -0.54,-1.59 -0.94,-1.81 -0.29,-2.15 2.27,-4.51 0.9,-2.86 0.2,-10.3 1.09,-2.42 1.8,-2.02 2.31,-1.54 11.34,-4.27 25.59,-0.24 6.65,1.84 3.69,1.75 1.43,2.37 0.67,2.86 3.26,6.95 14.92,14.11 13.56,-7.84 1.89,0.11 2.89,0.9 0.96,3.18 1.37,3.31 1.62,2.81 14.88,16.11 3.55,0.48 2.12,-2.03 2.08,-4.16 3.05,-3.85 11.55,-9.19 1.17,-1.89 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7313" /><path
+               id="path3270" /><path
                d="m 5617.98,5186.03 0,0 -12.52,2.48 -15.36,14.48 -5.46,3.5 -4.6,1.53 -4.83,-2.05 -3.11,-2.25 -4.15,-4.77 -8.74,-2.09 -10.09,10.91 -15.84,7.06 -8.43,0.96 -10.65,3.37 -9.12,5.65 -8.44,15.91 -19.94,-3.02 -5.67,-9.8 -34.59,-32.06 -12.97,-6.98 -20.76,7.83 -25.71,2.25 -9.89,-6.37 -6.41,-12.14 -4.71,-11 -4.86,-6.12 -8.9,-7.07 -4.88,-1.34 -3.15,0.62 -1.42,2.49 -1.93,2.15 -3.2,0.93 -66.11,-14.94 -9.12,6.01 -50.75,0.45 -4.7,-0.86 -6.1,-2.88 -1.78,-21.56 -0.88,-4.15 -1.91,-5.13 -2.82,-1.8 -51.17,-7.62 -34.16,-18.83 -5.65,-1.41 -21.16,1.41 -10.72,3.79 -6.87,3.61 -5.02,1.41 -1.97,-1.67 -0.96,-2.46 -0.55,-4.68 -1.04,-5.81 -0.94,-3.03 -0.97,-2.35 -1.73,-2.23 -17.93,-16.13 2.27,-51.96 -2.65,-13.33 -2.35,-1.37 -2.19,-1.76 -1.63,-2.09 -3.77,-7.59 -1.64,-2.08 -7.62,-5.86 -3.18,-3.76 -0.4,-3.24 0.57,-3.26 1,-3.15 0.56,-13.07 0.57,-3.14 1.19,-2.42 1.71,-2.15 3.79,-7.83 3.47,-25.21 0.13,-18.01 1,-3.23 2.19,-5.67 3.17,-5.67 5.05,-11.73 1.46,-8.62 0.12,-7.8 -0.71,-6.07 -0.8,-4.12 -0.95,-2.98 -1.41,-2.36 -2.2,-1.71 -2.44,-1.03 -10.13,-1.01 -3.89,-2.53 -4.23,-4.84 -5.86,-12.34 -2.02,-6.88 -0.63,-5.49 0.35,-3.04 0.46,-2.39 0.51,-1.71 0.96,-2.2 1.4,-2.42 2.74,-8.23 1.95,-22.88 14.19,-17.58 3.08,-11.12 3.78,-32.21 -0.29,-3.41 -0.63,-2.9 -0.85,-3 -1.07,-2.78 -2.84,-4.79 -3.99,-5.61 0.69,-8.46 6.62,-2.5 15.23,-3.17 -1.94,-30.42 7.19,-12.93 13.09,-10.39 3.1,-3.81 1.18,-4.67 -0.12,-4.66 2.35,-9.05 2.57,-3.92 3.15,-2.45 29.6,-4.51 1.78,-8.35 -0.87,-2.43 -10.25,-19.85 -2.64,-15.89 0.1,-7.13 1.69,-3.79 11.4,-4.3 3.15,-2.3 2.98,-3.21 3.57,-6.86 0.63,-4.35 -0.28,-3.47 -15.07,-31.34 -4.22,-6.52 -18.93,-25.7 -1.02,-9.19 3.14,-9.45 -12.28,-11.09 -5.8,0.26 -5.56,9.26 -5.4,3.77 -13.4,12.25 -4.21,1.46 -3.15,-0.07 -5.54,-5.76 -6.3,-4.04 -4.21,-1.04 -3.71,-0.02 -37.37,11.32 -5.45,-0.11 -2.34,-1.36 -12.47,-4.26 -23.87,-3.97 -4.47,0.11 -1.93,1.82 -0.32,2.35 -1.6,7.41 -23.4,11.49 -2.94,2.67 -3.56,4.6 -1.17,4.62 -3.48,8.09 -4.31,4.2 -6.41,5.09 -34.9,14.19 -15.79,11.15 -8.25,1.29 -6.25,-1.62 -56.41,-6.34 -8.65,-7.29 -5.08,1.94 -4.94,2.87 -3.05,2.93 -1.84,2.7 -1.08,2.66 -2.08,9.36 -1.09,2.95 -4.5,6.97 -3.99,4.94 -2.37,8.05 -6.58,10.46 -1.28,11.29 -0.5,10.65 -1.81,4.83 -3.33,3.82 -11.14,7.64 -4.19,1.58 -3.28,0.54 -13.88,-3.81 -5.67,-2.56 -5.11,-0.76 -14.06,1.11 -18.31,-1.62 -32.43,3.42 -3.01,-0.91 -4.68,-2.81 -5.68,-5.54 -2.26,-1.66 -2.57,-1.3 -2.8,-0.81 -38.42,0.66 -3.95,1.19 -7.83,3.57 -2.45,1.64 -1.79,1.75 -1.73,3.02 -1.17,2.41 -2.87,7.96 -2.68,12.39 0.48,1.86 1.13,1.85 2.26,0.56 2.67,1.38 0.9,2.3 0.06,4.95 -0.53,6.05 -0.82,5.07 -0.65,3.31 -4.27,14.41 -15.83,25.2 -7.41,7.69 -15.25,5.32 -16.06,9.81 -6.1,7.6 -2.34,5.39 2.75,5.72 2.16,3.55 4,4.64 4.13,1.8 31.04,6.21 17.34,10.61 7.97,7.88 6.07,9.75 5.49,13.9 -41.99,58.32 -20.17,35.36 -37.31,27.56 -18.24,5.58 -64.82,7.57 -29.46,-1.51 -107.98,10.17 -18.72,10.01 -5.89,10.54 -0.26,9.48 0.54,8.3 3.74,21.14 -0.33,4.31 -1.06,3.28 -6.69,8.47 -8.78,16.85 -1.63,4.5 -0.94,3.08 -0.19,3.1 1.24,18.06 -0.77,4.55 -1.48,3.18 -2.3,1.55 -2.41,1.37 -4,4.96 -4.51,7.75 -7.92,19.12 -2.71,9.07 -0.6,6.25 1.12,2.62 1.78,1.86 2.33,1.24 3.01,-0.04 2.71,-0.67 5.23,-2.68 2.6,-0.77 3.32,0.29 2.97,1.69 2.8,3.7 -0.02,4.77 -1.33,5.48 -3.58,9.4 -2.69,4.15 -3.07,2.31 -9.24,0.04 -23.26,9.03 -8.92,8.45 -17.16,-0.76 -3.45,0.75 -5.68,2.13 -15.27,9.68 -5.86,2.44 -4.86,1.32 -62.26,-3.11 -11.11,6.7 -20.6,35.69 -0.48,25.69 -0.78,5.9 -3.12,9.88 -2.13,4.15 -2.1,2.91 -8.29,6.68 -1.54,1.64 -4.43,11.05 -5.74,7.69 -1.35,3.08 -2.83,11.55 -1.7,4.33 -2.14,3.29 -2.18,1.62 -4.88,2.88 -4.36,3.29 -3.72,4.01 -1.55,2.2 -3.62,3.95 -3.59,3.08 -1.02,2.63 -1.07,4.63 -2,13.47 -0.82,3.32 -0.45,0.85 -0.43,5.34 0.99,27.9 -0.35,16.27 1.32,3.19 3.34,3.69 9.2,4.17 2.52,2.01 2.18,2.87 2.23,5.28 2.29,2.98 2.51,2.07 5.22,2.27 1.99,1.74 1.44,2.48 2.22,5.6 1.34,2.27 1.45,1.81 0.93,1.46 0.67,3.47 -0.02,5.46 -2.4,16.85 -2.15,5.3 -2.4,2.3 -11.72,7.56 -1.13,2.68 -0.35,1.54 1.14,10.84 1.91,10.28 3.66,4.68 2.2,1.54 10.13,4.83 1.77,1.99 0.68,2.55 -0.68,1.77 -1.81,0.21 -4.87,-1.51 -3.74,0.63 -3.25,2.14 -4.33,6.32 -2.3,2.56 -17.44,8.24 -1.35,8.42 -0.57,1.77 -1.11,1.99 -9.54,12.53 -1.1,1.9 -0.45,0.97 -0.34,1.03 -0.37,2.26 0.26,2.91 2.5,2.35 4.22,1.71 20.16,-1.92 3.92,0.78 4.46,1.99 9.08,8.26 5.47,7.6 5.29,6.04 0.57,2.89 -0.17,2.93 -0.6,2.97 -0.17,2.87 0.9,2.61 5.68,2.49 38.7,7.02 91.09,2.27 17.57,7.58 13.66,2.42 33.85,-0.02 6.83,0.47 2.39,0.76 2.66,1.45 1.97,1.83 1.6,3.55 0.93,4.86 0.29,9.1 -0.55,4.58 -0.6,2.57 -1.53,1.51 -10.77,7.82 -1.64,1.57 -0.67,1.3 -0.59,2.35 0.66,3.09 1.83,2.98 4.39,2.85 23.61,8.18 14.1,8.56 16.3,14.66 3.38,4.32 3.26,4.78 5.34,10.33 0.83,4.45 -0.17,5.75 -2.76,11.48 -2.76,3.6 -3.12,1.52 -2.96,-0.42 -3.09,0.46 -2.68,1.16 -2.27,1.49 -1.96,1.84 -1.54,1.97 -1.67,2.89 -2.48,5.36 -0.1,3.48 0.83,4.54 5.34,13.58 3.39,3.97 2.16,2.13 13.81,6.63 9.58,2.15 4.2,2.62 1.74,2.09 1.3,2.6 0.87,3.01 0.44,3.24 -0.2,10.43 -0.64,3.95 -1.17,3.85 -3.19,4.16 -1.91,0.29 -1.47,-0.61 -0.54,-0.94 -1.38,-3.37 -1.28,-2.17 -1.44,-1.74 -1.84,0.15 -0.7,2.46 -0.79,5.49 0.07,8.52 -1.15,3.19 -3.32,1.23 -5.35,-1.71 -2.34,0.57 -1.75,1.85 -3.34,6.06 -2.82,2.27 -4.36,4.37 -8.87,13.38 -0.5,2.52 1,2.27 3.5,4.58 7.33,6.51 1.09,2.62 -0.08,3.07 -2.34,4.08 -2.07,2.24 -1,1.7 -0.7,2.39 -0.39,2.58 -0.6,2.34 -0.77,1.33 -1.53,1.65 -4.76,2.8 -5.45,1.95 -2.04,1.24 -0.9,1.76 -0.72,3.2 -0.68,5.33 -0.59,2.4 -0.07,2.41 1.44,1.42 4.67,3.01 7.14,2.9 19.04,3.01 11.32,3.51 1.94,2.13 1.53,3.12 0.72,7.01 0.93,4.25 0.56,4.07 -2.15,4.8 -2.21,3.5 -20.45,16.22 -9.04,2.39 -2.46,1.14 -3.8,2.48 -3.25,3.07 -50.5,63.9 0.63,11.87 0.52,4.1 1.17,3.53 1.3,2.28 0.6,1.4 0.38,1.51 0.21,4.03 0.66,2.66 1.09,2.56 1.63,2.23 2.05,1.87 4.7,2.68 2.82,0.94 3.04,0.6 3.16,-0.02 12.6,-2.53 3.05,0.25 1.86,1.26 -1.61,4.9 -3.88,7.03 -19.66,29.74 -1.84,2.02 -2.05,1.76 -3.47,4.02 -1.54,2.28 -1.72,3.87 -1.61,5.25 -2.06,10.18 -0.57,5.53 -0.05,17.46 0.33,3.05 0.77,2.9 1.3,2.51 1.51,2.4 10.93,12.63 3.24,4.49 1.29,2.57 0.87,2.9 -0.72,3.43 -2.41,3.33 -6.9,2.91 -4.14,0.35 -3.44,-0.9 -2.27,-1.5 -7.46,-7.62 -2.39,-1.1 -3.82,1.34 -5.82,5.71 -24.57,34.89 -26.9,50.44 -7.21,14.19 -5.65,3.77 -4.78,2.41 -7.12,-0.18 -3.61,2.18 -3.48,4.77 -3.56,12.85 -1.12,6.96 -0.84,8.41 -1.53,2.66 -8.94,8.69 -3.12,3.61 -7.54,17.24 -3.05,4.75 -0.99,2.14 -0.81,3.17 -0.19,3.33 0.34,3.29 1.64,9.96 -0.08,3.27 -0.19,3.28 -0.59,3.06 -1.61,5.71 -0.29,3.33 0.64,3.98 1.64,5.33 0.12,3.86 -1.61,5.68 2.21,3.71 22.27,9.41 31.67,3.18 28.99,-0.71 8.96,2.19 10.09,5.62 18.42,6.45 12.58,7.1 6.33,9.03 12.45,10.38 1.51,2.02 0.87,2.36 0.27,1.82 -0.05,5.57 0.12,3.2 0.43,3.32 0.64,3.24 0.96,2.84 0.88,2.21 0.7,1.17 0.49,0.85 1.22,1.21 8.07,3.74 13.2,1.72 11.07,-0.57 20.41,-4.71 12.29,-6.43 5.24,-0.77 39.36,4.14 32.64,-5.13 2.35,-1.6 1.94,-1.95 1.73,-2.14 2.14,-1.6 8.56,-3.21 2.07,-1.84 1.43,-2.28 1.03,-2.73 1.32,-2.2 1.41,-1.86 1.6,-0.98 1.9,-0.81 3.23,0.28 4.13,1.51 5.58,5.24 3.88,2.59 3.83,1.22 5.32,-2.19 13.85,1.13 40.34,18.87 23.35,7.11 2.39,1.4 37.73,38.74 6,1.5 12.68,1.1 1.22,0.91 1.19,1.77 -1.25,5.94 -1.86,5.46 -1.14,6.05 -0.33,3.39 -0.25,7.1 2.36,22.06 0.52,3.09 2.97,10.38 1.87,3.09 3.46,3.34 6.7,1.9 3.76,-0.47 5.6,-2.19 8.73,0.43 6.48,5.09 11.72,36.99 29.41,9.36 6.96,-4.27 0.52,-7.66 0.16,-2.47 -3.45,-10.74 -5.34,-5.98 9.36,-4.43 22.25,-0.1 7.94,-5.4 5.21,-13.91 1.44,-10.59 3.65,-6.54 11.8,-1.68 6.67,2.61 16.83,10.54 10.31,2.7 21.6,-30.3 9.7,-7.22 21.07,-0.15 8.38,-4.5 -3.1,-13.02 -7.54,-12.44 -0.88,-4.93 44.77,-27.74 6.91,-2.19 12.08,-0.89 9.21,-3.25 18.8,-10.14 11.61,-1.93 9.94,4.58 16.85,0.13 47.01,7.99 2.74,-0.51 2.57,-1.5 4.59,-4.81 2.28,-4.39 1.51,-3.39 -0.18,-12.68 9.96,-0.83 6.98,0.65 22.77,8.08 2.91,0.48 3.18,-0.9 8.31,-3.78 7.85,-1.78 3.65,-4.5 4.01,-7.76 14.96,-42 0.85,-7.24 -2.37,-12.4 -21.13,-19.37 -1.21,-3.36 -0.37,-4.16 1.97,-8.12 2.07,-4.34 2.36,-3.41 2.74,-2.81 1.43,-3.91 0.36,-3.21 -2.36,-3.56 -6.19,-6.84 -2.74,-4.52 -0.48,-3.28 0.37,-3.72 2.18,-4.97 2.17,-3.19 3.79,-4.98 1.62,-3.47 1.47,-4.89 1.71,-7.55 1.95,-3.86 2.22,-2.6 6.62,-4.95 2.1,-2.41 1.72,-3.29 0.52,-9.24 -1.21,-10.36 -5.76,-21.68 -3.71,-8.66 -3.23,-5.24 -6.73,-4.61 -5.84,-1.87 -13.14,0.22 -2.91,-0.67 -1.61,-6.46 -1.09,-11.13 -0.09,-26.6 -0.88,-11.27 -1.16,-7.24 -16.78,-28.54 -0.54,-2.3 0.52,-2.19 4.17,-1.38 3.39,0.21 6.56,1.58 6.61,0.61 3.08,-0.62 1.86,-1.56 0.74,-2.41 -2.35,-4.13 -1.98,-2.85 -2.21,-2.35 -3.08,-4.45 -0.69,-3.31 -0.03,-4.17 1.4,-5.61 1.41,-3.34 2.43,-2.6 2.08,-1.69 8.73,-2.04 9.28,2.2 5.07,2.75 1.9,1.58 1.84,2.1 1.59,2.2 1.47,2.46 0.92,2.97 1.13,10.1 0.82,3 1.58,2.29 2.26,1.31 3.47,0.04 3.86,-1.44 5.23,-3.91 3.9,-4.81 10.86,-16.58 4.07,-3.16 3.31,-0.8 2.25,1.4 2.5,0.75 2.73,0.12 2.76,-0.45 2.72,0.55 2.59,0.99 4.71,2.89 1.91,-0.26 0.92,-1.8 -2.65,-6.54 -1.47,-4.7 0.04,-7.72 1.23,-8.63 -0.53,-4.61 -0.68,-3.54 -7.15,-14.29 -5.45,-17.17 -3.71,-6.67 -7.19,-4.99 -1.04,-2.01 -0.3,-2.63 1.64,-3.72 1.36,-2.02 3.25,-4.2 1.27,-2.47 0.31,-4.48 -0.58,-5.84 -4,-15.09 -2.46,-6.5 -7.43,-15.65 -0.83,-2.63 -0.07,-3.34 1.59,-4.68 -0.15,-3.72 -1.3,-4.2 -0.86,-4.3 1.74,-8.27 1.38,-4.83 1.22,-3.63 0.47,-3.44 -0.65,-4.26 -7.89,-15.17 -1.65,-5.75 -0.6,-3.13 -1.63,-6.29 -4.05,-11.32 -0.82,-2.92 -0.38,-5.8 0.68,-8.17 2.66,-16.95 3.97,-6.02 3.84,-2.99 6.69,-0.34 2.65,-2.3 2.27,-3.47 2.61,-6.1 4.17,-5.57 1.77,-1.59 -0.9,-3.61 -0.96,-2.28 -14.92,-17.19 -7.65,-28.38 -4.72,-8.44 -1.11,-3.73 -0.3,-2.9 6.6,-17.23 6.73,-12.92 2.25,-2.78 18.86,-17.09 5.22,-14.59 2.62,-3.79 2.99,-2.69 13.99,-6.19 13.36,-13.3 45.27,-55.84 2.09,-7.5 0.34,-2.81 0.17,-3.59 0.9,-5.57 4.03,-4.25 6.1,-5.27 21.4,-13.25 8.15,-7.1 3.37,-1.4 4.3,-0.72 8.17,0.68 4.09,1.52 2.66,2.25 2.08,5.57 1.49,2.43 1.95,1.59 2.74,0.6 3.48,-1.57 4.13,-3.02 14.71,-17.78 33.39,-23.57 12.15,-6.29 32,-5.45 9.1,9.96 8.45,6.06 8.14,4.27 2.9,3.92 1.31,3.72 0.05,3.26 0.82,2.72 4.24,0.56 3.95,-0.15 27.33,-14.28 63.31,-34.8 7.67,-1.62 26.5,-1.66 10.72,-6.74 3.9,-7.08 6.19,-17.19 3.53,-2.11 5.51,-1.06 31.61,1.29 14.2,-1.79 7.66,-3.18 8.73,-7.08 4.29,-5.44 3.32,-6.06 5.3,-4.93 40.15,-25 12.98,-4.29 45.19,8.02 4.96,-0.76 6.57,-7.57 3.7,-2.9 5.27,-2.3 2.72,4.94 4.82,11.17 3.97,3.51 3.69,0.96 23.07,-0.33 13.34,-4.88 -5.16,-14.22 -22.09,-27.99 -19.02,-34.57 -3.41,-7.92 -0.52,-7.86 2.22,-29.47 1.65,-8.23 4.66,-12.04 7.38,-10.84 5.65,-12.38 -1.48,-13.43 -17.77,-27.46 -39.6,-34.97 -5.36,-6 -12.82,-26.71 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5617.98,5186.03 0,0 -12.52,2.48 -15.36,14.48 -5.46,3.5 -4.6,1.53 -4.83,-2.05 -3.11,-2.25 -4.15,-4.77 -8.74,-2.09 -10.09,10.91 -15.84,7.06 -8.43,0.96 -10.65,3.37 -9.12,5.65 -8.44,15.91 -19.94,-3.02 -5.67,-9.8 -34.59,-32.06 -12.97,-6.98 -20.76,7.83 -25.71,2.25 -9.89,-6.37 -6.41,-12.14 -4.71,-11 -4.86,-6.12 -8.9,-7.07 -4.88,-1.34 -3.15,0.62 -1.42,2.49 -1.93,2.15 -3.2,0.93 -66.11,-14.94 -9.12,6.01 -50.75,0.45 -4.7,-0.86 -6.1,-2.88 -1.78,-21.56 -0.88,-4.15 -1.91,-5.13 -2.82,-1.8 -51.17,-7.62 -34.16,-18.83 -5.65,-1.41 -21.16,1.41 -10.72,3.79 -6.87,3.61 -5.02,1.41 -1.97,-1.67 -0.96,-2.46 -0.55,-4.68 -1.04,-5.81 -0.94,-3.03 -0.97,-2.35 -1.73,-2.23 -17.93,-16.13 2.27,-51.96 -2.65,-13.33 -2.35,-1.37 -2.19,-1.76 -1.63,-2.09 -3.77,-7.59 -1.64,-2.08 -7.62,-5.86 -3.18,-3.76 -0.4,-3.24 0.57,-3.26 1,-3.15 0.56,-13.07 0.57,-3.14 1.19,-2.42 1.71,-2.15 3.79,-7.83 3.47,-25.21 0.13,-18.01 1,-3.23 2.19,-5.67 3.17,-5.67 5.05,-11.73 1.46,-8.62 0.12,-7.8 -0.71,-6.07 -0.8,-4.12 -0.95,-2.98 -1.41,-2.36 -2.2,-1.71 -2.44,-1.03 -10.13,-1.01 -3.89,-2.53 -4.23,-4.84 -5.86,-12.34 -2.02,-6.88 -0.63,-5.49 0.35,-3.04 0.46,-2.39 0.51,-1.71 0.96,-2.2 1.4,-2.42 2.74,-8.23 1.95,-22.88 14.19,-17.58 3.08,-11.12 3.78,-32.21 -0.29,-3.41 -0.63,-2.9 -0.85,-3 -1.07,-2.78 -2.84,-4.79 -3.99,-5.61 0.69,-8.46 6.62,-2.5 15.23,-3.17 -1.94,-30.42 7.19,-12.93 13.09,-10.39 3.1,-3.81 1.18,-4.67 -0.12,-4.66 2.35,-9.05 2.57,-3.92 3.15,-2.45 29.6,-4.51 1.78,-8.35 -0.87,-2.43 -10.25,-19.85 -2.64,-15.89 0.1,-7.13 1.69,-3.79 11.4,-4.3 3.15,-2.3 2.98,-3.21 3.57,-6.86 0.63,-4.35 -0.28,-3.47 -15.07,-31.34 -4.22,-6.52 -18.93,-25.7 -1.02,-9.19 3.14,-9.45 -12.28,-11.09 -5.8,0.26 -5.56,9.26 -5.4,3.77 -13.4,12.25 -4.21,1.46 -3.15,-0.07 -5.54,-5.76 -6.3,-4.04 -4.21,-1.04 -3.71,-0.02 -37.37,11.32 -5.45,-0.11 -2.34,-1.36 -12.47,-4.26 -23.87,-3.97 -4.47,0.11 -1.93,1.82 -0.32,2.35 -1.6,7.41 -23.4,11.49 -2.94,2.67 -3.56,4.6 -1.17,4.62 -3.48,8.09 -4.31,4.2 -6.41,5.09 -34.9,14.19 -15.79,11.15 -8.25,1.29 -6.25,-1.62 -56.41,-6.34 -8.65,-7.29 -5.08,1.94 -4.94,2.87 -3.05,2.93 -1.84,2.7 -1.08,2.66 -2.08,9.36 -1.09,2.95 -4.5,6.97 -3.99,4.94 -2.37,8.05 -6.58,10.46 -1.28,11.29 -0.5,10.65 -1.81,4.83 -3.33,3.82 -11.14,7.64 -4.19,1.58 -3.28,0.54 -13.88,-3.81 -5.67,-2.56 -5.11,-0.76 -14.06,1.11 -18.31,-1.62 -32.43,3.42 -3.01,-0.91 -4.68,-2.81 -5.68,-5.54 -2.26,-1.66 -2.57,-1.3 -2.8,-0.81 -38.42,0.66 -3.95,1.19 -7.83,3.57 -2.45,1.64 -1.79,1.75 -1.73,3.02 -1.17,2.41 -2.87,7.96 -2.68,12.39 0.48,1.86 1.13,1.85 2.26,0.56 2.67,1.38 0.9,2.3 0.06,4.95 -0.53,6.05 -0.82,5.07 -0.65,3.31 -4.27,14.41 -15.83,25.2 -7.41,7.69 -15.25,5.32 -16.06,9.81 -6.1,7.6 -2.34,5.39 2.75,5.72 2.16,3.55 4,4.64 4.13,1.8 31.04,6.21 17.34,10.61 7.97,7.88 6.07,9.75 5.49,13.9 -41.99,58.32 -20.17,35.36 -37.31,27.56 -18.24,5.58 -64.82,7.57 -29.46,-1.51 -107.98,10.17 -18.72,10.01 -5.89,10.54 -0.26,9.48 0.54,8.3 3.74,21.14 -0.33,4.31 -1.06,3.28 -6.69,8.47 -8.78,16.85 -1.63,4.5 -0.94,3.08 -0.19,3.1 1.24,18.06 -0.77,4.55 -1.48,3.18 -2.3,1.55 -2.41,1.37 -4,4.96 -4.51,7.75 -7.92,19.12 -2.71,9.07 -0.6,6.25 1.12,2.62 1.78,1.86 2.33,1.24 3.01,-0.04 2.71,-0.67 5.23,-2.68 2.6,-0.77 3.32,0.29 2.97,1.69 2.8,3.7 -0.02,4.77 -1.33,5.48 -3.58,9.4 -2.69,4.15 -3.07,2.31 -9.24,0.04 -23.26,9.03 -8.92,8.45 -17.16,-0.76 -3.45,0.75 -5.68,2.13 -15.27,9.68 -5.86,2.44 -4.86,1.32 -62.26,-3.11 -11.11,6.7 -20.6,35.69 -0.48,25.69 -0.78,5.9 -3.12,9.88 -2.13,4.15 -2.1,2.91 -8.29,6.68 -1.54,1.64 -4.43,11.05 -5.74,7.69 -1.35,3.08 -2.83,11.55 -1.7,4.33 -2.14,3.29 -2.18,1.62 -4.88,2.88 -4.36,3.29 -3.72,4.01 -1.55,2.2 -3.62,3.95 -3.59,3.08 -1.02,2.63 -1.07,4.63 -2,13.47 -0.82,3.32 -0.45,0.85 -0.43,5.34 0.99,27.9 -0.35,16.27 1.32,3.19 3.34,3.69 9.2,4.17 2.52,2.01 2.18,2.87 2.23,5.28 2.29,2.98 2.51,2.07 5.22,2.27 1.99,1.74 1.44,2.48 2.22,5.6 1.34,2.27 1.45,1.81 0.93,1.46 0.67,3.47 -0.02,5.46 -2.4,16.85 -2.15,5.3 -2.4,2.3 -11.72,7.56 -1.13,2.68 -0.35,1.54 1.14,10.84 1.91,10.28 3.66,4.68 2.2,1.54 10.13,4.83 1.77,1.99 0.68,2.55 -0.68,1.77 -1.81,0.21 -4.87,-1.51 -3.74,0.63 -3.25,2.14 -4.33,6.32 -2.3,2.56 -17.44,8.24 -1.35,8.42 -0.57,1.77 -1.11,1.99 -9.54,12.53 -1.1,1.9 -0.45,0.97 -0.34,1.03 -0.37,2.26 0.26,2.91 2.5,2.35 4.22,1.71 20.16,-1.92 3.92,0.78 4.46,1.99 9.08,8.26 5.47,7.6 5.29,6.04 0.57,2.89 -0.17,2.93 -0.6,2.97 -0.17,2.87 0.9,2.61 5.68,2.49 38.7,7.02 91.09,2.27 17.57,7.58 13.66,2.42 33.85,-0.02 6.83,0.47 2.39,0.76 2.66,1.45 1.97,1.83 1.6,3.55 0.93,4.86 0.29,9.1 -0.55,4.58 -0.6,2.57 -1.53,1.51 -10.77,7.82 -1.64,1.57 -0.67,1.3 -0.59,2.35 0.66,3.09 1.83,2.98 4.39,2.85 23.61,8.18 14.1,8.56 16.3,14.66 3.38,4.32 3.26,4.78 5.34,10.33 0.83,4.45 -0.17,5.75 -2.76,11.48 -2.76,3.6 -3.12,1.52 -2.96,-0.42 -3.09,0.46 -2.68,1.16 -2.27,1.49 -1.96,1.84 -1.54,1.97 -1.67,2.89 -2.48,5.36 -0.1,3.48 0.83,4.54 5.34,13.58 3.39,3.97 2.16,2.13 13.81,6.63 9.58,2.15 4.2,2.62 1.74,2.09 1.3,2.6 0.87,3.01 0.44,3.24 -0.2,10.43 -0.64,3.95 -1.17,3.85 -3.19,4.16 -1.91,0.29 -1.47,-0.61 -0.54,-0.94 -1.38,-3.37 -1.28,-2.17 -1.44,-1.74 -1.84,0.15 -0.7,2.46 -0.79,5.49 0.07,8.52 -1.15,3.19 -3.32,1.23 -5.35,-1.71 -2.34,0.57 -1.75,1.85 -3.34,6.06 -2.82,2.27 -4.36,4.37 -8.87,13.38 -0.5,2.52 1,2.27 3.5,4.58 7.33,6.51 1.09,2.62 -0.08,3.07 -2.34,4.08 -2.07,2.24 -1,1.7 -0.7,2.39 -0.39,2.58 -0.6,2.34 -0.77,1.33 -1.53,1.65 -4.76,2.8 -5.45,1.95 -2.04,1.24 -0.9,1.76 -0.72,3.2 -0.68,5.33 -0.59,2.4 -0.07,2.41 1.44,1.42 4.67,3.01 7.14,2.9 19.04,3.01 11.32,3.51 1.94,2.13 1.53,3.12 0.72,7.01 0.93,4.25 0.56,4.07 -2.15,4.8 -2.21,3.5 -20.45,16.22 -9.04,2.39 -2.46,1.14 -3.8,2.48 -3.25,3.07 -50.5,63.9 0.63,11.87 0.52,4.1 1.17,3.53 1.3,2.28 0.6,1.4 0.38,1.51 0.21,4.03 0.66,2.66 1.09,2.56 1.63,2.23 2.05,1.87 4.7,2.68 2.82,0.94 3.04,0.6 3.16,-0.02 12.6,-2.53 3.05,0.25 1.86,1.26 -1.61,4.9 -3.88,7.03 -19.66,29.74 -1.84,2.02 -2.05,1.76 -3.47,4.02 -1.54,2.28 -1.72,3.87 -1.61,5.25 -2.06,10.18 -0.57,5.53 -0.05,17.46 0.33,3.05 0.77,2.9 1.3,2.51 1.51,2.4 10.93,12.63 3.24,4.49 1.29,2.57 0.87,2.9 -0.72,3.43 -2.41,3.33 -6.9,2.91 -4.14,0.35 -3.44,-0.9 -2.27,-1.5 -7.46,-7.62 -2.39,-1.1 -3.82,1.34 -5.82,5.71 -24.57,34.89 -26.9,50.44 -7.21,14.19 -5.65,3.77 -4.78,2.41 -7.12,-0.18 -3.61,2.18 -3.48,4.77 -3.56,12.85 -1.12,6.96 -0.84,8.41 -1.53,2.66 -8.94,8.69 -3.12,3.61 -7.54,17.24 -3.05,4.75 -0.99,2.14 -0.81,3.17 -0.19,3.33 0.34,3.29 1.64,9.96 -0.08,3.27 -0.19,3.28 -0.59,3.06 -1.61,5.71 -0.29,3.33 0.64,3.98 1.64,5.33 0.12,3.86 -1.61,5.68 2.21,3.71 22.27,9.41 31.67,3.18 28.99,-0.71 8.96,2.19 10.09,5.62 18.42,6.45 12.58,7.1 6.33,9.03 12.45,10.38 1.51,2.02 0.87,2.36 0.27,1.82 -0.05,5.57 0.12,3.2 0.43,3.32 0.64,3.24 0.96,2.84 0.88,2.21 0.7,1.17 0.49,0.85 1.22,1.21 8.07,3.74 13.2,1.72 11.07,-0.57 20.41,-4.71 12.29,-6.43 5.24,-0.77 39.36,4.14 32.64,-5.13 2.35,-1.6 1.94,-1.95 1.73,-2.14 2.14,-1.6 8.56,-3.21 2.07,-1.84 1.43,-2.28 1.03,-2.73 1.32,-2.2 1.41,-1.86 1.6,-0.98 1.9,-0.81 3.23,0.28 4.13,1.51 5.58,5.24 3.88,2.59 3.83,1.22 5.32,-2.19 13.85,1.13 40.34,18.87 23.35,7.11 2.39,1.4 37.73,38.74 6,1.5 12.68,1.1 1.22,0.91 1.19,1.77 -1.25,5.94 -1.86,5.46 -1.14,6.05 -0.33,3.39 -0.25,7.1 2.36,22.06 0.52,3.09 2.97,10.38 1.87,3.09 3.46,3.34 6.7,1.9 3.76,-0.47 5.6,-2.19 8.73,0.43 6.48,5.09 11.72,36.99 29.41,9.36 6.96,-4.27 0.52,-7.66 0.16,-2.47 -3.45,-10.74 -5.34,-5.98 9.36,-4.43 22.25,-0.1 7.94,-5.4 5.21,-13.91 1.44,-10.59 3.65,-6.54 11.8,-1.68 6.67,2.61 16.83,10.54 10.31,2.7 21.6,-30.3 9.7,-7.22 21.07,-0.15 8.38,-4.5 -3.1,-13.02 -7.54,-12.44 -0.88,-4.93 44.77,-27.74 6.91,-2.19 12.08,-0.89 9.21,-3.25 18.8,-10.14 11.61,-1.93 9.94,4.58 16.85,0.13 47.01,7.99 2.74,-0.51 2.57,-1.5 4.59,-4.81 2.28,-4.39 1.51,-3.39 -0.18,-12.68 9.96,-0.83 6.98,0.65 22.77,8.08 2.91,0.48 3.18,-0.9 8.31,-3.78 7.85,-1.78 3.65,-4.5 4.01,-7.76 14.96,-42 0.85,-7.24 -2.37,-12.4 -21.13,-19.37 -1.21,-3.36 -0.37,-4.16 1.97,-8.12 2.07,-4.34 2.36,-3.41 2.74,-2.81 1.43,-3.91 0.36,-3.21 -2.36,-3.56 -6.19,-6.84 -2.74,-4.52 -0.48,-3.28 0.37,-3.72 2.18,-4.97 2.17,-3.19 3.79,-4.98 1.62,-3.47 1.47,-4.89 1.71,-7.55 1.95,-3.86 2.22,-2.6 6.62,-4.95 2.1,-2.41 1.72,-3.29 0.52,-9.24 -1.21,-10.36 -5.76,-21.68 -3.71,-8.66 -3.23,-5.24 -6.73,-4.61 -5.84,-1.87 -13.14,0.22 -2.91,-0.67 -1.61,-6.46 -1.09,-11.13 -0.09,-26.6 -0.88,-11.27 -1.16,-7.24 -16.78,-28.54 -0.54,-2.3 0.52,-2.19 4.17,-1.38 3.39,0.21 6.56,1.58 6.61,0.61 3.08,-0.62 1.86,-1.56 0.74,-2.41 -2.35,-4.13 -1.98,-2.85 -2.21,-2.35 -3.08,-4.45 -0.69,-3.31 -0.03,-4.17 1.4,-5.61 1.41,-3.34 2.43,-2.6 2.08,-1.69 8.73,-2.04 9.28,2.2 5.07,2.75 1.9,1.58 1.84,2.1 1.59,2.2 1.47,2.46 0.92,2.97 1.13,10.1 0.82,3 1.58,2.29 2.26,1.31 3.47,0.04 3.86,-1.44 5.23,-3.91 3.9,-4.81 10.86,-16.58 4.07,-3.16 3.31,-0.8 2.25,1.4 2.5,0.75 2.73,0.12 2.76,-0.45 2.72,0.55 2.59,0.99 4.71,2.89 1.91,-0.26 0.92,-1.8 -2.65,-6.54 -1.47,-4.7 0.04,-7.72 1.23,-8.63 -0.53,-4.61 -0.68,-3.54 -7.15,-14.29 -5.45,-17.17 -3.71,-6.67 -7.19,-4.99 -1.04,-2.01 -0.3,-2.63 1.64,-3.72 1.36,-2.02 3.25,-4.2 1.27,-2.47 0.31,-4.48 -0.58,-5.84 -4,-15.09 -2.46,-6.5 -7.43,-15.65 -0.83,-2.63 -0.07,-3.34 1.59,-4.68 -0.15,-3.72 -1.3,-4.2 -0.86,-4.3 1.74,-8.27 1.38,-4.83 1.22,-3.63 0.47,-3.44 -0.65,-4.26 -7.89,-15.17 -1.65,-5.75 -0.6,-3.13 -1.63,-6.29 -4.05,-11.32 -0.82,-2.92 -0.38,-5.8 0.68,-8.17 2.66,-16.95 3.97,-6.02 3.84,-2.99 6.69,-0.34 2.65,-2.3 2.27,-3.47 2.61,-6.1 4.17,-5.57 1.77,-1.59 -0.9,-3.61 -0.96,-2.28 -14.92,-17.19 -7.65,-28.38 -4.72,-8.44 -1.11,-3.73 -0.3,-2.9 6.6,-17.23 6.73,-12.92 2.25,-2.78 18.86,-17.09 5.22,-14.59 2.62,-3.79 2.99,-2.69 13.99,-6.19 13.36,-13.3 45.27,-55.84 2.09,-7.5 0.34,-2.81 0.17,-3.59 0.9,-5.57 4.03,-4.25 6.1,-5.27 21.4,-13.25 8.15,-7.1 3.37,-1.4 4.3,-0.72 8.17,0.68 4.09,1.52 2.66,2.25 2.08,5.57 1.49,2.43 1.95,1.59 2.74,0.6 3.48,-1.57 4.13,-3.02 14.71,-17.78 33.39,-23.57 12.15,-6.29 32,-5.45 9.1,9.96 8.45,6.06 8.14,4.27 2.9,3.92 1.31,3.72 0.05,3.26 0.82,2.72 4.24,0.56 3.95,-0.15 27.33,-14.28 63.31,-34.8 7.67,-1.62 26.5,-1.66 10.72,-6.74 3.9,-7.08 6.19,-17.19 3.53,-2.11 5.51,-1.06 31.61,1.29 14.2,-1.79 7.66,-3.18 8.73,-7.08 4.29,-5.44 3.32,-6.06 5.3,-4.93 40.15,-25 12.98,-4.29 45.19,8.02 4.96,-0.76 6.57,-7.57 3.7,-2.9 5.27,-2.3 2.72,4.94 4.82,11.17 3.97,3.51 3.69,0.96 23.07,-0.33 13.34,-4.88 -5.16,-14.22 -22.09,-27.99 -19.02,-34.57 -3.41,-7.92 -0.52,-7.86 2.22,-29.47 1.65,-8.23 4.66,-12.04 7.38,-10.84 5.65,-12.38 -1.48,-13.43 -17.77,-27.46 -39.6,-34.97 -5.36,-6 -12.82,-26.71 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7315" /><path
+               id="path3272" /><path
                d="m 5549.12,5207.77 0,0 10.09,-10.91 8.74,2.09 4.15,4.77 3.11,2.25 4.83,2.05 4.6,-1.53 5.46,-3.5 15.36,-14.48 12.52,-2.48 8.11,-2.6 20.68,-22.75 9.92,-6.01 5.49,-1.82 3.16,1.33 1.94,1.84 2.3,1.22 2.58,0.09 2.54,-1.24 9.4,-7.42 8.8,-5 2.31,-2.89 1.89,-4.79 -0.93,-8.24 -1.02,-4.72 -1.29,-3.88 0.27,-6.64 7.33,-9.35 15.01,-7.96 2.78,-4.62 2.77,-6.87 4.67,-15.58 1.76,-8.08 0.47,-6.25 -1.87,-4.98 -2.36,-2.73 -5.2,-3.41 -2.06,-1.7 -1.39,-2.16 -1.06,-2.19 2.44,-6.89 4.44,-3.32 1.84,-9.52 -1.02,-12.27 1.41,-15.85 -2.79,-11.55 -1.43,-3.31 -1.5,-2.16 -7.45,-7.8 -1.38,-2.32 -0.71,-2.69 0.2,-3.45 0.74,-3.62 1.22,-4.34 1.38,-3.29 2.83,-5.92 2.03,-1.55 2.56,-1.29 3.84,6.61 3.37,3.54 3,4.29 7.76,-0.74 2.97,7.23 9.18,-1.17 4.85,-2.77 9.92,-14.41 12.76,4.49 62.87,25.73 9.95,6.07 6.14,7.57 7.08,2.67 9.07,0.2 33.54,-14.05 10.55,-8.03 5.58,-6.2 8.39,-3.92 10.17,-7.05 12.6,-16.57 8.67,-3.04 7.96,2.6 6.64,1.13 9.27,-1.03 32.74,-8.56 81.56,-0.53 24.79,-0.84 73.79,14.14 44.85,8.66 5.28,-1.31 7.21,-0.79 3.25,-1.65 4.13,1.46 2.51,1.38 10.8,21.59 35.11,58.46 8.92,25.92 0.35,8.93 -0.26,8.52 3.51,8.61 24.65,37.49 8.05,8.47 26.78,17.41 42.38,13.52 33.54,-1.98 25.49,-7.39 24.61,-14.02 26.34,8.17 88.05,52.76 29.34,10.77 14.45,1.73 15.35,-1.71 18.11,-8.91 30.74,-10.13 29.86,0.95 0.18,0.01 3.06,-11.14 16.55,-14.82 46.49,-11.69 15.45,-9.28 0,-0.06 16.57,-7.81 33.32,-7.02 16.38,-6.31 11.52,-7.58 13.86,-12.4 8.39,-14.77 -4.72,-14.37 5.08,-29.64 7.93,-46.15 0.08,-1.06 4.68,-19.67 2.53,-7.45 14.69,-21.68 17.25,-17.25 12.01,-20.92 -0.91,-32.55 2.8,-3.24 3.14,-2.86 -0.1,-0.23 -2.8,-6.77 -7.25,-17.47 -6.98,-30.39 -3.16,-31.63 1.53,-28.13 -0.28,-14.35 -4.02,-7.79 0,0 -5,-5.6 -0.07,-0.18 -2.77,-6.99 -0.33,-0.83 0,-0.01 -0.37,-11.03 1.59,-21.39 -1.04,-12.86 -24.79,-81.85 -28.64,-87.1 -0.02,-0.02 -22.78,-29.75 -0.11,-0.22 -8.51,-16.89 1.56,-20.7 -0.07,-0.24 -8.78,-30.44 -5.65,-13.32 -6.17,-8.48 -11.14,-4 -15.39,-0.65 -26.5,3.89 -28.49,18.37 -10.42,4.8 -24.96,5.08 -4.07,7.99 -0.01,0.01 0.96,20.05 9.74,28.87 2.97,15.03 0,0.03 -4.74,12.29 -8.5,-0.48 -37.64,-19.08 -8.46,5.7 -0.01,0.01 2.82,13.89 7.14,16.6 4.43,13.78 0.04,16.77 0,0.04 -2.97,10.74 -6.02,8.32 -9.26,9.64 -9.17,6.12 -19.23,3.35 -9.15,5.43 -7.2,8.58 -2.96,6.48 -2.1,6.65 -4.71,9.03 -4.94,-15.81 -7.62,-4.72 -25.56,-0.45 -18.92,-10.17 -7.72,-0.39 -7.99,3.68 -5,5.64 -4.15,5.96 -5.63,4.41 -26.69,6.66 -22,-5.17 -15.61,-18.29 -7.57,-32.71 -7.02,-11.87 0.03,-0.01 8.51,-4.8 23.96,-1.4 14.41,-4.74 -0.02,-0.05 -0.91,-2.27 -5.64,-4.56 0.18,-11.64 0,-0.01 19.12,-16.45 26.57,-5.75 19.41,-9.49 -0.01,-0.05 -2.19,-27.87 -19.27,-19.07 -55.48,0.33 -24.88,-7.02 -7.09,-8.07 -11.53,-20.32 -7.93,-8.63 -106.27,-57.97 -13.47,-1.84 -25.95,1.56 -13.63,-3.92 -7.13,-5.87 -9.89,-14.54 -6.81,-5.85 -8.79,-1.91 -6.98,1.56 -6,-0.57 -5.91,-8.41 -2.24,-10.94 0.01,-0.04 1.42,-9.38 2.23,-7.75 0,-0.05 0.05,-5.77 -4.39,-7.21 -3.98,-1.77 -4.26,-0.33 -19.64,-14.1 -12.48,-3.41 -32.61,1.52 -15.17,-2.57 -26.12,-11.61 -13.54,-3.58 -63.35,-3.64 -31.64,-8.04 -27.86,-19.2 0.03,-0.05 9.19,-16.51 0,-0.04 -1.82,-15.12 -8.67,-12.75 -11.25,-9.64 0.03,-0.06 4.67,-8.51 -0.01,-0.04 -0.24,-6.83 -4.03,-5.49 -6.7,-4.33 -11.32,-16.04 -11.36,-11.66 -12.96,-4.07 -16.29,6.81 -4.96,5.58 -11.04,16.12 -4.01,4.03 -8.77,2.65 -1.9,-1.5 -0.24,-3.99 -3.96,-4.84 -25.43,-20.4 -3.5,-7.29 -6.21,-23.01 -14.49,-8.39 -12.04,4.52 -11.91,7.41 -13.9,0.51 -19.86,-64.37 -9.14,-19.01 -16.74,-14.02 -37.48,0.07 -19.59,-8.03 -0.03,0 -0.11,-0.06 -0.07,-0.01 -6.43,-2.13 -6.63,-0.94 -6.6,0.27 -6.29,1.44 -5.75,3.86 -5.9,0.98 -5.89,-1.79 -5.68,-4.37 -2.14,-45.53 -3.52,-20.55 -9.42,-12.4 -20.09,-22.04 -24.45,0.05 -67.76,36.58 -5.96,1.45 -6.47,-1.6 -9.56,-7.11 -4.32,-1.95 -12.74,1.11 -11.38,-1.24 -11.41,-4.78 -8.58,-9.44 -14.52,-25.17 -7.59,-8.04 -9.2,-1.55 -38.27,5.09 -53.01,-6.51 -28.2,-9.83 -18.93,-17.82 -5.03,-4.89 -2.28,-5.58 -1.17,-5.7 -1.72,-5.08 0.01,-0.05 0.28,-2.24 1.17,-3.69 0.65,-4.34 -0.01,-0.02 -1.42,-4.14 -2.72,-1.68 -6.41,-0.07 -2.54,-1.67 -8.14,-7.92 -20.27,-12.67 -7.34,-7.94 -20.25,-41.15 -7.72,-8.87 -7.7,-5.93 -5.47,-8.94 -1.08,-17.71 -13.31,-18.7 -3.3,-10.53 -1.37,-19.92 0.01,-0.03 2.75,-13.66 4.62,-11.71 0.51,-9.88 0,0 -9.68,-7.68 -12.28,1.04 -7.69,10.89 -9.9,30.24 -0.95,5.74 -1.57,6.43 -3.24,7.17 -3.31,4 -13.04,12.04 -1.91,2.45 -0.84,2.41 -0.01,0.02 0.53,2.33 1.82,2.18 0.85,0.87 0.93,0.67 0.98,0.39 1.03,0.22 3,6.4 0.11,5.08 0,0.05 -2.6,3.91 -5.17,2.54 -20.46,-0.36 -10.49,2.77 -8.32,6.72 -3.17,8.55 0,0 -0.56,19.03 0,0.06 -4.63,10.1 -14.1,9.13 -34.24,1.06 -5.57,8.95 -20.47,5.05 -9.44,-1.51 -3.09,-0.01 -3.01,0.71 -2.59,1.1 -29.95,18.38 -6.85,2.77 -2.53,2.54 -3.85,21.71 0.14,4.73 0.63,3.59 0.89,2.4 -2.73,4.98 -15.31,9.23 -7.87,12 -1.5,1.63 -1.62,1.95 -1.41,2.13 -2.49,4.39 -6.38,2.4 -18.68,-2.69 -5.97,8.94 -0.13,3.19 1.52,3.45 4.35,4.52 3.13,2.51 3.02,1.87 11.3,4.21 2.23,2.05 0.97,3.2 -0.1,5.49 0.62,3.74 5.5,5.91 1.47,4.43 -0.71,9.75 -1.51,4.55 -2.12,3.45 -8.94,6.18 -1.95,1.99 -1.31,2.54 -0.18,4.37 1.1,5.65 4.12,10.09 7.16,10.95 16.19,13.45 9.15,11.47 1.2,3.02 1.64,2.97 0.59,1.63 1.56,2.37 3.12,1.56 5.02,1.1 6.66,-1.46 3.57,-1.32 1.82,-1.42 5.07,-7.45 1.01,-1.34 1.63,-1.49 2.27,-1.6 2.68,-1.07 2.99,-0.46 3.52,0 3.18,0.48 6.97,6.93 14.76,27.03 11.1,2.73 5.57,-1.63 1.94,-1.71 2.15,-1.52 2.8,-1.26 2.98,-0.28 3.71,0.79 8.18,4.2 6.99,2.02 2.76,2.42 2.57,4.14 2.75,10.36 1.46,7.03 -2.05,22.24 12.15,16.4 3.79,6.35 2.94,3.27 3.27,1.4 12.26,0.94 13.6,-2.12 17.53,1.75 4.19,2.25 21.17,17.92 5.12,5.78 2.62,3.63 13.23,25.6 -6.81,2.69 -9.41,-1.46 -6.59,0.17 -3,0.79 -2.58,1.26 -2.26,1.52 -2.34,3.29 -2.83,4.48 -3.82,9.38 -1.47,6.1 0.97,7.69 1.47,4.04 0.49,3.88 -1.37,3.68 -4.46,4.18 -3.44,0.91 -2.84,-0.21 -3.78,-1.38 -2.54,-0.28 -2.64,0.29 -0.94,3.93 0.72,6.01 4.83,12.99 3.97,4.44 3.19,2.12 4.28,-0.12 2.27,0.67 1.61,0.94 1.05,0.85 4.32,6.35 5.2,6.27 1.19,2.76 -0.45,2.86 -2.36,3.69 -11.79,4.26 -9.07,9.32 0.38,11.36 50.57,17.68 5.74,3.83 16.92,16.02 4.34,3.25 4.74,1.6 20.44,2.66 5.09,-1.31 2.69,-1.38 0.34,-2.57 2.11,0.04 2.58,0.87 11.57,19.36 13.82,17.8 25.96,15.76 1.88,1.91 1.44,1.85 1.07,9.64 10.69,-4.24 3.42,-0.59 15.21,2.63 22.87,-2.06 3.02,0.66 5.35,2.37 2.74,-0.13 3.01,-1.18 3.31,-5.05 1.72,-1.64 1.74,0.06 5.28,6.07 5.93,10.6 1.53,2.21 3.98,3.42 7.39,3.7 0.09,4.84 -0.28,3.56 -16.43,31.2 -18.07,25.63 -20.53,10.89 -9.97,3.2 -10.16,4.87 -9.81,8.91 -8.14,16.71 -20.81,31.94 -2.37,4.21 -7.01,32.94 -109.87,27.79 -44.88,-6.56 -29.6,4.51 -3.15,2.45 -2.57,3.92 -2.35,9.05 0.12,4.66 -1.18,4.67 -3.1,3.81 -13.09,10.39 -7.19,12.93 1.94,30.42 -15.23,3.17 -6.62,2.5 -0.69,8.46 3.99,5.61 2.84,4.79 1.07,2.78 0.85,3 0.63,2.9 0.29,3.41 -3.78,32.21 -3.08,11.12 -14.19,17.58 -1.95,22.88 -2.74,8.23 -1.4,2.42 -0.96,2.2 -0.51,1.71 -0.46,2.39 -0.35,3.04 0.63,5.49 2.02,6.88 5.86,12.34 4.23,4.84 3.89,2.53 10.13,1.01 2.44,1.03 2.2,1.71 1.41,2.36 0.95,2.98 0.8,4.12 0.71,6.07 -0.12,7.8 -1.46,8.62 -5.05,11.73 -3.17,5.67 -2.19,5.67 -1,3.23 -0.13,18.01 -3.47,25.21 -3.79,7.83 -1.71,2.15 -1.19,2.42 -0.57,3.14 -0.56,13.07 -1,3.15 -0.57,3.26 0.4,3.24 3.18,3.76 7.62,5.86 1.64,2.08 3.77,7.59 1.63,2.09 2.19,1.76 2.35,1.37 2.65,13.33 -2.27,51.96 17.93,16.13 1.73,2.23 0.97,2.35 0.94,3.03 1.04,5.81 0.55,4.68 0.96,2.46 1.97,1.67 5.02,-1.41 6.87,-3.61 10.72,-3.79 21.16,-1.41 5.65,1.41 34.16,18.83 51.17,7.62 2.82,1.8 1.91,5.13 0.88,4.15 1.78,21.56 6.1,2.88 4.7,0.86 50.75,-0.45 9.12,-6.01 66.11,14.94 3.2,-0.93 1.93,-2.15 1.42,-2.49 3.15,-0.62 4.88,1.34 8.9,7.07 4.86,6.12 4.71,11 6.41,12.14 9.89,6.37 25.71,-2.25 20.76,-7.83 12.97,6.98 34.59,32.06 5.67,9.8 19.94,3.02 8.44,-15.91 9.12,-5.65 10.65,-3.37 8.43,-0.96 15.84,-7.06 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5549.12,5207.77 0,0 10.09,-10.91 8.74,2.09 4.15,4.77 3.11,2.25 4.83,2.05 4.6,-1.53 5.46,-3.5 15.36,-14.48 12.52,-2.48 8.11,-2.6 20.68,-22.75 9.92,-6.01 5.49,-1.82 3.16,1.33 1.94,1.84 2.3,1.22 2.58,0.09 2.54,-1.24 9.4,-7.42 8.8,-5 2.31,-2.89 1.89,-4.79 -0.93,-8.24 -1.02,-4.72 -1.29,-3.88 0.27,-6.64 7.33,-9.35 15.01,-7.96 2.78,-4.62 2.77,-6.87 4.67,-15.58 1.76,-8.08 0.47,-6.25 -1.87,-4.98 -2.36,-2.73 -5.2,-3.41 -2.06,-1.7 -1.39,-2.16 -1.06,-2.19 2.44,-6.89 4.44,-3.32 1.84,-9.52 -1.02,-12.27 1.41,-15.85 -2.79,-11.55 -1.43,-3.31 -1.5,-2.16 -7.45,-7.8 -1.38,-2.32 -0.71,-2.69 0.2,-3.45 0.74,-3.62 1.22,-4.34 1.38,-3.29 2.83,-5.92 2.03,-1.55 2.56,-1.29 3.84,6.61 3.37,3.54 3,4.29 7.76,-0.74 2.97,7.23 9.18,-1.17 4.85,-2.77 9.92,-14.41 12.76,4.49 62.87,25.73 9.95,6.07 6.14,7.57 7.08,2.67 9.07,0.2 33.54,-14.05 10.55,-8.03 5.58,-6.2 8.39,-3.92 10.17,-7.05 12.6,-16.57 8.67,-3.04 7.96,2.6 6.64,1.13 9.27,-1.03 32.74,-8.56 81.56,-0.53 24.79,-0.84 73.79,14.14 44.85,8.66 5.28,-1.31 7.21,-0.79 3.25,-1.65 4.13,1.46 2.51,1.38 10.8,21.59 35.11,58.46 8.92,25.92 0.35,8.93 -0.26,8.52 3.51,8.61 24.65,37.49 8.05,8.47 26.78,17.41 42.38,13.52 33.54,-1.98 25.49,-7.39 24.61,-14.02 26.34,8.17 88.05,52.76 29.34,10.77 14.45,1.73 15.35,-1.71 18.11,-8.91 30.74,-10.13 29.86,0.95 0.18,0.01 3.06,-11.14 16.55,-14.82 46.49,-11.69 15.45,-9.28 0,-0.06 16.57,-7.81 33.32,-7.02 16.38,-6.31 11.52,-7.58 13.86,-12.4 8.39,-14.77 -4.72,-14.37 5.08,-29.64 7.93,-46.15 0.08,-1.06 4.68,-19.67 2.53,-7.45 14.69,-21.68 17.25,-17.25 12.01,-20.92 -0.91,-32.55 2.8,-3.24 3.14,-2.86 -0.1,-0.23 -2.8,-6.77 -7.25,-17.47 -6.98,-30.39 -3.16,-31.63 1.53,-28.13 -0.28,-14.35 -4.02,-7.79 0,0 -5,-5.6 -0.07,-0.18 -2.77,-6.99 -0.33,-0.83 0,-0.01 -0.37,-11.03 1.59,-21.39 -1.04,-12.86 -24.79,-81.85 -28.64,-87.1 -0.02,-0.02 -22.78,-29.75 -0.11,-0.22 -8.51,-16.89 1.56,-20.7 -0.07,-0.24 -8.78,-30.44 -5.65,-13.32 -6.17,-8.48 -11.14,-4 -15.39,-0.65 -26.5,3.89 -28.49,18.37 -10.42,4.8 -24.96,5.08 -4.07,7.99 -0.01,0.01 0.96,20.05 9.74,28.87 2.97,15.03 0,0.03 -4.74,12.29 -8.5,-0.48 -37.64,-19.08 -8.46,5.7 -0.01,0.01 2.82,13.89 7.14,16.6 4.43,13.78 0.04,16.77 0,0.04 -2.97,10.74 -6.02,8.32 -9.26,9.64 -9.17,6.12 -19.23,3.35 -9.15,5.43 -7.2,8.58 -2.96,6.48 -2.1,6.65 -4.71,9.03 -4.94,-15.81 -7.62,-4.72 -25.56,-0.45 -18.92,-10.17 -7.72,-0.39 -7.99,3.68 -5,5.64 -4.15,5.96 -5.63,4.41 -26.69,6.66 -22,-5.17 -15.61,-18.29 -7.57,-32.71 -7.02,-11.87 0.03,-0.01 8.51,-4.8 23.96,-1.4 14.41,-4.74 -0.02,-0.05 -0.91,-2.27 -5.64,-4.56 0.18,-11.64 0,-0.01 19.12,-16.45 26.57,-5.75 19.41,-9.49 -0.01,-0.05 -2.19,-27.87 -19.27,-19.07 -55.48,0.33 -24.88,-7.02 -7.09,-8.07 -11.53,-20.32 -7.93,-8.63 -106.27,-57.97 -13.47,-1.84 -25.95,1.56 -13.63,-3.92 -7.13,-5.87 -9.89,-14.54 -6.81,-5.85 -8.79,-1.91 -6.98,1.56 -6,-0.57 -5.91,-8.41 -2.24,-10.94 0.01,-0.04 1.42,-9.38 2.23,-7.75 0,-0.05 0.05,-5.77 -4.39,-7.21 -3.98,-1.77 -4.26,-0.33 -19.64,-14.1 -12.48,-3.41 -32.61,1.52 -15.17,-2.57 -26.12,-11.61 -13.54,-3.58 -63.35,-3.64 -31.64,-8.04 -27.86,-19.2 0.03,-0.05 9.19,-16.51 0,-0.04 -1.82,-15.12 -8.67,-12.75 -11.25,-9.64 0.03,-0.06 4.67,-8.51 -0.01,-0.04 -0.24,-6.83 -4.03,-5.49 -6.7,-4.33 -11.32,-16.04 -11.36,-11.66 -12.96,-4.07 -16.29,6.81 -4.96,5.58 -11.04,16.12 -4.01,4.03 -8.77,2.65 -1.9,-1.5 -0.24,-3.99 -3.96,-4.84 -25.43,-20.4 -3.5,-7.29 -6.21,-23.01 -14.49,-8.39 -12.04,4.52 -11.91,7.41 -13.9,0.51 -19.86,-64.37 -9.14,-19.01 -16.74,-14.02 -37.48,0.07 -19.59,-8.03 -0.03,0 -0.11,-0.06 -0.07,-0.01 -6.43,-2.13 -6.63,-0.94 -6.6,0.27 -6.29,1.44 -5.75,3.86 -5.9,0.98 -5.89,-1.79 -5.68,-4.37 -2.14,-45.53 -3.52,-20.55 -9.42,-12.4 -20.09,-22.04 -24.45,0.05 -67.76,36.58 -5.96,1.45 -6.47,-1.6 -9.56,-7.11 -4.32,-1.95 -12.74,1.11 -11.38,-1.24 -11.41,-4.78 -8.58,-9.44 -14.52,-25.17 -7.59,-8.04 -9.2,-1.55 -38.27,5.09 -53.01,-6.51 -28.2,-9.83 -18.93,-17.82 -5.03,-4.89 -2.28,-5.58 -1.17,-5.7 -1.72,-5.08 0.01,-0.05 0.28,-2.24 1.17,-3.69 0.65,-4.34 -0.01,-0.02 -1.42,-4.14 -2.72,-1.68 -6.41,-0.07 -2.54,-1.67 -8.14,-7.92 -20.27,-12.67 -7.34,-7.94 -20.25,-41.15 -7.72,-8.87 -7.7,-5.93 -5.47,-8.94 -1.08,-17.71 -13.31,-18.7 -3.3,-10.53 -1.37,-19.92 0.01,-0.03 2.75,-13.66 4.62,-11.71 0.51,-9.88 0,0 -9.68,-7.68 -12.28,1.04 -7.69,10.89 -9.9,30.24 -0.95,5.74 -1.57,6.43 -3.24,7.17 -3.31,4 -13.04,12.04 -1.91,2.45 -0.84,2.41 -0.01,0.02 0.53,2.33 1.82,2.18 0.85,0.87 0.93,0.67 0.98,0.39 1.03,0.22 3,6.4 0.11,5.08 0,0.05 -2.6,3.91 -5.17,2.54 -20.46,-0.36 -10.49,2.77 -8.32,6.72 -3.17,8.55 0,0 -0.56,19.03 0,0.06 -4.63,10.1 -14.1,9.13 -34.24,1.06 -5.57,8.95 -20.47,5.05 -9.44,-1.51 -3.09,-0.01 -3.01,0.71 -2.59,1.1 -29.95,18.38 -6.85,2.77 -2.53,2.54 -3.85,21.71 0.14,4.73 0.63,3.59 0.89,2.4 -2.73,4.98 -15.31,9.23 -7.87,12 -1.5,1.63 -1.62,1.95 -1.41,2.13 -2.49,4.39 -6.38,2.4 -18.68,-2.69 -5.97,8.94 -0.13,3.19 1.52,3.45 4.35,4.52 3.13,2.51 3.02,1.87 11.3,4.21 2.23,2.05 0.97,3.2 -0.1,5.49 0.62,3.74 5.5,5.91 1.47,4.43 -0.71,9.75 -1.51,4.55 -2.12,3.45 -8.94,6.18 -1.95,1.99 -1.31,2.54 -0.18,4.37 1.1,5.65 4.12,10.09 7.16,10.95 16.19,13.45 9.15,11.47 1.2,3.02 1.64,2.97 0.59,1.63 1.56,2.37 3.12,1.56 5.02,1.1 6.66,-1.46 3.57,-1.32 1.82,-1.42 5.07,-7.45 1.01,-1.34 1.63,-1.49 2.27,-1.6 2.68,-1.07 2.99,-0.46 3.52,0 3.18,0.48 6.97,6.93 14.76,27.03 11.1,2.73 5.57,-1.63 1.94,-1.71 2.15,-1.52 2.8,-1.26 2.98,-0.28 3.71,0.79 8.18,4.2 6.99,2.02 2.76,2.42 2.57,4.14 2.75,10.36 1.46,7.03 -2.05,22.24 12.15,16.4 3.79,6.35 2.94,3.27 3.27,1.4 12.26,0.94 13.6,-2.12 17.53,1.75 4.19,2.25 21.17,17.92 5.12,5.78 2.62,3.63 13.23,25.6 -6.81,2.69 -9.41,-1.46 -6.59,0.17 -3,0.79 -2.58,1.26 -2.26,1.52 -2.34,3.29 -2.83,4.48 -3.82,9.38 -1.47,6.1 0.97,7.69 1.47,4.04 0.49,3.88 -1.37,3.68 -4.46,4.18 -3.44,0.91 -2.84,-0.21 -3.78,-1.38 -2.54,-0.28 -2.64,0.29 -0.94,3.93 0.72,6.01 4.83,12.99 3.97,4.44 3.19,2.12 4.28,-0.12 2.27,0.67 1.61,0.94 1.05,0.85 4.32,6.35 5.2,6.27 1.19,2.76 -0.45,2.86 -2.36,3.69 -11.79,4.26 -9.07,9.32 0.38,11.36 50.57,17.68 5.74,3.83 16.92,16.02 4.34,3.25 4.74,1.6 20.44,2.66 5.09,-1.31 2.69,-1.38 0.34,-2.57 2.11,0.04 2.58,0.87 11.57,19.36 13.82,17.8 25.96,15.76 1.88,1.91 1.44,1.85 1.07,9.64 10.69,-4.24 3.42,-0.59 15.21,2.63 22.87,-2.06 3.02,0.66 5.35,2.37 2.74,-0.13 3.01,-1.18 3.31,-5.05 1.72,-1.64 1.74,0.06 5.28,6.07 5.93,10.6 1.53,2.21 3.98,3.42 7.39,3.7 0.09,4.84 -0.28,3.56 -16.43,31.2 -18.07,25.63 -20.53,10.89 -9.97,3.2 -10.16,4.87 -9.81,8.91 -8.14,16.71 -20.81,31.94 -2.37,4.21 -7.01,32.94 -109.87,27.79 -44.88,-6.56 -29.6,4.51 -3.15,2.45 -2.57,3.92 -2.35,9.05 0.12,4.66 -1.18,4.67 -3.1,3.81 -13.09,10.39 -7.19,12.93 1.94,30.42 -15.23,3.17 -6.62,2.5 -0.69,8.46 3.99,5.61 2.84,4.79 1.07,2.78 0.85,3 0.63,2.9 0.29,3.41 -3.78,32.21 -3.08,11.12 -14.19,17.58 -1.95,22.88 -2.74,8.23 -1.4,2.42 -0.96,2.2 -0.51,1.71 -0.46,2.39 -0.35,3.04 0.63,5.49 2.02,6.88 5.86,12.34 4.23,4.84 3.89,2.53 10.13,1.01 2.44,1.03 2.2,1.71 1.41,2.36 0.95,2.98 0.8,4.12 0.71,6.07 -0.12,7.8 -1.46,8.62 -5.05,11.73 -3.17,5.67 -2.19,5.67 -1,3.23 -0.13,18.01 -3.47,25.21 -3.79,7.83 -1.71,2.15 -1.19,2.42 -0.57,3.14 -0.56,13.07 -1,3.15 -0.57,3.26 0.4,3.24 3.18,3.76 7.62,5.86 1.64,2.08 3.77,7.59 1.63,2.09 2.19,1.76 2.35,1.37 2.65,13.33 -2.27,51.96 17.93,16.13 1.73,2.23 0.97,2.35 0.94,3.03 1.04,5.81 0.55,4.68 0.96,2.46 1.97,1.67 5.02,-1.41 6.87,-3.61 10.72,-3.79 21.16,-1.41 5.65,1.41 34.16,18.83 51.17,7.62 2.82,1.8 1.91,5.13 0.88,4.15 1.78,21.56 6.1,2.88 4.7,0.86 50.75,-0.45 9.12,-6.01 66.11,14.94 3.2,-0.93 1.93,-2.15 1.42,-2.49 3.15,-0.62 4.88,1.34 8.9,7.07 4.86,6.12 4.71,11 6.41,12.14 9.89,6.37 25.71,-2.25 20.76,-7.83 12.97,6.98 34.59,32.06 5.67,9.8 19.94,3.02 8.44,-15.91 9.12,-5.65 10.65,-3.37 8.43,-0.96 15.84,-7.06 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7317" /><path
+               id="path3274" /><path
                d="m 6037.16,7299.7 0,0 21.59,-33.72 4.55,-14.85 11.4,-14.85 46.22,6.69 39.71,-0.11 14.59,-4.74 16.77,-2.27 12.06,19.98 16.26,4.64 24.62,-10.37 27.75,3.76 15.74,-2.32 3.2,-29.31 -1.57,-20.97 -8.56,-24.96 -21.02,-39.76 -53.2,-41.86 -0.24,-8.27 1.17,-13.42 28.19,-2.19 25.7,-4.6 44.22,-1.03 8.82,7.6 2.99,15.86 16.97,9.95 16.84,25.59 42.73,31.1 0.13,0.1 5.94,-19.99 1.74,-9.31 1.95,-20.15 2.89,-10.75 4.56,-6.79 10.85,-7.87 3.09,-6 9.32,-7.37 -10.89,-26.24 -3.9,-9.36 -4.02,-7.21 -0.28,-0.51 0,0 -6.74,-4.32 -5.84,-10.37 -0.04,-0.17 -3.73,-13.75 -0.75,-14.95 3.71,-17.91 5.26,-15.37 2.59,-15.97 -15.27,-64.43 -1.24,-9.45 -7.42,-20.7 -0.01,-0.01 -19.02,-23.06 -37.14,-34.5 -39.22,-24.34 -30.74,-26.46 0.01,-0.15 0.49,-6.74 4.86,-10.96 11.03,-38.77 2.53,-13.76 -1.26,-21.27 -3.5,-8.11 -2.52,-5.83 -16.69,-16.78 0.06,-0.1 8.74,-14.97 12.35,-8.38 14.4,-3.38 15.08,-0.03 13.92,-4.97 23.9,-24.46 19.06,-8.47 75.57,-47.51 11.37,-11.44 26.46,-43.88 7.66,-6.26 13.23,-5.06 21.47,-25.1 41.71,-12.97 42.91,-41.31 3.94,-3.8 22.34,-15.69 -15.77,-41.38 -3.25,-26.13 13.52,-10.61 4.01,-11.64 -9.11,-26.94 -0.11,-0.22 -14.27,-27.12 -32.8,-33.78 0.02,-0.12 7.2,-43.73 19.91,-47.21 16.74,-31.22 -2.48,-20.55 16.61,-15.95 23.96,-10.15 19.83,-2.95 19.68,-6.83 12.15,-18.68 1.58,-22.75 -0.12,-0.2 -11.85,-18.54 0.01,-0.08 0.53,-6.8 11.17,-14.66 -1.39,-16.06 -5.75,-20.84 -1.94,-29.09 8.11,-15.42 47.16,-29.83 -0.16,-0.22 -11.23,-16.45 -2.88,-6.3 -1.64,-3.59 -1.34,-10.1 -0.49,-10.38 -2.05,-10.68 -12.68,-28.03 -2.88,-11.09 2.89,-68.04 -4.04,-22.21 -8.99,-20.78 0,0 -11.32,-17.95 -36.38,-43.3 -0.06,-0.17 -7.49,-19.76 3.84,-23.38 12.72,-16.46 13.06,-7.71 10.5,-12.01 5.01,-29.12 9.36,-27.69 16.97,-17.11 35.73,-25.24 10.4,-18.53 9.04,-27.62 3.41,-29.14 -6.4,-22.94 -0.07,-0.14 -11.64,-22.18 -0.01,-0.1 -3.99,-21.9 2.28,-8.34 -0.18,-0.01 -29.86,-0.95 -30.74,10.13 -18.11,8.91 -15.35,1.71 -14.45,-1.73 -29.34,-10.77 -88.05,-52.76 -26.34,-8.17 -24.61,14.02 -25.49,7.39 -33.54,1.98 -42.38,-13.52 -26.78,-17.41 -8.05,-8.47 -24.65,-37.49 -3.51,-8.61 0.26,-8.52 -0.35,-8.93 -8.92,-25.92 -35.11,-58.46 -10.8,-21.59 -2.51,-1.38 -4.13,-1.46 -3.25,1.65 -7.21,0.79 -5.28,1.31 -44.85,-8.66 -73.79,-14.14 -24.79,0.84 -81.56,0.53 -32.74,8.56 -9.27,1.03 -6.64,-1.13 -7.96,-2.6 -8.67,3.04 -12.6,16.57 -10.17,7.05 -8.39,3.92 -5.58,6.2 -10.55,8.03 -33.54,14.05 -9.07,-0.2 -7.08,-2.67 -6.14,-7.57 -9.95,-6.07 -62.87,-25.73 -12.76,-4.49 -9.92,14.41 -4.85,2.77 -9.18,1.17 -2.97,-7.23 -7.76,0.74 -3,-4.29 -3.37,-3.54 -3.84,-6.61 -2.56,1.29 -2.03,1.55 -2.83,5.92 -1.38,3.29 -1.22,4.34 -0.74,3.62 -0.2,3.45 0.71,2.69 1.38,2.32 7.45,7.8 1.5,2.16 1.43,3.31 2.79,11.55 -1.41,15.85 1.02,12.27 -1.84,9.52 -4.44,3.32 -2.44,6.89 1.06,2.19 1.39,2.16 2.06,1.7 5.2,3.41 2.36,2.73 1.87,4.98 -0.47,6.25 -1.76,8.08 -4.67,15.58 -2.77,6.87 -2.78,4.62 -15.01,7.96 -7.33,9.35 -0.27,6.64 1.29,3.88 1.02,4.72 0.93,8.24 -1.89,4.79 -2.31,2.89 -8.8,5 -9.4,7.42 -2.54,1.24 -2.58,-0.09 -2.3,-1.22 -1.94,-1.84 -3.16,-1.33 -5.49,1.82 -9.92,6.01 -20.68,22.75 -8.11,2.6 12.82,26.71 5.36,6 39.6,34.97 17.77,27.46 1.48,13.43 -5.65,12.38 -7.38,10.84 -4.66,12.04 -1.65,8.23 -2.22,29.47 0.52,7.86 3.41,7.92 19.02,34.57 22.09,27.99 5.16,14.22 -13.34,4.88 -23.07,0.33 -3.69,-0.96 -3.97,-3.51 -4.82,-11.17 -2.72,-4.94 -5.27,2.3 -3.7,2.9 -6.57,7.57 -4.96,0.76 -45.19,-8.02 -12.98,4.29 -40.15,25 -5.3,4.93 -3.32,6.06 -4.29,5.44 -8.73,7.08 -7.66,3.18 -14.2,1.79 -31.61,-1.29 -5.51,1.06 -3.53,2.11 -6.19,17.19 -3.9,7.08 -10.72,6.74 -26.5,1.66 -7.67,1.62 -63.31,34.8 -27.33,14.28 -3.95,0.15 -4.24,-0.56 -0.82,-2.72 -0.05,-3.26 -1.31,-3.72 -2.9,-3.92 -8.14,-4.27 -8.45,-6.06 -9.1,-9.96 -32,5.45 -12.15,6.29 -33.39,23.57 -14.71,17.78 -4.13,3.02 -3.48,1.57 -2.74,-0.6 -1.95,-1.59 -1.49,-2.43 -2.08,-5.57 -2.66,-2.25 -4.09,-1.52 -8.17,-0.68 -4.3,0.72 -3.37,1.4 -8.15,7.1 -21.4,13.25 -6.1,5.27 -4.03,4.25 -0.9,5.57 -0.17,3.59 -0.34,2.81 -2.09,7.5 -45.27,55.84 -13.36,13.3 -13.99,6.19 -2.99,2.69 -2.62,3.79 -5.22,14.59 -18.86,17.09 -2.25,2.78 -6.73,12.92 -6.6,17.23 0.3,2.9 1.11,3.73 4.72,8.44 7.65,28.38 14.92,17.19 0.96,2.28 0.9,3.61 -1.77,1.59 -4.17,5.57 -2.61,6.1 -2.27,3.47 -2.65,2.3 -6.69,0.34 -3.84,2.99 -3.97,6.02 -2.66,16.95 -0.68,8.17 0.38,5.8 0.82,2.92 4.05,11.32 1.63,6.29 0.6,3.13 1.65,5.75 7.89,15.17 0.65,4.26 -0.47,3.44 -1.22,3.63 -1.38,4.83 -1.74,8.27 0.86,4.3 1.3,4.2 0.15,3.72 -1.59,4.68 0.07,3.34 0.83,2.63 7.43,15.65 2.46,6.5 4,15.09 0.58,5.84 -0.31,4.48 -1.27,2.47 -3.25,4.2 -1.36,2.02 -1.64,3.72 0.3,2.63 1.04,2.01 7.19,4.99 3.71,6.67 5.45,17.17 7.15,14.29 0.68,3.54 0.53,4.61 -1.23,8.63 -0.04,7.72 1.47,4.7 2.65,6.54 -0.92,1.8 -1.91,0.26 -4.71,-2.89 -2.59,-0.99 -2.72,-0.55 -2.76,0.45 -2.73,-0.12 -2.5,-0.75 -2.25,-1.4 -3.31,0.8 -4.07,3.16 -10.86,16.58 -3.9,4.81 -5.23,3.91 -3.86,1.44 -3.47,-0.04 -2.26,-1.31 -1.58,-2.29 -0.82,-3 -1.13,-10.1 -0.92,-2.97 -1.47,-2.46 -1.59,-2.2 -1.84,-2.1 -1.9,-1.58 -5.07,-2.75 -9.28,-2.2 -8.73,2.04 -2.08,1.69 -2.43,2.6 -1.41,3.34 -1.4,5.61 0.03,4.17 0.69,3.31 3.08,4.45 2.21,2.35 1.98,2.85 2.35,4.13 -0.74,2.41 -1.86,1.56 -3.08,0.62 -6.61,-0.61 -6.56,-1.58 -3.39,-0.21 -4.17,1.38 -0.52,2.19 0.54,2.3 16.78,28.54 1.16,7.24 0.88,11.27 0.09,26.6 1.09,11.13 1.61,6.46 2.91,0.67 13.14,-0.22 5.84,1.87 6.73,4.61 3.23,5.24 3.71,8.66 5.76,21.68 1.21,10.36 -0.52,9.24 -1.72,3.29 -2.1,2.41 -6.62,4.95 -2.22,2.6 -1.95,3.86 -1.71,7.55 -1.47,4.89 -1.62,3.47 -3.79,4.98 -2.17,3.19 -2.18,4.97 -0.37,3.72 0.48,3.28 2.74,4.52 6.19,6.84 2.36,3.56 -0.36,3.21 -1.43,3.91 -2.74,2.81 -2.36,3.41 -2.07,4.34 -1.97,8.12 0.37,4.16 1.21,3.36 21.13,19.37 2.37,12.4 -0.85,7.24 -14.96,42 -4.01,7.76 -3.65,4.5 -7.85,1.78 -8.31,3.78 -3.18,0.9 -2.91,-0.48 -22.77,-8.08 -6.98,-0.65 -9.96,0.83 0.18,12.68 -1.51,3.39 -2.28,4.39 -4.59,4.81 -2.57,1.5 -2.74,0.51 -47.01,-7.99 -16.85,-0.13 -9.94,-4.58 -11.61,1.93 -18.8,10.14 -9.21,3.25 -12.08,0.89 -6.91,2.19 -44.77,27.74 0.88,4.93 7.54,12.44 3.1,13.02 -8.38,4.5 -21.07,0.15 -9.7,7.22 -21.6,30.3 -10.31,-2.7 -16.83,-10.54 -6.67,-2.61 -11.8,1.68 -3.65,6.54 -1.44,10.59 -5.21,13.91 -7.94,5.4 -22.25,0.1 -9.36,4.43 5.34,5.98 3.45,10.74 -0.16,2.47 -0.52,7.66 -6.96,4.27 -29.41,-9.36 -33.33,11.93 -15.49,1.53 -12.62,4.28 -20.66,20.08 -15.57,4.39 -14.01,-3.76 -21.32,-16.04 -12.35,-3.89 -16.8,3.42 -1.78,0.36 -7.21,4.75 -25.5,28.23 -11.65,20.85 14.52,2.19 15.72,-2.95 21.86,0.71 15.84,-6.4 12.55,-1.32 0.52,15.61 1.68,12.18 10.23,5.54 21.85,0.74 37.14,-19.5 17.63,2.35 13.16,10.86 4,18 -3.18,7.83 -2.43,18.67 -2.35,7.69 -3.85,6.08 -5.27,5.45 -2.06,8.3 3.76,11.09 28.55,28.36 12.82,9.1 35.84,15.07 22.83,2.23 7.97,-2.52 21.79,-16.64 9.04,-18.71 13.16,9.17 14.33,5.75 14.54,0.57 20.83,-0.91 -2.7,15.49 -13.86,10.19 5.85,4 5.7,2.47 18.43,-3.89 14.8,19.65 25.39,13.77 6.4,0.38 4.73,3.19 12.83,-4.92 12.9,14.4 11.04,9.13 10.29,2.16 5.49,17.56 0.37,15.62 17.09,12.85 8.9,18.32 3.41,-0.09 6.03,2.54 11.27,6.88 9.63,1.83 5.58,2.37 2.88,0.21 3.78,-1.24 10.96,-11.12 2.82,-0.77 4.36,1.92 2.81,1.85 12.63,11.18 5.16,2.31 3.32,0.49 3.86,-0.72 4.02,-2.12 4.72,-6.18 6.54,-12.2 5.08,-7.11 4.95,-2.11 42.31,-8.57 24.85,-13.33 4.34,-2.13 20.81,-14.77 2.63,-3.16 3.79,-3.56 1.55,-2.12 4.19,-3.31 19.53,-9.9 2.17,-2.2 6.28,-9.2 2.17,-2.03 4.31,-1.29 6.24,-0.56 23.72,2.88 10.04,4.35 10.16,1.96 71.56,-14.71 3.62,0.12 9.36,-3.95 18.93,-17.47 28.36,-6.31 16.59,0 5.99,-3.49 2.27,-15.47 0.09,-7.69 0.65,-2.55 1.09,-2.94 1.55,-1.94 1.88,-1.45 3.41,-1.84 3.35,-0.55 4.78,0.08 29.05,8.02 9.38,-0.19 4.73,-1.01 4.77,-1.82 9.96,-7.62 4.66,-1.79 5.32,-0.32 10.53,1.64 5,1.68 6.06,3.07 4.51,1.05 17.94,1.16 5.09,1.78 3.41,2.09 2.08,1.84 2.71,-0.08 2.58,-1.76 1.84,-5.05 -0.77,-3.01 -1.63,-2.45 -4.17,-3.46 -1.64,-2.17 -1.23,-2.14 1.45,-3.72 3.92,-3.24 16.32,-5.87 16.96,3.91 15.92,18.01 2.74,4.88 6.59,8.91 3.63,3.66 18.85,13.58 8.3,9.06 5.79,4.74 2.04,2.37 1.52,2.42 1.11,2.39 0.71,2.12 0.51,1.9 0.37,2.56 1.11,6.06 0.97,2.85 2.23,2.75 2.95,2.82 5.62,3.24 3.67,2.95 1.55,3.55 2.04,2.39 2.77,2.29 5.3,2.19 4.69,-0.36 4.89,-2.08 9.23,-10.59 4.85,-8.5 1.9,-2.34 8.43,-3.28 18.71,1.13 1.81,11.55 0.37,7.63 0.54,3.23 1.73,5.76 5.65,14.8 3.2,6.04 7.21,7.67 10.42,6.07 17.35,2.75 14.15,-2.03 15.28,-5.9 12.48,-6.88 12.38,-2.38 11.52,4.89 33.28,30.49 6.87,2.86 7.2,7.45 7.95,12.47 7.46,26.22 10.78,27.64 2.27,21.2 4.25,12.81 8.74,9.41 11.94,7.37 23.54,2.53 14.1,14.99 10.93,23.28 37.96,37.23 23.5,5.03 22.8,-0.21 19.01,9.96 -4.02,13.63 -18.76,30.11 -0.19,20.71 11.44,-0.96 18.24,-24.82 31.73,-10 2.69,-24.13 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 6037.16,7299.7 0,0 21.59,-33.72 4.55,-14.85 11.4,-14.85 46.22,6.69 39.71,-0.11 14.59,-4.74 16.77,-2.27 12.06,19.98 16.26,4.64 24.62,-10.37 27.75,3.76 15.74,-2.32 3.2,-29.31 -1.57,-20.97 -8.56,-24.96 -21.02,-39.76 -53.2,-41.86 -0.24,-8.27 1.17,-13.42 28.19,-2.19 25.7,-4.6 44.22,-1.03 8.82,7.6 2.99,15.86 16.97,9.95 16.84,25.59 42.73,31.1 0.13,0.1 5.94,-19.99 1.74,-9.31 1.95,-20.15 2.89,-10.75 4.56,-6.79 10.85,-7.87 3.09,-6 9.32,-7.37 -10.89,-26.24 -3.9,-9.36 -4.02,-7.21 -0.28,-0.51 0,0 -6.74,-4.32 -5.84,-10.37 -0.04,-0.17 -3.73,-13.75 -0.75,-14.95 3.71,-17.91 5.26,-15.37 2.59,-15.97 -15.27,-64.43 -1.24,-9.45 -7.42,-20.7 -0.01,-0.01 -19.02,-23.06 -37.14,-34.5 -39.22,-24.34 -30.74,-26.46 0.01,-0.15 0.49,-6.74 4.86,-10.96 11.03,-38.77 2.53,-13.76 -1.26,-21.27 -3.5,-8.11 -2.52,-5.83 -16.69,-16.78 0.06,-0.1 8.74,-14.97 12.35,-8.38 14.4,-3.38 15.08,-0.03 13.92,-4.97 23.9,-24.46 19.06,-8.47 75.57,-47.51 11.37,-11.44 26.46,-43.88 7.66,-6.26 13.23,-5.06 21.47,-25.1 41.71,-12.97 42.91,-41.31 3.94,-3.8 22.34,-15.69 -15.77,-41.38 -3.25,-26.13 13.52,-10.61 4.01,-11.64 -9.11,-26.94 -0.11,-0.22 -14.27,-27.12 -32.8,-33.78 0.02,-0.12 7.2,-43.73 19.91,-47.21 16.74,-31.22 -2.48,-20.55 16.61,-15.95 23.96,-10.15 19.83,-2.95 19.68,-6.83 12.15,-18.68 1.58,-22.75 -0.12,-0.2 -11.85,-18.54 0.01,-0.08 0.53,-6.8 11.17,-14.66 -1.39,-16.06 -5.75,-20.84 -1.94,-29.09 8.11,-15.42 47.16,-29.83 -0.16,-0.22 -11.23,-16.45 -2.88,-6.3 -1.64,-3.59 -1.34,-10.1 -0.49,-10.38 -2.05,-10.68 -12.68,-28.03 -2.88,-11.09 2.89,-68.04 -4.04,-22.21 -8.99,-20.78 0,0 -11.32,-17.95 -36.38,-43.3 -0.06,-0.17 -7.49,-19.76 3.84,-23.38 12.72,-16.46 13.06,-7.71 10.5,-12.01 5.01,-29.12 9.36,-27.69 16.97,-17.11 35.73,-25.24 10.4,-18.53 9.04,-27.62 3.41,-29.14 -6.4,-22.94 -0.07,-0.14 -11.64,-22.18 -0.01,-0.1 -3.99,-21.9 2.28,-8.34 -0.18,-0.01 -29.86,-0.95 -30.74,10.13 -18.11,8.91 -15.35,1.71 -14.45,-1.73 -29.34,-10.77 -88.05,-52.76 -26.34,-8.17 -24.61,14.02 -25.49,7.39 -33.54,1.98 -42.38,-13.52 -26.78,-17.41 -8.05,-8.47 -24.65,-37.49 -3.51,-8.61 0.26,-8.52 -0.35,-8.93 -8.92,-25.92 -35.11,-58.46 -10.8,-21.59 -2.51,-1.38 -4.13,-1.46 -3.25,1.65 -7.21,0.79 -5.28,1.31 -44.85,-8.66 -73.79,-14.14 -24.79,0.84 -81.56,0.53 -32.74,8.56 -9.27,1.03 -6.64,-1.13 -7.96,-2.6 -8.67,3.04 -12.6,16.57 -10.17,7.05 -8.39,3.92 -5.58,6.2 -10.55,8.03 -33.54,14.05 -9.07,-0.2 -7.08,-2.67 -6.14,-7.57 -9.95,-6.07 -62.87,-25.73 -12.76,-4.49 -9.92,14.41 -4.85,2.77 -9.18,1.17 -2.97,-7.23 -7.76,0.74 -3,-4.29 -3.37,-3.54 -3.84,-6.61 -2.56,1.29 -2.03,1.55 -2.83,5.92 -1.38,3.29 -1.22,4.34 -0.74,3.62 -0.2,3.45 0.71,2.69 1.38,2.32 7.45,7.8 1.5,2.16 1.43,3.31 2.79,11.55 -1.41,15.85 1.02,12.27 -1.84,9.52 -4.44,3.32 -2.44,6.89 1.06,2.19 1.39,2.16 2.06,1.7 5.2,3.41 2.36,2.73 1.87,4.98 -0.47,6.25 -1.76,8.08 -4.67,15.58 -2.77,6.87 -2.78,4.62 -15.01,7.96 -7.33,9.35 -0.27,6.64 1.29,3.88 1.02,4.72 0.93,8.24 -1.89,4.79 -2.31,2.89 -8.8,5 -9.4,7.42 -2.54,1.24 -2.58,-0.09 -2.3,-1.22 -1.94,-1.84 -3.16,-1.33 -5.49,1.82 -9.92,6.01 -20.68,22.75 -8.11,2.6 12.82,26.71 5.36,6 39.6,34.97 17.77,27.46 1.48,13.43 -5.65,12.38 -7.38,10.84 -4.66,12.04 -1.65,8.23 -2.22,29.47 0.52,7.86 3.41,7.92 19.02,34.57 22.09,27.99 5.16,14.22 -13.34,4.88 -23.07,0.33 -3.69,-0.96 -3.97,-3.51 -4.82,-11.17 -2.72,-4.94 -5.27,2.3 -3.7,2.9 -6.57,7.57 -4.96,0.76 -45.19,-8.02 -12.98,4.29 -40.15,25 -5.3,4.93 -3.32,6.06 -4.29,5.44 -8.73,7.08 -7.66,3.18 -14.2,1.79 -31.61,-1.29 -5.51,1.06 -3.53,2.11 -6.19,17.19 -3.9,7.08 -10.72,6.74 -26.5,1.66 -7.67,1.62 -63.31,34.8 -27.33,14.28 -3.95,0.15 -4.24,-0.56 -0.82,-2.72 -0.05,-3.26 -1.31,-3.72 -2.9,-3.92 -8.14,-4.27 -8.45,-6.06 -9.1,-9.96 -32,5.45 -12.15,6.29 -33.39,23.57 -14.71,17.78 -4.13,3.02 -3.48,1.57 -2.74,-0.6 -1.95,-1.59 -1.49,-2.43 -2.08,-5.57 -2.66,-2.25 -4.09,-1.52 -8.17,-0.68 -4.3,0.72 -3.37,1.4 -8.15,7.1 -21.4,13.25 -6.1,5.27 -4.03,4.25 -0.9,5.57 -0.17,3.59 -0.34,2.81 -2.09,7.5 -45.27,55.84 -13.36,13.3 -13.99,6.19 -2.99,2.69 -2.62,3.79 -5.22,14.59 -18.86,17.09 -2.25,2.78 -6.73,12.92 -6.6,17.23 0.3,2.9 1.11,3.73 4.72,8.44 7.65,28.38 14.92,17.19 0.96,2.28 0.9,3.61 -1.77,1.59 -4.17,5.57 -2.61,6.1 -2.27,3.47 -2.65,2.3 -6.69,0.34 -3.84,2.99 -3.97,6.02 -2.66,16.95 -0.68,8.17 0.38,5.8 0.82,2.92 4.05,11.32 1.63,6.29 0.6,3.13 1.65,5.75 7.89,15.17 0.65,4.26 -0.47,3.44 -1.22,3.63 -1.38,4.83 -1.74,8.27 0.86,4.3 1.3,4.2 0.15,3.72 -1.59,4.68 0.07,3.34 0.83,2.63 7.43,15.65 2.46,6.5 4,15.09 0.58,5.84 -0.31,4.48 -1.27,2.47 -3.25,4.2 -1.36,2.02 -1.64,3.72 0.3,2.63 1.04,2.01 7.19,4.99 3.71,6.67 5.45,17.17 7.15,14.29 0.68,3.54 0.53,4.61 -1.23,8.63 -0.04,7.72 1.47,4.7 2.65,6.54 -0.92,1.8 -1.91,0.26 -4.71,-2.89 -2.59,-0.99 -2.72,-0.55 -2.76,0.45 -2.73,-0.12 -2.5,-0.75 -2.25,-1.4 -3.31,0.8 -4.07,3.16 -10.86,16.58 -3.9,4.81 -5.23,3.91 -3.86,1.44 -3.47,-0.04 -2.26,-1.31 -1.58,-2.29 -0.82,-3 -1.13,-10.1 -0.92,-2.97 -1.47,-2.46 -1.59,-2.2 -1.84,-2.1 -1.9,-1.58 -5.07,-2.75 -9.28,-2.2 -8.73,2.04 -2.08,1.69 -2.43,2.6 -1.41,3.34 -1.4,5.61 0.03,4.17 0.69,3.31 3.08,4.45 2.21,2.35 1.98,2.85 2.35,4.13 -0.74,2.41 -1.86,1.56 -3.08,0.62 -6.61,-0.61 -6.56,-1.58 -3.39,-0.21 -4.17,1.38 -0.52,2.19 0.54,2.3 16.78,28.54 1.16,7.24 0.88,11.27 0.09,26.6 1.09,11.13 1.61,6.46 2.91,0.67 13.14,-0.22 5.84,1.87 6.73,4.61 3.23,5.24 3.71,8.66 5.76,21.68 1.21,10.36 -0.52,9.24 -1.72,3.29 -2.1,2.41 -6.62,4.95 -2.22,2.6 -1.95,3.86 -1.71,7.55 -1.47,4.89 -1.62,3.47 -3.79,4.98 -2.17,3.19 -2.18,4.97 -0.37,3.72 0.48,3.28 2.74,4.52 6.19,6.84 2.36,3.56 -0.36,3.21 -1.43,3.91 -2.74,2.81 -2.36,3.41 -2.07,4.34 -1.97,8.12 0.37,4.16 1.21,3.36 21.13,19.37 2.37,12.4 -0.85,7.24 -14.96,42 -4.01,7.76 -3.65,4.5 -7.85,1.78 -8.31,3.78 -3.18,0.9 -2.91,-0.48 -22.77,-8.08 -6.98,-0.65 -9.96,0.83 0.18,12.68 -1.51,3.39 -2.28,4.39 -4.59,4.81 -2.57,1.5 -2.74,0.51 -47.01,-7.99 -16.85,-0.13 -9.94,-4.58 -11.61,1.93 -18.8,10.14 -9.21,3.25 -12.08,0.89 -6.91,2.19 -44.77,27.74 0.88,4.93 7.54,12.44 3.1,13.02 -8.38,4.5 -21.07,0.15 -9.7,7.22 -21.6,30.3 -10.31,-2.7 -16.83,-10.54 -6.67,-2.61 -11.8,1.68 -3.65,6.54 -1.44,10.59 -5.21,13.91 -7.94,5.4 -22.25,0.1 -9.36,4.43 5.34,5.98 3.45,10.74 -0.16,2.47 -0.52,7.66 -6.96,4.27 -29.41,-9.36 -33.33,11.93 -15.49,1.53 -12.62,4.28 -20.66,20.08 -15.57,4.39 -14.01,-3.76 -21.32,-16.04 -12.35,-3.89 -16.8,3.42 -1.78,0.36 -7.21,4.75 -25.5,28.23 -11.65,20.85 14.52,2.19 15.72,-2.95 21.86,0.71 15.84,-6.4 12.55,-1.32 0.52,15.61 1.68,12.18 10.23,5.54 21.85,0.74 37.14,-19.5 17.63,2.35 13.16,10.86 4,18 -3.18,7.83 -2.43,18.67 -2.35,7.69 -3.85,6.08 -5.27,5.45 -2.06,8.3 3.76,11.09 28.55,28.36 12.82,9.1 35.84,15.07 22.83,2.23 7.97,-2.52 21.79,-16.64 9.04,-18.71 13.16,9.17 14.33,5.75 14.54,0.57 20.83,-0.91 -2.7,15.49 -13.86,10.19 5.85,4 5.7,2.47 18.43,-3.89 14.8,19.65 25.39,13.77 6.4,0.38 4.73,3.19 12.83,-4.92 12.9,14.4 11.04,9.13 10.29,2.16 5.49,17.56 0.37,15.62 17.09,12.85 8.9,18.32 3.41,-0.09 6.03,2.54 11.27,6.88 9.63,1.83 5.58,2.37 2.88,0.21 3.78,-1.24 10.96,-11.12 2.82,-0.77 4.36,1.92 2.81,1.85 12.63,11.18 5.16,2.31 3.32,0.49 3.86,-0.72 4.02,-2.12 4.72,-6.18 6.54,-12.2 5.08,-7.11 4.95,-2.11 42.31,-8.57 24.85,-13.33 4.34,-2.13 20.81,-14.77 2.63,-3.16 3.79,-3.56 1.55,-2.12 4.19,-3.31 19.53,-9.9 2.17,-2.2 6.28,-9.2 2.17,-2.03 4.31,-1.29 6.24,-0.56 23.72,2.88 10.04,4.35 10.16,1.96 71.56,-14.71 3.62,0.12 9.36,-3.95 18.93,-17.47 28.36,-6.31 16.59,0 5.99,-3.49 2.27,-15.47 0.09,-7.69 0.65,-2.55 1.09,-2.94 1.55,-1.94 1.88,-1.45 3.41,-1.84 3.35,-0.55 4.78,0.08 29.05,8.02 9.38,-0.19 4.73,-1.01 4.77,-1.82 9.96,-7.62 4.66,-1.79 5.32,-0.32 10.53,1.64 5,1.68 6.06,3.07 4.51,1.05 17.94,1.16 5.09,1.78 3.41,2.09 2.08,1.84 2.71,-0.08 2.58,-1.76 1.84,-5.05 -0.77,-3.01 -1.63,-2.45 -4.17,-3.46 -1.64,-2.17 -1.23,-2.14 1.45,-3.72 3.92,-3.24 16.32,-5.87 16.96,3.91 15.92,18.01 2.74,4.88 6.59,8.91 3.63,3.66 18.85,13.58 8.3,9.06 5.79,4.74 2.04,2.37 1.52,2.42 1.11,2.39 0.71,2.12 0.51,1.9 0.37,2.56 1.11,6.06 0.97,2.85 2.23,2.75 2.95,2.82 5.62,3.24 3.67,2.95 1.55,3.55 2.04,2.39 2.77,2.29 5.3,2.19 4.69,-0.36 4.89,-2.08 9.23,-10.59 4.85,-8.5 1.9,-2.34 8.43,-3.28 18.71,1.13 1.81,11.55 0.37,7.63 0.54,3.23 1.73,5.76 5.65,14.8 3.2,6.04 7.21,7.67 10.42,6.07 17.35,2.75 14.15,-2.03 15.28,-5.9 12.48,-6.88 12.38,-2.38 11.52,4.89 33.28,30.49 6.87,2.86 7.2,7.45 7.95,12.47 7.46,26.22 10.78,27.64 2.27,21.2 4.25,12.81 8.74,9.41 11.94,7.37 23.54,2.53 14.1,14.99 10.93,23.28 37.96,37.23 23.5,5.03 22.8,-0.21 19.01,9.96 -4.02,13.63 -18.76,30.11 -0.19,20.71 11.44,-0.96 18.24,-24.82 31.73,-10 2.69,-24.13 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7319" /><path
+               id="path3276" /><path
                d="m 5827.61,6367.51 0,0 -14.88,-16.11 -1.62,-2.81 -1.37,-3.31 -0.96,-3.18 -2.89,-0.9 -1.89,-0.11 -13.56,7.84 -14.92,-14.11 -3.26,-6.95 -0.67,-2.86 -1.43,-2.37 -3.69,-1.75 -6.65,-1.84 -25.59,0.24 -11.34,4.27 -2.31,1.54 -1.8,2.02 -1.09,2.42 -0.2,10.3 -0.9,2.86 -2.27,4.51 0.29,2.15 0.94,1.81 0.54,1.59 -1.73,0.73 -7.55,-0.25 -2.13,-1.31 -2.17,-2.46 -1.31,-6.28 -1.9,-5.12 -2.52,-5.46 -7.04,-7.22 -5.8,-3.88 -19.54,-4.09 -1.81,-1.52 -5.33,-18.59 -0.66,-3.2 -0.33,-3.31 0.19,-3.27 0.9,-2.72 1.19,-2.35 2.31,-3.44 0.83,-1.71 0.66,-2.18 0.13,-2.24 -6.25,-1.11 -29.64,11.01 -5.17,2.07 -1.74,-0.94 -1.57,-1.91 -1.98,-5.76 -1.25,-2.69 -0.75,-2.84 -0.24,-3.18 2.02,-4.56 1,-5.82 0.17,-10.22 -2.12,-16.4 0.16,-30.82 11.76,-18.66 0.07,-3.08 0.42,-3.49 -17.21,-22.66 -2,-1.9 -4.59,-2.83 -1.89,-2.04 -1.33,-2.49 -0.88,-3.05 -1.2,-6.87 -0.54,-7.21 0.21,-3.53 1.29,-6.09 1,-2.74 3.85,-6.32 -0.04,-1.15 -2.81,-2.59 -1.68,-2.05 -1.45,-2.33 -1.02,-2.57 -0.16,-2.66 0.2,-1.74 -0.75,-1.72 -0.67,-1.13 -5.98,-8.29 -0.93,-2.24 -0.22,-1.69 0.17,-1.14 0.24,-0.56 0.45,-0.47 1.56,-1.32 12.1,-8.24 4.23,-1.95 2.59,-0.84 23.92,-3.41 1.88,0.4 2.67,1.31 2,3.91 1.87,2.48 2.01,1.78 27.4,14.85 3.79,0.28 4.92,-1.04 9.07,-4.88 6.18,-6.33 2.77,-0.18 4.06,1.08 18.26,8.34 3.55,2.55 0.79,0.85 1.25,0.36 1.23,-1.14 2.46,-4 4.32,-8.68 3.07,-1.14 2.43,-0.52 15.9,7.04 6.12,1.98 2.52,-1.52 3.85,-4.21 7.85,-6.73 4.48,-6.36 3.08,-3.1 12.8,-5.19 21.52,1.18 0.78,7.88 -0.17,2.88 -0.63,3.3 -1.83,5.65 -0.6,3.02 -0.27,3.16 0.44,3.25 1.33,2.45 1.89,1.93 2.34,1.5 10.18,4.63 6.16,1.33 3.43,-0.74 3.52,-2.23 4.01,-6.64 1.96,-4.2 2.74,-3.38 3.43,-1.8 7.22,-0.36 5.57,0.58 1.96,0.84 2.03,1.37 1.77,2.07 1.55,2.34 3.5,1.55 5.69,0.41 26.29,-8.66 13.34,-6.71 17.47,-4.6 3.5,-0.12 7.74,1.53 4.19,-2.55 3.79,-6.33 3.73,-16.78 1.89,-14.67 0.2,-2.98 0.72,-1.37 0.74,-1.62 6.45,0.76 7.62,19.81 2.67,2.91 1.42,0.93 15.17,6.23 1.22,0.72 1.31,1.12 0.88,1.12 1.26,2.25 1.1,2.66 0.64,4.26 -0.23,5.69 -2.25,9.69 -0.43,6.57 2.28,7.65 2.29,3.84 2.35,2.92 11.76,11.1 1.35,3.58 0.98,4.39 -0.79,7.18 0.09,3.56 0.61,3.58 2.06,2.39 4.18,4.02 0.8,2.3 -0.25,3.79 -6.13,6.38 -4.57,3.53 -27.88,10.46 -13.79,15.54 -9.14,4.14 -25.71,-4.71 -2.26,3.89 0.63,8.34 13.47,38.3 -1.18,8.46 -14.42,1.15 -10.38,3.92 -6.15,5.48 -8.43,2.67 -15.51,10.2 -47.81,49.17 -2.09,3.1 -0.37,0.9 -0.91,6.11 -0.34,5.4 0.7,5.75 0.51,10.24 -0.26,2.58 -0.92,2.88 -1.17,1.89 -11.55,9.19 -3.05,3.85 -2.08,4.16 -2.12,2.03 -3.55,-0.48 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5827.61,6367.51 0,0 -14.88,-16.11 -1.62,-2.81 -1.37,-3.31 -0.96,-3.18 -2.89,-0.9 -1.89,-0.11 -13.56,7.84 -14.92,-14.11 -3.26,-6.95 -0.67,-2.86 -1.43,-2.37 -3.69,-1.75 -6.65,-1.84 -25.59,0.24 -11.34,4.27 -2.31,1.54 -1.8,2.02 -1.09,2.42 -0.2,10.3 -0.9,2.86 -2.27,4.51 0.29,2.15 0.94,1.81 0.54,1.59 -1.73,0.73 -7.55,-0.25 -2.13,-1.31 -2.17,-2.46 -1.31,-6.28 -1.9,-5.12 -2.52,-5.46 -7.04,-7.22 -5.8,-3.88 -19.54,-4.09 -1.81,-1.52 -5.33,-18.59 -0.66,-3.2 -0.33,-3.31 0.19,-3.27 0.9,-2.72 1.19,-2.35 2.31,-3.44 0.83,-1.71 0.66,-2.18 0.13,-2.24 -6.25,-1.11 -29.64,11.01 -5.17,2.07 -1.74,-0.94 -1.57,-1.91 -1.98,-5.76 -1.25,-2.69 -0.75,-2.84 -0.24,-3.18 2.02,-4.56 1,-5.82 0.17,-10.22 -2.12,-16.4 0.16,-30.82 11.76,-18.66 0.07,-3.08 0.42,-3.49 -17.21,-22.66 -2,-1.9 -4.59,-2.83 -1.89,-2.04 -1.33,-2.49 -0.88,-3.05 -1.2,-6.87 -0.54,-7.21 0.21,-3.53 1.29,-6.09 1,-2.74 3.85,-6.32 -0.04,-1.15 -2.81,-2.59 -1.68,-2.05 -1.45,-2.33 -1.02,-2.57 -0.16,-2.66 0.2,-1.74 -0.75,-1.72 -0.67,-1.13 -5.98,-8.29 -0.93,-2.24 -0.22,-1.69 0.17,-1.14 0.24,-0.56 0.45,-0.47 1.56,-1.32 12.1,-8.24 4.23,-1.95 2.59,-0.84 23.92,-3.41 1.88,0.4 2.67,1.31 2,3.91 1.87,2.48 2.01,1.78 27.4,14.85 3.79,0.28 4.92,-1.04 9.07,-4.88 6.18,-6.33 2.77,-0.18 4.06,1.08 18.26,8.34 3.55,2.55 0.79,0.85 1.25,0.36 1.23,-1.14 2.46,-4 4.32,-8.68 3.07,-1.14 2.43,-0.52 15.9,7.04 6.12,1.98 2.52,-1.52 3.85,-4.21 7.85,-6.73 4.48,-6.36 3.08,-3.1 12.8,-5.19 21.52,1.18 0.78,7.88 -0.17,2.88 -0.63,3.3 -1.83,5.65 -0.6,3.02 -0.27,3.16 0.44,3.25 1.33,2.45 1.89,1.93 2.34,1.5 10.18,4.63 6.16,1.33 3.43,-0.74 3.52,-2.23 4.01,-6.64 1.96,-4.2 2.74,-3.38 3.43,-1.8 7.22,-0.36 5.57,0.58 1.96,0.84 2.03,1.37 1.77,2.07 1.55,2.34 3.5,1.55 5.69,0.41 26.29,-8.66 13.34,-6.71 17.47,-4.6 3.5,-0.12 7.74,1.53 4.19,-2.55 3.79,-6.33 3.73,-16.78 1.89,-14.67 0.2,-2.98 0.72,-1.37 0.74,-1.62 6.45,0.76 7.62,19.81 2.67,2.91 1.42,0.93 15.17,6.23 1.22,0.72 1.31,1.12 0.88,1.12 1.26,2.25 1.1,2.66 0.64,4.26 -0.23,5.69 -2.25,9.69 -0.43,6.57 2.28,7.65 2.29,3.84 2.35,2.92 11.76,11.1 1.35,3.58 0.98,4.39 -0.79,7.18 0.09,3.56 0.61,3.58 2.06,2.39 4.18,4.02 0.8,2.3 -0.25,3.79 -6.13,6.38 -4.57,3.53 -27.88,10.46 -13.79,15.54 -9.14,4.14 -25.71,-4.71 -2.26,3.89 0.63,8.34 13.47,38.3 -1.18,8.46 -14.42,1.15 -10.38,3.92 -6.15,5.48 -8.43,2.67 -15.51,10.2 -47.81,49.17 -2.09,3.1 -0.37,0.9 -0.91,6.11 -0.34,5.4 0.7,5.75 0.51,10.24 -0.26,2.58 -0.92,2.88 -1.17,1.89 -11.55,9.19 -3.05,3.85 -2.08,4.16 -2.12,2.03 -3.55,-0.48 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7321" /><path
+               id="path3278" /><path
                d="m 4442.77,7815.2 0,0 -17.44,-58.65 -6.62,-10.62 -8.03,-0.5 -0.8,7.68 3.83,19.58 -3.29,12.84 -5.49,-0.08 -3.23,-9.55 3.47,-15.24 -9.35,-8.44 -10.49,0.22 -10.78,5.97 -10.33,8.45 8.77,25.62 23.07,21.27 26.8,9.85 19.91,-8.4 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4442.77,7815.2 0,0 -17.44,-58.65 -6.62,-10.62 -8.03,-0.5 -0.8,7.68 3.83,19.58 -3.29,12.84 -5.49,-0.08 -3.23,-9.55 3.47,-15.24 -9.35,-8.44 -10.49,0.22 -10.78,5.97 -10.33,8.45 8.77,25.62 23.07,21.27 26.8,9.85 19.91,-8.4 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7323" /><path
+               id="path3280" /><path
                d="m 4468.65,7854.14 0,0 -3.65,-0.13 -4.38,20.07 0.01,2.65 3.26,8.34 43.65,23.06 8.79,9.24 -10.47,-16.1 -29.23,-28.86 -7.98,-18.27 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4468.65,7854.14 0,0 -3.65,-0.13 -4.38,20.07 0.01,2.65 3.26,8.34 43.65,23.06 8.79,9.24 -10.47,-16.1 -29.23,-28.86 -7.98,-18.27 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7325" /><path
+               id="path3282" /><path
                d="m 6068.04,7955.25 0,0 20.74,-11.05 124.17,-118.25 11.86,-7.5 -0.07,-0.26 -8.82,-30.42 -0.1,-0.08 -5.09,-3.96 -6.16,-2.36 0.15,-0.16 12.44,-13.09 6.7,-17.29 -0.2,-0.04 -73.46,-13.92 -14.78,1.05 -11.55,7.05 -14.11,-18.43 -18.39,-12.5 -36.95,-12.78 -41.52,-3.57 -23.57,5.39 -13.15,15.67 8.24,3.76 13,11.36 20.75,6.1 21.85,14.71 5.69,6.97 2.57,32.53 -27.57,44.44 -0.36,28.69 33.17,0.24 12.01,-4.01 -3.88,-8.58 2.06,-6.09 -3.69,-22.07 0.36,-17.7 8.94,19.01 8.08,5.16 26.52,1.82 -3.2,-2.88 -2.44,-3.09 -1.57,-4.18 -0.6,-6.39 22.88,-5.3 -6.32,14.13 6.42,27.84 -3.27,29.58 -10.39,17.82 -14.76,-7.46 -6.56,17.77 -8.23,14.42 -9.64,11.1 -10.99,7.56 -13.17,2.28 -12.8,-3.75 -6.13,-9 6.85,-13.49 0.57,-8.27 -5.36,-3.49 -5.5,-7.3 -4.17,-8.95 -1.36,-8.43 -3.79,-2.6 -22.27,-10.31 0.29,15.08 4.4,9.56 4.76,6.97 1.33,7.27 -4.39,13.32 -4.96,1.16 -5.41,-4.41 -20.31,-10.8 -8.76,-13.58 -8.51,-9.67 -13.61,4.25 3.86,21.81 15.18,37.87 1.83,29.38 -6.97,16.69 -28.58,26.21 -8.9,11.95 5.22,12.96 9.32,11.33 11.81,5.57 12.61,-4.34 6.5,-10.37 15.74,-35.39 8.68,-13.8 18.56,-16.52 44.77,-22.22 25.46,-7.73 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 6068.04,7955.25 0,0 20.74,-11.05 124.17,-118.25 11.86,-7.5 -0.07,-0.26 -8.82,-30.42 -0.1,-0.08 -5.09,-3.96 -6.16,-2.36 0.15,-0.16 12.44,-13.09 6.7,-17.29 -0.2,-0.04 -73.46,-13.92 -14.78,1.05 -11.55,7.05 -14.11,-18.43 -18.39,-12.5 -36.95,-12.78 -41.52,-3.57 -23.57,5.39 -13.15,15.67 8.24,3.76 13,11.36 20.75,6.1 21.85,14.71 5.69,6.97 2.57,32.53 -27.57,44.44 -0.36,28.69 33.17,0.24 12.01,-4.01 -3.88,-8.58 2.06,-6.09 -3.69,-22.07 0.36,-17.7 8.94,19.01 8.08,5.16 26.52,1.82 -3.2,-2.88 -2.44,-3.09 -1.57,-4.18 -0.6,-6.39 22.88,-5.3 -6.32,14.13 6.42,27.84 -3.27,29.58 -10.39,17.82 -14.76,-7.46 -6.56,17.77 -8.23,14.42 -9.64,11.1 -10.99,7.56 -13.17,2.28 -12.8,-3.75 -6.13,-9 6.85,-13.49 0.57,-8.27 -5.36,-3.49 -5.5,-7.3 -4.17,-8.95 -1.36,-8.43 -3.79,-2.6 -22.27,-10.31 0.29,15.08 4.4,9.56 4.76,6.97 1.33,7.27 -4.39,13.32 -4.96,1.16 -5.41,-4.41 -20.31,-10.8 -8.76,-13.58 -8.51,-9.67 -13.61,4.25 3.86,21.81 15.18,37.87 1.83,29.38 -6.97,16.69 -28.58,26.21 -8.9,11.95 5.22,12.96 9.32,11.33 11.81,5.57 12.61,-4.34 6.5,-10.37 15.74,-35.39 8.68,-13.8 18.56,-16.52 44.77,-22.22 25.46,-7.73 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7327" /><path
+               id="path3284" /><path
                d="m 5106.03,8333.04 0,0 28.47,-10.08 147.56,7.78 24.95,-10.46 14.43,9.38 18.84,-3.59 9,-11.98 -15.21,-15.83 -16.39,-4.54 -69.75,2.21 -28.33,8.98 -17.11,1.46 -4.98,-2.5 -6.37,-10.48 -3.57,-3.01 -13.27,-0.69 -16.89,2.35 -6.05,-3.85 -3.26,-15.09 -4.45,8.1 -3.27,-2.3 -5.51,-5.24 -4.06,-1.44 1.69,-9.42 2.86,-4.09 4.16,-1.17 5.37,-0.53 -2.28,-0.7 -1.81,-0.2 -0.83,-1.49 0.45,-4.76 -12.79,6.15 -13.89,-2 -11.27,-8.43 -5.23,-13.11 -11.23,12.86 -13.17,5.86 -23.62,1.02 -10.28,-5.57 -8.23,-13.31 -3.3,-17.21 4.44,-17.32 -9.42,1.41 -3.88,1.49 -4.83,3.85 -4.06,-7.83 4.94,-13.09 -2.56,-13.37 -7.7,-10.02 -10.56,-3.01 5.29,-14.9 5.98,-11.63 1.88,-9.71 -6.94,-9.14 29.38,-18.43 16.01,-3.34 13.51,9.42 -10.04,-0.93 -7.96,3.42 -13.86,11.16 3.6,13.34 5.62,9.86 15.56,16.77 3.7,2.78 7.02,2.64 2.68,2.15 1.78,5.62 -0.08,14.05 1.15,4.67 10.55,9.85 41.17,22.52 -9.15,6.1 -4.12,0.83 -0.38,7.59 11.85,5.09 4.42,-0.12 5.47,-3.88 -0.38,7.59 12.66,-10.16 19.13,6.02 34.34,22.07 -1.54,3.6 -2.21,8.33 -1.51,3.72 6.48,5.38 7.41,3.44 7.99,1.52 8.29,-0.43 0.44,-8.3 -9.63,-3.01 -6.14,-9.2 -3.16,-12.87 -0.84,-14.02 7.41,14.51 2.56,7.62 1.75,8.91 6.29,-10.21 7.26,-9.47 7.42,-3.01 6.79,8.95 7.94,-6.35 6.93,0.63 6.06,5.6 5.29,8.44 2.28,-8.52 3.55,-7.85 4.38,-6.88 11.9,-13.59 2.53,-1.88 2.25,1.33 6.56,1.86 12.43,-0.13 6.5,2.26 6.86,6.89 5.08,9.27 5.81,18.41 5.13,11.24 15.64,17.41 24.85,18.17 25.22,11.05 16.68,-3.88 -7.81,-8.52 0.42,-13.23 5.8,-13.85 8.27,-10.42 28.91,-12.92 8.22,-7.07 -11.05,-22.61 3.61,-16.94 20.32,-28.93 2.52,-11.96 0.7,-12.13 2.37,-9.25 7.48,-3.31 29.08,1.71 0.49,-8.27 -6.14,-0.54 -4.13,-2.15 -7.08,-5.26 21.17,3.24 35.16,-17.3 23,-4.03 17.21,-8.16 24.25,-42.88 18.55,-14.58 -9.67,-7.77 -7.19,-8.52 16.34,1.18 23.46,13.94 13.15,-4.2 -4.31,-13.33 -2.82,-5.34 -4.8,-4.94 7.98,-4.17 4.66,2.94 4.02,3.89 6,-1.24 3.93,-5.41 11,-24.83 9.38,-15.93 10.49,-12.66 12.52,-7.22 15.42,0.75 -0.49,7.58 -5.69,4.8 -8.27,12.19 -5.71,4.63 -0.49,7.58 79.6,21.07 18.71,10.22 31.83,24.95 18.22,7.47 3.25,-5.58 -0.72,-4.89 -4.01,-3.85 -6.39,-2.15 0.46,-6.9 20.55,-8.95 54.79,-40.03 0.52,-7.58 -8.31,-16.98 -3.91,-21.82 -6.79,-20.07 -16.94,-12.16 8.31,-5.5 20.56,-23.08 7.67,-10.9 4.05,-2.55 19.05,-6.61 4.72,-2.96 3.43,-7.3 2.62,-7.98 2.25,-5.1 0.99,-3.92 -0.47,-5.05 0.09,-4.38 2.67,-1.69 9.26,1.47 2.33,-0.67 3.62,-2.72 4.2,-2.14 4.28,-1.32 3.7,-0.38 8.44,-3.85 1.85,-10.49 -3.2,-12.81 -6.71,-10.9 -44.35,-42.05 -5.81,-14.77 6.8,-13.21 12.7,-5.13 12.42,-2.04 5.79,-3.76 5.01,-11.83 10.58,-13.35 11.25,-8.71 6.94,1.95 51.36,-37.18 22.09,-3.44 11.66,-12.62 2.73,-2.28 15.77,2.39 4.89,-0.92 17.25,-8.78 8.24,-2.67 53.29,-0.11 18.17,6.99 6.59,15.9 4.75,3.82 10.67,-1.29 7,-5.83 3.25,-2.71 3.24,-17.83 -4.66,-8.72 -0.74,-0.63 -28.39,-23.69 8.67,-4.21 9.86,-2.65 10.8,-0.58 4.59,0.86 0.03,-0.22 3.1,-30.76 -1.39,-17.42 11.51,-21.03 17.15,-42.14 2.09,-10.93 1.21,-40.73 2.36,-24.62 6.5,-22.59 17.88,-23.72 8.7,-22.67 15.64,-22.44 11.3,-57.01 18.95,-64.22 -0.13,-0.1 -42.73,-31.1 -16.84,-25.59 -16.97,-9.95 -2.99,-15.86 -8.82,-7.6 -44.22,1.03 -25.7,4.6 -28.19,2.19 -1.17,13.42 0.24,8.27 53.2,41.86 21.02,39.76 8.56,24.96 1.57,20.97 -3.2,29.31 -15.74,2.32 -27.75,-3.76 -24.62,10.37 -16.26,-4.64 -12.06,-19.98 -16.77,2.27 -14.59,4.74 -39.71,0.11 -46.22,-6.69 -11.4,14.85 -4.55,14.85 -21.59,33.72 -2.69,24.13 -31.73,10 -18.24,24.82 -11.44,0.96 0.19,-20.71 18.76,-30.11 4.02,-13.63 -19.01,-9.96 -22.8,0.21 -23.5,-5.03 -37.96,-37.23 -10.93,-23.28 -14.1,-14.99 -23.54,-2.53 -11.94,-7.37 -8.74,-9.41 -4.25,-12.81 -2.27,-21.2 -10.78,-27.64 -7.46,-26.22 -7.95,-12.47 -7.2,-7.45 -6.87,-2.86 -33.28,-30.49 -11.52,-4.89 -12.38,2.38 -12.48,6.88 -15.28,5.9 -14.15,2.03 -17.35,-2.75 -10.42,-6.07 -7.21,-7.67 -3.2,-6.04 -5.65,-14.8 -1.73,-5.76 -0.54,-3.23 -0.37,-7.63 -1.81,-11.55 -18.71,-1.13 -8.43,3.28 -1.9,2.34 -4.85,8.5 -9.23,10.59 -4.89,2.08 -4.69,0.36 -5.3,-2.19 -2.77,-2.29 -2.04,-2.39 -1.55,-3.55 -3.67,-2.95 -5.62,-3.24 -2.95,-2.82 -2.23,-2.75 -0.97,-2.85 -1.11,-6.06 -0.37,-2.56 -0.51,-1.9 -0.71,-2.12 -1.11,-2.39 -1.52,-2.42 -2.04,-2.37 -5.79,-4.74 -8.3,-9.06 -18.85,-13.58 -3.63,-3.66 -6.59,-8.91 -2.74,-4.88 -15.92,-18.01 -16.96,-3.91 -16.32,5.87 -3.92,3.24 -1.45,3.72 1.23,2.14 1.64,2.17 4.17,3.46 1.63,2.45 0.77,3.01 -1.84,5.05 -2.58,1.76 -2.71,0.08 -2.08,-1.84 -3.41,-2.09 -5.09,-1.78 -17.94,-1.16 -4.51,-1.05 -6.06,-3.07 -5,-1.68 -10.53,-1.64 -5.32,0.32 -4.66,1.79 -9.96,7.62 -4.77,1.82 -4.73,1.01 -9.38,0.19 -29.05,-8.02 -4.78,-0.08 -3.35,0.55 -3.41,1.84 -1.88,1.45 -1.55,1.94 -1.09,2.94 -0.65,2.55 -0.09,7.69 -2.27,15.47 -5.99,3.49 -16.59,0 -28.36,6.31 -18.93,17.47 -9.36,3.95 -3.62,-0.12 -71.56,14.71 -10.16,-1.96 -10.04,-4.35 -23.72,-2.88 -6.24,0.56 -4.31,1.29 -2.17,2.03 -6.28,9.2 -2.17,2.2 -19.53,9.9 -4.19,3.31 -1.55,2.12 -3.79,3.56 -2.63,3.16 -20.81,14.77 -4.34,2.13 -24.85,13.33 -42.31,8.57 -4.95,2.11 -5.08,7.11 -6.54,12.2 -4.72,6.18 -4.02,2.12 -3.86,0.72 -3.32,-0.49 -5.16,-2.31 -12.63,-11.18 -2.81,-1.85 -4.36,-1.92 -2.82,0.77 -10.96,11.12 -3.78,1.24 -2.88,-0.21 -5.58,-2.37 -9.63,-1.83 -11.27,-6.88 -6.03,-2.54 -3.41,0.09 -8.9,-18.32 -17.09,-12.85 -0.37,-15.62 -5.49,-17.56 -10.29,-2.16 -11.04,-9.13 -12.9,-14.4 -12.83,4.92 -11.13,-3.57 -25.39,-13.77 -14.8,-19.65 -18.43,3.89 -5.7,-2.47 -5.85,-4 13.86,-10.19 2.7,-15.49 -20.83,0.91 -14.54,-0.57 -14.33,-5.75 -13.16,-9.17 -9.04,18.71 -21.79,16.64 -7.97,2.52 -22.83,-2.23 -35.84,-15.07 -12.82,-9.1 -28.55,-28.36 -3.76,-11.09 2.06,-8.3 5.27,-5.45 3.85,-6.08 2.35,-7.69 2.43,-18.67 3.18,-7.83 -4,-18 -13.16,-10.86 -17.63,-2.35 -18.06,9.76 -19.08,9.74 -21.85,-0.74 -10.23,-5.54 -1.68,-12.18 -0.52,-15.61 -12.55,1.32 -15.84,6.4 -21.86,-0.71 -15.72,2.95 -14.52,-2.19 -8.54,14.35 -4.62,5.95 -10.99,6.16 -5.17,7.38 -5.26,4.55 -6.67,-4.69 -8.49,-9.76 -4.71,0.37 -7.26,12.21 -5.52,7.37 -4.05,7.21 -4.12,5.89 -5.7,3.16 -8.45,-1.58 -6.74,-5.84 -5.28,-6.25 -10.26,-7.38 -6.15,-8.24 -6.74,-5.02 -8.03,5.11 -6.6,7.06 -19.07,11.56 -75.3,66.99 -61.61,33.61 -21.74,16.73 -14.17,19.46 -7.97,7.36 -12.96,2.7 -11.06,5.86 -3.56,14.66 -0.64,17.93 -2.21,15.71 -14.98,17.84 -22.9,5.41 -49.35,-3.2 6.99,10.28 6.48,11.36 2.21,7.01 0.82,4.79 -0.38,3.21 -0.28,3.39 0.35,6.91 4.66,35.22 0.86,2.95 2.6,3.51 4.14,3.4 9.15,4.93 5.22,1.33 3.71,0.23 7.82,-2.66 3.06,1.05 2.31,2.7 1.6,5.96 0.83,4.42 1.89,6.92 1.69,2.51 2.53,1.93 11.58,2.15 12.76,5.6 6.76,1.35 3.15,1.43 29.06,24.37 10.13,6.26 1.39,1.91 -0.82,3.72 0.23,3.34 0.96,6.32 0.13,3.11 1.03,3.85 4.26,10.52 0.51,4.16 -0.2,3.59 -1.59,5.88 -1.88,9.18 -0.28,3.1 0.84,2.96 2.31,2.07 5.44,0.14 5.56,-2.93 2.38,-0.77 2.98,-0.1 30.2,5.4 2.77,-0.07 2.49,-0.88 2.31,-1.78 1.6,-2.14 1.3,-2.56 1.09,-2.55 0.9,-2.86 0.9,-6.5 0.7,-3.09 1.5,-2.17 1.99,-1.5 2.94,1.34 2.99,3.36 3.89,8.11 3.51,3.2 2.29,2.59 0.68,1.52 -2.31,1.86 -5.06,0.9 -0.74,0.98 4.75,2.78 2.21,1.84 0.38,4.79 -0.91,7.11 -8.83,29.84 -1.04,19.24 5.17,2.44 3.48,3.98 1.09,2.65 0.61,2.78 -0.09,3.04 -0.29,3.05 0.25,3.43 0.13,2.99 -0.29,2.84 -0.83,2.82 -5.92,10.4 -0.82,3.54 -0.3,3.53 0.33,3.12 -0.19,3.27 -1.95,3.83 -3.2,4.54 -8.73,8.37 -7.19,4.63 -12.64,4.27 -6.17,0.93 -4.92,-0.05 -8.74,-2.56 -5.4,2.88 -7.33,6.42 -14.64,18.41 -5.34,8.66 -5.28,6.42 -2.51,2.16 -18.46,4.71 -5.83,-0.18 -5.54,0.84 -1.36,1.29 -0.75,1.42 0.33,3.06 5.3,25.38 1.21,9 0.62,11.9 -2.66,12.61 -1.82,7.26 -1.67,9.6 -0.88,2.82 -5.94,12.8 -0.98,2.68 -0.47,2.6 -0.06,2.33 0.15,2.36 1.6,9.56 0.84,2.99 4.8,12.05 2.38,2.62 3.6,2.97 13.13,6.37 12.64,8.43 31.43,31.07 15.41,10.76 2.33,0.32 1.95,-0.32 2.17,-1.21 8.15,-2.48 0.75,-1.42 -0.05,-1.73 -0.76,-2.09 -0.56,-2.09 -0.05,-1.72 0.57,-2.23 1.37,-1.75 1.25,-1.06 0.72,-0.38 0.83,-0.27 3.15,0.09 18.04,3.89 3.49,2.57 2.51,2.6 1.46,1.19 1.01,0.48 1.35,0.36 0.49,0.56 -0.54,1.13 -26.63,7.73 -1.35,0.83 -1.98,1.67 -3.11,1.93 -2.25,4.08 -2.22,3.16 -0.57,28.98 0.93,4.51 7.71,-0.31 3.23,0.78 8.26,6.84 18.69,20.71 10.66,4.55 12.32,2.94 34.45,19.83 79.28,12.92 5.86,-2.06 4.73,-6.13 4.72,-15.59 4.91,-7.58 23.48,-5.71 3.77,-5.52 -2.22,-25.47 1.86,-11.48 8.4,-4.62 19.64,-0.64 5.38,1.44 25.74,23.68 5.16,-3.25 7.31,-15.55 4.19,-3.49 27.26,0.92 0.42,-3.44 26.26,-30.99 5.11,-3.13 7.43,0.23 0.51,11.76 6.03,18.1 4.31,22.43 -3.58,17.77 4.63,8.33 6.2,5.17 5.44,1.57 -1.43,4.96 -2.14,12.5 -1.3,5.16 21.57,23.61 -0.3,8.28 -4.5,-0.16 -0.24,6.9 16.96,-6.39 5.65,0.29 12.91,10.31 10.59,29.94 8.56,6.56 5.27,2.04 4.08,5.07 3.12,7.17 2.53,8.38 0.16,5.53 -4.97,3.73 -0.21,5.75 1.88,5.71 2.56,3.98 2.39,3.02 14.97,29.89 20.24,15.27 25.39,4.63 54.93,-7.57 154.15,39.99 23.82,16.81 4.67,-31.75 -1.11,-31.03 2.6,-26.17 15.95,-17.29 -6.87,13.14 -4.48,28.79 -3.95,10.66 6.28,13.29 18.28,11.51 4.93,15.22 -7.38,0.45 -6.99,-1.57 -6.55,-3.17 -5.88,-4.49 4.5,10.65 20.88,30.12 12.67,12.54 14.28,26.73 8.88,6.39 8.37,2.91 47.92,29.02 23.64,21.87 9.1,11.9 21.28,46.66 36.31,58.49 3.74,10.9 24.44,47.89 8.86,29.71 6.88,10.02 12.95,7.39 0.35,-6.9 -4.45,-0.22 14.91,-21.6 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5106.03,8333.04 0,0 28.47,-10.08 147.56,7.78 24.95,-10.46 14.43,9.38 18.84,-3.59 9,-11.98 -15.21,-15.83 -16.39,-4.54 -69.75,2.21 -28.33,8.98 -17.11,1.46 -4.98,-2.5 -6.37,-10.48 -3.57,-3.01 -13.27,-0.69 -16.89,2.35 -6.05,-3.85 -3.26,-15.09 -4.45,8.1 -3.27,-2.3 -5.51,-5.24 -4.06,-1.44 1.69,-9.42 2.86,-4.09 4.16,-1.17 5.37,-0.53 -2.28,-0.7 -1.81,-0.2 -0.83,-1.49 0.45,-4.76 -12.79,6.15 -13.89,-2 -11.27,-8.43 -5.23,-13.11 -11.23,12.86 -13.17,5.86 -23.62,1.02 -10.28,-5.57 -8.23,-13.31 -3.3,-17.21 4.44,-17.32 -9.42,1.41 -3.88,1.49 -4.83,3.85 -4.06,-7.83 4.94,-13.09 -2.56,-13.37 -7.7,-10.02 -10.56,-3.01 5.29,-14.9 5.98,-11.63 1.88,-9.71 -6.94,-9.14 29.38,-18.43 16.01,-3.34 13.51,9.42 -10.04,-0.93 -7.96,3.42 -13.86,11.16 3.6,13.34 5.62,9.86 15.56,16.77 3.7,2.78 7.02,2.64 2.68,2.15 1.78,5.62 -0.08,14.05 1.15,4.67 10.55,9.85 41.17,22.52 -9.15,6.1 -4.12,0.83 -0.38,7.59 11.85,5.09 4.42,-0.12 5.47,-3.88 -0.38,7.59 12.66,-10.16 19.13,6.02 34.34,22.07 -1.54,3.6 -2.21,8.33 -1.51,3.72 6.48,5.38 7.41,3.44 7.99,1.52 8.29,-0.43 0.44,-8.3 -9.63,-3.01 -6.14,-9.2 -3.16,-12.87 -0.84,-14.02 7.41,14.51 2.56,7.62 1.75,8.91 6.29,-10.21 7.26,-9.47 7.42,-3.01 6.79,8.95 7.94,-6.35 6.93,0.63 6.06,5.6 5.29,8.44 2.28,-8.52 3.55,-7.85 4.38,-6.88 11.9,-13.59 2.53,-1.88 2.25,1.33 6.56,1.86 12.43,-0.13 6.5,2.26 6.86,6.89 5.08,9.27 5.81,18.41 5.13,11.24 15.64,17.41 24.85,18.17 25.22,11.05 16.68,-3.88 -7.81,-8.52 0.42,-13.23 5.8,-13.85 8.27,-10.42 28.91,-12.92 8.22,-7.07 -11.05,-22.61 3.61,-16.94 20.32,-28.93 2.52,-11.96 0.7,-12.13 2.37,-9.25 7.48,-3.31 29.08,1.71 0.49,-8.27 -6.14,-0.54 -4.13,-2.15 -7.08,-5.26 21.17,3.24 35.16,-17.3 23,-4.03 17.21,-8.16 24.25,-42.88 18.55,-14.58 -9.67,-7.77 -7.19,-8.52 16.34,1.18 23.46,13.94 13.15,-4.2 -4.31,-13.33 -2.82,-5.34 -4.8,-4.94 7.98,-4.17 4.66,2.94 4.02,3.89 6,-1.24 3.93,-5.41 11,-24.83 9.38,-15.93 10.49,-12.66 12.52,-7.22 15.42,0.75 -0.49,7.58 -5.69,4.8 -8.27,12.19 -5.71,4.63 -0.49,7.58 79.6,21.07 18.71,10.22 31.83,24.95 18.22,7.47 3.25,-5.58 -0.72,-4.89 -4.01,-3.85 -6.39,-2.15 0.46,-6.9 20.55,-8.95 54.79,-40.03 0.52,-7.58 -8.31,-16.98 -3.91,-21.82 -6.79,-20.07 -16.94,-12.16 8.31,-5.5 20.56,-23.08 7.67,-10.9 4.05,-2.55 19.05,-6.61 4.72,-2.96 3.43,-7.3 2.62,-7.98 2.25,-5.1 0.99,-3.92 -0.47,-5.05 0.09,-4.38 2.67,-1.69 9.26,1.47 2.33,-0.67 3.62,-2.72 4.2,-2.14 4.28,-1.32 3.7,-0.38 8.44,-3.85 1.85,-10.49 -3.2,-12.81 -6.71,-10.9 -44.35,-42.05 -5.81,-14.77 6.8,-13.21 12.7,-5.13 12.42,-2.04 5.79,-3.76 5.01,-11.83 10.58,-13.35 11.25,-8.71 6.94,1.95 51.36,-37.18 22.09,-3.44 11.66,-12.62 2.73,-2.28 15.77,2.39 4.89,-0.92 17.25,-8.78 8.24,-2.67 53.29,-0.11 18.17,6.99 6.59,15.9 4.75,3.82 10.67,-1.29 7,-5.83 3.25,-2.71 3.24,-17.83 -4.66,-8.72 -0.74,-0.63 -28.39,-23.69 8.67,-4.21 9.86,-2.65 10.8,-0.58 4.59,0.86 0.03,-0.22 3.1,-30.76 -1.39,-17.42 11.51,-21.03 17.15,-42.14 2.09,-10.93 1.21,-40.73 2.36,-24.62 6.5,-22.59 17.88,-23.72 8.7,-22.67 15.64,-22.44 11.3,-57.01 18.95,-64.22 -0.13,-0.1 -42.73,-31.1 -16.84,-25.59 -16.97,-9.95 -2.99,-15.86 -8.82,-7.6 -44.22,1.03 -25.7,4.6 -28.19,2.19 -1.17,13.42 0.24,8.27 53.2,41.86 21.02,39.76 8.56,24.96 1.57,20.97 -3.2,29.31 -15.74,2.32 -27.75,-3.76 -24.62,10.37 -16.26,-4.64 -12.06,-19.98 -16.77,2.27 -14.59,4.74 -39.71,0.11 -46.22,-6.69 -11.4,14.85 -4.55,14.85 -21.59,33.72 -2.69,24.13 -31.73,10 -18.24,24.82 -11.44,0.96 0.19,-20.71 18.76,-30.11 4.02,-13.63 -19.01,-9.96 -22.8,0.21 -23.5,-5.03 -37.96,-37.23 -10.93,-23.28 -14.1,-14.99 -23.54,-2.53 -11.94,-7.37 -8.74,-9.41 -4.25,-12.81 -2.27,-21.2 -10.78,-27.64 -7.46,-26.22 -7.95,-12.47 -7.2,-7.45 -6.87,-2.86 -33.28,-30.49 -11.52,-4.89 -12.38,2.38 -12.48,6.88 -15.28,5.9 -14.15,2.03 -17.35,-2.75 -10.42,-6.07 -7.21,-7.67 -3.2,-6.04 -5.65,-14.8 -1.73,-5.76 -0.54,-3.23 -0.37,-7.63 -1.81,-11.55 -18.71,-1.13 -8.43,3.28 -1.9,2.34 -4.85,8.5 -9.23,10.59 -4.89,2.08 -4.69,0.36 -5.3,-2.19 -2.77,-2.29 -2.04,-2.39 -1.55,-3.55 -3.67,-2.95 -5.62,-3.24 -2.95,-2.82 -2.23,-2.75 -0.97,-2.85 -1.11,-6.06 -0.37,-2.56 -0.51,-1.9 -0.71,-2.12 -1.11,-2.39 -1.52,-2.42 -2.04,-2.37 -5.79,-4.74 -8.3,-9.06 -18.85,-13.58 -3.63,-3.66 -6.59,-8.91 -2.74,-4.88 -15.92,-18.01 -16.96,-3.91 -16.32,5.87 -3.92,3.24 -1.45,3.72 1.23,2.14 1.64,2.17 4.17,3.46 1.63,2.45 0.77,3.01 -1.84,5.05 -2.58,1.76 -2.71,0.08 -2.08,-1.84 -3.41,-2.09 -5.09,-1.78 -17.94,-1.16 -4.51,-1.05 -6.06,-3.07 -5,-1.68 -10.53,-1.64 -5.32,0.32 -4.66,1.79 -9.96,7.62 -4.77,1.82 -4.73,1.01 -9.38,0.19 -29.05,-8.02 -4.78,-0.08 -3.35,0.55 -3.41,1.84 -1.88,1.45 -1.55,1.94 -1.09,2.94 -0.65,2.55 -0.09,7.69 -2.27,15.47 -5.99,3.49 -16.59,0 -28.36,6.31 -18.93,17.47 -9.36,3.95 -3.62,-0.12 -71.56,14.71 -10.16,-1.96 -10.04,-4.35 -23.72,-2.88 -6.24,0.56 -4.31,1.29 -2.17,2.03 -6.28,9.2 -2.17,2.2 -19.53,9.9 -4.19,3.31 -1.55,2.12 -3.79,3.56 -2.63,3.16 -20.81,14.77 -4.34,2.13 -24.85,13.33 -42.31,8.57 -4.95,2.11 -5.08,7.11 -6.54,12.2 -4.72,6.18 -4.02,2.12 -3.86,0.72 -3.32,-0.49 -5.16,-2.31 -12.63,-11.18 -2.81,-1.85 -4.36,-1.92 -2.82,0.77 -10.96,11.12 -3.78,1.24 -2.88,-0.21 -5.58,-2.37 -9.63,-1.83 -11.27,-6.88 -6.03,-2.54 -3.41,0.09 -8.9,-18.32 -17.09,-12.85 -0.37,-15.62 -5.49,-17.56 -10.29,-2.16 -11.04,-9.13 -12.9,-14.4 -12.83,4.92 -11.13,-3.57 -25.39,-13.77 -14.8,-19.65 -18.43,3.89 -5.7,-2.47 -5.85,-4 13.86,-10.19 2.7,-15.49 -20.83,0.91 -14.54,-0.57 -14.33,-5.75 -13.16,-9.17 -9.04,18.71 -21.79,16.64 -7.97,2.52 -22.83,-2.23 -35.84,-15.07 -12.82,-9.1 -28.55,-28.36 -3.76,-11.09 2.06,-8.3 5.27,-5.45 3.85,-6.08 2.35,-7.69 2.43,-18.67 3.18,-7.83 -4,-18 -13.16,-10.86 -17.63,-2.35 -18.06,9.76 -19.08,9.74 -21.85,-0.74 -10.23,-5.54 -1.68,-12.18 -0.52,-15.61 -12.55,1.32 -15.84,6.4 -21.86,-0.71 -15.72,2.95 -14.52,-2.19 -8.54,14.35 -4.62,5.95 -10.99,6.16 -5.17,7.38 -5.26,4.55 -6.67,-4.69 -8.49,-9.76 -4.71,0.37 -7.26,12.21 -5.52,7.37 -4.05,7.21 -4.12,5.89 -5.7,3.16 -8.45,-1.58 -6.74,-5.84 -5.28,-6.25 -10.26,-7.38 -6.15,-8.24 -6.74,-5.02 -8.03,5.11 -6.6,7.06 -19.07,11.56 -75.3,66.99 -61.61,33.61 -21.74,16.73 -14.17,19.46 -7.97,7.36 -12.96,2.7 -11.06,5.86 -3.56,14.66 -0.64,17.93 -2.21,15.71 -14.98,17.84 -22.9,5.41 -49.35,-3.2 6.99,10.28 6.48,11.36 2.21,7.01 0.82,4.79 -0.38,3.21 -0.28,3.39 0.35,6.91 4.66,35.22 0.86,2.95 2.6,3.51 4.14,3.4 9.15,4.93 5.22,1.33 3.71,0.23 7.82,-2.66 3.06,1.05 2.31,2.7 1.6,5.96 0.83,4.42 1.89,6.92 1.69,2.51 2.53,1.93 11.58,2.15 12.76,5.6 6.76,1.35 3.15,1.43 29.06,24.37 10.13,6.26 1.39,1.91 -0.82,3.72 0.23,3.34 0.96,6.32 0.13,3.11 1.03,3.85 4.26,10.52 0.51,4.16 -0.2,3.59 -1.59,5.88 -1.88,9.18 -0.28,3.1 0.84,2.96 2.31,2.07 5.44,0.14 5.56,-2.93 2.38,-0.77 2.98,-0.1 30.2,5.4 2.77,-0.07 2.49,-0.88 2.31,-1.78 1.6,-2.14 1.3,-2.56 1.09,-2.55 0.9,-2.86 0.9,-6.5 0.7,-3.09 1.5,-2.17 1.99,-1.5 2.94,1.34 2.99,3.36 3.89,8.11 3.51,3.2 2.29,2.59 0.68,1.52 -2.31,1.86 -5.06,0.9 -0.74,0.98 4.75,2.78 2.21,1.84 0.38,4.79 -0.91,7.11 -8.83,29.84 -1.04,19.24 5.17,2.44 3.48,3.98 1.09,2.65 0.61,2.78 -0.09,3.04 -0.29,3.05 0.25,3.43 0.13,2.99 -0.29,2.84 -0.83,2.82 -5.92,10.4 -0.82,3.54 -0.3,3.53 0.33,3.12 -0.19,3.27 -1.95,3.83 -3.2,4.54 -8.73,8.37 -7.19,4.63 -12.64,4.27 -6.17,0.93 -4.92,-0.05 -8.74,-2.56 -5.4,2.88 -7.33,6.42 -14.64,18.41 -5.34,8.66 -5.28,6.42 -2.51,2.16 -18.46,4.71 -5.83,-0.18 -5.54,0.84 -1.36,1.29 -0.75,1.42 0.33,3.06 5.3,25.38 1.21,9 0.62,11.9 -2.66,12.61 -1.82,7.26 -1.67,9.6 -0.88,2.82 -5.94,12.8 -0.98,2.68 -0.47,2.6 -0.06,2.33 0.15,2.36 1.6,9.56 0.84,2.99 4.8,12.05 2.38,2.62 3.6,2.97 13.13,6.37 12.64,8.43 31.43,31.07 15.41,10.76 2.33,0.32 1.95,-0.32 2.17,-1.21 8.15,-2.48 0.75,-1.42 -0.05,-1.73 -0.76,-2.09 -0.56,-2.09 -0.05,-1.72 0.57,-2.23 1.37,-1.75 1.25,-1.06 0.72,-0.38 0.83,-0.27 3.15,0.09 18.04,3.89 3.49,2.57 2.51,2.6 1.46,1.19 1.01,0.48 1.35,0.36 0.49,0.56 -0.54,1.13 -26.63,7.73 -1.35,0.83 -1.98,1.67 -3.11,1.93 -2.25,4.08 -2.22,3.16 -0.57,28.98 0.93,4.51 7.71,-0.31 3.23,0.78 8.26,6.84 18.69,20.71 10.66,4.55 12.32,2.94 34.45,19.83 79.28,12.92 5.86,-2.06 4.73,-6.13 4.72,-15.59 4.91,-7.58 23.48,-5.71 3.77,-5.52 -2.22,-25.47 1.86,-11.48 8.4,-4.62 19.64,-0.64 5.38,1.44 25.74,23.68 5.16,-3.25 7.31,-15.55 4.19,-3.49 27.26,0.92 0.42,-3.44 26.26,-30.99 5.11,-3.13 7.43,0.23 0.51,11.76 6.03,18.1 4.31,22.43 -3.58,17.77 4.63,8.33 6.2,5.17 5.44,1.57 -1.43,4.96 -2.14,12.5 -1.3,5.16 21.57,23.61 -0.3,8.28 -4.5,-0.16 -0.24,6.9 16.96,-6.39 5.65,0.29 12.91,10.31 10.59,29.94 8.56,6.56 5.27,2.04 4.08,5.07 3.12,7.17 2.53,8.38 0.16,5.53 -4.97,3.73 -0.21,5.75 1.88,5.71 2.56,3.98 2.39,3.02 14.97,29.89 20.24,15.27 25.39,4.63 54.93,-7.57 154.15,39.99 23.82,16.81 4.67,-31.75 -1.11,-31.03 2.6,-26.17 15.95,-17.29 -6.87,13.14 -4.48,28.79 -3.95,10.66 6.28,13.29 18.28,11.51 4.93,15.22 -7.38,0.45 -6.99,-1.57 -6.55,-3.17 -5.88,-4.49 4.5,10.65 20.88,30.12 12.67,12.54 14.28,26.73 8.88,6.39 8.37,2.91 47.92,29.02 23.64,21.87 9.1,11.9 21.28,46.66 36.31,58.49 3.74,10.9 24.44,47.89 8.86,29.71 6.88,10.02 12.95,7.39 0.35,-6.9 -4.45,-0.22 14.91,-21.6 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7329" /><path
+               id="path3286" /><path
                d="m 5492.09,8494.43 0,0 0.45,-1.36 -0.31,-1.58 -0.14,2.94 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5492.09,8494.43 0,0 0.45,-1.36 -0.31,-1.58 -0.14,2.94 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7331" /><path
+               id="path3288" /><path
                d="m 5492.09,8494.43 0,0 -0.48,1.35 -1.87,2.25 -2.72,0.07 0.9,-15.16 -4.01,-0.24 -1.34,22.75 -15.05,-13.97 -2.67,-18.4 0.67,-21.61 -4.97,-23.47 -4.25,-6.41 -8.72,-8.55 -3.38,-8.85 -1.78,-11.02 -0.49,-11.19 0.49,-23.57 -4.41,-0.26 -0.88,15.17 0.32,25.73 16.04,74.23 2.66,28.28 4.25,8.12 10.44,3.38 8.88,0.99 7.24,-0.79 4.49,-6.3 0.64,-12.53 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5492.09,8494.43 0,0 -0.48,1.35 -1.87,2.25 -2.72,0.07 0.9,-15.16 -4.01,-0.24 -1.34,22.75 -15.05,-13.97 -2.67,-18.4 0.67,-21.61 -4.97,-23.47 -4.25,-6.41 -8.72,-8.55 -3.38,-8.85 -1.78,-11.02 -0.49,-11.19 0.49,-23.57 -4.41,-0.26 -0.88,15.17 0.32,25.73 16.04,74.23 2.66,28.28 4.25,8.12 10.44,3.38 8.88,0.99 7.24,-0.79 4.49,-6.3 0.64,-12.53 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7333" /><path
+               id="path3290" /><path
                d="m 5638.6,8573.36 0,0 -4.05,-16.06 3.17,-19.55 6.52,-15.43 9.21,-11.76 11.49,-8.5 27.54,-7.43 82.64,21.43 29.23,-4.36 20.93,-20.39 6.11,-28.36 -15.12,-28.03 -27.37,-21.1 -13.34,-14.78 -5.03,-16.65 3.59,-18.48 7.03,-19.13 8.35,-16.07 7.37,-9.38 13.74,-6.19 31.18,-5.41 14.22,-8.77 19.36,-30.49 12.05,-13.85 16.45,-5.09 -8.37,-6.82 -7.74,-11.11 -5.48,-14.88 -1.3,-18.26 1.18,-17.64 -1.55,-7.14 -6.76,0.15 -14.62,4.1 7.7,0.52 5.82,3.82 2.12,7.59 -3.42,11.77 -4.43,-0.3 -6.23,-7.74 -9.8,-4.43 -10.37,-0.84 -8.24,3.09 -0.5,7.58 23.43,11.94 9.48,8.65 4.59,13.06 -33.69,-4.55 -14.76,-5.76 -12.21,-9.63 34.15,27.64 11.81,5.89 -0.51,7.61 -17.49,0.51 -9.03,-1.52 -6.07,-4.99 -8.02,-10.83 -5.7,2.11 -5.55,7.02 -7.56,3.77 -64.2,-11.79 -11.14,-8.12 -32.43,-32.62 -6.56,-11.95 -6.49,-17.56 -15.73,-4.3 -13.82,-8.41 -0.75,-29.86 8.44,8.14 -0.14,5.58 -1.48,1.47 -1.79,0 -1.17,0.97 30.77,7.39 4.56,-1.73 6.37,-25.09 -0.61,-11.81 -9.99,-5.61 -18.76,1.74 -21.08,6.02 -23.98,13.81 4.75,6.2 2.7,13.34 5.71,17.39 -9.2,-6.3 -4,-4.6 -3.61,-6.07 2.78,-2.95 2.08,-3.68 -13.09,0.47 -6.74,-1.85 -4.54,-4.25 -5.63,-3.46 -6.75,3.98 -6.41,6.07 -4.3,3.08 -9.63,1.21 -11.86,4.88 -7.63,9.17 2.85,14.36 -9.62,2.36 -19.31,-11.03 -6.54,-1.08 -4.91,8.28 3.49,7.75 8.47,3.79 10.19,-3.55 -0.4,6.9 -42.17,28.67 7.57,24.4 11.65,20.43 15.96,8.41 20.63,-11.86 3.98,7.85 7.98,-6.87 8.86,2.17 18.55,14.44 -10.37,0.56 -8.09,6.97 -3.87,10.67 2.31,11.79 -0.41,6.89 -8.86,0.33 -5.19,5.11 -4.48,5.81 -6.73,2.45 -28.29,-9.29 9.78,23.76 4.47,6.26 17.34,5.42 18.86,11.59 13.14,3.19 -0.46,7.58 0.79,0.25 3.81,2.46 3.77,5.41 -18.42,5.86 -8.07,4.76 -5.78,9.57 2.05,2.72 1.96,2.05 0.88,3.66 -1.03,7.75 -18.67,-8.71 -11.43,-1.92 -5.41,4.7 -1.61,3.45 -3.06,0.68 -3.16,2.35 -1.91,8.53 -1.37,9.55 -2.85,5.65 -4.26,2.35 -5.81,-0.4 14.4,8.05 49.05,10.26 10.83,-1.76 3.85,-6.46 7.77,-2.61 7.93,-5.22 4.33,-14.36 3.26,-7.75 4.68,4.49 1.6,12.79 -6.34,16.96 8.49,13.5 10.96,12.99 11.71,10.09 10.58,4.81 -5.73,-23.08 -4.3,-10.12 -5.22,-6.56 4.16,0.41 3.48,-0.51 3.23,-2.34 3.26,-4.98 -2.91,-5.46 -4.98,-16.48 9.33,-0.06 7.42,3.17 5.31,7.31 3.1,12.59 -5.61,1.27 -6.42,4.61 -5.75,1.32 -0.47,7.58 8.33,8.85 8.04,-14.4 12.33,-13.82 8.64,-14.74 -3.12,-17.06 13.97,-17.72 16.49,-4.79 33.28,2.99 -5.34,7.96 5.27,15.08 2.81,4.85 4.09,3.73 -0.53,8.3 -6.1,15.06 -4.02,7.7 -5.41,6 -0.49,7.58 3.53,3 2.01,2.58 2.49,2.03 5.06,1.57 -0.45,6.89 -8.07,-1.04 -4.9,-5.16 -3.69,-6.2 -4.39,-4.2 -7,-1.72 -22.28,-0.15 -3.6,3.35 -4,7.62 -4.93,7.56 -6.37,3.18 -9.84,1.51 -4.38,5.21 -2.7,7.18 -4.72,7.58 -8.22,10.5 -1.69,4.45 -8.25,-7.78 -4.61,-5.59 -9.57,-15.18 -14.59,-10.01 -10.18,-12.73 -11.15,-9.45 -13.21,3.38 -3.06,13.05 3.29,20.72 7.3,19.3 8.6,8.86 1.61,4.85 2.12,10.63 0.87,10.49 -2.26,4.65 -28.36,-9.34 -9.03,-7.18 -4.24,1.01 -0.38,12.95 3.14,7.72 6.45,7.8 7.39,6.1 86.76,31.21 18.03,1.33 17.52,-8.14 0.44,-6.9 -9.39,-8.58 -12.83,-8.54 -11.11,-11.07 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5638.6,8573.36 0,0 -4.05,-16.06 3.17,-19.55 6.52,-15.43 9.21,-11.76 11.49,-8.5 27.54,-7.43 82.64,21.43 29.23,-4.36 20.93,-20.39 6.11,-28.36 -15.12,-28.03 -27.37,-21.1 -13.34,-14.78 -5.03,-16.65 3.59,-18.48 7.03,-19.13 8.35,-16.07 7.37,-9.38 13.74,-6.19 31.18,-5.41 14.22,-8.77 19.36,-30.49 12.05,-13.85 16.45,-5.09 -8.37,-6.82 -7.74,-11.11 -5.48,-14.88 -1.3,-18.26 1.18,-17.64 -1.55,-7.14 -6.76,0.15 -14.62,4.1 7.7,0.52 5.82,3.82 2.12,7.59 -3.42,11.77 -4.43,-0.3 -6.23,-7.74 -9.8,-4.43 -10.37,-0.84 -8.24,3.09 -0.5,7.58 23.43,11.94 9.48,8.65 4.59,13.06 -33.69,-4.55 -14.76,-5.76 -12.21,-9.63 34.15,27.64 11.81,5.89 -0.51,7.61 -17.49,0.51 -9.03,-1.52 -6.07,-4.99 -8.02,-10.83 -5.7,2.11 -5.55,7.02 -7.56,3.77 -64.2,-11.79 -11.14,-8.12 -32.43,-32.62 -6.56,-11.95 -6.49,-17.56 -15.73,-4.3 -13.82,-8.41 -0.75,-29.86 8.44,8.14 -0.14,5.58 -1.48,1.47 -1.79,0 -1.17,0.97 30.77,7.39 4.56,-1.73 6.37,-25.09 -0.61,-11.81 -9.99,-5.61 -18.76,1.74 -21.08,6.02 -23.98,13.81 4.75,6.2 2.7,13.34 5.71,17.39 -9.2,-6.3 -4,-4.6 -3.61,-6.07 2.78,-2.95 2.08,-3.68 -13.09,0.47 -6.74,-1.85 -4.54,-4.25 -5.63,-3.46 -6.75,3.98 -6.41,6.07 -4.3,3.08 -9.63,1.21 -11.86,4.88 -7.63,9.17 2.85,14.36 -9.62,2.36 -19.31,-11.03 -6.54,-1.08 -4.91,8.28 3.49,7.75 8.47,3.79 10.19,-3.55 -0.4,6.9 -42.17,28.67 7.57,24.4 11.65,20.43 15.96,8.41 20.63,-11.86 3.98,7.85 7.98,-6.87 8.86,2.17 18.55,14.44 -10.37,0.56 -8.09,6.97 -3.87,10.67 2.31,11.79 -0.41,6.89 -8.86,0.33 -5.19,5.11 -4.48,5.81 -6.73,2.45 -28.29,-9.29 9.78,23.76 4.47,6.26 17.34,5.42 18.86,11.59 13.14,3.19 -0.46,7.58 0.79,0.25 3.81,2.46 3.77,5.41 -18.42,5.86 -8.07,4.76 -5.78,9.57 2.05,2.72 1.96,2.05 0.88,3.66 -1.03,7.75 -18.67,-8.71 -11.43,-1.92 -5.41,4.7 -1.61,3.45 -3.06,0.68 -3.16,2.35 -1.91,8.53 -1.37,9.55 -2.85,5.65 -4.26,2.35 -5.81,-0.4 14.4,8.05 49.05,10.26 10.83,-1.76 3.85,-6.46 7.77,-2.61 7.93,-5.22 4.33,-14.36 3.26,-7.75 4.68,4.49 1.6,12.79 -6.34,16.96 8.49,13.5 10.96,12.99 11.71,10.09 10.58,4.81 -5.73,-23.08 -4.3,-10.12 -5.22,-6.56 4.16,0.41 3.48,-0.51 3.23,-2.34 3.26,-4.98 -2.91,-5.46 -4.98,-16.48 9.33,-0.06 7.42,3.17 5.31,7.31 3.1,12.59 -5.61,1.27 -6.42,4.61 -5.75,1.32 -0.47,7.58 8.33,8.85 8.04,-14.4 12.33,-13.82 8.64,-14.74 -3.12,-17.06 13.97,-17.72 16.49,-4.79 33.28,2.99 -5.34,7.96 5.27,15.08 2.81,4.85 4.09,3.73 -0.53,8.3 -6.1,15.06 -4.02,7.7 -5.41,6 -0.49,7.58 3.53,3 2.01,2.58 2.49,2.03 5.06,1.57 -0.45,6.89 -8.07,-1.04 -4.9,-5.16 -3.69,-6.2 -4.39,-4.2 -7,-1.72 -22.28,-0.15 -3.6,3.35 -4,7.62 -4.93,7.56 -6.37,3.18 -9.84,1.51 -4.38,5.21 -2.7,7.18 -4.72,7.58 -8.22,10.5 -1.69,4.45 -8.25,-7.78 -4.61,-5.59 -9.57,-15.18 -14.59,-10.01 -10.18,-12.73 -11.15,-9.45 -13.21,3.38 -3.06,13.05 3.29,20.72 7.3,19.3 8.6,8.86 1.61,4.85 2.12,10.63 0.87,10.49 -2.26,4.65 -28.36,-9.34 -9.03,-7.18 -4.24,1.01 -0.38,12.95 3.14,7.72 6.45,7.8 7.39,6.1 86.76,31.21 18.03,1.33 17.52,-8.14 0.44,-6.9 -9.39,-8.58 -12.83,-8.54 -11.11,-11.07 z"
                style="fill:none;stroke:#f5f5f5;stroke-opacity:1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7335" /><path
+               id="path3292" /><path
                d="m 2717.03,706.711 0,0 -21.78,16.32 -27.28,14.789 -29.35,10.532 -102.58,3.226 -6.26,-6.34 -5.29,-9.957 -12.96,-11.992 7.57,-4.859 5.27,-8.121 0.14,-9.411 -7.93,-8.726 -5.6,15.437 -3.24,-10.07 -2.15,-38.738 -4.18,-13.41 -19.97,-27.762 -6.45,-16.238 -15.19,8.82 -12.24,10.059 -13.35,8.281 -18.78,3.508 -47.16,-7.45 -48.1,0.571 -28.39,7.84 -7.37,4.949 -5.22,10.769 -3.94,10.672 -3.92,4.871 -8.69,1.028 -19.5,6.152 -13.58,0 -40.5,-6.371 -4.06,-2.449 -3.73,-5.391 -5.12,-5.371 -13.88,-3.918 -16.36,-8.672 -6.3,-4.73 -6.32,-7.25 -3.19,-5.579 -3.36,-4.789 -7.4,-4.851 -33.96,-7.192 -97.81,1.293 -1.96,4.75 -1.32,10.489 -2.31,10.449 -4.52,4.762 -48.42,3.687 -10.49,5.461 -13.91,-21.18 -12.35,-14.109 -14.26,-7.781 -62.86,-11.989 -16.49,2.508 -38.58,21.25 -15.44,3.211 -3.68,5.949 1.63,12.543 3.41,11.93 1.83,4.039 -1.46,10.61 -3.74,5.91 -4.81,4.242 -4.48,5.699 -16.13,34.141 -9.93,14.386 -11.07,5.993 -2.83,5.211 -2.23,11.976 -1.66,23.981 2.8,6.589 12.77,12.981 4.54,7.32 0.63,18.09 -8.52,39.063 2.31,15.429 11.39,35.75 4.19,5.289 10.27,5.43 1.87,12.32 -3.45,20.739 0.17,4.972 -0.5,2.86 -0.38,2.769 0.99,4.602 2.29,4.918 4.9,4.609 3.21,5.481 4.95,10.98 1.36,4.988 -0.58,18.072 4.47,14.79 20.25,20.72 7.35,13.25 -1.02,34.68 -31.18,57.3 -1.51,45.98 5.05,21.62 5.4,16.79 5.52,9.8 5.21,6.69 3.97,8.7 1.85,15.9 5.04,13.56 48.07,65.03 8.14,16.01 5.03,18.7 1.94,22.58 5.54,23.25 12.11,9.56 13.7,7.19 10.58,16.16 1.16,15.51 -3.56,14.93 -4.65,14.19 -2.13,13.48 1.15,14.5 5.9,29.35 4,12.56 5.22,10.5 4.99,7.11 3.97,10.71 1.78,21.09 3.95,10.04 8.98,8.89 18.73,14.45 0.12,7.6 -8.29,23.66 0.68,38.67 6.8,36.21 31.75,48.1 8.72,5.9 12.21,3.75 11.47,9.74 20.47,23.87 8.77,5.44 10.01,9.44 7.98,10.4 3.42,8.77 1.19,21.21 4,9.8 8.37,2.68 20.64,0.11 5.69,1.77 4.17,3.61 1.7,6.09 1.75,10.56 3.48,5.79 3.45,3.22 1.65,2.77 6.45,0.19 27.08,14.25 4.52,3.74 9.33,15.23 34.25,91.21 23.37,43.03 15.56,17.53 22.23,7.05"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2717.03,706.711 0,0 -21.78,16.32 -27.28,14.789 -29.35,10.532 -102.58,3.226 -6.26,-6.34 -5.29,-9.957 -12.96,-11.992 7.57,-4.859 5.27,-8.121 0.14,-9.411 -7.93,-8.726 -5.6,15.437 -3.24,-10.07 -2.15,-38.738 -4.18,-13.41 -19.97,-27.762 -6.45,-16.238 -15.19,8.82 -12.24,10.059 -13.35,8.281 -18.78,3.508 -47.16,-7.45 -48.1,0.571 -28.39,7.84 -7.37,4.949 -5.22,10.769 -3.94,10.672 -3.92,4.871 -8.69,1.028 -19.5,6.152 -13.58,0 -40.5,-6.371 -4.06,-2.449 -3.73,-5.391 -5.12,-5.371 -13.88,-3.918 -16.36,-8.672 -6.3,-4.73 -6.32,-7.25 -3.19,-5.579 -3.36,-4.789 -7.4,-4.851 -33.96,-7.192 -97.81,1.293 -1.96,4.75 -1.32,10.489 -2.31,10.449 -4.52,4.762 -48.42,3.687 -10.49,5.461 -13.91,-21.18 -12.35,-14.109 -14.26,-7.781 -62.86,-11.989 -16.49,2.508 -38.58,21.25 -15.44,3.211 -3.68,5.949 1.63,12.543 3.41,11.93 1.83,4.039 -1.46,10.61 -3.74,5.91 -4.81,4.242 -4.48,5.699 -16.13,34.141 -9.93,14.386 -11.07,5.993 -2.83,5.211 -2.23,11.976 -1.66,23.981 2.8,6.589 12.77,12.981 4.54,7.32 0.63,18.09 -8.52,39.063 2.31,15.429 11.39,35.75 4.19,5.289 10.27,5.43 1.87,12.32 -3.45,20.739 0.17,4.972 -0.5,2.86 -0.38,2.769 0.99,4.602 2.29,4.918 4.9,4.609 3.21,5.481 4.95,10.98 1.36,4.988 -0.58,18.072 4.47,14.79 20.25,20.72 7.35,13.25 -1.02,34.68 -31.18,57.3 -1.51,45.98 5.05,21.62 5.4,16.79 5.52,9.8 5.21,6.69 3.97,8.7 1.85,15.9 5.04,13.56 48.07,65.03 8.14,16.01 5.03,18.7 1.94,22.58 5.54,23.25 12.11,9.56 13.7,7.19 10.58,16.16 1.16,15.51 -3.56,14.93 -4.65,14.19 -2.13,13.48 1.15,14.5 5.9,29.35 4,12.56 5.22,10.5 4.99,7.11 3.97,10.71 1.78,21.09 3.95,10.04 8.98,8.89 18.73,14.45 0.12,7.6 -8.29,23.66 0.68,38.67 6.8,36.21 31.75,48.1 8.72,5.9 12.21,3.75 11.47,9.74 20.47,23.87 8.77,5.44 10.01,9.44 7.98,10.4 3.42,8.77 1.19,21.21 4,9.8 8.37,2.68 20.64,0.11 5.69,1.77 4.17,3.61 1.7,6.09 1.75,10.56 3.48,5.79 3.45,3.22 1.65,2.77 6.45,0.19 27.08,14.25 4.52,3.74 9.33,15.23 34.25,91.21 23.37,43.03 15.56,17.53 22.23,7.05"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7337" /><path
+               id="path3294" /><path
                d="m 2242.71,2164.52 0,0 23.94,25.27 15.66,23.74 54.68,110.25 3.3,11.1 14.87,105.79 4.95,19.04 7.96,7.99 9.28,4.82 50.69,58.88 2.69,13.96 -17.1,6.22 1.49,9.36 26.47,58.71 0,11.19 -4.59,18.43 -0.64,9.1 1.36,2.16 7.02,17.73 2.21,2.1 -7.7,12.92 -11.55,4.23 -13.26,1.64 -12.35,4.98 0.06,7.6 15.34,7.49 0.05,7.6 -9.58,20.7 -15.9,47.89 -13.77,23.45 6.32,26.9 -11.91,34.49 -17.46,34.29 -10.53,26.09 1.48,29.36 12.33,21.61 19.82,13.2 23.55,4.38 15.79,19.02 9.5,15.13 2.12,11.2 -10.1,4.06 -14.68,-3.29 -13.3,-0.71 -5.61,11.66 -1.45,7.72 -3.62,8.93 -13.32,25.22 -2.39,9.52 -1.5,9.43 -2.71,11.42 -6.96,15.7 -16.22,24.49 -5.31,13.97 11.2,38.37 -13.86,37.93 -76.04,88.06 -10.77,7.04 -8.71,2.21 -19.34,-0.33 -90.06,-29.42 -28.09,-20.89 -34.55,-17.51 -31.12,-9.82 -29.08,-0.57 -12.49,19.11 -1.89,14.04 -5.28,9.09 -45.67,42.75 -13.88,17.25 -5.35,25.07 -3.26,7.66 -15.51,22.93 -4.97,11.49 1.38,23.38 -2.88,15.34 -9.75,7.09 -9.27,2.66 -29.57,13.83 -5.81,6.62 -12.75,32.77 -7.76,13.58 -17.45,16.89 -6.14,10.17 6.7,4.35 23.73,-0.58 10.48,1.9 8.21,5.5 0.14,7.6 -22.39,21.81 -10.33,15.31 -6.12,16.76 -0.16,18.66 4.57,17.43 6.59,18.12 5.44,21.35 -22.33,31 -26.3,7.63 -28.55,0.51 -28.68,9.27 -45.12,28.17 -7.99,-0.51 -37.88,42.66 -42.78,90.06 -18.14,18.36 -13.84,7.25 -6.9,7.55 -2.35,14.4 0.33,27.92 -2.03,19.25 -5.81,20.78 -7.47,19.06 -6.97,13.97 -10.9,12.68 -26.37,21.31 -10.29,12.76 -11.55,26.78 -4.54,4.05 -7.58,2.65 -19.3,12.65 -3.84,4.88 -6.19,23.36 -14.71,16.37 -14.64,12.21 -6.59,10.64 7.97,17.03 35.28,20.79 11.63,17.34 -45.95,13.38 -6.84,7.69 -1.13,11.08 -5.8,17.55 -1.11,9.62 2.88,11.25 12.64,10.33 4.08,11.35 -1.9,8.34 -5.93,6.22 -6.55,5.07 -3.63,5.04 0.29,10.59 4.84,22.36 -1.7,4.23 -10.69,6.17 -38.34,40.8 -23.89,4.98 -4.94,4.14 -0.69,11.62 5.67,6.79 6.96,3.98 3.53,3.78 3.44,15.03 -1.49,7.6 -18.15,8.19 -0.74,10.02 3.9,16.51 -4.68,9.27 -1.57,1.32 -3.23,-1.94 -9.41,-0.48 -10.31,-7.69 -6.22,0.11 -2.49,11.62 -2.74,24.67 -9.33,2.18 -14.05,-4 -16.38,6.02 -5.28,11.57 -2.7,17.75 1.12,16.27 6.26,6.95 5.48,-2.51 5.91,-4.17 6.08,-1.95 6.28,4.42 2.46,8.03 -2.72,5.7 -4.29,4.75 -2.14,4.88 -7.59,6.15 -15.81,6.88 -12.64,10.09 1.53,16.34 14.15,18.85 3.06,8.47 1.32,17.34 -12.55,12.49 -24.29,12.44 -15.02,14.42 15.12,18.81 11.49,2.96 12.59,0.09 11.21,1.88 7.99,8.85 2.75,17.45 -4.31,14.67 -15.78,22.36 0.22,6.84 6.2,8.4 2.63,10.16 -2.28,8.68 -7.95,3.95 -11.37,2.31 -2.65,5.25 2.78,7.25 4.83,8.13 6.92,6.31 7.1,2.68 3.21,4.79 -4.52,12.81 -6.35,8.46 -6.98,6.55 -6.7,7.82 -4.96,12.52 8.27,17.08 -20.39,8.53 -44.08,6.59 0.22,6.84 1.77,12.58 -2.6,20.61 -1.16,19.27 6.63,8.21 3.4,3.53 -2.17,8.12 -4.39,8.4 -2.96,4.39 -6.46,2.12 -22.35,-1.16 -23.12,5.9 -12.82,5.79 -8.42,7.76 -17.9,32.1 -10.3,11.56 -15.1,7.6 5.21,23.05 -8.37,14.43 -15.25,7.53 -15.09,2.45 -14.218,5.08 -7.672,11.7 -5.11,15.08 -6.859,14.99 -22.531,21.22 -132.371,41.97 -10.457,7.84 -8.653,10.79 -13.019,10.94 -14.41,7.25 -12.641,-0.35 -3.34,-5.19 -6.73,-18.67 -5.231,-5.96 -6.398,0.05 -7.668,3.31 -6.371,4.68 -10.082,15.05 -18.028,-6.8 -31.25,-19.79 -10.722,2.91 -20.469,15.72 -10.641,4.54 -4.699,0.21 -17.57,19.87 -30.711,9.35 -120.59,12.38 -56.379,-6.89 -21.762,-18.09 -42.789,-61.22 -25.41,-7.57 -6.269,4.67 -9.141,14.06 -6.508,4.55 -7.82,0.67 -10.949,-5.02 -67.122,-6.45 -18.371,3.36 -27.531,11.91 -14.437,3.17 -73.6918,-2.93"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2242.71,2164.52 0,0 23.94,25.27 15.66,23.74 54.68,110.25 3.3,11.1 14.87,105.79 4.95,19.04 7.96,7.99 9.28,4.82 50.69,58.88 2.69,13.96 -17.1,6.22 1.49,9.36 26.47,58.71 0,11.19 -4.59,18.43 -0.64,9.1 1.36,2.16 7.02,17.73 2.21,2.1 -7.7,12.92 -11.55,4.23 -13.26,1.64 -12.35,4.98 0.06,7.6 15.34,7.49 0.05,7.6 -9.58,20.7 -15.9,47.89 -13.77,23.45 6.32,26.9 -11.91,34.49 -17.46,34.29 -10.53,26.09 1.48,29.36 12.33,21.61 19.82,13.2 23.55,4.38 15.79,19.02 9.5,15.13 2.12,11.2 -10.1,4.06 -14.68,-3.29 -13.3,-0.71 -5.61,11.66 -1.45,7.72 -3.62,8.93 -13.32,25.22 -2.39,9.52 -1.5,9.43 -2.71,11.42 -6.96,15.7 -16.22,24.49 -5.31,13.97 11.2,38.37 -13.86,37.93 -76.04,88.06 -10.77,7.04 -8.71,2.21 -19.34,-0.33 -90.06,-29.42 -28.09,-20.89 -34.55,-17.51 -31.12,-9.82 -29.08,-0.57 -12.49,19.11 -1.89,14.04 -5.28,9.09 -45.67,42.75 -13.88,17.25 -5.35,25.07 -3.26,7.66 -15.51,22.93 -4.97,11.49 1.38,23.38 -2.88,15.34 -9.75,7.09 -9.27,2.66 -29.57,13.83 -5.81,6.62 -12.75,32.77 -7.76,13.58 -17.45,16.89 -6.14,10.17 6.7,4.35 23.73,-0.58 10.48,1.9 8.21,5.5 0.14,7.6 -22.39,21.81 -10.33,15.31 -6.12,16.76 -0.16,18.66 4.57,17.43 6.59,18.12 5.44,21.35 -22.33,31 -26.3,7.63 -28.55,0.51 -28.68,9.27 -45.12,28.17 -7.99,-0.51 -37.88,42.66 -42.78,90.06 -18.14,18.36 -13.84,7.25 -6.9,7.55 -2.35,14.4 0.33,27.92 -2.03,19.25 -5.81,20.78 -7.47,19.06 -6.97,13.97 -10.9,12.68 -26.37,21.31 -10.29,12.76 -11.55,26.78 -4.54,4.05 -7.58,2.65 -19.3,12.65 -3.84,4.88 -6.19,23.36 -14.71,16.37 -14.64,12.21 -6.59,10.64 7.97,17.03 35.28,20.79 11.63,17.34 -45.95,13.38 -6.84,7.69 -1.13,11.08 -5.8,17.55 -1.11,9.62 2.88,11.25 12.64,10.33 4.08,11.35 -1.9,8.34 -5.93,6.22 -6.55,5.07 -3.63,5.04 0.29,10.59 4.84,22.36 -1.7,4.23 -10.69,6.17 -38.34,40.8 -23.89,4.98 -4.94,4.14 -0.69,11.62 5.67,6.79 6.96,3.98 3.53,3.78 3.44,15.03 -1.49,7.6 -18.15,8.19 -0.74,10.02 3.9,16.51 -4.68,9.27 -1.57,1.32 -3.23,-1.94 -9.41,-0.48 -10.31,-7.69 -6.22,0.11 -2.49,11.62 -2.74,24.67 -9.33,2.18 -14.05,-4 -16.38,6.02 -5.28,11.57 -2.7,17.75 1.12,16.27 6.26,6.95 5.48,-2.51 5.91,-4.17 6.08,-1.95 6.28,4.42 2.46,8.03 -2.72,5.7 -4.29,4.75 -2.14,4.88 -7.59,6.15 -15.81,6.88 -12.64,10.09 1.53,16.34 14.15,18.85 3.06,8.47 1.32,17.34 -12.55,12.49 -24.29,12.44 -15.02,14.42 15.12,18.81 11.49,2.96 12.59,0.09 11.21,1.88 7.99,8.85 2.75,17.45 -4.31,14.67 -15.78,22.36 0.22,6.84 6.2,8.4 2.63,10.16 -2.28,8.68 -7.95,3.95 -11.37,2.31 -2.65,5.25 2.78,7.25 4.83,8.13 6.92,6.31 7.1,2.68 3.21,4.79 -4.52,12.81 -6.35,8.46 -6.98,6.55 -6.7,7.82 -4.96,12.52 8.27,17.08 -20.39,8.53 -44.08,6.59 0.22,6.84 1.77,12.58 -2.6,20.61 -1.16,19.27 6.63,8.21 3.4,3.53 -2.17,8.12 -4.39,8.4 -2.96,4.39 -6.46,2.12 -22.35,-1.16 -23.12,5.9 -12.82,5.79 -8.42,7.76 -17.9,32.1 -10.3,11.56 -15.1,7.6 5.21,23.05 -8.37,14.43 -15.25,7.53 -15.09,2.45 -14.218,5.08 -7.672,11.7 -5.11,15.08 -6.859,14.99 -22.531,21.22 -132.371,41.97 -10.457,7.84 -8.653,10.79 -13.019,10.94 -14.41,7.25 -12.641,-0.35 -3.34,-5.19 -6.73,-18.67 -5.231,-5.96 -6.398,0.05 -7.668,3.31 -6.371,4.68 -10.082,15.05 -18.028,-6.8 -31.25,-19.79 -10.722,2.91 -20.469,15.72 -10.641,4.54 -4.699,0.21 -17.57,19.87 -30.711,9.35 -120.59,12.38 -56.379,-6.89 -21.762,-18.09 -42.789,-61.22 -25.41,-7.57 -6.269,4.67 -9.141,14.06 -6.508,4.55 -7.82,0.67 -10.949,-5.02 -67.122,-6.45 -18.371,3.36 -27.531,11.91 -14.437,3.17 -73.6918,-2.93"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7339" /><path
+               id="path3296" /><path
                d="m 3123.19,-205.77 0,0 -5.21,-0.019 66.56,32.07 27.25,27.25 15.28,48.2385 -5.44,33.961 -0.02,3.25 -4.24,11.5 -34.46,57.35153 -8.46,18.47657 -5.94,18.5508 -1.31,15.1289 8.74,11.9922 11.6,12.0078 7.13,14.8906 -0.64,23.6801 -6.4,17.703 -8.25,16.039 -6.04,18.281 1.62,37.449 12.7,37.52 36.51,62.66 25.53,31.25 2.9,7.621 3.72,19.648 3.43,9.981 28.89,37.211 7.23,16.937 0.27,47 -21.79,18.981 -28.06,12.59 -22.57,33.34"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3123.19,-205.77 0,0 -5.21,-0.019 66.56,32.07 27.25,27.25 15.28,48.2385 -5.44,33.961 -0.02,3.25 -4.24,11.5 -34.46,57.35153 -8.46,18.47657 -5.94,18.5508 -1.31,15.1289 8.74,11.9922 11.6,12.0078 7.13,14.8906 -0.64,23.6801 -6.4,17.703 -8.25,16.039 -6.04,18.281 1.62,37.449 12.7,37.52 36.51,62.66 25.53,31.25 2.9,7.621 3.72,19.648 3.43,9.981 28.89,37.211 7.23,16.937 0.27,47 -21.79,18.981 -28.06,12.59 -22.57,33.34"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7341" /><path
+               id="path3298" /><path
                d="m 2902.09,722.629 0,0 41.49,0.082"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2902.09,722.629 0,0 41.49,0.082"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7343" /><path
+               id="path3300" /><path
                d="m 691.309,1226.85 0,0 -16.559,0.01 -18.16,3.8 -20.141,8.91 -19.66,-0.14 -16.98,-18.02 -16.809,-22.66 -19.301,-11.27 -16.051,-5.21 -15.668,-15.96 -23.582,-15.36 -12.968,-18.64 -8.321,-20.86 -1.89,-15.28 8.98,-12.59 36.52,-29.92 11.73,-15.2 -2.449,-17.98 -30.051,-43.582 -2.41,-16.679 8.75,-10.129 11.68,-5.488 15.633,-11.891 18.226,-25.441 25.852,-51.668 2.699,-20.411 -1.617,-25.679 -6.012,-25.114 -8.07,-19.179 -11.629,-8.789 -26.332,-2.039 -2.797,-12.93 -1.25,-15.582 -7.582,-8.258 -10.649,2.25 -8.531,9.719 -11.601,3.851 -37.868,-28.242 -24.41,-8.379 -5.441,-7.121 -10.551,-8.398 -44.559,-12.832 -14.14,-12.449 -10.238,-13.84 -13.602,-10.571 -15.68,-5.238 -15.32,-1.051 -9.301,-6.531 -0.98,-18.437 -4.867,-23.231 -18.481,-18.289 -58.902,-23.453 -20.11,-16.699 -17.679,-21.969 -10.7,-20.391 -3.531,-18.871 -0.539,-18.179 -5.672,-15.168 -35.488,-24.563 -14.07,-18.519 -9.9105,-16.528 -13.4804,-13.383 7.1718,-25.07 0.5703,-15.719 -7.4023,-18.078 -14.5703,-20.461 -12.168,-22.609 -2.0117,-23.363 -4.6406,-22 -19,-19.368 -25.16799,-12.41 -39.94141,-10.461 -52.8906,-26.129 -30.0393,-6.41 -11.609,-11.25 -5.09,-20.0818 3.73,-24.1797 -0.23,-27.3203 -14.602,-27.957 -21.589,-20.34376 -26.289,-13.63674 -4.54,-19.8906 -8.152,-6.3203 -20.168,-9.9922"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 691.309,1226.85 0,0 -16.559,0.01 -18.16,3.8 -20.141,8.91 -19.66,-0.14 -16.98,-18.02 -16.809,-22.66 -19.301,-11.27 -16.051,-5.21 -15.668,-15.96 -23.582,-15.36 -12.968,-18.64 -8.321,-20.86 -1.89,-15.28 8.98,-12.59 36.52,-29.92 11.73,-15.2 -2.449,-17.98 -30.051,-43.582 -2.41,-16.679 8.75,-10.129 11.68,-5.488 15.633,-11.891 18.226,-25.441 25.852,-51.668 2.699,-20.411 -1.617,-25.679 -6.012,-25.114 -8.07,-19.179 -11.629,-8.789 -26.332,-2.039 -2.797,-12.93 -1.25,-15.582 -7.582,-8.258 -10.649,2.25 -8.531,9.719 -11.601,3.851 -37.868,-28.242 -24.41,-8.379 -5.441,-7.121 -10.551,-8.398 -44.559,-12.832 -14.14,-12.449 -10.238,-13.84 -13.602,-10.571 -15.68,-5.238 -15.32,-1.051 -9.301,-6.531 -0.98,-18.437 -4.867,-23.231 -18.481,-18.289 -58.902,-23.453 -20.11,-16.699 -17.679,-21.969 -10.7,-20.391 -3.531,-18.871 -0.539,-18.179 -5.672,-15.168 -35.488,-24.563 -14.07,-18.519 -9.9105,-16.528 -13.4804,-13.383 7.1718,-25.07 0.5703,-15.719 -7.4023,-18.078 -14.5703,-20.461 -12.168,-22.609 -2.0117,-23.363 -4.6406,-22 -19,-19.368 -25.16799,-12.41 -39.94141,-10.461 -52.8906,-26.129 -30.0393,-6.41 -11.609,-11.25 -5.09,-20.0818 3.73,-24.1797 -0.23,-27.3203 -14.602,-27.957 -21.589,-20.34376 -26.289,-13.63674 -4.54,-19.8906 -8.152,-6.3203 -20.168,-9.9922"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7345" /><path
+               id="path3302" /><path
                d="m 7723.51,3952.65 0,0 -3.45,-7.48 9.68,-5.52 5.55,-1.4 0.65,-6.91 -5.63,-7.23 -20.82,-19.58 -5.96,-10.39 -9.96,-28.6 -20.9,-38.1 -4.96,-24.24 8.82,-23.39 -7.36,-32.53 -1.43,-15.03 0.95,-21.92 3.1,-23.41 -1.56,-13.63 -6.82,-17.71 37.3,-27.06 0.77,-8.32 -18.57,-16.28 -23.58,-15.41 -2.15,-2.25 -72.23,-6.26 -39.57,-12.14 -170.21,-7.22 -14.35,-4.92 -12.55,-7.54 -5.01,-9.39 -53.24,-15.29 -12.6,1.27 -21.34,8.26 -9.03,1.49 -9.49,5.43 -16.75,28.15 -9.03,9.3 2.11,16.94 -2.94,16.36 -6.42,14.81 -8.04,12.39 -4.22,3.47 -16.56,10.1 -4.15,4.79 -8.17,11.95 -4.18,4.84 -24.11,13.04 -20.57,-2.76 -43.47,-17.44 -84.51,9.16 -22.36,-4.05 -23.96,-8.63 -23.86,-4.18 -22.3,9.66 -13.76,-5.53 -17.22,6.59 -30.21,24.16 -22.38,25.09 -3.92,-0.43 -4.17,10.32 -7.93,-1.55 -9.31,-5.61 -8.1,-1.57 -3.57,4.65 -18.95,19.5 -4.29,1.26 -0.93,0.8 -4.69,14.55 -1.32,6.09 0.22,8.74 -0.63,2.87 -2.07,0.48 -5.63,-1.78 -1.96,0.59 -4.3,5.08 -3.93,2.16 -9.42,-0.21 -3.72,3.06 0.8,7.15 2.36,6.85 1.56,2.43 -0.98,12.34 -2.16,10.39 -4.72,7.18 -9.21,2.79 -15.61,10.44 -0.2,14.57 3.52,16.21 -4.25,15.1 -13.05,10.68 -27.65,14.42 -10.81,9.66 -9.55,17.9 -5.49,15.64 -7.39,10.83 -15.02,3.14 -11.69,-4.38 -11.02,-10.33 -7.86,-14.33 -2.32,-16.25 -3.41,-3.38 -23.89,-2.03 -6.02,2.9 -1.96,7.99 -0.29,10.06 -1.15,8.84 -4.36,18.91 -2.72,17.25 -5.11,15.72 -11.51,14.4 -12.01,6.25 -34.05,6.34 -13.42,-0.82 -25.58,-15.59 -13.21,-3.9 -14.36,8.14 4.74,8.01 -11.55,11.48 -6.25,14.23 -4.21,14.43 -5.85,12.01 13.38,14.94 13.32,7.18 4.43,8.76 -12.89,19.55 -10.46,22.67 12.21,11.47 20.23,6.62 26.6,17.65 17.96,1.74 16.94,5.47 9.93,21.22 -2.9,20.57 -7.32,21.43 -0.92,19.48 15.88,15.1 -5.4,7.94 11.82,13.64 5.17,8.55 4.48,9.86 -5.78,8.45 -5.79,15.86 -4.6,17.62 -2.29,13.87 1.6,18.85 4.03,7.86 -0.22,7.89 -11.35,19.1 -10.35,7.31 -70.56,14.55 -29.09,-2.83 1.46,10.32 3.5,7.74 5.2,4.5 6.96,1.46 -14.47,14.05 -17.79,-0.62 -30.51,-9.44 -25.87,10.86 -8.93,1.31 -30.24,-4.75 -8.24,2.17 -4.25,5.99 -4.74,18.08 -5.36,9.67 -57.78,72.32 -9.06,4.67 -9.08,-2.97 -9.09,-5.3 -8.62,-2.19 -8.32,2.92 -15.77,8.74 -20.75,1.39 -5.1,1.86 -13.7,11.52 -18.77,9.3 -55.22,16.56 -105.11,86.03 -12.03,14.12 7.13,21.8 -3.12,23.56 -10.7,24.49 -15.46,24.32 -9.8,8.62 -10.89,2.29 -23,-2.4 -13.4,3.35 -5.21,10.26 -2.33,13.48 -5.31,13.25 -9.29,4.36 -11.33,-1.56 -10.21,1.39 -5.89,13.39 3.73,10.37 8.63,2.81 2.97,5.75 -13.21,19.25 -4.93,2.84 -11.22,1.4 -5.87,5.6 -2.15,4.83 -6.52,21.67 -1.42,15.85 1,12.23 -1.81,9.5 -9.88,7.41"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 7723.51,3952.65 0,0 -3.45,-7.48 9.68,-5.52 5.55,-1.4 0.65,-6.91 -5.63,-7.23 -20.82,-19.58 -5.96,-10.39 -9.96,-28.6 -20.9,-38.1 -4.96,-24.24 8.82,-23.39 -7.36,-32.53 -1.43,-15.03 0.95,-21.92 3.1,-23.41 -1.56,-13.63 -6.82,-17.71 37.3,-27.06 0.77,-8.32 -18.57,-16.28 -23.58,-15.41 -2.15,-2.25 -72.23,-6.26 -39.57,-12.14 -170.21,-7.22 -14.35,-4.92 -12.55,-7.54 -5.01,-9.39 -53.24,-15.29 -12.6,1.27 -21.34,8.26 -9.03,1.49 -9.49,5.43 -16.75,28.15 -9.03,9.3 2.11,16.94 -2.94,16.36 -6.42,14.81 -8.04,12.39 -4.22,3.47 -16.56,10.1 -4.15,4.79 -8.17,11.95 -4.18,4.84 -24.11,13.04 -20.57,-2.76 -43.47,-17.44 -84.51,9.16 -22.36,-4.05 -23.96,-8.63 -23.86,-4.18 -22.3,9.66 -13.76,-5.53 -17.22,6.59 -30.21,24.16 -22.38,25.09 -3.92,-0.43 -4.17,10.32 -7.93,-1.55 -9.31,-5.61 -8.1,-1.57 -3.57,4.65 -18.95,19.5 -4.29,1.26 -0.93,0.8 -4.69,14.55 -1.32,6.09 0.22,8.74 -0.63,2.87 -2.07,0.48 -5.63,-1.78 -1.96,0.59 -4.3,5.08 -3.93,2.16 -9.42,-0.21 -3.72,3.06 0.8,7.15 2.36,6.85 1.56,2.43 -0.98,12.34 -2.16,10.39 -4.72,7.18 -9.21,2.79 -15.61,10.44 -0.2,14.57 3.52,16.21 -4.25,15.1 -13.05,10.68 -27.65,14.42 -10.81,9.66 -9.55,17.9 -5.49,15.64 -7.39,10.83 -15.02,3.14 -11.69,-4.38 -11.02,-10.33 -7.86,-14.33 -2.32,-16.25 -3.41,-3.38 -23.89,-2.03 -6.02,2.9 -1.96,7.99 -0.29,10.06 -1.15,8.84 -4.36,18.91 -2.72,17.25 -5.11,15.72 -11.51,14.4 -12.01,6.25 -34.05,6.34 -13.42,-0.82 -25.58,-15.59 -13.21,-3.9 -14.36,8.14 4.74,8.01 -11.55,11.48 -6.25,14.23 -4.21,14.43 -5.85,12.01 13.38,14.94 13.32,7.18 4.43,8.76 -12.89,19.55 -10.46,22.67 12.21,11.47 20.23,6.62 26.6,17.65 17.96,1.74 16.94,5.47 9.93,21.22 -2.9,20.57 -7.32,21.43 -0.92,19.48 15.88,15.1 -5.4,7.94 11.82,13.64 5.17,8.55 4.48,9.86 -5.78,8.45 -5.79,15.86 -4.6,17.62 -2.29,13.87 1.6,18.85 4.03,7.86 -0.22,7.89 -11.35,19.1 -10.35,7.31 -70.56,14.55 -29.09,-2.83 1.46,10.32 3.5,7.74 5.2,4.5 6.96,1.46 -14.47,14.05 -17.79,-0.62 -30.51,-9.44 -25.87,10.86 -8.93,1.31 -30.24,-4.75 -8.24,2.17 -4.25,5.99 -4.74,18.08 -5.36,9.67 -57.78,72.32 -9.06,4.67 -9.08,-2.97 -9.09,-5.3 -8.62,-2.19 -8.32,2.92 -15.77,8.74 -20.75,1.39 -5.1,1.86 -13.7,11.52 -18.77,9.3 -55.22,16.56 -105.11,86.03 -12.03,14.12 7.13,21.8 -3.12,23.56 -10.7,24.49 -15.46,24.32 -9.8,8.62 -10.89,2.29 -23,-2.4 -13.4,3.35 -5.21,10.26 -2.33,13.48 -5.31,13.25 -9.29,4.36 -11.33,-1.56 -10.21,1.39 -5.89,13.39 3.73,10.37 8.63,2.81 2.97,5.75 -13.21,19.25 -4.93,2.84 -11.22,1.4 -5.87,5.6 -2.15,4.83 -6.52,21.67 -1.42,15.85 1,12.23 -1.81,9.5 -9.88,7.41"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7347" /><path
+               id="path3304" /><path
                d="m 7453.81,4289.21 0,0 6.15,-8.6 19.28,-36.86 4.2,-9.96 2.44,-25.25 3.18,-18.79 5.55,-14.59 9.84,-12.73 20.45,-10.59 26.4,-7.72 23.9,-13.82 13.18,-29.09 -1.53,-17.69 -3.54,-20.41 2.37,-16.46 21.55,-6.65 16.15,-7.54 16.75,-11.31 1.1,-2.41 3.48,-9.33 1.15,-2.27 50.48,-18.74 24.69,-17.3 2.48,-18.45"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 7453.81,4289.21 0,0 6.15,-8.6 19.28,-36.86 4.2,-9.96 2.44,-25.25 3.18,-18.79 5.55,-14.59 9.84,-12.73 20.45,-10.59 26.4,-7.72 23.9,-13.82 13.18,-29.09 -1.53,-17.69 -3.54,-20.41 2.37,-16.46 21.55,-6.65 16.15,-7.54 16.75,-11.31 1.1,-2.41 3.48,-9.33 1.15,-2.27 50.48,-18.74 24.69,-17.3 2.48,-18.45"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7349" /><path
+               id="path3306" /><path
                d="m 5716.61,5033.9 0,0 -1.47,13.71 -4.14,5.89 -6.48,1.54 -8.19,0.48 -4.2,-2.01 -3.09,-5.48 -1.55,-5.61 -0.12,-2.65 -3.86,1 -3.2,2.49 -1.95,2.53 -0.47,1.14 -12.72,6.83 -13.8,11.47 -13.83,7.39 -13.13,-5.22 -2.55,21.42 -8.71,10.21 -10.93,5.39 -9.11,6.98 -8.42,15.54 -0.23,10.39 10.91,26.73 -14.4,9.14 -31.94,34.37 -15.89,7.12 -8.42,0.9 -10.68,3.37 -9.1,5.64 -8.4,15.96 -19.98,-3.05 -9.42,4.05 -3.81,8.18 -12.28,37.32 -6.09,10.97 -3.17,4.46 -1.55,5.04 -7.14,60.91 2.34,24.29 13.79,16.7 -9.28,5.3 -118.58,32.74 -23.71,2.54 -20.8,-12.02 -10.57,9.55 -16.34,3.55 -16.93,-1.8 -12.49,-6.43 -0.26,7.66 -1.76,5.03 -2.11,4.01"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5716.61,5033.9 0,0 -1.47,13.71 -4.14,5.89 -6.48,1.54 -8.19,0.48 -4.2,-2.01 -3.09,-5.48 -1.55,-5.61 -0.12,-2.65 -3.86,1 -3.2,2.49 -1.95,2.53 -0.47,1.14 -12.72,6.83 -13.8,11.47 -13.83,7.39 -13.13,-5.22 -2.55,21.42 -8.71,10.21 -10.93,5.39 -9.11,6.98 -8.42,15.54 -0.23,10.39 10.91,26.73 -14.4,9.14 -31.94,34.37 -15.89,7.12 -8.42,0.9 -10.68,3.37 -9.1,5.64 -8.4,15.96 -19.98,-3.05 -9.42,4.05 -3.81,8.18 -12.28,37.32 -6.09,10.97 -3.17,4.46 -1.55,5.04 -7.14,60.91 2.34,24.29 13.79,16.7 -9.28,5.3 -118.58,32.74 -23.71,2.54 -20.8,-12.02 -10.57,9.55 -16.34,3.55 -16.93,-1.8 -12.49,-6.43 -0.26,7.66 -1.76,5.03 -2.11,4.01"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7351" /><path
+               id="path3308" /><path
                d="m 5216.4,5459.56 0,0 -0.23,0.42 -1.84,5.44 5.47,-7.36 -3.4,1.5"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5216.4,5459.56 0,0 -0.23,0.42 -1.84,5.44 5.47,-7.36 -3.4,1.5"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7353" /><path
+               id="path3310" /><path
                d="m 5216.4,5459.56 0,0 -6.3,2.77 -6.81,-8.95 -5.39,-12.64 -5.64,-6.85 -8.85,1.95 -4.48,7.21 -0.55,10.04 3.1,10.76 -7.48,-3.43 -13.72,-11.26 -12.17,-6.14 -13.5,-15.32 -5.66,-3.66 -12.48,3.91 -14.03,10.72 -12.54,14.22 -7.97,14.6 -13.73,-7.48 -16.94,-2.8 -14.34,-5.13 -5.42,-14.52 -3.59,-6.33 -8.45,4.58 -8,8.13 -1.98,4.43 -117.59,-13.41 -5.79,1.66 -0.59,4.27 0.53,5.24 -1.87,4.49 -93.15,95.73 -2.38,11.66 1.78,7.68 2.92,6.78 1.43,8.62 -5.47,21.12 -10.85,1.39 -22.07,-13.02 -16.32,5.54 -13.76,13.22 -12.45,8.06 -12.46,-9.91 -11.61,-3.43 -15.81,10.2 -14.8,14.94 -8.18,10.65 -16.1,34.12 -7.17,20.4 -3.24,17.01 1.65,14.35 9.89,38.48 4.77,12.74 18.54,18.17 3.9,5.5 0.37,9.88 -3.7,7.83 -4.72,7.35 -2.57,9.07 4.18,10.37 26.62,39.94 12.13,37.57 9.16,17.48 11.86,7.67 29.29,3.18 11.86,5.01 25.23,21.07 4.92,7.54 3.79,11.84 9.03,-1.26 6.95,2.73 2.19,5.8 -4.84,8.5 -0.33,8.2 7.08,1.87 6.17,3.57 5.12,4.83 4.18,5.23 10.85,27.01 1.76,8.1 0.5,5.73 3.05,10.51 0.54,7.04 -1.82,6.23 -3.37,2.67 -3.46,1.76 -1.65,3.73 -1.78,12.58 -3.22,8.16 -3.35,6.25 -2.42,6.48 0.04,31.22 30.56,191.96 1,19.43 3.94,22.39 0.63,13.84 -3.78,5.96 -7.43,33 -1.32,4.02 0.01,11.56 3.68,33.74 2.98,9.92 0.38,6.54 -1.62,0.89 -6.78,6.97 -1.71,3.14 -5.46,14.73 -11.87,6.08 -24.69,4.09 -18.83,10.1 -9.18,3.3 -12.04,0.87 -6.9,2.17 -44.83,27.76 0.86,4.93 7.56,12.48 3.09,12.96 -8.39,4.51 -21.08,0.12 -9.64,7.24 -21.63,30.29 -10.39,-2.63 -16.73,-10.59 -6.73,-2.62 -11.78,1.74 -3.62,6.52 -1.45,10.55 -5.21,13.94 -7.97,5.41 -22.24,0.13 -9.34,4.36 5.35,5.96 3.38,10.73 -0.61,10.17 -6.97,4.29 -29.47,-9.42 -33.26,12 -15.55,1.49 -12.6,4.32 -20.67,20.08 -15.53,4.36 -13.95,-3.73 -21.4,-16.08 -12.32,-3.88 -14.47,2.13 -11.35,6.42 -25.52,28.18 -20.09,35.24 -4.7,5.97 -10.98,6.12 -5.2,7.37 -5.21,4.6 -6.65,-4.7 -8.52,-9.77 -4.65,0.4 -7.34,12.14 -5.45,7.39 -4.14,7.21 -4.1,5.91 -5.71,3.15 -8.45,-1.53 -6.68,-5.83 -5.3,-6.3 -10.24,-7.42 -6.19,-8.2 -6.72,-5.01 -8.09,5.12 -6.58,7.06 -19.01,11.5 -75.4,67.07 -61.52,33.57 -21.77,16.7 -14.17,19.48 -8,7.41 -12.92,2.67 -11.05,5.84 -3.51,14.67 -0.7,17.97 -2.23,15.65 -14.9,17.9 -22.98,5.38 -49.32,-3.25 -20.92,-9.29 -27.56,8.91 -95.57,55.29 -24.02,8.67 -43.39,-0.15 -6.12,-2.2 -6.51,-4.19 -14.49,-19.95 -1.4,-3.15 -36.48,-3.07 -11.17,2.26 -10.9,7.7 -7.24,9.94 -7.83,8.65 -13.45,3.43 -8.21,6.12 -22.63,26.31"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5216.4,5459.56 0,0 -6.3,2.77 -6.81,-8.95 -5.39,-12.64 -5.64,-6.85 -8.85,1.95 -4.48,7.21 -0.55,10.04 3.1,10.76 -7.48,-3.43 -13.72,-11.26 -12.17,-6.14 -13.5,-15.32 -5.66,-3.66 -12.48,3.91 -14.03,10.72 -12.54,14.22 -7.97,14.6 -13.73,-7.48 -16.94,-2.8 -14.34,-5.13 -5.42,-14.52 -3.59,-6.33 -8.45,4.58 -8,8.13 -1.98,4.43 -117.59,-13.41 -5.79,1.66 -0.59,4.27 0.53,5.24 -1.87,4.49 -93.15,95.73 -2.38,11.66 1.78,7.68 2.92,6.78 1.43,8.62 -5.47,21.12 -10.85,1.39 -22.07,-13.02 -16.32,5.54 -13.76,13.22 -12.45,8.06 -12.46,-9.91 -11.61,-3.43 -15.81,10.2 -14.8,14.94 -8.18,10.65 -16.1,34.12 -7.17,20.4 -3.24,17.01 1.65,14.35 9.89,38.48 4.77,12.74 18.54,18.17 3.9,5.5 0.37,9.88 -3.7,7.83 -4.72,7.35 -2.57,9.07 4.18,10.37 26.62,39.94 12.13,37.57 9.16,17.48 11.86,7.67 29.29,3.18 11.86,5.01 25.23,21.07 4.92,7.54 3.79,11.84 9.03,-1.26 6.95,2.73 2.19,5.8 -4.84,8.5 -0.33,8.2 7.08,1.87 6.17,3.57 5.12,4.83 4.18,5.23 10.85,27.01 1.76,8.1 0.5,5.73 3.05,10.51 0.54,7.04 -1.82,6.23 -3.37,2.67 -3.46,1.76 -1.65,3.73 -1.78,12.58 -3.22,8.16 -3.35,6.25 -2.42,6.48 0.04,31.22 30.56,191.96 1,19.43 3.94,22.39 0.63,13.84 -3.78,5.96 -7.43,33 -1.32,4.02 0.01,11.56 3.68,33.74 2.98,9.92 0.38,6.54 -1.62,0.89 -6.78,6.97 -1.71,3.14 -5.46,14.73 -11.87,6.08 -24.69,4.09 -18.83,10.1 -9.18,3.3 -12.04,0.87 -6.9,2.17 -44.83,27.76 0.86,4.93 7.56,12.48 3.09,12.96 -8.39,4.51 -21.08,0.12 -9.64,7.24 -21.63,30.29 -10.39,-2.63 -16.73,-10.59 -6.73,-2.62 -11.78,1.74 -3.62,6.52 -1.45,10.55 -5.21,13.94 -7.97,5.41 -22.24,0.13 -9.34,4.36 5.35,5.96 3.38,10.73 -0.61,10.17 -6.97,4.29 -29.47,-9.42 -33.26,12 -15.55,1.49 -12.6,4.32 -20.67,20.08 -15.53,4.36 -13.95,-3.73 -21.4,-16.08 -12.32,-3.88 -14.47,2.13 -11.35,6.42 -25.52,28.18 -20.09,35.24 -4.7,5.97 -10.98,6.12 -5.2,7.37 -5.21,4.6 -6.65,-4.7 -8.52,-9.77 -4.65,0.4 -7.34,12.14 -5.45,7.39 -4.14,7.21 -4.1,5.91 -5.71,3.15 -8.45,-1.53 -6.68,-5.83 -5.3,-6.3 -10.24,-7.42 -6.19,-8.2 -6.72,-5.01 -8.09,5.12 -6.58,7.06 -19.01,11.5 -75.4,67.07 -61.52,33.57 -21.77,16.7 -14.17,19.48 -8,7.41 -12.92,2.67 -11.05,5.84 -3.51,14.67 -0.7,17.97 -2.23,15.65 -14.9,17.9 -22.98,5.38 -49.32,-3.25 -20.92,-9.29 -27.56,8.91 -95.57,55.29 -24.02,8.67 -43.39,-0.15 -6.12,-2.2 -6.51,-4.19 -14.49,-19.95 -1.4,-3.15 -36.48,-3.07 -11.17,2.26 -10.9,7.7 -7.24,9.94 -7.83,8.65 -13.45,3.43 -8.21,6.12 -22.63,26.31"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7355" /><path
+               id="path3312" /><path
                d="m 3514,7166.47 0,0 -0.38,2.47"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3514,7166.47 0,0 -0.38,2.47"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7357" /><path
+               id="path3314" /><path
                d="m 3513.62,7168.94 0,0 -2.46,2.86 -10.52,9.68 -11.23,3.91 -34.56,2.99 -8.06,4.24 -17.77,12.8 -18.81,9.59 -24.29,18.11 -21.31,3.14 -7.73,2.63 -7.83,13.63"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3513.62,7168.94 0,0 -2.46,2.86 -10.52,9.68 -11.23,3.91 -34.56,2.99 -8.06,4.24 -17.77,12.8 -18.81,9.59 -24.29,18.11 -21.31,3.14 -7.73,2.63 -7.83,13.63"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7359" /><path
+               id="path3316" /><path
                d="m 3513.62,7168.94 0,0 -2.5,16.31 -2.89,41.79 -3.95,15.29 -7.75,5.27 -29.73,8.53 -112.96,6.98"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 3513.62,7168.94 0,0 -2.5,16.31 -2.89,41.79 -3.95,15.29 -7.75,5.27 -29.73,8.53 -112.96,6.98"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7361" /><path
+               id="path3318" /><path
                d="m 2396.76,1347.16 0,0 12.17,2.9 13.2,-4.37 14.59,-14.68 13.74,-22.34 21.97,-43.14 12.63,-14.93 16.14,-3.01 19.03,8.72 10.9,20.16 -3.15,24.58 -10.19,30.98 -10.61,68.72 -13.88,44.3 2.46,20.55 15.13,20.61 44.2,35.68 0.23,11.12 -9.99,8.93 -6.01,10.62 2.77,11.92 10.71,12.17 19.73,10.9 24.22,8.93 28.89,3.09 58.56,-5.31 20.32,6.06 21.32,12.32 69.57,31.01 83.35,43.94 30.9,7.99 35.18,16.36 12.97,2.81 8.36,4.91 14.76,31.19 11.11,15.23 13.64,10.02 28.57,9.88 14.71,10.44 15.27,22.86 16.1,34.95 7.67,30.71 -4.82,12.32 -18.78,3.71 -26.08,9.66 -24.47,15.24 -14.95,17.04 -9.92,16.79 -12.33,14.89 -7.85,16.33 1.11,20.22 9.7,21.61 13.1,19.71 8.24,24.32 -1.82,32.84 -13.68,27.84 -34.55,18.28 2.42,31.02 -11.56,17 -15.13,15.77 -6.63,14.78 2.02,14.39 10.02,27.23 -2.88,9.69 -6.35,10.98 -4.22,15.53 2.11,15.27 21.15,21.08 10.73,17.33 6.7,23.7 2.5,26.4 -5.31,23.47 -26.49,37.66 -20.38,68.35 -14.14,20.67 -11.64,12.2 -4.19,13.7 -1.35,15.26 -4.8,15.94 -9.76,16.68 -13.04,16.89 -14.97,12.27 -23.46,9.76 -4.43,22.8 -6.72,12.35 -15.74,5.57 -23.44,-3.24 -21.16,-10.57 -10.37,-12.33 -6.03,-13.7 -10.91,-13.96 -18,-10.55 -23.21,-5.31 -19.13,1.61 -8.13,6.13 -5.55,8.02 -12.82,6.15 -19.47,2.04 -39.04,-1.14 -10.67,8.19 -11.52,16.61 -19.8,20.73 -19.03,14.69 -23.59,2.51 -29.38,11.44 -30.65,15.82 -17.16,11.05 -7.63,7.72"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2396.76,1347.16 0,0 12.17,2.9 13.2,-4.37 14.59,-14.68 13.74,-22.34 21.97,-43.14 12.63,-14.93 16.14,-3.01 19.03,8.72 10.9,20.16 -3.15,24.58 -10.19,30.98 -10.61,68.72 -13.88,44.3 2.46,20.55 15.13,20.61 44.2,35.68 0.23,11.12 -9.99,8.93 -6.01,10.62 2.77,11.92 10.71,12.17 19.73,10.9 24.22,8.93 28.89,3.09 58.56,-5.31 20.32,6.06 21.32,12.32 69.57,31.01 83.35,43.94 30.9,7.99 35.18,16.36 12.97,2.81 8.36,4.91 14.76,31.19 11.11,15.23 13.64,10.02 28.57,9.88 14.71,10.44 15.27,22.86 16.1,34.95 7.67,30.71 -4.82,12.32 -18.78,3.71 -26.08,9.66 -24.47,15.24 -14.95,17.04 -9.92,16.79 -12.33,14.89 -7.85,16.33 1.11,20.22 9.7,21.61 13.1,19.71 8.24,24.32 -1.82,32.84 -13.68,27.84 -34.55,18.28 2.42,31.02 -11.56,17 -15.13,15.77 -6.63,14.78 2.02,14.39 10.02,27.23 -2.88,9.69 -6.35,10.98 -4.22,15.53 2.11,15.27 21.15,21.08 10.73,17.33 6.7,23.7 2.5,26.4 -5.31,23.47 -26.49,37.66 -20.38,68.35 -14.14,20.67 -11.64,12.2 -4.19,13.7 -1.35,15.26 -4.8,15.94 -9.76,16.68 -13.04,16.89 -14.97,12.27 -23.46,9.76 -4.43,22.8 -6.72,12.35 -15.74,5.57 -23.44,-3.24 -21.16,-10.57 -10.37,-12.33 -6.03,-13.7 -10.91,-13.96 -18,-10.55 -23.21,-5.31 -19.13,1.61 -8.13,6.13 -5.55,8.02 -12.82,6.15 -19.47,2.04 -39.04,-1.14 -10.67,8.19 -11.52,16.61 -19.8,20.73 -19.03,14.69 -23.59,2.51 -29.38,11.44 -30.65,15.82 -17.16,11.05 -7.63,7.72"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7363" /><path
+               id="path3320" /><path
                d="m 625.539,-374.961 0,0 -4.398,23.141 2.961,19.832 13.628,14.988 17.598,11.398 29.16,23.762 27.692,15.238 21.648,16.282 2.141,15.3 -0.758,19.04 8.738,6.949 32.961,36.812 1.578,19.18 7.891,10.918 10.109,7.07 8,7.481 -10.976,42.1403 -2.102,22.8008 5.449,18.1484 5.621,-4.539 6.149,-1.8321 6.531,0.7305 6.91,2.9531 24.782,21.7969 47.597,58.1211 17.262,11.5508 36.359,-1.1406 9.282,2.4804 27.476,18.1602 2.863,0.1289 7.75,-1.6797 3.829,0.2891 4.91,2.6992 9.33,7.8711 5.25,2.0117 -0.8,4.2891 3.53,10.0195 7.9,16.0623 6.27,4.969 7.51,3.219 14.72,2.281 26.7,-3.602 11.1,5.379 -0.49,18.942 23,7.289 51,44.511 15.09,23.418 22.62,22.032 52.45,36.34 -2.41,27.699 5.39,22.672 14.6,14.281 24.99,2.609 6.83,2.809 8.04,8.351 6.67,3.5 3.74,-0.972 4.34,-3.309 5.39,-2.98 7.02,-0.18 52.02,21.539 18.04,13.602 9.14,11.949 -0.39,11.68 -49.23,-7.098 -14.34,-5.43 -6.48,-0.933 -20.83,0.523 -46.57,-7.07 -51.63,1.359 -14.38,-2.41 -23.43,-10.492 -6.65,-0.367 -7.85,-6.161 -12.51,-2.371 -26.26,2.231 -14.62,5.168 -8.92,6.91 -4.85,8.82 -2.17,10.301 0.51,8.68 3.21,11.582 5.71,12.679 7.8,12.129 -2.98,11.762 4.24,9.25 6.4,11.09 7.77,33.769 8.9,-0.711 11.09,-5.121 10.4,3.243 6.46,13.578 -1.21,12.261 -6.91,9.829 -10.23,6.39 -10.84,0.66 -9.41,-4.621 -8.57,-6.16 -8.1,-4.027 -35.69,1.027 -5.55,-3.641 -4.96,-5.738 -11.29,-5.859 -35.48,-9.942 -17.18,-16.168 -10,-1.601 -5.51,6.422 -5.349,11.699 -5.601,9.328 -5.719,-0.199 -13.641,-17.86 -6.992,2.532 -7.039,-1.274 -6.488,-3.726 -5.512,-4.992 12.082,-6.141 6.098,-1.899 7.359,-0.371 -0.238,-7.589 -12.84,-1.559 -12.762,-3.609 -11.816,-6.551 -10.102,-10.27 1.321,-4.66 2.187,-12.293 1.442,-4.656 -15.211,-4.813 -39.418,-1.699 -10.45,-3.461 -6.601,-6.57 -7.57,-3.418 -16.942,-1.063 -3.84,-2.449 -21.047,-18.707 -11,2.418 -19.351,-4.281 -18.36,-7.789 -8.218,-7.801 -9.051,-10.609 -42.231,-18.551 -51.949,-5.578 -17.41,-6.02 -16.562,-10.929 -4.098,-0.661 -4.941,1.27 -4.168,0.16 -1.903,-4.281 -0.578,-10.379 -1.293,-4.762 -7.25,-8.019 -9.808,-8.051 -8.7,-0.078 -20.422,6.129 3.321,-5.2 3.621,-6.941 2.941,-3.367 -64.082,-36.242 7.903,0.101 2.457,-0.5 -0.27,-6.922 -24.238,-11.55 -10.281,0.543 -12.532,12.859 -5.027,-7.41 10.019,-8.68 -0.3,-7.601 -6.59,-5.5 -2.192,-5.778 -1.078,-6.672 -4.148,-8.121 -5.891,-3.711 -13.883,0.563 -14.878,-8.449 4.011,30.488 -4.191,9.14 -36.899,3.809 -12.492,-1.801 -35.758,-21.816 -7.402,-6.762 -4.738,0.199 -5.973,9.653 -14.09,2.558 -54.929,-7.922 -24.071,-7.648 -11.539,-9.469 -17.14,-24.39 -10.098,-10.012 -12.223,-1.77 -15.867,0.301 -11.223,-4.25 2.09,-15.449 -6.359,-6.699 -17.359,-12.621 -6.411,-2.0824 1.313,-1.4102 0.019,-3.7578 -0.98,-5.25 -1.852,-6.3086 -2.64,-6.5429 -3.071,-6.1875 -3.578,-5.0625 -3.8786,-3.5703 5.3676,-7.0977 -18.9184,0.918 L 62.7891,49.2109 51.0898,33.4414 57.0312,0.960938 48.9883,-6.37109 42.7188,-33.1016 l -8.9805,-10.4492 -7.1172,7.043 -7.8828,2.6289 -7.9883,-1.8906 -7.75,-6.3516 -15.9219,13.7227 -24.75,4.2968 -25.3398,-5.6289 -17.5391,-16.0078 -1.1211,9.2071 -2.8672,6.121 -4.3711,4.379 -6.1406,3.832 -11.7112,-5.6289 -4.129,-0.5625 -3.14,2.7695 -3.66,5.1211 -2.731,5.0312 -0.156,2.129 -17.313,0.1484 -12.14,-5.9766 -31.77,-33.9922 -10.777,-4.539 -11.231,0.4804 -26.011,5.2891 -15.192,0.5 -15.929,-3.8906 -14.481,-11.0781 8.981,-17.6016 -3.68,-22.871 -11.18,-21.457"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 625.539,-374.961 0,0 -4.398,23.141 2.961,19.832 13.628,14.988 17.598,11.398 29.16,23.762 27.692,15.238 21.648,16.282 2.141,15.3 -0.758,19.04 8.738,6.949 32.961,36.812 1.578,19.18 7.891,10.918 10.109,7.07 8,7.481 -10.976,42.1403 -2.102,22.8008 5.449,18.1484 5.621,-4.539 6.149,-1.8321 6.531,0.7305 6.91,2.9531 24.782,21.7969 47.597,58.1211 17.262,11.5508 36.359,-1.1406 9.282,2.4804 27.476,18.1602 2.863,0.1289 7.75,-1.6797 3.829,0.2891 4.91,2.6992 9.33,7.8711 5.25,2.0117 -0.8,4.2891 3.53,10.0195 7.9,16.0623 6.27,4.969 7.51,3.219 14.72,2.281 26.7,-3.602 11.1,5.379 -0.49,18.942 23,7.289 51,44.511 15.09,23.418 22.62,22.032 52.45,36.34 -2.41,27.699 5.39,22.672 14.6,14.281 24.99,2.609 6.83,2.809 8.04,8.351 6.67,3.5 3.74,-0.972 4.34,-3.309 5.39,-2.98 7.02,-0.18 52.02,21.539 18.04,13.602 9.14,11.949 -0.39,11.68 -49.23,-7.098 -14.34,-5.43 -6.48,-0.933 -20.83,0.523 -46.57,-7.07 -51.63,1.359 -14.38,-2.41 -23.43,-10.492 -6.65,-0.367 -7.85,-6.161 -12.51,-2.371 -26.26,2.231 -14.62,5.168 -8.92,6.91 -4.85,8.82 -2.17,10.301 0.51,8.68 3.21,11.582 5.71,12.679 7.8,12.129 -2.98,11.762 4.24,9.25 6.4,11.09 7.77,33.769 8.9,-0.711 11.09,-5.121 10.4,3.243 6.46,13.578 -1.21,12.261 -6.91,9.829 -10.23,6.39 -10.84,0.66 -9.41,-4.621 -8.57,-6.16 -8.1,-4.027 -35.69,1.027 -5.55,-3.641 -4.96,-5.738 -11.29,-5.859 -35.48,-9.942 -17.18,-16.168 -10,-1.601 -5.51,6.422 -5.349,11.699 -5.601,9.328 -5.719,-0.199 -13.641,-17.86 -6.992,2.532 -7.039,-1.274 -6.488,-3.726 -5.512,-4.992 12.082,-6.141 6.098,-1.899 7.359,-0.371 -0.238,-7.589 -12.84,-1.559 -12.762,-3.609 -11.816,-6.551 -10.102,-10.27 1.321,-4.66 2.187,-12.293 1.442,-4.656 -15.211,-4.813 -39.418,-1.699 -10.45,-3.461 -6.601,-6.57 -7.57,-3.418 -16.942,-1.063 -3.84,-2.449 -21.047,-18.707 -11,2.418 -19.351,-4.281 -18.36,-7.789 -8.218,-7.801 -9.051,-10.609 -42.231,-18.551 -51.949,-5.578 -17.41,-6.02 -16.562,-10.929 -4.098,-0.661 -4.941,1.27 -4.168,0.16 -1.903,-4.281 -0.578,-10.379 -1.293,-4.762 -7.25,-8.019 -9.808,-8.051 -8.7,-0.078 -20.422,6.129 3.321,-5.2 3.621,-6.941 2.941,-3.367 -64.082,-36.242 7.903,0.101 2.457,-0.5 -0.27,-6.922 -24.238,-11.55 -10.281,0.543 -12.532,12.859 -5.027,-7.41 10.019,-8.68 -0.3,-7.601 -6.59,-5.5 -2.192,-5.778 -1.078,-6.672 -4.148,-8.121 -5.891,-3.711 -13.883,0.563 -14.878,-8.449 4.011,30.488 -4.191,9.14 -36.899,3.809 -12.492,-1.801 -35.758,-21.816 -7.402,-6.762 -4.738,0.199 -5.973,9.653 -14.09,2.558 -54.929,-7.922 -24.071,-7.648 -11.539,-9.469 -17.14,-24.39 -10.098,-10.012 -12.223,-1.77 -15.867,0.301 -11.223,-4.25 2.09,-15.449 -6.359,-6.699 -17.359,-12.621 -6.411,-2.0824 1.313,-1.4102 0.019,-3.7578 -0.98,-5.25 -1.852,-6.3086 -2.64,-6.5429 -3.071,-6.1875 -3.578,-5.0625 -3.8786,-3.5703 5.3676,-7.0977 -18.9184,0.918 L 62.7891,49.2109 51.0898,33.4414 57.0312,0.960938 48.9883,-6.37109 42.7188,-33.1016 l -8.9805,-10.4492 -7.1172,7.043 -7.8828,2.6289 -7.9883,-1.8906 -7.75,-6.3516 -15.9219,13.7227 -24.75,4.2968 -25.3398,-5.6289 -17.5391,-16.0078 -1.1211,9.2071 -2.8672,6.121 -4.3711,4.379 -6.1406,3.832 -11.7112,-5.6289 -4.129,-0.5625 -3.14,2.7695 -3.66,5.1211 -2.731,5.0312 -0.156,2.129 -17.313,0.1484 -12.14,-5.9766 -31.77,-33.9922 -10.777,-4.539 -11.231,0.4804 -26.011,5.2891 -15.192,0.5 -15.929,-3.8906 -14.481,-11.0781 8.981,-17.6016 -3.68,-22.871 -11.18,-21.457"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7365" /><path
+               id="path3322" /><path
                d="m 8918.45,1483.15 0,0 -20.59,7.61 -18.48,15.84 -11.35,23.79 0.9,31.76 -15.24,8.05 -56.64,-7.31 -19.12,8.07 -17.76,13.75 -18.12,10.27 -19.92,-2.27 -5.53,-19.07 -2.26,-4.75 -3.75,-1.63 -14.2,-0.24 -6.38,-2.17 -34.6,-24.25 -84.57,-17.54 -122.91,3.7 -28.69,10.38 -49.66,28.29 -55.36,42.44 -21.36,24.2 -19.33,31.79 -19.7,52.82 -27.78,48.06 -8.38,6.8 -10.22,2.79 -10.76,0.07 -20.53,-4.5 -8.37,-3.89 -15.91,-11 -8.28,-3.79 -83.82,-19.62 -110.27,-5.59 -26.02,7.7 -28.1,22.83 -16.1,8.99 -16.97,3.39 -16.88,-1.23 -34.97,-9.95 -8.95,1.26 -21.32,9.86 -10.36,1.96 -27.02,-0.05 -25.9,4.22 -23.18,-0.3 -60.65,-19.97 -3.91,1.11 -5.74,6.81 -3.13,2.6 -14.17,-2.3 -15.57,-12.8 -25.63,-30.24 -10.6,-25.3 -5.02,-67 -7.83,-29.65 -18.4,-26.47 -22.93,-18.09 -59.91,-25.58 -62.94,-13.43 -15.3,-8.05 -19.62,-29.73 -12.01,-5.05 -6.79,2.79 -14.49,10.17 -7.3,3.66 -17.77,3.24 -17.77,-0.36 -12.31,3.51 -28.51,28.88 -9.49,4.8 -8.39,1.53 -36.56,-4.65 -12.95,-6.94 -10.25,-11.42 -9.66,-16.7 -9.58,-9.18 -104.44,-33.74 -15.84,3.54 -13.54,10.65 -22.38,27.8 -10.48,10.14 -11.72,6.92 -13.08,3.55 -78.48,-4.15 -12.48,2.98 -36.14,16.87 -18.03,15.72 -23.59,12.08 -7.12,9.26 -12.34,19.64 -9.05,7.22 -20.8,-19.84 -28.14,3.11 -55,17.92 -11.83,-3.52 -25.41,-12.88 -14.74,-2.34 -25.62,1.7 -10.21,4.29 -9.25,9.74 -8.41,18.6 -9.79,44.03 -6.85,18.7 -8.85,9.34 -9.92,2.02 -20.82,-2.12 -12.99,3.52 -36.33,24.98 -17.46,6.59 -35.35,0.53 -17.32,6.32 -43.54,43.19 -15.41,11.02 -40.47,15.26 -12.3,16.68 -12.72,8.15 -13.21,6.2 -77.68,16.77 -24.57,-4.78 -45.71,-2.67 -8.61,3.86 -18.83,13.56 -6.77,2.71 -45.99,5.7 -43.18,-2.43 -18.6,8.82 -34.29,27.63 -17.6,5.29 -39.56,24.87 -3.54,10.75 -15.93,11.52 -7.03,10.15 3.03,2.01 6.58,6.83 -9.5,7.3 -17.6,9.4 -16.8,3.18 -6.9,-11.16 -4.14,-4.85 -8.28,6.97 -4.44,10.51 8.14,5.95 9.41,4.36 1.67,9.29 -2.45,10.26 -2.55,7.48 -8.68,16.41 -35,47.13 -13.43,9.58 -28.25,5.89 -4.38,3.5 -26.8,-2.46 -9.4,4.77 -20.39,-21.44 -8.44,-3.58 -10.41,-0.17 -17.87,5.5 -9.64,1.1 -4.67,5.13 -4.81,12.35 -3.91,13.74 -1.75,9.84 -3.4,7.25 -52.88,25.08 -17.51,4.05 -21.02,0.89 -6.34,-2.29 -17.08,-11.87 -5.71,-6.61 -6.7,-3.96 -16.27,12.02 -9.78,2.18 -0.35,7.59 9.12,8.04 -10.43,3.05 -10.45,-2.66 -8.73,0.55 -3.82,8.58"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 8918.45,1483.15 0,0 -20.59,7.61 -18.48,15.84 -11.35,23.79 0.9,31.76 -15.24,8.05 -56.64,-7.31 -19.12,8.07 -17.76,13.75 -18.12,10.27 -19.92,-2.27 -5.53,-19.07 -2.26,-4.75 -3.75,-1.63 -14.2,-0.24 -6.38,-2.17 -34.6,-24.25 -84.57,-17.54 -122.91,3.7 -28.69,10.38 -49.66,28.29 -55.36,42.44 -21.36,24.2 -19.33,31.79 -19.7,52.82 -27.78,48.06 -8.38,6.8 -10.22,2.79 -10.76,0.07 -20.53,-4.5 -8.37,-3.89 -15.91,-11 -8.28,-3.79 -83.82,-19.62 -110.27,-5.59 -26.02,7.7 -28.1,22.83 -16.1,8.99 -16.97,3.39 -16.88,-1.23 -34.97,-9.95 -8.95,1.26 -21.32,9.86 -10.36,1.96 -27.02,-0.05 -25.9,4.22 -23.18,-0.3 -60.65,-19.97 -3.91,1.11 -5.74,6.81 -3.13,2.6 -14.17,-2.3 -15.57,-12.8 -25.63,-30.24 -10.6,-25.3 -5.02,-67 -7.83,-29.65 -18.4,-26.47 -22.93,-18.09 -59.91,-25.58 -62.94,-13.43 -15.3,-8.05 -19.62,-29.73 -12.01,-5.05 -6.79,2.79 -14.49,10.17 -7.3,3.66 -17.77,3.24 -17.77,-0.36 -12.31,3.51 -28.51,28.88 -9.49,4.8 -8.39,1.53 -36.56,-4.65 -12.95,-6.94 -10.25,-11.42 -9.66,-16.7 -9.58,-9.18 -104.44,-33.74 -15.84,3.54 -13.54,10.65 -22.38,27.8 -10.48,10.14 -11.72,6.92 -13.08,3.55 -78.48,-4.15 -12.48,2.98 -36.14,16.87 -18.03,15.72 -23.59,12.08 -7.12,9.26 -12.34,19.64 -9.05,7.22 -20.8,-19.84 -28.14,3.11 -55,17.92 -11.83,-3.52 -25.41,-12.88 -14.74,-2.34 -25.62,1.7 -10.21,4.29 -9.25,9.74 -8.41,18.6 -9.79,44.03 -6.85,18.7 -8.85,9.34 -9.92,2.02 -20.82,-2.12 -12.99,3.52 -36.33,24.98 -17.46,6.59 -35.35,0.53 -17.32,6.32 -43.54,43.19 -15.41,11.02 -40.47,15.26 -12.3,16.68 -12.72,8.15 -13.21,6.2 -77.68,16.77 -24.57,-4.78 -45.71,-2.67 -8.61,3.86 -18.83,13.56 -6.77,2.71 -45.99,5.7 -43.18,-2.43 -18.6,8.82 -34.29,27.63 -17.6,5.29 -39.56,24.87 -3.54,10.75 -15.93,11.52 -7.03,10.15 3.03,2.01 6.58,6.83 -9.5,7.3 -17.6,9.4 -16.8,3.18 -6.9,-11.16 -4.14,-4.85 -8.28,6.97 -4.44,10.51 8.14,5.95 9.41,4.36 1.67,9.29 -2.45,10.26 -2.55,7.48 -8.68,16.41 -35,47.13 -13.43,9.58 -28.25,5.89 -4.38,3.5 -26.8,-2.46 -9.4,4.77 -20.39,-21.44 -8.44,-3.58 -10.41,-0.17 -17.87,5.5 -9.64,1.1 -4.67,5.13 -4.81,12.35 -3.91,13.74 -1.75,9.84 -3.4,7.25 -52.88,25.08 -17.51,4.05 -21.02,0.89 -6.34,-2.29 -17.08,-11.87 -5.71,-6.61 -6.7,-3.96 -16.27,12.02 -9.78,2.18 -0.35,7.59 9.12,8.04 -10.43,3.05 -10.45,-2.66 -8.73,0.55 -3.82,8.58"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7367" /><path
+               id="path3324" /><path
                d="m 2195.14,1195.78 0,0 11.61,-19.56 12.44,-21.62 13.72,-10.5 33.51,2.3 11.86,-3.36 10.65,-9.79 5.9,-12.07 4.72,-13.53 6.51,-14.25 4.99,-3.84 6.91,-1.01 13.74,0.83 6.11,-1.76 3.5,-4.29 3.16,-5.04 4.96,-4.17 23.56,-6.64 11.97,-7.2 5.01,-13 2.42,-18.47 7.1,-11.94 11.27,-5.34 14.6,1.31 13.73,8.87 8.56,9.93 8.4,1.41 13.21,-16.36 10.41,-8.85 25.7,-3.29 12.73,-7.441 18.59,11.361 93.67,11.66 -0.19,21.84 13.24,15.21 47.08,33.7 37.39,42.86 18.01,-5.72 6,-6.11 -9.3,-10.98 -0.01,-8.28 20.69,6.5 10.82,5.28 4.74,7.54 -1.16,7.52 -1.75,3.45 0.55,3.61 5.39,8.13 5.35,2.85 14.12,1.84 2.91,3.26 12.25,22.63 27.09,14.34 27.99,2.52 14.49,-12.84 5.53,0.01 6.82,6.84 11.1,-0.79 25.35,-5.97 6.18,1.29 16.17,7.01 6.11,-0.85 2.73,-2.17 2.08,-2.7 4.37,-2.49 92.08,-15.48 22.63,6.49 18.91,15.97 44.36,60.95 36.14,70.41 4.92,7.55 4.38,12.92 4.28,9.66 6.29,7.78 10.18,7.13 11.39,3.47 12.43,0.09 17.14,-3.25 17.38,-6.7 6.61,-0.76 22.39,1.74 9.98,-1.19 9.6,0.95 10.09,6.61 24.43,30.62 10.71,9.01 10.82,4.37 34.64,3.07 10.62,5.55 15.5,17.26 9.03,7.84 31.08,14.15 4.58,1.46 20.01,20.87 67.8,97.36 7.16,5.12 16.09,5.93 79.55,10.66 15.27,5.26 27.73,15.72 58.63,12.7 41.14,20.6 12.59,11.98 5.22,16.19 3.03,25.9 8.81,16.85 12.78,10.15 103.47,35.91 27.47,17.32 34.37,34 28.26,10.53 10.33,12.72 9.01,15.27 11.67,13.16 48.94,28.56 57.24,20.66 364.36,26.14 11.28,3.7 5.64,3.16 19.44,21.26 7.01,3.08 57.9,-5.72 63.19,9.19 31.13,10.26 25.53,14.39 46.71,46.77 6.06,7.83 5.59,8.98 5.42,13.84 7.03,28.3 5.68,11.02 3.86,0.41 11.24,-6.38 4.97,1.22 10.04,14.15 17,12.87 16.34,3.68 56.81,0.94 4.78,1.35 3.41,4.3 5.74,13.65 4.58,4.6 10.6,0.97 8.48,-3.47 7.4,0.16 8.12,12.01 -12.89,8.86 -10.47,2.44 -2.75,4.29 23.5,29.96 5.25,9.18 -1.03,12.19 -5.28,24.93 60.64,1.29 30.44,-5.46 25.1,-14.58 21.06,15.25 32.65,4.17 34.84,-6.11 27.5,-15.23 -3.26,-8.85 -7.55,-13.73 -2.71,-9.15 62.05,1.18 23.35,-5.79 10.01,2.03 4.78,-0.54 4.55,-3.88 1.41,-4.96 1.8,-4.19 5.7,-1.53 14.93,0.69 2.82,-1.29 3.82,-2.81 5.02,-2.49 6.39,-0.24 0.39,-8.28 -6.93,0.22 -3.24,-3.6 -2.68,-8.17"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2195.14,1195.78 0,0 11.61,-19.56 12.44,-21.62 13.72,-10.5 33.51,2.3 11.86,-3.36 10.65,-9.79 5.9,-12.07 4.72,-13.53 6.51,-14.25 4.99,-3.84 6.91,-1.01 13.74,0.83 6.11,-1.76 3.5,-4.29 3.16,-5.04 4.96,-4.17 23.56,-6.64 11.97,-7.2 5.01,-13 2.42,-18.47 7.1,-11.94 11.27,-5.34 14.6,1.31 13.73,8.87 8.56,9.93 8.4,1.41 13.21,-16.36 10.41,-8.85 25.7,-3.29 12.73,-7.441 18.59,11.361 93.67,11.66 -0.19,21.84 13.24,15.21 47.08,33.7 37.39,42.86 18.01,-5.72 6,-6.11 -9.3,-10.98 -0.01,-8.28 20.69,6.5 10.82,5.28 4.74,7.54 -1.16,7.52 -1.75,3.45 0.55,3.61 5.39,8.13 5.35,2.85 14.12,1.84 2.91,3.26 12.25,22.63 27.09,14.34 27.99,2.52 14.49,-12.84 5.53,0.01 6.82,6.84 11.1,-0.79 25.35,-5.97 6.18,1.29 16.17,7.01 6.11,-0.85 2.73,-2.17 2.08,-2.7 4.37,-2.49 92.08,-15.48 22.63,6.49 18.91,15.97 44.36,60.95 36.14,70.41 4.92,7.55 4.38,12.92 4.28,9.66 6.29,7.78 10.18,7.13 11.39,3.47 12.43,0.09 17.14,-3.25 17.38,-6.7 6.61,-0.76 22.39,1.74 9.98,-1.19 9.6,0.95 10.09,6.61 24.43,30.62 10.71,9.01 10.82,4.37 34.64,3.07 10.62,5.55 15.5,17.26 9.03,7.84 31.08,14.15 4.58,1.46 20.01,20.87 67.8,97.36 7.16,5.12 16.09,5.93 79.55,10.66 15.27,5.26 27.73,15.72 58.63,12.7 41.14,20.6 12.59,11.98 5.22,16.19 3.03,25.9 8.81,16.85 12.78,10.15 103.47,35.91 27.47,17.32 34.37,34 28.26,10.53 10.33,12.72 9.01,15.27 11.67,13.16 48.94,28.56 57.24,20.66 364.36,26.14 11.28,3.7 5.64,3.16 19.44,21.26 7.01,3.08 57.9,-5.72 63.19,9.19 31.13,10.26 25.53,14.39 46.71,46.77 6.06,7.83 5.59,8.98 5.42,13.84 7.03,28.3 5.68,11.02 3.86,0.41 11.24,-6.38 4.97,1.22 10.04,14.15 17,12.87 16.34,3.68 56.81,0.94 4.78,1.35 3.41,4.3 5.74,13.65 4.58,4.6 10.6,0.97 8.48,-3.47 7.4,0.16 8.12,12.01 -12.89,8.86 -10.47,2.44 -2.75,4.29 23.5,29.96 5.25,9.18 -1.03,12.19 -5.28,24.93 60.64,1.29 30.44,-5.46 25.1,-14.58 21.06,15.25 32.65,4.17 34.84,-6.11 27.5,-15.23 -3.26,-8.85 -7.55,-13.73 -2.71,-9.15 62.05,1.18 23.35,-5.79 10.01,2.03 4.78,-0.54 4.55,-3.88 1.41,-4.96 1.8,-4.19 5.7,-1.53 14.93,0.69 2.82,-1.29 3.82,-2.81 5.02,-2.49 6.39,-0.24 0.39,-8.28 -6.93,0.22 -3.24,-3.6 -2.68,-8.17"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7369" /><path
+               id="path3326" /><path
                d="m 5376.21,2179.01 0,0 -1.4,-4.26"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5376.21,2179.01 0,0 -1.4,-4.26"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7371" /><path
+               id="path3328" /><path
                d="m 5376.21,2179.01 0,0 -1.78,3.99"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 5376.21,2179.01 0,0 -1.78,3.99"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7373" /><path
+               id="path3330" /><path
                d="m 9011.93,3379.49 0,0 25.57,9.63 16.19,0.93 8.2,-8.6 8,-6.04 48.29,-6.51 23.51,-18.11 46.78,-47.34 24.49,-15.5 33.65,-8.89 15.92,3.28 8.74,29.76 11.47,10.86 24.36,15.36 110.23,100.78 7.14,14.27 1.36,18.68 2.51,4.21 6.07,6.2 5.81,9.16 1.39,13.18 -5.54,16.83 -0.23,9.6 6.36,8.9 -5.75,6.21 10.02,12.41 25.43,18.49 13.66,14.45 7.33,17.53 8.02,35.67 7.73,3.53 1.22,3.81 0.72,3.31 0.62,8.61 -18.38,10.61 -54.59,76.7 -16.6,18 -5.71,8.86 -4.91,12.45 -2.75,22.02 -3.69,10.59 -8.45,3.95 -0.95,7.59 3.18,1.44 1.89,1.88 4.16,5.47 -4.87,-0.61 13.94,86.4 -1.03,8.23 -5.48,0.91 -3.18,1.47 -2.69,1.7 -4.2,1.68 -0.86,6.93 6.79,11.41 4.43,4.13 6.26,2.66 -0.86,6.9 -5.59,6.59 -3.24,8.95 -1.24,10.71 0.37,11.73 -9.88,0 -9.07,6.29 -7.97,9.6 -11.19,16.8 -19.9,24.83 -3.82,0.16 -4.28,1.31 -54.51,64.18 -4.49,11.54 -10.89,19.91 -59.46,29.44 -24.12,30.78 -4.18,0.4 -5.42,8.41 -21.64,16.46 -7.04,13.22 6.82,7.37 0.29,6.22 -2.77,6.39 -2.32,7.55 -0.14,11.17 1.97,6.84 2.4,4.77 1.3,5.1 -2.09,17.75 -4.38,15.27 -3.25,15.74 1.41,19.41 -13.02,6.46 -13.99,22.21 -20.85,43.09 -7.76,9.91 -19.91,17.43 -7.5,10.08 -9.84,17.99 -6.48,7.46 -7.5,2.95 -27.08,0.59 -8.63,3.69 -23.21,14.88 -37.85,11.7 -17.29,8.39 -17.88,17.3 -5.57,-4.97 -5.35,-1.86 -6,0.72 -7.1,3.28 -7.87,7.2 -4.04,8.37 -2.51,8 -3.62,5.69 -14.42,5.86 -14.14,-2.42 -28.54,-10.11 -12.34,1.45 -13.21,6.1 -12.28,8.51 -9.3,9.22 -4.27,6.92 -7.21,14.95 -6.41,7.44 -8.69,4.6 -16.63,2.84 -8.16,7.57 -64.56,24.82 -4.53,12.44 -0.96,39.89 -7.54,13.06 -28.42,15.57 -7.39,12.47 -7.09,8.53 -14.06,2.06 -14.29,-3.6 -7.99,-8.39 -4.78,-0.53 -3.34,11.31 -6,4.18 -7.8,-0.46 -8.8,-2.57 4.8,19.82 -5.63,13.27 -23.93,18.54 -19.21,-4.88 -26.5,2.37 -24.73,8.9 -14.3,14.88 -9.73,6.01 -22.22,21.2 -24.06,12.68 -6.52,6.97 -25.37,41.79 -14.84,16.3 -17.88,5.3 -4.88,3.12 -16.98,13.99 -9.05,2.6 -38.52,-4.12 -18.64,-7.45 -15.53,-11.43 -13.28,-5.51 -11.42,10.5 -9.39,-7.84 -9.2,-0.2 -9.41,2.85 -9.99,1.21 -37.75,-11.6 -34.73,-22.27 -17.82,-5.61 -13.68,13.39 3.65,15.71 -6.58,2.89 -5.17,5.16 -9.62,12.77 -21.35,21.45 -0.7,6.91 11.8,9.83 6.05,11.38 1.76,13.65 -0.93,16.83 10.64,30.72 -4.27,8.18 -14.98,21.83 -7.94,17.37 -1.22,20.9 3.35,41.91 -2.94,10.93 -1.26,9.02 1.09,10.32 4.01,7.62 9.62,8.49 2.47,9.23 -12.03,3.97 -4.65,11.35 -1.34,20.4 -8.33,11.28 -18.68,4.2 -10.7,7.86 -12.37,20.92 -6.37,8.3 -8.56,2.77 -11.87,0.99 -11.64,4.93 -7.12,8.69 1.41,12.36 -0.84,8.32 -10.07,-1.48 -7.63,4.76 -7.43,10.2 -35.46,20.94 -17.95,5.24 -20.31,-3.71 -43.1,-24.29 -23.5,-6.08 -30.66,16.11 -23.32,-0.57 -10.42,5.83 -9.73,8.09 -11.74,4.75 -12.1,2.12 -29.69,-1.66 -5.26,3.52 -3.09,5.72 -6.65,16.24 -1.91,3.32 -6,-2.97 -4.82,-5.71 -3.72,-5.61 -2.7,-2.66 -6.88,2.63 -3.93,5.7 -3.95,2.99 -7.34,-5.75 -29.31,36.13 -7.95,6.99 -12.38,1.11 -9.03,-3.3 -8.13,0.66 -9.53,13.12 1.57,4.19 2.49,3.1 -11.03,12.18 -4.56,2.37 4.82,19.26 15.54,35.08 1.71,8.91 3.63,6.41 8.12,25.31 -5.08,3.68 -19.81,9.23 5.94,6.98 6.66,13.14 5.1,14.07 1.83,10.1 -18.07,31.67 0.27,1.39 -2.07,5.11 0.3,4.76 -0.71,3.3 -5.4,0.7 -18.92,-1.77 -34.68,-10.16 -0.64,6.89 4.69,0.43 -10.21,12.89 -16.33,6.89 -12.63,11.55 0.73,27 -113.96,4.97 -16.35,-2.97 -7.15,0.87 -7.38,3.36 -10.55,8.02 -7.15,1.69 -6.07,-2.64 -15.11,-11.99 -5.46,-3.02 -8.39,0.35 -73.77,18.71 -26.01,1.03 -31.96,-27.86 -45.27,-8.2 -14.27,1.53 -13.47,6.05 -24.1,19.28 -22.86,-18.44 -21.27,-8.23 -50.26,-3.97 -10.89,2.66 -21.16,14.07 -46.73,4.82 -9.53,-5.79 -47.18,29.84 -8.1,15.38 1.91,29.16 5.74,20.84 1.52,16.08 -11.22,14.62 -0.54,6.83 11.93,18.82 -1.56,22.72 -12.09,18.64 -19.8,6.9 -19.76,2.95 -23.96,10.14 -16.62,15.91 2.49,20.52 -16.79,31.22 -19.84,47.26 -7.22,43.86 32.75,33.74 14.37,27.4 9.16,26.91 -4.01,11.61 -13.54,10.62 3.28,26.18 15.72,41.35 -22.34,15.71 -46.78,45.08 -41.73,13.02 -21.48,25.05 -13.25,5.05 -7.67,6.29 -26.44,43.84 -11.36,11.5 -75.59,47.44 -19.05,8.56 -23.93,24.43 -13.9,4.91 -15.04,0.09 -14.44,3.32 -12.33,8.39 -8.77,15.05 16.62,16.79 6.02,14.01 1.28,21.22 -2.57,13.73 -11.04,38.82 -4.8,10.95 -0.5,6.86 30.75,26.49 39.2,24.41 37.19,34.46 19,23.02 7.39,20.74 1.2,9.42 15.34,64.44 -2.61,15.98 -5.26,15.35 -3.71,17.94 0.74,14.92 3.8,13.93 5.83,10.4 6.71,4.32 4.33,7.7 14.8,35.64 6.34,11.26 -3.67,0.95 -0.9,3.2 0.13,4.79 -0.95,5.93 1.71,14.04 3.34,15.26 4.35,14.52 4.68,11.41 11,14.03 3.74,2.39 3.3,2.98 0.69,6.68 0,7.56 1.07,6.01 18.67,26.5 5.52,14.21 7,35.61 3.44,10.97 3.2,2.92 4.48,1.03 3.84,2.13 1.22,6.05 0.5,8.09 18.36,58.3 1.95,16.44 -3.24,23.63 -20.23,36.01 -6.72,29.54"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 9011.93,3379.49 0,0 25.57,9.63 16.19,0.93 8.2,-8.6 8,-6.04 48.29,-6.51 23.51,-18.11 46.78,-47.34 24.49,-15.5 33.65,-8.89 15.92,3.28 8.74,29.76 11.47,10.86 24.36,15.36 110.23,100.78 7.14,14.27 1.36,18.68 2.51,4.21 6.07,6.2 5.81,9.16 1.39,13.18 -5.54,16.83 -0.23,9.6 6.36,8.9 -5.75,6.21 10.02,12.41 25.43,18.49 13.66,14.45 7.33,17.53 8.02,35.67 7.73,3.53 1.22,3.81 0.72,3.31 0.62,8.61 -18.38,10.61 -54.59,76.7 -16.6,18 -5.71,8.86 -4.91,12.45 -2.75,22.02 -3.69,10.59 -8.45,3.95 -0.95,7.59 3.18,1.44 1.89,1.88 4.16,5.47 -4.87,-0.61 13.94,86.4 -1.03,8.23 -5.48,0.91 -3.18,1.47 -2.69,1.7 -4.2,1.68 -0.86,6.93 6.79,11.41 4.43,4.13 6.26,2.66 -0.86,6.9 -5.59,6.59 -3.24,8.95 -1.24,10.71 0.37,11.73 -9.88,0 -9.07,6.29 -7.97,9.6 -11.19,16.8 -19.9,24.83 -3.82,0.16 -4.28,1.31 -54.51,64.18 -4.49,11.54 -10.89,19.91 -59.46,29.44 -24.12,30.78 -4.18,0.4 -5.42,8.41 -21.64,16.46 -7.04,13.22 6.82,7.37 0.29,6.22 -2.77,6.39 -2.32,7.55 -0.14,11.17 1.97,6.84 2.4,4.77 1.3,5.1 -2.09,17.75 -4.38,15.27 -3.25,15.74 1.41,19.41 -13.02,6.46 -13.99,22.21 -20.85,43.09 -7.76,9.91 -19.91,17.43 -7.5,10.08 -9.84,17.99 -6.48,7.46 -7.5,2.95 -27.08,0.59 -8.63,3.69 -23.21,14.88 -37.85,11.7 -17.29,8.39 -17.88,17.3 -5.57,-4.97 -5.35,-1.86 -6,0.72 -7.1,3.28 -7.87,7.2 -4.04,8.37 -2.51,8 -3.62,5.69 -14.42,5.86 -14.14,-2.42 -28.54,-10.11 -12.34,1.45 -13.21,6.1 -12.28,8.51 -9.3,9.22 -4.27,6.92 -7.21,14.95 -6.41,7.44 -8.69,4.6 -16.63,2.84 -8.16,7.57 -64.56,24.82 -4.53,12.44 -0.96,39.89 -7.54,13.06 -28.42,15.57 -7.39,12.47 -7.09,8.53 -14.06,2.06 -14.29,-3.6 -7.99,-8.39 -4.78,-0.53 -3.34,11.31 -6,4.18 -7.8,-0.46 -8.8,-2.57 4.8,19.82 -5.63,13.27 -23.93,18.54 -19.21,-4.88 -26.5,2.37 -24.73,8.9 -14.3,14.88 -9.73,6.01 -22.22,21.2 -24.06,12.68 -6.52,6.97 -25.37,41.79 -14.84,16.3 -17.88,5.3 -4.88,3.12 -16.98,13.99 -9.05,2.6 -38.52,-4.12 -18.64,-7.45 -15.53,-11.43 -13.28,-5.51 -11.42,10.5 -9.39,-7.84 -9.2,-0.2 -9.41,2.85 -9.99,1.21 -37.75,-11.6 -34.73,-22.27 -17.82,-5.61 -13.68,13.39 3.65,15.71 -6.58,2.89 -5.17,5.16 -9.62,12.77 -21.35,21.45 -0.7,6.91 11.8,9.83 6.05,11.38 1.76,13.65 -0.93,16.83 10.64,30.72 -4.27,8.18 -14.98,21.83 -7.94,17.37 -1.22,20.9 3.35,41.91 -2.94,10.93 -1.26,9.02 1.09,10.32 4.01,7.62 9.62,8.49 2.47,9.23 -12.03,3.97 -4.65,11.35 -1.34,20.4 -8.33,11.28 -18.68,4.2 -10.7,7.86 -12.37,20.92 -6.37,8.3 -8.56,2.77 -11.87,0.99 -11.64,4.93 -7.12,8.69 1.41,12.36 -0.84,8.32 -10.07,-1.48 -7.63,4.76 -7.43,10.2 -35.46,20.94 -17.95,5.24 -20.31,-3.71 -43.1,-24.29 -23.5,-6.08 -30.66,16.11 -23.32,-0.57 -10.42,5.83 -9.73,8.09 -11.74,4.75 -12.1,2.12 -29.69,-1.66 -5.26,3.52 -3.09,5.72 -6.65,16.24 -1.91,3.32 -6,-2.97 -4.82,-5.71 -3.72,-5.61 -2.7,-2.66 -6.88,2.63 -3.93,5.7 -3.95,2.99 -7.34,-5.75 -29.31,36.13 -7.95,6.99 -12.38,1.11 -9.03,-3.3 -8.13,0.66 -9.53,13.12 1.57,4.19 2.49,3.1 -11.03,12.18 -4.56,2.37 4.82,19.26 15.54,35.08 1.71,8.91 3.63,6.41 8.12,25.31 -5.08,3.68 -19.81,9.23 5.94,6.98 6.66,13.14 5.1,14.07 1.83,10.1 -18.07,31.67 0.27,1.39 -2.07,5.11 0.3,4.76 -0.71,3.3 -5.4,0.7 -18.92,-1.77 -34.68,-10.16 -0.64,6.89 4.69,0.43 -10.21,12.89 -16.33,6.89 -12.63,11.55 0.73,27 -113.96,4.97 -16.35,-2.97 -7.15,0.87 -7.38,3.36 -10.55,8.02 -7.15,1.69 -6.07,-2.64 -15.11,-11.99 -5.46,-3.02 -8.39,0.35 -73.77,18.71 -26.01,1.03 -31.96,-27.86 -45.27,-8.2 -14.27,1.53 -13.47,6.05 -24.1,19.28 -22.86,-18.44 -21.27,-8.23 -50.26,-3.97 -10.89,2.66 -21.16,14.07 -46.73,4.82 -9.53,-5.79 -47.18,29.84 -8.1,15.38 1.91,29.16 5.74,20.84 1.52,16.08 -11.22,14.62 -0.54,6.83 11.93,18.82 -1.56,22.72 -12.09,18.64 -19.8,6.9 -19.76,2.95 -23.96,10.14 -16.62,15.91 2.49,20.52 -16.79,31.22 -19.84,47.26 -7.22,43.86 32.75,33.74 14.37,27.4 9.16,26.91 -4.01,11.61 -13.54,10.62 3.28,26.18 15.72,41.35 -22.34,15.71 -46.78,45.08 -41.73,13.02 -21.48,25.05 -13.25,5.05 -7.67,6.29 -26.44,43.84 -11.36,11.5 -75.59,47.44 -19.05,8.56 -23.93,24.43 -13.9,4.91 -15.04,0.09 -14.44,3.32 -12.33,8.39 -8.77,15.05 16.62,16.79 6.02,14.01 1.28,21.22 -2.57,13.73 -11.04,38.82 -4.8,10.95 -0.5,6.86 30.75,26.49 39.2,24.41 37.19,34.46 19,23.02 7.39,20.74 1.2,9.42 15.34,64.44 -2.61,15.98 -5.26,15.35 -3.71,17.94 0.74,14.92 3.8,13.93 5.83,10.4 6.71,4.32 4.33,7.7 14.8,35.64 6.34,11.26 -3.67,0.95 -0.9,3.2 0.13,4.79 -0.95,5.93 1.71,14.04 3.34,15.26 4.35,14.52 4.68,11.41 11,14.03 3.74,2.39 3.3,2.98 0.69,6.68 0,7.56 1.07,6.01 18.67,26.5 5.52,14.21 7,35.61 3.44,10.97 3.2,2.92 4.48,1.03 3.84,2.13 1.22,6.05 0.5,8.09 18.36,58.3 1.95,16.44 -3.24,23.63 -20.23,36.01 -6.72,29.54"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7375" /><path
+               id="path3332" /><path
                d="m 4805.33,3518.62 0,0 1.38,14.19 5,11.06 19.18,14.31 3.86,26.85 7.21,7.55 10.88,0.62 21.17,-4.14 11.79,6.44 7.71,16.75 1.25,23.69 -1.64,25.97 0.89,21.84 -3.57,19.84 -12.39,20.85 -44.61,42.65 -15.73,29.7 -11.74,14.03 -14.3,8.7 -14.34,2.59 -14.07,-4.33 -13.77,-7.99 -13.07,-3.6 -12.29,6.21 -7.27,13.66 -0.87,14.38 1.24,13.56 -2.16,11.75 0.14,8.29 6.84,5 8.91,12.36 5.12,25.93 -0.97,31.22 -5.95,25.2 -13.97,17.56 -38.88,22.79 -14.87,14.69 -30.52,-4.88 -38.48,10.29 -24.22,-7.07 -17.83,0.56 -17.8,5.12 -20.11,9.66 -8.66,-4.56 -8.14,0.49 -15.84,35.9 -24.55,28.15 -6.05,16.93 6.08,15 17.84,8.72 23.15,6.52 35.1,18.2 31.1,10.88 25.41,28.38 19.8,10.19 11.83,11.55 9.7,18.35 7.49,39.05 5.47,10.66 0.56,13.47 -18.31,51.27 -0.39,18.46 10.45,15.45 34.87,42.49 12.88,23.16 5.47,21.81 0.52,32.7 9.92,11.91 2.02,40.57 6.27,31.9 9.4,25.49 8.6,10.04 10.46,3.86 13.52,10.63 16.88,7.78 32.68,-5.41 6.07,8.6 4.91,12.08 25.3,10.31 24.06,17.74 11.45,2.02 16.86,9.52 24.35,26.41 19.28,35.06 4.71,30.31 -8.9,23.48 -26.39,36.98 -13.35,43.43 -23.85,26.22 -9.44,19.33 -2.88,20.82 7.24,33.19 -1.13,21.7 -10.22,19.98 -17.89,12.61 -22.81,4.53 -21.64,0.78 -14.08,4.48 -10.67,30.51 -17.57,12.31 -18.67,16.55 -8.73,27.26 -3.87,28.81 -7.11,20.39 -31.44,36.61 -12.06,18.04 2.16,12.25 7.01,11.4 -0.26,15.96 1.8,19.91 12.04,20.77 16.95,15.38 22.08,10.83 4.33,7.84 -1.6,13.4 -10.78,37.65 0.43,21.76 5.18,18.62 6.39,13.09 7.7,5.19 8.17,-0.5 14.7,4.65 23.43,17.5 19.03,30.59"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4805.33,3518.62 0,0 1.38,14.19 5,11.06 19.18,14.31 3.86,26.85 7.21,7.55 10.88,0.62 21.17,-4.14 11.79,6.44 7.71,16.75 1.25,23.69 -1.64,25.97 0.89,21.84 -3.57,19.84 -12.39,20.85 -44.61,42.65 -15.73,29.7 -11.74,14.03 -14.3,8.7 -14.34,2.59 -14.07,-4.33 -13.77,-7.99 -13.07,-3.6 -12.29,6.21 -7.27,13.66 -0.87,14.38 1.24,13.56 -2.16,11.75 0.14,8.29 6.84,5 8.91,12.36 5.12,25.93 -0.97,31.22 -5.95,25.2 -13.97,17.56 -38.88,22.79 -14.87,14.69 -30.52,-4.88 -38.48,10.29 -24.22,-7.07 -17.83,0.56 -17.8,5.12 -20.11,9.66 -8.66,-4.56 -8.14,0.49 -15.84,35.9 -24.55,28.15 -6.05,16.93 6.08,15 17.84,8.72 23.15,6.52 35.1,18.2 31.1,10.88 25.41,28.38 19.8,10.19 11.83,11.55 9.7,18.35 7.49,39.05 5.47,10.66 0.56,13.47 -18.31,51.27 -0.39,18.46 10.45,15.45 34.87,42.49 12.88,23.16 5.47,21.81 0.52,32.7 9.92,11.91 2.02,40.57 6.27,31.9 9.4,25.49 8.6,10.04 10.46,3.86 13.52,10.63 16.88,7.78 32.68,-5.41 6.07,8.6 4.91,12.08 25.3,10.31 24.06,17.74 11.45,2.02 16.86,9.52 24.35,26.41 19.28,35.06 4.71,30.31 -8.9,23.48 -26.39,36.98 -13.35,43.43 -23.85,26.22 -9.44,19.33 -2.88,20.82 7.24,33.19 -1.13,21.7 -10.22,19.98 -17.89,12.61 -22.81,4.53 -21.64,0.78 -14.08,4.48 -10.67,30.51 -17.57,12.31 -18.67,16.55 -8.73,27.26 -3.87,28.81 -7.11,20.39 -31.44,36.61 -12.06,18.04 2.16,12.25 7.01,11.4 -0.26,15.96 1.8,19.91 12.04,20.77 16.95,15.38 22.08,10.83 4.33,7.84 -1.6,13.4 -10.78,37.65 0.43,21.76 5.18,18.62 6.39,13.09 7.7,5.19 8.17,-0.5 14.7,4.65 23.43,17.5 19.03,30.59"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7377" /><path
+               id="path3334" /><path
                d="m 1256.73,1126.58 0,0 -32.27,-3.28 -16.78,-7.49 -12.27,-12.47 -8.97,-23.43 -9.75,-9.23 -15.09,-4.68 -17.15,-0.26 -15.88,5.7 -12.12,9.78 -8.82,16.17 -7.95,20.93 -12.53,16.26 -20.37,4.77 -23.7,1.91 -20.76,9.5 -9.05,16.14 4.29,18.23 6.8,19.61 -0.95,10.46 -7.74,5.13 -25.08,23.88 -7.149,9.54 -4.652,0.15 -5.711,-2.34 -8.5,1.52 -7.547,5.05 -3.191,8.33 -1.981,15.06 -6.14,1.23 -8.379,-3.75 -8.469,0.01 -14.492,14.74 -6.231,20.31 -0.41,23.64 3,24.76 -13.937,39.17 -9.27,23.13 -11.621,15.68 -2.82,7.54 0.09,13.31 -97.039,112.33 0.25,6.94 5.988,5.68 8.699,15.72 6.641,8.87 13.14,8.64 5.45,5.92 2.57,11.32 -2.508,26.3 -7.98,21.55 -22.442,33.73 -11.379,12.69 -13.019,11.01 -3.961,5.36 -0.828,5.01 -1.492,3.66 -5.782,1.63 -10.566,-0.16 -5.082,1.14 -4.129,3.55 -9.832,14 -15.039,17.22 -17.012,10.55 -15.437,-6.15 -12.95,10.08 -14.832,7.99 -13.089,10.94 -7.649,19.13 -14.07,8.7 -76.66,-1.3 -2.282,4.03 -5.218,0.21 -5.129,2.25 -1.934,10 1.313,11.9 2.648,5.74 12.32,8.33 5.789,0.64 15.93,-2 3.473,3.83 2.308,5.67 13.981,12.27 16.832,34.47 10.039,13.05 12.84,4.8 27.629,-1.08 8.672,-3.73 6.578,0.29 7.691,6.37 12.809,8.07 13.558,2.47 8.832,5.51 -1.058,17.57 -7.332,10.19 -8.168,4.25 -2.742,6.36 9.179,16.82 -6.461,4.76 -4.859,2.41 -4.16,-0.93 -4.047,-5.49 -5.012,14.4 -3.25,16.24 1.551,14.34 8.769,8.82 0.29,7.6 -14.77,5.6 -12.57,17.87 -5.801,23.33 4.961,15.08 5.269,6.67 -5.359,14.07 -12.148,48.16 8.918,8.62 4.14,12.62 3.102,15.23 5.816,16.54 21.731,44.76 13.179,15.04 37.551,30.37 14,5.4 14.441,9.3 10.692,21.29 2.098,20.98 -12.051,8.6 4.242,16.28 2.199,17.91 -1.832,15.99 -7.789,10.72 5.75,8.1 -5.148,7.81 3.929,5.39 2.629,5.5 4.231,11.45 -16.84,15.57 -1.281,24.78 1.113,27.68 -9.813,24.2 20.75,8.95 10.621,6.94 4.801,9.74 5.91,6.3 32.45,19.19 7.308,1.23 5.11,3.89 8.261,12.8 6.789,6.44 4.911,-1.48 4.851,-3.22 5.91,1.61 5.438,8.58 2.761,9.88 3.2,8.12 7.191,3.11 13.027,-0.38 3.332,4.15 1.27,10.83 0.34,4.87 1.031,4.13 1.719,3.6 -1.59,7.99 1.43,2.4 3.531,7.84 -5.371,13.5 1.129,17.16 6.359,30.04 0.703,-0.29 1.68,2.55 1.738,4.28 0.801,4.7 -1.352,4.89 -3.199,4.46 -3.269,2.56 -1.692,-0.81 2.731,10.33 6.441,7.33 1.66,9.18 4.91,9.12 20.899,15.04 9.16,25.03 6.902,7.65 2.989,10.3 -6.84,19.63 15.691,4.85 49.859,38.53 18.91,-0.35 19.15,-5.11 18.63,-1.28 17.34,11.27 6.26,13.92 7.84,33.03 5.3,6.3 36.47,12.91 5.84,4.71 2.72,19.94 3.52,13.91 4.9,8.32 9.67,2.29 8.68,-3.52 8.8,-5.29 17.45,-6.5 16,-15.69 7.14,-4.42 11.02,0.36 7.54,2.91 6.99,1.02 9.42,-5.3 -5.33,22.51 -3.51,8.98 -4.82,6.93 10.7,14.17 8.84,-0.69 28.11,-24.75 1.09,3.64 0.58,14.51 -3.22,23.05 -0.2,15.29 4.89,14.1 8.16,6.78 7.19,-3.68 5.57,-10.85 3.44,-14.98 12.73,28.85 12.74,19.29 17.63,9.84 48.22,4 -7.17,13.98 -37.39,37.39 10.59,12.34 10.71,1.08 28.14,-9.02 2.55,-3.06 3.16,0.33 12.17,14.22 4.38,2.74 3.65,-1.04 3.79,-5.21 -0.17,-6.84 -4.09,-13.42 6.15,-9.17 10.09,0.15 7.2,14.35 -2.91,9.85 -7.2,10.56 -4.25,11.78 5.77,13.52 -3.41,17.82 -0.02,19.88 3.78,11.31 8.2,-7.75 16.35,-25.18 10.22,-8.4 4.97,9.98 -4.03,18.24 -10.01,8.34 -11.23,5.77 -7.95,10.65 -0.27,14.13 2.96,13.78 -0.66,11.29 -11.12,6.58 15.54,-0.39 15.23,-5.73 13.24,-8.74 9.14,-9.19 5.17,4.09 5.21,3.18 -3.36,5.6 -1.37,3.83 -1.5,3.03 -3.6,2.99 8.07,5.45 8.43,2.03 18.32,-0.76 0.19,8.27 -7.35,9.33 1.02,10.84 3.21,10.19 -0.88,7.08 -7.14,0.31 -21.05,-11.64 -8.8,-2.99 -4.8,3.79 -2.59,8.13 -0.05,8.09 2.95,3.6 54.17,13.9 21.09,-0.62 9.38,2.9 9.08,7.81 9.17,4.81 22.42,-3.68 10.07,1.41 6.18,8.12 5.79,12.91 6.77,11.96 9.17,5.02 17.18,4.79 19.87,8.96 0.17,8.27 -5.29,0.11 0.15,6.93 3.48,4.81 0.29,0.81 -1.53,1.85 -1.91,8.41 7.99,7.65 2.98,14.44 1.39,16.81 3.71,14.58 7.9,8.53 9.7,1.38 24.16,-3.8 6.35,4.55 10.73,10.24 8.27,10.29 -0.95,4.77 -1.99,4.85 3.96,10.67 8.53,15.37 7.1,-0.81 19.6,-7.3"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 1256.73,1126.58 0,0 -32.27,-3.28 -16.78,-7.49 -12.27,-12.47 -8.97,-23.43 -9.75,-9.23 -15.09,-4.68 -17.15,-0.26 -15.88,5.7 -12.12,9.78 -8.82,16.17 -7.95,20.93 -12.53,16.26 -20.37,4.77 -23.7,1.91 -20.76,9.5 -9.05,16.14 4.29,18.23 6.8,19.61 -0.95,10.46 -7.74,5.13 -25.08,23.88 -7.149,9.54 -4.652,0.15 -5.711,-2.34 -8.5,1.52 -7.547,5.05 -3.191,8.33 -1.981,15.06 -6.14,1.23 -8.379,-3.75 -8.469,0.01 -14.492,14.74 -6.231,20.31 -0.41,23.64 3,24.76 -13.937,39.17 -9.27,23.13 -11.621,15.68 -2.82,7.54 0.09,13.31 -97.039,112.33 0.25,6.94 5.988,5.68 8.699,15.72 6.641,8.87 13.14,8.64 5.45,5.92 2.57,11.32 -2.508,26.3 -7.98,21.55 -22.442,33.73 -11.379,12.69 -13.019,11.01 -3.961,5.36 -0.828,5.01 -1.492,3.66 -5.782,1.63 -10.566,-0.16 -5.082,1.14 -4.129,3.55 -9.832,14 -15.039,17.22 -17.012,10.55 -15.437,-6.15 -12.95,10.08 -14.832,7.99 -13.089,10.94 -7.649,19.13 -14.07,8.7 -76.66,-1.3 -2.282,4.03 -5.218,0.21 -5.129,2.25 -1.934,10 1.313,11.9 2.648,5.74 12.32,8.33 5.789,0.64 15.93,-2 3.473,3.83 2.308,5.67 13.981,12.27 16.832,34.47 10.039,13.05 12.84,4.8 27.629,-1.08 8.672,-3.73 6.578,0.29 7.691,6.37 12.809,8.07 13.558,2.47 8.832,5.51 -1.058,17.57 -7.332,10.19 -8.168,4.25 -2.742,6.36 9.179,16.82 -6.461,4.76 -4.859,2.41 -4.16,-0.93 -4.047,-5.49 -5.012,14.4 -3.25,16.24 1.551,14.34 8.769,8.82 0.29,7.6 -14.77,5.6 -12.57,17.87 -5.801,23.33 4.961,15.08 5.269,6.67 -5.359,14.07 -12.148,48.16 8.918,8.62 4.14,12.62 3.102,15.23 5.816,16.54 21.731,44.76 13.179,15.04 37.551,30.37 14,5.4 14.441,9.3 10.692,21.29 2.098,20.98 -12.051,8.6 4.242,16.28 2.199,17.91 -1.832,15.99 -7.789,10.72 5.75,8.1 -5.148,7.81 3.929,5.39 2.629,5.5 4.231,11.45 -16.84,15.57 -1.281,24.78 1.113,27.68 -9.813,24.2 20.75,8.95 10.621,6.94 4.801,9.74 5.91,6.3 32.45,19.19 7.308,1.23 5.11,3.89 8.261,12.8 6.789,6.44 4.911,-1.48 4.851,-3.22 5.91,1.61 5.438,8.58 2.761,9.88 3.2,8.12 7.191,3.11 13.027,-0.38 3.332,4.15 1.27,10.83 0.34,4.87 1.031,4.13 1.719,3.6 -1.59,7.99 1.43,2.4 3.531,7.84 -5.371,13.5 1.129,17.16 6.359,30.04 0.703,-0.29 1.68,2.55 1.738,4.28 0.801,4.7 -1.352,4.89 -3.199,4.46 -3.269,2.56 -1.692,-0.81 2.731,10.33 6.441,7.33 1.66,9.18 4.91,9.12 20.899,15.04 9.16,25.03 6.902,7.65 2.989,10.3 -6.84,19.63 15.691,4.85 49.859,38.53 18.91,-0.35 19.15,-5.11 18.63,-1.28 17.34,11.27 6.26,13.92 7.84,33.03 5.3,6.3 36.47,12.91 5.84,4.71 2.72,19.94 3.52,13.91 4.9,8.32 9.67,2.29 8.68,-3.52 8.8,-5.29 17.45,-6.5 16,-15.69 7.14,-4.42 11.02,0.36 7.54,2.91 6.99,1.02 9.42,-5.3 -5.33,22.51 -3.51,8.98 -4.82,6.93 10.7,14.17 8.84,-0.69 28.11,-24.75 1.09,3.64 0.58,14.51 -3.22,23.05 -0.2,15.29 4.89,14.1 8.16,6.78 7.19,-3.68 5.57,-10.85 3.44,-14.98 12.73,28.85 12.74,19.29 17.63,9.84 48.22,4 -7.17,13.98 -37.39,37.39 10.59,12.34 10.71,1.08 28.14,-9.02 2.55,-3.06 3.16,0.33 12.17,14.22 4.38,2.74 3.65,-1.04 3.79,-5.21 -0.17,-6.84 -4.09,-13.42 6.15,-9.17 10.09,0.15 7.2,14.35 -2.91,9.85 -7.2,10.56 -4.25,11.78 5.77,13.52 -3.41,17.82 -0.02,19.88 3.78,11.31 8.2,-7.75 16.35,-25.18 10.22,-8.4 4.97,9.98 -4.03,18.24 -10.01,8.34 -11.23,5.77 -7.95,10.65 -0.27,14.13 2.96,13.78 -0.66,11.29 -11.12,6.58 15.54,-0.39 15.23,-5.73 13.24,-8.74 9.14,-9.19 5.17,4.09 5.21,3.18 -3.36,5.6 -1.37,3.83 -1.5,3.03 -3.6,2.99 8.07,5.45 8.43,2.03 18.32,-0.76 0.19,8.27 -7.35,9.33 1.02,10.84 3.21,10.19 -0.88,7.08 -7.14,0.31 -21.05,-11.64 -8.8,-2.99 -4.8,3.79 -2.59,8.13 -0.05,8.09 2.95,3.6 54.17,13.9 21.09,-0.62 9.38,2.9 9.08,7.81 9.17,4.81 22.42,-3.68 10.07,1.41 6.18,8.12 5.79,12.91 6.77,11.96 9.17,5.02 17.18,4.79 19.87,8.96 0.17,8.27 -5.29,0.11 0.15,6.93 3.48,4.81 0.29,0.81 -1.53,1.85 -1.91,8.41 7.99,7.65 2.98,14.44 1.39,16.81 3.71,14.58 7.9,8.53 9.7,1.38 24.16,-3.8 6.35,4.55 10.73,10.24 8.27,10.29 -0.95,4.77 -1.99,4.85 3.96,10.67 8.53,15.37 7.1,-0.81 19.6,-7.3"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7379" /><path
+               id="path3336" /><path
                d="m 4209.48,3872.14 0,0 -2.11,-18.33 -6.19,-14.97 -8.23,-6.47 -17.64,-12.63 -22.82,-25.9 -13.63,-7.54 -54.49,-0.07 -29.57,7.11 -56.3,29.72 -10.14,3.52 -13.73,1.46 -0.18,5.02 -10.44,28.61 -13.3,22.14 -3.8,4.37 -24.62,12.51 -88.11,7.92 -23.34,16.8 -14.58,66.79 -22.54,22.31 0.65,21.2 -12.82,36.23 1.7,10.7 -0.15,8.34 -4.79,7.24 0.42,5.58 2.49,4.93 1.46,5.05 -0.48,26.2 -3.86,13.23 -9.08,7.03 -11.22,5.23 -10.13,7.7 -5.21,12.05 -3.08,15.09 -4.63,12.74 -9.8,5.26 -50.92,14.35 -38.2,22.83 -5.86,-3.49 -6.07,-7.75 -14.23,2.01 -27.82,9.15 -45.56,-4.99 -21.04,5.23 -15.4,20.71 6.89,-0.64 5.89,1.48 11.17,7.08 -5.35,7.53 9.06,10.85 14.86,35.77 8.82,14.57 13.82,5.89 6.96,4.99 2.85,9.49 2.56,12.67 6.16,8.23 15.74,13.27 -3.45,1.66 -0.53,0.81 0.05,1.46 -1.42,3.59 5.82,18.64 4.91,8.49 7.92,4.24 10.93,-16.12 21.63,-2.32 21.21,2.32 9.74,-2.2 1.95,10.62 4.7,5.51 4.68,6.97 1.91,15.05 -1.58,2.42 -2.95,6.39 -1.38,6.65 3.27,3.15 6.94,0.34 4.25,1.83 2.66,4.8 2.58,9.14 5.08,-2.71 2.19,-1.7 2.86,-3.64 -0.08,4.77 0.6,5.28 0.34,6.06 -1.26,7.32 10.38,-0.91 4.21,-1.75 5.16,-5.28 5.42,6.93 7.88,4.84 9.26,2.88 9.73,1.13 -6.08,5.19 -20.41,8.67 -9.19,1.39 -1.66,-2.61 -4.2,-4.55 -4.41,-2.06 -2.04,5.2 1.14,7.44 3.33,5.13 4.72,3.54 5.7,2.48 -6.5,4.64 -11.71,0.61 -6.3,2.61 -3.84,4.83 -8.96,14.43 -2.79,3.21 -11.73,-3.24 -8.76,-7.61 -9.26,-2.41 -13.29,12.55 5.18,7.69 -7.47,3.49 -5.58,7.24 -1.69,9.4 4.69,10.07 -12.68,20.3 -20.64,4.03 -43.81,-2.69 -8.09,4.77 -13.93,15.15 -4.75,3.19 -10.83,0.85 -7.22,4.25 -2.51,9.15 3.27,15.84 -2.4,0.41 -7.15,-0.54 -0.1,7.61 7.34,-0.64 5.02,1.97 3.5,5.07 2.95,9.06 -18.46,9.14 -16.56,41.79 -13.2,-6.01 1.56,6.13 0.13,3.18 0.37,2.61 2.5,4.03 -0.09,6.92 -11.02,-2.91 -29.63,2.4 -8.42,6.82 -4.07,13.39 -4.43,8.91 -9.72,-6.68 -7.6,10.69 -21.47,13.69 -4.63,9.45 -4.22,12.64 -10.07,4.5 -23.46,1.39 -10.76,5.59 -14.41,14.65 -22.12,4.82 -19,9.33 -10.48,2.89 -3.95,5.67 -1.58,5.82 1.14,5.71 4.19,5.53 -0.07,8.3 -4.27,3.5 -1.9,3.16 -1.05,3.71 -2.42,5.41 9.5,0.08 -0.06,6.95 -14.4,9.84 -7.41,14.6 -6.23,15.7 -10.78,13.35 14.44,3.11 6.33,12.41 -1.06,16.96 -8.02,16.63 -5.39,8.92 -6.66,16.7 -5.04,8.05 -6.47,5.92 -21.99,9.74 -0.05,6.93 4.13,3.97 6.26,7.78 4.49,9.81 -0.92,9.63 -4.9,0.43 -15.46,-12.44 -5.72,-3.39 -9.97,0.29 -6.61,2.78 -3.84,7.93 -1.28,15.82 -4.1,5.86 -9.2,-3.04 -9.48,-7.53 -5.02,-7.23 -12.47,6.36 -10.16,-6.49 -9.69,-8.56 -10.64,0.11 -8.92,12.28 -0.68,14.74 5.34,12.52 8.84,6.02 -2.77,12.88 -0.78,19.55 0.92,18.74 2.3,10.33 -8.77,12.72 -3.53,18.03 3.12,16.04 20.14,12.68 6.06,11.9 -0.97,10.94 -11.8,2.57 -0.03,6.92 5.92,5.47 15.55,5.38 6.6,4.52 1.41,17.61 8.6,22.97 1.72,20.05 -29.03,11.77 -6.26,7.57 -0.72,7.54 7.27,3.49 35.25,-6.71 -1.07,8.63 -2.05,5.96 -2.88,4.11 -3.48,3.37 6.79,4.53 21.21,1.36 9.98,2.65 -4.35,22.83 6.21,32.8 -4.98,16.85 -8.81,3.06 -24.23,-11.7 -11.69,4.22 -5.95,14.41 -8.44,38.46 -7.07,7.75 -4.19,0.52 -9.73,3.75 -5.04,3.09 -8.24,7.43 -5.24,9.2 -0.22,10.46 6.64,10.95 -7.9,8.19 -13.56,22.47 -7.15,7.84 -27.52,10.47 -7.56,8.39 -12.37,20.78 -5.75,2.91 -22.33,6.04 -25.08,11.8 -33.23,4.43 -50.59,15.79 -49.73,-12.78 -63.44,-15.76 -16.35,8.44 -15.11,37.1 -12.73,8.36 9.37,16.36 13.26,9.39 14.18,4.22 12.16,0.98 12.18,7.4 1.62,17.38 0.02,20.37 7.17,16.28 0.01,6.85 -4.48,19.77 10.73,17.97 14.81,17.15 7.32,17.32 1.61,26.4 5.48,17.92 10.13,10.21 15.77,3.1 0,6.87 -6.81,9.91 -1.43,17.6 2.65,19.11 5.57,14.89 10.61,-9.01 11.35,-5.59 10.71,-0.26 9.01,7.23 -0.01,7.66 -3.98,3.12 -1.89,3.12 -1.43,3.85 -2.33,5.11 18.89,0.02 0,6.84 -14.27,15.9 -0.01,8.25 14.57,0.57 5.78,14.83 3.07,45.41 6.25,22.23 8.02,5.23 10.09,0.78 12.54,9.09 -1.69,15.7 7.98,7.84 10.55,7.63 5.74,15.14 -9.98,3.64 -2.18,11.45 0.36,15.57 -1.69,15.55 16.01,-4.65 6.04,0.1 5.17,4.63 -3.07,9.01 0.15,5.97 2.86,4.22 5.03,3.68 -0.02,6.85 -17.26,4.45 -9.6,16.54 -1.87,21.29 5.48,19.11 -19.55,8.09 -3.13,2.9 -1.02,13.25 -1.32,3.48 0.81,1.82 5.68,8.35 20.52,15.26 2.36,3.75 2.45,8.02 3.92,7.89 7.06,3.14 -6.83,7.18 -6.68,3.32 -6.74,-0.02 -6.9,-2.95 1.79,8.56 3.93,5.31 5.58,2.4 7.4,-0.33 -0.02,6.93 -13.73,7.7 -9.89,15.59 -1.69,17.32 11.03,13.17 -9.03,3.95 0.97,5.54 5,7.34 2.99,9.46 -3.63,10.58 -8.22,5.74 -49.43,6.37 -13.12,9 0.53,17.87 -11.31,4.88 -18.35,1.56 -18.35,-1.63 -11.63,-4.84 -2.78,17.25 -11.05,0.28 -14.02,-3.8 -11.53,5.31 -11.62,7.89 -16.95,7.95 -11.28,10.69 5.59,15.93 0.01,6.87 -9.31,7.98 -24.37,3.42 -12,3.91 -22.51,18.67 -35.5,37.87 -9.87,7.97 -10.44,4.83 -20.3,3.26 -6.68,3.76 -10.23,12.76 -4.69,7.49 -0.9,3.35 -9.43,19.25 -4.16,3.55 -14.53,-1.09 -7.56,0.94 -15.7,11.05 -27.55,11.42 -5.56,12.61 -2.07,6.73 -9.31,20.38 -2.04,11.01 0.33,45.63 1.37,18.73 8.02,43 4.84,18.21"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4209.48,3872.14 0,0 -2.11,-18.33 -6.19,-14.97 -8.23,-6.47 -17.64,-12.63 -22.82,-25.9 -13.63,-7.54 -54.49,-0.07 -29.57,7.11 -56.3,29.72 -10.14,3.52 -13.73,1.46 -0.18,5.02 -10.44,28.61 -13.3,22.14 -3.8,4.37 -24.62,12.51 -88.11,7.92 -23.34,16.8 -14.58,66.79 -22.54,22.31 0.65,21.2 -12.82,36.23 1.7,10.7 -0.15,8.34 -4.79,7.24 0.42,5.58 2.49,4.93 1.46,5.05 -0.48,26.2 -3.86,13.23 -9.08,7.03 -11.22,5.23 -10.13,7.7 -5.21,12.05 -3.08,15.09 -4.63,12.74 -9.8,5.26 -50.92,14.35 -38.2,22.83 -5.86,-3.49 -6.07,-7.75 -14.23,2.01 -27.82,9.15 -45.56,-4.99 -21.04,5.23 -15.4,20.71 6.89,-0.64 5.89,1.48 11.17,7.08 -5.35,7.53 9.06,10.85 14.86,35.77 8.82,14.57 13.82,5.89 6.96,4.99 2.85,9.49 2.56,12.67 6.16,8.23 15.74,13.27 -3.45,1.66 -0.53,0.81 0.05,1.46 -1.42,3.59 5.82,18.64 4.91,8.49 7.92,4.24 10.93,-16.12 21.63,-2.32 21.21,2.32 9.74,-2.2 1.95,10.62 4.7,5.51 4.68,6.97 1.91,15.05 -1.58,2.42 -2.95,6.39 -1.38,6.65 3.27,3.15 6.94,0.34 4.25,1.83 2.66,4.8 2.58,9.14 5.08,-2.71 2.19,-1.7 2.86,-3.64 -0.08,4.77 0.6,5.28 0.34,6.06 -1.26,7.32 10.38,-0.91 4.21,-1.75 5.16,-5.28 5.42,6.93 7.88,4.84 9.26,2.88 9.73,1.13 -6.08,5.19 -20.41,8.67 -9.19,1.39 -1.66,-2.61 -4.2,-4.55 -4.41,-2.06 -2.04,5.2 1.14,7.44 3.33,5.13 4.72,3.54 5.7,2.48 -6.5,4.64 -11.71,0.61 -6.3,2.61 -3.84,4.83 -8.96,14.43 -2.79,3.21 -11.73,-3.24 -8.76,-7.61 -9.26,-2.41 -13.29,12.55 5.18,7.69 -7.47,3.49 -5.58,7.24 -1.69,9.4 4.69,10.07 -12.68,20.3 -20.64,4.03 -43.81,-2.69 -8.09,4.77 -13.93,15.15 -4.75,3.19 -10.83,0.85 -7.22,4.25 -2.51,9.15 3.27,15.84 -2.4,0.41 -7.15,-0.54 -0.1,7.61 7.34,-0.64 5.02,1.97 3.5,5.07 2.95,9.06 -18.46,9.14 -16.56,41.79 -13.2,-6.01 1.56,6.13 0.13,3.18 0.37,2.61 2.5,4.03 -0.09,6.92 -11.02,-2.91 -29.63,2.4 -8.42,6.82 -4.07,13.39 -4.43,8.91 -9.72,-6.68 -7.6,10.69 -21.47,13.69 -4.63,9.45 -4.22,12.64 -10.07,4.5 -23.46,1.39 -10.76,5.59 -14.41,14.65 -22.12,4.82 -19,9.33 -10.48,2.89 -3.95,5.67 -1.58,5.82 1.14,5.71 4.19,5.53 -0.07,8.3 -4.27,3.5 -1.9,3.16 -1.05,3.71 -2.42,5.41 9.5,0.08 -0.06,6.95 -14.4,9.84 -7.41,14.6 -6.23,15.7 -10.78,13.35 14.44,3.11 6.33,12.41 -1.06,16.96 -8.02,16.63 -5.39,8.92 -6.66,16.7 -5.04,8.05 -6.47,5.92 -21.99,9.74 -0.05,6.93 4.13,3.97 6.26,7.78 4.49,9.81 -0.92,9.63 -4.9,0.43 -15.46,-12.44 -5.72,-3.39 -9.97,0.29 -6.61,2.78 -3.84,7.93 -1.28,15.82 -4.1,5.86 -9.2,-3.04 -9.48,-7.53 -5.02,-7.23 -12.47,6.36 -10.16,-6.49 -9.69,-8.56 -10.64,0.11 -8.92,12.28 -0.68,14.74 5.34,12.52 8.84,6.02 -2.77,12.88 -0.78,19.55 0.92,18.74 2.3,10.33 -8.77,12.72 -3.53,18.03 3.12,16.04 20.14,12.68 6.06,11.9 -0.97,10.94 -11.8,2.57 -0.03,6.92 5.92,5.47 15.55,5.38 6.6,4.52 1.41,17.61 8.6,22.97 1.72,20.05 -29.03,11.77 -6.26,7.57 -0.72,7.54 7.27,3.49 35.25,-6.71 -1.07,8.63 -2.05,5.96 -2.88,4.11 -3.48,3.37 6.79,4.53 21.21,1.36 9.98,2.65 -4.35,22.83 6.21,32.8 -4.98,16.85 -8.81,3.06 -24.23,-11.7 -11.69,4.22 -5.95,14.41 -8.44,38.46 -7.07,7.75 -4.19,0.52 -9.73,3.75 -5.04,3.09 -8.24,7.43 -5.24,9.2 -0.22,10.46 6.64,10.95 -7.9,8.19 -13.56,22.47 -7.15,7.84 -27.52,10.47 -7.56,8.39 -12.37,20.78 -5.75,2.91 -22.33,6.04 -25.08,11.8 -33.23,4.43 -50.59,15.79 -49.73,-12.78 -63.44,-15.76 -16.35,8.44 -15.11,37.1 -12.73,8.36 9.37,16.36 13.26,9.39 14.18,4.22 12.16,0.98 12.18,7.4 1.62,17.38 0.02,20.37 7.17,16.28 0.01,6.85 -4.48,19.77 10.73,17.97 14.81,17.15 7.32,17.32 1.61,26.4 5.48,17.92 10.13,10.21 15.77,3.1 0,6.87 -6.81,9.91 -1.43,17.6 2.65,19.11 5.57,14.89 10.61,-9.01 11.35,-5.59 10.71,-0.26 9.01,7.23 -0.01,7.66 -3.98,3.12 -1.89,3.12 -1.43,3.85 -2.33,5.11 18.89,0.02 0,6.84 -14.27,15.9 -0.01,8.25 14.57,0.57 5.78,14.83 3.07,45.41 6.25,22.23 8.02,5.23 10.09,0.78 12.54,9.09 -1.69,15.7 7.98,7.84 10.55,7.63 5.74,15.14 -9.98,3.64 -2.18,11.45 0.36,15.57 -1.69,15.55 16.01,-4.65 6.04,0.1 5.17,4.63 -3.07,9.01 0.15,5.97 2.86,4.22 5.03,3.68 -0.02,6.85 -17.26,4.45 -9.6,16.54 -1.87,21.29 5.48,19.11 -19.55,8.09 -3.13,2.9 -1.02,13.25 -1.32,3.48 0.81,1.82 5.68,8.35 20.52,15.26 2.36,3.75 2.45,8.02 3.92,7.89 7.06,3.14 -6.83,7.18 -6.68,3.32 -6.74,-0.02 -6.9,-2.95 1.79,8.56 3.93,5.31 5.58,2.4 7.4,-0.33 -0.02,6.93 -13.73,7.7 -9.89,15.59 -1.69,17.32 11.03,13.17 -9.03,3.95 0.97,5.54 5,7.34 2.99,9.46 -3.63,10.58 -8.22,5.74 -49.43,6.37 -13.12,9 0.53,17.87 -11.31,4.88 -18.35,1.56 -18.35,-1.63 -11.63,-4.84 -2.78,17.25 -11.05,0.28 -14.02,-3.8 -11.53,5.31 -11.62,7.89 -16.95,7.95 -11.28,10.69 5.59,15.93 0.01,6.87 -9.31,7.98 -24.37,3.42 -12,3.91 -22.51,18.67 -35.5,37.87 -9.87,7.97 -10.44,4.83 -20.3,3.26 -6.68,3.76 -10.23,12.76 -4.69,7.49 -0.9,3.35 -9.43,19.25 -4.16,3.55 -14.53,-1.09 -7.56,0.94 -15.7,11.05 -27.55,11.42 -5.56,12.61 -2.07,6.73 -9.31,20.38 -2.04,11.01 0.33,45.63 1.37,18.73 8.02,43 4.84,18.21"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7381" /><path
+               id="path3338" /><path
                d="m 2649.96,5402.94 0,0 -58.02,-25.36 -35.16,-22.59 -42.15,0.22 -6.57,-1.18 -12.21,-5.08 -5.15,-1.19 -2.11,-3.47 -3.9,-15.1 -3.39,-3.51 -11.8,-2.36 -18.25,-10.74 -29.39,-3.58 -4.88,1.26 -3.49,4.86 -3.09,13.87 -2.6,4.15 -10.8,3.83 -31.53,4.8 -20.82,13.09 -16.9,19.93 -4.99,22.42 15.25,20.77 0.06,6.87 -5.14,0.04 -0.17,6.12 1.52,1.12 2.08,-0.34 1.79,1.34 -28.08,24.16 -89.37,53.06 -13.23,-7.34 -85.58,-14.16 -6.44,3.07 -14.69,10.25 -79.3,9.66 -33.51,12.22 -25.48,21.06 -0.25,4.9 1.13,1.28 1.91,-0.09 2.46,0.78 -6.13,4.09 -6.16,2.36 -13.82,1.52 -6.31,3.18 -2.12,7.15 -0.71,7.62 -2.19,5.06 -6.2,3.23 -3.53,-0.26 -4.05,-1.72 -7.48,-0.87 -6.3,3.78 -8.75,16.32 -7.97,3.81 -0.99,4.37 -3.31,20.1 -1.89,6.01 -5.33,1.24 -15.26,-1.39 -3.2,4.05 -14.62,31.39 -1.55,14.56 17.11,3.06 -3.52,11.75 1.85,9.47 6.37,6.4 9.92,3.21 0.14,7.6 -37.49,8.33 -18.12,9.18 -9.41,21.65 3.54,13.19 -3.65,9.63 -7.82,5.86 -9.3,2.09 -0.29,5.31 0.93,1.61 1.68,0.24 2.12,1.04 -5.37,11.6 -7.19,7.05 -9.66,3.68 -12.31,1.21 -4.34,7.42 -10.68,35.08 -4.74,11.79 -51.5,35.29 -3.79,11.49 -6.12,9.19 -1.87,9.6 2.31,9.6 6.53,8.95 -2.09,0.53 -7.15,-0.32 0.19,8.28 4.65,-0.11 0.16,6.93 -13.96,0.32 5.18,22.65 0.46,5.74 -1.19,1.34 -2.1,-0.12 -1.63,1.4 3.13,1.64 6.34,5.75 0.16,6.87 -5.64,7.32 -12.16,26.91 -9.94,31.75 -1.59,13.89 3.59,28.5 -7.15,3.37 -6.74,4.84 -3.21,8.23 3.98,14.25 -2.61,1.55 -6.49,5.59 9.26,-0.22 0.2,8.28 -7.92,3.86 -5.97,6.12 -2.37,8.83 3.43,11.93 -3.16,1.84 -6.33,5.24 7.14,7.97 3.31,10.87 -0.46,11.29 -4.4,9.13 0.16,6.87 5.02,-0.13 0.19,7.61 -5.02,0.12 0.18,7.6 9.32,6.92 10.39,26.98 9.52,11.67 -13.63,16.46 -4.38,26.27 -1.75,29.8 -5.94,26.9 6.9,6.17 2.33,7.6 -3.41,6.34 -9.89,2.08 5.9,12.63 18.77,10.96 4.3,10.6 4.27,4.06 8.96,17.17 6.53,18.79 -2.59,8.97 -4.09,7.7 -3.25,17.96 -2.69,36.04 3.04,20.38 11.1,36.34 1.23,10.65 4.53,11.57 1.02,15.55 -1.33,15.57 -2.94,11.81 -3.18,3.88 -10.9,9.77 -1.49,1.93 -3.09,4.91 1.4,10.78 4.69,18.1 10.34,11.08 37.67,14.26 -1.34,15.68 0.16,6.9 3.27,4.76 1.43,5.27 0.49,17.1 1.46,11.11 3.32,5.17 4.55,3.62 5.04,6.4 4.43,3.71 4.41,0.17 3.56,2.99 1.67,12.19 1.85,6.81 4.3,5.61 4.88,4.02 3.47,1.9 0.18,8.29 -15.77,16.43 -4.94,12.5 -1.8,38.9 -2.93,11.2 -6.79,4.88 -7.33,-0.16"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 2649.96,5402.94 0,0 -58.02,-25.36 -35.16,-22.59 -42.15,0.22 -6.57,-1.18 -12.21,-5.08 -5.15,-1.19 -2.11,-3.47 -3.9,-15.1 -3.39,-3.51 -11.8,-2.36 -18.25,-10.74 -29.39,-3.58 -4.88,1.26 -3.49,4.86 -3.09,13.87 -2.6,4.15 -10.8,3.83 -31.53,4.8 -20.82,13.09 -16.9,19.93 -4.99,22.42 15.25,20.77 0.06,6.87 -5.14,0.04 -0.17,6.12 1.52,1.12 2.08,-0.34 1.79,1.34 -28.08,24.16 -89.37,53.06 -13.23,-7.34 -85.58,-14.16 -6.44,3.07 -14.69,10.25 -79.3,9.66 -33.51,12.22 -25.48,21.06 -0.25,4.9 1.13,1.28 1.91,-0.09 2.46,0.78 -6.13,4.09 -6.16,2.36 -13.82,1.52 -6.31,3.18 -2.12,7.15 -0.71,7.62 -2.19,5.06 -6.2,3.23 -3.53,-0.26 -4.05,-1.72 -7.48,-0.87 -6.3,3.78 -8.75,16.32 -7.97,3.81 -0.99,4.37 -3.31,20.1 -1.89,6.01 -5.33,1.24 -15.26,-1.39 -3.2,4.05 -14.62,31.39 -1.55,14.56 17.11,3.06 -3.52,11.75 1.85,9.47 6.37,6.4 9.92,3.21 0.14,7.6 -37.49,8.33 -18.12,9.18 -9.41,21.65 3.54,13.19 -3.65,9.63 -7.82,5.86 -9.3,2.09 -0.29,5.31 0.93,1.61 1.68,0.24 2.12,1.04 -5.37,11.6 -7.19,7.05 -9.66,3.68 -12.31,1.21 -4.34,7.42 -10.68,35.08 -4.74,11.79 -51.5,35.29 -3.79,11.49 -6.12,9.19 -1.87,9.6 2.31,9.6 6.53,8.95 -2.09,0.53 -7.15,-0.32 0.19,8.28 4.65,-0.11 0.16,6.93 -13.96,0.32 5.18,22.65 0.46,5.74 -1.19,1.34 -2.1,-0.12 -1.63,1.4 3.13,1.64 6.34,5.75 0.16,6.87 -5.64,7.32 -12.16,26.91 -9.94,31.75 -1.59,13.89 3.59,28.5 -7.15,3.37 -6.74,4.84 -3.21,8.23 3.98,14.25 -2.61,1.55 -6.49,5.59 9.26,-0.22 0.2,8.28 -7.92,3.86 -5.97,6.12 -2.37,8.83 3.43,11.93 -3.16,1.84 -6.33,5.24 7.14,7.97 3.31,10.87 -0.46,11.29 -4.4,9.13 0.16,6.87 5.02,-0.13 0.19,7.61 -5.02,0.12 0.18,7.6 9.32,6.92 10.39,26.98 9.52,11.67 -13.63,16.46 -4.38,26.27 -1.75,29.8 -5.94,26.9 6.9,6.17 2.33,7.6 -3.41,6.34 -9.89,2.08 5.9,12.63 18.77,10.96 4.3,10.6 4.27,4.06 8.96,17.17 6.53,18.79 -2.59,8.97 -4.09,7.7 -3.25,17.96 -2.69,36.04 3.04,20.38 11.1,36.34 1.23,10.65 4.53,11.57 1.02,15.55 -1.33,15.57 -2.94,11.81 -3.18,3.88 -10.9,9.77 -1.49,1.93 -3.09,4.91 1.4,10.78 4.69,18.1 10.34,11.08 37.67,14.26 -1.34,15.68 0.16,6.9 3.27,4.76 1.43,5.27 0.49,17.1 1.46,11.11 3.32,5.17 4.55,3.62 5.04,6.4 4.43,3.71 4.41,0.17 3.56,2.99 1.67,12.19 1.85,6.81 4.3,5.61 4.88,4.02 3.47,1.9 0.18,8.29 -15.77,16.43 -4.94,12.5 -1.8,38.9 -2.93,11.2 -6.79,4.88 -7.33,-0.16"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7383" /><path
+               id="path3340" /><path
                d="m 4631.64,3183.49 0,0 40.72,-29.66 3.55,4.06 8.2,6.86 2.93,4.72 1.32,7.33 -0.52,7.1 -1.62,9.13 7.04,31.5 -0.19,13.36 -8.71,8.2 11.25,9.44 -0.5,9.33 -3.84,9.38 1.14,9.49 -0.29,8.28 -13.34,0.43 -19.28,-5.1 -11.4,3.14 -10.34,7.12 -9.17,9.8 -7.26,12.52 -4.64,15.06 -7.65,-3.98 -6.27,6.31 -11.36,20.35 -21.06,15.39 -10.32,12.43 -4.85,19.94 -8.81,18.14 -19.32,13.55 -36.94,16 -58.18,25.3 -25.82,4.71 -6.79,5.23 -12.51,13.43 -36.55,28.54 -13.91,14.4 -13.2,10.3 -13.48,1.84 -15.14,-10.88 -35.86,-56.27 -14.4,-13.43 -23.64,-10.54 -10.76,-9.38 -4.21,-15.27 -1.84,-16.26 -10.87,-43.2 -18.51,-49.01 -10.29,-18.35 -10.75,-8.15 -14.14,-4.89 1.77,-12.09 6.39,-17.04 -0.56,-19.97 -9.37,-11.05 -13.35,-1.68 -45.39,6.32 -9.54,6.02 -16,21.62 -9.76,8.55 -77.38,35.04 -26.15,2.97 -23.47,9.28 -42.21,31.4 -15.52,-15.18 -21.3,-7.67 -46.35,-0.79 -19.68,4.72 -14.75,9.1 -24.03,24.02 -10.35,5.8 -19.62,-1.56 -17,-14.32 -33.69,-47.59 -3.29,-6.98 -0.4,-8.01 1.15,-13.15 5.38,-30.19 0.32,-13.38 -4.85,-10.31 0.12,-7.6 10.38,-13.28 -4.57,-10.61 -9.68,-9.16 -5.19,-9.18 5.51,-11.31 25.75,-1.58 8.88,-12.72 -23.74,2.52 -9.95,-3.55 1.69,-11.51 23.76,-25.15 4.53,-8.61 1.16,-13.01 -3.06,-6.84 -7.86,-2.71 -12.72,-0.6 -11.56,-2.44 -4.56,-7.18 -5.18,-29.35 9.08,-18.16 -6.7,-22.17 -21.36,-35.81 20.38,-14.89 -22.96,-12.65 -25.2,-0.37 -22.85,8.72 -15.99,14.76 -3.52,7.69 -3.12,14.89 -3.87,7.63 -4.91,3.84 -5.56,2.05 -4.54,2.87 -6.83,24.12 -10.43,12.3 -10.42,8.56 -4.83,6.72 -4.05,8.69 -25.9,25.15 -5.66,2.83 -9.93,1.92 -4.07,2.53 -4.63,5.51 -1.73,4.05 -1.18,4.88 -3.02,8.24 -14.64,30.86 -3.88,23.5 -1.82,6.14 -18.88,25.8 -5.76,13.83 4,13.29 -6.13,6.4 -22.98,12.57 -10.24,42.03 -11.96,12.8 -13.61,7.25 -7.27,10.46 7.48,22.25 -12.63,4.36 -4.38,0.1 -8.99,-3.07 -3.21,-0.22 -13.08,4.06 -4.55,0.23 -4.36,-0.96 -8.43,-4.14 -4,-2.7 -12.94,-13.27 -4.94,-3.17 -13,-5.2 -4.07,-3.02 -4.09,-5.03 -2.23,-5.93 -3.75,-13.82 -5.9,-16.12 -1.63,-6.04 -1.05,-9.04 0.4,-7.19 2.22,-6.37 7.27,-11.89 20.99,-61.45 1.43,-11.12 -1.78,-10.33 -6.5,-21.63 -5.23,-12.94 -1.99,-7.07 -0.34,-9.64 3.38,-5.13 11.87,-4.93 6.73,-5.64 -0.73,-5.71 -5.33,-5.34 -23.69,-13.97 -8.77,-2.57 -8.73,0.76 -38.86,18.05 -13.35,0.27 -25.63,-4.04 -26.06,-9.65 -35.06,2.27 -8.71,-2.89 -8.23,-5.41 -7.53,-7.82 -17.19,-27.14 -12.73,-11.39 -4.9,-6.26 -3.31,-10.87 -1.03,-5.03 -1.4,-4.7 -2.09,-3.86 -3.06,-2.94 -2.04,-1.15 -2.28,-0.6 -1.77,0.92 -0.78,3.69 -4.37,10.76 -10.05,6.29 -11.45,4.23 -8.7,4.86 -8.23,11.11 -2.66,10.85 0.99,28.04 -4.33,13.67 -9.51,9.83 -10.66,7.5 -7.39,6.85 -0.72,11.54 12.65,46.17 1,24.43 -5.49,26.26 -11.89,23.52 -18.49,16.12 -0.01,8.28 7.35,1.64 5.95,4.54 5.48,7.34 6.11,10 -10.41,6.09 -12.01,1.74 -24.5,-1.06 -5.78,5.42 -26.1,40.78 -3.85,24.3 -0.6,1.95 -3.25,3.8 -6.99,1.3 -7,-1.3 -3.21,-3.8 -3.6,0.89 -6.36,4.7 -2.45,10.37 7.94,17.86 -11.43,7.6 -19.83,8.35 -8.27,7.52 -15.1,24.26 -7.14,7.96 -11.86,5.77 -61.92,9.31 -13.09,-0.59 -7.52,-6.63 3.96,-16.43 -12.3,-5.8 -43.84,-5.54 -40.84,-11.9 -67.12,0.55 -10.86,-4.55 -7.41,-11.14 -11.28,-26.25 -29.6,-34.28 -15.7,-8.16 -17.19,-15.43 -18.69,-9 -19.96,11.03 -13.25,-6.81 -31.15,-0.59 -9.98,-7.94"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
                d="m 4631.64,3183.49 0,0 40.72,-29.66 3.55,4.06 8.2,6.86 2.93,4.72 1.32,7.33 -0.52,7.1 -1.62,9.13 7.04,31.5 -0.19,13.36 -8.71,8.2 11.25,9.44 -0.5,9.33 -3.84,9.38 1.14,9.49 -0.29,8.28 -13.34,0.43 -19.28,-5.1 -11.4,3.14 -10.34,7.12 -9.17,9.8 -7.26,12.52 -4.64,15.06 -7.65,-3.98 -6.27,6.31 -11.36,20.35 -21.06,15.39 -10.32,12.43 -4.85,19.94 -8.81,18.14 -19.32,13.55 -36.94,16 -58.18,25.3 -25.82,4.71 -6.79,5.23 -12.51,13.43 -36.55,28.54 -13.91,14.4 -13.2,10.3 -13.48,1.84 -15.14,-10.88 -35.86,-56.27 -14.4,-13.43 -23.64,-10.54 -10.76,-9.38 -4.21,-15.27 -1.84,-16.26 -10.87,-43.2 -18.51,-49.01 -10.29,-18.35 -10.75,-8.15 -14.14,-4.89 1.77,-12.09 6.39,-17.04 -0.56,-19.97 -9.37,-11.05 -13.35,-1.68 -45.39,6.32 -9.54,6.02 -16,21.62 -9.76,8.55 -77.38,35.04 -26.15,2.97 -23.47,9.28 -42.21,31.4 -15.52,-15.18 -21.3,-7.67 -46.35,-0.79 -19.68,4.72 -14.75,9.1 -24.03,24.02 -10.35,5.8 -19.62,-1.56 -17,-14.32 -33.69,-47.59 -3.29,-6.98 -0.4,-8.01 1.15,-13.15 5.38,-30.19 0.32,-13.38 -4.85,-10.31 0.12,-7.6 10.38,-13.28 -4.57,-10.61 -9.68,-9.16 -5.19,-9.18 5.51,-11.31 25.75,-1.58 8.88,-12.72 -23.74,2.52 -9.95,-3.55 1.69,-11.51 23.76,-25.15 4.53,-8.61 1.16,-13.01 -3.06,-6.84 -7.86,-2.71 -12.72,-0.6 -11.56,-2.44 -4.56,-7.18 -5.18,-29.35 9.08,-18.16 -6.7,-22.17 -21.36,-35.81 20.38,-14.89 -22.96,-12.65 -25.2,-0.37 -22.85,8.72 -15.99,14.76 -3.52,7.69 -3.12,14.89 -3.87,7.63 -4.91,3.84 -5.56,2.05 -4.54,2.87 -6.83,24.12 -10.43,12.3 -10.42,8.56 -4.83,6.72 -4.05,8.69 -25.9,25.15 -5.66,2.83 -9.93,1.92 -4.07,2.53 -4.63,5.51 -1.73,4.05 -1.18,4.88 -3.02,8.24 -14.64,30.86 -3.88,23.5 -1.82,6.14 -18.88,25.8 -5.76,13.83 4,13.29 -6.13,6.4 -22.98,12.57 -10.24,42.03 -11.96,12.8 -13.61,7.25 -7.27,10.46 7.48,22.25 -12.63,4.36 -4.38,0.1 -8.99,-3.07 -3.21,-0.22 -13.08,4.06 -4.55,0.23 -4.36,-0.96 -8.43,-4.14 -4,-2.7 -12.94,-13.27 -4.94,-3.17 -13,-5.2 -4.07,-3.02 -4.09,-5.03 -2.23,-5.93 -3.75,-13.82 -5.9,-16.12 -1.63,-6.04 -1.05,-9.04 0.4,-7.19 2.22,-6.37 7.27,-11.89 20.99,-61.45 1.43,-11.12 -1.78,-10.33 -6.5,-21.63 -5.23,-12.94 -1.99,-7.07 -0.34,-9.64 3.38,-5.13 11.87,-4.93 6.73,-5.64 -0.73,-5.71 -5.33,-5.34 -23.69,-13.97 -8.77,-2.57 -8.73,0.76 -38.86,18.05 -13.35,0.27 -25.63,-4.04 -26.06,-9.65 -35.06,2.27 -8.71,-2.89 -8.23,-5.41 -7.53,-7.82 -17.19,-27.14 -12.73,-11.39 -4.9,-6.26 -3.31,-10.87 -1.03,-5.03 -1.4,-4.7 -2.09,-3.86 -3.06,-2.94 -2.04,-1.15 -2.28,-0.6 -1.77,0.92 -0.78,3.69 -4.37,10.76 -10.05,6.29 -11.45,4.23 -8.7,4.86 -8.23,11.11 -2.66,10.85 0.99,28.04 -4.33,13.67 -9.51,9.83 -10.66,7.5 -7.39,6.85 -0.72,11.54 12.65,46.17 1,24.43 -5.49,26.26 -11.89,23.52 -18.49,16.12 -0.01,8.28 7.35,1.64 5.95,4.54 5.48,7.34 6.11,10 -10.41,6.09 -12.01,1.74 -24.5,-1.06 -5.78,5.42 -26.1,40.78 -3.85,24.3 -0.6,1.95 -3.25,3.8 -6.99,1.3 -7,-1.3 -3.21,-3.8 -3.6,0.89 -6.36,4.7 -2.45,10.37 7.94,17.86 -11.43,7.6 -19.83,8.35 -8.27,7.52 -15.1,24.26 -7.14,7.96 -11.86,5.77 -61.92,9.31 -13.09,-0.59 -7.52,-6.63 3.96,-16.43 -12.3,-5.8 -43.84,-5.54 -40.84,-11.9 -67.12,0.55 -10.86,-4.55 -7.41,-11.14 -11.28,-26.25 -29.6,-34.28 -15.7,-8.16 -17.19,-15.43 -18.69,-9 -19.96,11.03 -13.25,-6.81 -31.15,-0.59 -9.98,-7.94"
                style="fill:none;stroke:#00008b;stroke-opacity:1;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
-               id="path7385" /><path
+               id="path3342" /><path
                d="m 2503.88,5570.35 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
                d="m 2503.88,5570.35 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7387" /><g
-               id="g7389"
+               id="path3344" /><g
+               id="g3346"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,253.388,554.035)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,253.388,554.035)"
-                 id="text7391"><tspan
+                 id="text3348"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8 12.448 14.672 19.12 21.784 26.232 28.456"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8 12.448 14.672 19.12 21.784 26.232 28.456"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7393">Bielefeld</tspan></text>
+                   id="tspan3350">Bielefeld</tspan></text>
 </g><g
 </g><g
-               id="g7395"
+               id="g3352"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,252.74,554.685)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,252.74,554.685)"
-                 id="text7397"><tspan
+                 id="text3354"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8 12.448 14.672 19.12 21.784 26.232 28.456"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8 12.448 14.672 19.12 21.784 26.232 28.456"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7399">Bielefeld</tspan></text>
+                   id="tspan3356">Bielefeld</tspan></text>
 </g><path
                d="m 1751.17,5024.57 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1751.17,5024.57 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7401" /><g
-               id="g7403"
+               id="path3358" /><g
+               id="g3360"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,176.653,502.993)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,176.653,502.993)"
-                 id="text7405"><tspan
+                 id="text3362"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.776 16.44 23.552 28.44 33.328"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.776 16.44 23.552 28.44 33.328"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7407">Dortmund</tspan></text>
+                   id="tspan3364">Dortmund</tspan></text>
 </g><g
 </g><g
-               id="g7409"
+               id="g3366"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,176.004,503.643)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,176.004,503.643)"
-                 id="text7411"><tspan
+                 id="text3368"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.776 16.44 23.552 28.44 33.328"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.776 16.44 23.552 28.44 33.328"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7413">Dortmund</tspan></text>
+                   id="tspan3370">Dortmund</tspan></text>
 </g><path
                d="m 1262.23,4926 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1262.23,4926 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7415" /><g
-               id="g7417"
+               id="path3372" /><g
+               id="g3374"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,106.668,481.6)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,106.668,481.6)"
-                 id="text7419"><tspan
+                 id="text3376"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 12.888 17.336 22.224 27.112 30.224"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 12.888 17.336 22.224 27.112 30.224"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7421">Duisburg</tspan></text>
+                   id="tspan3378">Duisburg</tspan></text>
 </g><g
 </g><g
-               id="g7423"
+               id="g3380"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,106.019,482.25)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,106.019,482.25)"
-                 id="text7425"><tspan
+                 id="text3382"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 12.888 17.336 22.224 27.112 30.224"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 12.888 17.336 22.224 27.112 30.224"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7427">Duisburg</tspan></text>
+                   id="tspan3384">Duisburg</tspan></text>
 </g><path
                d="m 1549.16,4717.75 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1549.16,4717.75 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7429" /><g
-               id="g7431"
+               id="path3386" /><g
+               id="g3388"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,156.452,472.311)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,156.452,472.311)"
-                 id="text7433"><tspan
+                 id="text3390"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 7.552 12.44 17.328 22.216 26.664 29.776 32.44 36.888"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 7.552 12.44 17.328 22.216 26.664 29.776 32.44 36.888"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7435">Wuppertal</tspan></text>
+                   id="tspan3392">Wuppertal</tspan></text>
 </g><g
 </g><g
-               id="g7437"
+               id="g3394"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,155.804,472.961)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,155.804,472.961)"
-                 id="text7439"><tspan
+                 id="text3396"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 7.552 12.44 17.328 22.216 26.664 29.776 32.44 36.888"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 7.552 12.44 17.328 22.216 26.664 29.776 32.44 36.888"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7441">Wuppertal</tspan></text>
+                   id="tspan3398">Wuppertal</tspan></text>
 </g><path
                d="m 1448.14,4942.91 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1448.14,4942.91 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7443" /><g
-               id="g7445"
+               id="path3400" /><g
+               id="g3402"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,146.35,494.827)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,146.35,494.827)"
-                 id="text7447"><tspan
+                 id="text3404"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 9.784 14.232 18.68"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 9.784 14.232 18.68"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7449">Essen</tspan></text>
+                   id="tspan3406">Essen</tspan></text>
 </g><g
 </g><g
-               id="g7451"
+               id="g3408"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,145.701,495.477)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,145.701,495.477)"
-                 id="text7453"><tspan
+                 id="text3410"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 9.784 14.232 18.68"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 9.784 14.232 18.68"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7455">Essen</tspan></text>
+                   id="tspan3412">Essen</tspan></text>
 </g><path
                d="m 1471.04,4130.54 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1471.04,4130.54 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7457" /><g
-               id="g7459"
+               id="path3414" /><g
+               id="g3416"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,148.639,413.589)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,148.639,413.589)"
-                 id="text7461"><tspan
+                 id="text3418"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7463">Bonn</tspan></text>
+                   id="tspan3420">Bonn</tspan></text>
 </g><g
 </g><g
-               id="g7465"
+               id="g3422"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,147.99,414.239)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,147.99,414.239)"
-                 id="text7467"><tspan
+                 id="text3424"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7469">Bonn</tspan></text>
+                   id="tspan3426">Bonn</tspan></text>
 </g><path
                d="m 1878.36,5512.03 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1878.36,5512.03 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7471" /><g
-               id="g7473"
+               id="path3428" /><g
+               id="g3430"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,189.371,551.739)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,189.371,551.739)"
-                 id="text7475"><tspan
+                 id="text3432"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.664 11.552 16.44 20.888 23.552 28"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.664 11.552 16.44 20.888 23.552 28"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7477">Münster</tspan></text>
+                   id="tspan3434">Münster</tspan></text>
 </g><g
 </g><g
-               id="g7479"
+               id="g3436"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,188.723,552.389)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,188.723,552.389)"
-                 id="text7481"><tspan
+                 id="text3438"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.664 11.552 16.44 20.888 23.552 28"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.664 11.552 16.44 20.888 23.552 28"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7483">Münster</tspan></text>
+                   id="tspan3440">Münster</tspan></text>
 </g><path
                d="m 2387.45,2201.85 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 2387.45,2201.85 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7485" /><g
-               id="g7487"
+               id="path3442" /><g
+               id="g3444"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,240.28,220.721)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,240.28,220.721)"
-                 id="text7489"><tspan
+                 id="text3446"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 13.336 15.56 20.008 23.12 28.008 32.896"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 13.336 15.56 20.008 23.12 28.008 32.896"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7491">Karlsruhe</tspan></text>
+                   id="tspan3448">Karlsruhe</tspan></text>
 </g><g
 </g><g
-               id="g7493"
+               id="g3450"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,239.633,221.371)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,239.633,221.371)"
-                 id="text7495"><tspan
+                 id="text3452"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 13.336 15.56 20.008 23.12 28.008 32.896"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 13.336 15.56 20.008 23.12 28.008 32.896"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7497">Karlsruhe</tspan></text>
+                   id="tspan3454">Karlsruhe</tspan></text>
 </g><path
                d="m 2608.72,2667.46 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 2608.72,2667.46 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7499" /><g
-               id="g7501"
+               id="path3456" /><g
+               id="g3458"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,262.407,267.282)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,262.407,267.282)"
-                 id="text7503"><tspan
+                 id="text3460"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 12.448 17.336 21.784 24.008 28.896 33.344 36.456"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 12.448 17.336 21.784 24.008 28.896 33.344 36.456"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7505">Heidelberg</tspan></text>
+                   id="tspan3462">Heidelberg</tspan></text>
 </g><g
 </g><g
-               id="g7507"
+               id="g3464"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,261.76,267.932)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,261.76,267.932)"
-                 id="text7509"><tspan
+                 id="text3466"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 12.448 17.336 21.784 24.008 28.896 33.344 36.456"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 12.448 17.336 21.784 24.008 28.896 33.344 36.456"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7511">Heidelberg</tspan></text>
+                   id="tspan3468">Heidelberg</tspan></text>
 </g><path
                d="m 3566.47,1538.43 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 3566.47,1538.43 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7513" /><g
-               id="g7515"
+               id="path3470" /><g
+               id="g3472"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,358.182,154.379)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,358.182,154.379)"
-                 id="text7517"><tspan
+                 id="text3474"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7519">Ulm</tspan></text>
+                   id="tspan3476">Ulm</tspan></text>
 </g><g
 </g><g
-               id="g7521"
+               id="g3478"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,357.533,155.029)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,357.533,155.029)"
-                 id="text7523"><tspan
+                 id="text3480"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7525">Ulm</tspan></text>
+                   id="tspan3482">Ulm</tspan></text>
 </g><path
                d="m 2442.57,2757.74 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 2442.57,2757.74 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7527" /><g
-               id="g7529"
+               id="path3484" /><g
+               id="g3486"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,245.793,276.309)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,245.793,276.309)"
-                 id="text7531"><tspan
+                 id="text3488"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.664 11.112 16 20.888 25.776 30.224 32.448"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.664 11.112 16 20.888 25.776 30.224 32.448"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7533">Mannheim</tspan></text>
+                   id="tspan3490">Mannheim</tspan></text>
 </g><g
 </g><g
-               id="g7535"
+               id="g3492"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,245.145,276.959)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,245.145,276.959)"
-                 id="text7537"><tspan
+                 id="text3494"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.664 11.112 16 20.888 25.776 30.224 32.448"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.664 11.112 16 20.888 25.776 30.224 32.448"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7539">Mannheim</tspan></text>
+                   id="tspan3496">Mannheim</tspan></text>
 </g><path
                d="m 1983.36,1095.21 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1983.36,1095.21 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7541" /><g
-               id="g7543"
+               id="path3498" /><g
+               id="g3500"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,201.336,106.521)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,201.336,106.521)"
-                 id="text7545"><tspan
+                 id="text3502"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 8 12.448 14.672 19.56 24.448 27.56"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 8 12.448 14.672 19.56 24.448 27.56"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7547">Freiburg</tspan></text>
+                   id="tspan3504">Freiburg</tspan></text>
 </g><g
 </g><g
-               id="g7549"
+               id="g3506"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,200.688,107.171)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,200.688,107.171)"
-                 id="text7551"><tspan
+                 id="text3508"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 8 12.448 14.672 19.56 24.448 27.56"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 8 12.448 14.672 19.56 24.448 27.56"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7553">Freiburg</tspan></text>
+                   id="tspan3510">Freiburg</tspan></text>
 </g><path
                d="m 3174.91,4758.63 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 3174.91,4758.63 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7555" /><g
-               id="g7557"
+               id="path3512" /><g
+               id="g3514"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,319.027,476.398)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,319.027,476.398)"
-                 id="text7559"><tspan
+                 id="text3516"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 14.672 19.12 23.568"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 14.672 19.12 23.568"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7561">Kassel</tspan></text>
+                   id="tspan3518">Kassel</tspan></text>
 </g><g
 </g><g
-               id="g7563"
+               id="g3520"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,318.379,477.048)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,318.379,477.048)"
-                 id="text7565"><tspan
+                 id="text3522"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 14.672 19.12 23.568"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 14.672 19.12 23.568"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7567">Kassel</tspan></text>
+                   id="tspan3524">Kassel</tspan></text>
 </g><path
                d="m 2578.53,3961.5 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 2578.53,3961.5 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7569" /><g
-               id="g7571"
+               id="path3526" /><g
+               id="g3528"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,259.389,396.686)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,259.389,396.686)"
-                 id="text7573"><tspan
+                 id="text3530"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 8.448 12.896 17.344 21.792 26.24"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 8.448 12.896 17.344 21.792 26.24"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7575">Giessen</tspan></text>
+                   id="tspan3532">Giessen</tspan></text>
 </g><g
 </g><g
-               id="g7577"
+               id="g3534"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,258.741,397.336)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,258.741,397.336)"
-                 id="text7579"><tspan
+                 id="text3536"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 8.448 12.896 17.344 21.792 26.24"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 8.448 12.896 17.344 21.792 26.24"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7581">Giessen</tspan></text>
+                   id="tspan3538">Giessen</tspan></text>
 </g><path
                d="m 2548.03,7261.44 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 2548.03,7261.44 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7583" /><g
-               id="g7585"
+               id="path3540" /><g
+               id="g3542"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,256.339,726.68)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,256.339,726.68)"
-                 id="text7587"><tspan
+                 id="text3544"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8.888 13.336 20.448 24.896 28.008 32.896 37.344 41.792 46.24"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8.888 13.336 20.448 24.896 28.008 32.896 37.344 41.792 46.24"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7589">Bremerhaven</tspan></text>
+                   id="tspan3546">Bremerhaven</tspan></text>
 </g><g
 </g><g
-               id="g7591"
+               id="g3548"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,255.692,727.33)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,255.692,727.33)"
-                 id="text7593"><tspan
+                 id="text3550"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8.888 13.336 20.448 24.896 28.008 32.896 37.344 41.792 46.24"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8.888 13.336 20.448 24.896 28.008 32.896 37.344 41.792 46.24"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7595">Bremerhaven</tspan></text>
+                   id="tspan3552">Bremerhaven</tspan></text>
 </g><path
                d="m 2304.43,6795.73 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 2304.43,6795.73 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7597" /><g
-               id="g7599"
+               id="path3554" /><g
+               id="g3556"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,231.979,680.109)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,231.979,680.109)"
-                 id="text7601"><tspan
+                 id="text3558"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 8.448 13.336 17.784 22.672 27.56 32.448 35.56"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 8.448 13.336 17.784 22.672 27.56 32.448 35.56"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7603">Oldenburg</tspan></text>
+                   id="tspan3560">Oldenburg</tspan></text>
 </g><g
 </g><g
-               id="g7605"
+               id="g3562"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,231.33,680.759)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,231.33,680.759)"
-                 id="text7607"><tspan
+                 id="text3564"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 8.448 13.336 17.784 22.672 27.56 32.448 35.56"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 8.448 13.336 17.784 22.672 27.56 32.448 35.56"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7609">Oldenburg</tspan></text>
+                   id="tspan3566">Oldenburg</tspan></text>
 </g><path
                d="m 1639.72,7071 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1639.72,7071 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7611" /><g
-               id="g7613"
+               id="path3568" /><g
+               id="g3570"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,165.507,707.636)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,165.507,707.636)"
-                 id="text7615"><tspan
+                 id="text3572"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 12.448 17.336 21.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 12.448 17.336 21.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7617">Emden</tspan></text>
+                   id="tspan3574">Emden</tspan></text>
 </g><g
 </g><g
-               id="g7619"
+               id="g3576"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,164.858,708.286)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,164.858,708.286)"
-                 id="text7621"><tspan
+                 id="text3578"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 12.448 17.336 21.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 12.448 17.336 21.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7623">Emden</tspan></text>
+                   id="tspan3580">Emden</tspan></text>
 </g><path
                d="m 3850.31,5824.58 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 3850.31,5824.58 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7625" /><g
-               id="g7627"
+               id="path3582" /><g
+               id="g3584"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,386.566,582.994)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,386.566,582.994)"
-                 id="text7629"><tspan
+                 id="text3586"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8.888 13.336 18.224 23.112 27.56 32.008 36.896 43.12 47.568 49.792"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8.888 13.336 18.224 23.112 27.56 32.008 36.896 43.12 47.568 49.792"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7631">Braunschweig</tspan></text>
+                   id="tspan3588">Braunschweig</tspan></text>
 </g><g
 </g><g
-               id="g7633"
+               id="g3590"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,385.919,583.644)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,385.919,583.644)"
-                 id="text7635"><tspan
+                 id="text3592"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8.888 13.336 18.224 23.112 27.56 32.008 36.896 43.12 47.568 49.792"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 8.888 13.336 18.224 23.112 27.56 32.008 36.896 43.12 47.568 49.792"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7637">Braunschweig</tspan></text>
+                   id="tspan3594">Braunschweig</tspan></text>
 </g><path
                d="m 2178.21,5852.12 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 2178.21,5852.12 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7639" /><g
-               id="g7641"
+               id="path3596" /><g
+               id="g3598"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,219.357,585.748)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,219.357,585.748)"
-                 id="text7643"><tspan
+                 id="text3600"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 10.672 15.56 20.008 24.896 28.008 32.896 37.344"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 10.672 15.56 20.008 24.896 28.008 32.896 37.344"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7645">Osnabrück</tspan></text>
+                   id="tspan3602">Osnabrück</tspan></text>
 </g><g
 </g><g
-               id="g7647"
+               id="g3604"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,218.709,586.398)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,218.709,586.398)"
-                 id="text7649"><tspan
+                 id="text3606"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 10.672 15.56 20.008 24.896 28.008 32.896 37.344"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 10.672 15.56 20.008 24.896 28.008 32.896 37.344"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7651">Osnabrück</tspan></text>
+                   id="tspan3608">Osnabrück</tspan></text>
 </g><path
                d="m 3464.62,5006.59 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 3464.62,5006.59 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7653" /><g
-               id="g7655"
+               id="path3610" /><g
+               id="g3612"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,347.998,501.195)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,347.998,501.195)"
-                 id="text7657"><tspan
+                 id="text3614"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 11.112 13.776 16.44 18.664 23.552 28.44 32.888"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 11.112 13.776 16.44 18.664 23.552 28.44 32.888"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7659">Göttingen</tspan></text>
+                   id="tspan3616">Göttingen</tspan></text>
 </g><g
 </g><g
-               id="g7661"
+               id="g3618"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,347.35,501.845)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,347.35,501.845)"
-                 id="text7663"><tspan
+                 id="text3620"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 11.112 13.776 16.44 18.664 23.552 28.44 32.888"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 11.112 13.776 16.44 18.664 23.552 28.44 32.888"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7665">Göttingen</tspan></text>
+                   id="tspan3622">Göttingen</tspan></text>
 </g><path
                d="m 4986.31,4324.57 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 4986.31,4324.57 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7667" /><g
-               id="g7669"
+               id="path3624" /><g
+               id="g3626"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,501.631,429.457)"
-                 id="text7671"><tspan
+                 transform="matrix(1,0,0,-1,500.166,432.993)"
+                 id="text3628"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 10.672 13.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 10.672 13.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7673">Gera</tspan></text>
+                   id="tspan3630">Gera</tspan></text>
 </g><g
 </g><g
-               id="g7675"
+               id="g3632"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,500.982,430.107)"
-                 id="text7677"><tspan
+                 transform="matrix(1,0,0,-1,499.518,433.643)"
+                 id="text3634"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 10.672 13.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 6.224 10.672 13.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7679">Gera</tspan></text>
+                   id="tspan3636">Gera</tspan></text>
 </g><path
                d="m 4639.27,4378.17 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 4639.27,4378.17 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7681" /><g
-               id="g7683"
+               id="path3638" /><g
+               id="g3640"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,466.927,434.817)"
-                 id="text7685"><tspan
+                 transform="matrix(1,0,0,-1,465.463,438.353)"
+                 id="text3642"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.448 8.896 13.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.448 8.896 13.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7687">Jena</tspan></text>
+                   id="tspan3644">Jena</tspan></text>
 </g><g
 </g><g
-               id="g7689"
+               id="g3646"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,466.278,435.467)"
-                 id="text7691"><tspan
+                 transform="matrix(1,0,0,-1,464.814,439.003)"
+                 id="text3648"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.448 8.896 13.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.448 8.896 13.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7693">Jena</tspan></text>
+                   id="tspan3650">Jena</tspan></text>
 </g><path
                d="m 3104.98,8633.7 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 3104.98,8633.7 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7695" /><g
-               id="g7697"
+               id="path3652" /><g
+               id="g3654"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,312.034,863.905)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,312.034,863.905)"
-                 id="text7699"><tspan
+                 id="text3656"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 7.112 11.56 16.448 20.896 25.784 30.672 33.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 7.112 11.56 16.448 20.896 25.784 30.672 33.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7701">Flensburg</tspan></text>
+                   id="tspan3658">Flensburg</tspan></text>
 </g><g
 </g><g
-               id="g7703"
+               id="g3660"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,311.385,864.555)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,311.385,864.555)"
-                 id="text7705"><tspan
+                 id="text3662"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 7.112 11.56 16.448 20.896 25.784 30.672 33.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 7.112 11.56 16.448 20.896 25.784 30.672 33.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7707">Flensburg</tspan></text>
+                   id="tspan3664">Flensburg</tspan></text>
 </g><path
                d="m 3924.33,7629.51 c 0,11.04 -8.95,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.05,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 3924.33,7629.51 c 0,11.04 -8.95,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.05,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7709" /><g
-               id="g7711"
+               id="path3666" /><g
+               id="g3668"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,393.968,763.487)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,393.968,763.487)"
-                 id="text7713"><tspan
+                 id="text3670"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.776 14.664 19.112 23.56"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.776 14.664 19.112 23.56"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7715">Lübeck</tspan></text>
+                   id="tspan3672">Lübeck</tspan></text>
 </g><g
 </g><g
-               id="g7717"
+               id="g3674"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,393.32,764.137)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,393.32,764.137)"
-                 id="text7719"><tspan
+                 id="text3676"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.776 14.664 19.112 23.56"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.776 14.664 19.112 23.56"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7721">Lübeck</tspan></text>
+                   id="tspan3678">Lübeck</tspan></text>
 </g><path
                d="m 1830.3,3710.93 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1830.3,3710.93 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7723" /><g
-               id="g7725"
+               id="path3680" /><g
+               id="g3682"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,186.03,368.093)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,186.03,368.093)"
-                 id="text7727"><tspan
+                 id="text3684"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 17.776 22.224 27.112"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 17.776 22.224 27.112"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7729">Koblenz</tspan></text>
+                   id="tspan3686">Koblenz</tspan></text>
 </g><g
 </g><g
-               id="g7731"
+               id="g3688"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,185.381,368.743)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,185.381,368.743)"
-                 id="text7733"><tspan
+                 id="text3690"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 17.776 22.224 27.112"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 17.776 22.224 27.112"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7735">Koblenz</tspan></text>
+                   id="tspan3692">Koblenz</tspan></text>
 </g><path
                d="m 4227.86,3626.81 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 4227.86,3626.81 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7737" /><g
-               id="g7739"
+               id="path3694" /><g
+               id="g3696"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,424.321,363.216)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,424.321,363.216)"
-                 id="text7741"><tspan
+                 id="text3698"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 20.44 23.552"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 20.44 23.552"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7743">Coburg</tspan></text>
+                   id="tspan3700">Coburg</tspan></text>
 </g><g
 </g><g
-               id="g7745"
+               id="g3702"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,423.672,363.866)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,423.672,363.866)"
-                 id="text7747"><tspan
+                 id="text3704"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 20.44 23.552"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 20.44 23.552"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7749">Coburg</tspan></text>
+                   id="tspan3706">Coburg</tspan></text>
 </g><path
                d="m 4233.98,1495.04 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 4233.98,1495.04 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7751" /><g
-               id="g7753"
+               id="path3708" /><g
+               id="g3710"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,424.934,150.039)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,424.934,150.039)"
-                 id="text7755"><tspan
+                 id="text3712"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 20 24.888 29.776 32.888"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 20 24.888 29.776 32.888"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7757">Augsburg</tspan></text>
+                   id="tspan3714">Augsburg</tspan></text>
 </g><g
 </g><g
-               id="g7759"
+               id="g3716"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,424.285,150.689)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,424.285,150.689)"
-                 id="text7761"><tspan
+                 id="text3718"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 20 24.888 29.776 32.888"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.552 20 24.888 29.776 32.888"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7763">Augsburg</tspan></text>
+                   id="tspan3720">Augsburg</tspan></text>
 </g><path
                d="m 4275.29,2741.87 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 4275.29,2741.87 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7765" /><g
-               id="g7767"
+               id="path3722" /><g
+               id="g3724"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,415.309,279.187)"
-                 id="text7769"><tspan
+                 transform="matrix(1,0,0,-1,400.09,271.187)"
+                 id="text3726"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.776 12.888 15.552"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.776 12.888 15.552"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7771">Fürth</tspan></text>
+                   id="tspan3728">Fürth</tspan></text>
 </g><g
 </g><g
-               id="g7773"
+               id="g3730"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,414.66,279.837)"
-                 id="text7775"><tspan
+                 transform="matrix(1,0,0,-1,399.441,271.837)"
+                 id="text3732"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.776 12.888 15.552"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.776 12.888 15.552"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7777">Fürth</tspan></text>
+                   id="tspan3734">Fürth</tspan></text>
 </g><path
                d="m 5107.29,2269.72 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 5107.29,2269.72 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7779" /><g
-               id="g7781"
+               id="path3736" /><g
+               id="g3738"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,512.264,227.507)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,512.264,227.507)"
-                 id="text7783"><tspan
+                 id="text3740"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 15.112 19.56 24.448 28.896 33.784 38.672 41.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 15.112 19.56 24.448 28.896 33.784 38.672 41.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7785">Regensburg</tspan></text>
+                   id="tspan3742">Regensburg</tspan></text>
 </g><g
 </g><g
-               id="g7787"
+               id="g3744"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,511.616,228.157)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,511.616,228.157)"
-                 id="text7789"><tspan
+                 id="text3746"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 15.112 19.56 24.448 28.896 33.784 38.672 41.784"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.224 15.112 19.56 24.448 28.896 33.784 38.672 41.784"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7791">Regensburg</tspan></text>
+                   id="tspan3748">Regensburg</tspan></text>
 </g><path
                d="m 5170.25,969.781 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 5170.25,969.781 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7793" /><g
-               id="g7795"
+               id="path3750" /><g
+               id="g3752"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,518.561,97.5137)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,518.561,97.5137)"
-                 id="text7797"><tspan
+                 id="text3754"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 19.56 24.448 29.336 33.784 36.008"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 19.56 24.448 29.336 33.784 36.008"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7799">Rosenheim</tspan></text>
+                   id="tspan3756">Rosenheim</tspan></text>
 </g><g
 </g><g
-               id="g7801"
+               id="g3758"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,517.913,98.1637)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,517.913,98.1637)"
-                 id="text7803"><tspan
+                 id="text3760"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 19.56 24.448 29.336 33.784 36.008"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 19.56 24.448 29.336 33.784 36.008"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7805">Rosenheim</tspan></text>
+                   id="tspan3762">Rosenheim</tspan></text>
 </g><path
                d="m 4902.67,3705.08 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 4902.67,3705.08 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7807" /><g
-               id="g7809"
+               id="path3764" /><g
+               id="g3766"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,491.803,371.043)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,491.803,371.043)"
-                 id="text7811"><tspan
+                 id="text3768"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7813">Hof</tspan></text>
+                   id="tspan3770">Hof</tspan></text>
 </g><g
 </g><g
-               id="g7815"
+               id="g3772"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,491.154,371.693)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,491.154,371.693)"
-                 id="text7817"><tspan
+                 id="text3774"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7819">Hof</tspan></text>
+                   id="tspan3776">Hof</tspan></text>
 </g><path
                d="m 3509.98,3094.32 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 3509.98,3094.32 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7821" /><g
-               id="g7823"
+               id="path3778" /><g
+               id="g3780"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,352.534,309.968)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,352.534,309.968)"
-                 id="text7825"><tspan
+                 id="text3782"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 7.552 12.44 15.552 19.552 24.44 29.328 32.44"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 7.552 12.44 15.552 19.552 24.44 29.328 32.44"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7827">Würzburg</tspan></text>
+                   id="tspan3784">Würzburg</tspan></text>
 </g><g
 </g><g
-               id="g7829"
+               id="g3786"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,351.885,310.618)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,351.885,310.618)"
-                 id="text7831"><tspan
+                 id="text3788"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 7.552 12.44 15.552 19.552 24.44 29.328 32.44"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 7.552 12.44 15.552 19.552 24.44 29.328 32.44"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7833">Würzburg</tspan></text>
+                   id="tspan3790">Würzburg</tspan></text>
 </g><path
                d="m 4626.44,1973.87 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 4626.44,1973.87 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7835" /><g
-               id="g7837"
+               id="path3792" /><g
+               id="g3794"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,464.18,197.923)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,464.18,197.923)"
-                 id="text7839"><tspan
+                 id="text3796"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 2.224 7.112 12 16.888 19.112 23.56 26.224 30.672 35.56"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 2.224 7.112 12 16.888 19.112 23.56 26.224 30.672 35.56"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7841">Ingolstadt</tspan></text>
+                   id="tspan3798">Ingolstadt</tspan></text>
 </g><g
 </g><g
-               id="g7843"
+               id="g3800"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,463.532,198.573)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,463.532,198.573)"
-                 id="text7845"><tspan
+                 id="text3802"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 2.224 7.112 12 16.888 19.112 23.56 26.224 30.672 35.56"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 2.224 7.112 12 16.888 19.112 23.56 26.224 30.672 35.56"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7847">Ingolstadt</tspan></text>
+                   id="tspan3804">Ingolstadt</tspan></text>
 </g><path
                d="m 4333.86,2721.17 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 4333.86,2721.17 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7849" /><g
-               id="g7851"
+               id="path3806" /><g
+               id="g3808"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,413.387,261.117)"
-                 id="text7853"><tspan
+                 transform="matrix(1,0,0,-1,436.386,269.117)"
+                 id="text3810"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.776 18.664 23.552 28 31.112"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.776 18.664 23.552 28 31.112"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7855">Nürnberg</tspan></text>
+                   id="tspan3812">Nürnberg</tspan></text>
 </g><g
 </g><g
-               id="g7857"
+               id="g3814"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,412.738,261.767)"
-                 id="text7859"><tspan
+                 transform="matrix(1,0,0,-1,435.738,269.767)"
+                 id="text3816"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.776 18.664 23.552 28 31.112"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.776 18.664 23.552 28 31.112"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7861">Nürnberg</tspan></text>
+                   id="tspan3818">Nürnberg</tspan></text>
 </g><path
                d="m 6502.81,5415.11 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 6502.81,5415.11 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7863" /><g
-               id="g7865"
+               id="path3820" /><g
+               id="g3822"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,651.816,542.046)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,651.816,542.046)"
-                 id="text7867"><tspan
+                 id="text3824"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.328 15.992 20.88 25.768"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.328 15.992 20.88 25.768"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7869">Cottbus</tspan></text>
+                   id="tspan3826">Cottbus</tspan></text>
 </g><g
 </g><g
-               id="g7871"
+               id="g3828"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,651.168,542.696)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,651.168,542.696)"
-                 id="text7873"><tspan
+                 id="text3830"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.328 15.992 20.88 25.768"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 13.328 15.992 20.88 25.768"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7875">Cottbus</tspan></text>
+                   id="tspan3832">Cottbus</tspan></text>
 </g><path
                d="m 5586.55,4308.01 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 5586.55,4308.01 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7877" /><g
-               id="g7879"
+               id="path3834" /><g
+               id="g3836"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,560.191,431.337)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,560.191,431.337)"
-                 id="text7881"><tspan
+                 id="text3838"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 22.224 27.112 29.336 32"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 22.224 27.112 29.336 32"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7883">Chemnitz</tspan></text>
+                   id="tspan3840">Chemnitz</tspan></text>
 </g><g
 </g><g
-               id="g7885"
+               id="g3842"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,559.542,431.987)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,559.542,431.987)"
-                 id="text7887"><tspan
+                 id="text3844"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 22.224 27.112 29.336 32"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 22.224 27.112 29.336 32"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7889">Chemnitz</tspan></text>
+                   id="tspan3846">Chemnitz</tspan></text>
 </g><path
                d="m 5201.48,4852.03 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 5201.48,4852.03 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7891" /><g
-               id="g7893"
+               id="path3848" /><g
+               id="g3850"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,504.368,490.203)"
-                 id="text7895"><tspan
+                 transform="matrix(1,0,0,-1,521.684,485.739)"
+                 id="text3852"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.336 11.56 16.448 20.448 22.672"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.336 11.56 16.448 20.448 22.672"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7897">Leipzig</tspan></text>
+                   id="tspan3854">Leipzig</tspan></text>
 </g><g
 </g><g
-               id="g7899"
+               id="g3856"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,503.72,490.853)"
-                 id="text7901"><tspan
+                 transform="matrix(1,0,0,-1,521.035,486.389)"
+                 id="text3858"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.336 11.56 16.448 20.448 22.672"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 9.336 11.56 16.448 20.448 22.672"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7903">Leipzig</tspan></text>
+                   id="tspan3860">Leipzig</tspan></text>
 </g><path
                d="m 5493.74,8172.6 c 0,11.04 -8.95,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.05,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 5493.74,8172.6 c 0,11.04 -8.95,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.05,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7905" /><g
-               id="g7907"
+               id="path3862" /><g
+               id="g3864"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,550.91,817.796)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,550.91,817.796)"
-                 id="text7909"><tspan
+                 id="text3866"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 8 11.112 15.56 17.784 22.232 27.12 32.008"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 8 11.112 15.56 17.784 22.232 27.12 32.008"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7911">Stralsund</tspan></text>
+                   id="tspan3868">Stralsund</tspan></text>
 </g><g
 </g><g
-               id="g7913"
+               id="g3870"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,550.262,818.446)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,550.262,818.446)"
-                 id="text7915"><tspan
+                 id="text3872"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 8 11.112 15.56 17.784 22.232 27.12 32.008"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.336 8 11.112 15.56 17.784 22.232 27.12 32.008"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7917">Stralsund</tspan></text>
+                   id="tspan3874">Stralsund</tspan></text>
 </g><path
                d="m 4887.31,7884.99 c 0,11.05 -8.96,20 -20,20 -11.04,0 -20,-8.95 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 4887.31,7884.99 c 0,11.05 -8.96,20 -20,20 -11.04,0 -20,-8.95 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7919" /><g
-               id="g7921"
+               id="path3876" /><g
+               id="g3878"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,490.266,789.035)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,490.266,789.035)"
-                 id="text7923"><tspan
+                 id="text3880"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 17.776 22.664 27.112"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 17.776 22.664 27.112"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7925">Rostock</tspan></text>
+                   id="tspan3882">Rostock</tspan></text>
 </g><g
 </g><g
-               id="g7927"
+               id="g3884"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,489.618,789.685)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,489.618,789.685)"
-                 id="text7929"><tspan
+                 id="text3886"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 17.776 22.664 27.112"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 15.112 17.776 22.664 27.112"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7931">Rostock</tspan></text>
+                   id="tspan3888">Rostock</tspan></text>
 </g><path
                d="m 1385.74,4365.99 c 0,11.05 -8.96,20 -20,20 -11.04,0 -20,-8.95 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 1385.74,4365.99 c 0,11.05 -8.96,20 -20,20 -11.04,0 -20,-8.95 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7933" /><g
-               id="g7935"
+               id="path3890" /><g
+               id="g3892"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,141.574,433.599)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,141.574,433.599)"
-                 id="text7937"><tspan
+                 id="text3894"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 12.888"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 12.888"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7939">Köln</tspan></text>
+                   id="tspan3896">Köln</tspan></text>
 </g><g
 </g><g
-               id="g7941"
+               id="g3898"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,140.925,434.249)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,140.925,434.249)"
-                 id="text7943"><tspan
+                 id="text3900"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 12.888"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 5.776 10.664 12.888"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7945">Köln</tspan></text>
+                   id="tspan3902">Köln</tspan></text>
 </g><path
                d="m 2593.89,3423.54 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
 </g><path
                d="m 2593.89,3423.54 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
                style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7947" /><g
-               id="g7949"
+               id="path3904" /><g
+               id="g3906"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,260.925,342.889)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,260.925,342.889)"
-                 id="text7951"><tspan
+                 id="text3908"><tspan
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 8 12.448 17.336 21.784 24.448 29.336 32.448"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 8 12.448 17.336 21.784 24.448 29.336 32.448"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7953">Frankfurt</tspan></text>
+                   id="tspan3910">Frankfurt</tspan></text>
 </g><g
 </g><g
-               id="g7955"
+               id="g3912"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,260.277,343.539)"
                transform="scale(10,10)"><text
                  transform="matrix(1,0,0,-1,260.277,343.539)"
-                 id="text7957"><tspan
+                 id="text3914"><tspan
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 8 12.448 17.336 21.784 24.448 29.336 32.448"
                    y="0"
                    sodipodi:role="line"
                    style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
                    x="0 4.888 8 12.448 17.336 21.784 24.448 29.336 32.448"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7959">Frankfurt</tspan></text>
+                   id="tspan3916">Frankfurt</tspan></text>
 </g><path
 </g><path
-               d="m 4261.58,4410.13 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7961" /><g
-               id="g7963"
+               d="m 6121.11,1815.23 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path3918" /><g
+               id="g3920"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,404.105,425.013)"
-                 id="text7965"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 14.784 19.446 28 33.446"
+                 transform="matrix(1,0,0,-1,613.646,182.059)"
+                 id="text3922"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 9.784 14.232 18.68 23.128"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7967">Erfurt</tspan></text>
+                   id="tspan3924">Passau</tspan></text>
 </g><g
 </g><g
-               id="g7969"
+               id="g3926"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,403.456,425.663)"
-                 id="text7971"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 14.784 19.446 28 33.446"
+                 transform="matrix(1,0,0,-1,612.998,182.709)"
+                 id="text3928"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 9.784 14.232 18.68 23.128"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7973">Erfurt</tspan></text>
+                   id="tspan3930">Passau</tspan></text>
 </g><path
 </g><path
-               d="m 2315.26,3294.92 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.56 13.44,-30 30,-30 16.57,0 30,13.44 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7975" /><g
-               id="g7977"
+               d="m 680.441,6975.09 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path3932" /><g
+               id="g3934"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,185.392,320.249)"
-                 id="text7979"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 11.662 19.446 23.338 31.892"
+                 transform="matrix(1,0,0,-1,69.5797,698.045)"
+                 id="text3936"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.336 13.784 18.672 24.896 29.344 32.456 37.344 41.792"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7981">Mainz</tspan></text>
+                   id="tspan3938">Leeuwarden</tspan></text>
 </g><g
 </g><g
-               id="g7983"
+               id="g3940"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,184.743,320.899)"
-                 id="text7985"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 11.662 19.446 23.338 31.892"
+                 transform="matrix(1,0,0,-1,68.932,698.695)"
+                 id="text3942"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.336 13.784 18.672 24.896 29.344 32.456 37.344 41.792"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7987">Mainz</tspan></text>
+                   id="tspan3944">Leeuwarden</tspan></text>
 </g><path
 </g><path
-               d="m 6164.99,4586.8 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path7989" /><g
-               id="g7991"
+               d="m 1210.66,6920.8 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path3946" /><g
+               id="g3948"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,619.499,453.68)"
-                 id="text7993"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 15.554 23.338 31.122 39.676 47.46"
+                 transform="matrix(1,0,0,-1,122.602,692.616)"
+                 id="text3950"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.224 9.336 14.224 19.112 21.336 26.224 31.112 35.56"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan7995">Dresden</tspan></text>
+                   id="tspan3952">Groningen</tspan></text>
 </g><g
 </g><g
-               id="g7997"
+               id="g3954"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,618.85,454.33)"
-                 id="text7999"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 15.554 23.338 31.122 39.676 47.46"
+                 transform="matrix(1,0,0,-1,121.953,693.266)"
+                 id="text3956"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.224 9.336 14.224 19.112 21.336 26.224 31.112 35.56"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8001">Dresden</tspan></text>
+                   id="tspan3958">Groningen</tspan></text>
 </g><path
 </g><path
-               d="m 4752.24,1265.07 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8003" /><g
-               id="g8005"
+               d="m 393.488,4960.11 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path3960" /><g
+               id="g3962"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,445.779,132.507)"
-                 id="text8007"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 11.662 20.216 28 36.554 44.338"
+                 transform="matrix(1,0,0,-1,40.8844,496.546)"
+                 id="text3964"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 7.56 12.448 17.336 22.224 27.112 31.56 36.008"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8009">Müchen</tspan></text>
+                   id="tspan3966">Eindhoven</tspan></text>
 </g><g
 </g><g
-               id="g8011"
+               id="g3968"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,445.129,133.157)"
-                 id="text8013"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 11.662 20.216 28 36.554 44.338"
+                 transform="matrix(1,0,0,-1,40.2359,497.196)"
+                 id="text3970"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 7.56 12.448 17.336 22.224 27.112 31.56 36.008"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8015">Müchen</tspan></text>
+                   id="tspan3972">Eindhoven</tspan></text>
 </g><path
 </g><path
-               d="m 5821.98,6207.44 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.56 13.43,-30 30,-30 16.57,0 30,13.44 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8017" /><g
-               id="g8019"
+               d="m 169.148,5718.6 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path3974" /><g
+               id="g3976"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,559.361,626.744)"
-                 id="text8021"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 17.892 23.338 27.23 31.122"
+                 transform="matrix(1,0,0,-1,18.4504,572.396)"
+                 id="text3978"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8.44 11.552 16 20.448 25.336"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8023">Berlin</tspan></text>
+                   id="tspan3980">Utrecht</tspan></text>
 </g><g
 </g><g
-               id="g8025"
+               id="g3982"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,558.712,627.394)"
-                 id="text8027"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 17.892 23.338 27.23 31.122"
+                 transform="matrix(1,0,0,-1,17.8023,573.046)"
+                 id="text3984"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8.44 11.552 16 20.448 25.336"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8029">Berlin</tspan></text>
-</g><path
-               d="m 2702.35,6737.46 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8031" /><g
-               id="g8033"
+                   id="tspan3986">Utrecht</tspan></text>
+</g><g
+               id="g3988"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,241.175,657.746)"
-                 id="text8035"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 15.554 23.338 35.784 43.568"
+                 transform="matrix(1,0,0,-1,-26.6113,554.888)"
+                 id="text3990"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 13.328 15.992 20.44 23.552 28.44 32.888"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8037">Bremen</tspan></text>
+                   id="tspan3992">Rotterdam</tspan></text>
 </g><g
 </g><g
-               id="g8039"
+               id="g3994"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,240.525,658.396)"
-                 id="text8041"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 15.554 23.338 35.784 43.568"
+                 transform="matrix(1,0,0,-1,-27.259,555.538)"
+                 id="text3996"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 13.328 15.992 20.44 23.552 28.44 32.888"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8043">Bremen</tspan></text>
+                   id="tspan3998">Rotterdam</tspan></text>
 </g><path
 </g><path
-               d="m 3498.84,7264.81 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8045" /><g
-               id="g8047"
+               d="m 1182.25,6676.35 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4000" /><g
+               id="g4002"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,316.162,710.481)"
-                 id="text8049"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 17.892 30.338 38.892 47.446 52.892"
+                 transform="matrix(1,0,0,-1,119.761,668.171)"
+                 id="text4004"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 14.672 19.12"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8051">Hamburg</tspan></text>
+                   id="tspan4006">Assen</tspan></text>
 </g><g
 </g><g
-               id="g8053"
+               id="g4008"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,315.513,711.131)"
-                 id="text8055"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 17.892 30.338 38.892 47.446 52.892"
+                 transform="matrix(1,0,0,-1,119.112,668.821)"
+                 id="text4010"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 14.672 19.12"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8057">Hamburg</tspan></text>
+                   id="tspan4012">Assen</tspan></text>
 </g><path
 </g><path
-               d="m 3324.26,5946.53 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8059" /><g
-               id="g8061"
+               d="m 713.609,5567.31 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4014" /><g
+               id="g4016"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,297.143,600.653)"
-                 id="text8063"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 17.892 26.446 35 43.554 51.338 59.122"
+                 transform="matrix(1,0,0,-1,72.8965,557.266)"
+                 id="text4018"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8.888 13.776 18.664 23.112"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8065">Hannover</tspan></text>
+                   id="tspan4020">Arnhem</tspan></text>
 </g><g
 </g><g
-               id="g8067"
+               id="g4022"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,296.493,601.303)"
-                 id="text8069"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 17.892 26.446 35 43.554 51.338 59.122"
+                 transform="matrix(1,0,0,-1,72.2477,557.916)"
+                 id="text4024"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8.888 13.776 18.664 23.112"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8071">Hannover</tspan></text>
+                   id="tspan4026">Arnhem</tspan></text>
 </g><path
 </g><path
-               d="m 1359.02,2498.31 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8073" /><g
-               id="g8075"
+               d="m 487.48,4312.97 c 0,11.04 -8.957,20 -20,20 -11.042,0 -20,-8.96 -20,-20 0,-11.04 8.958,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4028" /><g
+               id="g4030"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,42.091,244.831)"
-                 id="text8077"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 17.122 24.906 30.352 38.906 44.352 52.906 60.69 68.474 76.258"
+                 transform="matrix(1,0,0,-1,51.748,428.297)"
+                 id="text4032"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.664 11.112 15.56 20.008 22.672 25.784 28.008 32.456 37.344"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8079">Saarbrücken</tspan></text>
+                   id="tspan4034">Maastricht</tspan></text>
 </g><g
 </g><g
-               id="g8081"
+               id="g4036"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,41.4422,245.481)"
-                 id="text8083"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 17.122 24.906 30.352 38.906 44.352 52.906 60.69 68.474 76.258"
+                 transform="matrix(1,0,0,-1,51.1008,428.947)"
+                 id="text4038"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.664 11.112 15.56 20.008 22.672 25.784 28.008 32.456 37.344"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8085">Saarbrücken</tspan></text>
+                   id="tspan4040">Maastricht</tspan></text>
 </g><path
 </g><path
-               d="m 2983.24,1955.74 c 0,16.56 -13.44,30 -30,30 -16.57,0 -30,-13.44 -30,-30 0,-16.57 13.43,-30 30,-30 16.56,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8087" /><g
-               id="g8089"
+               d="m 856.949,6158.39 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4042" /><g
+               id="g4044"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,301.324,190.574)"
-                 id="text8091"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 14 22.554 27.216 31.878 40.432 48.216 53.662"
+                 transform="matrix(1,0,0,-1,87.2305,616.375)"
+                 id="text4046"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 11.112 16 18.224 20.448"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8093">Stuttgart</tspan></text>
+                   id="tspan4048">Zwolle</tspan></text>
 </g><g
 </g><g
-               id="g8095"
+               id="g4050"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,300.675,191.224)"
-                 id="text8097"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 14 22.554 27.216 31.878 40.432 48.216 53.662"
+                 transform="matrix(1,0,0,-1,86.5816,617.025)"
+                 id="text4052"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 11.112 16 18.224 20.448"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8099">Stuttgart</tspan></text>
+                   id="tspan4054">Zwolle</tspan></text>
 </g><path
 </g><path
-               d="m 1286.01,4692.3 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8101" /><g
-               id="g8103"
+               d="m 45.5703,6003.72 c 0,11.04 -8.957,20 -20,20 -11.043,0 -19.99999,-8.96 -19.99999,-20 0,-11.04 8.95699,-20 19.99999,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4056" /><g
+               id="g4058"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,89.0406,453.23)"
-                 id="text8105"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 18.662 26.446 34.23 42.014 45.906 54.46 63.014 68.46"
+                 transform="matrix(1,0,0,-1,-19.4457,605.372)"
+                 id="text4060"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 12.888 17.336 20 24.448 27.56 32.448 36.896"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8107">Düsseldorf</tspan></text>
+                   id="tspan4062">Amsterdam</tspan></text>
 </g><g
 </g><g
-               id="g8109"
+               id="g4064"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,88.3918,453.88)"
-                 id="text8111"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 18.662 26.446 34.23 42.014 45.906 54.46 63.014 68.46"
+                 transform="matrix(1,0,0,-1,-20.0934,606.022)"
+                 id="text4066"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 12.888 17.336 20 24.448 27.56 32.448 36.896"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8113">Düsseldorf</tspan></text>
-</g><path
-               d="m 2299.73,3403.95 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8115" /><g
-               id="g8117"
+                   id="tspan4068">Amsterdam</tspan></text>
+</g><g
+               id="g4070"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,147.068,335.395)"
-                 id="text8119"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 13.216 17.108 24.892 32.676 41.23 49.014 57.568 65.352"
+                 transform="matrix(1,0,0,-1,-35.9594,477.419)"
+                 id="text4072"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 13.328 19.552 24 27.112 32 36.448"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8121">Wiesbaden</tspan></text>
+                   id="tspan4074">Antwerpen</tspan></text>
 </g><g
 </g><g
-               id="g8123"
+               id="g4076"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,146.419,336.045)"
-                 id="text8125"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 13.216 17.108 24.892 32.676 41.23 49.014 57.568 65.352"
+                 transform="matrix(1,0,0,-1,-36.6074,478.069)"
+                 id="text4078"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 13.328 19.552 24 27.112 32 36.448"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8127">Wiesbaden</tspan></text>
-</g><path
-               d="m 5604.79,6059.27 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8129" /><g
-               id="g8131"
+                   id="tspan4080">Antwerpen</tspan></text>
+</g><g
+               id="g4082"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,527.918,589.927)"
-                 id="text8133"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 17.892 22.554 30.338 38.892 46.676"
+                 transform="matrix(1,0,0,-1,-8.87031,392.177)"
+                 id="text4084"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 17.336 22.224"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8135">Potsdam</tspan></text>
+                   id="tspan4086">Namur</tspan></text>
 </g><g
 </g><g
-               id="g8137"
+               id="g4088"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,527.269,590.577)"
-                 id="text8139"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 17.892 22.554 30.338 38.892 46.676"
+                 transform="matrix(1,0,0,-1,-9.51914,392.827)"
+                 id="text4090"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 17.336 22.224"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8141">Potsdam</tspan></text>
+                   id="tspan4092">Namur</tspan></text>
 </g><path
 </g><path
-               d="m 4629.57,5713.39 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8143" /><g
-               id="g8145"
+               d="m 407.762,4068.2 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4094" /><g
+               id="g4096"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,464.2,570.582)"
-                 id="text8147"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 11.662 19.446 28 36.554 44.338 52.892 61.446 66.892"
+                 transform="matrix(1,0,0,-1,12.8813,403.82)"
+                 id="text4098"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 7.112 11.56 16.448"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8149">Magdeburg</tspan></text>
+                   id="tspan4100">Liêge</tspan></text>
 </g><g
 </g><g
-               id="g8151"
+               id="g4102"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,463.551,571.232)"
-                 id="text8153"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 11.662 19.446 28 36.554 44.338 52.892 61.446 66.892"
+                 transform="matrix(1,0,0,-1,12.2324,404.47)"
+                 id="text4104"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 7.112 11.56 16.448"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8155">Magdeburg</tspan></text>
+                   id="tspan4106">Liêge</tspan></text>
 </g><path
 </g><path
-               d="m 4434.19,7379.95 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8157" /><g
-               id="g8159"
+               d="m 357.559,4442.66 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4108" /><g
+               id="g4110"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,444.662,737.238)"
-                 id="text8161"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 17.122 25.676 36.568 44.352 49.798 53.69"
+                 transform="matrix(1,0,0,-1,37.2914,444.802)"
+                 id="text4112"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 14.672 19.12 23.568 25.792"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8163">Schwerin</tspan></text>
+                   id="tspan4114">Hasselt</tspan></text>
 </g><g
 </g><g
-               id="g8165"
+               id="g4116"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,444.013,737.888)"
-                 id="text8167"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 9.338 17.122 25.676 36.568 44.352 49.798 53.69"
+                 transform="matrix(1,0,0,-1,36.6434,445.452)"
+                 id="text4118"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 14.672 19.12 23.568 25.792"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8169">Schwerin</tspan></text>
+                   id="tspan4120">Hasselt</tspan></text>
 </g><path
 </g><path
-               d="m 3571.14,8134.28 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
-               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
-               id="path8171" /><g
-               id="g8173"
+               d="m 530.172,3008.42 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4122" /><g
+               id="g4124"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,341.276,819.428)"
-                 id="text8175"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 14 21.784"
+                 transform="matrix(1,0,0,-1,54.5523,301.377)"
+                 id="text4126"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8.888 11.112 16"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8177">Kiel</tspan></text>
+                   id="tspan4128">Arlon</tspan></text>
 </g><g
 </g><g
-               id="g8179"
+               id="g4130"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,340.627,820.078)"
-                 id="text8181"><tspan
-                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 10.108 14 21.784"
+                 transform="matrix(1,0,0,-1,53.9031,302.027)"
+                 id="text4132"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8.888 11.112 16"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8183">Kiel</tspan></text>
-</g><g
-               id="g8185"
+                   id="tspan4134">Arlon</tspan></text>
+</g><path
+               d="m 753.09,2919.68 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4136" /><g
+               id="g4138"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,592.166,802)"
-                 id="text8187"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.332 7.668 11.004 14.67 18.336"
+                 transform="matrix(1,0,0,-1,78.309,288.968)"
+                 id="text4140"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.776 14.224 18.672 25.784 30.672 35.56 40.448 43.56"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8189">Usedom</tspan></text>
+                   id="tspan4142">Luxembourg</tspan></text>
 </g><g
 </g><g
-               id="g8191"
+               id="g4144"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,591.517,802.65)"
-                 id="text8193"><tspan
-                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.332 7.668 11.004 14.67 18.336"
+                 transform="matrix(1,0,0,-1,77.6609,289.618)"
+                 id="text4146"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.776 14.224 18.672 25.784 30.672 35.56 40.448 43.56"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8195">Usedom</tspan></text>
+                   id="tspan4148">Luxembourg</tspan></text>
 </g><g
 </g><g
-               id="g8197"
+               id="g4150"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,574.668,838)"
-                 id="text8199"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.332 7.998 11.664 15"
+                 transform="matrix(1,0,0,-1,-15.7684,42.6207)"
+                 id="text4152"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8 10.224 15.112"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8201">Rügen</tspan></text>
-</g><g
-               id="g8203"
+                   id="tspan4154">Dijon</tspan></text>
+</g><path
+               d="m 578.141,275.59 c 0,11.043 -8.957,20 -20,20 -11.043,0 -20,-8.957 -20,-20 0,-11.043 8.957,-20 20,-20 11.043,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4156" /><g
+               id="g4158"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,574.02,838.65)"
-                 id="text8205"><tspan
-                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.332 7.998 11.664 15"
+                 transform="matrix(1,0,0,-1,59.3496,28.0945)"
+                 id="text4160"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 14.672 19.12 24.008 28.456 33.344"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8207">Rügen</tspan></text>
+                   id="tspan4162">Besançon</tspan></text>
 </g><g
 </g><g
-               id="g8209"
+               id="g4164"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,399.663,842.5)"
-                 id="text8211"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 3.666 7.002 10.668 16.002 19.338 21.672"
+                 transform="matrix(1,0,0,-1,58.7016,28.7445)"
+                 id="text4166"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 14.672 19.12 24.008 28.456 33.344"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8213">Fehmarn</tspan></text>
-</g><g
-               id="g8215"
+                   id="tspan4168">Besançon</tspan></text>
+</g><path
+               d="m 1589.56,824.34 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4170" /><g
+               id="g4172"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,399.014,843.15)"
-                 id="text8217"><tspan
-                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 3.666 7.002 10.668 16.002 19.338 21.672"
+                 transform="matrix(1,0,0,-1,114.621,79.434)"
+                 id="text4174"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.664 11.552 13.776 18.664 23.552 28.44 32.888"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8219">Fehmarn</tspan></text>
+                   id="tspan4176">Mulhouse</tspan></text>
 </g><g
 </g><g
-               id="g8221"
+               id="g4178"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,219,877.5)"
-                 id="text8223"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.002 7.338 9.006"
+                 transform="matrix(1,0,0,-1,113.973,80.084)"
+                 id="text4180"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.664 11.552 13.776 18.664 23.552 28.44 32.888"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8225">Sylt</tspan></text>
-</g><g
-               id="g8227"
+                   id="tspan4182">Mulhouse</tspan></text>
+</g><path
+               d="m 1904.38,1740.75 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4184" /><g
+               id="g4186"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,218.35,878.15)"
-                 id="text8229"><tspan
-                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.002 7.338 9.006"
+                 transform="matrix(1,0,0,-1,140.768,171.075)"
+                 id="text4188"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 8 11.112 15.56 20.008 24.896 29.784 34.672 37.784"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8231">Sylt</tspan></text>
+                   id="tspan4190">Strasbourg</tspan></text>
 </g><g
 </g><g
-               id="g8233"
+               id="g4192"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,209,847.5)"
-                 id="text8235"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.332 9.666 12 15.666"
+                 transform="matrix(1,0,0,-1,140.12,171.725)"
+                 id="text4194"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 8 11.112 15.56 20.008 24.896 29.784 34.672 37.784"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8237">Amrum</tspan></text>
-</g><g
-               id="g8239"
+                   id="tspan4196">Strasbourg</tspan></text>
+</g><path
+               d="m 765.5,1886.33 c 0,11.05 -8.957,20 -20,20 -11.043,0 -20,-8.95 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4198" /><g
+               id="g4200"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,208.351,848.15)"
-                 id="text8241"><tspan
-                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.332 9.666 12 15.666"
+                 transform="matrix(1,0,0,-1,45.5434,185.633)"
+                 id="text4202"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 15.112 19.56"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8243">Amrum</tspan></text>
+                   id="tspan4204">Nancy</tspan></text>
 </g><g
 </g><g
-               id="g8245"
+               id="g4206"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,239.335,848)"
-                 id="text8247"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 3.666 7.332 10.998"
+                 transform="matrix(1,0,0,-1,44.8945,186.283)"
+                 id="text4208"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 15.112 19.56"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8249">Föhr</tspan></text>
-</g><g
-               id="g8251"
+                   id="tspan4210">Nancy</tspan></text>
+</g><path
+               d="m 768.801,2372.21 c 0,11.04 -8.957,20 -20,20 -11.043,0 -20,-8.96 -20,-20 0,-11.04 8.957,-20 20,-20 11.043,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4212" /><g
+               id="g4214"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,238.686,848.65)"
-                 id="text8253"><tspan
-                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 3.666 7.332 10.998"
+                 transform="matrix(1,0,0,-1,52.1051,234.221)"
+                 id="text4216"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.664 11.112 13.776"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8255">Föhr</tspan></text>
+                   id="tspan4218">Metz</tspan></text>
 </g><g
 </g><g
-               id="g8257"
+               id="g4220"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,225,832.5)"
-                 id="text8259"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.002 7.338 9.006 10.674 15.342 19.008 21.342"
+                 transform="matrix(1,0,0,-1,51.4563,234.871)"
+                 id="text4222"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.664 11.112 13.776"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8261">Pellworm</tspan></text>
+                   id="tspan4224">Metz</tspan></text>
+</g><path
+               d="m 2279.44,35.7617 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.0429 8.96,-20 20,-20 11.04,0 20,8.9571 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4226" /><g
+               id="g4228"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,230.944,0.576172)"
+                 id="text4230"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.776 13.776 18.224 21.336"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4232">Luzern</tspan></text>
 </g><g
 </g><g
-               id="g8263"
+               id="g4234"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,224.351,833.15)"
-                 id="text8265"><tspan
-                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.002 7.338 9.006 10.674 15.342 19.008 21.342"
+                 transform="matrix(1,0,0,-1,230.295,1.22617)"
+                 id="text4236"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.776 13.776 18.224 21.336"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4238">Luzern</tspan></text>
+</g><path
+               d="m 1500.05,177.191 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4240" /><g
+               id="g4242"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,153.005,14.7191)"
+                 id="text4244"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8 12.448"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8267">Pellworm</tspan></text>
+                   id="tspan4246">Biel</tspan></text>
 </g><g
 </g><g
-               id="g8269"
+               id="g4248"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,126.667,748)"
-                 id="text8271"><tspan
-                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.332 7.998 10.332 13.668 17.334"
+                 transform="matrix(1,0,0,-1,152.356,15.3691)"
+                 id="text4250"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8 12.448"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4252">Biel</tspan></text>
+</g><path
+               d="m 1766.04,631.84 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4254" /><g
+               id="g4256"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,163.933,52.184)"
+                 id="text4258"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 14.672 19.12"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8273">Borkum</tspan></text>
+                   id="tspan4260">Basel</tspan></text>
 </g><g
 </g><g
-               id="g8275"
+               id="g4262"
                transform="scale(10,10)"><text
                transform="scale(10,10)"><text
-                 transform="matrix(1,0,0,-1,126.018,748.65)"
-                 id="text8277"><tspan
-                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
-                   x="0 4.332 7.998 10.332 13.668 17.334"
+                 transform="matrix(1,0,0,-1,163.284,52.834)"
+                 id="text4264"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 14.672 19.12"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4266">Basel</tspan></text>
+</g><path
+               d="m 1247.25,-2.96875 c 0,11.04297 -8.96,19.99995 -20,19.99995 -11.04,0 -20,-8.95698 -20,-19.99995 0,-11.04295 8.96,-20.00005 20,-20.00005 11.04,0 20,8.9571 20,20.00005"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4268" /><path
+               d="m 2097.27,415.141 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4270" /><g
+               id="g4272"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,211.263,42.0496)"
+                 id="text4274"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 13.336 17.784"
                    y="0"
                    sodipodi:role="line"
                    y="0"
                    sodipodi:role="line"
-                   id="tspan8279">Borkum</tspan></text>
+                   id="tspan4276">Aarau</tspan></text>
+</g><g
+               id="g4278"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,210.614,42.6996)"
+                 id="text4280"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 13.336 17.784"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4282">Aarau</tspan></text>
+</g><path
+               d="m 2550.99,762.461 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4284" /><g
+               id="g4286"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,226.872,65.2461)"
+                 id="text4288"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 9.784 14.672 19.12 21.784 24.448 29.336 33.784 38.672 43.12 47.568"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4290">Schaffhausen</tspan></text>
+</g><g
+               id="g4292"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,226.225,65.8961)"
+                 id="text4294"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 9.784 14.672 19.12 21.784 24.448 29.336 33.784 38.672 43.12 47.568"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4296">Schaffhausen</tspan></text>
+</g><path
+               d="m 2907.54,608.488 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4298" /><g
+               id="g4300"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,293.754,57.8488)"
+                 id="text4302"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 8 12.448 17.336 21.784 26.672 29.336 33.784 36.008"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4304">Frauenfeld</tspan></text>
+</g><g
+               id="g4306"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,293.106,58.4988)"
+                 id="text4308"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 8 12.448 17.336 21.784 26.672 29.336 33.784 36.008"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4310">Frauenfeld</tspan></text>
+</g><path
+               d="m 2486.64,400.469 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4312" /><g
+               id="g4314"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,251.664,37.0469)"
+                 id="text4316"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.776 12.888 15.112 19.56"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4318">Zürich</tspan></text>
+</g><g
+               id="g4320"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,251.015,37.6969)"
+                 id="text4322"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.776 12.888 15.112 19.56"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4324">Zürich</tspan></text>
+</g><path
+               d="m 2437.6,177.398 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4326" /><g
+               id="g4328"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,246.76,14.7398)"
+                 id="text4330"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.776"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4332">Zug</tspan></text>
+</g><g
+               id="g4334"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,246.111,15.3898)"
+                 id="text4336"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 9.776"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4338">Zug</tspan></text>
+</g><path
+               d="m 1718.47,223.18 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4340" /><g
+               id="g4342"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,174.847,19.318)"
+                 id="text4344"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 10.224 12.448 17.336 20 24.888 29.776 32.888"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4346">Solothurn</tspan></text>
+</g><g
+               id="g4348"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,174.198,19.968)"
+                 id="text4350"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 10.224 12.448 17.336 20 24.888 29.776 32.888"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4352">Solothurn</tspan></text>
+</g><path
+               d="m 3141.13,348.449 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4354" /><g
+               id="g4356"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,317.113,31.8449)"
+                 id="text4358"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 15.552 20 24.888 28.888 33.336 35.56"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4360">Appenzell</tspan></text>
+</g><g
+               id="g4362"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,316.464,32.4949)"
+                 id="text4364"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 15.552 20 24.888 28.888 33.336 35.56"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4366">Appenzell</tspan></text>
+</g><path
+               d="m 6746.46,1578.7 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4368" /><g
+               id="g4370"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,676.182,158.405)"
+                 id="text4372"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 7.112 12"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4374">Linz</tspan></text>
+</g><g
+               id="g4376"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,675.532,159.055)"
+                 id="text4378"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.888 7.112 12"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4380">Linz</tspan></text>
+</g><path
+               d="m 5850.76,956.988 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4382" /><g
+               id="g4384"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,586.612,96.2344)"
+                 id="text4386"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 9.784 12.008 16.008 20.896 25.784 28.896"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4388">Salzburg</tspan></text>
+</g><g
+               id="g4390"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,585.963,96.8844)"
+                 id="text4392"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 9.784 12.008 16.008 20.896 25.784 28.896"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4394">Salzburg</tspan></text>
+</g><path
+               d="m 4648.87,316.992 c 0,11.043 -8.96,20 -20,20 -11.04,0 -20,-8.957 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4396" /><g
+               id="g4398"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,421.121,32.2344)"
+                 id="text4400"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 2.224 7.112 12 16.448 21.336 24.448 29.336 33.784"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4402">Innsbruck</tspan></text>
+</g><g
+               id="g4404"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,420.473,32.8844)"
+                 id="text4406"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 2.224 7.112 12 16.448 21.336 24.448 29.336 33.784"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4408">Innsbruck</tspan></text>
+</g><path
+               d="m 3403.56,554.27 c 0,11.042 -8.96,20 -20,20 -11.04,0 -20,-8.958 -20,-20 0,-11.043 8.96,-20 20,-20 11.04,0 20,8.957 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4410" /><g
+               id="g4412"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,341.891,55.9625)"
+                 id="text4414"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8.888 13.336 18.224 22.672 27.56"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4416">Bregenz</tspan></text>
+</g><g
+               id="g4418"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,341.243,56.6125)"
+                 id="text4420"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 8.888 13.336 18.224 22.672 27.56"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4422">Bregenz</tspan></text>
+</g><path
+               d="m 5967.29,3114.57 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4424" /><g
+               id="g4426"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,598.264,311.993)"
+                 id="text4428"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 7.56 9.784 14.232 18.68"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4430">Pilsen</tspan></text>
+</g><g
+               id="g4432"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,597.616,312.643)"
+                 id="text4434"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 7.56 9.784 14.232 18.68"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4436">Pilsen</tspan></text>
+</g><path
+               d="m 6820.68,2321.71 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4438" /><g
+               id="g4440"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,683.604,232.707)"
+                 id="text4442"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 15.552 21.776 26.224 28.448"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4444">Budweis</tspan></text>
+</g><g
+               id="g4446"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,682.955,233.357)"
+                 id="text4448"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 15.552 21.776 26.224 28.448"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4450">Budweis</tspan></text>
+</g><path
+               d="m 7109.32,4377.77 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4452" /><g
+               id="g4454"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,712.468,438.312)"
+                 id="text4456"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 12.448 16.896 21.784 26.232 31.12 36.008 40.456 43.568"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4458">Reichenberg</tspan></text>
+</g><g
+               id="g4460"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,711.82,438.963)"
+                 id="text4462"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.224 12.448 16.896 21.784 26.232 31.12 36.008 40.456 43.568"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4464">Reichenberg</tspan></text>
+</g><path
+               d="m 6735.79,3547.76 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4466" /><g
+               id="g4468"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,675.114,355.312)"
+                 id="text4470"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 8.448 12.896"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4472">Prag</tspan></text>
+</g><g
+               id="g4474"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,674.465,355.962)"
+                 id="text4476"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 8.448 12.896"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4478">Prag</tspan></text>
+</g><path
+               d="m 6416.47,4172.34 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4480" /><g
+               id="g4482"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,643.182,417.77)"
+                 id="text4484"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 15.112 19.56 21.784"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4486">Aussig</tspan></text>
+</g><g
+               id="g4488"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,642.534,418.42)"
+                 id="text4490"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.776 10.664 15.112 19.56 21.784"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4492">Aussig</tspan></text>
+</g><path
+               d="m 6499.71,7258.49 c 0,11.05 -8.96,20 -20,20 -11.04,0 -20,-8.95 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4494" /><g
+               id="g4496"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,651.507,726.385)"
+                 id="text4498"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 9.336 13.784 17.784 22.232 26.68 28.904"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4500">Szczecin</tspan></text>
+</g><g
+               id="g4502"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,650.858,727.035)"
+                 id="text4504"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.336 9.336 13.784 17.784 22.232 26.68 28.904"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4506">Szczecin</tspan></text>
+</g><path
+               d="m 7291.23,5680.61 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4508" /><g
+               id="g4510"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,730.659,568.596)"
+                 id="text4512"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.224 9.336 14.224 19.112 24 28.448 31.56"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4514">Grünberg</tspan></text>
+</g><g
+               id="g4516"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,730.01,569.246)"
+                 id="text4518"><tspan
+                   style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:8;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 6.224 9.336 14.224 19.112 24 28.448 31.56"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4520">Grünberg</tspan></text>
+</g><path
+               d="m 7508.46,8221.89 c 0,11.04 -8.96,20 -20,20 -11.04,0 -20,-8.96 -20,-20 0,-11.04 8.96,-20 20,-20 11.04,0 20,8.96 20,20"
+               style="fill:#8b0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4522" /><path
+               d="m 4261.58,4410.13 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4524" /><g
+               id="g4526"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,379.052,436.013)"
+                 id="text4528"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 14.784 19.446 28 33.446"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4530">Erfurt</tspan></text>
+</g><g
+               id="g4532"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,378.403,436.663)"
+                 id="text4534"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 14.784 19.446 28 33.446"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4536">Erfurt</tspan></text>
+</g><path
+               d="m 2315.26,3294.92 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.56 13.44,-30 30,-30 16.57,0 30,13.44 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4538" /><g
+               id="g4540"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,209.08,313.492)"
+                 id="text4542"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 11.662 19.446 23.338 31.892"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4544">Mainz</tspan></text>
+</g><g
+               id="g4546"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,208.431,314.142)"
+                 id="text4548"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 11.662 19.446 23.338 31.892"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4550">Mainz</tspan></text>
+</g><path
+               d="m 6164.99,4586.8 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4552" /><g
+               id="g4554"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,551.486,453.68)"
+                 id="text4556"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 15.554 23.338 31.122 39.676 47.46"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4558">Dresden</tspan></text>
+</g><g
+               id="g4560"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,550.837,454.33)"
+                 id="text4562"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 15.554 23.338 31.122 39.676 47.46"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4564">Dresden</tspan></text>
+</g><path
+               d="m 4752.24,1265.07 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4566" /><g
+               id="g4568"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,478.224,121.507)"
+                 id="text4570"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 11.662 20.216 28 36.554 44.338"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4572">Müchen</tspan></text>
+</g><g
+               id="g4574"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,477.575,122.157)"
+                 id="text4576"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 11.662 20.216 28 36.554 44.338"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4578">Müchen</tspan></text>
+</g><path
+               d="m 5821.98,6207.44 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.56 13.43,-30 30,-30 16.57,0 30,13.44 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4580" /><g
+               id="g4582"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,559.361,626.744)"
+                 id="text4584"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 17.892 23.338 27.23 31.122"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4586">Berlin</tspan></text>
+</g><g
+               id="g4588"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,558.712,627.394)"
+                 id="text4590"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 17.892 23.338 27.23 31.122"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4592">Berlin</tspan></text>
+</g><path
+               d="m 2702.35,6737.46 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4594" /><g
+               id="g4596"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,241.175,657.746)"
+                 id="text4598"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 15.554 23.338 35.784 43.568"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4600">Bremen</tspan></text>
+</g><g
+               id="g4602"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,240.525,658.396)"
+                 id="text4604"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 15.554 23.338 35.784 43.568"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4606">Bremen</tspan></text>
+</g><path
+               d="m 3498.84,7264.81 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4608" /><g
+               id="g4610"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,316.162,732.481)"
+                 id="text4612"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 17.892 30.338 38.892 47.446 52.892"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4614">Hamburg</tspan></text>
+</g><g
+               id="g4616"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,315.513,733.131)"
+                 id="text4618"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 17.892 30.338 38.892 47.446 52.892"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4620">Hamburg</tspan></text>
+</g><path
+               d="m 3324.26,5946.53 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4622" /><g
+               id="g4624"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,297.143,600.653)"
+                 id="text4626"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 17.892 26.446 35 43.554 51.338 59.122"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4628">Hannover</tspan></text>
+</g><g
+               id="g4630"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,296.493,601.303)"
+                 id="text4632"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 17.892 26.446 35 43.554 51.338 59.122"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4634">Hannover</tspan></text>
+</g><path
+               d="m 1359.02,2498.31 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4636" /><g
+               id="g4638"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,138.902,244.831)"
+                 id="text4640"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 17.122 24.906 30.352 38.906 44.352 52.906 60.69 68.474 76.258"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4642">Saarbrücken</tspan></text>
+</g><g
+               id="g4644"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,138.253,245.481)"
+                 id="text4646"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 17.122 24.906 30.352 38.906 44.352 52.906 60.69 68.474 76.258"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4648">Saarbrücken</tspan></text>
+</g><path
+               d="m 2983.24,1955.74 c 0,16.56 -13.44,30 -30,30 -16.57,0 -30,-13.44 -30,-30 0,-16.57 13.43,-30 30,-30 16.56,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4650" /><g
+               id="g4652"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,301.324,190.574)"
+                 id="text4654"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 14 22.554 27.216 31.878 40.432 48.216 53.662"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4656">Stuttgart</tspan></text>
+</g><g
+               id="g4658"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,300.675,191.224)"
+                 id="text4660"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 14 22.554 27.216 31.878 40.432 48.216 53.662"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4662">Stuttgart</tspan></text>
+</g><path
+               d="m 1286.01,4692.3 c 0,16.57 -13.43,30 -30,30 -16.56,0 -30,-13.43 -30,-30 0,-16.57 13.44,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4664" /><g
+               id="g4666"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,89.0406,453.23)"
+                 id="text4668"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 18.662 26.446 34.23 42.014 45.906 54.46 63.014 68.46"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4670">Düsseldorf</tspan></text>
+</g><g
+               id="g4672"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,88.3918,453.88)"
+                 id="text4674"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 18.662 26.446 34.23 42.014 45.906 54.46 63.014 68.46"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4676">Düsseldorf</tspan></text>
+</g><path
+               d="m 2299.73,3403.95 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4678" /><g
+               id="g4680"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,147.068,335.395)"
+                 id="text4682"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 13.216 17.108 24.892 32.676 41.23 49.014 57.568 65.352"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4684">Wiesbaden</tspan></text>
+</g><g
+               id="g4686"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,146.419,336.045)"
+                 id="text4688"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 13.216 17.108 24.892 32.676 41.23 49.014 57.568 65.352"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4690">Wiesbaden</tspan></text>
+</g><path
+               d="m 5604.79,6059.27 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4692" /><g
+               id="g4694"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,527.918,589.927)"
+                 id="text4696"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 17.892 22.554 30.338 38.892 46.676"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4698">Potsdam</tspan></text>
+</g><g
+               id="g4700"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,527.269,590.577)"
+                 id="text4702"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 17.892 22.554 30.338 38.892 46.676"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4704">Potsdam</tspan></text>
+</g><path
+               d="m 4629.57,5713.39 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4706" /><g
+               id="g4708"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,378.512,566.339)"
+                 id="text4710"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 11.662 19.446 28 36.554 44.338 52.892 61.446 66.892"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4712">Magdeburg</tspan></text>
+</g><g
+               id="g4714"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,377.863,566.989)"
+                 id="text4716"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 11.662 19.446 28 36.554 44.338 52.892 61.446 66.892"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4718">Magdeburg</tspan></text>
+</g><path
+               d="m 4434.19,7379.95 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4720" /><g
+               id="g4722"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,446.419,732.995)"
+                 id="text4724"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 17.122 25.676 36.568 44.352 49.798 53.69"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4726">Schwerin</tspan></text>
+</g><g
+               id="g4728"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,445.77,733.645)"
+                 id="text4730"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 9.338 17.122 25.676 36.568 44.352 49.798 53.69"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4732">Schwerin</tspan></text>
+</g><path
+               d="m 3571.14,8134.28 c 0,16.57 -13.43,30 -30,30 -16.57,0 -30,-13.43 -30,-30 0,-16.57 13.43,-30 30,-30 16.57,0 30,13.43 30,30"
+               style="fill:#9acd32;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="path4734" /><g
+               id="g4736"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,322.439,808.428)"
+                 id="text4738"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 14 21.784"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4740">Kiel</tspan></text>
+</g><g
+               id="g4742"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,321.789,809.078)"
+                 id="text4744"><tspan
+                   style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:14;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 10.108 14 21.784"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4746">Kiel</tspan></text>
+</g><g
+               id="g4748"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,592.166,802)"
+                 id="text4750"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.668 11.004 14.67 18.336"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4752">Usedom</tspan></text>
+</g><g
+               id="g4754"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,591.517,802.65)"
+                 id="text4756"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.668 11.004 14.67 18.336"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4758">Usedom</tspan></text>
+</g><g
+               id="g4760"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,574.668,838)"
+                 id="text4762"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.998 11.664 15"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4764">Rügen</tspan></text>
+</g><g
+               id="g4766"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,574.02,838.65)"
+                 id="text4768"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.998 11.664 15"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4770">Rügen</tspan></text>
+</g><g
+               id="g4772"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,519.66,852.5)"
+                 id="text4774"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 6 9.666 13.332 16.668 20.334 23.67 27.006"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4776">Hiddensee</tspan></text>
+</g><g
+               id="g4778"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,519.012,853.15)"
+                 id="text4780"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 6 9.666 13.332 16.668 20.334 23.67 27.006"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4782">Hiddensee</tspan></text>
+</g><g
+               id="g4784"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,497.331,840)"
+                 id="text4786"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.668 10.002"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4788">Darÿ</tspan></text>
+</g><g
+               id="g4790"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,496.682,840.65)"
+                 id="text4792"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.668 10.002"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4794">Darÿ</tspan></text>
+</g><g
+               id="g4796"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,401.332,839)"
+                 id="text4798"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 3.666 7.002 10.668 16.002 19.338 21.672"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4800">Fehmarn</tspan></text>
+</g><g
+               id="g4802"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,400.683,839.65)"
+                 id="text4804"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 3.666 7.002 10.668 16.002 19.338 21.672"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4806">Fehmarn</tspan></text>
+</g><g
+               id="g4808"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,217.996,874.5)"
+                 id="text4810"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.002 7.338 9.006"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4812">Sylt</tspan></text>
+</g><g
+               id="g4814"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,217.347,875.15)"
+                 id="text4816"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.002 7.338 9.006"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4818">Sylt</tspan></text>
+</g><g
+               id="g4820"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,211.001,847.5)"
+                 id="text4822"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 9.666 12 15.666"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4824">Amrum</tspan></text>
+</g><g
+               id="g4826"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,210.352,848.15)"
+                 id="text4828"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 9.666 12 15.666"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4830">Amrum</tspan></text>
+</g><g
+               id="g4832"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,253.335,844)"
+                 id="text4834"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 3.666 7.332 10.998"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4836">Föhr</tspan></text>
+</g><g
+               id="g4838"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,252.686,844.65)"
+                 id="text4840"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 3.666 7.332 10.998"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4842">Föhr</tspan></text>
+</g><g
+               id="g4844"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,223.325,830.5)"
+                 id="text4846"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.002 7.338 9.006 10.674 15.342 19.008 21.342"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4848">Pellworm</tspan></text>
+</g><g
+               id="g4850"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,222.675,831.15)"
+                 id="text4852"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.002 7.338 9.006 10.674 15.342 19.008 21.342"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4854">Pellworm</tspan></text>
+</g><g
+               id="g4856"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,236.668,822.5)"
+                 id="text4858"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.998 10.332 13.998 17.334 19.332 21.666 25.002 28.668"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4860">Nordstrand</tspan></text>
+</g><g
+               id="g4862"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,236.021,823.15)"
+                 id="text4864"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.998 10.332 13.998 17.334 19.332 21.666 25.002 28.668"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4866">Nordstrand</tspan></text>
+</g><g
+               id="g4868"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,113.002,757.21)"
+                 id="text4870"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.33199849 7.9979972 10.33199639 13.66799522 17.33399394"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4872">Borkum</tspan></text>
+</g><g
+               id="g4874"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,113.24,758.097)"
+                 id="text4876"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.33199849 7.9979972 10.33199639 13.66799522 17.33399394"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4878">Borkum</tspan></text>
+</g><g
+               id="g4880"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,134.833,757.707)"
+                 id="text4882"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 3.33599883 7.00199755 8.66999697 12.0059958"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4884">Juist</tspan></text>
+</g><g
+               id="g4886"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,135.071,758.594)"
+                 id="text4888"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 3.33599883 7.00199755 8.66999697 12.0059958"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4890">Juist</tspan></text>
+</g><g
+               id="g4892"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,145.833,776.064)"
+                 id="text4894"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.33199849 7.9979972 10.33199639 13.99799511 17.33399394 19.66799312 23.33399184 26.66999067"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4896">Norderney</tspan></text>
+</g><g
+               id="g4898"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,146.071,776.951)"
+                 id="text4900"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.33199849 7.9979972 10.33199639 13.99799511 17.33399394 19.66799312 23.33399184 26.66999067"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4902">Norderney</tspan></text>
+</g><g
+               id="g4904"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,160.002,770.71)"
+                 id="text4906"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.33199849 7.66799732 9.33599674 11.33399604 13.66799522 17.33399394"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4908">Baltrum</tspan></text>
+</g><g
+               id="g4910"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,160.24,771.597)"
+                 id="text4912"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.33199849 7.66799732 9.33599674 11.33399604 13.66799522 17.33399394"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4914">Baltrum</tspan></text>
+</g><g
+               id="g4916"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,166.502,777.405)"
+                 id="text4918"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 3.66599872 7.00199755 10.66799627 14.33399499 17.66999382 21.33599254 25.00199126"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4920">Langeoog</tspan></text>
+</g><g
+               id="g4922"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,166.741,778.291)"
+                 id="text4924"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 3.66599872 7.00199755 10.66799627 14.33399499 17.66999382 21.33599254 25.00199126"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4926">Langeoog</tspan></text>
+</g><g
+               id="g4928"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,177.498,783.377)"
+                 id="text4930"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.0019986 7.66799732 9.33599674 12.67199557 16.0079944 19.34399324 21.67799242 25.34399114 29.00998986"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4932">Spiekeroog</tspan></text>
+</g><g
+               id="g4934"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,177.736,784.263)"
+                 id="text4936"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.0019986 7.66799732 9.33599674 12.67199557 16.0079944 19.34399324 21.67799242 25.34399114 29.00998986"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4938">Spiekeroog</tspan></text>
+</g><g
+               id="g4940"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,187.668,786.546)"
+                 id="text4942"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.66399802 8.99999685 12.66599557 16.33199429 19.66799312 22.00199231 25.66799102 29.33398974 32.99998846"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4944">Wangerooge</tspan></text>
+</g><g
+               id="g4946"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,187.907,787.432)"
+                 id="text4948"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.66399802 8.99999685 12.66599557 16.33199429 19.66799312 22.00199231 25.66799102 29.33398974 32.99998846"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4950">Wangerooge</tspan></text>
+</g><g
+               id="g4952"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,194.999,801)"
+                 id="text4954"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.668 9.336 13.002 16.668 18.336 21.672 25.338"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4956">Helgoland</tspan></text>
+</g><g
+               id="g4958"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,194.351,801.65)"
+                 id="text4960"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.668 9.336 13.002 16.668 18.336 21.672 25.338"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4962">Helgoland</tspan></text>
+</g><g
+               id="g4964"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.996195,0.0871557,0.0871557,-0.996195,422.921,195.696)"
+                 id="text4966"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6.00000178;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.33200129 7.99800238 11.66400346 15.00000446"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4968">Donau</tspan></text>
+</g><g
+               id="g4970"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.996195,0.0871557,0.0871557,-0.996195,422.218,196.287)"
+                 id="text4972"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6.00000178;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.33200129 7.99800238 11.66400346 15.00000446"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4974">Donau</tspan></text>
+</g><g
+               id="g4976"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,289,180.5)"
+                 id="text4978"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.668 11.004 14.34 17.676"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4980">Neckar</tspan></text>
+</g><g
+               id="g4982"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,288.351,181.15)"
+                 id="text4984"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.668 11.004 14.34 17.676"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4986">Neckar</tspan></text>
+</g><g
+               id="g4988"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,129,320.5)"
+                 id="text4990"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.998 8.664 12 15.336"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4992">Mosel</tspan></text>
+</g><g
+               id="g4994"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,128.351,321.15)"
+                 id="text4996"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.998 8.664 12 15.336"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan4998">Mosel</tspan></text>
+</g><g
+               id="g5000"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,155,390.5)"
+                 id="text5002"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.998 11.334 13.002"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5004">Rhein</tspan></text>
+</g><g
+               id="g5006"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,154.351,391.15)"
+                 id="text5008"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.332 7.998 11.334 13.002"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5010">Rhein</tspan></text>
+</g><g
+               id="g5012"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,325,337.5)"
+                 id="text5014"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.998 8.334 10.002"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5016">Main</tspan></text>
+</g><g
+               id="g5018"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,324.351,338.15)"
+                 id="text5020"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.998 8.334 10.002"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5022">Main</tspan></text>
+</g><g
+               id="g5024"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.866025,-0.5,-0.5,-0.866025,458.263,674.003)"
+                 id="text5026"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.0019986 5.66999802 9.33599674"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5028">Elbe</tspan></text>
+</g><g
+               id="g5030"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.866025,-0.5,-0.5,-0.866025,458.026,674.89)"
+                 id="text5032"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.0019986 5.66999802 9.33599674"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5034">Elbe</tspan></text>
+</g><g
+               id="g5036"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,571.667,505.237)"
+                 id="text5038"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.0019986 5.66999802 9.33599674"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5040">Elbe</tspan></text>
+</g><g
+               id="g5042"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.5,-0.866025,-0.866025,-0.5,571.905,506.124)"
+                 id="text5044"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.0019986 5.66999802 9.33599674"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5046">Elbe</tspan></text>
+</g><g
+               id="g5048"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.866025,0.5,0.5,-0.866025,477.461,468.416)"
+                 id="text5050"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.0019986 7.33799743 10.67399627 12.34199568"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5052">Saale</tspan></text>
+</g><g
+               id="g5054"
+               transform="scale(10,10)"><text
+                 transform="matrix(0.866025,0.5,0.5,-0.866025,476.574,468.654)"
+                 id="text5056"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:5.9999979;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.0019986 7.33799743 10.67399627 12.34199568"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5058">Saale</tspan></text>
+</g><g
+               id="g5060"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,278,632.5)"
+                 id="text5062"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.664 9 12.336 15.672"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5064">Weser</tspan></text>
+</g><g
+               id="g5066"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,277.35,633.15)"
+                 id="text5068"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 5.664 9 12.336 15.672"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5070">Weser</tspan></text>
+</g><g
+               id="g5072"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,634,647.5)"
+                 id="text5074"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.668 8.334 11.67"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5076">Oder</tspan></text>
+</g><g
+               id="g5078"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,633.35,648.15)"
+                 id="text5080"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.668 8.334 11.67"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5082">Oder</tspan></text>
+</g><g
+               id="g5084"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,165,602.5)"
+                 id="text5086"><tspan
+                   style="fill:#b2b2b2;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.002 9.336"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5088">Ems</tspan></text>
+</g><g
+               id="g5090"
+               transform="scale(10,10)"><text
+                 transform="matrix(1,0,0,-1,164.35,603.15)"
+                 id="text5092"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:6;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 4.002 9.336"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5094">Ems</tspan></text>
+<text
+                 transform="matrix(1,0,0,-1,90.4121,818.266)"
+                 id="text5096"><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:20;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="0 14.44 26.66 34.44 46.66 57.78 68.9"
+                   y="0"
+                   sodipodi:role="line"
+                   id="tspan5098">Nordsee</tspan><tspan
+                   style="fill:#00008b;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;font-variant:normal;font-weight:bold;font-size:20;writing-mode:lr;-inkscape-font-specification:Helvetica-Bold"
+                   x="540 555.56 566.68 573.34 584.46 595.58"
+                   y="-50"
+                   sodipodi:role="line"
+                   id="tspan5100">Ostsee</tspan></text>
 </g></g></g></g></g></g>
 <rect class="tooltip_bg" id="tooltip_bg" x="0" y="0" rx="4" ry="4" width="55" height="17" visibility="hidden"/>
 <text class="tooltip" id="tooltip" x="0" y="0" visibility="hidden">Tooltip</text>
 </g></g></g></g></g></g>
 <rect class="tooltip_bg" id="tooltip_bg" x="0" y="0" rx="4" ry="4" width="55" height="17" visibility="hidden"/>
 <text class="tooltip" id="tooltip" x="0" y="0" visibility="hidden">Tooltip</text>
diff --git a/cartes/32U/postscript/iles.ps b/cartes/32U/postscript/iles.ps
deleted file mode 100644 (file)
index d68d9fd..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/I_allemagne[
-[604 347 (Usedom) 90]
-[584 383 (R\374gen) 90]
-[555 405 (Hiddensee) 180]
-[504 385 (Dar\377) 90]
-[414 384 (Fehmarn) 90]
-[234 427 (Sylt) 180]
-[237 400 (Amrum) 180]
-[260 404 (F\366hr) 270]
-[255 383 (Pellworm) 180]
-[274 375 (Nordstrand) 180]
-[102 285 (Borkum) 90]
-[134 282 (Juist) 90]
-[170 305 (Norderney) 270] 
-[175 297 (Baltrum) 0]
-[192 302 (Langeoog) 0]  
-[200 295 (Spiekeroog) 0] 
-[210 303 (Wangerooge) 90] 
-[209 348 (Helgoland) 180] 
-] def
diff --git a/cartes/32U/postscript/noms-fleuves.ps b/cartes/32U/postscript/noms-fleuves.ps
new file mode 100644 (file)
index 0000000..be7d579
--- /dev/null
@@ -0,0 +1,14 @@
+/R_allemagne[
+[432 -251 (Donau) 5 (RotateCentering)]
+[284 -267 (Neckar) 0]
+[124 -127 (Mosel) 0]
+[150 -57 (Rhein) 0]
+[320 -110 (Main) 0]
+[465 223 (Elbe) 330 (RotateCentering)]
+[577 51 (Elbe) 300 (RotateCentering)]
+[483 24.5 (Saale) 30 (RotateCentering)]
+[273 185 (Weser) 0]
+[629 200 (Oder) 0]
+[160 155 (Ems) 0]
+] def
+
diff --git a/cartes/32U/postscript/noms-iles.ps b/cartes/32U/postscript/noms-iles.ps
new file mode 100644 (file)
index 0000000..c89caae
--- /dev/null
@@ -0,0 +1,20 @@
+/I_allemagne[
+[604 347 (Usedom) 90]
+[584 383 (R\374gen) 90]
+[555 405 (Hiddensee) 180]
+[504 385 (Dar\377) 90]
+[414 384 (Fehmarn) 90]
+[234 427 (Sylt) 180]
+[237 400 (Amrum) 180]
+[260 404 (F\366hr) 270]
+[255 383 (Pellworm) 180]
+[274 375 (Nordstrand) 180]
+[129 284.5 (Borkum) 120 (Rotate)]
+[146.5 292.5 (Juist) 120 (Rotate)]
+[165.5 297 (Norderney) 120 (Rotate)] 
+[176 298 (Baltrum) 120 (Rotate)]
+[185.5 299.5 (Langeoog) 120 (Rotate)]  
+[198.5 302 (Spiekeroog) 120 (Rotate)] 
+[210.5 302 (Wangerooge) 120 (Rotate)] 
+[209.5 346 (Helgoland) 90] 
+] def
index 0d2c163..564f1fa 100644 (file)
 [440.419 287.995 (Schwerin) 0] %Mecklenburg-Vorpommern
 [354.114 363.428 (Kiel) 180] %Schleswig-Holstein
 ] def
 [440.419 287.995 (Schwerin) 0] %Mecklenburg-Vorpommern
 [354.114 363.428 (Kiel) 180] %Schleswig-Holstein
 ] def
-/V_allemagne_rivers[
-[404 -257 (Donau) 0]
-[284 -267 (Neckar) 0]
-[124 -127 (Mosel) 0]
-[150 -57 (Rhein) 0]
-[320 -110 (Main) 0]
-[469 200 (Elbe) 0]
-[461 75 (Saale) 0]
-[273 185 (Weser) 0]
-[629 200 (Oder) 0]
-[160 155 (Ems) 0]
-] def
 /V_autriche[
 [767.174 -423.668 (Graz) 45]
 [687.146 -480.757 (Klagenfurt) 45]
 /V_autriche[
 [767.174 -423.668 (Graz) 45]
 [687.146 -480.757 (Klagenfurt) 45]
@@ -91,7 +79,7 @@
 [-39.495 26.883 (Antwerpen) 45]
 [-12.406 -58.358 (Namur) 45]
 [-42.538 -62.170 (Charleroi) 45]
 [-39.495 26.883 (Antwerpen) 45]
 [-12.406 -58.358 (Namur) 45]
 [-42.538 -62.170 (Charleroi) 45]
-[38.776 -43.180 (Liège) 180]
+[38.776 -43.180 (Li\352ge) 180]
 [-78.621 -56.974 (Mons) 45]
 [-47.927 -15.770 (Brussels) 45]
 [33.756 -5.734 (Hasselt) 45]
 [-78.621 -56.974 (Mons) 45]
 [-47.927 -15.770 (Brussels) 45]
 [33.756 -5.734 (Hasselt) 45]
 [319.813 -437.289 (Vaduz) 0]
 ] def
 /V_luxembourg[
 [319.813 -437.289 (Vaduz) 0]
 ] def
 /V_luxembourg[
-[73.309 -158.032 (Luxembourg) 90]
+[73.309 -158.032 (Luxembourg) 0]
 %[77.100 -127.938 (Diekirch) -1]
 %[88.341 -148.753 (Grevenmacher) -1]
 ] def
 %[77.100 -127.938 (Diekirch) -1]
 %[88.341 -148.753 (Grevenmacher) -1]
 ] def

Licence Creative Commons Les fichiers de Syracuse sont mis à disposition (sauf mention contraire) selon les termes de la
Licence Creative Commons Attribution - Pas d’Utilisation Commerciale - Partage dans les Mêmes Conditions 4.0 International.