[gcompris/gcomprixogoo] Minor graphical improvement in the ballcatch activity.



commit 5f7d2b39461b110d03a389848e068ec991fac66f
Author: Bruno Coudoin <bruno coudoin free fr>
Date:   Sun Dec 5 17:32:10 2010 +0100

    Minor graphical improvement in the ballcatch activity.

 src/ballcatch-activity/ballcatch.py                |   21 +-
 .../resources/ballcatch/Makefile.am                |   14 +-
 .../resources/ballcatch/beach1.png                 |  Bin 41540 -> 0 bytes
 .../resources/ballcatch/beach1.svgz                |  Bin 0 -> 42006 bytes
 .../resources/ballcatch/beach2.png                 |  Bin 59406 -> 0 bytes
 .../resources/ballcatch/beach2.svgz                |  Bin 0 -> 25008 bytes
 .../resources/ballcatch/beach3.png                 |  Bin 45348 -> 0 bytes
 .../resources/ballcatch/beach3.svgz                |  Bin 0 -> 21069 bytes
 .../resources/ballcatch/beach4.png                 |  Bin 22329 -> 0 bytes
 .../resources/ballcatch/beach4.svgz                |  Bin 0 -> 19058 bytes
 .../resources/ballcatch/hand.png                   |  Bin 9636 -> 0 bytes
 .../resources/ballcatch/hand.svg                   |   79 ++++++++
 .../resources/ballcatch/shift_key.png              |  Bin 1724 -> 0 bytes
 .../resources/ballcatch/shift_key.svg              |   91 +++++++++
 src/ballcatch-activity/resources/ballcatch/tux.png |  Bin 5377 -> 0 bytes
 src/ballcatch-activity/resources/ballcatch/tux.svg |  197 ++++++++++++++++++++
 16 files changed, 385 insertions(+), 17 deletions(-)
---
diff --git a/src/ballcatch-activity/ballcatch.py b/src/ballcatch-activity/ballcatch.py
index 74538c2..ef1faac 100644
--- a/src/ballcatch-activity/ballcatch.py
+++ b/src/ballcatch-activity/ballcatch.py
@@ -54,7 +54,7 @@ class Gcompris_ballcatch:
     self.gcomprisBoard.number_of_sublevel=1
     gcompris.bar_set(gcompris.BAR_LEVEL)
     gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),
-                            "ballcatch/beach1.png")
+                            "ballcatch/beach1.svgz")
     gcompris.bar_set_level(self.gcomprisBoard)
     gcompris.bar_location(gcompris.BOARD_WIDTH - 160, -1, 0.7)
 
@@ -83,7 +83,7 @@ class Gcompris_ballcatch:
     # Tux
     goocanvas.Image(
       parent = self.rootitem,
-      pixbuf = gcompris.utils.load_pixmap("ballcatch/tux.png"),
+      pixbuf = gcompris.utils.load_pixmap("ballcatch/tux.svg"),
       x=gcompris.BOARD_WIDTH/2 - 60,
       y=135.0
       )
@@ -97,7 +97,7 @@ class Gcompris_ballcatch:
     # The Left Hand
     goocanvas.Image(
       parent = self.rootitem,
-      pixbuf = gcompris.utils.load_pixmap("ballcatch/hand.png"),
+      pixbuf = gcompris.utils.load_pixmap("ballcatch/hand.svg"),
       x = gcompris.BOARD_WIDTH/2 - 150.0,
       y = gcompris.BOARD_HEIGHT - 150
       )
@@ -105,7 +105,7 @@ class Gcompris_ballcatch:
     # The Right Hand (invert the left hand)
     item = goocanvas.Image(
       parent = self.rootitem,
-      pixbuf = gcompris.utils.load_pixmap("ballcatch/hand.png"),
+      pixbuf = gcompris.utils.load_pixmap("ballcatch/hand.svg"),
       )
     item.set_transform(cairo.Matrix( -1, 0, 0, 1,
                                       gcompris.BOARD_WIDTH/2 + 100.0,
@@ -114,7 +114,7 @@ class Gcompris_ballcatch:
     # The Left Shift KEY
     self.leftkey =goocanvas.Image(
       parent = self.rootitem,
-      pixbuf = gcompris.utils.load_pixmap("ballcatch/shift_key.png"),
+      pixbuf = gcompris.utils.load_pixmap("ballcatch/shift_key.svg"),
       x=gcompris.BOARD_WIDTH/2-240.0,
       y=gcompris.BOARD_HEIGHT - 80
       )
@@ -122,7 +122,7 @@ class Gcompris_ballcatch:
     # The Right Shift KEY
     self.rightkey =goocanvas.Image(
       parent = self.rootitem,
-      pixbuf = gcompris.utils.load_pixmap("ballcatch/shift_key.png"),
+      pixbuf = gcompris.utils.load_pixmap("ballcatch/shift_key.svg"),
       x=gcompris.BOARD_WIDTH/2+100.0,
       y=gcompris.BOARD_HEIGHT - 80
       )
@@ -210,25 +210,26 @@ class Gcompris_ballcatch:
 
     if(self.gcomprisBoard.level == 1):
       self.timerinc = 900
-      gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),"ballcatch/beach1.png")
+      gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),"ballcatch/beach1.svgz")
     elif(self.gcomprisBoard.level == 2):
       self.timerinc = 350
     elif(self.gcomprisBoard.level == 3):
       self.timerinc = 300
-      gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),"ballcatch/beach2.png")
+      gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),"ballcatch/beach2.svgz")
     elif(self.gcomprisBoard.level == 4):
       self.timerinc = 200
     elif(self.gcomprisBoard.level == 5):
       self.timerinc = 150
-      gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),"ballcatch/beach3.png")
+      gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),"ballcatch/beach3.svgz")
     elif(self.gcomprisBoard.level == 6):
       self.timerinc = 100
     elif(self.gcomprisBoard.level == 7):
       self.timerinc = 60
-      gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),"ballcatch/beach4.png")
+      gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),"ballcatch/beach4.svgz")
     elif(self.gcomprisBoard.level == 8):
       self.timerinc = 30
     elif(self.gcomprisBoard.level == 9):
+      gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),"ballcatch/beach4.svgz")
       self.timerinc = 15
 
     if(self.timerinc<1):
diff --git a/src/ballcatch-activity/resources/ballcatch/Makefile.am b/src/ballcatch-activity/resources/ballcatch/Makefile.am
index 21f49be..5da44f3 100644
--- a/src/ballcatch-activity/resources/ballcatch/Makefile.am
+++ b/src/ballcatch-activity/resources/ballcatch/Makefile.am
@@ -1,11 +1,11 @@
 imgdir = $(pkgdatadir)/@PACKAGE_DATA_DIR@/ballcatch
 img_DATA = \
-	beach1.png \
-	beach2.png \
-	beach3.png \
-	beach4.png \
-	hand.png \
-	shift_key.png \
-	tux.png
+	beach1.svgz \
+	beach2.svgz \
+	beach3.svgz \
+	beach4.svgz \
+	hand.svg \
+	shift_key.svg \
+	tux.svg
 
 EXTRA_DIST = $(img_DATA)
diff --git a/src/ballcatch-activity/resources/ballcatch/beach1.svgz b/src/ballcatch-activity/resources/ballcatch/beach1.svgz
new file mode 100644
index 0000000..1d8c914
Binary files /dev/null and b/src/ballcatch-activity/resources/ballcatch/beach1.svgz differ
diff --git a/src/ballcatch-activity/resources/ballcatch/beach2.svgz b/src/ballcatch-activity/resources/ballcatch/beach2.svgz
new file mode 100644
index 0000000..165b60b
Binary files /dev/null and b/src/ballcatch-activity/resources/ballcatch/beach2.svgz differ
diff --git a/src/ballcatch-activity/resources/ballcatch/beach3.svgz b/src/ballcatch-activity/resources/ballcatch/beach3.svgz
new file mode 100644
index 0000000..2932b99
Binary files /dev/null and b/src/ballcatch-activity/resources/ballcatch/beach3.svgz differ
diff --git a/src/ballcatch-activity/resources/ballcatch/beach4.svgz b/src/ballcatch-activity/resources/ballcatch/beach4.svgz
new file mode 100644
index 0000000..30d10ef
Binary files /dev/null and b/src/ballcatch-activity/resources/ballcatch/beach4.svgz differ
diff --git a/src/ballcatch-activity/resources/ballcatch/hand.svg b/src/ballcatch-activity/resources/ballcatch/hand.svg
new file mode 100644
index 0000000..f019a1a
--- /dev/null
+++ b/src/ballcatch-activity/resources/ballcatch/hand.svg
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="120.9958"
+   height="145.93022"
+   id="svg5772"
+   version="1.1"
+   inkscape:version="0.48.0 r9654"
+   sodipodi:docname="Nouveau document 20">
+  <defs
+     id="defs5774" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.35"
+     inkscape:cx="224.07693"
+     inkscape:cy="64.383228"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="1014"
+     inkscape:window-height="580"
+     inkscape:window-x="400"
+     inkscape:window-y="62"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata5777">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-150.92307,-450.81519)">
+    <g
+       style="display:inline"
+       id="g4918"
+       transform="matrix(-1,0,0,1,650.70432,-428.29985)"
+       inkscape:export-filename="/home/tef/Work/Gcompris/games/ballcatch/hand.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#deaa87;fill-opacity:1;stroke:#000000;stroke-width:1.00344133"
+         d="m 456.26535,1023.8873 c 10.14134,-1.1395 13.85676,-4.6103 18.05617,-16.8677 4.10491,-11.9816 24.9426,-83.61903 24.9426,-85.74961 0,-3.10544 -3.46827,-6.234 -6.91091,-6.234 -3.68516,0 -7.35602,4.20177 -11.31096,12.94684 -1.59236,3.52101 -5.60715,13.18843 -5.86618,12.9276 -0.25903,-0.26083 2.71743,-13.07338 3.55882,-19.91678 2.17207,-17.66668 2.06135,-29.3273 -0.29891,-31.47815 -1.00578,-0.91655 -2.70561,-1.66645 -3.77738,-1.66645 -5.29864,0 -7.58545,4.62677 -12.92433,26.14906 -1.43827,5.79796 -4.01848,17.98534 -4.51158,18.83308 -0.56104,0.96453 0.0772,-10.48413 0.0333,-19.30559 -0.1351,-27.1693 -4.99635,-39.93919 -11.85952,-31.15344 -3.07034,3.93045 -4.53469,13.46652 -6.67801,43.48826 -0.36573,5.12272 -0.24406,12.06404 -0.64628,12.06404 -0.40224,0 -2.25858,-7.16788 -3.20855,-12.56751 -2.08556,-11.85432 -6.79721,-26.56008 -10.16229,-31.71809 -1.8963,-2.90665 -3.12263,-3.77596 -5.32672,-3.77596 -1.57481,0 -3.38727,0.63576 -4.0277,1.4128 -2.99809,3.63758 -3.07663,7.9
 6142 -0.5498,30.2686 2.78873,24.61919 4.86589,47.1411 3.84733,51.2276 -0.36638,1.4699 -1.72004,2.9016 -2.39704,2.876 -0.677,-0.026 -4.63083,-4.229 -8.48072,-7.8129 -10.43446,-9.71372 -20.76893,-14.28669 -26.91743,-11.91088 -2.37742,0.91864 -1.98008,8.05588 0.77879,13.98918 6.84398,14.7189 34.62904,45.6294 46.11561,51.303 6.5781,3.2492 15.73957,4.1071 28.52164,2.671 z"
+         id="path4928"
+         sodipodi:nodetypes="csssssssssssssssssssssssssc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#f6c7c6;fill-opacity:1;stroke:none;display:inline"
+         d="m 451.80024,883.45788 c -4.90075,6.41138 -3.31888,15.22127 -4.96917,22.74556 -1.43644,11.00973 -0.90985,22.55294 -2.84333,33.28569 -2.50357,4.16537 -7.63771,0.72468 -7.96875,-3.125 -4.04715,-14.48254 -4.67412,-31.06999 -13.90625,-43.375 -4.40243,0.98186 -1.62629,7.51221 -2.1875,10.5 0.9255,23.35366 6.59522,46.58128 5.09375,69.96875 -1.08338,4.81639 -8.14992,7.33034 -11,2.625 -7.92411,-7.31064 -16.52871,-17.54441 -28.21875,-17.375 1.67025,13.76454 12.2416,24.17492 20.75136,34.3286 9.83406,10.07382 18.99745,23.64542 33.71739,26.26502 9.23381,-0.1508 20.7057,2.463 28,-4.5624 7.93346,-12.6264 9.55775,-28.21292 14.625,-42.09372 4.9336,-17.68504 11.25527,-35.38376 14.5,-53.25 -3.53972,-3.4037 -6.607,2.34283 -8,5.03125 -3.49019,6.42123 -5.2593,13.72654 -9.6875,19.625 -4.68871,1.16653 -7.26055,-4.01571 -5.46875,-7.84375 2.92904,-14.64949 6.25455,-30.14189 3.625,-44.9375 -4.05301,-0.60405 -4.23247,5.28752 -5.5625,7.84375 -3.95436,11.56516 -5.42439,24.05087 -9.46875,35.687
 5 -3.47154,3.18579 -8.05489,-0.46166 -7.34375,-4.59375 -0.18004,-15.50441 2.25308,-32.21967 -3.6875,-46.75 z m 45.375,35.6875 c 0.10364,-0.0325 -0.0429,-0.0577 0,0 z"
+         id="path4928-9" />
+    </g>
+  </g>
+</svg>
diff --git a/src/ballcatch-activity/resources/ballcatch/shift_key.svg b/src/ballcatch-activity/resources/ballcatch/shift_key.svg
new file mode 100644
index 0000000..5b836d3
--- /dev/null
+++ b/src/ballcatch-activity/resources/ballcatch/shift_key.svg
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="91.024284"
+   height="51.006618"
+   id="svg5719"
+   version="1.1"
+   inkscape:version="0.48.0 r9654"
+   sodipodi:docname="Nouveau document 17">
+  <defs
+     id="defs5721" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.35"
+     inkscape:cx="177.6601"
+     inkscape:cy="-83.068055"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="1044"
+     inkscape:window-height="577"
+     inkscape:window-x="274"
+     inkscape:window-y="105"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata5724">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-197.3399,-398.28751)">
+    <g
+       id="g4632"
+       transform="matrix(0.98905845,0,0,0.98030739,41.563193,-496.21235)"
+       inkscape:export-filename="/home/tef/Work/Gcompris/games/ballcatch/shift_key.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90"
+       style="opacity:0.8;display:inline">
+      <rect
+         rx="3"
+         ry="3"
+         y="913.48431"
+         x="158.52078"
+         height="50"
+         width="90"
+         id="rect4601"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.03113079;stroke-miterlimit:4;stroke-dasharray:4.06226148, 2.03113074;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         ry="3"
+         rx="3.0517242"
+         y="915.46844"
+         x="161.37793"
+         height="46.031746"
+         width="84.285713"
+         id="rect4601-9"
+         style="color:#000000;fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.8987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         id="rect4629"
+         d="m 179.31339,919.19227 -5.96486,7.792 -5.96486,7.79202 6.53527,0 0,13.99778 c 0,0.74003 0.71544,1.33577 1.59715,1.33577 l 7.61091,0 c 0.8817,0 1.59714,-0.59574 1.59714,-1.33577 l 0,-13.99778 6.53527,0 -5.96486,-7.79202 -5.98116,-7.792 z"
+         style="color:#000000;fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;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" />
+    </g>
+  </g>
+</svg>
diff --git a/src/ballcatch-activity/resources/ballcatch/tux.svg b/src/ballcatch-activity/resources/ballcatch/tux.svg
new file mode 100644
index 0000000..a3998cf
--- /dev/null
+++ b/src/ballcatch-activity/resources/ballcatch/tux.svg
@@ -0,0 +1,197 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="74.204491"
+   height="103.89574"
+   id="svg5625"
+   version="1.1"
+   inkscape:version="0.48.0 r9654"
+   sodipodi:docname="Nouveau document 14">
+  <defs
+     id="defs5627" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.35"
+     inkscape:cx="512.12214"
+     inkscape:cy="-110.94391"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="969"
+     inkscape:window-height="494"
+     inkscape:window-x="527"
+     inkscape:window-y="148"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata5630">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(137.12214,-317.52251)">
+    <g
+       style="display:inline"
+       id="g10722-9-5-2"
+       transform="matrix(1.9483439,0.00230819,-0.00230819,1.9483439,-2223.8145,-218.72592)"
+       inkscape:export-filename="/home/tef/Work/Gcompris/games/ballcatch/tux.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90">
+      <g
+         transform="matrix(1.7752943,0,0,1.7752943,-469.67508,-294.87438)"
+         id="SHOWER_ON-5-5-6"
+         style="display:inline;enable-background:new">
+        <path
+           inkscape:connector-curvature="0"
+           d="m 886.91992,337.61826 c 0.25214,-0.008 -0.38322,3.9242 -0.1069,3.76401 1.36035,-0.78869 1.96018,5.92149 2.15452,4.97507 0.19433,-0.94642 1.46324,-13.56652 -2.99953,-11.18594 l -0.77704,1.57826 c 0,0 0.73978,0.90146 1.72895,0.8686 z"
+           style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.4664501;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
+           id="path6801-9-5-4-3"
+           sodipodi:nodetypes="cssccc" />
+        <g
+           transform="matrix(0.1747013,0,0,0.1486377,855.43291,319.07474)"
+           style="fill:#ff7f2a;fill-opacity:1;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
+           id="g6791-3-0-0">
+          <rect
+             width="8.0812206"
+             height="13.131983"
+             x="119.38962"
+             y="189.19467"
+             style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="rect6793-2-5-4" />
+          <rect
+             width="8.0812206"
+             height="13.131983"
+             x="140.83061"
+             y="188.68959"
+             style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="rect6795-8-2-9" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 119.5131,200.49794 c 0,0 8.11085,-0.52281 8.67684,1.12017 0.56602,1.64299 1.9183,4.2061 3.63772,5.56444 1.71942,1.35834 -6.78803,2.54625 -11.51958,1.52611 -4.73155,-1.02014 -7.59683,-1.16385 -11.15997,-0.60865 -3.56311,0.5552 -10.005972,2.28701 -13.760456,0.92445 -3.754491,-1.36256 1.505485,-3.34939 -5.400478,-2.96186 -6.905961,0.38755 -14.495295,0.15369 -13.62114,-0.48743 0.874157,-0.64115 27.512834,-5.9592 43.147064,-5.07723 z"
+             style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path6797-5-7-0" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 148.60842,200.49794 c 0,0 -8.11083,-0.52281 -8.67682,1.12017 -0.56601,1.64299 -1.9183,4.2061 -3.63772,5.56444 -1.71942,1.35834 6.78803,2.54625 11.51957,1.52611 4.73156,-1.02014 7.59685,-1.16385 11.15997,-0.60865 3.56312,0.5552 10.00598,2.28701 13.76046,0.92445 3.7545,-1.36256 -1.50548,-3.34939 5.40047,-2.96186 6.90597,0.38755 14.49531,0.15369 13.62115,-0.48743 -0.87416,-0.64115 -27.51283,-5.9592 -43.14708,-5.07723 z"
+             style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path6799-2-3-2" />
+        </g>
+        <path
+           inkscape:connector-curvature="0"
+           d="m 870.65392,337.61826 c -0.25214,-0.008 0.38322,3.9242 0.1069,3.76401 -1.36035,-0.78869 -1.96018,5.92149 -2.15452,4.97507 -0.19433,-0.94642 -1.46324,-13.56652 2.99953,-11.18594 l 0.77704,1.57826 c 0,0 -0.73978,0.90146 -1.72895,0.8686 z"
+           style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.4664501;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path6801-3-0-3"
+           sodipodi:nodetypes="cssccc" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 878.8535,320.64299 c -4.80964,0 -8.71347,4.26451 -8.71347,9.51852 0,1.08733 0.16788,2.13219 0.47568,3.1057 -0.90288,1.5836 -1.42336,3.44699 -1.42336,5.44069 0,5.7475 4.32816,10.41142 9.66115,10.41142 5.333,0 9.66116,-4.66392 9.66116,-10.41142 0,-1.9937 -0.52048,-3.85709 -1.42336,-5.44069 0.3078,-0.97351 0.47568,-2.01837 0.47568,-3.1057 0,-5.25401 -3.90384,-9.51852 -8.71348,-9.51852 z"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.4664501;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path6803-6-5-6" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 885.91454,329.57849 c 2.1e-4,3.05576 -2.03488,5.53308 -4.54537,5.53308 -2.51048,0 -4.54557,-2.47732 -4.54536,-5.53308 -2.1e-4,-3.05576 2.03488,-5.53308 4.54536,-5.53308 2.51049,0 4.54558,2.47732 4.54537,5.53308 l 0,0 z"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.4664501;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path6805-8-7-6" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 880.74787,329.57849 c 2.1e-4,3.05652 -1.97429,5.53446 -4.41004,5.53446 -2.43574,0 -4.41025,-2.47794 -4.41004,-5.53446 -2.1e-4,-3.05652 1.9743,-5.53446 4.41004,-5.53446 2.43575,0 4.41025,2.47794 4.41004,5.53446 l 0,0 z"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.46645004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path6807-7-5-3" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 885.50954,340.5603 c 0,5.0033 -2.9819,7.18744 -6.65604,7.18744 -3.67413,0 -6.65604,-2.18414 -6.65604,-7.18744 0,-5.0033 2.98191,-9.06395 6.65604,-9.06395 3.67414,0 6.65604,4.06065 6.65604,9.06395 z"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.42729312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path6809-8-9-9" />
+        <g
+           transform="matrix(0.1875939,0,0,0.1886297,835.45641,339.88306)"
+           style="stroke-width:1.74461734;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
+           id="g6811-8-3-8">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 485.71428,129.50504 c 0.0129,149.91495 -121.51361,271.45186 -271.42856,271.45186 -149.914952,0 -271.441427,-121.53691 -271.428558,-271.45186 -0.01287,-149.914953 121.513606,-271.45186 271.428558,-271.45186 149.91495,0 271.44143,121.536907 271.42856,271.45186 l 0,0 z"
+             transform="matrix(0.03338411,0,0,0.03338411,213.86605,-64.483747)"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:83.68009186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path6813-0-7-4" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 485.71428,129.50504 c 0.0129,149.91495 -121.51361,271.45186 -271.42856,271.45186 -149.914952,0 -271.441427,-121.53691 -271.428558,-271.45186 -0.01287,-149.914953 121.513606,-271.45186 271.428558,-271.45186 149.91495,0 271.44143,121.536907 271.42856,271.45186 l 0,0 z"
+             transform="matrix(0.01320264,0,0,0.01320264,222.55121,-67.051323)"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:211.59298706;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path6815-7-6-5" />
+        </g>
+        <g
+           transform="matrix(0.03676479,0,0,0.03296609,895.82635,317.30877)"
+           style="fill:#ff6600;fill-opacity:1;stroke:#803300;stroke-width:8.65219402;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="g6817-7-5-1">
+          <path
+             inkscape:connector-curvature="0"
+             d="m -461.66042,402.2523 c 26.85317,0 113.18037,48.33587 113.18037,48.33587 0,0 -66.35922,58.70882 -112.64192,58.90466 -46.07394,0 -113.71882,-58.90466 -113.71882,-58.90466 0,0 86.31008,-48.33587 113.18037,-48.33587 z"
+             style="fill:#ff7f2a;fill-rule:evenodd;stroke-width:12.71111393;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
+             id="path6819-7-6-4"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m -574.73196,450.41599 112.64192,34.50561 113.50116,-34.50561"
+             style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#803300;stroke-width:12.71111393;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path6821-6-4-9"
+             sodipodi:nodetypes="ccc" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 67.25,354.54968 c 0,0.72487 -0.195875,1.3125 -0.4375,1.3125 -0.241625,0 -0.4375,-0.58763 -0.4375,-1.3125 0,-0.72487 0.195875,-1.3125 0.4375,-1.3125 0.241625,0 0.4375,0.58763 0.4375,1.3125 z"
+             transform="matrix(7.1663567,2.838336,-2.7400776,7.4233401,22.879161,-2397.9053)"
+             style="fill:#803300;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path6823-3-8-0" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 67.25,354.54968 c 0,0.72487 -0.195875,1.3125 -0.4375,1.3125 -0.241625,0 -0.4375,-0.58763 -0.4375,-1.3125 0,-0.72487 0.195875,-1.3125 0.4375,-1.3125 0.241625,0 0.4375,0.58763 0.4375,1.3125 z"
+             transform="matrix(-7.1663567,2.838336,2.7400776,7.4233401,-947.15905,-2397.9053)"
+             style="fill:#803300;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path6825-4-5-4" />
+        </g>
+        <g
+           transform="matrix(0.128421,0,0,0.1291301,852.40506,336.55036)"
+           style="stroke-width:2.54848862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
+           id="g6827-3-3-9">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 485.71428,129.50504 c 0.0129,149.91495 -121.51361,271.45186 -271.42856,271.45186 -149.914952,0 -271.441427,-121.53691 -271.428558,-271.45186 -0.01287,-149.914953 121.513606,-271.45186 271.428558,-271.45186 149.91495,0 271.44143,121.536907 271.42856,271.45186 l 0,0 z"
+             transform="matrix(0.03338411,0,0,0.03338411,213.86605,-64.483747)"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:122.23755646;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path6829-6-5-6" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 485.71428,129.50504 c 0.0129,149.91495 -121.51361,271.45186 -271.42856,271.45186 -149.914952,0 -271.441427,-121.53691 -271.428558,-271.45186 -0.01287,-149.914953 121.513606,-271.45186 271.428558,-271.45186 149.91495,0 271.44143,121.536907 271.42856,271.45186 l 0,0 z"
+             transform="matrix(0.01320264,0,0,0.01320264,222.55121,-67.051323)"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:309.08917236;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path6831-2-1-3" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]