changeset 410:d7bd9adb105a

Sheep! (And refactoring!)
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 07 Sep 2013 12:33:35 +0200
parents 180c27514619
children ddff1f8668d5
files data/images/creatures/alien_sheep_1.png data/images/creatures/alien_sheep_2.png data/images/creatures/sheep_1.png data/images/creatures/sheep_2.png data/levels/start nagslang/constants.py nagslang/enemies.py source/images/creatures/alien_sheep_1.svg source/images/creatures/alien_sheep_2.svg source/images/creatures/sheep_1.svg source/images/creatures/sheep_2.svg
diffstat 11 files changed, 1492 insertions(+), 1479 deletions(-) [+]
line wrap: on
line diff
Binary file data/images/creatures/alien_sheep_1.png has changed
Binary file data/images/creatures/alien_sheep_2.png has changed
Binary file data/images/creatures/sheep_1.png has changed
Binary file data/images/creatures/sheep_2.png has changed
--- a/data/levels/start	Sat Sep 07 11:21:54 2013 +0200
+++ b/data/levels/start	Sat Sep 07 12:33:35 2013 +0200
@@ -1,5 +1,8 @@
 base_tile: tiles/floor.png
-enemies: []
+enemies:
+- args:
+  - [300, 300]
+  classname: Sheep
 game_objects:
 - args:
   - [725, 300]
--- a/nagslang/constants.py	Sat Sep 07 11:21:54 2013 +0200
+++ b/nagslang/constants.py	Sat Sep 07 12:33:35 2013 +0200
@@ -24,6 +24,7 @@
 COLLISION_TYPE_DOOR = 6
 COLLISION_TYPE_PROJECTILE = 7
 COLLISION_TYPE_WEREWOLF_ATTACK = 8
+COLLISION_TYPE_SHEEP = 9
 
 SWITCH_PUSHERS = [COLLISION_TYPE_PLAYER, COLLISION_TYPE_FURNITURE]
 
@@ -34,6 +35,7 @@
     COLLISION_TYPE_FURNITURE,
     COLLISION_TYPE_ENEMY,
     COLLISION_TYPE_DOOR,
+    COLLISION_TYPE_SHEEP,
 ]
 
 NON_GAME_OBJECT_COLLIDERS = [
--- a/nagslang/enemies.py	Sat Sep 07 11:21:54 2013 +0200
+++ b/nagslang/enemies.py	Sat Sep 07 12:33:35 2013 +0200
@@ -5,8 +5,9 @@
 import pymunk.pygame_util
 
 from nagslang import render
-from nagslang.constants import (COLLISION_TYPE_ENEMY, COLLISION_TYPE_FURNITURE,
-                                ACID_SPEED, ACID_DAMAGE, ZORDER_MID)
+from nagslang.constants import (
+    COLLISION_TYPE_ENEMY, COLLISION_TYPE_FURNITURE, COLLISION_TYPE_SHEEP,
+    ACID_SPEED, ACID_DAMAGE, ZORDER_MID)
 from nagslang.game_object import (GameObject, SingleShapePhysicser, Result,
                                   Bullet, make_body)
 from nagslang.mutators import FLIP_H
@@ -35,12 +36,15 @@
     enemy_damage = None
     health = None
     impulse_factor = None
+    random_move_time = 0.3
 
     def __init__(self, space, world, position):
         super(Enemy, self).__init__(
             self.make_physics(space, position), self.make_renderer())
         self.world = world
         self.angle = 0
+        self.add_timer('random_move', self.random_move_time)
+        self._last_random_direction = (0, 0)
 
     def make_physics(self, space, position):
         raise NotImplementedError
@@ -55,12 +59,16 @@
                  get_alien_image(self.enemy_type, '2', FLIP_H)], 3),
         })
 
-    def attack(self):
-        raise NotImplementedError
+    def get_render_angle(self):
+        # No image rotation when rendering, please.
+        return 0
 
-    @classmethod
-    def requires(cls):
-        return [("name", "string"), ("position", "coordinates")]
+    def get_facing_direction(self):
+        # Enemies can face left or right.
+        if - math.pi / 2 < self.angle <= math.pi / 2:
+            return 'right'
+        else:
+            return 'left'
 
     def hit(self, weapon):
         self.lose_health(weapon.damage)
@@ -101,14 +109,10 @@
             return None
         return target - pos
 
-    def ranged_attack(self, range_, speed, damage, type_, reload_time,
-                      result=None):
-        if result is None:
-            result = Result()
-
+    def ranged_attack(self, range_, speed, damage, type_, reload_time, result):
         vec = self.range_to_visible_protagonist()
         if vec is None:
-            return result
+            return
 
         if not self.check_timer('reload_time'):
             self.start_timer('reload_time', reload_time)
@@ -117,7 +121,6 @@
                 result.add += (Bullet(
                     self.get_space(), self.physicser.position, vec, damage,
                     type_, COLLISION_TYPE_ENEMY),)
-        return result
 
     def greedy_move(self, target):
         """Simple greedy path finder"""
@@ -135,9 +138,17 @@
 
     def random_move(self):
         """Random move"""
-        x_step = random.choice([-1, 0, 1])
-        y_step = random.choice([-1, 0, 1])
-        return x_step, y_step
+        if not self.check_timer('random_move'):
+            self.start_timer('random_move')
+            self._last_random_direction = (
+                random.choice([-1, 0, 1]), random.choice([-1, 0, 1]))
+        return self._last_random_direction
+
+    def attack(self, result):
+        pass
+
+    def move(self, result):
+        pass
 
     def update(self, dt):
         super(Enemy, self).update(dt)
@@ -147,8 +158,14 @@
             result.add += (DeadEnemy(self.get_space(), self.world,
                                      self.physicser.position,
                                      self.enemy_type),)
+        self.move(result)
+        self.attack(result)
         return result
 
+    @classmethod
+    def requires(cls):
+        return [("name", "string"), ("position", "coordinates")]
+
 
 class DeadEnemy(GameObject):
     def __init__(self, space, world, position, enemy_type='A'):
@@ -190,25 +207,13 @@
         shape.collision_type = COLLISION_TYPE_ENEMY
         return SingleShapePhysicser(space, shape)
 
-    def get_render_angle(self):
-        # No image rotation when rendering, please.
-        return 0
-
-    def get_facing_direction(self):
-        # Enemies can face left or right.
-        if - math.pi / 2 < self.angle <= math.pi / 2:
-            return 'right'
-        else:
-            return 'left'
-
     def _switch_direction(self):
         if self._direction == 'away':
             self._direction = 'towards'
         else:
             self._direction = 'away'
 
-    def update(self, dt):
-        # Calculate the step every frame
+    def move(self, result):
         if self._direction == 'away':
             target = self._end_pos
         else:
@@ -217,8 +222,9 @@
         if abs(x_step) < 1 and abs(y_step) < 1:
             self._switch_direction()
         self.set_direction(x_step, y_step)
-        result = self.ranged_attack(300, ACID_SPEED, ACID_DAMAGE, 'acid', 0.2)
-        return result.merge(super(PatrollingAlien, self).update(dt))
+
+    def attack(self, result):
+        self.ranged_attack(300, ACID_SPEED, ACID_DAMAGE, 'acid', 0.2, result)
 
     @classmethod
     def requires(cls):
@@ -246,18 +252,7 @@
         shape.collision_type = COLLISION_TYPE_ENEMY
         return SingleShapePhysicser(space, shape)
 
-    def get_render_angle(self):
-        # No image rotation when rendering, please.
-        return 0
-
-    def get_facing_direction(self):
-        # Enemies can face left or right.
-        if - math.pi / 2 < self.angle <= math.pi / 2:
-            return 'right'
-        else:
-            return 'left'
-
-    def _calc_movement(self):
+    def move(self, result):
         pos = self.physicser.position
         target = self.world.protagonist.get_shape().body.position
         if pos.get_distance(target) > self._range:
@@ -266,15 +261,10 @@
             return 0, 0
         self.is_moving = True
         dx, dy = self.greedy_move(target)
-        return dx, dy
+        self.set_direction(dx, dy)
 
-    def update(self, dt):
-        # Calculate the step every frame
-        # Distance to the protagonist
-        result = self.ranged_attack(300, ACID_SPEED, ACID_DAMAGE, 'acid', 0.2)
-        dx, dy = self._calc_movement()
-        self.set_direction(dx, dy)
-        return result.merge(super(ChargingAlien, self).update(dt))
+    def attack(self, result):
+        self.ranged_attack(300, ACID_SPEED, ACID_DAMAGE, 'acid', 0.2, result)
 
     @classmethod
     def requires(cls):
@@ -288,12 +278,6 @@
     impulse_factor = 90
     is_moving = True
 
-    def __init__(self, space, world, position, attack_range=100):
-        super(RunAndGunAlien, self).__init__(space, world, position,
-                                             attack_range)
-        self.count = 0
-        self._old_move = (0, 0)
-
     def make_physics(self, space, position):
         body = make_body(10, pymunk.inf, position, 0.8)
         shape = pymunk.Circle(body, 30)
@@ -302,22 +286,46 @@
         shape.collision_type = COLLISION_TYPE_ENEMY
         return SingleShapePhysicser(space, shape)
 
-    def _calc_movement(self):
+    def move(self, result):
         pos = self.physicser.position
         target = self.world.protagonist.get_shape().body.position
         if pos.get_distance(target) < self._range:
-            if self.count > 10:
-                self._old_move = self.random_move()
-                self.count = 0
-            return self._old_move
+            step = self.random_move()
         else:
-            return self.greedy_move(target)
-
-    def update(self, dt):
-        self.count += 1
-        return super(RunAndGunAlien, self).update(dt)
+            step = self.greedy_move(target)
+        self.set_direction(*step)
 
     @classmethod
     def requires(cls):
         return [("name", "string"), ("position", "coordinates"),
                 ("attack_range", "distance")]
+
+
+class Sheep(Enemy):  # Only because we don't have a DeliciousCreature class.
+    is_moving = True  # Always walking.
+    enemy_type = 'sheep'
+    health = 10
+    impulse_factor = 50
+
+    vision_range = 100
+
+    def make_physics(self, space, position):
+        body = make_body(10, pymunk.inf, position, 0.8)
+        shape = pymunk.Circle(body, 30)
+        shape.elasticity = 1.0
+        shape.friction = 0.05
+        shape.collision_type = COLLISION_TYPE_SHEEP
+        return SingleShapePhysicser(space, shape)
+
+    def move(self, result):
+        vec = self.range_to_visible_protagonist()
+        if vec is not None and vec.length < self.vision_range:
+            # TODO: Run away! Wander towards!
+            step = (0, 0)
+        else:
+            step = self.random_move()
+        self.set_direction(*step)
+
+    @classmethod
+    def requires(cls):
+        return [("name", "string"), ("position", "coordinates")]
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/alien_sheep_1.svg	Sat Sep 07 12:33:35 2013 +0200
@@ -0,0 +1,690 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="640"
+   height="640"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="sheep_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient5449">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop5451" />
+      <stop
+         style="stop-color:#afafaf;stop-opacity:1;"
+         offset="1"
+         id="stop5453" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5252"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#00ff00;stop-opacity:1;"
+         offset="0"
+         id="stop5254" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5406">
+      <path
+         sodipodi:nodetypes="czczcczcc"
+         inkscape:connector-curvature="0"
+         id="path5408"
+         d="m 112.80237,514.7052 c 151.01971,95.79181 354.94276,86.079 472.63226,17.22791 C 703.12412,463.08204 531.11606,360.92867 502.57748,287.64739 486.40722,251.25528 560.69124,96.708859 512.86291,83.306903 465.03458,69.904948 486.04427,187.96686 408.29177,279.07596 c -31.39277,-9.17291 -61.33834,-23.41103 -100,-7.14285 C 314.64288,161.89704 367.04049,63.022021 312.16375,68.291761 257.287,73.561516 321.34743,108.24232 153.19158,275.48941 14.687972,371.82397 97.729578,465.28418 112.80237,514.7052 z"
+         style="fill:#008000;fill-opacity:1;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5412">
+      <path
+         sodipodi:nodetypes="czczcczcc"
+         inkscape:connector-curvature="0"
+         id="path5414"
+         d="m 114.87533,514.7052 c 151.0197,95.79181 354.94276,86.079 472.63225,17.22791 C 705.19708,463.08204 533.18902,360.92867 504.65044,287.64739 488.48018,251.25528 562.76419,96.708859 514.93586,83.306903 467.10754,69.904948 488.11722,187.96686 410.36473,279.07596 378.97196,269.90305 349.02639,255.66493 310.36472,271.93311 316.71583,161.89704 369.11345,63.022021 314.2367,68.291761 259.35995,73.561516 323.42038,108.24232 155.26453,275.48941 16.760926,371.82397 99.802533,465.28418 114.87533,514.7052 z"
+         style="fill:#008000;fill-opacity:1;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5620"
+       x="-0.13382125"
+       width="1.2676425"
+       y="-0.10876644"
+       height="1.2175329">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="10.715086"
+         id="feGaussianBlur5622" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5753"
+       x="-0.132"
+       width="1.264"
+       y="-0.132"
+       height="1.264">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.5"
+         id="feGaussianBlur5755" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6759"
+       x="-0.13193402"
+       width="1.263868"
+       y="-0.13206604"
+       height="1.2641321">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="24.318477"
+         id="feGaussianBlur6761" />
+    </filter>
+    <clipPath
+       id="clipPath6136"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#ff0000;fill-opacity:1;stroke:none"
+         d="m 202.85714,912.3622 c -31.69023,25.90127 -20.47849,103.9092 -20,129.9999 53.17782,10.4427 59.99621,-42.2684 110,-92.85706 -19.80837,-11.07086 -42.37619,-20.12967 -62.85715,-10 1.3308,-10.73859 -4.72034,-22.70504 -27.14285,-27.14284 z"
+         id="path6138"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+    </clipPath>
+    <filter
+       height="1.2433045"
+       y="-0.12165224"
+       width="1.2885436"
+       x="-0.14427178"
+       id="filter6130"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur6132"
+         stdDeviation="5.3243162"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath5988"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         d="m 67.197648,531.28874 c 178.795542,74.2068 334.635592,40.20518 487.142852,-1.42857 17.24069,-97.41634 2.00774,-170.53511 -82.85715,-244.28572 0.41328,-34.31917 -0.60068,-126.17251 -35.31929,-108.98516 -34.71863,17.18735 -41.64091,56.94604 -58.96641,100.41373 -31.39278,-9.17291 -61.33835,-23.41103 -100.00001,-7.14285 6.35111,-110.74178 -16.82772,-112.27274 -35.51393,-106.21307 -18.68619,6.05967 -36.13463,86.48893 -80.20036,130.49878 C 24.872276,376.38084 71.534313,481.56314 67.197648,531.28874 z"
+         id="path5990"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccczcczcc" />
+    </clipPath>
+    <clipPath
+       id="clipPath5982"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         d="m 79.635302,522.99698 c 178.795538,74.2068 334.635588,40.20518 487.142848,-1.42857 17.24069,-97.41634 2.00775,-170.53511 -82.85714,-244.28572 0.41327,-34.31917 -0.60068,-126.17251 -35.3193,-108.98516 -34.71863,17.18735 -41.64091,56.94604 -58.96641,100.41373 -31.39277,-9.17291 -61.33834,-23.41103 -100.00001,-7.14285 6.35112,-110.74178 -16.82772,-112.27274 -35.51392,-106.21307 -18.68619,6.05967 -36.13463,86.48893 -80.20036,130.49878 C 37.30993,368.08908 83.971968,473.27138 79.635302,522.99698 z"
+         id="path5984"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccczcczcc" />
+    </clipPath>
+    <clipPath
+       id="clipPath5962"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         sodipodi:type="arc"
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         id="path5964"
+         sodipodi:cx="88.571426"
+         sodipodi:cy="204.28572"
+         sodipodi:rx="67.14286"
+         sodipodi:ry="67.14286"
+         d="m 155.71429,204.28572 a 67.14286,67.14286 0 1 1 -134.285724,0 67.14286,67.14286 0 1 1 134.285724,0 z"
+         transform="matrix(0.68915165,0,0,0.68915165,65.38943,-11.49812)" />
+    </clipPath>
+    <filter
+       height="1.6"
+       y="-0.3"
+       width="1.6"
+       x="-0.3"
+       id="filter5954"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5956"
+         stdDeviation="8.3928576"
+         inkscape:collect="always" />
+    </filter>
+    <radialGradient
+       r="67.64286"
+       fy="204.28572"
+       fx="88.571426"
+       cy="204.28572"
+       cx="88.571426"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient5624"
+       xlink:href="#linearGradient5449-6"
+       inkscape:collect="always" />
+    <filter
+       height="1.3967049"
+       y="-0.19835243"
+       width="1.2571031"
+       x="-0.12855154"
+       id="filter5579"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5581"
+         stdDeviation="18.288913"
+         inkscape:collect="always" />
+    </filter>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="67.64286"
+       fy="204.28572"
+       fx="88.571426"
+       cy="204.28572"
+       cx="88.571426"
+       id="radialGradient5455"
+       xlink:href="#linearGradient5449-6"
+       inkscape:collect="always" />
+    <filter
+       height="1.2797208"
+       y="-0.13986041"
+       width="1.2813227"
+       x="-0.14066136"
+       id="filter5312"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5314"
+         stdDeviation="25.993748"
+         inkscape:collect="always" />
+    </filter>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient5252-1">
+      <stop
+         id="stop5254-1"
+         offset="0"
+         style="stop-color:#00ff00;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5449-6">
+      <stop
+         id="stop5451-4"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop5453-0"
+         offset="1"
+         style="stop-color:#afafaf;stop-opacity:1;" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6716">
+      <path
+         sodipodi:nodetypes="zzzzccczccczcczzz"
+         inkscape:connector-curvature="0"
+         id="path6718"
+         d="M 325.71429,18.57143 C 163.044,24.37537 84.571314,50.40059 74.285714,152.85715 64.000114,255.3137 170.58899,232.54124 130,265.71429 89.411004,298.88735 31.97607,342.39488 70.000004,424.28569 108.02394,506.1765 262.7612,396.90858 287.14286,395.71436 244.73216,367.87315 224.1986,335.14691 174.28571,374.28568 c 16.71573,-26.43256 14.12331,-17.19469 52.85715,-65.71425 -35.11331,61.90476 -75.87305,159.06362 24.28571,165.71426 C 351.58733,480.93633 382.74375,327.40083 400,387.14286 c 38.49137,-69.96493 -67.839,-45.27398 -95.71429,-4.28568 6.41043,-6.15456 4.15765,-13.31279 34.28572,-62.85718 -12.34298,51.81069 -44.34928,152.96376 72.85714,149.99999 117.20642,-2.96377 141.03651,-55.15176 175.71433,-29.99996 -4.71021,-40.03228 -58.16373,-65.03517 -124.28573,-44.28571 -2.3931,-22.08379 12.57374,-59.72173 17.14284,-71.42861 4.5691,-11.70684 86.1767,-60.08779 90,-142.85714 3.8233,-82.76935 -81.6154,-168.66109 -244.28572,-162.85714 z"
+         style="fill:#008000;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6722">
+      <path
+         sodipodi:nodetypes="zzzzccczccczcczzz"
+         inkscape:connector-curvature="0"
+         id="path6724"
+         d="M 325.71429,18.57143 C 163.044,24.37537 84.571314,50.40059 74.285714,152.85715 64.000114,255.3137 170.58899,232.54124 130,265.71429 89.411004,298.88735 31.97607,342.39488 70.000004,424.28569 108.02394,506.1765 262.7612,396.90858 287.14286,395.71436 244.73216,367.87315 224.1986,335.14691 174.28571,374.28568 c 16.71573,-26.43256 14.12331,-17.19469 52.85715,-65.71425 -35.11331,61.90476 -75.87305,159.06362 24.28571,165.71426 C 351.58733,480.93633 382.74375,327.40083 400,387.14286 c 38.49137,-69.96493 -67.839,-45.27398 -95.71429,-4.28568 6.41043,-6.15456 4.15765,-13.31279 34.28572,-62.85718 -12.34298,51.81069 -44.34928,152.96376 72.85714,149.99999 117.20642,-2.96377 141.03651,-55.15176 175.71433,-29.99996 -4.71021,-40.03228 -58.16373,-65.03517 -124.28573,-44.28571 -2.3931,-22.08379 12.57374,-59.72173 17.14284,-71.42861 4.5691,-11.70684 86.1767,-60.08779 90,-142.85714 3.8233,-82.76935 -81.6154,-168.66109 -244.28572,-162.85714 z"
+         style="fill:#008000;stroke:none" />
+    </clipPath>
+    <clipPath
+       id="clipPath4830"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         d="M 67.197648,531.28874 C 245.99319,605.49554 401.83324,571.49392 554.3405,529.86017 571.58119,432.44383 556.34824,359.32506 471.48335,285.57445 455.31309,249.18234 419.05911,41.244246 384.3405,58.431595 349.62187,75.618944 456.71141,190.00355 377.19765,277.00302 345.80487,267.83011 315.8593,253.59199 277.19764,269.86017 283.54875,159.11839 218.91109,33.210891 162.91192,64.145881 106.91277,95.080858 317.48796,96.738316 161.48335,294.14588 24.872276,376.38084 71.534313,481.56314 67.197648,531.28874 z"
+         id="path4832"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccczcczcc" />
+    </clipPath>
+    <clipPath
+       id="clipPath4824"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         d="M 79.635302,522.99698 C 258.43084,597.20378 414.27089,563.20216 566.77815,521.56841 584.01884,424.15207 568.7859,351.0333 483.92101,277.28269 467.75075,240.89058 431.49677,32.952486 396.77815,50.139835 362.05953,67.327184 469.14906,181.71179 389.6353,268.71126 358.24253,259.53835 328.29696,245.30023 289.63529,261.56841 295.98641,150.82663 231.34875,24.919131 175.34958,55.854122 119.35042,86.789098 329.92561,88.446556 173.92101,285.85412 37.30993,368.08908 83.971968,473.27138 79.635302,522.99698 z"
+         id="path4826"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccczcczcc" />
+    </clipPath>
+    <radialGradient
+       r="67.64286"
+       fy="204.28572"
+       fx="88.571426"
+       cy="204.28572"
+       cx="88.571426"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient5624-7"
+       xlink:href="#linearGradient5449-1"
+       inkscape:collect="always" />
+    <filter
+       height="1.3967049"
+       y="-0.19835243"
+       width="1.2571031"
+       x="-0.12855154"
+       id="filter5579-9"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5581-8"
+         stdDeviation="18.288913"
+         inkscape:collect="always" />
+    </filter>
+    <filter
+       height="1.36"
+       y="-0.18"
+       width="1.36"
+       x="-0.18"
+       id="filter5513"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5515"
+         stdDeviation="1.5"
+         inkscape:collect="always" />
+    </filter>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="67.64286"
+       fy="204.28572"
+       fx="88.571426"
+       cy="204.28572"
+       cx="88.571426"
+       id="radialGradient5455-7"
+       xlink:href="#linearGradient5449-1"
+       inkscape:collect="always" />
+    <filter
+       id="filter5337"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5339"
+         stdDeviation="0.71873615"
+         inkscape:collect="always" />
+    </filter>
+    <filter
+       height="1.2797208"
+       y="-0.13986041"
+       width="1.2813227"
+       x="-0.14066136"
+       id="filter5312-4"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5314-8"
+         stdDeviation="25.993748"
+         inkscape:collect="always" />
+    </filter>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient5252-2">
+      <stop
+         id="stop5254-2"
+         offset="0"
+         style="stop-color:#00ff00;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5449-1">
+      <stop
+         id="stop5451-0"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop5453-07"
+         offset="1"
+         style="stop-color:#afafaf;stop-opacity:1;" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter7665"
+       x="-0.11662054"
+       width="1.2332411"
+       y="-0.15205202"
+       height="1.304104">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="20.515645"
+         id="feGaussianBlur7667" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath7673">
+      <path
+         sodipodi:nodetypes="cccccccc"
+         inkscape:connector-curvature="0"
+         id="path7675"
+         d="M 123.30209,401.6877 C 72.302476,380.1212 77.308161,273.00061 177.23064,271.76893 166.5792,222.49432 279.65001,121.91456 356.17535,215.38909 c 42.70108,-93.65266 192.79142,-24.3055 140.9496,52.70289 82.6483,-35.38872 158.62874,66.40822 77.21587,132.37006 31.98764,86.11289 -66.92496,114.56422 -121.33922,95.6006 -74.42277,74.5063 -176.53636,15.02327 -180.17036,6.12824 C 161.09768,532.60565 93.990013,461.89123 123.30209,401.6877 z"
+         style="fill:#008080;stroke:none" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient7691"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient7693"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient7695"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <filter
+       inkscape:collect="always"
+       id="filter8141">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="14.513485"
+         id="feGaussianBlur8143" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8306"
+       x="-0.23365714"
+       width="1.4673143"
+       y="-0.23365714"
+       height="1.4673143">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.126531"
+         id="feGaussianBlur8308" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8310"
+       x="-0.23365714"
+       width="1.4673143"
+       y="-0.23365714"
+       height="1.4673143">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.126531"
+         id="feGaussianBlur8312" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8314"
+       x="-0.23365714"
+       width="1.4673143"
+       y="-0.23365714"
+       height="1.4673143">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.126531"
+         id="feGaussianBlur8316" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8364"
+       x="-0.12"
+       width="1.24"
+       y="-0.12"
+       height="1.24">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="18.214285"
+         id="feGaussianBlur8366" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient8387"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient8389"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient8391"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.7"
+     inkscape:cx="-97.205942"
+     inkscape:cy="325.60132"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="752"
+     inkscape:window-x="1280"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata7">
+    <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="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-412.36218)">
+    <g
+       id="g8368"
+       transform="translate(-2.3913678e-6,4.7827357e-6)">
+      <path
+         inkscape:transform-center-y="-6.8691823"
+         inkscape:transform-center-x="9.2164901"
+         transform="matrix(0.89524964,0,0,0.89524964,178.03899,568.65938)"
+         d="m 384.28571,365.71429 c -25.03186,24.25198 -69.55399,-20.92969 -95.45355,2.39338 -17.5573,15.8107 49.11927,48.01448 27.90034,58.4065 -31.30099,15.32974 -59.68214,-41.39868 -91.52131,-27.22053 -21.58377,9.61137 31.87791,60.84318 8.48619,64.16957 -34.50616,4.90691 -43.96819,-57.81529 -78.63033,-54.16991 -23.49745,2.47121 11.51612,67.71612 -11.75863,63.65127 -34.33363,-5.99624 -23.95033,-68.57253 -58.042473,-75.81675 -23.111052,-4.91086 -9.972951,67.96053 -30.85245,56.90233 -30.800277,-16.31244 -1.588041,-72.61741 -31.773003,-90.04212 -20.4623782,-11.81222 -30.4857993,61.55249 -46.926212,44.5834 -24.251982,-25.03186 20.9296964,-69.55399 -2.393375,-95.45355 -15.810703,-17.5573 -48.014485,49.11927 -58.406508,27.90034 -15.329739,-31.30099 41.398689,-59.68214 27.220534,-91.52131 -9.611368,-21.58377 -60.843183,31.87791 -64.169573,8.48619 -4.9069,-34.50616 57.815292,-43.96819 54.16991,-78.63033 -2.471204,-23.49745 -67.71612,11.51612 -63.65127,-11.75863 5.99625,-34.33363 68.57253,-23.95033 75.816756,-58.04247 4.910859,-23.111055 -67.960536,-9.972953 -56.902336,-30.852452 16.312444,-30.800277 72.617409,-1.588041 90.042128,-31.773004 C -10.74724,26.463837 -84.111948,16.440416 -67.142855,3.2387247e-6 -42.110993,-24.251979 2.4111339,20.929699 28.310692,-2.3933718 45.867996,-18.204075 -20.80858,-50.407857 0.41035306,-60.79988 31.711343,-76.129615 60.092496,-19.401192 91.931665,-33.579347 c 21.583765,-9.611367 -31.877912,-60.843178 -8.486196,-64.169569 34.506161,-4.906904 43.968191,57.815289 78.630331,54.169907 23.49746,-2.471204 -11.51612,-67.716121 11.75864,-63.651261 34.33362,5.99624 23.95033,68.572521 58.04247,75.816747 23.11105,4.910858 9.97295,-67.960532 30.85245,-56.902333 30.80027,16.312441 1.58804,72.617406 31.773,90.0421248 20.46238,11.8122122 30.4858,-61.5524958 46.92621,-44.5834028 24.25198,25.031862 -20.9297,69.553989 2.39338,95.453547 15.8107,17.557304 48.01448,-49.1192719 58.4065,-27.900339 15.32974,31.30099 -41.39868,59.682143 -27.22053,91.521316 9.61137,21.58376 60.84318,-31.877916 64.16957,-8.4862 4.90691,34.50616 -57.81529,43.96819 -54.16991,78.63033 2.47121,23.49746 67.71612,-11.51612 63.65127,11.75864 -5.99625,34.33362 -68.57253,23.95033 -75.81675,58.04247 -4.91086,23.11105 67.96053,9.97295 56.90233,30.85245 -16.31244,30.80027 -72.61741,1.58804 -90.04213,31.773 -11.81221,20.46238 61.5525,30.4858 44.58341,46.92621 z"
+         inkscape:randomized="0"
+         inkscape:rounded="0.36501894"
+         inkscape:flatsided="false"
+         sodipodi:arg2="0.95795278"
+         sodipodi:arg1="0.68088527"
+         sodipodi:r2="226.46327"
+         sodipodi:r1="290.48868"
+         sodipodi:cy="182.85715"
+         sodipodi:cx="158.57143"
+         sodipodi:sides="20"
+         id="path8091"
+         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8141)"
+         sodipodi:type="star" />
+      <path
+         transform="translate(10.714294,414.50503)"
+         d="M 491.42856,317.85715 C 491.42856,418.45187 409.88043,500 309.28571,500 208.69099,500 127.14285,418.45187 127.14285,317.85715 c 0,-100.59472 81.54814,-182.14286 182.14286,-182.14286 100.59472,0 182.14285,81.54814 182.14285,182.14286 z"
+         sodipodi:ry="182.14285"
+         sodipodi:rx="182.14285"
+         sodipodi:cy="317.85715"
+         sodipodi:cx="309.28571"
+         id="path8318"
+         style="fill:#84f5ff;fill-opacity:1;stroke:none;filter:url(#filter8364)"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.875,0,0,0.875,405.46429,428.04076)"
+         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
+         sodipodi:ry="57.142857"
+         sodipodi:rx="57.142857"
+         sodipodi:cy="404.28571"
+         sodipodi:cx="-210"
+         id="path8176"
+         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8314)"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8310)"
+         id="path8230"
+         sodipodi:cx="-210"
+         sodipodi:cy="404.28571"
+         sodipodi:rx="57.142857"
+         sodipodi:ry="57.142857"
+         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
+         transform="matrix(0.875,0,0,0.875,481.75,407.18361)" />
+      <path
+         transform="matrix(0.875,0,0,0.875,546.89286,455.18361)"
+         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
+         sodipodi:ry="57.142857"
+         sodipodi:rx="57.142857"
+         sodipodi:cy="404.28571"
+         sodipodi:cx="-210"
+         id="path8232"
+         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8306)"
+         sodipodi:type="arc" />
+      <g
+         transform="matrix(0.68915165,0,0,0.68915165,102.76977,427.51358)"
+         id="g5587">
+        <path
+           sodipodi:type="arc"
+           style="fill:url(#radialGradient8387);fill-opacity:1;stroke:none"
+           id="path2991"
+           sodipodi:cx="88.571426"
+           sodipodi:cy="204.28572"
+           sodipodi:rx="67.14286"
+           sodipodi:ry="67.14286"
+           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
+           transform="translate(94.285714,300.93361)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
+           id="path3763"
+           sodipodi:cx="80.714287"
+           sodipodi:cy="210.71428"
+           sodipodi:rx="10.714286"
+           sodipodi:ry="53.57143"
+           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
+           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
+           id="path3765"
+           sodipodi:cx="90"
+           sodipodi:cy="178.57143"
+           sodipodi:rx="10"
+           sodipodi:ry="10"
+           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
+           transform="translate(114.28571,299.50504)" />
+      </g>
+      <g
+         transform="matrix(0.68915165,0,0,0.68915165,171.8427,409.38621)"
+         id="g5616">
+        <path
+           transform="translate(94.285714,300.93361)"
+           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
+           sodipodi:ry="67.14286"
+           sodipodi:rx="67.14286"
+           sodipodi:cy="204.28572"
+           sodipodi:cx="88.571426"
+           id="path5618"
+           style="fill:url(#radialGradient8389);fill-opacity:1;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)"
+           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
+           sodipodi:ry="53.57143"
+           sodipodi:rx="10.714286"
+           sodipodi:cy="210.71428"
+           sodipodi:cx="80.714287"
+           id="path5620"
+           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
+           sodipodi:type="arc" />
+        <path
+           transform="translate(114.28571,299.50504)"
+           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
+           sodipodi:ry="10"
+           sodipodi:rx="10"
+           sodipodi:cy="178.57143"
+           sodipodi:cx="90"
+           id="path5622"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
+           sodipodi:type="arc" />
+      </g>
+      <g
+         id="g6886"
+         transform="matrix(0.68915165,0,0,0.68915165,230.12841,452.24335)">
+        <path
+           sodipodi:type="arc"
+           style="fill:url(#radialGradient8391);fill-opacity:1;stroke:none"
+           id="path6888"
+           sodipodi:cx="88.571426"
+           sodipodi:cy="204.28572"
+           sodipodi:rx="67.14286"
+           sodipodi:ry="67.14286"
+           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
+           transform="translate(94.285714,300.93361)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
+           id="path6890"
+           sodipodi:cx="80.714287"
+           sodipodi:cy="210.71428"
+           sodipodi:rx="10.714286"
+           sodipodi:ry="53.57143"
+           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
+           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
+           id="path6892"
+           sodipodi:cx="90"
+           sodipodi:cy="178.57143"
+           sodipodi:rx="10"
+           sodipodi:ry="10"
+           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
+           transform="translate(114.28571,299.50504)" />
+      </g>
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/alien_sheep_2.svg	Sat Sep 07 12:33:35 2013 +0200
@@ -0,0 +1,720 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="640"
+   height="640"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="sheep_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient5449">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop5451" />
+      <stop
+         style="stop-color:#afafaf;stop-opacity:1;"
+         offset="1"
+         id="stop5453" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5252"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#00ff00;stop-opacity:1;"
+         offset="0"
+         id="stop5254" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5406">
+      <path
+         sodipodi:nodetypes="czczcczcc"
+         inkscape:connector-curvature="0"
+         id="path5408"
+         d="m 112.80237,514.7052 c 151.01971,95.79181 354.94276,86.079 472.63226,17.22791 C 703.12412,463.08204 531.11606,360.92867 502.57748,287.64739 486.40722,251.25528 560.69124,96.708859 512.86291,83.306903 465.03458,69.904948 486.04427,187.96686 408.29177,279.07596 c -31.39277,-9.17291 -61.33834,-23.41103 -100,-7.14285 C 314.64288,161.89704 367.04049,63.022021 312.16375,68.291761 257.287,73.561516 321.34743,108.24232 153.19158,275.48941 14.687972,371.82397 97.729578,465.28418 112.80237,514.7052 z"
+         style="fill:#008000;fill-opacity:1;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5412">
+      <path
+         sodipodi:nodetypes="czczcczcc"
+         inkscape:connector-curvature="0"
+         id="path5414"
+         d="m 114.87533,514.7052 c 151.0197,95.79181 354.94276,86.079 472.63225,17.22791 C 705.19708,463.08204 533.18902,360.92867 504.65044,287.64739 488.48018,251.25528 562.76419,96.708859 514.93586,83.306903 467.10754,69.904948 488.11722,187.96686 410.36473,279.07596 378.97196,269.90305 349.02639,255.66493 310.36472,271.93311 316.71583,161.89704 369.11345,63.022021 314.2367,68.291761 259.35995,73.561516 323.42038,108.24232 155.26453,275.48941 16.760926,371.82397 99.802533,465.28418 114.87533,514.7052 z"
+         style="fill:#008000;fill-opacity:1;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5620"
+       x="-0.13382125"
+       width="1.2676425"
+       y="-0.10876644"
+       height="1.2175329">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="10.715086"
+         id="feGaussianBlur5622" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5753"
+       x="-0.132"
+       width="1.264"
+       y="-0.132"
+       height="1.264">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.5"
+         id="feGaussianBlur5755" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6759"
+       x="-0.13193402"
+       width="1.263868"
+       y="-0.13206604"
+       height="1.2641321">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="24.318477"
+         id="feGaussianBlur6761" />
+    </filter>
+    <clipPath
+       id="clipPath6136"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#ff0000;fill-opacity:1;stroke:none"
+         d="m 202.85714,912.3622 c -31.69023,25.90127 -20.47849,103.9092 -20,129.9999 53.17782,10.4427 59.99621,-42.2684 110,-92.85706 -19.80837,-11.07086 -42.37619,-20.12967 -62.85715,-10 1.3308,-10.73859 -4.72034,-22.70504 -27.14285,-27.14284 z"
+         id="path6138"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+    </clipPath>
+    <filter
+       height="1.2433045"
+       y="-0.12165224"
+       width="1.2885436"
+       x="-0.14427178"
+       id="filter6130"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur6132"
+         stdDeviation="5.3243162"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath5988"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         d="m 67.197648,531.28874 c 178.795542,74.2068 334.635592,40.20518 487.142852,-1.42857 17.24069,-97.41634 2.00774,-170.53511 -82.85715,-244.28572 0.41328,-34.31917 -0.60068,-126.17251 -35.31929,-108.98516 -34.71863,17.18735 -41.64091,56.94604 -58.96641,100.41373 -31.39278,-9.17291 -61.33835,-23.41103 -100.00001,-7.14285 6.35111,-110.74178 -16.82772,-112.27274 -35.51393,-106.21307 -18.68619,6.05967 -36.13463,86.48893 -80.20036,130.49878 C 24.872276,376.38084 71.534313,481.56314 67.197648,531.28874 z"
+         id="path5990"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccczcczcc" />
+    </clipPath>
+    <clipPath
+       id="clipPath5982"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         d="m 79.635302,522.99698 c 178.795538,74.2068 334.635588,40.20518 487.142848,-1.42857 17.24069,-97.41634 2.00775,-170.53511 -82.85714,-244.28572 0.41327,-34.31917 -0.60068,-126.17251 -35.3193,-108.98516 -34.71863,17.18735 -41.64091,56.94604 -58.96641,100.41373 -31.39277,-9.17291 -61.33834,-23.41103 -100.00001,-7.14285 6.35112,-110.74178 -16.82772,-112.27274 -35.51392,-106.21307 -18.68619,6.05967 -36.13463,86.48893 -80.20036,130.49878 C 37.30993,368.08908 83.971968,473.27138 79.635302,522.99698 z"
+         id="path5984"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccczcczcc" />
+    </clipPath>
+    <clipPath
+       id="clipPath5962"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         sodipodi:type="arc"
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         id="path5964"
+         sodipodi:cx="88.571426"
+         sodipodi:cy="204.28572"
+         sodipodi:rx="67.14286"
+         sodipodi:ry="67.14286"
+         d="m 155.71429,204.28572 a 67.14286,67.14286 0 1 1 -134.285724,0 67.14286,67.14286 0 1 1 134.285724,0 z"
+         transform="matrix(0.68915165,0,0,0.68915165,65.38943,-11.49812)" />
+    </clipPath>
+    <filter
+       height="1.6"
+       y="-0.3"
+       width="1.6"
+       x="-0.3"
+       id="filter5954"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5956"
+         stdDeviation="8.3928576"
+         inkscape:collect="always" />
+    </filter>
+    <radialGradient
+       r="67.64286"
+       fy="204.28572"
+       fx="88.571426"
+       cy="204.28572"
+       cx="88.571426"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient5624"
+       xlink:href="#linearGradient5449-6"
+       inkscape:collect="always" />
+    <filter
+       height="1.3967049"
+       y="-0.19835243"
+       width="1.2571031"
+       x="-0.12855154"
+       id="filter5579"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5581"
+         stdDeviation="18.288913"
+         inkscape:collect="always" />
+    </filter>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="67.64286"
+       fy="204.28572"
+       fx="88.571426"
+       cy="204.28572"
+       cx="88.571426"
+       id="radialGradient5455"
+       xlink:href="#linearGradient5449-6"
+       inkscape:collect="always" />
+    <filter
+       height="1.2797208"
+       y="-0.13986041"
+       width="1.2813227"
+       x="-0.14066136"
+       id="filter5312"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5314"
+         stdDeviation="25.993748"
+         inkscape:collect="always" />
+    </filter>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient5252-1">
+      <stop
+         id="stop5254-1"
+         offset="0"
+         style="stop-color:#00ff00;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5449-6">
+      <stop
+         id="stop5451-4"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop5453-0"
+         offset="1"
+         style="stop-color:#afafaf;stop-opacity:1;" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6716">
+      <path
+         sodipodi:nodetypes="zzzzccczccczcczzz"
+         inkscape:connector-curvature="0"
+         id="path6718"
+         d="M 325.71429,18.57143 C 163.044,24.37537 84.571314,50.40059 74.285714,152.85715 64.000114,255.3137 170.58899,232.54124 130,265.71429 89.411004,298.88735 31.97607,342.39488 70.000004,424.28569 108.02394,506.1765 262.7612,396.90858 287.14286,395.71436 244.73216,367.87315 224.1986,335.14691 174.28571,374.28568 c 16.71573,-26.43256 14.12331,-17.19469 52.85715,-65.71425 -35.11331,61.90476 -75.87305,159.06362 24.28571,165.71426 C 351.58733,480.93633 382.74375,327.40083 400,387.14286 c 38.49137,-69.96493 -67.839,-45.27398 -95.71429,-4.28568 6.41043,-6.15456 4.15765,-13.31279 34.28572,-62.85718 -12.34298,51.81069 -44.34928,152.96376 72.85714,149.99999 117.20642,-2.96377 141.03651,-55.15176 175.71433,-29.99996 -4.71021,-40.03228 -58.16373,-65.03517 -124.28573,-44.28571 -2.3931,-22.08379 12.57374,-59.72173 17.14284,-71.42861 4.5691,-11.70684 86.1767,-60.08779 90,-142.85714 3.8233,-82.76935 -81.6154,-168.66109 -244.28572,-162.85714 z"
+         style="fill:#008000;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6722">
+      <path
+         sodipodi:nodetypes="zzzzccczccczcczzz"
+         inkscape:connector-curvature="0"
+         id="path6724"
+         d="M 325.71429,18.57143 C 163.044,24.37537 84.571314,50.40059 74.285714,152.85715 64.000114,255.3137 170.58899,232.54124 130,265.71429 89.411004,298.88735 31.97607,342.39488 70.000004,424.28569 108.02394,506.1765 262.7612,396.90858 287.14286,395.71436 244.73216,367.87315 224.1986,335.14691 174.28571,374.28568 c 16.71573,-26.43256 14.12331,-17.19469 52.85715,-65.71425 -35.11331,61.90476 -75.87305,159.06362 24.28571,165.71426 C 351.58733,480.93633 382.74375,327.40083 400,387.14286 c 38.49137,-69.96493 -67.839,-45.27398 -95.71429,-4.28568 6.41043,-6.15456 4.15765,-13.31279 34.28572,-62.85718 -12.34298,51.81069 -44.34928,152.96376 72.85714,149.99999 117.20642,-2.96377 141.03651,-55.15176 175.71433,-29.99996 -4.71021,-40.03228 -58.16373,-65.03517 -124.28573,-44.28571 -2.3931,-22.08379 12.57374,-59.72173 17.14284,-71.42861 4.5691,-11.70684 86.1767,-60.08779 90,-142.85714 3.8233,-82.76935 -81.6154,-168.66109 -244.28572,-162.85714 z"
+         style="fill:#008000;stroke:none" />
+    </clipPath>
+    <clipPath
+       id="clipPath4830"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         d="M 67.197648,531.28874 C 245.99319,605.49554 401.83324,571.49392 554.3405,529.86017 571.58119,432.44383 556.34824,359.32506 471.48335,285.57445 455.31309,249.18234 419.05911,41.244246 384.3405,58.431595 349.62187,75.618944 456.71141,190.00355 377.19765,277.00302 345.80487,267.83011 315.8593,253.59199 277.19764,269.86017 283.54875,159.11839 218.91109,33.210891 162.91192,64.145881 106.91277,95.080858 317.48796,96.738316 161.48335,294.14588 24.872276,376.38084 71.534313,481.56314 67.197648,531.28874 z"
+         id="path4832"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccczcczcc" />
+    </clipPath>
+    <clipPath
+       id="clipPath4824"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#008000;fill-opacity:1;stroke:none"
+         d="M 79.635302,522.99698 C 258.43084,597.20378 414.27089,563.20216 566.77815,521.56841 584.01884,424.15207 568.7859,351.0333 483.92101,277.28269 467.75075,240.89058 431.49677,32.952486 396.77815,50.139835 362.05953,67.327184 469.14906,181.71179 389.6353,268.71126 358.24253,259.53835 328.29696,245.30023 289.63529,261.56841 295.98641,150.82663 231.34875,24.919131 175.34958,55.854122 119.35042,86.789098 329.92561,88.446556 173.92101,285.85412 37.30993,368.08908 83.971968,473.27138 79.635302,522.99698 z"
+         id="path4826"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccczcczcc" />
+    </clipPath>
+    <radialGradient
+       r="67.64286"
+       fy="204.28572"
+       fx="88.571426"
+       cy="204.28572"
+       cx="88.571426"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient5624-7"
+       xlink:href="#linearGradient5449-1"
+       inkscape:collect="always" />
+    <filter
+       height="1.3967049"
+       y="-0.19835243"
+       width="1.2571031"
+       x="-0.12855154"
+       id="filter5579-9"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5581-8"
+         stdDeviation="18.288913"
+         inkscape:collect="always" />
+    </filter>
+    <filter
+       height="1.36"
+       y="-0.18"
+       width="1.36"
+       x="-0.18"
+       id="filter5513"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5515"
+         stdDeviation="1.5"
+         inkscape:collect="always" />
+    </filter>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="67.64286"
+       fy="204.28572"
+       fx="88.571426"
+       cy="204.28572"
+       cx="88.571426"
+       id="radialGradient5455-7"
+       xlink:href="#linearGradient5449-1"
+       inkscape:collect="always" />
+    <filter
+       id="filter5337"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5339"
+         stdDeviation="0.71873615"
+         inkscape:collect="always" />
+    </filter>
+    <filter
+       height="1.2797208"
+       y="-0.13986041"
+       width="1.2813227"
+       x="-0.14066136"
+       id="filter5312-4"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5314-8"
+         stdDeviation="25.993748"
+         inkscape:collect="always" />
+    </filter>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient5252-2">
+      <stop
+         id="stop5254-2"
+         offset="0"
+         style="stop-color:#00ff00;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5449-1">
+      <stop
+         id="stop5451-0"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop5453-07"
+         offset="1"
+         style="stop-color:#afafaf;stop-opacity:1;" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter7665"
+       x="-0.11662054"
+       width="1.2332411"
+       y="-0.15205202"
+       height="1.304104">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="20.515645"
+         id="feGaussianBlur7667" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath7673">
+      <path
+         sodipodi:nodetypes="cccccccc"
+         inkscape:connector-curvature="0"
+         id="path7675"
+         d="M 123.30209,401.6877 C 72.302476,380.1212 77.308161,273.00061 177.23064,271.76893 166.5792,222.49432 279.65001,121.91456 356.17535,215.38909 c 42.70108,-93.65266 192.79142,-24.3055 140.9496,52.70289 82.6483,-35.38872 158.62874,66.40822 77.21587,132.37006 31.98764,86.11289 -66.92496,114.56422 -121.33922,95.6006 -74.42277,74.5063 -176.53636,15.02327 -180.17036,6.12824 C 161.09768,532.60565 93.990013,461.89123 123.30209,401.6877 z"
+         style="fill:#008080;stroke:none" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient7691"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient7693"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient7695"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <filter
+       inkscape:collect="always"
+       id="filter8141">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="14.513485"
+         id="feGaussianBlur8143" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8306"
+       x="-0.23365714"
+       width="1.4673143"
+       y="-0.23365714"
+       height="1.4673143">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.126531"
+         id="feGaussianBlur8308" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8310"
+       x="-0.23365714"
+       width="1.4673143"
+       y="-0.23365714"
+       height="1.4673143">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.126531"
+         id="feGaussianBlur8312" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8314"
+       x="-0.23365714"
+       width="1.4673143"
+       y="-0.23365714"
+       height="1.4673143">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.126531"
+         id="feGaussianBlur8316" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8364"
+       x="-0.12"
+       width="1.24"
+       y="-0.12"
+       height="1.24">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="18.214285"
+         id="feGaussianBlur8366" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient8387"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient8389"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient8391"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient8433"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient8435"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5449-1"
+       id="radialGradient8437"
+       gradientUnits="userSpaceOnUse"
+       cx="88.571426"
+       cy="204.28572"
+       fx="88.571426"
+       fy="204.28572"
+       r="67.64286" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.7"
+     inkscape:cx="97.401302"
+     inkscape:cy="325.60132"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="752"
+     inkscape:window-x="1280"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata7">
+    <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="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-412.36218)">
+    <path
+       sodipodi:type="star"
+       style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8141)"
+       id="path8091"
+       sodipodi:sides="20"
+       sodipodi:cx="158.57143"
+       sodipodi:cy="182.85715"
+       sodipodi:r1="290.48868"
+       sodipodi:r2="236.37539"
+       sodipodi:arg1="0.68088527"
+       sodipodi:arg2="0.59551681"
+       inkscape:flatsided="false"
+       inkscape:rounded="0.36501894"
+       inkscape:randomized="0"
+       d="m 384.28571,365.71429 c -9.05972,19.35746 -14.13482,-64.5543 -30.02885,-50.26551 -31.82303,28.60901 -8.29607,79.81018 -37.52436,111.06539 -14.59809,15.61044 6.50537,-65.76269 -13.02624,-57.08477 -39.10617,17.37494 -32.55273,73.34038 -70.00888,94.03381 -18.70749,10.33535 26.50877,-60.53377 5.25148,-58.31617 -42.56133,4.44007 -53.62291,59.69149 -95.64044,67.79753 -20.98569,4.04857 43.91729,-49.37938 23.01514,-53.83918 -41.85029,-8.92941 -69.444108,40.19959 -111.910063,34.92476 -21.209648,-2.63452 57.026893,-33.39139 38.52592,-44.09203 -37.042648,-21.42483 -78.467624,16.77267 -117.225135,-1.36669 -19.357463,-9.05972 64.554306,-14.13482 50.265515,-30.02885 -28.6090158,-31.82303 -79.810186,-8.29607 -111.065398,-37.52436 -15.610439,-14.59809 65.762692,6.50537 57.084771,-13.02623 -17.374934,-39.10618 -73.34037,-32.55274 -94.03381,-70.00889 -10.33535,-18.70749 60.533771,26.50877 58.316174,5.25148 -4.440071,-42.56133 -59.691494,-53.62291 -67.797534,-95.64044 -4.04856,-20.98569 49.37938,43.91729 53.839183,23.01514 8.929415,-41.85029 -40.199593,-69.44411 -34.924763,-111.910062 2.63452,-21.209648 33.39139,57.026892 44.092035,38.525922 C -47.084715,80.182489 -85.282218,38.757514 -67.142855,3.2387247e-6 -58.083139,-19.35746 -53.008038,64.554309 -37.114005,50.265518 -5.2909732,21.656502 -28.817936,-29.544668 0.41035306,-60.79988 15.00844,-76.410315 -6.0950147,4.9628119 13.436588,-3.7151095 52.542762,-21.090043 45.989323,-77.055481 83.445469,-97.748916 c 18.707491,-10.335344 -26.508762,60.533768 -5.251478,58.316171 42.561329,-4.440071 53.622909,-59.691489 95.640449,-67.797525 20.98568,-4.04857 -43.9173,49.379371 -23.01514,53.839173 41.85029,8.929416 69.4441,-40.199589 111.91006,-34.924759 21.20964,2.634517 -57.0269,33.391387 -38.52592,44.092032 37.04264,21.424829 78.46762,-16.772673 117.22513,1.36669 19.35746,9.059716 -64.55431,14.134817 -50.26551,30.02885 28.60901,31.823032 79.81018,8.296069 111.06539,37.524358 15.61044,14.598087 -65.76269,-6.505368 -57.08477,13.026235 17.37494,39.106174 73.34037,32.552735 94.03381,70.008881 10.33535,18.7075 -60.53377,-26.508762 -58.31617,-5.25148 4.44007,42.56133 59.69149,53.62291 67.79753,95.64045 4.04857,20.98568 -49.37938,-43.9173 -53.83918,-23.01514 -8.92942,41.85029 40.19959,69.4441 34.92476,111.91006 -2.63452,21.20964 -33.39139,-57.0269 -44.09203,-38.52592 -21.42483,37.04264 16.77267,78.46762 -1.36669,117.22513 z"
+       transform="matrix(0.89524964,0,0,0.89524964,178.03899,568.65938)"
+       inkscape:transform-center-x="9.2164901"
+       inkscape:transform-center-y="-6.8691823" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#84f5ff;fill-opacity:1;stroke:none;filter:url(#filter8364)"
+       id="path8318"
+       sodipodi:cx="309.28571"
+       sodipodi:cy="317.85715"
+       sodipodi:rx="182.14285"
+       sodipodi:ry="182.14285"
+       d="m 491.42856,317.85715 a 182.14285,182.14285 0 1 1 -364.28571,0 182.14285,182.14285 0 1 1 364.28571,0 z"
+       transform="translate(10.714292,414.50503)" />
+    <g
+       id="g8416"
+       transform="translate(12,0)">
+      <path
+         transform="matrix(0.875,0,0,0.875,405.46429,428.04076)"
+         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
+         sodipodi:ry="57.142857"
+         sodipodi:rx="57.142857"
+         sodipodi:cy="404.28571"
+         sodipodi:cx="-210"
+         id="path8176"
+         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8314)"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8310)"
+         id="path8230"
+         sodipodi:cx="-210"
+         sodipodi:cy="404.28571"
+         sodipodi:rx="57.142857"
+         sodipodi:ry="57.142857"
+         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
+         transform="matrix(0.875,0,0,0.875,481.75,407.18361)" />
+      <path
+         transform="matrix(0.875,0,0,0.875,546.89286,455.18361)"
+         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
+         sodipodi:ry="57.142857"
+         sodipodi:rx="57.142857"
+         sodipodi:cy="404.28571"
+         sodipodi:cx="-210"
+         id="path8232"
+         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8306)"
+         sodipodi:type="arc" />
+      <g
+         transform="matrix(0.68915165,0,0,0.68915165,102.76977,427.51358)"
+         id="g5587">
+        <path
+           sodipodi:type="arc"
+           style="fill:url(#radialGradient8433);fill-opacity:1;stroke:none"
+           id="path2991"
+           sodipodi:cx="88.571426"
+           sodipodi:cy="204.28572"
+           sodipodi:rx="67.14286"
+           sodipodi:ry="67.14286"
+           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
+           transform="translate(94.285714,300.93361)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
+           id="path3763"
+           sodipodi:cx="80.714287"
+           sodipodi:cy="210.71428"
+           sodipodi:rx="10.714286"
+           sodipodi:ry="53.57143"
+           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
+           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
+           id="path3765"
+           sodipodi:cx="90"
+           sodipodi:cy="178.57143"
+           sodipodi:rx="10"
+           sodipodi:ry="10"
+           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
+           transform="translate(114.28571,299.50504)" />
+      </g>
+      <g
+         transform="matrix(0.68915165,0,0,0.68915165,171.8427,409.38621)"
+         id="g5616">
+        <path
+           transform="translate(94.285714,300.93361)"
+           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
+           sodipodi:ry="67.14286"
+           sodipodi:rx="67.14286"
+           sodipodi:cy="204.28572"
+           sodipodi:cx="88.571426"
+           id="path5618"
+           style="fill:url(#radialGradient8435);fill-opacity:1;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)"
+           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
+           sodipodi:ry="53.57143"
+           sodipodi:rx="10.714286"
+           sodipodi:cy="210.71428"
+           sodipodi:cx="80.714287"
+           id="path5620"
+           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
+           sodipodi:type="arc" />
+        <path
+           transform="translate(114.28571,299.50504)"
+           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
+           sodipodi:ry="10"
+           sodipodi:rx="10"
+           sodipodi:cy="178.57143"
+           sodipodi:cx="90"
+           id="path5622"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
+           sodipodi:type="arc" />
+      </g>
+      <g
+         id="g6886"
+         transform="matrix(0.68915165,0,0,0.68915165,230.12841,452.24335)">
+        <path
+           sodipodi:type="arc"
+           style="fill:url(#radialGradient8437);fill-opacity:1;stroke:none"
+           id="path6888"
+           sodipodi:cx="88.571426"
+           sodipodi:cy="204.28572"
+           sodipodi:rx="67.14286"
+           sodipodi:ry="67.14286"
+           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
+           transform="translate(94.285714,300.93361)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
+           id="path6890"
+           sodipodi:cx="80.714287"
+           sodipodi:cy="210.71428"
+           sodipodi:rx="10.714286"
+           sodipodi:ry="53.57143"
+           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
+           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
+           id="path6892"
+           sodipodi:cx="90"
+           sodipodi:cy="178.57143"
+           sodipodi:rx="10"
+           sodipodi:ry="10"
+           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
+           transform="translate(114.28571,299.50504)" />
+      </g>
+    </g>
+  </g>
+</svg>
--- a/source/images/creatures/sheep_1.svg	Sat Sep 07 11:21:54 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,690 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="640"
-   height="640"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.48.4 r9939"
-   sodipodi:docname="sheep_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient5449">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop5451" />
-      <stop
-         style="stop-color:#afafaf;stop-opacity:1;"
-         offset="1"
-         id="stop5453" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5252"
-       osb:paint="solid">
-      <stop
-         style="stop-color:#00ff00;stop-opacity:1;"
-         offset="0"
-         id="stop5254" />
-    </linearGradient>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5406">
-      <path
-         sodipodi:nodetypes="czczcczcc"
-         inkscape:connector-curvature="0"
-         id="path5408"
-         d="m 112.80237,514.7052 c 151.01971,95.79181 354.94276,86.079 472.63226,17.22791 C 703.12412,463.08204 531.11606,360.92867 502.57748,287.64739 486.40722,251.25528 560.69124,96.708859 512.86291,83.306903 465.03458,69.904948 486.04427,187.96686 408.29177,279.07596 c -31.39277,-9.17291 -61.33834,-23.41103 -100,-7.14285 C 314.64288,161.89704 367.04049,63.022021 312.16375,68.291761 257.287,73.561516 321.34743,108.24232 153.19158,275.48941 14.687972,371.82397 97.729578,465.28418 112.80237,514.7052 z"
-         style="fill:#008000;fill-opacity:1;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5412">
-      <path
-         sodipodi:nodetypes="czczcczcc"
-         inkscape:connector-curvature="0"
-         id="path5414"
-         d="m 114.87533,514.7052 c 151.0197,95.79181 354.94276,86.079 472.63225,17.22791 C 705.19708,463.08204 533.18902,360.92867 504.65044,287.64739 488.48018,251.25528 562.76419,96.708859 514.93586,83.306903 467.10754,69.904948 488.11722,187.96686 410.36473,279.07596 378.97196,269.90305 349.02639,255.66493 310.36472,271.93311 316.71583,161.89704 369.11345,63.022021 314.2367,68.291761 259.35995,73.561516 323.42038,108.24232 155.26453,275.48941 16.760926,371.82397 99.802533,465.28418 114.87533,514.7052 z"
-         style="fill:#008000;fill-opacity:1;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5620"
-       x="-0.13382125"
-       width="1.2676425"
-       y="-0.10876644"
-       height="1.2175329">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="10.715086"
-         id="feGaussianBlur5622" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter5753"
-       x="-0.132"
-       width="1.264"
-       y="-0.132"
-       height="1.264">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="5.5"
-         id="feGaussianBlur5755" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6759"
-       x="-0.13193402"
-       width="1.263868"
-       y="-0.13206604"
-       height="1.2641321">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="24.318477"
-         id="feGaussianBlur6761" />
-    </filter>
-    <clipPath
-       id="clipPath6136"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#ff0000;fill-opacity:1;stroke:none"
-         d="m 202.85714,912.3622 c -31.69023,25.90127 -20.47849,103.9092 -20,129.9999 53.17782,10.4427 59.99621,-42.2684 110,-92.85706 -19.80837,-11.07086 -42.37619,-20.12967 -62.85715,-10 1.3308,-10.73859 -4.72034,-22.70504 -27.14285,-27.14284 z"
-         id="path6138"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccc" />
-    </clipPath>
-    <filter
-       height="1.2433045"
-       y="-0.12165224"
-       width="1.2885436"
-       x="-0.14427178"
-       id="filter6130"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur6132"
-         stdDeviation="5.3243162"
-         inkscape:collect="always" />
-    </filter>
-    <clipPath
-       id="clipPath5988"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         d="m 67.197648,531.28874 c 178.795542,74.2068 334.635592,40.20518 487.142852,-1.42857 17.24069,-97.41634 2.00774,-170.53511 -82.85715,-244.28572 0.41328,-34.31917 -0.60068,-126.17251 -35.31929,-108.98516 -34.71863,17.18735 -41.64091,56.94604 -58.96641,100.41373 -31.39278,-9.17291 -61.33835,-23.41103 -100.00001,-7.14285 6.35111,-110.74178 -16.82772,-112.27274 -35.51393,-106.21307 -18.68619,6.05967 -36.13463,86.48893 -80.20036,130.49878 C 24.872276,376.38084 71.534313,481.56314 67.197648,531.28874 z"
-         id="path5990"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccczcczcc" />
-    </clipPath>
-    <clipPath
-       id="clipPath5982"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         d="m 79.635302,522.99698 c 178.795538,74.2068 334.635588,40.20518 487.142848,-1.42857 17.24069,-97.41634 2.00775,-170.53511 -82.85714,-244.28572 0.41327,-34.31917 -0.60068,-126.17251 -35.3193,-108.98516 -34.71863,17.18735 -41.64091,56.94604 -58.96641,100.41373 -31.39277,-9.17291 -61.33834,-23.41103 -100.00001,-7.14285 6.35112,-110.74178 -16.82772,-112.27274 -35.51392,-106.21307 -18.68619,6.05967 -36.13463,86.48893 -80.20036,130.49878 C 37.30993,368.08908 83.971968,473.27138 79.635302,522.99698 z"
-         id="path5984"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccczcczcc" />
-    </clipPath>
-    <clipPath
-       id="clipPath5962"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         sodipodi:type="arc"
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         id="path5964"
-         sodipodi:cx="88.571426"
-         sodipodi:cy="204.28572"
-         sodipodi:rx="67.14286"
-         sodipodi:ry="67.14286"
-         d="m 155.71429,204.28572 a 67.14286,67.14286 0 1 1 -134.285724,0 67.14286,67.14286 0 1 1 134.285724,0 z"
-         transform="matrix(0.68915165,0,0,0.68915165,65.38943,-11.49812)" />
-    </clipPath>
-    <filter
-       height="1.6"
-       y="-0.3"
-       width="1.6"
-       x="-0.3"
-       id="filter5954"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5956"
-         stdDeviation="8.3928576"
-         inkscape:collect="always" />
-    </filter>
-    <radialGradient
-       r="67.64286"
-       fy="204.28572"
-       fx="88.571426"
-       cy="204.28572"
-       cx="88.571426"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient5624"
-       xlink:href="#linearGradient5449-6"
-       inkscape:collect="always" />
-    <filter
-       height="1.3967049"
-       y="-0.19835243"
-       width="1.2571031"
-       x="-0.12855154"
-       id="filter5579"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5581"
-         stdDeviation="18.288913"
-         inkscape:collect="always" />
-    </filter>
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       r="67.64286"
-       fy="204.28572"
-       fx="88.571426"
-       cy="204.28572"
-       cx="88.571426"
-       id="radialGradient5455"
-       xlink:href="#linearGradient5449-6"
-       inkscape:collect="always" />
-    <filter
-       height="1.2797208"
-       y="-0.13986041"
-       width="1.2813227"
-       x="-0.14066136"
-       id="filter5312"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5314"
-         stdDeviation="25.993748"
-         inkscape:collect="always" />
-    </filter>
-    <linearGradient
-       osb:paint="solid"
-       id="linearGradient5252-1">
-      <stop
-         id="stop5254-1"
-         offset="0"
-         style="stop-color:#00ff00;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5449-6">
-      <stop
-         id="stop5451-4"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1;" />
-      <stop
-         id="stop5453-0"
-         offset="1"
-         style="stop-color:#afafaf;stop-opacity:1;" />
-    </linearGradient>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6716">
-      <path
-         sodipodi:nodetypes="zzzzccczccczcczzz"
-         inkscape:connector-curvature="0"
-         id="path6718"
-         d="M 325.71429,18.57143 C 163.044,24.37537 84.571314,50.40059 74.285714,152.85715 64.000114,255.3137 170.58899,232.54124 130,265.71429 89.411004,298.88735 31.97607,342.39488 70.000004,424.28569 108.02394,506.1765 262.7612,396.90858 287.14286,395.71436 244.73216,367.87315 224.1986,335.14691 174.28571,374.28568 c 16.71573,-26.43256 14.12331,-17.19469 52.85715,-65.71425 -35.11331,61.90476 -75.87305,159.06362 24.28571,165.71426 C 351.58733,480.93633 382.74375,327.40083 400,387.14286 c 38.49137,-69.96493 -67.839,-45.27398 -95.71429,-4.28568 6.41043,-6.15456 4.15765,-13.31279 34.28572,-62.85718 -12.34298,51.81069 -44.34928,152.96376 72.85714,149.99999 117.20642,-2.96377 141.03651,-55.15176 175.71433,-29.99996 -4.71021,-40.03228 -58.16373,-65.03517 -124.28573,-44.28571 -2.3931,-22.08379 12.57374,-59.72173 17.14284,-71.42861 4.5691,-11.70684 86.1767,-60.08779 90,-142.85714 3.8233,-82.76935 -81.6154,-168.66109 -244.28572,-162.85714 z"
-         style="fill:#008000;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6722">
-      <path
-         sodipodi:nodetypes="zzzzccczccczcczzz"
-         inkscape:connector-curvature="0"
-         id="path6724"
-         d="M 325.71429,18.57143 C 163.044,24.37537 84.571314,50.40059 74.285714,152.85715 64.000114,255.3137 170.58899,232.54124 130,265.71429 89.411004,298.88735 31.97607,342.39488 70.000004,424.28569 108.02394,506.1765 262.7612,396.90858 287.14286,395.71436 244.73216,367.87315 224.1986,335.14691 174.28571,374.28568 c 16.71573,-26.43256 14.12331,-17.19469 52.85715,-65.71425 -35.11331,61.90476 -75.87305,159.06362 24.28571,165.71426 C 351.58733,480.93633 382.74375,327.40083 400,387.14286 c 38.49137,-69.96493 -67.839,-45.27398 -95.71429,-4.28568 6.41043,-6.15456 4.15765,-13.31279 34.28572,-62.85718 -12.34298,51.81069 -44.34928,152.96376 72.85714,149.99999 117.20642,-2.96377 141.03651,-55.15176 175.71433,-29.99996 -4.71021,-40.03228 -58.16373,-65.03517 -124.28573,-44.28571 -2.3931,-22.08379 12.57374,-59.72173 17.14284,-71.42861 4.5691,-11.70684 86.1767,-60.08779 90,-142.85714 3.8233,-82.76935 -81.6154,-168.66109 -244.28572,-162.85714 z"
-         style="fill:#008000;stroke:none" />
-    </clipPath>
-    <clipPath
-       id="clipPath4830"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         d="M 67.197648,531.28874 C 245.99319,605.49554 401.83324,571.49392 554.3405,529.86017 571.58119,432.44383 556.34824,359.32506 471.48335,285.57445 455.31309,249.18234 419.05911,41.244246 384.3405,58.431595 349.62187,75.618944 456.71141,190.00355 377.19765,277.00302 345.80487,267.83011 315.8593,253.59199 277.19764,269.86017 283.54875,159.11839 218.91109,33.210891 162.91192,64.145881 106.91277,95.080858 317.48796,96.738316 161.48335,294.14588 24.872276,376.38084 71.534313,481.56314 67.197648,531.28874 z"
-         id="path4832"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccczcczcc" />
-    </clipPath>
-    <clipPath
-       id="clipPath4824"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         d="M 79.635302,522.99698 C 258.43084,597.20378 414.27089,563.20216 566.77815,521.56841 584.01884,424.15207 568.7859,351.0333 483.92101,277.28269 467.75075,240.89058 431.49677,32.952486 396.77815,50.139835 362.05953,67.327184 469.14906,181.71179 389.6353,268.71126 358.24253,259.53835 328.29696,245.30023 289.63529,261.56841 295.98641,150.82663 231.34875,24.919131 175.34958,55.854122 119.35042,86.789098 329.92561,88.446556 173.92101,285.85412 37.30993,368.08908 83.971968,473.27138 79.635302,522.99698 z"
-         id="path4826"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccczcczcc" />
-    </clipPath>
-    <radialGradient
-       r="67.64286"
-       fy="204.28572"
-       fx="88.571426"
-       cy="204.28572"
-       cx="88.571426"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient5624-7"
-       xlink:href="#linearGradient5449-1"
-       inkscape:collect="always" />
-    <filter
-       height="1.3967049"
-       y="-0.19835243"
-       width="1.2571031"
-       x="-0.12855154"
-       id="filter5579-9"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5581-8"
-         stdDeviation="18.288913"
-         inkscape:collect="always" />
-    </filter>
-    <filter
-       height="1.36"
-       y="-0.18"
-       width="1.36"
-       x="-0.18"
-       id="filter5513"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5515"
-         stdDeviation="1.5"
-         inkscape:collect="always" />
-    </filter>
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       r="67.64286"
-       fy="204.28572"
-       fx="88.571426"
-       cy="204.28572"
-       cx="88.571426"
-       id="radialGradient5455-7"
-       xlink:href="#linearGradient5449-1"
-       inkscape:collect="always" />
-    <filter
-       id="filter5337"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5339"
-         stdDeviation="0.71873615"
-         inkscape:collect="always" />
-    </filter>
-    <filter
-       height="1.2797208"
-       y="-0.13986041"
-       width="1.2813227"
-       x="-0.14066136"
-       id="filter5312-4"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5314-8"
-         stdDeviation="25.993748"
-         inkscape:collect="always" />
-    </filter>
-    <linearGradient
-       osb:paint="solid"
-       id="linearGradient5252-2">
-      <stop
-         id="stop5254-2"
-         offset="0"
-         style="stop-color:#00ff00;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5449-1">
-      <stop
-         id="stop5451-0"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1;" />
-      <stop
-         id="stop5453-07"
-         offset="1"
-         style="stop-color:#afafaf;stop-opacity:1;" />
-    </linearGradient>
-    <filter
-       inkscape:collect="always"
-       id="filter7665"
-       x="-0.11662054"
-       width="1.2332411"
-       y="-0.15205202"
-       height="1.304104">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="20.515645"
-         id="feGaussianBlur7667" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath7673">
-      <path
-         sodipodi:nodetypes="cccccccc"
-         inkscape:connector-curvature="0"
-         id="path7675"
-         d="M 123.30209,401.6877 C 72.302476,380.1212 77.308161,273.00061 177.23064,271.76893 166.5792,222.49432 279.65001,121.91456 356.17535,215.38909 c 42.70108,-93.65266 192.79142,-24.3055 140.9496,52.70289 82.6483,-35.38872 158.62874,66.40822 77.21587,132.37006 31.98764,86.11289 -66.92496,114.56422 -121.33922,95.6006 -74.42277,74.5063 -176.53636,15.02327 -180.17036,6.12824 C 161.09768,532.60565 93.990013,461.89123 123.30209,401.6877 z"
-         style="fill:#008080;stroke:none" />
-    </clipPath>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient7691"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient7693"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient7695"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <filter
-       inkscape:collect="always"
-       id="filter8141">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="14.513485"
-         id="feGaussianBlur8143" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter8306"
-       x="-0.23365714"
-       width="1.4673143"
-       y="-0.23365714"
-       height="1.4673143">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.126531"
-         id="feGaussianBlur8308" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter8310"
-       x="-0.23365714"
-       width="1.4673143"
-       y="-0.23365714"
-       height="1.4673143">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.126531"
-         id="feGaussianBlur8312" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter8314"
-       x="-0.23365714"
-       width="1.4673143"
-       y="-0.23365714"
-       height="1.4673143">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.126531"
-         id="feGaussianBlur8316" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter8364"
-       x="-0.12"
-       width="1.24"
-       y="-0.12"
-       height="1.24">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="18.214285"
-         id="feGaussianBlur8366" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient8387"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient8389"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient8391"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.7"
-     inkscape:cx="-97.205942"
-     inkscape:cy="325.60132"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:window-width="1280"
-     inkscape:window-height="752"
-     inkscape:window-x="1280"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1" />
-  <metadata
-     id="metadata7">
-    <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="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(0,-412.36218)">
-    <g
-       id="g8368"
-       transform="translate(-2.3913678e-6,4.7827357e-6)">
-      <path
-         inkscape:transform-center-y="-6.8691823"
-         inkscape:transform-center-x="9.2164901"
-         transform="matrix(0.89524964,0,0,0.89524964,178.03899,568.65938)"
-         d="m 384.28571,365.71429 c -25.03186,24.25198 -69.55399,-20.92969 -95.45355,2.39338 -17.5573,15.8107 49.11927,48.01448 27.90034,58.4065 -31.30099,15.32974 -59.68214,-41.39868 -91.52131,-27.22053 -21.58377,9.61137 31.87791,60.84318 8.48619,64.16957 -34.50616,4.90691 -43.96819,-57.81529 -78.63033,-54.16991 -23.49745,2.47121 11.51612,67.71612 -11.75863,63.65127 -34.33363,-5.99624 -23.95033,-68.57253 -58.042473,-75.81675 -23.111052,-4.91086 -9.972951,67.96053 -30.85245,56.90233 -30.800277,-16.31244 -1.588041,-72.61741 -31.773003,-90.04212 -20.4623782,-11.81222 -30.4857993,61.55249 -46.926212,44.5834 -24.251982,-25.03186 20.9296964,-69.55399 -2.393375,-95.45355 -15.810703,-17.5573 -48.014485,49.11927 -58.406508,27.90034 -15.329739,-31.30099 41.398689,-59.68214 27.220534,-91.52131 -9.611368,-21.58377 -60.843183,31.87791 -64.169573,8.48619 -4.9069,-34.50616 57.815292,-43.96819 54.16991,-78.63033 -2.471204,-23.49745 -67.71612,11.51612 -63.65127,-11.75863 5.99625,-34.33363 68.57253,-23.95033 75.816756,-58.04247 4.910859,-23.111055 -67.960536,-9.972953 -56.902336,-30.852452 16.312444,-30.800277 72.617409,-1.588041 90.042128,-31.773004 C -10.74724,26.463837 -84.111948,16.440416 -67.142855,3.2387247e-6 -42.110993,-24.251979 2.4111339,20.929699 28.310692,-2.3933718 45.867996,-18.204075 -20.80858,-50.407857 0.41035306,-60.79988 31.711343,-76.129615 60.092496,-19.401192 91.931665,-33.579347 c 21.583765,-9.611367 -31.877912,-60.843178 -8.486196,-64.169569 34.506161,-4.906904 43.968191,57.815289 78.630331,54.169907 23.49746,-2.471204 -11.51612,-67.716121 11.75864,-63.651261 34.33362,5.99624 23.95033,68.572521 58.04247,75.816747 23.11105,4.910858 9.97295,-67.960532 30.85245,-56.902333 30.80027,16.312441 1.58804,72.617406 31.773,90.0421248 20.46238,11.8122122 30.4858,-61.5524958 46.92621,-44.5834028 24.25198,25.031862 -20.9297,69.553989 2.39338,95.453547 15.8107,17.557304 48.01448,-49.1192719 58.4065,-27.900339 15.32974,31.30099 -41.39868,59.682143 -27.22053,91.521316 9.61137,21.58376 60.84318,-31.877916 64.16957,-8.4862 4.90691,34.50616 -57.81529,43.96819 -54.16991,78.63033 2.47121,23.49746 67.71612,-11.51612 63.65127,11.75864 -5.99625,34.33362 -68.57253,23.95033 -75.81675,58.04247 -4.91086,23.11105 67.96053,9.97295 56.90233,30.85245 -16.31244,30.80027 -72.61741,1.58804 -90.04213,31.773 -11.81221,20.46238 61.5525,30.4858 44.58341,46.92621 z"
-         inkscape:randomized="0"
-         inkscape:rounded="0.36501894"
-         inkscape:flatsided="false"
-         sodipodi:arg2="0.95795278"
-         sodipodi:arg1="0.68088527"
-         sodipodi:r2="226.46327"
-         sodipodi:r1="290.48868"
-         sodipodi:cy="182.85715"
-         sodipodi:cx="158.57143"
-         sodipodi:sides="20"
-         id="path8091"
-         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8141)"
-         sodipodi:type="star" />
-      <path
-         transform="translate(10.714294,414.50503)"
-         d="M 491.42856,317.85715 C 491.42856,418.45187 409.88043,500 309.28571,500 208.69099,500 127.14285,418.45187 127.14285,317.85715 c 0,-100.59472 81.54814,-182.14286 182.14286,-182.14286 100.59472,0 182.14285,81.54814 182.14285,182.14286 z"
-         sodipodi:ry="182.14285"
-         sodipodi:rx="182.14285"
-         sodipodi:cy="317.85715"
-         sodipodi:cx="309.28571"
-         id="path8318"
-         style="fill:#84f5ff;fill-opacity:1;stroke:none;filter:url(#filter8364)"
-         sodipodi:type="arc" />
-      <path
-         transform="matrix(0.875,0,0,0.875,405.46429,428.04076)"
-         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
-         sodipodi:ry="57.142857"
-         sodipodi:rx="57.142857"
-         sodipodi:cy="404.28571"
-         sodipodi:cx="-210"
-         id="path8176"
-         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8314)"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:type="arc"
-         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8310)"
-         id="path8230"
-         sodipodi:cx="-210"
-         sodipodi:cy="404.28571"
-         sodipodi:rx="57.142857"
-         sodipodi:ry="57.142857"
-         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
-         transform="matrix(0.875,0,0,0.875,481.75,407.18361)" />
-      <path
-         transform="matrix(0.875,0,0,0.875,546.89286,455.18361)"
-         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
-         sodipodi:ry="57.142857"
-         sodipodi:rx="57.142857"
-         sodipodi:cy="404.28571"
-         sodipodi:cx="-210"
-         id="path8232"
-         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8306)"
-         sodipodi:type="arc" />
-      <g
-         transform="matrix(0.68915165,0,0,0.68915165,102.76977,427.51358)"
-         id="g5587">
-        <path
-           sodipodi:type="arc"
-           style="fill:url(#radialGradient8387);fill-opacity:1;stroke:none"
-           id="path2991"
-           sodipodi:cx="88.571426"
-           sodipodi:cy="204.28572"
-           sodipodi:rx="67.14286"
-           sodipodi:ry="67.14286"
-           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
-           transform="translate(94.285714,300.93361)" />
-        <path
-           sodipodi:type="arc"
-           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
-           id="path3763"
-           sodipodi:cx="80.714287"
-           sodipodi:cy="210.71428"
-           sodipodi:rx="10.714286"
-           sodipodi:ry="53.57143"
-           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
-           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)" />
-        <path
-           sodipodi:type="arc"
-           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
-           id="path3765"
-           sodipodi:cx="90"
-           sodipodi:cy="178.57143"
-           sodipodi:rx="10"
-           sodipodi:ry="10"
-           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
-           transform="translate(114.28571,299.50504)" />
-      </g>
-      <g
-         transform="matrix(0.68915165,0,0,0.68915165,171.8427,409.38621)"
-         id="g5616">
-        <path
-           transform="translate(94.285714,300.93361)"
-           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
-           sodipodi:ry="67.14286"
-           sodipodi:rx="67.14286"
-           sodipodi:cy="204.28572"
-           sodipodi:cx="88.571426"
-           id="path5618"
-           style="fill:url(#radialGradient8389);fill-opacity:1;stroke:none"
-           sodipodi:type="arc" />
-        <path
-           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)"
-           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
-           sodipodi:ry="53.57143"
-           sodipodi:rx="10.714286"
-           sodipodi:cy="210.71428"
-           sodipodi:cx="80.714287"
-           id="path5620"
-           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
-           sodipodi:type="arc" />
-        <path
-           transform="translate(114.28571,299.50504)"
-           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
-           sodipodi:ry="10"
-           sodipodi:rx="10"
-           sodipodi:cy="178.57143"
-           sodipodi:cx="90"
-           id="path5622"
-           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
-           sodipodi:type="arc" />
-      </g>
-      <g
-         id="g6886"
-         transform="matrix(0.68915165,0,0,0.68915165,230.12841,452.24335)">
-        <path
-           sodipodi:type="arc"
-           style="fill:url(#radialGradient8391);fill-opacity:1;stroke:none"
-           id="path6888"
-           sodipodi:cx="88.571426"
-           sodipodi:cy="204.28572"
-           sodipodi:rx="67.14286"
-           sodipodi:ry="67.14286"
-           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
-           transform="translate(94.285714,300.93361)" />
-        <path
-           sodipodi:type="arc"
-           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
-           id="path6890"
-           sodipodi:cx="80.714287"
-           sodipodi:cy="210.71428"
-           sodipodi:rx="10.714286"
-           sodipodi:ry="53.57143"
-           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
-           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)" />
-        <path
-           sodipodi:type="arc"
-           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
-           id="path6892"
-           sodipodi:cx="90"
-           sodipodi:cy="178.57143"
-           sodipodi:rx="10"
-           sodipodi:ry="10"
-           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
-           transform="translate(114.28571,299.50504)" />
-      </g>
-    </g>
-  </g>
-</svg>
--- a/source/images/creatures/sheep_2.svg	Sat Sep 07 11:21:54 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,720 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="640"
-   height="640"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.48.4 r9939"
-   sodipodi:docname="sheep_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient5449">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop5451" />
-      <stop
-         style="stop-color:#afafaf;stop-opacity:1;"
-         offset="1"
-         id="stop5453" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5252"
-       osb:paint="solid">
-      <stop
-         style="stop-color:#00ff00;stop-opacity:1;"
-         offset="0"
-         id="stop5254" />
-    </linearGradient>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5406">
-      <path
-         sodipodi:nodetypes="czczcczcc"
-         inkscape:connector-curvature="0"
-         id="path5408"
-         d="m 112.80237,514.7052 c 151.01971,95.79181 354.94276,86.079 472.63226,17.22791 C 703.12412,463.08204 531.11606,360.92867 502.57748,287.64739 486.40722,251.25528 560.69124,96.708859 512.86291,83.306903 465.03458,69.904948 486.04427,187.96686 408.29177,279.07596 c -31.39277,-9.17291 -61.33834,-23.41103 -100,-7.14285 C 314.64288,161.89704 367.04049,63.022021 312.16375,68.291761 257.287,73.561516 321.34743,108.24232 153.19158,275.48941 14.687972,371.82397 97.729578,465.28418 112.80237,514.7052 z"
-         style="fill:#008000;fill-opacity:1;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5412">
-      <path
-         sodipodi:nodetypes="czczcczcc"
-         inkscape:connector-curvature="0"
-         id="path5414"
-         d="m 114.87533,514.7052 c 151.0197,95.79181 354.94276,86.079 472.63225,17.22791 C 705.19708,463.08204 533.18902,360.92867 504.65044,287.64739 488.48018,251.25528 562.76419,96.708859 514.93586,83.306903 467.10754,69.904948 488.11722,187.96686 410.36473,279.07596 378.97196,269.90305 349.02639,255.66493 310.36472,271.93311 316.71583,161.89704 369.11345,63.022021 314.2367,68.291761 259.35995,73.561516 323.42038,108.24232 155.26453,275.48941 16.760926,371.82397 99.802533,465.28418 114.87533,514.7052 z"
-         style="fill:#008000;fill-opacity:1;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5620"
-       x="-0.13382125"
-       width="1.2676425"
-       y="-0.10876644"
-       height="1.2175329">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="10.715086"
-         id="feGaussianBlur5622" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter5753"
-       x="-0.132"
-       width="1.264"
-       y="-0.132"
-       height="1.264">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="5.5"
-         id="feGaussianBlur5755" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6759"
-       x="-0.13193402"
-       width="1.263868"
-       y="-0.13206604"
-       height="1.2641321">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="24.318477"
-         id="feGaussianBlur6761" />
-    </filter>
-    <clipPath
-       id="clipPath6136"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#ff0000;fill-opacity:1;stroke:none"
-         d="m 202.85714,912.3622 c -31.69023,25.90127 -20.47849,103.9092 -20,129.9999 53.17782,10.4427 59.99621,-42.2684 110,-92.85706 -19.80837,-11.07086 -42.37619,-20.12967 -62.85715,-10 1.3308,-10.73859 -4.72034,-22.70504 -27.14285,-27.14284 z"
-         id="path6138"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccc" />
-    </clipPath>
-    <filter
-       height="1.2433045"
-       y="-0.12165224"
-       width="1.2885436"
-       x="-0.14427178"
-       id="filter6130"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur6132"
-         stdDeviation="5.3243162"
-         inkscape:collect="always" />
-    </filter>
-    <clipPath
-       id="clipPath5988"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         d="m 67.197648,531.28874 c 178.795542,74.2068 334.635592,40.20518 487.142852,-1.42857 17.24069,-97.41634 2.00774,-170.53511 -82.85715,-244.28572 0.41328,-34.31917 -0.60068,-126.17251 -35.31929,-108.98516 -34.71863,17.18735 -41.64091,56.94604 -58.96641,100.41373 -31.39278,-9.17291 -61.33835,-23.41103 -100.00001,-7.14285 6.35111,-110.74178 -16.82772,-112.27274 -35.51393,-106.21307 -18.68619,6.05967 -36.13463,86.48893 -80.20036,130.49878 C 24.872276,376.38084 71.534313,481.56314 67.197648,531.28874 z"
-         id="path5990"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccczcczcc" />
-    </clipPath>
-    <clipPath
-       id="clipPath5982"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         d="m 79.635302,522.99698 c 178.795538,74.2068 334.635588,40.20518 487.142848,-1.42857 17.24069,-97.41634 2.00775,-170.53511 -82.85714,-244.28572 0.41327,-34.31917 -0.60068,-126.17251 -35.3193,-108.98516 -34.71863,17.18735 -41.64091,56.94604 -58.96641,100.41373 -31.39277,-9.17291 -61.33834,-23.41103 -100.00001,-7.14285 6.35112,-110.74178 -16.82772,-112.27274 -35.51392,-106.21307 -18.68619,6.05967 -36.13463,86.48893 -80.20036,130.49878 C 37.30993,368.08908 83.971968,473.27138 79.635302,522.99698 z"
-         id="path5984"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccczcczcc" />
-    </clipPath>
-    <clipPath
-       id="clipPath5962"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         sodipodi:type="arc"
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         id="path5964"
-         sodipodi:cx="88.571426"
-         sodipodi:cy="204.28572"
-         sodipodi:rx="67.14286"
-         sodipodi:ry="67.14286"
-         d="m 155.71429,204.28572 a 67.14286,67.14286 0 1 1 -134.285724,0 67.14286,67.14286 0 1 1 134.285724,0 z"
-         transform="matrix(0.68915165,0,0,0.68915165,65.38943,-11.49812)" />
-    </clipPath>
-    <filter
-       height="1.6"
-       y="-0.3"
-       width="1.6"
-       x="-0.3"
-       id="filter5954"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5956"
-         stdDeviation="8.3928576"
-         inkscape:collect="always" />
-    </filter>
-    <radialGradient
-       r="67.64286"
-       fy="204.28572"
-       fx="88.571426"
-       cy="204.28572"
-       cx="88.571426"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient5624"
-       xlink:href="#linearGradient5449-6"
-       inkscape:collect="always" />
-    <filter
-       height="1.3967049"
-       y="-0.19835243"
-       width="1.2571031"
-       x="-0.12855154"
-       id="filter5579"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5581"
-         stdDeviation="18.288913"
-         inkscape:collect="always" />
-    </filter>
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       r="67.64286"
-       fy="204.28572"
-       fx="88.571426"
-       cy="204.28572"
-       cx="88.571426"
-       id="radialGradient5455"
-       xlink:href="#linearGradient5449-6"
-       inkscape:collect="always" />
-    <filter
-       height="1.2797208"
-       y="-0.13986041"
-       width="1.2813227"
-       x="-0.14066136"
-       id="filter5312"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5314"
-         stdDeviation="25.993748"
-         inkscape:collect="always" />
-    </filter>
-    <linearGradient
-       osb:paint="solid"
-       id="linearGradient5252-1">
-      <stop
-         id="stop5254-1"
-         offset="0"
-         style="stop-color:#00ff00;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5449-6">
-      <stop
-         id="stop5451-4"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1;" />
-      <stop
-         id="stop5453-0"
-         offset="1"
-         style="stop-color:#afafaf;stop-opacity:1;" />
-    </linearGradient>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6716">
-      <path
-         sodipodi:nodetypes="zzzzccczccczcczzz"
-         inkscape:connector-curvature="0"
-         id="path6718"
-         d="M 325.71429,18.57143 C 163.044,24.37537 84.571314,50.40059 74.285714,152.85715 64.000114,255.3137 170.58899,232.54124 130,265.71429 89.411004,298.88735 31.97607,342.39488 70.000004,424.28569 108.02394,506.1765 262.7612,396.90858 287.14286,395.71436 244.73216,367.87315 224.1986,335.14691 174.28571,374.28568 c 16.71573,-26.43256 14.12331,-17.19469 52.85715,-65.71425 -35.11331,61.90476 -75.87305,159.06362 24.28571,165.71426 C 351.58733,480.93633 382.74375,327.40083 400,387.14286 c 38.49137,-69.96493 -67.839,-45.27398 -95.71429,-4.28568 6.41043,-6.15456 4.15765,-13.31279 34.28572,-62.85718 -12.34298,51.81069 -44.34928,152.96376 72.85714,149.99999 117.20642,-2.96377 141.03651,-55.15176 175.71433,-29.99996 -4.71021,-40.03228 -58.16373,-65.03517 -124.28573,-44.28571 -2.3931,-22.08379 12.57374,-59.72173 17.14284,-71.42861 4.5691,-11.70684 86.1767,-60.08779 90,-142.85714 3.8233,-82.76935 -81.6154,-168.66109 -244.28572,-162.85714 z"
-         style="fill:#008000;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6722">
-      <path
-         sodipodi:nodetypes="zzzzccczccczcczzz"
-         inkscape:connector-curvature="0"
-         id="path6724"
-         d="M 325.71429,18.57143 C 163.044,24.37537 84.571314,50.40059 74.285714,152.85715 64.000114,255.3137 170.58899,232.54124 130,265.71429 89.411004,298.88735 31.97607,342.39488 70.000004,424.28569 108.02394,506.1765 262.7612,396.90858 287.14286,395.71436 244.73216,367.87315 224.1986,335.14691 174.28571,374.28568 c 16.71573,-26.43256 14.12331,-17.19469 52.85715,-65.71425 -35.11331,61.90476 -75.87305,159.06362 24.28571,165.71426 C 351.58733,480.93633 382.74375,327.40083 400,387.14286 c 38.49137,-69.96493 -67.839,-45.27398 -95.71429,-4.28568 6.41043,-6.15456 4.15765,-13.31279 34.28572,-62.85718 -12.34298,51.81069 -44.34928,152.96376 72.85714,149.99999 117.20642,-2.96377 141.03651,-55.15176 175.71433,-29.99996 -4.71021,-40.03228 -58.16373,-65.03517 -124.28573,-44.28571 -2.3931,-22.08379 12.57374,-59.72173 17.14284,-71.42861 4.5691,-11.70684 86.1767,-60.08779 90,-142.85714 3.8233,-82.76935 -81.6154,-168.66109 -244.28572,-162.85714 z"
-         style="fill:#008000;stroke:none" />
-    </clipPath>
-    <clipPath
-       id="clipPath4830"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         d="M 67.197648,531.28874 C 245.99319,605.49554 401.83324,571.49392 554.3405,529.86017 571.58119,432.44383 556.34824,359.32506 471.48335,285.57445 455.31309,249.18234 419.05911,41.244246 384.3405,58.431595 349.62187,75.618944 456.71141,190.00355 377.19765,277.00302 345.80487,267.83011 315.8593,253.59199 277.19764,269.86017 283.54875,159.11839 218.91109,33.210891 162.91192,64.145881 106.91277,95.080858 317.48796,96.738316 161.48335,294.14588 24.872276,376.38084 71.534313,481.56314 67.197648,531.28874 z"
-         id="path4832"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccczcczcc" />
-    </clipPath>
-    <clipPath
-       id="clipPath4824"
-       clipPathUnits="userSpaceOnUse">
-      <path
-         style="fill:#008000;fill-opacity:1;stroke:none"
-         d="M 79.635302,522.99698 C 258.43084,597.20378 414.27089,563.20216 566.77815,521.56841 584.01884,424.15207 568.7859,351.0333 483.92101,277.28269 467.75075,240.89058 431.49677,32.952486 396.77815,50.139835 362.05953,67.327184 469.14906,181.71179 389.6353,268.71126 358.24253,259.53835 328.29696,245.30023 289.63529,261.56841 295.98641,150.82663 231.34875,24.919131 175.34958,55.854122 119.35042,86.789098 329.92561,88.446556 173.92101,285.85412 37.30993,368.08908 83.971968,473.27138 79.635302,522.99698 z"
-         id="path4826"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccczcczcc" />
-    </clipPath>
-    <radialGradient
-       r="67.64286"
-       fy="204.28572"
-       fx="88.571426"
-       cy="204.28572"
-       cx="88.571426"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient5624-7"
-       xlink:href="#linearGradient5449-1"
-       inkscape:collect="always" />
-    <filter
-       height="1.3967049"
-       y="-0.19835243"
-       width="1.2571031"
-       x="-0.12855154"
-       id="filter5579-9"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5581-8"
-         stdDeviation="18.288913"
-         inkscape:collect="always" />
-    </filter>
-    <filter
-       height="1.36"
-       y="-0.18"
-       width="1.36"
-       x="-0.18"
-       id="filter5513"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5515"
-         stdDeviation="1.5"
-         inkscape:collect="always" />
-    </filter>
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       r="67.64286"
-       fy="204.28572"
-       fx="88.571426"
-       cy="204.28572"
-       cx="88.571426"
-       id="radialGradient5455-7"
-       xlink:href="#linearGradient5449-1"
-       inkscape:collect="always" />
-    <filter
-       id="filter5337"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5339"
-         stdDeviation="0.71873615"
-         inkscape:collect="always" />
-    </filter>
-    <filter
-       height="1.2797208"
-       y="-0.13986041"
-       width="1.2813227"
-       x="-0.14066136"
-       id="filter5312-4"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur5314-8"
-         stdDeviation="25.993748"
-         inkscape:collect="always" />
-    </filter>
-    <linearGradient
-       osb:paint="solid"
-       id="linearGradient5252-2">
-      <stop
-         id="stop5254-2"
-         offset="0"
-         style="stop-color:#00ff00;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5449-1">
-      <stop
-         id="stop5451-0"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1;" />
-      <stop
-         id="stop5453-07"
-         offset="1"
-         style="stop-color:#afafaf;stop-opacity:1;" />
-    </linearGradient>
-    <filter
-       inkscape:collect="always"
-       id="filter7665"
-       x="-0.11662054"
-       width="1.2332411"
-       y="-0.15205202"
-       height="1.304104">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="20.515645"
-         id="feGaussianBlur7667" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath7673">
-      <path
-         sodipodi:nodetypes="cccccccc"
-         inkscape:connector-curvature="0"
-         id="path7675"
-         d="M 123.30209,401.6877 C 72.302476,380.1212 77.308161,273.00061 177.23064,271.76893 166.5792,222.49432 279.65001,121.91456 356.17535,215.38909 c 42.70108,-93.65266 192.79142,-24.3055 140.9496,52.70289 82.6483,-35.38872 158.62874,66.40822 77.21587,132.37006 31.98764,86.11289 -66.92496,114.56422 -121.33922,95.6006 -74.42277,74.5063 -176.53636,15.02327 -180.17036,6.12824 C 161.09768,532.60565 93.990013,461.89123 123.30209,401.6877 z"
-         style="fill:#008080;stroke:none" />
-    </clipPath>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient7691"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient7693"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient7695"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <filter
-       inkscape:collect="always"
-       id="filter8141">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="14.513485"
-         id="feGaussianBlur8143" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter8306"
-       x="-0.23365714"
-       width="1.4673143"
-       y="-0.23365714"
-       height="1.4673143">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.126531"
-         id="feGaussianBlur8308" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter8310"
-       x="-0.23365714"
-       width="1.4673143"
-       y="-0.23365714"
-       height="1.4673143">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.126531"
-         id="feGaussianBlur8312" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter8314"
-       x="-0.23365714"
-       width="1.4673143"
-       y="-0.23365714"
-       height="1.4673143">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.126531"
-         id="feGaussianBlur8316" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter8364"
-       x="-0.12"
-       width="1.24"
-       y="-0.12"
-       height="1.24">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="18.214285"
-         id="feGaussianBlur8366" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient8387"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient8389"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient8391"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient8433"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient8435"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5449-1"
-       id="radialGradient8437"
-       gradientUnits="userSpaceOnUse"
-       cx="88.571426"
-       cy="204.28572"
-       fx="88.571426"
-       fy="204.28572"
-       r="67.64286" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.7"
-     inkscape:cx="97.401302"
-     inkscape:cy="325.60132"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:window-width="1280"
-     inkscape:window-height="752"
-     inkscape:window-x="1280"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1" />
-  <metadata
-     id="metadata7">
-    <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="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(0,-412.36218)">
-    <path
-       sodipodi:type="star"
-       style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8141)"
-       id="path8091"
-       sodipodi:sides="20"
-       sodipodi:cx="158.57143"
-       sodipodi:cy="182.85715"
-       sodipodi:r1="290.48868"
-       sodipodi:r2="236.37539"
-       sodipodi:arg1="0.68088527"
-       sodipodi:arg2="0.59551681"
-       inkscape:flatsided="false"
-       inkscape:rounded="0.36501894"
-       inkscape:randomized="0"
-       d="m 384.28571,365.71429 c -9.05972,19.35746 -14.13482,-64.5543 -30.02885,-50.26551 -31.82303,28.60901 -8.29607,79.81018 -37.52436,111.06539 -14.59809,15.61044 6.50537,-65.76269 -13.02624,-57.08477 -39.10617,17.37494 -32.55273,73.34038 -70.00888,94.03381 -18.70749,10.33535 26.50877,-60.53377 5.25148,-58.31617 -42.56133,4.44007 -53.62291,59.69149 -95.64044,67.79753 -20.98569,4.04857 43.91729,-49.37938 23.01514,-53.83918 -41.85029,-8.92941 -69.444108,40.19959 -111.910063,34.92476 -21.209648,-2.63452 57.026893,-33.39139 38.52592,-44.09203 -37.042648,-21.42483 -78.467624,16.77267 -117.225135,-1.36669 -19.357463,-9.05972 64.554306,-14.13482 50.265515,-30.02885 -28.6090158,-31.82303 -79.810186,-8.29607 -111.065398,-37.52436 -15.610439,-14.59809 65.762692,6.50537 57.084771,-13.02623 -17.374934,-39.10618 -73.34037,-32.55274 -94.03381,-70.00889 -10.33535,-18.70749 60.533771,26.50877 58.316174,5.25148 -4.440071,-42.56133 -59.691494,-53.62291 -67.797534,-95.64044 -4.04856,-20.98569 49.37938,43.91729 53.839183,23.01514 8.929415,-41.85029 -40.199593,-69.44411 -34.924763,-111.910062 2.63452,-21.209648 33.39139,57.026892 44.092035,38.525922 C -47.084715,80.182489 -85.282218,38.757514 -67.142855,3.2387247e-6 -58.083139,-19.35746 -53.008038,64.554309 -37.114005,50.265518 -5.2909732,21.656502 -28.817936,-29.544668 0.41035306,-60.79988 15.00844,-76.410315 -6.0950147,4.9628119 13.436588,-3.7151095 52.542762,-21.090043 45.989323,-77.055481 83.445469,-97.748916 c 18.707491,-10.335344 -26.508762,60.533768 -5.251478,58.316171 42.561329,-4.440071 53.622909,-59.691489 95.640449,-67.797525 20.98568,-4.04857 -43.9173,49.379371 -23.01514,53.839173 41.85029,8.929416 69.4441,-40.199589 111.91006,-34.924759 21.20964,2.634517 -57.0269,33.391387 -38.52592,44.092032 37.04264,21.424829 78.46762,-16.772673 117.22513,1.36669 19.35746,9.059716 -64.55431,14.134817 -50.26551,30.02885 28.60901,31.823032 79.81018,8.296069 111.06539,37.524358 15.61044,14.598087 -65.76269,-6.505368 -57.08477,13.026235 17.37494,39.106174 73.34037,32.552735 94.03381,70.008881 10.33535,18.7075 -60.53377,-26.508762 -58.31617,-5.25148 4.44007,42.56133 59.69149,53.62291 67.79753,95.64045 4.04857,20.98568 -49.37938,-43.9173 -53.83918,-23.01514 -8.92942,41.85029 40.19959,69.4441 34.92476,111.91006 -2.63452,21.20964 -33.39139,-57.0269 -44.09203,-38.52592 -21.42483,37.04264 16.77267,78.46762 -1.36669,117.22513 z"
-       transform="matrix(0.89524964,0,0,0.89524964,178.03899,568.65938)"
-       inkscape:transform-center-x="9.2164901"
-       inkscape:transform-center-y="-6.8691823" />
-    <path
-       sodipodi:type="arc"
-       style="fill:#84f5ff;fill-opacity:1;stroke:none;filter:url(#filter8364)"
-       id="path8318"
-       sodipodi:cx="309.28571"
-       sodipodi:cy="317.85715"
-       sodipodi:rx="182.14285"
-       sodipodi:ry="182.14285"
-       d="m 491.42856,317.85715 a 182.14285,182.14285 0 1 1 -364.28571,0 182.14285,182.14285 0 1 1 364.28571,0 z"
-       transform="translate(10.714292,414.50503)" />
-    <g
-       id="g8416"
-       transform="translate(12,0)">
-      <path
-         transform="matrix(0.875,0,0,0.875,405.46429,428.04076)"
-         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
-         sodipodi:ry="57.142857"
-         sodipodi:rx="57.142857"
-         sodipodi:cy="404.28571"
-         sodipodi:cx="-210"
-         id="path8176"
-         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8314)"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:type="arc"
-         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8310)"
-         id="path8230"
-         sodipodi:cx="-210"
-         sodipodi:cy="404.28571"
-         sodipodi:rx="57.142857"
-         sodipodi:ry="57.142857"
-         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
-         transform="matrix(0.875,0,0,0.875,481.75,407.18361)" />
-      <path
-         transform="matrix(0.875,0,0,0.875,546.89286,455.18361)"
-         d="m -152.85714,404.28571 c 0,31.55912 -25.58373,57.14285 -57.14286,57.14285 -31.55913,0 -57.14286,-25.58373 -57.14286,-57.14285 0,-31.55913 25.58373,-57.14286 57.14286,-57.14286 31.55913,0 57.14286,25.58373 57.14286,57.14286 z"
-         sodipodi:ry="57.142857"
-         sodipodi:rx="57.142857"
-         sodipodi:cy="404.28571"
-         sodipodi:cx="-210"
-         id="path8232"
-         style="fill:#128b95;fill-opacity:1;stroke:none;filter:url(#filter8306)"
-         sodipodi:type="arc" />
-      <g
-         transform="matrix(0.68915165,0,0,0.68915165,102.76977,427.51358)"
-         id="g5587">
-        <path
-           sodipodi:type="arc"
-           style="fill:url(#radialGradient8433);fill-opacity:1;stroke:none"
-           id="path2991"
-           sodipodi:cx="88.571426"
-           sodipodi:cy="204.28572"
-           sodipodi:rx="67.14286"
-           sodipodi:ry="67.14286"
-           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
-           transform="translate(94.285714,300.93361)" />
-        <path
-           sodipodi:type="arc"
-           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
-           id="path3763"
-           sodipodi:cx="80.714287"
-           sodipodi:cy="210.71428"
-           sodipodi:rx="10.714286"
-           sodipodi:ry="53.57143"
-           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
-           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)" />
-        <path
-           sodipodi:type="arc"
-           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
-           id="path3765"
-           sodipodi:cx="90"
-           sodipodi:cy="178.57143"
-           sodipodi:rx="10"
-           sodipodi:ry="10"
-           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
-           transform="translate(114.28571,299.50504)" />
-      </g>
-      <g
-         transform="matrix(0.68915165,0,0,0.68915165,171.8427,409.38621)"
-         id="g5616">
-        <path
-           transform="translate(94.285714,300.93361)"
-           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
-           sodipodi:ry="67.14286"
-           sodipodi:rx="67.14286"
-           sodipodi:cy="204.28572"
-           sodipodi:cx="88.571426"
-           id="path5618"
-           style="fill:url(#radialGradient8435);fill-opacity:1;stroke:none"
-           sodipodi:type="arc" />
-        <path
-           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)"
-           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
-           sodipodi:ry="53.57143"
-           sodipodi:rx="10.714286"
-           sodipodi:cy="210.71428"
-           sodipodi:cx="80.714287"
-           id="path5620"
-           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
-           sodipodi:type="arc" />
-        <path
-           transform="translate(114.28571,299.50504)"
-           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
-           sodipodi:ry="10"
-           sodipodi:rx="10"
-           sodipodi:cy="178.57143"
-           sodipodi:cx="90"
-           id="path5622"
-           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
-           sodipodi:type="arc" />
-      </g>
-      <g
-         id="g6886"
-         transform="matrix(0.68915165,0,0,0.68915165,230.12841,452.24335)">
-        <path
-           sodipodi:type="arc"
-           style="fill:url(#radialGradient8437);fill-opacity:1;stroke:none"
-           id="path6888"
-           sodipodi:cx="88.571426"
-           sodipodi:cy="204.28572"
-           sodipodi:rx="67.14286"
-           sodipodi:ry="67.14286"
-           d="m 155.71429,204.28572 c 0,37.08198 -30.06089,67.14286 -67.142864,67.14286 -37.081977,0 -67.14286,-30.06088 -67.14286,-67.14286 0,-37.08198 30.060883,-67.14286 67.14286,-67.14286 37.081974,0 67.142864,30.06088 67.142864,67.14286 z"
-           transform="translate(94.285714,300.93361)" />
-        <path
-           sodipodi:type="arc"
-           style="fill:#aa0000;fill-opacity:1;stroke:none;filter:url(#filter5337)"
-           id="path6890"
-           sodipodi:cx="80.714287"
-           sodipodi:cy="210.71428"
-           sodipodi:rx="10.714286"
-           sodipodi:ry="53.57143"
-           d="m 91.428573,210.71428 c 0,29.58668 -4.79695,53.57143 -10.714286,53.57143 -5.917337,0 -10.714286,-23.98475 -10.714286,-53.57143 0,-29.58668 4.796949,-53.57143 10.714286,-53.57143 5.917336,0 10.714286,23.98475 10.714286,53.57143 z"
-           transform="matrix(4.1794418,0,0,0.83588835,-166.4121,329.58572)" />
-        <path
-           sodipodi:type="arc"
-           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5513)"
-           id="path6892"
-           sodipodi:cx="90"
-           sodipodi:cy="178.57143"
-           sodipodi:rx="10"
-           sodipodi:ry="10"
-           d="m 100,178.57143 c 0,5.52284 -4.477153,10 -10,10 -5.522847,0 -10,-4.47716 -10,-10 0,-5.52285 4.477153,-10 10,-10 5.522847,0 10,4.47715 10,10 z"
-           transform="translate(114.28571,299.50504)" />
-      </g>
-    </g>
-  </g>
-</svg>