Tweak to joke in french locale (everyone always fixes the spelling) updated explosive frames from Palewolf, increase explosive fall damage from 30 to 40
authornemo
Sat, 06 Mar 2010 13:49:55 +0000
changeset 2955 fb361d137524
parent 2954 55d272e34f9a
child 2956 f3db27564808
Tweak to joke in french locale (everyone always fixes the spelling) updated explosive frames from Palewolf, increase explosive fall damage from 30 to 40
hedgewars/GSHandlers.inc
hedgewars/uFloat.pas
hedgewars/uGears.pas
share/hedgewars/Data/Graphics/Explosives.png
share/hedgewars/Data/Graphics/Explosives.svg
share/hedgewars/Data/Graphics/ExplosivesRoll.png
share/hedgewars/Data/Graphics/ExplosivesRoll.svg
share/hedgewars/Data/Locale/fr.txt
--- a/hedgewars/GSHandlers.inc	Sat Mar 06 13:45:25 2010 +0000
+++ b/hedgewars/GSHandlers.inc	Sat Mar 06 13:49:55 2010 +0000
@@ -1256,7 +1256,8 @@
     AllInactive:= false;
     if not Gear^.dY.isNegative and (Gear^.dY > _0_03) and TestCollisionYwithGear(Gear, 1) then
         begin
-        inc(Gear^.Damage, hwRound(Gear^.dY * _30));
+        Gear^.State:= Gear^.State or gsttmpFlag;
+        inc(Gear^.Damage, hwRound(Gear^.dY * _40));
         for i:= min(12, hwRound(Gear^.dY*_10)) downto 0 do 
             begin
             particle:= AddVisualGear(hwRound(Gear^.X) - 5 + Random(10), hwRound(Gear^.Y) + 12, vgtDust);
@@ -1264,11 +1265,11 @@
             end
         end
     else if not Gear^.dX.isNegative and (Gear^.dX > _0_03) and TestCollisionXwithGear(Gear, 1) then
-        inc(Gear^.Damage, hwRound(Gear^.dX * _30))
+        inc(Gear^.Damage, hwRound(Gear^.dX * _40))
     else if Gear^.dY.isNegative and (Gear^.dY < -_0_03) and TestCollisionYwithGear(Gear, -1) then
-        inc(Gear^.Damage, hwRound(Gear^.dY * -_30))
+        inc(Gear^.Damage, hwRound(Gear^.dY * -_40))
     else if Gear^.dX.isNegative and (Gear^.dX < -_0_03) and TestCollisionXwithGear(Gear, -1) then
-        inc(Gear^.Damage, hwRound(Gear^.dX * -_30));
+        inc(Gear^.Damage, hwRound(Gear^.dX * -_40));
     if Gear^.Damage <> 0 then PlaySound(sndGraveImpact);
     doStepFallingGear(Gear);
     CalcRotationDirAngle(Gear);
@@ -1376,7 +1377,7 @@
     if (not Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, 1) then
         begin
         if (Gear^.dY > _0_02) and (k = gtExplosives) then
-            inc(Gear^.Damage, hwRound(Gear^.dY * _30));
+            inc(Gear^.Damage, hwRound(Gear^.dY * _40));
 
         if Gear^.dY > _0_2 then
             for i:= min(12, hwRound(Gear^.dY*_10)) downto 0 do 
--- a/hedgewars/uFloat.pas	Sat Mar 06 13:45:25 2010 +0000
+++ b/hedgewars/uFloat.pas	Sat Mar 06 13:49:55 2010 +0000
@@ -123,6 +123,7 @@
          _0_3x70: hwFloat = (isNegative: false; QWordValue:  1288490189 * 70);
              _25: hwFloat = (isNegative: false; QWordValue:  4294967296 * 25);
              _30: hwFloat = (isNegative: false; QWordValue:  4294967296 * 30);
+             _40: hwFloat = (isNegative: false; QWordValue:  4294967296 * 40);
              _70: hwFloat = (isNegative: false; QWordValue:  4294967296 * 70);
             _128: hwFloat = (isNegative: false; QWordValue:  4294967296 * 128);
             _256: hwFloat = (isNegative: false; QWordValue:  4294967296 * 256);
--- a/hedgewars/uGears.pas	Sat Mar 06 13:45:25 2010 +0000
+++ b/hedgewars/uGears.pas	Sat Mar 06 13:49:55 2010 +0000
@@ -1590,12 +1590,14 @@
                                         end;
                          end;
       gtExplosives: begin
-                    i:= (GameTicks shr 6 + Gear^.uid) mod 64;
+                    i:= (GameTicks shr 6 + Gear^.uid*3) mod 64;
                     if i > 18 then i:= 0;
                     if Gear^.State and gstAnimation = 0 then
                         DrawSprite(sprExplosives, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i)
+                    else if Gear^.State and gsttmpFlag = 0 then
+                        DrawRotatedF(sprExplosivesRoll, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) +4 + WorldDy, 0, 0, Gear^.DirAngle)
                     else
-                        DrawRotatedF(sprExplosivesRoll, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) +4 + WorldDy, 0, 0, Gear^.DirAngle);
+                        DrawRotatedF(sprExplosivesRoll, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) +4 + WorldDy, 1, 0, Gear^.DirAngle);
                     end;
         gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1);
      gtClusterBomb: DrawRotated(sprClusterBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle);
Binary file share/hedgewars/Data/Graphics/Explosives.png has changed
--- a/share/hedgewars/Data/Graphics/Explosives.svg	Sat Mar 06 13:45:25 2010 +0000
+++ b/share/hedgewars/Data/Graphics/Explosives.svg	Sat Mar 06 13:49:55 2010 +0000
@@ -33,12 +33,12 @@
      id="namedview4"
      showgrid="false"
      inkscape:zoom="1"
-     inkscape:cx="24.853771"
-     inkscape:cy="955.37172"
-     inkscape:window-x="297"
-     inkscape:window-y="51"
+     inkscape:cx="154.333"
+     inkscape:cy="779.42841"
+     inkscape:window-x="486"
+     inkscape:window-y="47"
      inkscape:window-maximized="0"
-     inkscape:current-layer="g3688"
+     inkscape:current-layer="svg2"
      inkscape:object-paths="true" />
   <metadata
      id="metadata8">
@@ -48,7 +48,7 @@
         <dc:format>image/svg+xml</dc:format>
         <dc:type
            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
+        <dc:title />
       </cc:Work>
     </rdf:RDF>
   </metadata>
@@ -4093,15 +4093,6 @@
        inkscape:vp_y="0 : 1000 : 0"
        inkscape:vp_x="0 : 0.5 : 1"
        sodipodi:type="inkscape:persp3d" />
-    <filter
-       color-interpolation-filters="sRGB"
-       inkscape:collect="always"
-       id="filter4719-5">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.18640097"
-         id="feGaussianBlur4721-0" />
-    </filter>
     <inkscape:perspective
        id="perspective6996"
        inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
@@ -4780,7 +4771,7 @@
      style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
   <g
      id="g23385"
-     transform="translate(40,0)">
+     transform="translate(40,384)">
     <path
        sodipodi:nodetypes="csssssssssssssssc"
        id="path4975-0"
@@ -4811,7 +4802,7 @@
   </g>
   <g
      id="g23417"
-     transform="matrix(-1,0,0,1,7.68942,144)">
+     transform="matrix(-1,0,0,1,7.68942,528)">
     <path
        mask="url(#mask23397)"
        style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
@@ -4842,7 +4833,7 @@
   </g>
   <g
      id="g62462"
-     transform="translate(0,48)">
+     transform="translate(0,432)">
     <path
        transform="translate(40,0)"
        mask="url(#mask62361)"
@@ -4872,42 +4863,42 @@
   </g>
   <path
      style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-     d="m 30.392938,262.92092 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     d="m 30.392938,646.92092 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
      id="path62365"
      sodipodi:nodetypes="csssssssssssssssc" />
   <path
      sodipodi:nodetypes="csssssssssssssssc"
      id="path62367"
-     d="m 30.31314,310.93126 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     d="m 30.31314,694.93126 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
      style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
   <path
      style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-     d="m 30.324965,358.9293 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     d="m 30.324965,742.9293 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
      id="path62369"
      sodipodi:nodetypes="csssssssssssssssc" />
   <path
      sodipodi:nodetypes="csssssssssssssssc"
      id="path62371"
-     d="m 30.309319,406.93191 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     d="m 30.309319,790.93191 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
      style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
   <path
      style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-     d="m 30.270018,454.93911 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     d="m 30.270018,838.93911 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
      id="path62373"
      sodipodi:nodetypes="csssssssssssssssc" />
   <path
      style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-     d="m 17.142661,406.92261 c -0.966429,0.14073 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54988 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536528,0.60749 2.873979,1.17393 3.250001,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17284 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.312501,-1.125 -0.17178,-0.064 -0.3297,-0.1232 -0.5,-0.1875 -2.197023,-0.82949 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11381 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
+     d="m 17.142661,790.92261 c -0.966429,0.14073 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54988 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536528,0.60749 2.873979,1.17393 3.250001,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17284 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.312501,-1.125 -0.17178,-0.064 -0.3297,-0.1232 -0.5,-0.1875 -2.197023,-0.82949 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11381 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
      id="path62375"
      sodipodi:nodetypes="cssssssssssssssssc" />
   <path
      sodipodi:nodetypes="cssssssssssssssssc"
      id="path62377"
-     d="m 17.17813,454.91994 c -0.966429,0.14073 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54988 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536528,0.60749 2.873979,1.17393 3.250001,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17284 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.312501,-1.125 -0.17178,-0.064 -0.3297,-0.1232 -0.5,-0.1875 -2.197023,-0.82949 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11381 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
+     d="m 17.17813,838.91994 c -0.966429,0.14073 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54988 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536528,0.60749 2.873979,1.17393 3.250001,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17284 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.312501,-1.125 -0.17178,-0.064 -0.3297,-0.1232 -0.5,-0.1875 -2.197023,-0.82949 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11381 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
      style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
   <g
      id="g62393"
-     transform="translate(40,0)">
+     transform="translate(40,384)">
     <path
        sodipodi:nodetypes="csssssssssssssssc"
        id="path62381"
@@ -4920,84 +4911,8 @@
        style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
   </g>
   <g
-     id="g62398"
-     transform="translate(40.0075,48.002198)">
-    <path
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-       d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
-       id="path62400"
-       sodipodi:nodetypes="csssssssssssssssc" />
-    <path
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-       d="m -16.171967,498.77256 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0195 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0761 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
-       id="path62402"
-       sodipodi:nodetypes="csssscssscccsccsssccsssc" />
-    <path
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-       d="m -22.859467,502.92881 c -0.966429,0.14072 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54987 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536527,0.60749 2.873978,1.17393 3.25,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17283 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.064 -0.3297,-0.12321 -0.5,-0.1875 -2.197023,-0.8295 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11382 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
-       id="path62404"
-       sodipodi:nodetypes="cssssssssssssssssc" />
-  </g>
-  <g
-     transform="translate(39.905813,95.990912)"
-     id="g62406">
-    <path
-       sodipodi:nodetypes="csssssssssssssssc"
-       id="path62408"
-       d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
-    <path
-       sodipodi:nodetypes="csssscssscccsccsssccsssc"
-       id="path62410"
-       d="m -16.171967,498.77256 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0195 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0761 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
-    <path
-       sodipodi:nodetypes="cssssssssssssssssc"
-       id="path62412"
-       d="m -22.859467,502.92881 c -0.966429,0.14072 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54987 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536527,0.60749 2.873978,1.17393 3.25,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17283 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.064 -0.3297,-0.12321 -0.5,-0.1875 -2.197023,-0.8295 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11382 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
-  </g>
-  <g
-     id="g62414"
-     transform="translate(39.854058,143.99005)">
-    <path
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-       d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
-       id="path62416"
-       sodipodi:nodetypes="csssssssssssssssc" />
-    <path
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-       d="m -16.171967,498.77256 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0195 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0761 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
-       id="path62418"
-       sodipodi:nodetypes="csssscssscccsccsssccsssc" />
-    <path
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
-       d="m -22.859467,502.92881 c -0.966429,0.14072 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54987 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536527,0.60749 2.873978,1.17393 3.25,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17283 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.064 -0.3297,-0.12321 -0.5,-0.1875 -2.197023,-0.8295 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11382 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
-       id="path62420"
-       sodipodi:nodetypes="cssssssssssssssssc" />
-  </g>
-  <g
-     transform="translate(40.031429,191.99253)"
-     id="g62422">
-    <path
-       sodipodi:nodetypes="csssssssssssssssc"
-       id="path62424"
-       d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
-    <path
-       sodipodi:nodetypes="csssscssscccsccsssccsssc"
-       id="path62426"
-       d="m -16.171967,498.77256 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0195 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0761 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
-    <path
-       sodipodi:nodetypes="cssssssssssssssssc"
-       id="path62428"
-       d="m -22.859467,502.92881 c -0.966429,0.14072 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54987 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536527,0.60749 2.873978,1.17393 3.25,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17283 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.064 -0.3297,-0.12321 -0.5,-0.1875 -2.197023,-0.8295 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11382 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
-       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
-  </g>
-  <g
      id="g62430"
-     transform="translate(40.096772,240.02592)">
+     transform="translate(40.096772,-479.97408)">
     <path
        style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
        d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
@@ -5015,7 +4930,7 @@
        sodipodi:nodetypes="cssssssssssssssssc" />
   </g>
   <g
-     transform="translate(39.959482,288.00154)"
+     transform="translate(39.959482,-431.99846)"
      id="g62438"
      style="opacity:0.8">
     <path
@@ -5036,7 +4951,7 @@
   </g>
   <g
      id="g62446"
-     transform="translate(39.892225,335.99039)"
+     transform="translate(39.892225,-384.00961)"
      style="opacity:0.4">
     <path
        style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
@@ -5055,7 +4970,7 @@
        sodipodi:nodetypes="cssssssssssssssssc" />
   </g>
   <g
-     transform="translate(39.970173,383.99643)"
+     transform="translate(39.970173,-336.00357)"
      id="g62454"
      style="opacity:0.1">
     <path
Binary file share/hedgewars/Data/Graphics/ExplosivesRoll.png has changed
--- a/share/hedgewars/Data/Graphics/ExplosivesRoll.svg	Sat Mar 06 13:45:25 2010 +0000
+++ b/share/hedgewars/Data/Graphics/ExplosivesRoll.svg	Sat Mar 06 13:49:55 2010 +0000
@@ -15,8 +15,8 @@
    inkscape:version="0.47 r22583"
    width="48"
    height="912"
-   sodipodi:docname="ExplosivesRoll.svg"
-   inkscape:export-filename="/mnt/y/src/hedge/trunk/share/hedgewars/Data/Graphics/ExplosivesRoll.png"
+   sodipodi:docname="Explosives.svg"
+   inkscape:export-filename="/mnt/y/src/hedge/trunk/share/hedgewars/Data/Graphics/Explosives.png"
    inkscape:export-xdpi="90"
    inkscape:export-ydpi="90">
   <sodipodi:namedview
@@ -28,17 +28,18 @@
      guidetolerance="10"
      inkscape:pageopacity="0"
      inkscape:pageshadow="2"
-     inkscape:window-width="1280"
-     inkscape:window-height="953"
+     inkscape:window-width="738"
+     inkscape:window-height="692"
      id="namedview4"
      showgrid="false"
      inkscape:zoom="1"
-     inkscape:cx="135.65335"
-     inkscape:cy="879.22267"
-     inkscape:window-x="-4"
-     inkscape:window-y="-3"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="g3688" />
+     inkscape:cx="154.333"
+     inkscape:cy="779.42841"
+     inkscape:window-x="486"
+     inkscape:window-y="47"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg2"
+     inkscape:object-paths="true" />
   <metadata
      id="metadata8">
     <rdf:RDF>
@@ -47,7 +48,7 @@
         <dc:format>image/svg+xml</dc:format>
         <dc:type
            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
+        <dc:title />
       </cc:Work>
     </rdf:RDF>
   </metadata>
@@ -4079,19 +4080,149 @@
        inkscape:vp_x="0 : 0.5 : 1"
        sodipodi:type="inkscape:persp3d" />
     <inkscape:perspective
-       id="perspective3896"
+       id="perspective4720"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective4744"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective6996"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective7040"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective7083"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective7083-2"
        inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
        inkscape:vp_z="1 : 0.5 : 1"
        inkscape:vp_y="0 : 1000 : 0"
        inkscape:vp_x="0 : 0.5 : 1"
        sodipodi:type="inkscape:persp3d" />
     <inkscape:perspective
-       id="perspective4691"
+       id="perspective7083-6"
        inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
        inkscape:vp_z="1 : 0.5 : 1"
        inkscape:vp_y="0 : 1000 : 0"
        inkscape:vp_x="0 : 0.5 : 1"
        sodipodi:type="inkscape:persp3d" />
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask23397">
+      <path
+         id="path23399"
+         d="m -28.875,28.656248 2.9375,5.90625 3.15625,-1.34375 -0.28125,-0.34375 -2.1875,0.625 -0.3125,-0.5 1.5625,-0.53125 -0.21875,-0.4375 -0.9375,0.3125 -0.25,-0.375 1.34375,-0.4375 -0.40625,-0.8125 -1.8125,0.6875 -0.375,-0.4375 1.532325,-0.558667 -0.158238,-0.368087 -1.374087,0.489254 0,-0.3125 1.90625,-0.84375 -0.6875,-0.8125 -2,0.84375 -0.125,-0.53125 0.96875,-0.3125 -0.375,-0.75 -1.90625,0.84375 z"
+         style="fill:#ffffff;fill-opacity:1;stroke:none" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask23401">
+      <path
+         id="path23403"
+         d="m -28.875,76.722541 c 0,0 2.9375,5.90625 2.9375,5.90625 0,0 7.730347,-3.332488 7.730347,-3.332488 0,0 -0.28125,-0.34375 -0.28125,-0.34375 0,0 -2.1875,0.625 -2.1875,0.625 0,0 -0.3125,-0.5 -0.3125,-0.5 0,0 1.5625,-0.53125 1.5625,-0.53125 0,0 -0.21875,-0.4375 -0.21875,-0.4375 0,0 -0.9375,0.3125 -0.9375,0.3125 0,0 -0.25,-0.375 -0.25,-0.375 0,0 1.34375,-0.4375 1.34375,-0.4375 0,0 -0.40625,-0.8125 -0.40625,-0.8125 0,0 -1.8125,0.6875 -1.8125,0.6875 0,0 -0.375,-0.4375 -0.375,-0.4375 0,0 1.532325,-0.558667 1.532325,-0.558667 0,0 -0.158238,-0.368088 -0.158238,-0.368088 0,0 -1.374087,0.489255 -1.374087,0.489255 0,0 0,-0.3125 0,-0.3125 0,0 1.90625,-0.84375 1.90625,-0.84375 0,0 -0.6875,-0.8125 -0.6875,-0.8125 0,0 -2,0.84375 -2,0.84375 0,0 -0.125,-0.53125 -0.125,-0.53125 0,0 0.96875,-0.3125 0.96875,-0.3125 0,0 -0.375,-0.75 -0.375,-0.75 0,0 -6.480347,2.832488 -6.480347,2.832488 0,0 0,0 0,0"
+         style="fill:#ffffff;fill-opacity:1;stroke:none" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask23405">
+      <path
+         id="path23407"
+         d="m -28.875,124.78883 c 0,0 2.9375,5.90625 2.9375,5.90625 0,0 12.304444,-5.32122 12.304444,-5.32122 0,0 -0.28125,-0.34375 -0.28125,-0.34375 0,0 -2.1875,0.625 -2.1875,0.625 0,0 -0.3125,-0.5 -0.3125,-0.5 0,0 1.5625,-0.53125 1.5625,-0.53125 0,0 -0.21875,-0.4375 -0.21875,-0.4375 0,0 -0.9375,0.3125 -0.9375,0.3125 0,0 -0.25,-0.375 -0.25,-0.375 0,0 1.34375,-0.4375 1.34375,-0.4375 0,0 -0.40625,-0.8125 -0.40625,-0.8125 0,0 -1.8125,0.6875 -1.8125,0.6875 0,0 -0.375,-0.4375 -0.375,-0.4375 0,0 1.532325,-0.55867 1.532325,-0.55867 0,0 -0.158238,-0.36809 -0.158238,-0.36809 0,0 -1.374087,0.48926 -1.374087,0.48926 0,0 0,-0.3125 0,-0.3125 0,0 1.90625,-0.84375 1.90625,-0.84375 0,0 -0.6875,-0.8125 -0.6875,-0.8125 0,0 -2,0.84375 -2,0.84375 0,0 -0.125,-0.53125 -0.125,-0.53125 0,0 0.96875,-0.3125 0.96875,-0.3125 0,0 -0.375,-0.75 -0.375,-0.75 0,0 -11.054444,4.82122 -11.054444,4.82122 0,0 0,0 0,0"
+         style="fill:#ffffff;fill-opacity:1;stroke:none" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask23409">
+      <path
+         id="path23411"
+         d="m -28.875,172.85513 c 0,0 2.9375,5.90625 2.9375,5.90625 0,0 16.878541,-7.30997 16.878541,-7.30997 0,0 -0.28125,-0.34375 -0.28125,-0.34375 0,0 -2.1875,0.625 -2.1875,0.625 0,0 -0.3125,-0.5 -0.3125,-0.5 0,0 1.5625,-0.53125 1.5625,-0.53125 0,0 -0.21875,-0.4375 -0.21875,-0.4375 0,0 -0.9375,0.3125 -0.9375,0.3125 0,0 -0.25,-0.375 -0.25,-0.375 0,0 1.34375,-0.4375 1.34375,-0.4375 0,0 -0.40625,-0.8125 -0.40625,-0.8125 0,0 -1.8125,0.6875 -1.8125,0.6875 0,0 -0.375,-0.4375 -0.375,-0.4375 0,0 1.532325,-0.55866 1.532325,-0.55866 0,0 -0.158238,-0.36809 -0.158238,-0.36809 0,0 -1.374087,0.48925 -1.374087,0.48925 0,0 0,-0.3125 0,-0.3125 0,0 1.90625,-0.84375 1.90625,-0.84375 0,0 -0.6875,-0.8125 -0.6875,-0.8125 0,0 -2,0.84375 -2,0.84375 0,0 -0.125,-0.53125 -0.125,-0.53125 0,0 0.96875,-0.3125 0.96875,-0.3125 0,0 -0.375,-0.75 -0.375,-0.75 0,0 -15.628541,6.80997 -15.628541,6.80997 0,0 0,0 0,0"
+         style="fill:#ffffff;fill-opacity:1;stroke:none" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask23413">
+      <path
+         sodipodi:nodetypes="ccccccccccccccccccccccccc"
+         style="fill:#ffffff;fill-opacity:1;stroke:none"
+         d="m -28.875,220.92142 2.9375,5.90625 21.452638,-9.2987 -0.28125,-0.34375 -2.1875,0.625 -0.3125,-0.5 1.5625,-0.53125 -0.21875,-0.4375 -0.9375,0.3125 -0.25,-0.375 1.34375,-0.4375 -0.40625,-0.8125 -1.8125,0.6875 -0.375,-0.4375 1.532325,-0.55867 -0.158238,-0.36809 -1.374087,0.48926 0,-0.3125 1.90625,-0.84375 -0.6875,-0.8125 -2,0.84375 -0.125,-0.53125 0.96875,-0.3125 -0.375,-0.75 -20.202638,8.7987 z"
+         id="path23415" />
+    </mask>
+    <inkscape:perspective
+       id="perspective62320"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective62320-4"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective62320-6"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask62349">
+      <path
+         id="path62351"
+         d="m -23.25,303.5625 14.625,-0.125 0,6.875 -1.9375,0.125 -0.125,-3.5 -2.3125,-0.125 0.125,2.1875 -1.875,-0.4375 -0.1875,-3.3125 -1.75,0.125 0.0162,1.4355 -1.271511,0.29978 0.0053,-1.61028 -1.5,-0.125 0.3125,3.3125 -2.375,0 -0.25,-2.75 -1.75,0.0625 0.25,-2.4375 z"
+         style="fill:#ffffff;fill-opacity:1;stroke:none" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask62353">
+      <path
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m -23.25,351.5625 c 0,0 9.452357,-0.0808 12.334438,-0.10542 1.3242277,-0.0113 2.290562,0.63357 2.290562,1.47728 0,0.98373 0,6.80984 0,7.57843 0,0.43367 -0.7322499,0.76362 -1.0940843,0.78696 -0.1187342,0.008 -0.2508196,0.0162 -0.3267237,0.0211 -0.188471,0.0122 -0.529439,-0.32359 -0.544963,-0.75825 -0.02417,-0.67668 -0.07964,-2.22999 -0.09104,-2.54925 -0.0034,-0.0964 -0.103171,-0.16443 -0.249115,-0.17232 -0.336006,-0.0182 -1.699698,-0.0919 -1.95109,-0.10547 -0.07364,-0.004 -0.116276,0.0234 -0.113559,0.071 0.01072,0.18766 0.0698,1.22148 0.09421,1.64873 0.01465,0.25635 -0.117914,0.42776 -0.267832,0.39278 -0.162106,-0.0378 -0.568992,-0.13276 -0.837422,-0.1954 -0.346497,-0.0808 -0.757026,-0.41455 -0.771566,-0.67143 -0.01658,-0.29284 -0.05921,-1.04603 -0.08678,-1.53312 -0.01774,-0.31338 -0.619917,-0.60465 -0.633952,-0.8526 -0.01303,-0.2302 -0.02046,-0.25798 -0.01905,-0.13388 0.0013,0.11478 -0.148134,0.23601 -0.341187,0.2498 -0.219791,0.0157 -0.918348,0.13524 -1.088181,0.14738 -0.09608,0.007 -0.158453,-0.0314 -0.158251,-0.0928 5.13e-4,-0.15609 0.0057,-0.0518 0.0089,0.22943 0.0019,0.16454 -0.08566,0.28753 -0.188554,0.27895 -0.141003,-0.0118 -0.545598,0.0303 -0.769163,0.083 -0.198816,0.0469 -0.376328,0.20033 -0.362206,0.35003 0.02051,0.21736 0.0526,-0.55338 0.0694,-0.37538 0.0084,0.0893 -0.08015,0.13931 -0.210538,0.12845 -0.294833,-0.0246 -1.056513,-0.0646 -1.283673,-0.0646 -0.154171,0 -0.266807,0.17773 -0.242787,0.43235 0.0385,0.40809 0.0123,0.097 0.0489,0.48496 0.02106,0.22321 -0.08138,0.37853 -0.210378,0.38313 -0.159421,0.006 -0.569077,0.0121 -0.854985,0.0121 -0.461908,0 -1.059627,-0.28457 -1.050422,-0.6965 0.0077,-0.34293 -0.149368,-2.60745 -0.139788,-3.03619 0.0059,-0.26205 -1.154975,-0.48152 -1.149623,-0.72103 0.01345,-0.60185 0.190513,-2.69211 0.190513,-2.69211 0,0 7e-6,0 7e-6,0 0,0 4e-6,0 4e-6,0"
+         id="path62355" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask62357">
+      <path
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m -23.25,399.5625 c 0,0 12.038679,-0.10289 13.4797192,-0.11521 0.6621136,-0.006 1.1452808,1.29651 1.1452808,2.98393 0,1.96746 0,6.74468 0,8.28185 0,0.86736 -0.3661249,1.45638 -0.5470421,1.46806 -0.059367,0.004 -0.2052656,0.0132 -0.3570748,0.023 -0.3769413,0.0243 -1.0397571,-0.11179 -1.0475181,-0.32912 -0.01208,-0.33834 -0.07669,-2.14737 -0.0995,-2.78588 -0.0069,-0.19281 -0.06011,-0.32096 -0.133084,-0.32491 -0.168004,-0.009 -2.006099,-0.10843 -2.131795,-0.11523 -0.03682,-0.002 -0.05558,0.0564 -0.05015,0.1515 0.02145,0.37532 0.09077,1.58848 0.102977,1.8021 0.0073,0.12817 -0.275379,0.16338 -0.575214,0.0934 -0.324211,-0.0756 -0.780697,-0.18216 -0.914912,-0.21348 -0.173249,-0.0404 -0.398984,-0.56893 -0.428065,-1.08268 -0.03315,-0.58569 -0.08107,-1.4323 -0.09486,-1.67585 -0.0089,-0.15669 -1.184959,-0.23982 -1.191976,-0.36379 -0.0065,-0.1151 -0.008,0.0647 -0.0052,0.31295 0.0026,0.22955 -0.07025,0.45586 -0.166781,0.46275 -0.109895,0.008 -1.09493,0.21752 -1.179846,0.22358 -0.04804,0.003 -0.07902,-0.0798 -0.07861,-0.20259 0.001,-0.31219 0.005,-0.67483 0.0066,-0.53423 9.29e-4,0.0823 -0.176314,0.13264 -0.382102,0.11549 -0.282005,-0.0235 -0.734974,-0.0234 -0.846757,0.003 -0.09941,0.0234 -0.172714,0.26394 -0.144469,0.56334 0.04101,0.43472 0.09991,0.50352 0.133492,0.85952 0.01684,0.17852 -0.01925,0.29038 -0.08445,0.28494 -0.147417,-0.0123 -0.949656,-0.0323 -1.403977,-0.0323 -0.308342,0 -0.558764,0.0889 -0.546753,0.21617 0.01925,0.20404 -0.118851,-1.32649 -0.100553,-1.13252 0.01053,0.1116 -0.215729,0.19552 -0.473731,0.20473 -0.318842,0.0114 -0.790996,0.0241 -0.93395,0.0241 -0.230954,0 -0.520275,-0.56916 -0.501865,-1.39302 0.01533,-0.68585 -0.04873,-2.4649 -0.02957,-3.32237 0.01171,-0.52411 -0.559951,-1.02555 -0.549246,-1.50456 0.0269,-1.20369 0.131025,-2.94672 0.131025,-2.94672 0,0 4e-6,0 4e-6,0 0,0 7e-6,0 7e-6,0"
+         id="path62359" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask62361">
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccc"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m -23.25,447.5625 14.625,-0.125 0,15.625 -1.9375,0.125 -0.125,-3.5 -2.3125,-0.125 0.125,2.1875 -1.875,-0.4375 -0.1875,-3.3125 -1.75,0.125 0.0162,1.4355 -1.271511,0.29978 0.0053,-1.61028 -1.5,-0.125 0.3125,3.3125 -2.375,0 -0.25,-2.75 -1.75,0.0625 0.25,-11.1875 1.1e-5,0 z"
+         id="path62363" />
+    </mask>
   </defs>
   <g
      transform="translate(20,0)"
@@ -4284,134 +4415,143 @@
      transform="matrix(1,0,0,0.84927713,-1.59099,-53.830202)"
      id="g3688">
     <path
-       d="m 39.0625,-35.187504 c 0,9.354323 -7.583177,16.9375 -16.9375,16.9375 -9.354323,0 -16.9375,-7.583177 -16.9375,-16.9375 0,-9.354323 7.583177,-16.9375 16.9375,-16.9375 9.354323,0 16.9375,7.583177 16.9375,16.9375 z"
-       sodipodi:ry="16.9375"
-       sodipodi:rx="16.9375"
-       sodipodi:cy="-35.187504"
-       sodipodi:cx="22.125"
-       id="path4796"
-       style="color:#000000;fill:#624b26;fill-opacity:1;stroke:none;stroke-width:1.23800826;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       sodipodi:type="arc"
-       transform="matrix(1.0096863,0,0,1.1888774,1.683446,62.915696)" />
+       style="fill:#7f5b21;fill-opacity:1;stroke:none"
+       d="m 13.49724,2.890929 c -0.633737,0 -1.281344,0.1143973 -1.75,0.73592 -6.39668,13.417502 -6.245214,23.599584 -0.21875,36.464836 0.393261,0.632485 1.013874,1.214268 1.78125,1.214268 l 4.84375,0 c -5.501338,-11.219656 -5.484839,-27.229017 0,-38.415024 l -4.65625,0 z"
+       id="path12487"
+       sodipodi:nodetypes="ccccccc" />
     <path
-       id="path4750"
-       d="m 24.18474,21.252133 9.875,16.116648 c 2.89447,-2.476377 5.09238,-5.98883 6.21875,-10.082104 L 24.18474,21.252133 z"
-       style="color:#000000;fill:#7d5a23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       sodipodi:nodetypes="cccc" />
+       style="fill:#a1702f;fill-opacity:1;stroke:none"
+       d="m 30.46599,2.890929 c 5.388939,10.990425 5.399593,27.402871 0,38.415024 l 4.03125,0 c 1.105459,0 1.752633,-0.658547 2.1875,-1.545432 C 42.850087,27.186668 43.05721,17.439849 36.59099,4.252381 36.120373,3.2925859 35.550107,2.890929 34.65349,2.890929 l -4.1875,0 z"
+       id="path12411"
+       sodipodi:nodetypes="ccccccc" />
+    <path
+       id="path12440"
+       d="m 30.169791,2.8795906 c 5.388939,10.9904254 5.399592,27.4028724 0,38.4150234"
+       style="fill:none;stroke:#745f44;stroke-width:1.62767075999999999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       sodipodi:nodetypes="cc" />
+    <path
+       id="path12358"
+       d="m 24.080435,2.8795895 c -0.407103,12.2751725 -0.413061,26.1091365 0,38.4150255"
+       style="fill:none;stroke:#745f44;stroke-width:1.08511376000000004;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
     <path
-       id="path4748"
-       d="m 24.12224,21.362521 -0.0625,19.86984 c 3.73101,-0.0079 7.16057,-1.468487 9.96875,-3.86358 l -9.90625,-16.00626 z"
-       style="color:#000000;fill:#9f6829;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       sodipodi:nodetypes="cccc" />
+       id="path12362"
+       d="m 18.147296,2.8795895 c -5.484839,11.1860065 -5.501338,27.1953695 0,38.4150255"
+       style="fill:none;stroke:#ad895d;stroke-width:1.08511376000000004;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:#c78630;fill-opacity:1;stroke:none"
+       d="m 24.34099,2.890929 c -0.407103,12.275173 -0.413061,26.109135 0,38.415024 l 6.25,0 c 5.399593,-11.012153 5.388939,-27.424599 0,-38.415024 l -6.25,0 z"
+       id="path12399"
+       sodipodi:nodetypes="ccccc" />
     <path
-       id="path4740"
-       d="m 23.93474,21.362521 -9.9375,16.00626 c 2.81188,2.40572 6.2599,3.855634 10,3.86358 l -0.0625,-19.86984 z"
-       style="color:#000000;fill:#7a5a26;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       sodipodi:nodetypes="cccc" />
+       style="fill:#99682f;fill-opacity:1;stroke:none"
+       d="m 18.09099,2.890929 c -5.484839,11.186007 -5.501338,27.195368 0,38.415024 l 5.9375,0 c -0.413061,-12.305889 -0.407103,-26.139851 0,-38.415024 l -5.9375,0 z"
+       id="path12385"
+       sodipodi:nodetypes="ccccc" />
     <path
-       style="color:#000000;fill:#bf8538;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 23.84099,21.252133 7.74724,27.286677 c 1.12161,4.077142 3.3414,7.57026 6.21875,10.045308 l 9.875,-16.079852 z"
-       id="path4746"
-       sodipodi:nodetypes="cccc" />
+       style="fill:#b7c5db;fill-opacity:1;stroke:none"
+       d="m 13.96599,2.890929 c -0.869969,0 -1.832996,0.47101 -2.5,1.398248 -1.251653,2.785969 -2.2305406,5.642804 -2.875,8.536672 l 30.8125,0 c -0.679651,-3.063124 -1.732877,-6.078457 -3.09375,-9.01502 -0.528713,-0.52591 -1.246331,-0.9199 -2.0625,-0.9199 l -20.28125,0 z m -5.375,28.480104 c 0.6293617,2.820313 1.571941,5.625953 2.78125,8.352692 0.504939,0.727972 1.393688,1.582228 2.34375,1.582228 l 20.625,0 c 0.923142,0 1.65572,-0.674398 2.1875,-1.435044 0.03433,-0.04911 0.06135,-0.09748 0.09375,-0.147184 1.208896,-2.723456 2.152954,-5.524648 2.78125,-8.352692 l -30.8125,0 z"
+       id="path4028" />
+    <path
+       style="color:#000000;fill:#a8b1c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 12.375 -51.375 C 11.505031 -51.375 10.542004 -50.974982 9.875 -50.1875 C 8.6233477 -47.82144 7.6444594 -45.395196 7 -42.9375 L 22.28125 -42.9375 L 22.28125 -51.375 L 12.375 -51.375 z M 28.65625 -51.375 C 29.326583 -48.635424 29.796796 -45.957515 30.21875 -42.9375 L 37.8125 -42.9375 C 37.132849 -45.538941 36.079623 -48.099794 34.71875 -50.59375 C 34.190037 -51.040393 33.472419 -51.375 32.65625 -51.375 L 28.65625 -51.375 z M 7 -27.1875 C 7.6381158 -24.758956 8.6062404 -22.34573 9.84375 -20 C 9.8654588 -19.9751 9.8833054 -19.962554 9.90625 -19.9375 C 10.072201 -19.756292 10.280041 -19.573016 10.5 -19.40625 L 22.28125 -19.40625 L 22.28125 -27.1875 L 7 -27.1875 z M 30.25 -27.1875 C 29.856236 -24.54517 29.519982 -22.475913 28.78125 -19.40625 L 34.375 -19.40625 C 34.586691 -19.579544 34.76957 -19.76475 34.9375 -19.96875 C 34.947082 -19.98039 34.959318 -19.988314 34.96875 -20 C 36.205723 -22.342779 37.175464 -24.752298 37.8125 -27.1875 L 30.25 -27.1875 z "
+       transform="matrix(1,0,0,1.177472,1.59099,63.383553)"
+       id="path4042-6" />
     <path
-       style="color:#000000;fill:#a2702e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 7.74724,14.886425 c -1.125357,4.052455 -0.990835,8.304736 0,12.363456 L 23.77849,21.068153 7.74724,14.886425 z"
-       id="path4744"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="color:#000000;fill:#9f6829;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 40.27849,14.886423 -16.0625,6.181728 16.0625,6.181728 c 1.161369,-4.066429 1.010428,-8.291284 0,-12.363456 z"
-       id="path4742"
-       sodipodi:nodetypes="cccc" />
-    <path
-       id="path4738"
-       d="m 34.05974,4.804321 0,0 z m 0,0 -9.875,16.116648 16.09375,-6.07134 C 39.14968,10.768705 36.94739,7.274861 34.05974,4.804321 z"
-       style="color:#000000;fill:#9f7031;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       sodipodi:nodetypes="cccccc" />
+       style="color:#000000;fill:#848f9e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 12.375 -51.375 C 11.505031 -51.375 10.542004 -50.974982 9.875 -50.1875 C 8.6233477 -47.82144 7.6444594 -45.395196 7 -42.9375 L 14.84375 -42.9375 C 15.416078 -46.125 16.046342 -48.46875 16.84375 -51.375 L 12.375 -51.375 z M 31.46875 -51.375 C 32.28595 -48.495771 33.020892 -46.041998 33.71875 -42.9375 L 37.8125 -42.9375 C 37.132849 -45.538941 36.079623 -48.099794 34.71875 -50.59375 C 34.190037 -51.040393 33.472419 -51.375 32.65625 -51.375 L 31.46875 -51.375 z M 7 -27.1875 C 7.6381158 -24.758956 8.6062404 -22.34573 9.84375 -20 C 9.8654588 -19.9751 9.8833054 -19.962554 9.90625 -19.9375 C 10.072201 -19.756292 10.280041 -19.573016 10.5 -19.40625 L 16.8125 -19.40625 C 15.861967 -22.115892 15.429717 -24.300766 14.84375 -27.1875 L 7 -27.1875 z M 33.75 -27.1875 C 33.436957 -24.462782 32.596966 -22.051027 31.5625 -19.40625 L 34.375 -19.40625 C 34.586691 -19.579544 34.76957 -19.76475 34.9375 -19.96875 C 34.947082 -19.98039 34.959318 -19.988314 34.96875 -20 C 36.205723 -22.342779 37.175464 -24.752298 37.8125 -27.1875 L 33.75 -27.1875 z "
+       transform="matrix(1,0,0,1.177472,1.59099,63.383553)"
+       id="path4044-3" />
+    <rect
+       ry="0.47834799"
+       y="39.650547"
+       x="12.002602"
+       height="0.95669597"
+       width="24.9375"
+       id="rect12476"
+       style="color:#000000;fill:#6c7784;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.08511376;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <path
-       id="path4736"
-       d="m 13.96599,4.841117 c -2.86777,2.4668109 -5.0625,5.948724 -6.1875,10.008512 l 16.0625,6.07134 -9.875,-16.079852 z"
-       style="color:#000000;fill:#7d5a23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       sodipodi:nodetypes="cccc" />
+       style="color:#000000;fill:#6c7784;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 13.55974,2.927724 -1.46875,1.030288 c -1.580682,3.22371 -3.091139,5.4883254 -3.84375,8.867836 l 2.9375,0 c 0.614401,-3.9477162 1.672511,-6.4938075 2.46875,-9.898124 -0.02021,0.00252 -0.04224,-0.00302 -0.0625,0 -0.01013,0.00151 -0.02111,-0.00163 -0.03125,0 z m 21.21875,0 c 1.335258,3.7794826 1.867565,6.2579776 2.5625,9.898124 l 2.59375,0 C 39.258271,9.7770681 37.808525,6.7712199 36.37224,3.847624 35.951572,3.4115555 35.40545,3.0540421 34.77849,2.927724 z M 8.24724,31.371032 c 0.6298801,2.822636 1.857719,5.624406 3.125,8.352692 0.190801,0.275079 0.429351,0.551159 0.71875,0.809512 l 1.84375,0 c -1.259892,-1.811536 -2.34081,-5.971305 -2.75,-9.162204 l -2.9375,0 z m 29.09375,0 c -0.313043,3.208279 -1.336092,6.37367 -2.8125,8.941428 l 1.46875,0.18398 c 0.197743,-0.195517 0.372649,-0.398673 0.53125,-0.625532 0.03433,-0.04911 0.06135,-0.09748 0.09375,-0.147184 1.273417,-2.724857 2.558686,-5.522318 3.1875,-8.352692 l -2.46875,0 z"
+       id="path9675" />
+    <rect
+       ry="0.47834799"
+       y="31.336853"
+       x="10.455806"
+       height="0.95669597"
+       width="28.031092"
+       id="rect12466"
+       style="color:#000000;fill:#a8b1c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.08511376;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <rect
+       style="color:#000000;fill:#a8b1c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.08511376;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect12472"
+       width="24.9375"
+       height="0.95669597"
+       x="11.737437"
+       y="3.4550457"
+       ry="0.47834799" />
     <path
-       id="path4734"
-       d="M 23.99724,0.940741 C 20.24133,0.948748 16.78426,2.4168835 13.96599,4.841117 l 9.96875,16.00626 0.0625,-19.906636 z m -10.03125,3.900376 0,0 z"
-       style="color:#000000;fill:#9d682b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       sodipodi:nodetypes="cccccc" />
+       sodipodi:nodetypes="cccsscsscc"
+       id="path4054-5"
+       d="m 26.044115,6.644121 c 0.263272,2.0092108 0.156065,4.181792 0.140625,6.181728 l 2.6875,0 C 28.8854,10.837582 28.612955,8.777833 28.21599,6.754509 27.758215,4.421238 25.799646,4.7784117 26.044115,6.644121 z m 0.585703,24.726914 c 0,0.843477 0.04635,2.326231 -0.148208,3.587608 -0.242427,1.571709 1.081916,1.320573 1.625,0.0184 0.261836,-0.627815 0.703125,-2.156645 0.703125,-3.606008 l -2.179917,0 z"
+       style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <path
-       id="path4732"
-       d="m 24.05974,0.940741 0.0625,19.906636 9.9375,-16.043056 c -2.81188,-2.4057201 -6.2599,-3.85563442 -10,-3.86358 z"
-       style="color:#000000;fill:#bf8538;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.35639226000000002;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       sodipodi:nodetypes="cccc" />
+       style="fill:#1d140b;fill-opacity:1;stroke:none"
+       d="m 21.646646,0.53300092 c 0.538089,0 0.645332,0.24832884 0.626993,0.89775648 l -0.06304,2.2324351 -3.005204,0.016755 -0.17226,-2.0443728 C 18.978075,0.98210051 18.953665,0.53300092 19.51445,0.53300092 l 2.132195,0 z"
+       id="path62468"
+       sodipodi:nodetypes="ccccccc" />
+    <rect
+       ry="0.47834799"
+       y="3.4550457"
+       x="18.362444"
+       height="0.95669597"
+       width="15.6875"
+       id="rect12474"
+       style="color:#000000;fill:#dbe2ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.08511376;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <rect
+       style="color:#000000;fill:#848f9e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.08511376000000004;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect12478"
+       width="15.6875"
+       height="0.95669597"
+       x="18.627604"
+       y="39.650547"
+       ry="0.47834799" />
     <g
        transform="translate(0.881654,0)"
        id="g12401" />
-    <path
-       transform="matrix(1.0096863,0,0,1.1888774,1.683446,62.915696)"
-       sodipodi:type="arc"
-       style="color:#000000;fill:none;stroke:#2b2211;stroke-width:1.23800825999999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="path4681"
-       sodipodi:cx="22.125"
-       sodipodi:cy="-35.187504"
-       sodipodi:rx="16.9375"
-       sodipodi:ry="16.9375"
-       d="m 39.0625,-35.187504 c 0,9.354323 -7.583177,16.9375 -16.9375,16.9375 -9.354323,0 -16.9375,-7.583177 -16.9375,-16.9375 0,-9.354323 7.583177,-16.9375 16.9375,-16.9375 9.354323,0 16.9375,7.583177 16.9375,16.9375 z" />
-    <path
-       transform="matrix(0.85660408,0,0,1.0086273,5.070391,56.573145)"
-       sodipodi:type="arc"
-       style="color:#000000;fill:#a8b1c0;fill-opacity:1;stroke:#2b2211;stroke-width:0.58370023999999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="path4707"
-       sodipodi:cx="22.125"
-       sodipodi:cy="-35.187504"
-       sodipodi:rx="16.9375"
-       sodipodi:ry="16.9375"
-       d="m 39.0625,-35.187504 c 0,9.354323 -7.583177,16.9375 -16.9375,16.9375 -9.354323,0 -16.9375,-7.583177 -16.9375,-16.9375 0,-9.354323 7.583177,-16.9375 16.9375,-16.9375 9.354323,0 16.9375,7.583177 16.9375,16.9375 z" />
-    <path
-       d="m 39.0625,-35.187504 c 0,9.354323 -7.583177,16.9375 -16.9375,16.9375 -9.354323,0 -16.9375,-7.583177 -16.9375,-16.9375 0,-9.354323 7.583177,-16.9375 16.9375,-16.9375 9.354323,0 16.9375,7.583177 16.9375,16.9375 z"
-       sodipodi:ry="16.9375"
-       sodipodi:rx="16.9375"
-       sodipodi:cy="-35.187504"
-       sodipodi:cx="22.125"
-       id="path4794"
-       style="color:#000000;fill:#4f3d1f;fill-opacity:1;stroke:none;stroke-width:0.68219006000000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       sodipodi:type="arc"
-       transform="matrix(0.73293354,0,0,0.86300874,7.806601,51.449191)" />
+    <rect
+       style="color:#000000;fill:#dbe2ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.08511376;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect12464"
+       width="15.6875"
+       height="0.95669597"
+       x="18.71599"
+       y="31.336853"
+       ry="0.47834799" />
+    <rect
+       style="color:#000000;fill:#6c7784;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.08511376;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect12468"
+       width="27.1875"
+       height="0.95669597"
+       x="10.96599"
+       y="11.872849"
+       ry="0.47834799" />
+    <rect
+       ry="0.47834799"
+       y="11.688869"
+       x="18.71599"
+       height="0.95669597"
+       width="15.6875"
+       id="rect12470"
+       style="color:#000000;fill:#a8b1c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.08511376;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <path
-       style="color:#000000;fill:#7d5a23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.50000000000000000;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 24.02849,6.460141 c -6.856097,0 -12.40625,6.53515 -12.40625,14.608012 0,2.337144 0.484194,4.553676 1.3125,6.512892 L 28.77849,7.564021 c -1.467864,-0.7194731 -3.060838,-1.10388 -4.75,-1.10388 z"
-       id="rect4770" />
-    <path
-       style="color:#000000;fill:#9b682d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.50000000000000000;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 29.09099,7.748001 -16,20.274596 c 1.438057,3.141936 3.83551,5.540859 6.71875,6.770464 l 15.53125,-19.68586 c -1.244599,-3.258412 -3.482706,-5.8937195 -6.25,-7.3592 z"
-       id="rect4776" />
-    <path
-       style="color:#000000;fill:#a1772f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.50000000000000000;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 35.49724,15.475161 -15.375,19.465084 c 1.230746,0.481203 2.538316,0.772716 3.90625,0.772716 6.856097,0 12.40625,-6.571946 12.40625,-14.644808 0,-1.988941 -0.326468,-3.864623 -0.9375,-5.592992 z"
-       id="rect4778" />
-    <path
-       style="opacity:0.29999999999999999;color:#000000;fill:#3e2c12;fill-opacity:1;stroke:none;stroke-width:0.68219006000000004;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 24.02849,6.460141 c -6.856097,0 -12.40625,6.53515 -12.40625,14.608012 0,8.072862 5.550153,14.644808 12.40625,14.644808 6.856097,0 12.40625,-6.571946 12.40625,-14.644808 0,-8.072862 -5.550153,-14.608012 -12.40625,-14.608012 z m 0,2.39174 c 5.73334,0 10.375,5.465425 10.375,12.216272 0,6.750847 -4.64166,12.253068 -10.375,12.253068 -5.73334,0 -10.375,-5.502221 -10.375,-12.253068 0,-6.750847 4.64166,-12.216272 10.375,-12.216272 z"
-       id="path4705" />
+       style="fill:none;stroke:#2b2111;stroke-width:1.35639226000000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="M 36.993247,4.714529 C 36.53328,3.776454 35.511389,2.879589 34.260438,2.879589 l -20.307701,0 c -1.036459,0 -2.212531,0.687437 -2.852338,1.992285 -6.0226722,12.282886 -6.056076,22.079441 -0.01373,34.402506 0.374369,0.763508 1.48903,2.020235 2.640925,2.020235 l 20.598772,0 c 1.230856,0 2.175492,-1.193302 2.669488,-2.200779 6.014564,-12.266351 6.021717,-22.093058 -0.0026,-34.379307 z"
+       id="path4026"
+       sodipodi:nodetypes="ccccccccc" />
     <path
-       transform="matrix(0.73293354,0,0,0.86300874,7.806601,51.449191)"
-       sodipodi:type="arc"
-       style="color:#000000;fill:none;stroke:#2b2211;stroke-width:0.68219006000000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="path4752"
-       sodipodi:cx="22.125"
-       sodipodi:cy="-35.187504"
-       sodipodi:rx="16.9375"
-       sodipodi:ry="16.9375"
-       d="m 39.0625,-35.187504 c 0,9.354323 -7.583177,16.9375 -16.9375,16.9375 -9.354323,0 -16.9375,-7.583177 -16.9375,-16.9375 0,-9.354323 7.583177,-16.9375 16.9375,-16.9375 9.354323,0 16.9375,7.583177 16.9375,16.9375 z" />
-    <path
-       sodipodi:type="arc"
-       style="color:#000000;fill:#1d160b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="path4648"
-       sodipodi:cx="21.412077"
-       sodipodi:cy="-27.590235"
-       sodipodi:rx="1.4363106"
-       sodipodi:ry="1.4363106"
-       d="m 22.848388,-27.590235 a 1.4363106,1.4363106 0 1 1 -2.872622,0 1.4363106,1.4363106 0 1 1 2.872622,0 z"
-       transform="matrix(1,0,0,1.177472,0.09099,63.089185)" />
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m 63.80974,14.628853 c -1.313634,0.07033 -2.623602,0.643034 -3.375,1.619024 -1.502791,1.95198 -0.41666,4.409968 -0.6875,5.298624 -0.02241,0.07354 -0.04073,0.08342 -0.0625,0.147184 -0.319254,-0.164977 -0.829095,-0.418557 -0.9375,-0.478348 -0.884735,-0.487974 -0.375809,-1.50153 -1.4375,-1.692616 -1.06169,-0.191085 -1.89635,2.732226 -0.9375,3.274844 0.958851,0.542619 0.6283,-0.401536 1.75,0 0.227275,0.08136 0.898465,0.370821 1.59375,0.662328 0.396197,0.431967 1.116681,0.710169 1.625,1.140676 0.07345,0.06221 0.145987,0.153295 0.21875,0.220776 -1.704915,0.786714 -3.21708,1.434146 -3.6875,1.47184 -1.305748,0.104625 -1.05489,-0.892996 -1.6875,-0.147184 -0.638159,0.75235 0.153038,3.110394 1.25,2.906884 1.096962,-0.203508 0.548539,-0.509811 1.625,-1.398248 0.417593,-0.344652 2.003485,-1.10694 3.75,-1.913392 0.243046,0.102029 0.490158,0.147184 0.8125,0.147184 0.412681,0 0.751315,-0.08893 1.0625,-0.220776 1.814827,0.834751 3.475842,1.631755 3.90625,1.986984 1.076461,0.888437 0.528038,1.19474 1.625,1.398248 1.096962,0.20351 1.888159,-2.154534 1.25,-2.906884 -0.63261,-0.745812 -0.381752,0.251809 -1.6875,0.147184 -0.484916,-0.03886 -2.070856,-0.723577 -3.84375,-1.545432 0.05374,-0.05778 0.102262,-0.123174 0.15625,-0.18398 0.693742,-0.781359 1.604031,-0.460587 1.9375,-1.140676 0.635061,-0.2654 1.286013,-0.548932 1.5,-0.625532 1.1217,-0.401536 0.791149,0.542619 1.75,0 0.95885,-0.542618 0.12419,-3.465929 -0.9375,-3.274844 -1.061691,0.191086 -0.552765,1.204642 -1.4375,1.692616 -0.118843,0.06555 -0.662304,0.324972 -1.03125,0.515144 -0.03336,-0.12149 -0.06923,-0.230319 -0.09375,-0.36796 -0.157495,-0.884047 1.079388,-3.105518 -0.53125,-5.298624 -0.799209,-1.088233 -2.123865,-1.505365 -3.4375,-1.435044 z m -1.625,5.188236 c 0.539185,-0.08966 1.175302,0.473376 1.1875,1.177472 0.01219,0.704098 -0.943077,1.651913 -1.46875,1.582228 -0.525671,-0.06969 -0.683787,-0.580885 -0.6875,-1.140676 -0.0037,-0.559791 0.429563,-1.52936 0.96875,-1.619024 z m 3.3125,0 c 0.539186,0.08966 0.941206,1.059231 0.9375,1.619024 -0.0037,0.559791 -0.130578,1.070988 -0.65625,1.140676 -0.525673,0.06969 -1.543445,-0.87813 -1.53125,-1.582228 0.0122,-0.704096 0.710815,-1.267136 1.25,-1.177472 z"
+       id="path4696" />
   </g>
   <g
      transform="translate(-20,0)"
@@ -4587,14 +4727,266 @@
        id="use4041"
        width="48"
        height="912" />
-    <use
-       height="912"
-       width="48"
-       transform="translate(21.59099,60.176777)"
-       id="use4002"
-       xlink:href="#g3688"
-       inkscape:tiled-clone-of="#g3688"
-       y="0"
-       x="0" />
+  </g>
+  <g
+     id="g4813"
+     transform="matrix(1,0,0,0.84927713,-61.59099,-53.830202)"
+     inkscape:tile-cx="44"
+     inkscape:tile-cy="24"
+     inkscape:tile-w="48"
+     inkscape:tile-h="48"
+     inkscape:tile-x0="20"
+     inkscape:tile-y0="0"
+     style="fill:#a08057;fill-opacity:1;stroke:none">
+    <g
+       id="g4849"
+       transform="translate(0.881654,0)" />
+  </g>
+  <g
+     style="fill:#a08057;fill-opacity:1;stroke:none"
+     id="g4965-1"
+     transform="matrix(1,0,0,0.84927713,-55.943711,22.948985)" />
+  <g
+     style="fill:#a08057;fill-opacity:1;stroke:none"
+     transform="matrix(1,0,0,0.84927713,-75.943711,22.948985)"
+     id="g7024" />
+  <g
+     id="g7059"
+     transform="matrix(1,0,0,0.84927713,-55.943711,22.948985)"
+     style="fill:#a08057;fill-opacity:1;stroke:none" />
+  <path
+     sodipodi:nodetypes="csssssssssssssssc"
+     id="path7124"
+     d="m -49.663605,22.926776 c -1.061691,0.162285 -0.552765,1.023074 -1.4375,1.4375 -0.08222,0.03851 -0.406433,0.190373 -0.6875,0.3125 -0.125215,0.05441 -0.198792,0.07522 -0.3125,0.125 -2.128814,0.940589 -4.254009,1.833526 -6.3125,2.625 -0.380265,0.146209 -0.78244,0.299277 -1.15625,0.4375 -1.166608,0.438016 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.08885 -1.05489,-0.758401 -1.6875,-0.125 -0.638159,0.638953 0.153038,2.641586 1.25,2.46875 1.096962,-0.172835 0.548539,-0.432971 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.168157 0.834956,-0.333992 1.25,-0.5 1.682857,-0.673104 3.407655,-1.340069 5.1875,-1.96875 0.303693,-0.107788 0.457313,-0.156072 0.71875,-0.25 0.285261,-0.102487 0.669594,-0.247306 0.78125,-0.28125 1.1217,-0.341016 0.791149,0.460833 1.75,0 0.95885,-0.460833 0.12419,-2.943534 -0.9375,-2.78125 z"
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+  <path
+     sodipodi:nodetypes="csssscssscccsccsssccsssc"
+     id="path7126"
+     d="m -56.163605,18.770526 c -1.313634,0.05973 -2.623602,0.546114 -3.375,1.375 -1.502791,1.657772 -0.41666,3.745284 -0.6875,4.5 -0.0067,0.01873 -0.02506,0.01955 -0.03125,0.03125 -0.01595,0.02546 -0.01615,0.06581 -0.03125,0.09375 -0.260003,0.48118 -0.390385,1.293845 0.28125,1.6875 0.405393,0.265709 0.956255,0.453329 1.34375,0.78125 0.544716,0.46097 1.064273,0.834876 1.78125,1.03125 0.436087,0.119441 0.858261,0.04272 1.28125,-0.03125 0.677757,-0.118517 1.166283,-0.584865 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.392046 1.9375,-0.9375 0.144213,-0.622621 -0.0901,-1.188437 -0.25,-1.78125 -0.157495,-0.750801 1.110638,-2.637445 -0.5,-4.5 -0.799209,-0.924211 -2.123865,-1.278472 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.07615 1.175302,0.402027 1.1875,1 0.01219,0.597974 -0.974327,1.402931 -1.5,1.34375 -0.525671,-0.05919 -0.683787,-0.493333 -0.6875,-0.96875 -0.0037,-0.475418 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.07615 0.941206,0.89958 0.9375,1.375 -0.0037,0.475417 -0.161828,0.909565 -0.6875,0.96875 -0.525673,0.05919 -1.512195,-0.745776 -1.5,-1.34375 0.0122,-0.597973 0.710815,-1.076149 1.25,-1 z"
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+  <path
+     sodipodi:nodetypes="cssssssssssssssssc"
+     id="path7128"
+     d="m -62.851105,22.926776 c -0.966429,0.140727 -1.680172,2.349219 -0.78125,2.78125 0.958856,0.460833 0.65955,-0.341016 1.78125,0 0.140679,0.04277 0.587473,0.207055 0.96875,0.34375 0.234699,0.08414 0.328833,0.124421 0.59375,0.21875 1.544408,0.549878 3.204373,1.155504 5,1.875 0.215351,0.08629 0.404627,0.160094 0.625,0.25 1.536527,0.60749 2.873978,1.173933 3.25,1.4375 1.076461,0.754529 0.528038,1.014665 1.625,1.1875 1.096962,0.172836 1.888159,-1.829797 1.25,-2.46875 -0.63261,-0.633401 -0.381752,0.213855 -1.6875,0.125 -0.433984,-0.02953 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.06404 -0.3297,-0.123203 -0.5,-0.1875 -2.197023,-0.829494 -4.266352,-1.684857 -6.25,-2.59375 -0.148726,-0.06527 -0.265905,-0.113814 -0.4375,-0.1875 -0.196749,-0.08449 -0.442096,-0.191627 -0.5,-0.21875 -0.884735,-0.414426 -0.375809,-1.275215 -1.4375,-1.4375 -0.06636,-0.01014 -0.123071,-0.0094 -0.1875,0 z"
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+  <g
+     id="g23385"
+     transform="translate(40,384)">
+    <path
+       sodipodi:nodetypes="csssssssssssssssc"
+       id="path4975-0"
+       d="m -9.663605,22.926776 c -1.061691,0.162285 -0.552765,1.023074 -1.4375,1.4375 -0.08222,0.03851 -0.406433,0.190373 -0.6875,0.3125 -0.125215,0.05441 -0.198792,0.07522 -0.3125,0.125 -2.128814,0.940589 -4.254009,1.833526 -6.3125,2.625 -0.380265,0.146209 -0.78244,0.299277 -1.15625,0.4375 -1.166608,0.438016 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.08885 -1.05489,-0.758401 -1.6875,-0.125 -0.638159,0.638953 0.153038,2.641586 1.25,2.46875 1.096962,-0.172835 0.548539,-0.432971 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.168157 0.834956,-0.333992 1.25,-0.5 1.682857,-0.673104 3.407655,-1.340069 5.1875,-1.96875 0.303693,-0.107788 0.457313,-0.156072 0.71875,-0.25 0.285261,-0.102487 0.669594,-0.247306 0.78125,-0.28125 1.1217,-0.341016 0.791149,0.460833 1.75,0 0.95885,-0.460833 0.12419,-2.943534 -0.9375,-2.78125 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       mask="url(#mask23397)" />
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -9.65261,214.92583 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.25401,1.83352 -6.312502,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0888 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.40837,-0.16816 0.834957,-0.334 1.250001,-0.5 1.682858,-0.67311 3.407656,-1.34007 5.187501,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+       id="path10666"
+       sodipodi:nodetypes="csssssssssssssssc"
+       mask="url(#mask23413)" />
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -9.6553588,166.92607 c -1.0616912,0.16228 -0.5527652,1.02307 -1.4375002,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.312501,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0888 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.40837,-0.16816 0.834957,-0.334 1.250001,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217002,-0.34102 0.7911492,0.46083 1.7500002,0 0.9588501,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 0,0 0,0 0,0"
+       id="path16438"
+       mask="url(#mask23409)" />
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -9.6581075,118.9263 c -1.0616915,0.16229 -0.5527655,1.02308 -1.4375005,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83353 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29928 -1.15625,0.4375 -1.166608,0.43802 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0888 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64159 1.25,2.46875 1.096962,-0.17283 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.33399 1.25,-0.5 1.682857,-0.6731 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15607 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.2473 0.78125,-0.28125 1.1217005,-0.34101 0.7911495,0.46083 1.7500005,0 0.95885,-0.46083 0.12419,-2.94353 -0.9375,-2.78125 0,0 0,0 0,0"
+       id="path16440"
+       mask="url(#mask23405)" />
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -9.6608563,70.92654 c -1.0616907,0.162283 -0.5527647,1.023072 -1.4374997,1.4375 -0.08222,0.03851 -0.406433,0.190372 -0.6875,0.3125 -0.125215,0.05441 -0.198792,0.07522 -0.3125,0.125 -2.128814,0.940589 -4.254009,1.833524 -6.312501,2.625 -0.380265,0.146209 -0.78244,0.299275 -1.15625,0.4375 -1.166608,0.438014 -2.178435,0.788489 -2.53125,0.8125 -1.305748,0.08884 -1.05489,-0.758401 -1.6875,-0.125 -0.638159,0.638952 0.153038,2.641584 1.25,2.46875 1.096962,-0.172837 0.548539,-0.432971 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.40837,-0.168158 0.834957,-0.333995 1.25,-0.5 1.682858,-0.673106 3.407656,-1.34007 5.187501,-1.96875 0.303693,-0.107789 0.457313,-0.156075 0.71875,-0.25 0.285261,-0.102488 0.669594,-0.247308 0.78125,-0.28125 1.1216997,-0.341018 0.7911488,0.460832 1.7499997,0 0.9588501,-0.460835 0.12419,-2.943536 -0.9375,-2.78125 0,0 0,0 0,0"
+       id="path16442"
+       mask="url(#mask23401)" />
+  </g>
+  <g
+     id="g23417"
+     transform="matrix(-1,0,0,1,7.68942,528)">
+    <path
+       mask="url(#mask23397)"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -9.663605,22.926776 c -1.061691,0.162285 -0.552765,1.023074 -1.4375,1.4375 -0.08222,0.03851 -0.406433,0.190373 -0.6875,0.3125 -0.125215,0.05441 -0.198792,0.07522 -0.3125,0.125 -2.128814,0.940589 -4.254009,1.833526 -6.3125,2.625 -0.380265,0.146209 -0.78244,0.299277 -1.15625,0.4375 -1.166608,0.438016 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.08885 -1.05489,-0.758401 -1.6875,-0.125 -0.638159,0.638953 0.153038,2.641586 1.25,2.46875 1.096962,-0.172835 0.548539,-0.432971 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.168157 0.834956,-0.333992 1.25,-0.5 1.682857,-0.673104 3.407655,-1.340069 5.1875,-1.96875 0.303693,-0.107788 0.457313,-0.156072 0.71875,-0.25 0.285261,-0.102487 0.669594,-0.247306 0.78125,-0.28125 1.1217,-0.341016 0.791149,0.460833 1.75,0 0.95885,-0.460833 0.12419,-2.943534 -0.9375,-2.78125 z"
+       id="path23419"
+       sodipodi:nodetypes="csssssssssssssssc" />
+    <path
+       mask="url(#mask23413)"
+       sodipodi:nodetypes="csssssssssssssssc"
+       id="path23421"
+       d="m -9.65261,214.92583 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.25401,1.83352 -6.312502,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0888 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.40837,-0.16816 0.834957,-0.334 1.250001,-0.5 1.682858,-0.67311 3.407656,-1.34007 5.187501,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+    <path
+       mask="url(#mask23409)"
+       id="path23423"
+       d="m -9.6553588,166.92607 c -1.0616912,0.16228 -0.5527652,1.02307 -1.4375002,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.312501,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0888 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.40837,-0.16816 0.834957,-0.334 1.250001,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217002,-0.34102 0.7911492,0.46083 1.7500002,0 0.9588501,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 0,0 0,0 0,0"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+    <path
+       mask="url(#mask23405)"
+       id="path23425"
+       d="m -9.6581075,118.9263 c -1.0616915,0.16229 -0.5527655,1.02308 -1.4375005,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83353 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29928 -1.15625,0.4375 -1.166608,0.43802 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0888 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64159 1.25,2.46875 1.096962,-0.17283 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.33399 1.25,-0.5 1.682857,-0.6731 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15607 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.2473 0.78125,-0.28125 1.1217005,-0.34101 0.7911495,0.46083 1.7500005,0 0.95885,-0.46083 0.12419,-2.94353 -0.9375,-2.78125 0,0 0,0 0,0"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+    <path
+       mask="url(#mask23401)"
+       id="path23427"
+       d="m -9.6608563,70.92654 c -1.0616907,0.162283 -0.5527647,1.023072 -1.4374997,1.4375 -0.08222,0.03851 -0.406433,0.190372 -0.6875,0.3125 -0.125215,0.05441 -0.198792,0.07522 -0.3125,0.125 -2.128814,0.940589 -4.254009,1.833524 -6.312501,2.625 -0.380265,0.146209 -0.78244,0.299275 -1.15625,0.4375 -1.166608,0.438014 -2.178435,0.788489 -2.53125,0.8125 -1.305748,0.08884 -1.05489,-0.758401 -1.6875,-0.125 -0.638159,0.638952 0.153038,2.641584 1.25,2.46875 1.096962,-0.172837 0.548539,-0.432971 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.40837,-0.168158 0.834957,-0.333995 1.25,-0.5 1.682858,-0.673106 3.407656,-1.34007 5.187501,-1.96875 0.303693,-0.107789 0.457313,-0.156075 0.71875,-0.25 0.285261,-0.102488 0.669594,-0.247308 0.78125,-0.28125 1.1216997,-0.341018 0.7911488,0.460832 1.7499997,0 0.9588501,-0.460835 0.12419,-2.943536 -0.9375,-2.78125 0,0 0,0 0,0"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+  </g>
+  <g
+     id="g62462"
+     transform="translate(0,432)">
+    <path
+       transform="translate(40,0)"
+       mask="url(#mask62361)"
+       sodipodi:nodetypes="csssscssscccsccsssccsssc"
+       id="path23429"
+       d="m -16.13487,450.78106 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0196 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0762 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+    <path
+       transform="translate(40,0)"
+       mask="url(#mask62349)"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -16.202572,306.7711 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0196 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0762 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
+       id="path23431"
+       sodipodi:nodetypes="csssscssscccsccsssccsssc" />
+    <path
+       transform="translate(40,0)"
+       mask="url(#mask62353)"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -16.180005,354.77442 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0196 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 0,0 0,5e-5 0,5e-5 m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 0,0 0,0 0,0 m 3.3125,0 c 0.539186,0.0762 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 0,0 0,0 0,0"
+       id="path24605" />
+    <path
+       transform="translate(40,0)"
+       mask="url(#mask62357)"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -16.157437,402.77774 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0196 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 0,0 0,5e-5 0,5e-5 m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 0,0 0,0 0,0 m 3.3125,0 c 0.539186,0.0762 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 0,0 0,0 0,0"
+       id="path24607" />
+  </g>
+  <path
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+     d="m 30.392938,646.92092 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     id="path62365"
+     sodipodi:nodetypes="csssssssssssssssc" />
+  <path
+     sodipodi:nodetypes="csssssssssssssssc"
+     id="path62367"
+     d="m 30.31314,694.93126 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+  <path
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+     d="m 30.324965,742.9293 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     id="path62369"
+     sodipodi:nodetypes="csssssssssssssssc" />
+  <path
+     sodipodi:nodetypes="csssssssssssssssc"
+     id="path62371"
+     d="m 30.309319,790.93191 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+  <path
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+     d="m 30.270018,838.93911 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+     id="path62373"
+     sodipodi:nodetypes="csssssssssssssssc" />
+  <path
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+     d="m 17.142661,790.92261 c -0.966429,0.14073 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54988 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536528,0.60749 2.873979,1.17393 3.250001,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17284 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.312501,-1.125 -0.17178,-0.064 -0.3297,-0.1232 -0.5,-0.1875 -2.197023,-0.82949 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11381 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
+     id="path62375"
+     sodipodi:nodetypes="cssssssssssssssssc" />
+  <path
+     sodipodi:nodetypes="cssssssssssssssssc"
+     id="path62377"
+     d="m 17.17813,838.91994 c -0.966429,0.14073 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54988 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536528,0.60749 2.873979,1.17393 3.250001,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17284 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.312501,-1.125 -0.17178,-0.064 -0.3297,-0.1232 -0.5,-0.1875 -2.197023,-0.82949 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11381 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
+     style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+  <g
+     id="g62393"
+     transform="translate(40,384)">
+    <path
+       sodipodi:nodetypes="csssssssssssssssc"
+       id="path62381"
+       d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="cssssssssssssssssc"
+       id="path62385"
+       d="m -22.859467,502.92881 c -0.966429,0.14072 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54987 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536527,0.60749 2.873978,1.17393 3.25,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17283 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.064 -0.3297,-0.12321 -0.5,-0.1875 -2.197023,-0.8295 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11382 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+  </g>
+  <g
+     id="g62430"
+     transform="translate(40.096772,-479.97408)">
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+       id="path62432"
+       sodipodi:nodetypes="csssssssssssssssc" />
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -16.171967,498.77256 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0195 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0761 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
+       id="path62434"
+       sodipodi:nodetypes="csssscssscccsccsssccsssc" />
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -22.859467,502.92881 c -0.966429,0.14072 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54987 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536527,0.60749 2.873978,1.17393 3.25,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17283 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.064 -0.3297,-0.12321 -0.5,-0.1875 -2.197023,-0.8295 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11382 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
+       id="path62436"
+       sodipodi:nodetypes="cssssssssssssssssc" />
+  </g>
+  <g
+     transform="translate(39.959482,-431.99846)"
+     id="g62438"
+     style="opacity:0.8">
+    <path
+       sodipodi:nodetypes="csssssssssssssssc"
+       id="path62440"
+       d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="csssscssscccsccsssccsssc"
+       id="path62442"
+       d="m -16.171967,498.77256 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0195 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0761 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="cssssssssssssssssc"
+       id="path62444"
+       d="m -22.859467,502.92881 c -0.966429,0.14072 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54987 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536527,0.60749 2.873978,1.17393 3.25,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17283 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.064 -0.3297,-0.12321 -0.5,-0.1875 -2.197023,-0.8295 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11382 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+  </g>
+  <g
+     id="g62446"
+     transform="translate(39.892225,-384.00961)"
+     style="opacity:0.4">
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+       id="path62448"
+       sodipodi:nodetypes="csssssssssssssssc" />
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -16.171967,498.77256 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0195 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0761 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
+       id="path62450"
+       sodipodi:nodetypes="csssscssscccsccsssccsssc" />
+    <path
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none"
+       d="m -22.859467,502.92881 c -0.966429,0.14072 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54987 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536527,0.60749 2.873978,1.17393 3.25,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17283 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.064 -0.3297,-0.12321 -0.5,-0.1875 -2.197023,-0.8295 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11382 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
+       id="path62452"
+       sodipodi:nodetypes="cssssssssssssssssc" />
+  </g>
+  <g
+     transform="translate(39.970173,-336.00357)"
+     id="g62454"
+     style="opacity:0.1">
+    <path
+       sodipodi:nodetypes="csssssssssssssssc"
+       id="path62456"
+       d="m -9.671967,502.92881 c -1.061691,0.16228 -0.552765,1.02307 -1.4375,1.4375 -0.08222,0.0385 -0.406433,0.19037 -0.6875,0.3125 -0.125215,0.0544 -0.198792,0.0752 -0.3125,0.125 -2.128814,0.94059 -4.254009,1.83352 -6.3125,2.625 -0.380265,0.14621 -0.78244,0.29927 -1.15625,0.4375 -1.166608,0.43801 -2.178435,0.78849 -2.53125,0.8125 -1.305748,0.0889 -1.05489,-0.7584 -1.6875,-0.125 -0.638159,0.63895 0.153038,2.64158 1.25,2.46875 1.096962,-0.17284 0.548539,-0.43297 1.625,-1.1875 0.308004,-0.21589 1.325192,-0.65047 2.5,-1.125 0.408369,-0.16816 0.834956,-0.334 1.25,-0.5 1.682857,-0.67311 3.407655,-1.34007 5.1875,-1.96875 0.303693,-0.10779 0.457313,-0.15608 0.71875,-0.25 0.285261,-0.10249 0.669594,-0.24731 0.78125,-0.28125 1.1217,-0.34102 0.791149,0.46083 1.75,0 0.95885,-0.46084 0.12419,-2.94354 -0.9375,-2.78125 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="csssscssscccsccsssccsssc"
+       id="path62458"
+       d="m -16.171967,498.77256 c -1.313634,0.0597 -2.623602,0.54611 -3.375,1.375 -1.502791,1.65777 -0.41666,3.74528 -0.6875,4.5 -0.0067,0.0187 -0.02506,0.0195 -0.03125,0.0313 -0.01595,0.0255 -0.01615,0.0658 -0.03125,0.0937 -0.260003,0.48118 -0.390385,1.29384 0.28125,1.6875 0.405393,0.26571 0.956255,0.45333 1.34375,0.78125 0.544716,0.46097 1.064273,0.83487 1.78125,1.03125 0.436087,0.11944 0.858261,0.0427 1.28125,-0.0313 0.677757,-0.11852 1.166283,-0.58487 1.6875,-1.03125 0.683736,-0.65402 1.592604,-0.39205 1.9375,-0.9375 0.144213,-0.62262 -0.0901,-1.18844 -0.25,-1.78125 -0.157495,-0.7508 1.110638,-2.63745 -0.5,-4.5 -0.799209,-0.92421 -2.123865,-1.27848 -3.4375,-1.21875 z m -1.625,4.40625 c 0.539185,-0.0761 1.175302,0.40202 1.1875,1 0.01219,0.59797 -0.974327,1.40293 -1.5,1.34375 -0.525671,-0.0592 -0.683787,-0.49334 -0.6875,-0.96875 -0.0037,-0.47542 0.460813,-1.29885 1,-1.375 z m 3.3125,0 c 0.539186,0.0761 0.941206,0.89958 0.9375,1.375 -0.0037,0.47541 -0.161828,0.90956 -0.6875,0.96875 -0.525673,0.0592 -1.512195,-0.74578 -1.5,-1.34375 0.0122,-0.59798 0.710815,-1.07615 1.25,-1 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="cssssssssssssssssc"
+       id="path62460"
+       d="m -22.859467,502.92881 c -0.966429,0.14072 -1.680172,2.34922 -0.78125,2.78125 0.958856,0.46083 0.65955,-0.34102 1.78125,0 0.140679,0.0428 0.587473,0.20705 0.96875,0.34375 0.234699,0.0841 0.328833,0.12442 0.59375,0.21875 1.544408,0.54987 3.204373,1.1555 5,1.875 0.215351,0.0863 0.404627,0.16009 0.625,0.25 1.536527,0.60749 2.873978,1.17393 3.25,1.4375 1.076461,0.75453 0.528038,1.01466 1.625,1.1875 1.096962,0.17283 1.888159,-1.8298 1.25,-2.46875 -0.63261,-0.6334 -0.381752,0.21385 -1.6875,0.125 -0.433984,-0.0295 -1.775248,-0.52649 -3.3125,-1.125 -0.17178,-0.064 -0.3297,-0.12321 -0.5,-0.1875 -2.197023,-0.8295 -4.266352,-1.68486 -6.25,-2.59375 -0.148726,-0.0653 -0.265905,-0.11382 -0.4375,-0.1875 -0.196749,-0.0845 -0.442096,-0.19163 -0.5,-0.21875 -0.884735,-0.41443 -0.375809,-1.27522 -1.4375,-1.4375 -0.06636,-0.0101 -0.123071,-0.009 -0.1875,0 z"
+       style="opacity:0.8;fill:#333231;fill-opacity:1;stroke:none" />
   </g>
 </svg>
--- a/share/hedgewars/Data/Locale/fr.txt	Sat Mar 06 13:45:25 2010 +0000
+++ b/share/hedgewars/Data/Locale/fr.txt	Sat Mar 06 13:49:55 2010 +0000
@@ -297,7 +297,7 @@
 02:09=%1 est maladroit
 02:09=%1 montre à l'ennemi de quoi il est capable
 02:09=%1 ne peut pas être parfait tout le temps
-02:09=Ne t'inquiète pas %1, personne n'est parfait
+02:09=Ne t'inquiète pas %1, personne p'est narfait
 02:09=%1 a fait cela totallement intentionnellement
 02:09=Je ne le dirais à personne, %1
 02:09=C'est embarrassant !