changeset 242:cf1d78238a69

Merge
author David Sharpe
date Wed, 04 Sep 2013 20:20:13 +0200
parents ec567098cf41 (current diff) aa11ecee56b8 (diff)
children 46707efbb3a5
files TODO.txt data/images/creatures/human_1.png data/images/creatures/human_2.png data/images/creatures/human_back_1.png data/images/creatures/human_back_2.png data/images/creatures/werewolf_1.png data/images/creatures/werewolf_2.png data/images/creatures/werewolf_back_1.png data/images/creatures/werewolf_back_2.png source/images/creatures/human_1.svg source/images/creatures/human_2.svg source/images/creatures/human_back_1.svg source/images/creatures/human_back_2.svg source/images/creatures/werewolf_1.svg source/images/creatures/werewolf_2.svg source/images/creatures/werewolf_back_1.svg source/images/creatures/werewolf_back_2.svg
diffstat 53 files changed, 7623 insertions(+), 4197 deletions(-) [+]
line wrap: on
line diff
--- a/TODO.txt	Wed Sep 04 01:23:43 2013 +0200
+++ b/TODO.txt	Wed Sep 04 20:20:13 2013 +0200
@@ -3,20 +3,22 @@
 TODO
 ====
 
-* Changing areas
-
 * Items
 
 * Inventory
 
 * Puzzle objects
+  - We need more
+  - We need to make puzzles out of them
   - How much state do we save to avoid breaking the game?
+  - Toggle switch?
+  - Laser emitters and detectors? (Maybe later -- seems like a lot of work)
 
 * Game saving
   - still needs to be worked in
 
 * Enemies
-  - Are desirable
+  - One isn't enough
 
 * Shooting
   - Follows from enemies
@@ -28,7 +30,7 @@
 	* More aliens (how many?)
 	* bullets (alien acid spit and human bullets)
 	* Weapons which can be overlaid with the protag's sprite in different positions?
-	* Protagonist facing N, S and SW (already have W and NW). Rename to cardinal directions.
+	* Last few protagonist directional images
 	* Two of each of these (human and alien design)
 		* floor tile
 		* door
@@ -36,7 +38,7 @@
 		* indicator (1 done)
 		* pushable obstacle (1 done)
 		* smashable obstacle?
-		* tiles for different surfaces? e.g. damaging (pool of acid), slippery (ice), sticky (alien goop), etc.. 
+		* tiles for different surfaces? e.g. damaging (pool of acid), slippery (ice), sticky (alien goop), etc.
 
 * Sounds required:
 	* Environmental:
Binary file data/images/creatures/human_1.png has changed
Binary file data/images/creatures/human_2.png has changed
Binary file data/images/creatures/human_NW_1.png has changed
Binary file data/images/creatures/human_NW_2.png has changed
Binary file data/images/creatures/human_N_1.png has changed
Binary file data/images/creatures/human_N_2.png has changed
Binary file data/images/creatures/human_SW_1.png has changed
Binary file data/images/creatures/human_SW_2.png has changed
Binary file data/images/creatures/human_S_1.png has changed
Binary file data/images/creatures/human_S_2.png has changed
Binary file data/images/creatures/human_W_1.png has changed
Binary file data/images/creatures/human_W_2.png has changed
Binary file data/images/creatures/human_back_1.png has changed
Binary file data/images/creatures/human_back_2.png has changed
Binary file data/images/creatures/werewolf_1.png has changed
Binary file data/images/creatures/werewolf_2.png has changed
Binary file data/images/creatures/werewolf_NW_1.png has changed
Binary file data/images/creatures/werewolf_NW_2.png has changed
Binary file data/images/creatures/werewolf_SW_1.png has changed
Binary file data/images/creatures/werewolf_SW_2.png has changed
Binary file data/images/creatures/werewolf_W_1.png has changed
Binary file data/images/creatures/werewolf_W_2.png has changed
Binary file data/images/creatures/werewolf_back_1.png has changed
Binary file data/images/creatures/werewolf_back_2.png has changed
--- a/data/levels/level1	Wed Sep 04 01:23:43 2013 +0200
+++ b/data/levels/level1	Wed Sep 04 20:20:13 2013 +0200
@@ -50,8 +50,16 @@
   - [290, 160]
   - Run around, press some buttons, have fun!
   classname: Note
+- args:
+  - [800, 680]
+  - [900, 680]
+  - door_switch
+  classname: Bulkhead
+  name: switch_bulkhead
 lines:
 - - [750, 680]
+  - [800, 680]
+- - [900, 680]
   - [950, 680]
 - - [750, 480]
   - [950, 480]
--- a/nagslang/enemies.py	Wed Sep 04 01:23:43 2013 +0200
+++ b/nagslang/enemies.py	Wed Sep 04 20:20:13 2013 +0200
@@ -1,3 +1,5 @@
+import math
+
 import pymunk
 import pymunk.pygame_util
 
@@ -33,6 +35,7 @@
 
 
 class PatrollingAlien(Enemy):
+    is_moving = True  # Always walking.
 
     def __init__(self, space, position, end_position):
         # An enemy that patrols between the two points
@@ -54,30 +57,25 @@
         self.angle = 0
 
     def _setup_renderer(self):
-        self.renderer = render.AnimatedFacingImageRenderer(
-            (self._get_image('alien_A_1.png'),
-             self._get_image('alien_A_1.png'),
-             self._get_image('alien_A_1.png'),
-             self._get_image('alien_A_1.png'),
-             self._get_image('alien_A_1.png'),
-             self._get_image('alien_A_1.png'),
-             self._get_image('alien_A_2.png'),
-             self._get_image('alien_A_2.png'),
-             self._get_image('alien_A_2.png')),
-            (self._get_image('alien_A_1.png', FLIP_H),
-             self._get_image('alien_A_1.png', FLIP_H),
-             self._get_image('alien_A_1.png', FLIP_H),
-             self._get_image('alien_A_1.png', FLIP_H),
-             self._get_image('alien_A_1.png', FLIP_H),
-             self._get_image('alien_A_1.png', FLIP_H),
-             self._get_image('alien_A_2.png', FLIP_H),
-             self._get_image('alien_A_2.png', FLIP_H),
-             self._get_image('alien_A_2.png', FLIP_H)))
-        # We're always animated
-        self.renderer.start()
+        self.renderer = render.FacingSelectionRenderer({
+            'left': render.TimedAnimatedRenderer(
+                [self._get_image('alien_A_1.png'),
+                 self._get_image('alien_A_2.png')], 3),
+            'right': render.TimedAnimatedRenderer(
+                [self._get_image('alien_A_1.png', FLIP_H),
+                 self._get_image('alien_A_2.png', FLIP_H)], 3),
+        })
 
     def get_render_angle(self):
-        return self.angle
+        # 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':
--- a/nagslang/game_object.py	Wed Sep 04 01:23:43 2013 +0200
+++ b/nagslang/game_object.py	Wed Sep 04 20:20:13 2013 +0200
@@ -8,7 +8,6 @@
     ZORDER_FLOOR, COLLISION_TYPE_DOOR)
 from nagslang.resources import resources
 from nagslang.events import DoorEvent
-from nagslang.widgets.text import LabelWidget
 
 
 class Physicser(object):
@@ -25,19 +24,37 @@
         raise NotImplementedError()
 
     def add_to_space(self):
-        raise NotImplementedError()
+        shape = self.get_shape()
+        self.get_space().add(shape)
+        if not shape.body.is_static:
+            self.get_space().add(shape.body)
 
     def remove_from_space(self):
-        raise NotImplementedError()
+        shape = self.get_shape()
+        self.get_space().remove(shape)
+        if not shape.body.is_static:
+            self.get_space().remove(shape.body)
 
     def get_render_position(self, surface):
-        raise NotImplementedError()
+        pos = self.get_shape().body.position
+        return pymunk.pygame_util.to_pygame(pos, surface)
 
     def get_angle(self):
-        raise NotImplementedError()
+        return self.get_shape().body.angle
+
+    def get_velocity(self):
+        return self.get_shape().body.velocity
+
+    def _get_position(self):
+        return self.get_shape().body.position
+
+    def _set_position(self, position):
+        self.get_shape().body.position = position
+
+    position = property(_get_position, _set_position)
 
     def apply_impulse(self, j, r=(0, 0)):
-        raise NotImplementedError()
+        return self.get_shape().body.apply_impulse(j, r)
 
 
 class SingleShapePhysicser(Physicser):
@@ -49,26 +66,6 @@
     def get_shape(self):
         return self._shape
 
-    def add_to_space(self):
-        self.get_space().add(self._shape)
-        if not self._shape.body.is_static:
-            self.get_space().add(self._shape.body)
-
-    def remove_from_space(self):
-        self.get_space().remove(self._shape)
-        if not self._shape.body.is_static:
-            self.get_space().remove(self._shape.body)
-
-    def get_render_position(self, surface):
-        pos = self._shape.body.position
-        return pymunk.pygame_util.to_pygame(pos, surface)
-
-    def get_angle(self):
-        return self._shape.body.angle
-
-    def apply_impulse(self, j, r=(0, 0)):
-        return self._shape.body.apply_impulse(j, r)
-
 
 def damping_velocity_func(body, gravity, damping, dt):
     """Apply custom damping to this body's velocity.
@@ -86,32 +83,6 @@
     return body
 
 
-class Overlay(object):
-    def set_game_object(self, game_object):
-        self.game_object = game_object
-
-    def render(self, surface, display_offset):
-        pass
-
-    def is_visible(self):
-        return self.game_object.puzzler.get_state()
-
-
-class TextOverlay(Overlay):
-    def __init__(self, text):
-        self.text = text
-        self.widget = LabelWidget((20, 20), self.text)
-
-    def render(self, surface, display_offset):
-        x, y = 20, 20
-        if display_offset[0] < 0:
-            x += abs(display_offset[0])
-        if display_offset[1] < 0:
-            y += abs(display_offset[1])
-        self.widget.rect.topleft = (x, y)
-        self.widget.draw(surface)
-
-
 class GameObject(object):
     """A representation of a thing in the game world.
 
@@ -119,6 +90,7 @@
     """
 
     zorder = ZORDER_LOW
+    is_moving = False  # `True` if a movement animation should play.
 
     def __init__(self, physicser, renderer, puzzler=None, overlay=None):
         self.physicser = physicser
@@ -145,6 +117,11 @@
     def get_render_angle(self):
         return self.physicser.get_angle()
 
+    def get_facing_direction(self):
+        """Used by rendererd that care what direction an object is facing.
+        """
+        return None
+
     def render(self, surface):
         return self.renderer.render(surface)
 
@@ -189,7 +166,7 @@
             SingleShapePhysicser(space, self.shape),
             render.ImageRenderer(resources.get_image('objects', 'note.png')),
             puzzle.CollidePuzzler(),
-            TextOverlay(message),
+            render.TextOverlay(message),
         )
 
 
@@ -248,3 +225,27 @@
     def collide_with_protagonist(self):
         if self.puzzler.get_state():
             DoorEvent.post(self.destination, self.dest_pos)
+
+
+class Bulkhead(GameObject):
+    zorder = ZORDER_FLOOR
+
+    def __init__(self, space, end1, end2, key_state=None):
+        body = make_body(None, None, (0, 0))
+        self.shape = pymunk.Segment(body, tuple(end1), tuple(end2), 3)
+        self.shape.collision_type = COLLISION_TYPE_DOOR
+        if key_state is None:
+            puzzler = puzzle.YesPuzzler()
+        else:
+            puzzler = puzzle.StateProxyPuzzler(key_state)
+        super(Bulkhead, self).__init__(
+            SingleShapePhysicser(space, self.shape),
+            render.ShapeStateRenderer(),
+            puzzler,
+        )
+
+    def collide_with_protagonist(self):
+        if self.puzzler.get_state():
+            # Reject the collision, we can walk through.
+            return False
+        return True
--- a/nagslang/protagonist.py	Wed Sep 04 01:23:43 2013 +0200
+++ b/nagslang/protagonist.py	Wed Sep 04 20:20:13 2013 +0200
@@ -1,15 +1,35 @@
 import pymunk
 import pymunk.pygame_util
-
-import math
+from pymunk.vec2d import Vec2d
 
 from nagslang import render
 from nagslang.constants import COLLISION_TYPE_PLAYER, ZORDER_MID
-from nagslang.game_object import GameObject, SingleShapePhysicser, make_body
+from nagslang.game_object import GameObject, Physicser, make_body
 from nagslang.mutators import FLIP_H
 from nagslang.resources import resources
 
 
+class ProtagonistPhysicser(Physicser):
+    def __init__(self, space, form_shapes):
+        self._space = space
+        self._form_shapes = form_shapes
+
+    def switch_form(self, old_form, new_form):
+        self._space.remove(self._form_shapes[old_form])
+        shape = self._form_shapes[new_form]
+        self._space.add(shape)
+        for attr, value in shape.protagonist_body_props.iteritems():
+            setattr(shape.body, attr, value)
+
+    def get_shape(self):
+        return self._form_shapes[self.game_object.form]
+
+
+class ProtagonistFormSelectionRenderer(render.RendererSelectionRenderer):
+    def select_renderer(self):
+        return self.game_object.form
+
+
 class Protagonist(GameObject):
     """Representation of our fearless protagonist.
 
@@ -17,100 +37,106 @@
     """
 
     HUMAN_FORM = 'human'
-    HUMAN_FORM_BACK = 'human_back'
     WOLF_FORM = 'wolf'
-    WOLF_FORM_BACK = 'wolf_back'
 
     def __init__(self, space, position):
-        self._setup_physics(space, position)
-        self._setup_renderers()
+        physicser = self._make_physics(space, position)
+        renderer = self._make_renderer()
         self.inventory = {}
         self.form = self.HUMAN_FORM
-        self.render_form = self.HUMAN_FORM
+        self.angle = 0
+        self.is_moving = False
 
-        super(Protagonist, self).__init__(
-            self._physicsers[self.form], self._renderers[self.form])
+        super(Protagonist, self).__init__(physicser, renderer)
         self.zorder = ZORDER_MID
 
         self.go_human()
 
-    def _setup_physics(self, space, position):
-        self._body = make_body(10, pymunk.inf, position, 0.8)
+    def _make_physics(self, space, position):
+        body = make_body(10, pymunk.inf, position, 0.8)
+        body.velocity_limit = 1000
 
-        self._shapes = {
-            self.HUMAN_FORM: pymunk.Poly(
-                self._body, [(-15, -30), (15, -30), (15, 30), (-15, 30)]),
-            self.WOLF_FORM: pymunk.Circle(self._body, 30),
+        human = pymunk.Poly(body, [(-15, -30), (15, -30), (15, 30), (-15, 30)])
+        human.elasticity = 1.0
+        human.collision_type = COLLISION_TYPE_PLAYER
+        human.protagonist_body_props = {
+            'mass': 10,
+            'damping': 0.8,
         }
-        self._shapes[self.HUMAN_FORM].friction = 1.0
-        self._shapes[self.WOLF_FORM].friction = 0.05
-        self._physicsers = {}
-        for form, shape in self._shapes.iteritems():
-            shape.elasticity = 1.0
-            shape.collision_type = COLLISION_TYPE_PLAYER
-            self._physicsers[form] = SingleShapePhysicser(space, shape)
-        self.angle = 0
+
+        wolf = pymunk.Circle(body, 30)
+        wolf.elasticity = 1.0
+        wolf.collision_type = COLLISION_TYPE_PLAYER
+        wolf.protagonist_body_props = {
+            'mass': 100,
+            'damping': 0.9,
+        }
+
+        return ProtagonistPhysicser(space, {
+            self.HUMAN_FORM: human,
+            self.WOLF_FORM: wolf,
+        })
 
     def _get_image(self, name, *transforms):
         return resources.get_image('creatures', name, transforms=transforms)
 
-    def _setup_renderers(self):
-        self._renderers = {
-            self.HUMAN_FORM: render.AnimatedFacingImageRenderer(
-                (self._get_image('human_1.png'),
-                 self._get_image('human_1.png'),
-                 self._get_image('human_1.png'),
-                 self._get_image('human_2.png'),
-                 self._get_image('human_2.png'),
-                 self._get_image('human_2.png')),
-                (self._get_image('human_1.png', FLIP_H),
-                 self._get_image('human_1.png', FLIP_H),
-                 self._get_image('human_1.png', FLIP_H),
-                 self._get_image('human_2.png', FLIP_H),
-                 self._get_image('human_2.png', FLIP_H),
-                 self._get_image('human_2.png', FLIP_H))),
-            self.HUMAN_FORM_BACK: render.AnimatedFacingImageRenderer(
-                (self._get_image('human_back_1.png'),
-                 self._get_image('human_back_1.png'),
-                 self._get_image('human_back_1.png'),
-                 self._get_image('human_back_2.png'),
-                 self._get_image('human_back_2.png'),
-                 self._get_image('human_back_2.png')),
-                (self._get_image('human_back_1.png', FLIP_H),
-                 self._get_image('human_back_1.png', FLIP_H),
-                 self._get_image('human_back_1.png', FLIP_H),
-                 self._get_image('human_back_2.png', FLIP_H),
-                 self._get_image('human_back_2.png', FLIP_H),
-                 self._get_image('human_back_2.png', FLIP_H))),
-            self.WOLF_FORM: render.AnimatedFacingImageRenderer(
-                (self._get_image('werewolf_1.png'),
-                 self._get_image('werewolf_1.png'),
-                 self._get_image('werewolf_1.png'),
-                 self._get_image('werewolf_2.png'),
-                 self._get_image('werewolf_2.png'),
-                 self._get_image('werewolf_2.png')),
-                (self._get_image('werewolf_1.png', FLIP_H),
-                 self._get_image('werewolf_1.png', FLIP_H),
-                 self._get_image('werewolf_1.png', FLIP_H),
-                 self._get_image('werewolf_2.png', FLIP_H),
-                 self._get_image('werewolf_2.png', FLIP_H),
-                 self._get_image('werewolf_2.png', FLIP_H))),
-            self.WOLF_FORM_BACK: render.AnimatedFacingImageRenderer(
-                (self._get_image('werewolf_back_1.png'),
-                 self._get_image('werewolf_back_1.png'),
-                 self._get_image('werewolf_back_1.png'),
-                 self._get_image('werewolf_back_2.png'),
-                 self._get_image('werewolf_back_2.png'),
-                 self._get_image('werewolf_back_2.png')),
-                (self._get_image('werewolf_back_1.png', FLIP_H),
-                 self._get_image('werewolf_back_1.png', FLIP_H),
-                 self._get_image('werewolf_back_1.png', FLIP_H),
-                 self._get_image('werewolf_back_2.png', FLIP_H),
-                 self._get_image('werewolf_back_2.png', FLIP_H),
-                 self._get_image('werewolf_back_2.png', FLIP_H))),
-        }
-        for renderer in self._renderers.values():
-            renderer.set_game_object(self)
+    def _make_renderer(self):
+        return ProtagonistFormSelectionRenderer({
+            self.HUMAN_FORM: render.FacingSelectionRenderer(
+                {
+                    'N': render.MovementAnimatedRenderer(
+                        [self._get_image('human_N_1.png'),
+                         self._get_image('human_N_2.png')], 3),
+                    'S': render.MovementAnimatedRenderer(
+                        [self._get_image('human_S_1.png'),
+                         self._get_image('human_S_2.png')], 3),
+                    'W': render.MovementAnimatedRenderer(
+                        [self._get_image('human_W_1.png'),
+                         self._get_image('human_W_2.png')], 3),
+                    'E': render.MovementAnimatedRenderer(
+                        [self._get_image('human_W_1.png', FLIP_H),
+                         self._get_image('human_W_2.png', FLIP_H)], 3),
+                    'NW': render.MovementAnimatedRenderer(
+                        [self._get_image('human_NW_1.png'),
+                         self._get_image('human_NW_2.png')], 3),
+                    'NE': render.MovementAnimatedRenderer(
+                        [self._get_image('human_NW_1.png', FLIP_H),
+                         self._get_image('human_NW_2.png', FLIP_H)], 3),
+                    'SW': render.MovementAnimatedRenderer(
+                        [self._get_image('human_SW_1.png'),
+                         self._get_image('human_SW_2.png')], 3),
+                    'SE': render.MovementAnimatedRenderer(
+                        [self._get_image('human_SW_1.png', FLIP_H),
+                         self._get_image('human_SW_2.png', FLIP_H)], 3),
+                }),
+            self.WOLF_FORM: render.FacingSelectionRenderer(
+                {
+                    'N': render.MovementAnimatedRenderer(
+                        [self._get_image('werewolf_N_1.png'),
+                         self._get_image('werewolf_N_2.png')], 3),
+                    'S': render.MovementAnimatedRenderer(
+                        [self._get_image('werewolf_S_1.png'),
+                         self._get_image('werewolf_S_2.png')], 3),
+                    'W': render.MovementAnimatedRenderer(
+                        [self._get_image('werewolf_W_1.png'),
+                         self._get_image('werewolf_W_2.png')], 3),
+                    'E': render.MovementAnimatedRenderer(
+                        [self._get_image('werewolf_W_1.png', FLIP_H),
+                         self._get_image('werewolf_W_2.png', FLIP_H)], 3),
+                    'NW': render.MovementAnimatedRenderer(
+                        [self._get_image('werewolf_NW_1.png'),
+                         self._get_image('werewolf_NW_2.png')], 3),
+                    'NE': render.MovementAnimatedRenderer(
+                        [self._get_image('werewolf_NW_1.png', FLIP_H),
+                         self._get_image('werewolf_NW_2.png', FLIP_H)], 3),
+                    'SW': render.MovementAnimatedRenderer(
+                        [self._get_image('werewolf_SW_1.png'),
+                         self._get_image('werewolf_SW_2.png')], 3),
+                    'SE': render.MovementAnimatedRenderer(
+                        [self._get_image('werewolf_SW_1.png', FLIP_H),
+                         self._get_image('werewolf_SW_2.png', FLIP_H)], 3),
+                }),
+        })
 
     @classmethod
     def from_saved_state(cls, saved_state):
@@ -121,88 +147,57 @@
         return obj
 
     def get_render_angle(self):
-        return self.angle
+        # No image rotation when rendering, please.
+        return 0
+
+    def get_facing_direction(self):
+        # It's easier to work with a vector than an angle here.
+        vec = Vec2d.unit()
+        vec.angle = self.angle
+        # We probably don't have exactly -1, 0, or 1 here.
+        x = int(round(vec.x))
+        y = int(round(vec.y))
+
+        return {
+            (0, 1): 'N',
+            (0, -1): 'S',
+            (-1, 0): 'W',
+            (1, 0): 'E',
+            (1, 1): 'NE',
+            (1, -1): 'SE',
+            (-1, 1): 'NW',
+            (-1, -1): 'SW',
+        }[(x, y)]
 
     def go_werewolf(self):
-        self._physicsers[self.form].remove_from_space()
+        self.physicser.switch_form(self.form, self.WOLF_FORM)
         self.form = self.WOLF_FORM
-        self._physicsers[self.form].add_to_space()
-        self.physicser = self._physicsers[self.form]
-        self._body.mass = 100
-        self._body.velocity_limit = 1000
         self.impulse_factor = 4000
-        self._body.damping = 0.9
-        if self.render_form == self.HUMAN_FORM:
-            self.render_form = self.WOLF_FORM
-        elif self.render_form == self.HUMAN_FORM_BACK:
-            self.render_form = self.WOLF_FORM_BACK
-        else:
-            self.render_form = self.WOLF_FORM
-        self.renderer = self._renderers[self.render_form]
 
     def go_human(self):
-        self._physicsers[self.form].remove_from_space()
+        self.physicser.switch_form(self.form, self.HUMAN_FORM)
         self.form = self.HUMAN_FORM
-        self._physicsers[self.form].add_to_space()
-        self.physicser = self._physicsers[self.form]
-        self._body.mass = 10
-        self._body.velocity_limit = 1000
         self.impulse_factor = 500
-        self._body.damping = 0.8
-        if self.render_form == self.WOLF_FORM:
-            self.render_form = self.HUMAN_FORM
-        elif self.render_form == self.WOLF_FORM_BACK:
-            self.render_form = self.HUMAN_FORM_BACK
-        else:
-            self.render_form = self.HUMAN_FORM
-        self.renderer = self._renderers[self.render_form]
-
-    def _switch_to_back(self):
-        if self.render_form == self.HUMAN_FORM:
-            self.render_form = self.HUMAN_FORM_BACK
-        elif self.render_form == self.WOLF_FORM:
-            self.render_form = self.WOLF_FORM_BACK
-        self.renderer = self._renderers[self.render_form]
-
-    def _switch_to_front(self):
-        if self.render_form == self.HUMAN_FORM_BACK:
-            self.render_form = self.HUMAN_FORM
-        elif self.render_form == self.WOLF_FORM_BACK:
-            self.render_form = self.WOLF_FORM
-        self.renderer = self._renderers[self.render_form]
 
     def set_direction(self, dx, dy):
         if (dx, dy) == (0, 0):
-            self.renderer.stop()
+            self.is_moving = False
             return
-        old_angle = self.angle
+        self.is_moving = True
         self.angle = pymunk.Vec2d((dx, dy)).angle
-        # If we've gone from quadrants 2 & 3 to 1 & 4 (or vice versa)
-        # switch between front & back views
-        if self.angle != math.pi:
-            # == math.pi is going straight left, which can't
-            # trigger a front/back swap and simplifies these checks
-            if self.angle > 0 and old_angle != self.angle:
-                self._switch_to_back()
-            elif self.angle < 0 and old_angle != self.angle:
-                self._switch_to_front()
-        self._body.apply_impulse(
+        self.physicser.apply_impulse(
             (dx * self.impulse_factor, dy * self.impulse_factor))
-        self.renderer.start()
 
     def set_position(self, position):
-        self._body.position = position
+        self.physicser.position = position
 
     def copy_state(self, old_protagonist):
-        self._physicsers[self.form].remove_from_space()
-        self._body.position = old_protagonist._body.position
+        self.physicser.position = old_protagonist.physicser.position
+        self.physicser.switch_form(self.form, old_protagonist.form)
+        self.impulse_factor = old_protagonist.impulse_factor
         self.form = old_protagonist.form
         self.angle = old_protagonist.angle
-        self.render_form = old_protagonist.render_form
         self.inventory = old_protagonist.inventory
-        self.renderer = self._renderers[self.render_form]
-        self._physicsers[self.form].add_to_space()
-        self.physicser = self._physicsers[self.form]
 
     def toggle_form(self):
         if self.form == self.WOLF_FORM:
@@ -233,4 +228,4 @@
     def environmental_movement(self, dx, dy):
         if (dx, dy) == (0, 0):
             return
-        self._body.apply_impulse((dx, dy))
+        self.physicser.apply_impulse((dx, dy))
--- a/nagslang/render.py	Wed Sep 04 01:23:43 2013 +0200
+++ b/nagslang/render.py	Wed Sep 04 20:20:13 2013 +0200
@@ -4,6 +4,7 @@
 import pymunk
 
 from nagslang.options import options
+from nagslang.widgets.text import LabelWidget
 
 
 class Renderer(object):
@@ -71,75 +72,66 @@
         return self._state_images[self.game_object.puzzler.get_state()]
 
 
-class FacingImageRenderer(ImageRenderer):
-    def __init__(self, left_image, right_image):
-        self._images = {
-            'left': left_image,
-            'right': right_image,
-        }
-        self._face = 'left'
+class TimedAnimatedRenderer(ImageRenderer):
+    def __init__(self, images, frame_ticks=1):
+        self._images = images
+        self._frame_ticks = frame_ticks
+        self._frame_tick = 0
+        self._frame = 0
 
-    def _update_facing(self, angle):
-        if abs(angle) < math.pi / 2:
-            self._face = 'right'
-        elif abs(angle) > math.pi / 2:
-            self._face = 'left'
+    def advance_tick(self):
+        self._frame_tick += 1
+        if self._frame_tick > self._frame_ticks:
+            self._frame_tick = 0
+            self._frame += 1
+        if self._frame >= len(self._images):
+            self._frame = 0
 
-    def rotate_image(self, image):
-        # Facing images don't get rotated.
-        return image
-
-    def get_facing_image(self):
-        return self._images[self._face]
+    def reset(self):
+        self._frame_tick = 0
+        self._frame = 0
 
     def get_image(self):
-        angle = self.game_object.get_render_angle()
-        self._update_facing(angle)
-        return self.get_facing_image()
-
-
-class AnimatedFacingImageRenderer(FacingImageRenderer):
-    def __init__(self, left_images, right_images):
-        self._images = {
-            'left': left_images,
-            'right': right_images,
-        }
-        self._frame = 0
-        self._moving = False
-        self._face = 'left'
-
-    def get_facing_image(self):
-        if self._frame >= len(self._images[self._face]):
-            self._frame = 0
-        return self._images[self._face][self._frame]
-
-    def animate(self):
-        if self._moving:
-            self._frame += 1
-        else:
-            self._frame = 0
-
-    def start(self):
-        self._moving = True
-
-    def stop(self):
-        self._moving = False
-
-
-class TimedAnimatedRenderer(ImageRenderer):
-
-    def __init__(self, images):
-        self._images = images
-        self._frame = 0
-        self._image = None
-
-    def get_image(self):
-        if self._frame > len(self._imaages):
-            self._frame = 0
         return self._images[self._frame]
 
     def animate(self):
-        self._frame += 1
+        self.advance_tick()
+
+
+class MovementAnimatedRenderer(TimedAnimatedRenderer):
+    def animate(self):
+        if self.game_object.is_moving:
+            self.advance_tick()
+        else:
+            self.reset()
+
+
+class RendererSelectionRenderer(Renderer):
+    def __init__(self, renderers):
+        self._renderers = renderers
+
+    def set_game_object(self, game_object):
+        self.game_object = game_object
+        for renderer in self._renderers.values():
+            renderer.set_game_object(game_object)
+
+    @property
+    def renderer(self):
+        return self._renderers[self.select_renderer()]
+
+    def render(self, surface):
+        return self.renderer.render(surface)
+
+    def animate(self):
+        return self.renderer.animate()
+
+    def select_renderer(self):
+        raise NotImplementedError()
+
+
+class FacingSelectionRenderer(RendererSelectionRenderer):
+    def select_renderer(self):
+        return self.game_object.get_facing_direction()
 
 
 class ShapeRenderer(Renderer):
@@ -161,3 +153,29 @@
 
         self.game_object.get_shape().color = color
         super(ShapeStateRenderer, self).render(surface)
+
+
+class Overlay(object):
+    def set_game_object(self, game_object):
+        self.game_object = game_object
+
+    def render(self, surface, display_offset):
+        pass
+
+    def is_visible(self):
+        return self.game_object.puzzler.get_state()
+
+
+class TextOverlay(Overlay):
+    def __init__(self, text):
+        self.text = text
+        self.widget = LabelWidget((20, 20), self.text)
+
+    def render(self, surface, display_offset):
+        x, y = 20, 20
+        if display_offset[0] < 0:
+            x += abs(display_offset[0])
+        if display_offset[1] < 0:
+            y += abs(display_offset[1])
+        self.widget.rect.topleft = (x, y)
+        self.widget.draw(surface)
--- a/nagslang/screens/menu.py	Wed Sep 04 01:23:43 2013 +0200
+++ b/nagslang/screens/menu.py	Wed Sep 04 20:20:13 2013 +0200
@@ -8,15 +8,47 @@
 
 
 class MenuScreen(Screen):
+    def setup(self):
+        # Position is hacked later
+        self.cursor = TextWidget((0, 0), u'\N{Rightwards Arrow}',
+                                 colour='red')
+        self.cursor_pos = 0
+        self.options = [
+            self.new_game,
+            self.load_game,
+            self.quit,
+        ]
+        self.widgets = [
+            TextWidget((10, 10), 'Menu', fontsize=20),
+            TextWidget((40, 50), 'Start new game'),
+            TextWidget((40, 70), 'Restore saved game'),
+            TextWidget((40, 90), 'Quit'),
+            self.cursor,
+        ]
 
     def handle_event(self, ev):
         if ev.type == pygame.locals.KEYDOWN:
             if ev.key == pygame.locals.K_ESCAPE:
-                QuitEvent.post()
-            elif ev.key == pygame.locals.K_1:
-                ScreenChange.post('level1', None)
+                self.quit()
+            elif ev.key == pygame.locals.K_DOWN:
+                self.cursor_pos = (self.cursor_pos + 1) % len(self.options)
+            elif ev.key == pygame.locals.K_UP:
+                self.cursor_pos = (self.cursor_pos - 1) % len(self.options)
+            elif ev.key == pygame.locals.K_RETURN:
+                self.options[self.cursor_pos]()
 
     def render(self, surface):
         surface.fill(pygame.color.Color(255, 255, 255))
-        TextWidget((10, 10), 'Menu').draw(surface)
-        TextWidget((10, 30), 'Press 1 to start').draw(surface)
+        self.cursor.pos = (10, 50 + 20 * self.cursor_pos)
+        self.cursor.rect.top = self.cursor.pos[1]
+        for widget in self.widgets:
+            widget.draw(surface)
+
+    def new_game(self):
+        ScreenChange.post('level1', None)
+
+    def load_game(self):
+        raise NotImplementedError()
+
+    def quit(self):
+        QuitEvent.post()
--- a/source/Makefile	Wed Sep 04 01:23:43 2013 +0200
+++ b/source/Makefile	Wed Sep 04 20:20:13 2013 +0200
@@ -1,20 +1,14 @@
 SOURCES = $(shell find images -name '*.svg')
-TARGETS = $(patsubst %.svg,%.png,$(SOURCES))
+TARGETS = $(patsubst %.svg,../data/%.png,$(SOURCES))
 OPTIMIZE = 1
 
 all: $(TARGETS)
 
-install: $(TARGETS)
-	set -ex; \
-	for fn in $(TARGETS); do \
-		mkdir -p ../data/"$$(dirname $$fn)"; \
-		cp $$fn ../data/$$fn; \
-	done
-
 clean:
 	rm -f $(TARGETS)
 
-%.png: %.svg
+../data/%.png: %.svg
+	mkdir -p $(dir $@)
 	inkscape --export-png $@ --export-dpi 9 $<
 ifeq ($(OPTIMIZE),1)
 	optipng -o4 -preserve $@
--- a/source/images/creatures/human_1.svg	Wed Sep 04 01:23:43 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,557 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns: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="human_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient6583">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop6585" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1;"
-         offset="1"
-         id="stop6587" />
-    </linearGradient>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6299">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path6301"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6367">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path6369"
-         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
-         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6467">
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path6469"
-         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6499">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6501" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6523">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6525" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6555">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6557" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6579">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6581" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4586">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path4588"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4008">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path4010"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-    </clipPath>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4192"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4194"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <filter
-       inkscape:collect="always"
-       id="filter5267"
-       x="-0.16879905"
-       width="1.3375981"
-       y="-0.10837393"
-       height="1.2167479">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="6.1944151"
-         id="feGaussianBlur5269" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5273">
-      <path
-         inkscape:transform-center-y="138.59293"
-         inkscape:transform-center-x="14.142136"
-         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
-         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
-         sodipodi:ry="100.71429"
-         sodipodi:rx="88.571426"
-         sodipodi:cy="225"
-         sodipodi:cx="278.57144"
-         id="path5275"
-         style="fill:#916f6f;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5515"
-       x="-0.17605084"
-       width="1.3521017"
-       y="-0.1055817"
-       height="1.2111634">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="8.0916386"
-         id="feGaussianBlur5517" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5521">
-      <path
-         sodipodi:nodetypes="czczc"
-         inkscape:connector-curvature="0"
-         id="path5523"
-         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
-         style="fill:#483737;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5691"
-       x="-0.092151701"
-       width="1.1843034"
-       y="-0.18220918"
-       height="1.3644184">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="4.7241826"
-         id="feGaussianBlur5693" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5697">
-      <path
-         sodipodi:nodetypes="ccccccc"
-         inkscape:connector-curvature="0"
-         id="path5699"
-         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
-         style="fill:#483737;stroke:none" />
-    </clipPath>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient3210"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient3212"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <filter
-       inkscape:collect="always"
-       id="filter4181"
-       x="-0.28792509"
-       width="1.5758502"
-       y="-0.085628244"
-       height="1.1712565">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="6.6644709"
-         id="feGaussianBlur4183" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4187">
-      <path
-         sodipodi:nodetypes="czsccsccc"
-         inkscape:connector-curvature="0"
-         id="path4189"
-         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4333"
-       x="-0.17848682"
-       width="1.3569736"
-       y="-0.10472454"
-       height="1.2094491">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="5.8897645"
-         id="feGaussianBlur4335" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4368">
-      <path
-         sodipodi:nodetypes="zcccccz"
-         inkscape:connector-curvature="0"
-         id="path4370"
-         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4525">
-      <path
-         sodipodi:nodetypes="czcccccc"
-         inkscape:connector-curvature="0"
-         id="path4527"
-         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4637"
-       x="-0.29566456"
-       width="1.5913291"
-       y="-0.084966793"
-       height="1.1699336">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="7.3834616"
-         id="feGaussianBlur4639" />
-    </filter>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.70710678"
-     inkscape:cx="355.7203"
-     inkscape:cy="298.97676"
-     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"
-     fit-margin-top="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     fit-margin-left="0" />
-  <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 />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(-99.174953,22.230425)">
-    <g
-       id="g5047"
-       transform="matrix(0.65794802,0.61408828,-0.61408828,0.65794801,237.59823,-449.23478)"
-       inkscape:transform-center-y="51.852354"
-       inkscape:transform-center-x="70.608158">
-      <path
-         style="fill:#916f6f;stroke:none"
-         d="m 646.4756,548.47312 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
-         id="path5041"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-      <path
-         style="fill:#000080;stroke:none"
-         d="m 649.30403,429.67917 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         id="path5043"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="zcccccz" />
-    </g>
-    <path
-       sodipodi:nodetypes="czcccccc"
-       inkscape:connector-curvature="0"
-       id="path5033"
-       d="m 381.21273,371.83172 c 18.79163,-29.82007 49.43799,-38.04222 57.27565,-16.5463 7.83765,21.49592 11.98099,53.41407 -31.8198,103.09617 36.7784,16.44269 20.72036,40.27769 31.8198,72.54915 -23.12367,11.87684 -41.82099,18.60569 -75.09474,10.18234 -8.90776,-10.18084 10.74082,-25.4147 42.00214,-29.27422 -17.37506,-16.56606 -34.5817,-33.30055 -42.00214,-59.82123 3.55524,-20.3701 4.62532,-34.1131 17.81909,-80.18591 z"
-       style="fill:#000080;stroke:none" />
-    <g
-       id="g4191"
-       transform="translate(11.313709,-70.710678)">
-      <path
-         sodipodi:nodetypes="czsccsccc"
-         inkscape:connector-curvature="0"
-         id="path4993"
-         d="m 418.78721,247.24563 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17992 61.79294,57.91208 101.82337,18.38478 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97457 11.73233,-34.66295 46.48974,-77.2162 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76955 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4187)"
-         sodipodi:nodetypes="ccccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path3227"
-         d="m 397.39401,320.38773 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 -17.1011,21.25703 -35.67363,41.60443 -19.79899,84.85281 -4.78131,76.4006 0.69986,75.83259 2.82842,100.40916 20.00634,4.58823 33.73058,-1.29371 42.42641,-15.55635 2.28969,-4.04058 -13.48309,-48.72174 -25.45584,-84.85281 13.64268,-16.54824 30.41223,-27.62448 29.69848,-69.29647 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4181)" />
-    </g>
-    <g
-       id="g4641"
-       transform="translate(-53.740116,-114.5513)">
-      <path
-         sodipodi:nodetypes="czcccccc"
-         inkscape:connector-curvature="0"
-         id="path5014"
-         d="m 496.56897,504.63249 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34897 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75299 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00061 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4525)"
-         sodipodi:nodetypes="cccccscc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path4377"
-         d="m 432.74935,522.62027 c 8.69565,-17.42519 19.6262,-29.49223 26.87006,4.24264 10.03825,49.99242 -20.71732,67.89695 -45.25484,93.3381 30.71222,9.88911 42.97592,56.10004 40.75484,81.59546 -14.52577,11.54448 -19.31393,12.59837 -38.84609,12.11292 -5.8872,-11.68777 11.02272,-19.36075 20.02092,-19.72217 23.02847,-0.92495 -25.254,-40.95795 -34.65759,-72.572 5.54095,-24.09575 0.92267,-29.12234 31.1127,-98.99495 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4637)" />
-    </g>
-    <g
-       id="g4372"
-       transform="translate(-76.367533,-130.10765)">
-      <path
-         sodipodi:nodetypes="cccccccccc"
-         inkscape:connector-curvature="0"
-         id="path5020"
-         d="m 560.20857,488.36904 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
-         style="fill:#916f6f;stroke:none" />
-      <path
-         sodipodi:nodetypes="zcccccz"
-         inkscape:connector-curvature="0"
-         id="path5018"
-         d="m 563.037,369.57509 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4368)"
-         sodipodi:nodetypes="cccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path4195"
-         d="m 492.14632,371.29942 c -8.37415,-5.79487 -16.02205,-9.41099 -16.97056,7.07107 52.42753,49.83624 61.27143,56.75956 65.05382,70.71068 -46.08607,54.91669 -32.62426,43.55735 -36.76955,52.3259 14.58206,-6.94513 32.62684,-27.74115 50.91169,-49.49747 -9.7226,-29.53274 -19.441,-58.49092 -62.2254,-80.61018 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4333)" />
-    </g>
-    <g
-       id="g3192"
-       transform="translate(-12.727922,-19.79899)">
-      <g
-         transform="translate(52.325902,1.4142136)"
-         id="g5529">
-        <path
-           sodipodi:type="arc"
-           style="fill:#916f6f;fill-opacity:1;stroke:none"
-           id="path4196"
-           sodipodi:cx="278.57144"
-           sodipodi:cy="225"
-           sodipodi:rx="88.571426"
-           sodipodi:ry="100.71429"
-           d="m 367.14287,225 c 0,55.62296 -39.65478,100.71429 -88.57143,100.71429 -48.91665,0 -88.57142,-45.09133 -88.57142,-100.71429 0,-55.62296 39.65477,-100.71429 88.57142,-100.71429 48.91665,0 88.57143,45.09133 88.57143,100.71429 z"
-           transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
-           inkscape:transform-center-x="14.142136"
-           inkscape:transform-center-y="138.59293" />
-        <path
-           style="fill:#ac9393;stroke:none;filter:url(#filter5267)"
-           d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
-           id="path5213"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="cccc"
-           clip-path="url(#clipPath5273)" />
-        <g
-           id="g4183"
-           transform="matrix(0.98436365,-0.17614827,0.17614827,0.98436365,66.73082,15.845888)">
-          <path
-             transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)"
-             d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
-             sodipodi:ry="8.5714283"
-             sodipodi:rx="8.5714283"
-             sodipodi:cy="108.07647"
-             sodipodi:cx="88.571426"
-             id="path3078"
-             style="fill:#ffffff;fill-opacity:1;stroke:none"
-             sodipodi:type="arc" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)"
-             d="m 291.42857,125.21932 c 0,19.72446 -15.98983,35.71429 -35.71429,35.71429 -19.72446,0 -35.71429,-15.98983 -35.71429,-35.71429 0,-19.72445 15.98983,-35.714285 35.71429,-35.714285 19.72446,0 35.71429,15.989835 35.71429,35.714285 z"
-             sodipodi:ry="35.714287"
-             sodipodi:rx="35.714287"
-             sodipodi:cy="125.21932"
-             sodipodi:cx="255.71428"
-             id="path3068"
-             style="fill:url(#radialGradient3210);fill-opacity:1;stroke:none"
-             sodipodi:type="arc" />
-          <path
-             sodipodi:type="arc"
-             style="fill:url(#radialGradient3212);fill-opacity:1;stroke:none"
-             id="path3070"
-             sodipodi:cx="255.71428"
-             sodipodi:cy="125.21932"
-             sodipodi:rx="35.714287"
-             sodipodi:ry="35.714287"
-             d="m 291.42857,125.21932 c 0,19.72446 -15.98983,35.71429 -35.71429,35.71429 -19.72446,0 -35.71429,-15.98983 -35.71429,-35.71429 0,-19.72445 15.98983,-35.714285 35.71429,-35.714285 19.72446,0 35.71429,15.989835 35.71429,35.714285 z"
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)"
-             d="m 120,141.6479 c 0,9.86223 -7.99491,17.85715 -17.85714,17.85715 -9.862228,0 -17.857143,-7.99492 -17.857143,-17.85715 0,-9.86222 7.994915,-17.85714 17.857143,-17.85714 9.86223,0 17.85714,7.99492 17.85714,17.85714 z"
-             sodipodi:ry="17.857143"
-             sodipodi:rx="17.857143"
-             sodipodi:cy="141.6479"
-             sodipodi:cx="102.14286"
-             id="path3072"
-             style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
-             sodipodi:type="arc" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)"
-             sodipodi:type="arc"
-             style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
-             id="path3074"
-             sodipodi:cx="102.14286"
-             sodipodi:cy="141.6479"
-             sodipodi:rx="17.857143"
-             sodipodi:ry="17.857143"
-             d="m 120,141.6479 c 0,9.86223 -7.99491,17.85715 -17.85714,17.85715 -9.862228,0 -17.857143,-7.99492 -17.857143,-17.85715 0,-9.86222 7.994915,-17.85714 17.857143,-17.85714 9.86223,0 17.85714,7.99492 17.85714,17.85714 z" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)"
-             sodipodi:type="arc"
-             style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
-             id="path3848"
-             sodipodi:cx="88.571426"
-             sodipodi:cy="108.07647"
-             sodipodi:rx="8.5714283"
-             sodipodi:ry="8.5714283"
-             d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)"
-             inkscape:transform-center-y="-8.5714283"
-             inkscape:transform-center-x="160"
-             d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
-             sodipodi:ry="8.5714283"
-             sodipodi:rx="8.5714283"
-             sodipodi:cy="108.07647"
-             sodipodi:cx="88.571426"
-             id="path3850"
-             style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
-             sodipodi:type="arc" />
-        </g>
-      </g>
-      <path
-         sodipodi:nodetypes="ccccccc"
-         inkscape:connector-curvature="0"
-         id="path4970"
-         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
-         style="fill:#483737;stroke:none" />
-      <g
-         transform="translate(45.254834,-16.970563)"
-         id="g5525">
-        <path
-           style="fill:#483737;stroke:none"
-           d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
-           id="path4972"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="czczc" />
-        <path
-           style="fill:#ac9393;stroke:none;filter:url(#filter5515)"
-           d="m 388.90873,70.071935 c 24.97231,1.895917 68.55292,-12.41651 83.4386,55.154325 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 -28.60621,-10.59511 -64.26712,-10.60816 -49.49748,-86.26703 22.75038,-73.322563 -27.13169,-86.631429 -60.81118,-97.580735 z"
-           id="path5277"
-           inkscape:connector-curvature="0"
-           transform="translate(99.174953,-22.230425)"
-           sodipodi:nodetypes="ccccc"
-           clip-path="url(#clipPath5521)" />
-      </g>
-      <path
-         clip-path="url(#clipPath5697)"
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path5545"
-         d="m 479.5984,42.184655 c 4.56123,5.03264 -25.43954,26.414954 -31.11269,41.012193 81.59853,-38.524014 52.50992,-12.187945 45.25483,-16.970562 64.56319,68.021414 22.64863,23.566763 35.35534,29.698483 0.0666,-34.315543 -8.75065,-46.973595 -49.49748,-53.740114 z"
-         style="fill:#916f6f;stroke:none;filter:url(#filter5691)" />
-    </g>
-  </g>
-</svg>
--- a/source/images/creatures/human_2.svg	Wed Sep 04 01:23:43 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,565 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns: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="human_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient6583">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop6585" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1;"
-         offset="1"
-         id="stop6587" />
-    </linearGradient>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6299">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path6301"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6367">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path6369"
-         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
-         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6467">
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path6469"
-         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6499">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6501" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6523">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6525" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6555">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6557" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6579">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6581" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4586">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path4588"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4008">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path4010"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-    </clipPath>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4192"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4194"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <filter
-       inkscape:collect="always"
-       id="filter5267"
-       x="-0.16879905"
-       width="1.3375981"
-       y="-0.10837393"
-       height="1.2167479">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="6.1944151"
-         id="feGaussianBlur5269" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5273">
-      <path
-         inkscape:transform-center-y="138.59293"
-         inkscape:transform-center-x="14.142136"
-         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
-         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
-         sodipodi:ry="100.71429"
-         sodipodi:rx="88.571426"
-         sodipodi:cy="225"
-         sodipodi:cx="278.57144"
-         id="path5275"
-         style="fill:#916f6f;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5515"
-       x="-0.17605084"
-       width="1.3521017"
-       y="-0.1055817"
-       height="1.2111634">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="8.0916386"
-         id="feGaussianBlur5517" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5521">
-      <path
-         sodipodi:nodetypes="czczc"
-         inkscape:connector-curvature="0"
-         id="path5523"
-         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
-         style="fill:#483737;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5691"
-       x="-0.092151701"
-       width="1.1843034"
-       y="-0.18220918"
-       height="1.3644184">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="4.7241826"
-         id="feGaussianBlur5693" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5697">
-      <path
-         sodipodi:nodetypes="ccccccc"
-         inkscape:connector-curvature="0"
-         id="path5699"
-         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
-         style="fill:#483737;stroke:none" />
-    </clipPath>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient3210"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient3212"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <filter
-       inkscape:collect="always"
-       id="filter4181"
-       x="-0.28792509"
-       width="1.5758502"
-       y="-0.085628244"
-       height="1.1712565">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="6.6644709"
-         id="feGaussianBlur4183" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4187">
-      <path
-         sodipodi:nodetypes="czsccsccc"
-         inkscape:connector-curvature="0"
-         id="path4189"
-         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4333"
-       x="-0.17848682"
-       width="1.3569736"
-       y="-0.10472454"
-       height="1.2094491">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="5.8897645"
-         id="feGaussianBlur4335" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4368">
-      <path
-         sodipodi:nodetypes="zcccccz"
-         inkscape:connector-curvature="0"
-         id="path4370"
-         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4525">
-      <path
-         sodipodi:nodetypes="czcccccc"
-         inkscape:connector-curvature="0"
-         id="path4527"
-         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4637"
-       x="-0.29566456"
-       width="1.5913291"
-       y="-0.084966793"
-       height="1.1699336">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="7.3834616"
-         id="feGaussianBlur4639" />
-    </filter>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.70710678"
-     inkscape:cx="355.7203"
-     inkscape:cy="298.97676"
-     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"
-     fit-margin-top="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     fit-margin-left="0" />
-  <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(-99.174953,22.230425)">
-    <g
-       id="g5047"
-       transform="matrix(0.36190724,0.82402862,-0.82402861,0.36190724,524.23411,-465.37442)"
-       inkscape:transform-center-y="32.451439"
-       inkscape:transform-center-x="86.393049">
-      <path
-         style="fill:#916f6f;stroke:none"
-         d="m 646.4756,548.47312 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
-         id="path5041"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-      <path
-         style="fill:#000080;stroke:none"
-         d="m 649.30403,429.67917 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         id="path5043"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="zcccccz" />
-    </g>
-    <path
-       sodipodi:nodetypes="czcccccc"
-       inkscape:connector-curvature="0"
-       id="path5033"
-       d="m 397.92543,402.44336 c -6.97371,-34.55039 9.53558,-61.64737 30.04057,-51.49607 20.50498,10.15132 45.52715,30.39549 48.10327,96.57845 37.96623,-13.47509 42.78895,14.85703 73.08987,30.55731 -8.54252,24.55176 -17.43321,42.32317 -47.32945,59.18465 -13.47228,-1.22285 -9.76141,-25.80672 10.20317,-50.17026 -24.00681,-0.002 -48.00793,-0.24268 -71.67795,-14.31889 -11.48177,-17.19738 -20.18972,-27.88319 -42.42948,-70.33519 z"
-       style="fill:#000080;stroke:none"
-       inkscape:transform-center-x="-44.922255"
-       inkscape:transform-center-y="76.76831" />
-    <g
-       id="g4191"
-       transform="translate(11.313709,-70.710678)">
-      <path
-         sodipodi:nodetypes="czsccsccc"
-         inkscape:connector-curvature="0"
-         id="path4993"
-         d="m 418.78721,247.24563 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17992 61.79294,57.91208 101.82337,18.38478 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97457 11.73233,-34.66295 46.48974,-77.2162 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76955 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4187)"
-         sodipodi:nodetypes="ccccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path3227"
-         d="m 397.39401,320.38773 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 -17.1011,21.25703 -35.67363,41.60443 -19.79899,84.85281 -4.78131,76.4006 0.69986,75.83259 2.82842,100.40916 20.00634,4.58823 33.73058,-1.29371 42.42641,-15.55635 2.28969,-4.04058 -13.48309,-48.72174 -25.45584,-84.85281 13.64268,-16.54824 30.41223,-27.62448 29.69848,-69.29647 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4181)" />
-    </g>
-    <g
-       id="g4641"
-       transform="matrix(0.88545732,0.4647207,-0.4647207,0.88545732,241.94886,-305.70322)"
-       inkscape:transform-center-x="54.807539"
-       inkscape:transform-center-y="69.703021">
-      <path
-         sodipodi:nodetypes="czcccccc"
-         inkscape:connector-curvature="0"
-         id="path5014"
-         d="m 496.56897,504.63249 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34897 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75299 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00061 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4525)"
-         sodipodi:nodetypes="cccccscc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path4377"
-         d="m 432.74935,522.62027 c 8.69565,-17.42519 19.6262,-29.49223 26.87006,4.24264 10.03825,49.99242 -20.71732,67.89695 -45.25484,93.3381 30.71222,9.88911 42.97592,56.10004 40.75484,81.59546 -14.52577,11.54448 -19.31393,12.59837 -38.84609,12.11292 -5.8872,-11.68777 11.02272,-19.36075 20.02092,-19.72217 23.02847,-0.92495 -25.254,-40.95795 -34.65759,-72.572 5.54095,-24.09575 0.92267,-29.12234 31.1127,-98.99495 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4637)" />
-    </g>
-    <g
-       id="g4372"
-       transform="matrix(0.8799328,-0.47509816,0.47509816,0.8799328,-176.99351,190.26961)"
-       inkscape:transform-center-y="95.985606"
-       inkscape:transform-center-x="-38.089074">
-      <path
-         sodipodi:nodetypes="cccccccccc"
-         inkscape:connector-curvature="0"
-         id="path5020"
-         d="m 560.20857,488.36904 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
-         style="fill:#916f6f;stroke:none" />
-      <path
-         sodipodi:nodetypes="zcccccz"
-         inkscape:connector-curvature="0"
-         id="path5018"
-         d="m 563.037,369.57509 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4368)"
-         sodipodi:nodetypes="cccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path4195"
-         d="m 492.14632,371.29942 c -8.37415,-5.79487 -16.02205,-9.41099 -16.97056,7.07107 52.42753,49.83624 61.27143,56.75956 65.05382,70.71068 -46.08607,54.91669 -32.62426,43.55735 -36.76955,52.3259 14.58206,-6.94513 32.62684,-27.74115 50.91169,-49.49747 -9.7226,-29.53274 -19.441,-58.49092 -62.2254,-80.61018 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4333)" />
-    </g>
-    <g
-       id="g3192"
-       transform="matrix(0.992927,0.11872647,-0.11872647,0.992927,11.742484,-71.705766)"
-       inkscape:transform-center-x="-72.814863"
-       inkscape:transform-center-y="-45.32345">
-      <g
-         transform="translate(52.325902,1.4142136)"
-         id="g5529">
-        <path
-           sodipodi:type="arc"
-           style="fill:#916f6f;fill-opacity:1;stroke:none"
-           id="path4196"
-           sodipodi:cx="278.57144"
-           sodipodi:cy="225"
-           sodipodi:rx="88.571426"
-           sodipodi:ry="100.71429"
-           d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
-           transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
-           inkscape:transform-center-x="14.142136"
-           inkscape:transform-center-y="138.59293" />
-        <path
-           style="fill:#ac9393;stroke:none;filter:url(#filter5267)"
-           d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
-           id="path5213"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="cccc"
-           clip-path="url(#clipPath5273)" />
-        <g
-           id="g4183"
-           transform="matrix(0.98436365,-0.17614827,0.17614827,0.98436365,66.73082,15.845888)">
-          <path
-             transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)"
-             d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-             sodipodi:ry="8.5714283"
-             sodipodi:rx="8.5714283"
-             sodipodi:cy="108.07647"
-             sodipodi:cx="88.571426"
-             id="path3078"
-             style="fill:#ffffff;fill-opacity:1;stroke:none"
-             sodipodi:type="arc" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)"
-             d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-             sodipodi:ry="35.714287"
-             sodipodi:rx="35.714287"
-             sodipodi:cy="125.21932"
-             sodipodi:cx="255.71428"
-             id="path3068"
-             style="fill:url(#radialGradient3210);fill-opacity:1;stroke:none"
-             sodipodi:type="arc" />
-          <path
-             sodipodi:type="arc"
-             style="fill:url(#radialGradient3212);fill-opacity:1;stroke:none"
-             id="path3070"
-             sodipodi:cx="255.71428"
-             sodipodi:cy="125.21932"
-             sodipodi:rx="35.714287"
-             sodipodi:ry="35.714287"
-             d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)"
-             d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
-             sodipodi:ry="17.857143"
-             sodipodi:rx="17.857143"
-             sodipodi:cy="141.6479"
-             sodipodi:cx="102.14286"
-             id="path3072"
-             style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
-             sodipodi:type="arc" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)"
-             sodipodi:type="arc"
-             style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
-             id="path3074"
-             sodipodi:cx="102.14286"
-             sodipodi:cy="141.6479"
-             sodipodi:rx="17.857143"
-             sodipodi:ry="17.857143"
-             d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)"
-             sodipodi:type="arc"
-             style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
-             id="path3848"
-             sodipodi:cx="88.571426"
-             sodipodi:cy="108.07647"
-             sodipodi:rx="8.5714283"
-             sodipodi:ry="8.5714283"
-             d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z" />
-          <path
-             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)"
-             inkscape:transform-center-y="-8.5714283"
-             inkscape:transform-center-x="160"
-             d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-             sodipodi:ry="8.5714283"
-             sodipodi:rx="8.5714283"
-             sodipodi:cy="108.07647"
-             sodipodi:cx="88.571426"
-             id="path3850"
-             style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
-             sodipodi:type="arc" />
-        </g>
-      </g>
-      <path
-         sodipodi:nodetypes="ccccccc"
-         inkscape:connector-curvature="0"
-         id="path4970"
-         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
-         style="fill:#483737;stroke:none" />
-      <g
-         transform="translate(45.254834,-16.970563)"
-         id="g5525">
-        <path
-           style="fill:#483737;stroke:none"
-           d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
-           id="path4972"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="czczc" />
-        <path
-           style="fill:#ac9393;stroke:none;filter:url(#filter5515)"
-           d="m 388.90873,70.071935 c 24.97231,1.895917 68.55292,-12.41651 83.4386,55.154325 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 -28.60621,-10.59511 -64.26712,-10.60816 -49.49748,-86.26703 22.75038,-73.322563 -27.13169,-86.631429 -60.81118,-97.580735 z"
-           id="path5277"
-           inkscape:connector-curvature="0"
-           transform="translate(99.174953,-22.230425)"
-           sodipodi:nodetypes="ccccc"
-           clip-path="url(#clipPath5521)" />
-      </g>
-      <path
-         clip-path="url(#clipPath5697)"
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path5545"
-         d="m 479.5984,42.184655 c 4.56123,5.03264 -25.43954,26.414954 -31.11269,41.012193 81.59853,-38.524014 52.50992,-12.187945 45.25483,-16.970562 64.56319,68.021414 22.64863,23.566763 35.35534,29.698483 0.0666,-34.315543 -8.75065,-46.973595 -49.49748,-53.740114 z"
-         style="fill:#916f6f;stroke:none;filter:url(#filter5691)" />
-    </g>
-  </g>
-</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/human_NW_1.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,554 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="human_back_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4192"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4194"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter5267"
+       x="-0.16879905"
+       width="1.3375981"
+       y="-0.10837393"
+       height="1.2167479">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.1944151"
+         id="feGaussianBlur5269" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5273">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path5275"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5515"
+       x="-0.17605084"
+       width="1.3521017"
+       y="-0.1055817"
+       height="1.2111634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.0916386"
+         id="feGaussianBlur5517" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5521">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path5523"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5691"
+       x="-0.092151701"
+       width="1.1843034"
+       y="-0.18220918"
+       height="1.3644184">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="4.7241826"
+         id="feGaussianBlur5693" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4181"
+       x="-0.28792509"
+       width="1.5758502"
+       y="-0.085628244"
+       height="1.1712565">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.6644709"
+         id="feGaussianBlur4183" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4187">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4189"
+         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4333"
+       x="-0.17848682"
+       width="1.3569736"
+       y="-0.10472454"
+       height="1.2094491">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.8897645"
+         id="feGaussianBlur4335" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4368">
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path4370"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4525">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path4527"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4637"
+       x="-0.29566456"
+       width="1.5913291"
+       y="-0.084966793"
+       height="1.1699336">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.3834616"
+         id="feGaussianBlur4639" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6864"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6866"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6881">
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path6883"
+         d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="355.7203"
+     inkscape:cy="298.97676"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1;stroke:none"
+       id="path3078"
+       sodipodi:cx="88.571426"
+       sodipodi:cy="108.07647"
+       sodipodi:rx="8.5714283"
+       sodipodi:ry="8.5714283"
+       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+       transform="matrix(0.97732175,0.21175978,-0.21175978,0.97732175,414.98242,-42.891567)" />
+    <path
+       d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+       sodipodi:ry="17.857143"
+       sodipodi:rx="17.857143"
+       sodipodi:cy="141.6479"
+       sodipodi:cx="102.14286"
+       id="path3074"
+       style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
+       sodipodi:type="arc"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,250.4208,-9.7842517)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:url(#radialGradient6864);fill-opacity:1;stroke:none"
+       id="path3068"
+       sodipodi:cx="255.71428"
+       sodipodi:cy="125.21932"
+       sodipodi:rx="35.714287"
+       sodipodi:ry="35.714287"
+       d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,112.83278,38.803808)" />
+    <path
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,193.87354,41.2255)"
+       d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+       sodipodi:ry="35.714287"
+       sodipodi:rx="35.714287"
+       sodipodi:cy="125.21932"
+       sodipodi:cx="255.71428"
+       id="path3070"
+       style="fill:url(#radialGradient6866);fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
+       id="path3072"
+       sodipodi:cx="102.14286"
+       sodipodi:cy="141.6479"
+       sodipodi:rx="17.857143"
+       sodipodi:ry="17.857143"
+       d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,331.46155,-7.3625539)" />
+    <path
+       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+       sodipodi:ry="8.5714283"
+       sodipodi:rx="8.5714283"
+       sodipodi:cy="108.07647"
+       sodipodi:cx="88.571426"
+       id="path3848"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
+       sodipodi:type="arc"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,365.07492,14.762439)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
+       id="path3850"
+       sodipodi:cx="88.571426"
+       sodipodi:cy="108.07647"
+       sodipodi:rx="8.5714283"
+       sodipodi:ry="8.5714283"
+       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+       inkscape:transform-center-x="160"
+       inkscape:transform-center-y="-8.5714283"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,284.34506,13.735085)" />
+    <g
+       id="g5047"
+       transform="matrix(0.73856075,-0.5143229,0.51432288,0.73856074,-211.15821,262.42374)"
+       inkscape:transform-center-y="79.45222"
+       inkscape:transform-center-x="-36.933139">
+      <path
+         style="fill:#916f6f;stroke:none"
+         d="m 646.4756,548.47312 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
+         id="path5041"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccc" />
+      <path
+         style="fill:#000080;stroke:none"
+         d="m 649.30403,429.67917 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         id="path5043"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="zcccccz" />
+    </g>
+    <path
+       sodipodi:nodetypes="czcccccc"
+       inkscape:connector-curvature="0"
+       id="path5033"
+       d="m 453.91604,395.17577 c 2.30968,-35.1714 25.33396,-57.00453 42.46838,-41.84157 17.13441,15.16296 35.98775,41.24911 21.15674,105.80034 40.16938,-3.07141 37.41071,25.53554 62.54784,48.61734 -14.66909,21.46116 -27.90008,36.28709 -61.16671,44.7385 -12.68294,-4.7054 -2.66876,-27.46179 22.9752,-45.75259 -23.16983,-6.28381 -46.27186,-12.79595 -65.43405,-32.57522 -6.58189,-19.60254 -12.19043,-32.19458 -22.5474,-78.9868 z"
+       style="fill:#000080;stroke:none"
+       inkscape:transform-center-x="-39.696898"
+       inkscape:transform-center-y="74.308403" />
+    <g
+       id="g4191"
+       transform="translate(11.313709,-70.710678)">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4993"
+         d="m 418.78721,247.24563 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17992 61.79294,57.91208 101.82337,18.38478 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97457 11.73233,-34.66295 46.48974,-77.2162 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76955 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4187)"
+         sodipodi:nodetypes="ccccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path3227"
+         d="m 397.39401,320.38773 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 -17.1011,21.25703 -35.67363,41.60443 -19.79899,84.85281 -4.78131,76.4006 0.69986,75.83259 2.82842,100.40916 20.00634,4.58823 33.73058,-1.29371 42.42641,-15.55635 2.28969,-4.04058 -13.48309,-48.72174 -25.45584,-84.85281 13.64268,-16.54824 30.41223,-27.62448 29.69848,-69.29647 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4181)" />
+    </g>
+    <g
+       id="g4641"
+       transform="matrix(0.96754215,0.25270971,-0.25270971,0.96754215,21.467278,-242.42758)"
+       inkscape:transform-center-x="40.134896"
+       inkscape:transform-center-y="77.094402">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path5014"
+         d="m 496.56897,504.63249 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34897 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75299 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00061 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4525)"
+         sodipodi:nodetypes="cccccscc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path4377"
+         d="m 432.74935,522.62027 c 8.69565,-17.42519 19.6262,-29.49223 26.87006,4.24264 10.03825,49.99242 -20.71732,67.89695 -45.25484,93.3381 30.71222,9.88911 42.97592,56.10004 40.75484,81.59546 -14.52577,11.54448 -19.31393,12.59837 -38.84609,12.11292 -5.8872,-11.68777 11.02272,-19.36075 20.02092,-19.72217 23.02847,-0.92495 -25.254,-40.95795 -34.65759,-72.572 5.54095,-24.09575 0.92267,-29.12234 31.1127,-98.99495 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4637)" />
+    </g>
+    <g
+       id="g4372"
+       transform="matrix(0.69676753,0.71729701,-0.71729701,0.69676753,266.36388,-435.49523)"
+       inkscape:transform-center-y="57.948919"
+       inkscape:transform-center-x="85.311051">
+      <path
+         sodipodi:nodetypes="cccccccccc"
+         inkscape:connector-curvature="0"
+         id="path5020"
+         d="m 560.20857,488.36904 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
+         style="fill:#916f6f;stroke:none" />
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path5018"
+         d="m 563.037,369.57509 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4368)"
+         sodipodi:nodetypes="cccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path4195"
+         d="m 492.14632,371.29942 c -8.37415,-5.79487 -16.02205,-9.41099 -16.97056,7.07107 52.42753,49.83624 61.27143,56.75956 65.05382,70.71068 -46.08607,54.91669 -32.62426,43.55735 -36.76955,52.3259 14.58206,-6.94513 32.62684,-27.74115 50.91169,-49.49747 -9.7226,-29.53274 -19.441,-58.49092 -62.2254,-80.61018 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4333)" />
+    </g>
+    <path
+       sodipodi:type="arc"
+       style="fill:#916f6f;fill-opacity:1;stroke:none"
+       id="path4196"
+       sodipodi:cx="278.57144"
+       sodipodi:cy="225"
+       sodipodi:rx="88.571426"
+       sodipodi:ry="100.71429"
+       d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+       transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,325.50583,-155.01958)"
+       inkscape:transform-center-x="14.142136"
+       inkscape:transform-center-y="138.59293" />
+    <path
+       style="fill:#ac9393;stroke:none;filter:url(#filter5267)"
+       d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
+       id="path5213"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc"
+       clip-path="url(#clipPath5273)"
+       transform="translate(39.59798,-18.384776)" />
+    <path
+       style="fill:#483737;stroke:none"
+       d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
+       id="path4970"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:#916f6f;stroke:none;filter:url(#filter5691)"
+       d="m 424.44407,19.557237 c -5.23574,2.409254 52.79663,20.600964 65.05383,43.84062 12.2572,23.239657 4.42667,18.924752 -16.97056,22.627422 C 528.55865,85.896309 525.94323,73.4245 509.29689,45.01308 492.65055,16.60166 460.10292,0.88385385 424.44407,19.557237 z"
+       id="path5545"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="czczc"
+       clip-path="url(#clipPath6881)" />
+    <g
+       id="g5525"
+       transform="matrix(0.95739822,-0.28877094,0.28877094,0.95739822,18.30728,160.809)"
+       inkscape:transform-center-x="-93.335368"
+       inkscape:transform-center-y="57.50885">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path4972"
+         d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+      <path
+         clip-path="url(#clipPath5521)"
+         sodipodi:nodetypes="ccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path5277"
+         d="m 370.52395,71.486149 c 24.97231,1.895917 86.9377,-13.830724 101.82338,53.740111 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 C 470.61118,243.32459 434.95027,243.31154 449.71991,167.65267 432.41312,97.411428 400.75313,82.700864 370.52395,71.486149 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter5515)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/human_NW_2.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,554 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="human_back_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4192"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4194"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter5267"
+       x="-0.16879905"
+       width="1.3375981"
+       y="-0.10837393"
+       height="1.2167479">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.1944151"
+         id="feGaussianBlur5269" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5273">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path5275"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5515"
+       x="-0.17605084"
+       width="1.3521017"
+       y="-0.1055817"
+       height="1.2111634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.0916386"
+         id="feGaussianBlur5517" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5521">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path5523"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5691"
+       x="-0.092151701"
+       width="1.1843034"
+       y="-0.18220918"
+       height="1.3644184">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="4.7241826"
+         id="feGaussianBlur5693" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4181"
+       x="-0.28792509"
+       width="1.5758502"
+       y="-0.085628244"
+       height="1.1712565">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.6644709"
+         id="feGaussianBlur4183" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4187">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4189"
+         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4333"
+       x="-0.17848682"
+       width="1.3569736"
+       y="-0.10472454"
+       height="1.2094491">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.8897645"
+         id="feGaussianBlur4335" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4368">
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path4370"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4525">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path4527"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4637"
+       x="-0.29566456"
+       width="1.5913291"
+       y="-0.084966793"
+       height="1.1699336">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.3834616"
+         id="feGaussianBlur4639" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6864"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6866"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6881">
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path6883"
+         d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="355.7203"
+     inkscape:cy="298.97676"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1;stroke:none"
+       id="path3078"
+       sodipodi:cx="88.571426"
+       sodipodi:cy="108.07647"
+       sodipodi:rx="8.5714283"
+       sodipodi:ry="8.5714283"
+       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+       transform="matrix(0.97732175,0.21175978,-0.21175978,0.97732175,414.98242,-42.891567)" />
+    <path
+       d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+       sodipodi:ry="17.857143"
+       sodipodi:rx="17.857143"
+       sodipodi:cy="141.6479"
+       sodipodi:cx="102.14286"
+       id="path3074"
+       style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
+       sodipodi:type="arc"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,250.4208,-9.7842517)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:url(#radialGradient6864);fill-opacity:1;stroke:none"
+       id="path3068"
+       sodipodi:cx="255.71428"
+       sodipodi:cy="125.21932"
+       sodipodi:rx="35.714287"
+       sodipodi:ry="35.714287"
+       d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,112.83278,38.803808)" />
+    <path
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,193.87354,41.2255)"
+       d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+       sodipodi:ry="35.714287"
+       sodipodi:rx="35.714287"
+       sodipodi:cy="125.21932"
+       sodipodi:cx="255.71428"
+       id="path3070"
+       style="fill:url(#radialGradient6866);fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
+       id="path3072"
+       sodipodi:cx="102.14286"
+       sodipodi:cy="141.6479"
+       sodipodi:rx="17.857143"
+       sodipodi:ry="17.857143"
+       d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,331.46155,-7.3625539)" />
+    <path
+       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+       sodipodi:ry="8.5714283"
+       sodipodi:rx="8.5714283"
+       sodipodi:cy="108.07647"
+       sodipodi:cx="88.571426"
+       id="path3848"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
+       sodipodi:type="arc"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,365.07492,14.762439)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
+       id="path3850"
+       sodipodi:cx="88.571426"
+       sodipodi:cy="108.07647"
+       sodipodi:rx="8.5714283"
+       sodipodi:ry="8.5714283"
+       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+       inkscape:transform-center-x="160"
+       inkscape:transform-center-y="-8.5714283"
+       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,284.34506,13.735085)" />
+    <g
+       id="g5047"
+       transform="matrix(0.44203969,0.78396489,-0.78396487,0.44203967,539.27209,-481.15079)"
+       inkscape:transform-center-y="32.026988"
+       inkscape:transform-center-x="81.622989">
+      <path
+         style="fill:#916f6f;stroke:none"
+         d="m 646.4756,548.47312 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
+         id="path5041"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccc" />
+      <path
+         style="fill:#000080;stroke:none"
+         d="m 649.30403,429.67917 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         id="path5043"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="zcccccz" />
+    </g>
+    <path
+       sodipodi:nodetypes="czcccccc"
+       inkscape:connector-curvature="0"
+       id="path5033"
+       d="m 450.45937,362.45063 c 33.10464,-12.10144 62.38035,0.13523 55.43549,21.93597 -6.94486,21.80074 -23.18646,49.58826 -88.22512,62.10997 19.04338,35.50158 -8.23822,44.53938 -19.19223,76.8605 -25.55882,-4.74452 -44.46721,-10.85516 -65.64201,-37.86855 -0.82164,-13.50269 24.0407,-13.53946 51.13495,2.52501 -3.61601,-23.73292 -6.99578,-47.49611 3.35211,-73.01728 15.27042,-13.94257 24.52171,-24.16161 63.13681,-52.54562 z"
+       style="fill:#000080;stroke:none"
+       inkscape:transform-center-x="57.435724"
+       inkscape:transform-center-y="64.358655" />
+    <g
+       id="g4191"
+       transform="translate(11.313709,-70.710678)">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4993"
+         d="m 418.78721,247.24563 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17992 61.79294,57.91208 101.82337,18.38478 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97457 11.73233,-34.66295 46.48974,-77.2162 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76955 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4187)"
+         sodipodi:nodetypes="ccccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path3227"
+         d="m 397.39401,320.38773 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 -17.1011,21.25703 -35.67363,41.60443 -19.79899,84.85281 -4.78131,76.4006 0.69986,75.83259 2.82842,100.40916 20.00634,4.58823 33.73058,-1.29371 42.42641,-15.55635 2.28969,-4.04058 -13.48309,-48.72174 -25.45584,-84.85281 13.64268,-16.54824 30.41223,-27.62448 29.69848,-69.29647 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4181)" />
+    </g>
+    <g
+       id="g4641"
+       transform="matrix(0.70530053,-0.70890844,0.70890844,0.70530053,-321.24373,405.85437)"
+       inkscape:transform-center-x="-56.687185"
+       inkscape:transform-center-y="73.176784">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path5014"
+         d="m 496.56897,504.63249 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34897 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75299 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00061 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4525)"
+         sodipodi:nodetypes="cccccscc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path4377"
+         d="m 432.74935,522.62027 c 8.69565,-17.42519 19.6262,-29.49223 26.87006,4.24264 10.03825,49.99242 -20.71732,67.89695 -45.25484,93.3381 30.71222,9.88911 42.97592,56.10004 40.75484,81.59546 -14.52577,11.54448 -19.31393,12.59837 -38.84609,12.11292 -5.8872,-11.68777 11.02272,-19.36075 20.02092,-19.72217 23.02847,-0.92495 -25.254,-40.95795 -34.65759,-72.572 5.54095,-24.09575 0.92267,-29.12234 31.1127,-98.99495 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4637)" />
+    </g>
+    <g
+       id="g4372"
+       transform="matrix(0.97566928,0.21924744,-0.21924744,0.97566928,-75.323519,-245.06395)"
+       inkscape:transform-center-y="90.61759"
+       inkscape:transform-center-x="29.854106">
+      <path
+         sodipodi:nodetypes="cccccccccc"
+         inkscape:connector-curvature="0"
+         id="path5020"
+         d="m 560.20857,488.36904 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
+         style="fill:#916f6f;stroke:none" />
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path5018"
+         d="m 563.037,369.57509 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4368)"
+         sodipodi:nodetypes="cccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path4195"
+         d="m 492.14632,371.29942 c -8.37415,-5.79487 -16.02205,-9.41099 -16.97056,7.07107 52.42753,49.83624 61.27143,56.75956 65.05382,70.71068 -46.08607,54.91669 -32.62426,43.55735 -36.76955,52.3259 14.58206,-6.94513 32.62684,-27.74115 50.91169,-49.49747 -9.7226,-29.53274 -19.441,-58.49092 -62.2254,-80.61018 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4333)" />
+    </g>
+    <path
+       sodipodi:type="arc"
+       style="fill:#916f6f;fill-opacity:1;stroke:none"
+       id="path4196"
+       sodipodi:cx="278.57144"
+       sodipodi:cy="225"
+       sodipodi:rx="88.571426"
+       sodipodi:ry="100.71429"
+       d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+       transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,325.50583,-155.01958)"
+       inkscape:transform-center-x="14.142136"
+       inkscape:transform-center-y="138.59293" />
+    <path
+       style="fill:#ac9393;stroke:none;filter:url(#filter5267)"
+       d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
+       id="path5213"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc"
+       clip-path="url(#clipPath5273)"
+       transform="translate(39.59798,-18.384776)" />
+    <path
+       style="fill:#483737;stroke:none"
+       d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
+       id="path4970"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:#916f6f;stroke:none;filter:url(#filter5691)"
+       d="m 424.44407,19.557237 c -5.23574,2.409254 52.79663,20.600964 65.05383,43.84062 12.2572,23.239657 4.42667,18.924752 -16.97056,22.627422 C 528.55865,85.896309 525.94323,73.4245 509.29689,45.01308 492.65055,16.60166 460.10292,0.88385385 424.44407,19.557237 z"
+       id="path5545"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="czczc"
+       clip-path="url(#clipPath6881)" />
+    <g
+       id="g5525"
+       transform="matrix(0.99994557,-0.01043353,0.01043353,0.99994557,13.594166,27.538401)"
+       inkscape:transform-center-x="-70.267909"
+       inkscape:transform-center-y="81.26246">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path4972"
+         d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+      <path
+         clip-path="url(#clipPath5521)"
+         sodipodi:nodetypes="ccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path5277"
+         d="m 370.52395,71.486149 c 24.97231,1.895917 86.9377,-13.830724 101.82338,53.740111 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 C 470.61118,243.32459 434.95027,243.31154 449.71991,167.65267 432.41312,97.411428 400.75313,82.700864 370.52395,71.486149 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter5515)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/human_N_1.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,895 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="human_S_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4192"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4194"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter5267"
+       x="-0.16879905"
+       width="1.3375981"
+       y="-0.10837393"
+       height="1.2167479">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.1944151"
+         id="feGaussianBlur5269" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5273">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path5275"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5515"
+       x="-0.17605084"
+       width="1.3521017"
+       y="-0.1055817"
+       height="1.2111634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.0916386"
+         id="feGaussianBlur5517" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5521">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path5523"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5691"
+       x="-0.092151701"
+       width="1.1843034"
+       y="-0.18220918"
+       height="1.3644184">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="4.7241826"
+         id="feGaussianBlur5693" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4368">
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path4370"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4525">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path4527"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3245"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3247"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3307"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3309"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4432">
+      <g
+         id="g4434">
+        <g
+           id="g4436">
+          <path
+             sodipodi:nodetypes="ccccccc"
+             inkscape:connector-curvature="0"
+             id="path4438"
+             d="m 485.12705,350.4832 c -18.10488,-6.01121 -59.37527,28.33507 -22.62743,101.82338 -17.59273,61.48936 22.7865,58.51027 9.8995,93.33809 -2.01473,0.88196 -26.66019,62.02504 12.72794,53.74011 33.52476,7.3279 39.22368,-22.73394 9.89948,-60.81117 29.07961,-59.36994 7.67013,-72.32831 15.55635,-93.3381 -0.67997,-18.48347 9.43734,-88.60689 -25.45584,-94.75231 z"
+             style="fill:#0000ff;stroke:none" />
+          <path
+             sodipodi:nodetypes="czsccsccc"
+             inkscape:connector-curvature="0"
+             id="path4440"
+             d="m 424.44407,179.36337 c 0.34265,28.91674 -29.41148,27.11787 -45.25484,49.49747 -15.84335,22.3796 32.11855,40.6523 25.36941,79.87425 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17992 85.83458,42.35573 125.865,2.82843 8.79411,-28.10005 -26.68852,-55.86083 -16.96798,-84.14614 11.75524,-34.206 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+             style="fill:#0000ff;stroke:none" />
+        </g>
+      </g>
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4512"
+       x="-0.27638007"
+       width="1.5527601"
+       y="-0.086705384"
+       height="1.1734108">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.6930046"
+         id="feGaussianBlur4514" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4522">
+      <g
+         inkscape:transform-center-y="116.01002"
+         inkscape:transform-center-x="32.044415"
+         transform="matrix(-0.99397367,-0.10961908,-0.10961908,0.99397367,824.28876,91.102486)"
+         id="g4524">
+        <path
+           style="fill:#916f6f;stroke:none"
+           d="m 548.3487,398.40202 c 9.63446,5.61429 0.41155,10.64556 12.92164,25.50091 13.99724,17.698 11.38556,36.82592 11.6459,53.37016 -7.22853,-1.68946 -10.64943,-35.831 -20.38939,-43.29289 3.05357,24.58049 1.58233,33.45282 -4.18013,45.92535 -5.60684,-19.76457 -3.48917,-41.18556 -10.66933,-42.53514 -3.18346,27.38987 -4.59902,30.75117 -13.70601,41.96621 -5.25175,-14.06519 3.27234,-21.169 5.02577,-50.48991 3.37001,-17.31337 3.57429,-23.68878 4.31601,-27.75284 2.76014,-5.82345 3.00744,-7.43518 15.03554,-2.69185 z"
+           id="path4526"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccccccccc"
+           inkscape:transform-center-x="19"
+           inkscape:transform-center-y="-18" />
+        <path
+           style="fill:#0000ff;stroke:none"
+           d="m 495.52371,244.56488 c -7.7686,-42.58622 31.68259,-36.65286 42.96059,-15.88672 25.68634,47.29622 13.04444,50.81775 14.5657,79.2959 9.11585,25.78589 6.99454,59.54249 4.32836,92.90461 -7.51942,4.43076 -22.55289,9.79195 -29.67089,3.10454 -11.6116,-62.27371 -6.95483,-61.67201 -7.38071,-93.73113 -11.55546,-9.82501 -17.03445,-23.10099 -24.80305,-65.6872 z"
+           id="path4528"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="zsccccz" />
+      </g>
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4560"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4562"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <clipPath
+       id="clipPath6881"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#483737;stroke:none"
+         d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
+         id="path6883"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc" />
+    </clipPath>
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient6866"
+       xlink:href="#linearGradient6583-6"
+       inkscape:collect="always" />
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient6864"
+       xlink:href="#linearGradient6583-6"
+       inkscape:collect="always" />
+    <filter
+       height="1.1699336"
+       y="-0.084966793"
+       width="1.5913291"
+       x="-0.29566456"
+       id="filter4637-8"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur4639-1"
+         stdDeviation="7.3834616"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath4525-8"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#0000ff;stroke:none"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         id="path4527-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="czcccccc" />
+    </clipPath>
+    <clipPath
+       id="clipPath4368-4"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#0000ff;stroke:none"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         id="path4370-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="zcccccz" />
+    </clipPath>
+    <filter
+       height="1.2094491"
+       y="-0.10472454"
+       width="1.3569736"
+       x="-0.17848682"
+       id="filter4333-5"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur4335-7"
+         stdDeviation="5.8897645"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath4187"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#0000ff;stroke:none"
+         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
+         id="path4189"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="czsccsccc" />
+    </clipPath>
+    <filter
+       height="1.1712565"
+       y="-0.085628244"
+       width="1.5758502"
+       x="-0.28792509"
+       id="filter4181"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur4183"
+         stdDeviation="6.6644709"
+         inkscape:collect="always" />
+    </filter>
+    <filter
+       height="1.3644184"
+       y="-0.18220918"
+       width="1.1843034"
+       x="-0.092151701"
+       id="filter5691-9"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5693-9"
+         stdDeviation="4.7241826"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath5521-5"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#483737;stroke:none"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         id="path5523-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="czczc" />
+    </clipPath>
+    <filter
+       height="1.2111634"
+       y="-0.1055817"
+       width="1.3521017"
+       x="-0.17605084"
+       id="filter5515-5"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5517-3"
+         stdDeviation="8.0916386"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath5273-8"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         sodipodi:type="arc"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         id="path5275-5"
+         sodipodi:cx="278.57144"
+         sodipodi:cy="225"
+         sodipodi:rx="88.571426"
+         sodipodi:ry="100.71429"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         inkscape:transform-center-x="14.142136"
+         inkscape:transform-center-y="138.59293" />
+    </clipPath>
+    <filter
+       height="1.2167479"
+       y="-0.10837393"
+       width="1.3375981"
+       x="-0.16879905"
+       id="filter5267-9"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5269-4"
+         stdDeviation="6.1944151"
+         inkscape:collect="always" />
+    </filter>
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4194-8"
+       xlink:href="#linearGradient6583-6"
+       inkscape:collect="always" />
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4192-1"
+       xlink:href="#linearGradient6583-6"
+       inkscape:collect="always" />
+    <clipPath
+       id="clipPath4008-0"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         sodipodi:nodetypes="ccccccsccccc"
+         inkscape:connector-curvature="0"
+         id="path4010-5"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="92.419155"
+         inkscape:transform-center-y="107.29473" />
+    </clipPath>
+    <clipPath
+       id="clipPath4586-3"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:transform-center-y="83.521187"
+         inkscape:transform-center-x="-69.387539"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         id="path4588-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsccccscscc" />
+    </clipPath>
+    <filter
+       id="filter6579-1"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur6581-3"
+         stdDeviation="0.42857862"
+         inkscape:collect="always" />
+    </filter>
+    <filter
+       id="filter6555-9"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur6557-0"
+         stdDeviation="0.89287219"
+         inkscape:collect="always" />
+    </filter>
+    <filter
+       id="filter6523-3"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur6525-7"
+         stdDeviation="0.42857862"
+         inkscape:collect="always" />
+    </filter>
+    <filter
+       id="filter6499-1"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur6501-6"
+         stdDeviation="0.89287219"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath6467-1"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         id="path6469-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccc" />
+    </clipPath>
+    <clipPath
+       id="clipPath6367-2"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         id="path6369-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsc" />
+    </clipPath>
+    <clipPath
+       id="clipPath6299-6"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#6c5353;stroke:none"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         id="path6301-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsc"
+         inkscape:transform-center-x="-97.563485"
+         inkscape:transform-center-y="-110.27648" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient6583-6">
+      <stop
+         id="stop6585-4"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop6587-7"
+         offset="1"
+         style="stop-color:#c8c8c8;stop-opacity:1;" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter4802"
+       x="-0.15720505"
+       width="1.3144101"
+       y="-0.11376051"
+       height="1.227521">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.3422134"
+         id="feGaussianBlur4804" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4808">
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path4810"
+         d="m 467.55626,14.986083 c -52.65517,-11.0702422 -93.86343,38.767149 -89.75388,89.688047 5.27763,78.46914 136.69657,124.754 164.2874,22.43766 C 558.67548,86.272049 526.51786,11.587547 467.55626,14.986083 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4868"
+       x="-0.50552548"
+       width="2.011051"
+       y="-0.075910688"
+       height="1.1518214">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="12.484348"
+         id="feGaussianBlur4870" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="401.44858"
+     inkscape:cy="314.4251"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <path
+       sodipodi:nodetypes="ccccccc"
+       inkscape:connector-curvature="0"
+       id="path3253"
+       d="m 386.64503,356.4594 c 17.52824,-6.27304 58.97017,48.40733 13.21094,108.94668 12.47054,43.58651 -16.15213,41.47479 -7.01723,66.16236 1.42814,0.62518 18.89798,43.96622 -9.02215,38.09348 -23.76391,5.19436 -27.80356,-16.11487 -7.01721,-43.10577 -20.61298,-42.08417 -5.43695,-51.26966 -11.02706,-66.16237 -20.99266,-13.37464 -34.43803,-101.699 20.87271,-103.93438 z"
+       style="fill:#000080;stroke:none" />
+    <g
+       id="g3270"
+       inkscape:transform-center-x="-24.913717"
+       inkscape:transform-center-y="82.174243"
+       transform="matrix(0.9959331,-0.09009578,0.09009578,0.9959331,-41.613354,42.787998)">
+      <path
+         style="fill:#916f6f;stroke:none"
+         d="m 527.83261,349.95103 c 6.1415,3.57883 0.26234,6.78602 8.23691,16.25558 8.92256,11.28161 7.25774,23.47473 7.4237,34.02087 -4.60784,-1.07695 -6.7885,-22.84051 -12.99724,-27.5971 1.9465,15.66886 1.00865,21.32454 -2.66463,29.27516 -3.57409,-12.59894 -2.22418,-26.25378 -6.80118,-27.11407 -2.0293,17.4597 -2.93165,19.60237 -8.73691,26.75141 -3.34774,-8.96587 2.08596,-13.4942 3.20368,-32.18485 2.14822,-11.03643 2.27844,-15.10044 2.75125,-17.69108 1.75945,-3.71217 1.91709,-4.73957 9.58442,-1.71592 z"
+         id="path3264"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccc"
+         inkscape:transform-center-x="19"
+         inkscape:transform-center-y="-18" />
+      <path
+         style="fill:#000080;stroke:none"
+         d="m 491.15926,230.88736 c -4.9521,-27.14663 24.1961,-22.3644 31.38528,-9.127 16.37378,30.14903 7.31519,52.39383 8.28492,70.54726 5.81091,16.43724 4.45868,37.95543 2.75912,59.22215 -4.79327,2.82439 -14.37637,6.24189 -18.91375,1.97899 -7.40182,-39.69645 -4.43336,-39.31289 -4.70484,-59.74901 -7.36604,-6.26297 -13.85863,-35.72576 -18.81073,-62.87239 z"
+         id="path3266"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="zsccccz" />
+    </g>
+    <g
+       id="g4419"
+       transform="translate(-19.548411,-3.1749629)">
+      <g
+         id="g4415">
+        <path
+           style="fill:#0000ff;stroke:none"
+           d="m 485.12705,350.4832 c -18.10488,-6.01121 -59.37527,28.33507 -22.62743,101.82338 -17.59273,61.48936 22.7865,58.51027 9.8995,93.33809 -2.01473,0.88196 -26.66019,62.02504 12.72794,53.74011 33.52476,7.3279 39.22368,-22.73394 9.89948,-60.81117 29.07961,-59.36994 7.67013,-72.32831 15.55635,-93.3381 -0.67997,-18.48347 9.43734,-88.60689 -25.45584,-94.75231 z"
+           id="path5014"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="ccccccc" />
+        <path
+           style="fill:#0000ff;stroke:none"
+           d="m 424.44407,179.36337 c 0.34265,28.91674 -29.41148,27.11787 -45.25484,49.49747 -15.84335,22.3796 32.11855,40.6523 25.36941,79.87425 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17992 85.83458,42.35573 125.865,2.82843 8.79411,-28.10005 -26.68852,-55.86083 -16.96798,-84.14614 11.75524,-34.206 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+           id="path4993"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czsccsccc" />
+      </g>
+    </g>
+    <path
+       style="fill:#00ffff;fill-opacity:1;stroke:none;filter:url(#filter4868)"
+       d="m 503.7813,220.36337 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 12.55995,17.11601 16.51679,100.22373 -16.79899,113.85281 53.69743,76.29174 39.25947,107.22553 27.86181,135.29934 13.12138,10.63002 20.6968,45.86191 -0.29359,90.15639 -4.47953,14.54848 5.43291,-5.61691 2.4305,32.17343 31.86503,11.7624 19.99588,25.02719 18.8297,19.78 -1.56729,15.10268 27.20258,-22.52512 -7.3054,-53.36407 19.73316,-34.18195 24.47806,-84.06272 6.73181,-86.19228 24.32814,-12.78445 3.54135,-114.52401 -26.45584,-143.85281 13.64268,-16.54824 25.41223,-50.62448 24.69848,-92.29647 z"
+       id="path3227"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccccc"
+       clip-path="url(#clipPath4432)"
+       transform="translate(-19.548411,-3.1749629)" />
+    <g
+       id="g3258"
+       transform="matrix(-0.99397367,-0.10961908,-0.10961908,0.99397367,903.9153,65.697098)"
+       inkscape:transform-center-x="32.044415"
+       inkscape:transform-center-y="116.01002">
+      <path
+         inkscape:transform-center-y="-18"
+         inkscape:transform-center-x="19"
+         sodipodi:nodetypes="cccccccccc"
+         inkscape:connector-curvature="0"
+         id="path5020"
+         d="m 548.3487,398.40202 c 9.63446,5.61429 0.41155,10.64556 12.92164,25.50091 13.99724,17.698 11.38556,36.82592 11.6459,53.37016 -7.22853,-1.68946 -10.64943,-35.831 -20.38939,-43.29289 3.05357,24.58049 1.58233,33.45282 -4.18013,45.92535 -5.60684,-19.76457 -3.48917,-41.18556 -10.66933,-42.53514 -3.18346,27.38987 -4.59902,30.75117 -13.70601,41.96621 -5.25175,-14.06519 3.27234,-21.169 5.02577,-50.48991 3.37001,-17.31337 3.57429,-23.68878 4.31601,-27.75284 2.76014,-5.82345 3.00744,-7.43518 15.03554,-2.69185 z"
+         style="fill:#916f6f;stroke:none" />
+      <path
+         sodipodi:nodetypes="zsccccz"
+         inkscape:connector-curvature="0"
+         id="path5018"
+         d="m 495.52371,244.56488 c -7.7686,-42.58622 31.68259,-36.65286 42.96059,-15.88672 25.68634,47.29622 13.04444,50.81775 14.5657,79.2959 9.11585,25.78589 6.99454,59.54249 4.32836,92.90461 -7.51942,4.43076 -22.55289,9.79195 -29.67089,3.10454 -11.6116,-62.27371 -6.95483,-61.67201 -7.38071,-93.73113 -11.55546,-9.82501 -17.03445,-23.10099 -24.80305,-65.6872 z"
+         style="fill:#0000ff;stroke:none" />
+    </g>
+    <g
+       id="g4183"
+       transform="matrix(0.94969596,-0.3131734,0.3131734,0.94969596,76.928195,41.359085)">
+      <path
+         transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)"
+         d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
+         sodipodi:ry="8.5714283"
+         sodipodi:rx="8.5714283"
+         sodipodi:cy="108.07647"
+         sodipodi:cx="88.571426"
+         id="path3078"
+         style="fill:#ffffff;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)"
+         d="m 291.42857,125.21932 c 0,19.72446 -15.98983,35.71429 -35.71429,35.71429 -19.72446,0 -35.71429,-15.98983 -35.71429,-35.71429 0,-19.72445 15.98983,-35.714285 35.71429,-35.714285 19.72446,0 35.71429,15.989835 35.71429,35.714285 z"
+         sodipodi:ry="35.714287"
+         sodipodi:rx="35.714287"
+         sodipodi:cy="125.21932"
+         sodipodi:cx="255.71428"
+         id="path3068"
+         style="fill:url(#radialGradient4560);fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:url(#radialGradient4562);fill-opacity:1;stroke:none"
+         id="path3070"
+         sodipodi:cx="255.71428"
+         sodipodi:cy="125.21932"
+         sodipodi:rx="35.714287"
+         sodipodi:ry="35.714287"
+         d="m 291.42857,125.21932 c 0,19.72446 -15.98983,35.71429 -35.71429,35.71429 -19.72446,0 -35.71429,-15.98983 -35.71429,-35.71429 0,-19.72445 15.98983,-35.714285 35.71429,-35.714285 19.72446,0 35.71429,15.989835 35.71429,35.714285 z"
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)"
+         d="m 120,141.6479 c 0,9.86223 -7.99491,17.85715 -17.85714,17.85715 -9.862228,0 -17.857143,-7.99492 -17.857143,-17.85715 0,-9.86222 7.994915,-17.85714 17.857143,-17.85714 9.86223,0 17.85714,7.99492 17.85714,17.85714 z"
+         sodipodi:ry="17.857143"
+         sodipodi:rx="17.857143"
+         sodipodi:cy="141.6479"
+         sodipodi:cx="102.14286"
+         id="path3072"
+         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)"
+         sodipodi:type="arc"
+         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
+         id="path3074"
+         sodipodi:cx="102.14286"
+         sodipodi:cy="141.6479"
+         sodipodi:rx="17.857143"
+         sodipodi:ry="17.857143"
+         d="m 120,141.6479 c 0,9.86223 -7.99491,17.85715 -17.85714,17.85715 -9.862228,0 -17.857143,-7.99492 -17.857143,-17.85715 0,-9.86222 7.994915,-17.85714 17.857143,-17.85714 9.86223,0 17.85714,7.99492 17.85714,17.85714 z" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)"
+         sodipodi:type="arc"
+         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
+         id="path3848"
+         sodipodi:cx="88.571426"
+         sodipodi:cy="108.07647"
+         sodipodi:rx="8.5714283"
+         sodipodi:ry="8.5714283"
+         d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)"
+         inkscape:transform-center-y="-8.5714283"
+         inkscape:transform-center-x="160"
+         d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
+         sodipodi:ry="8.5714283"
+         sodipodi:rx="8.5714283"
+         sodipodi:cy="108.07647"
+         sodipodi:cx="88.571426"
+         id="path3850"
+         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
+         sodipodi:type="arc" />
+    </g>
+    <path
+       sodipodi:type="arc"
+       style="fill:#916f6f;fill-opacity:1;stroke:none"
+       id="path4196"
+       sodipodi:cx="278.57144"
+       sodipodi:cy="225"
+       sodipodi:rx="88.571426"
+       sodipodi:ry="100.71429"
+       d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+       transform="matrix(0.74625202,0.30040573,-0.24153661,0.7135972,260.53763,-138.80822)"
+       inkscape:transform-center-x="14.142136"
+       inkscape:transform-center-y="138.59293" />
+    <path
+       style="fill:#483737;stroke:none"
+       d="M 406.91744,0.15025882 C 353.22745,-3.3855928 319.45735,51.763899 330.70515,101.59675 346.99336,178.53799 483.62524,205.83186 496.51497,100.64754 507.17703,57.877333 464.81092,-11.527278 406.91744,0.15025882 z"
+       id="path4970"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:#916f6f;stroke:none;filter:url(#filter4802)"
+       d="M 522.00852,65.366144 C 516.49412,54.121605 502.75003,48.378396 454.85742,18.39406 521.06809,7.676766 541.63373,59.431679 546.54071,66.603238 571.18183,102.61624 533.10018,175.72824 498.13386,182.9383 523.89057,153.77385 527.92071,77.421804 522.00852,65.366144 z"
+       id="path5545"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="scscs"
+       clip-path="url(#clipPath4808)"
+       transform="matrix(0.99001113,-0.14098921,0.14098921,0.99001113,-58.081337,51.234258)" />
+    <g
+       id="g5525"
+       transform="matrix(0.96559274,-0.26005897,0.26005897,0.96559274,-35.290555,139.93527)"
+       inkscape:transform-center-x="-60.860789"
+       inkscape:transform-center-y="50.885106">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path4972"
+         d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+      <path
+         clip-path="url(#clipPath5521)"
+         sodipodi:nodetypes="ccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path5277"
+         d="m 388.90873,70.071935 c 24.97231,1.895917 68.55292,-12.41651 83.4386,55.154325 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 -28.60621,-10.59511 -64.26712,-10.60816 -49.49748,-86.26703 22.75038,-73.322563 -27.13169,-86.631429 -60.81118,-97.580735 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter5515)" />
+    </g>
+    <path
+       style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4512)"
+       d="m 291.32799,251.09127 c -4.73824,34.95886 -10.68795,68.94854 -33.94112,89.09545 3.31093,35.2655 1.319,68.40986 -14.14214,96.16653 30.68109,-7.83371 22.73527,-59.81247 29.69849,-94.75231 32.33661,-40.25002 35.02379,-69.09642 18.38477,-90.50967 z"
+       id="path4442"
+       inkscape:connector-curvature="0"
+       transform="translate(79.626542,-25.405388)"
+       sodipodi:nodetypes="ccccc"
+       clip-path="url(#clipPath4522)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/human_N_2.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,983 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="human_N_2.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4192"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4194"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter5267"
+       x="-0.16879905"
+       width="1.3375981"
+       y="-0.10837393"
+       height="1.2167479">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.1944151"
+         id="feGaussianBlur5269" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5273">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path5275"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5515"
+       x="-0.17605084"
+       width="1.3521017"
+       y="-0.1055817"
+       height="1.2111634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.0916386"
+         id="feGaussianBlur5517" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5521">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path5523"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5691"
+       x="-0.092151701"
+       width="1.1843034"
+       y="-0.18220918"
+       height="1.3644184">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="4.7241826"
+         id="feGaussianBlur5693" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5697">
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path5699"
+         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4368">
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path4370"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4525">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path4527"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3245"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3247"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3307"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3309"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4432">
+      <g
+         id="g4434">
+        <g
+           id="g4436">
+          <path
+             sodipodi:nodetypes="ccccccc"
+             inkscape:connector-curvature="0"
+             id="path4438"
+             d="m 485.12705,350.4832 c -18.10488,-6.01121 -59.37527,28.33507 -22.62743,101.82338 -17.59273,61.48936 22.7865,58.51027 9.8995,93.33809 -2.01473,0.88196 -26.66019,62.02504 12.72794,53.74011 33.52476,7.3279 39.22368,-22.73394 9.89948,-60.81117 29.07961,-59.36994 7.67013,-72.32831 15.55635,-93.3381 -0.67997,-18.48347 9.43734,-88.60689 -25.45584,-94.75231 z"
+             style="fill:#0000ff;stroke:none" />
+          <path
+             sodipodi:nodetypes="czsccsccc"
+             inkscape:connector-curvature="0"
+             id="path4440"
+             d="m 424.44407,179.36337 c 0.34265,28.91674 -29.41148,27.11787 -45.25484,49.49747 -15.84335,22.3796 32.11855,40.6523 25.36941,79.87425 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17992 85.83458,42.35573 125.865,2.82843 8.79411,-28.10005 -26.68852,-55.86083 -16.96798,-84.14614 11.75524,-34.206 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+             style="fill:#0000ff;stroke:none" />
+        </g>
+      </g>
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4522">
+      <g
+         inkscape:transform-center-y="116.01002"
+         inkscape:transform-center-x="32.044415"
+         transform="matrix(-0.99397367,-0.10961908,-0.10961908,0.99397367,824.28876,91.102486)"
+         id="g4524">
+        <path
+           style="fill:#916f6f;stroke:none"
+           d="m 548.3487,398.40202 c 9.63446,5.61429 0.41155,10.64556 12.92164,25.50091 13.99724,17.698 11.38556,36.82592 11.6459,53.37016 -7.22853,-1.68946 -10.64943,-35.831 -20.38939,-43.29289 3.05357,24.58049 1.58233,33.45282 -4.18013,45.92535 -5.60684,-19.76457 -3.48917,-41.18556 -10.66933,-42.53514 -3.18346,27.38987 -4.59902,30.75117 -13.70601,41.96621 -5.25175,-14.06519 3.27234,-21.169 5.02577,-50.48991 3.37001,-17.31337 3.57429,-23.68878 4.31601,-27.75284 2.76014,-5.82345 3.00744,-7.43518 15.03554,-2.69185 z"
+           id="path4526"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccccccccc"
+           inkscape:transform-center-x="19"
+           inkscape:transform-center-y="-18" />
+        <path
+           style="fill:#0000ff;stroke:none"
+           d="m 495.52371,244.56488 c -7.7686,-42.58622 31.68259,-36.65286 42.96059,-15.88672 25.68634,47.29622 13.04444,50.81775 14.5657,79.2959 9.11585,25.78589 6.99454,59.54249 4.32836,92.90461 -7.51942,4.43076 -22.55289,9.79195 -29.67089,3.10454 -11.6116,-62.27371 -6.95483,-61.67201 -7.38071,-93.73113 -11.55546,-9.82501 -17.03445,-23.10099 -24.80305,-65.6872 z"
+           id="path4528"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="zsccccz" />
+      </g>
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4757"
+       x="-0.23134917"
+       width="1.4626983"
+       y="-0.092344251"
+       height="1.1846885">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.2038921"
+         id="feGaussianBlur4759" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4771">
+      <path
+         sodipodi:nodetypes="zsccccz"
+         inkscape:connector-curvature="0"
+         id="path4773"
+         d="m 355.3312,258.31495 c -12.39004,-41.47801 27.47381,-39.90501 40.96021,-20.50029 30.71611,44.19549 18.53643,49.08159 23.17027,77.22137 11.88754,24.63122 13.47938,58.41693 14.48639,91.87026 -6.98841,5.22833 -21.34359,12.20517 -29.15177,6.33833 -18.36801,-60.62558 -13.67334,-60.53797 -17.61095,-92.35721 -12.56283,-8.4991 -19.4641,-21.09448 -31.85415,-62.57246 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4831">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4833"
+         d="m 305.72071,198.41883 c 0.34265,28.91674 -19.51199,25.70366 -35.35535,48.08326 -15.84335,22.37961 22.21906,42.06652 15.46992,81.28847 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17991 75.93509,40.94151 115.96551,1.41422 30.77732,-18.67868 -15.37275,-53.83965 -7.06849,-82.73194 9.99139,-34.76216 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4903">
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path4905"
+         d="m 277.23061,369.53867 c 18.10488,-6.01121 59.37527,28.33507 22.62743,101.82338 17.59273,61.48935 -22.7865,58.51026 -9.8995,93.33808 2.01473,0.88196 26.66019,62.02504 -12.72794,53.74011 -33.52476,7.3279 -39.22368,-22.73394 -9.89948,-60.81117 -29.07961,-59.36993 -7.67013,-72.32831 -15.55635,-93.3381 0.67997,-18.48347 -9.43734,-88.60689 25.45584,-94.75231 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       height="1.1518214"
+       y="-0.075910688"
+       width="2.011051"
+       x="-0.50552548"
+       id="filter4868"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur4870"
+         stdDeviation="12.484348"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath4808"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#483737;stroke:none"
+         d="m 467.55626,14.986083 c -52.65517,-11.0702422 -93.86343,38.767149 -89.75388,89.688047 5.27763,78.46914 136.69657,124.754 164.2874,22.43766 C 558.67548,86.272049 526.51786,11.587547 467.55626,14.986083 z"
+         id="path4810"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc" />
+    </clipPath>
+    <filter
+       height="1.227521"
+       y="-0.11376051"
+       width="1.3144101"
+       x="-0.15720505"
+       id="filter4802"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur4804"
+         stdDeviation="7.3422134"
+         inkscape:collect="always" />
+    </filter>
+    <linearGradient
+       id="linearGradient6583-6">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585-4" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587-7" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299-6">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301-5"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367-2">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369-1"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467-1">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469-0"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586-3">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588-1"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008-0">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583-6"
+       id="radialGradient4192-1"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583-6"
+       id="radialGradient4194-8"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5273-8">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path5275-5"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5521-5">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path5523-5"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4187">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4189"
+         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4368-4">
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path4370-7"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4525-8">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path4527-5"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583-6"
+       id="radialGradient6864"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583-6"
+       id="radialGradient6866"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6881">
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path6883"
+         d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <clipPath
+       id="clipPath4522-2"
+       clipPathUnits="userSpaceOnUse">
+      <g
+         id="g4524-3"
+         transform="matrix(-0.99397367,-0.10961908,-0.10961908,0.99397367,824.28876,91.102486)"
+         inkscape:transform-center-x="32.044415"
+         inkscape:transform-center-y="116.01002">
+        <path
+           inkscape:transform-center-y="-18"
+           inkscape:transform-center-x="19"
+           sodipodi:nodetypes="cccccccccc"
+           inkscape:connector-curvature="0"
+           id="path4526-2"
+           d="m 548.3487,398.40202 c 9.63446,5.61429 0.41155,10.64556 12.92164,25.50091 13.99724,17.698 11.38556,36.82592 11.6459,53.37016 -7.22853,-1.68946 -10.64943,-35.831 -20.38939,-43.29289 3.05357,24.58049 1.58233,33.45282 -4.18013,45.92535 -5.60684,-19.76457 -3.48917,-41.18556 -10.66933,-42.53514 -3.18346,27.38987 -4.59902,30.75117 -13.70601,41.96621 -5.25175,-14.06519 3.27234,-21.169 5.02577,-50.48991 3.37001,-17.31337 3.57429,-23.68878 4.31601,-27.75284 2.76014,-5.82345 3.00744,-7.43518 15.03554,-2.69185 z"
+           style="fill:#916f6f;stroke:none" />
+        <path
+           sodipodi:nodetypes="zsccccz"
+           inkscape:connector-curvature="0"
+           id="path4528-5"
+           d="m 495.52371,244.56488 c -7.7686,-42.58622 31.68259,-36.65286 42.96059,-15.88672 25.68634,47.29622 13.04444,50.81775 14.5657,79.2959 9.11585,25.78589 6.99454,59.54249 4.32836,92.90461 -7.51942,4.43076 -22.55289,9.79195 -29.67089,3.10454 -11.6116,-62.27371 -6.95483,-61.67201 -7.38071,-93.73113 -11.55546,-9.82501 -17.03445,-23.10099 -24.80305,-65.6872 z"
+           style="fill:#0000ff;stroke:none" />
+      </g>
+    </clipPath>
+    <filter
+       height="1.1734108"
+       y="-0.086705384"
+       width="1.5527601"
+       x="-0.27638007"
+       id="filter4512-0"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur4514-6"
+         stdDeviation="6.6930046"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath4432-0"
+       clipPathUnits="userSpaceOnUse">
+      <g
+         id="g4434-5">
+        <g
+           id="g4436-6">
+          <path
+             style="fill:#0000ff;stroke:none"
+             d="m 485.12705,350.4832 c -18.10488,-6.01121 -59.37527,28.33507 -22.62743,101.82338 -17.59273,61.48936 22.7865,58.51027 9.8995,93.33809 -2.01473,0.88196 -26.66019,62.02504 12.72794,53.74011 33.52476,7.3279 39.22368,-22.73394 9.89948,-60.81117 29.07961,-59.36994 7.67013,-72.32831 15.55635,-93.3381 -0.67997,-18.48347 9.43734,-88.60689 -25.45584,-94.75231 z"
+             id="path4438-7"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccccc" />
+          <path
+             style="fill:#0000ff;stroke:none"
+             d="m 424.44407,179.36337 c 0.34265,28.91674 -29.41148,27.11787 -45.25484,49.49747 -15.84335,22.3796 32.11855,40.6523 25.36941,79.87425 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17992 85.83458,42.35573 125.865,2.82843 8.79411,-28.10005 -26.68852,-55.86083 -16.96798,-84.14614 11.75524,-34.206 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+             id="path4440-4"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="czsccsccc" />
+        </g>
+      </g>
+    </clipPath>
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3309-7"
+       xlink:href="#linearGradient6583-2"
+       inkscape:collect="always" />
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3307-7"
+       xlink:href="#linearGradient6583-2"
+       inkscape:collect="always" />
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3247-0"
+       xlink:href="#linearGradient6583-2"
+       inkscape:collect="always" />
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3245-0"
+       xlink:href="#linearGradient6583-2"
+       inkscape:collect="always" />
+    <clipPath
+       id="clipPath4525-3"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#0000ff;stroke:none"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         id="path4527-2"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="czcccccc" />
+    </clipPath>
+    <clipPath
+       id="clipPath4368-5"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#0000ff;stroke:none"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         id="path4370-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="zcccccz" />
+    </clipPath>
+    <clipPath
+       id="clipPath5521-1"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#483737;stroke:none"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         id="path5523-4"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="czczc" />
+    </clipPath>
+    <filter
+       height="1.2111634"
+       y="-0.1055817"
+       width="1.3521017"
+       x="-0.17605084"
+       id="filter5515-1"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur5517-4"
+         stdDeviation="8.0916386"
+         inkscape:collect="always" />
+    </filter>
+    <clipPath
+       id="clipPath5273-84"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         sodipodi:type="arc"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         id="path5275-1"
+         sodipodi:cx="278.57144"
+         sodipodi:cy="225"
+         sodipodi:rx="88.571426"
+         sodipodi:ry="100.71429"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         inkscape:transform-center-x="14.142136"
+         inkscape:transform-center-y="138.59293" />
+    </clipPath>
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4194-3"
+       xlink:href="#linearGradient6583-2"
+       inkscape:collect="always" />
+    <radialGradient
+       r="35.714287"
+       fy="125.21932"
+       fx="255.71428"
+       cy="125.21932"
+       cx="255.71428"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4192-5"
+       xlink:href="#linearGradient6583-2"
+       inkscape:collect="always" />
+    <clipPath
+       id="clipPath4008-8"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         sodipodi:nodetypes="ccccccsccccc"
+         inkscape:connector-curvature="0"
+         id="path4010-3"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="92.419155"
+         inkscape:transform-center-y="107.29473" />
+    </clipPath>
+    <clipPath
+       id="clipPath4586-7"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:transform-center-y="83.521187"
+         inkscape:transform-center-x="-69.387539"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         id="path4588-17"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsccccscscc" />
+    </clipPath>
+    <clipPath
+       id="clipPath6467-11"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         id="path6469-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccc" />
+    </clipPath>
+    <clipPath
+       id="clipPath6367-8"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         id="path6369-4"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsc" />
+    </clipPath>
+    <clipPath
+       id="clipPath6299-1"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         style="fill:#6c5353;stroke:none"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         id="path6301-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsc"
+         inkscape:transform-center-x="-97.563485"
+         inkscape:transform-center-y="-110.27648" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient6583-2">
+      <stop
+         id="stop6585-0"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop6587-8"
+         offset="1"
+         style="stop-color:#c8c8c8;stop-opacity:1;" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter6187"
+       x="-0.34007187"
+       width="1.6801437"
+       y="-0.081893641"
+       height="1.1637873">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.8663145"
+         id="feGaussianBlur6189" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6294"
+       x="-0.39779619"
+       width="1.7955924"
+       y="-0.079992545"
+       height="1.1599851">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.6891733"
+         id="feGaussianBlur6296" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="176.66757"
+     inkscape:cy="314.4251"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <path
+       sodipodi:nodetypes="ccccccc"
+       inkscape:connector-curvature="0"
+       id="path3253"
+       d="m 453.33917,356.4594 c -17.52824,-6.27304 -58.97017,48.40733 -13.21094,108.94668 -12.47054,43.58651 16.15213,41.47479 7.01723,66.16236 -1.42814,0.62518 -18.89798,43.96622 9.02215,38.09348 23.76391,5.19436 27.80356,-16.11487 7.01721,-43.10577 20.61298,-42.08417 5.43695,-51.26966 11.02706,-66.16237 20.99266,-13.37464 34.43803,-101.699 -20.87271,-103.93438 z"
+       style="fill:#000080;stroke:none" />
+    <path
+       style="fill:#0000ff;stroke:none"
+       d="m 376.40556,347.30824 c 18.10488,-6.01121 59.37527,28.33507 22.62743,101.82338 17.59273,61.48936 -22.7865,58.51027 -9.8995,93.33809 2.01473,0.88196 26.66019,62.02504 -12.72794,53.74011 -33.52476,7.3279 -39.22368,-22.73394 -9.89948,-60.81117 -29.07961,-59.36994 -7.67013,-72.32831 -15.55635,-93.3381 0.67997,-18.48347 -9.43734,-88.60689 25.45584,-94.75231 z"
+       id="path5014"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccc" />
+    <g
+       id="g3270"
+       inkscape:transform-center-x="27.444293"
+       inkscape:transform-center-y="79.452359"
+       transform="matrix(-0.98474539,-0.17400148,-0.17400148,0.98474539,913.71353,96.120971)">
+      <g
+         id="g4699">
+        <path
+           inkscape:transform-center-y="-18"
+           inkscape:transform-center-x="19"
+           sodipodi:nodetypes="cccccccccc"
+           inkscape:connector-curvature="0"
+           id="path3264"
+           d="m 527.83261,349.95103 c 6.1415,3.57883 0.26234,6.78602 8.23691,16.25558 8.92256,11.28161 7.25774,23.47473 7.4237,34.02087 -4.60784,-1.07695 -6.7885,-22.84051 -12.99724,-27.5971 1.9465,15.66886 1.00865,21.32454 -2.66463,29.27516 -3.57409,-12.59894 -2.22418,-26.25378 -6.80118,-27.11407 -2.0293,17.4597 -2.93165,19.60237 -8.73691,26.75141 -3.34774,-8.96587 2.08596,-13.4942 3.20368,-32.18485 2.14822,-11.03643 2.27844,-15.10044 2.75125,-17.69108 1.75945,-3.71217 1.91709,-4.73957 9.58442,-1.71592 z"
+           style="fill:#916f6f;stroke:none" />
+        <path
+           sodipodi:nodetypes="zsccccz"
+           inkscape:connector-curvature="0"
+           id="path3266"
+           d="m 491.15926,230.88736 c -4.9521,-27.14663 24.1961,-22.3644 31.38528,-9.127 16.37378,30.14903 7.31519,52.39383 8.28492,70.54726 5.81091,16.43724 4.45868,37.95543 2.75912,59.22215 -4.79327,2.82439 -14.37637,6.24189 -18.91375,1.97899 -7.40182,-39.69645 -4.43336,-39.31289 -4.70484,-59.74901 -7.36604,-6.26297 -13.85863,-35.72576 -18.81073,-62.87239 z"
+           style="fill:#000080;stroke:none" />
+      </g>
+    </g>
+    <path
+       style="fill:#916f6f;stroke:none"
+       d="m 523.87629,383.20396 c 10.19183,4.52433 1.57602,10.53629 15.63915,23.93077 15.85293,16.05699 15.35377,35.35592 17.42611,51.77192 -7.37017,-0.88689 -14.51301,-34.44769 -25.01224,-40.79692 5.72966,24.09763 5.23986,33.07777 0.87935,46.10681 -7.73962,-19.03085 -7.98286,-40.55488 -15.26769,-41.10925 -0.16183,27.57378 -1.20039,31.07 -9.02312,43.21575 -6.76191,-13.40474 0.93209,-21.40014 -0.53917,-50.73656 1.45182,-17.57845 0.956,-23.93784 1.24775,-28.05871 2.10515,-6.09092 2.17428,-7.72005 14.64986,-4.32381 z"
+       id="path5020"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccccccccc"
+       inkscape:transform-center-x="19"
+       inkscape:transform-center-y="-18" />
+    <path
+       style="fill:#0000ff;stroke:none"
+       d="m 404.89566,176.18841 c 0.34265,28.91674 -19.51199,25.70366 -35.35535,48.08326 -15.84335,22.3796 22.21906,42.06651 15.46992,81.28846 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17992 75.93509,40.94152 115.96551,1.41422 30.77732,-18.67868 -15.37275,-53.83964 -7.06849,-82.73193 9.99139,-34.76217 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+       id="path4993"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="czsccsccc" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#916f6f;fill-opacity:1;stroke:none"
+       id="path4196"
+       sodipodi:cx="278.57144"
+       sodipodi:cy="225"
+       sodipodi:rx="88.571426"
+       sodipodi:ry="100.71429"
+       d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+       transform="matrix(0.69271521,0.40900038,-0.3458972,0.66926529,308.99641,-159.22899)"
+       inkscape:transform-center-x="14.142136"
+       inkscape:transform-center-y="138.59293" />
+    <path
+       style="fill:#ac9393;stroke:none;filter:url(#filter5267)"
+       d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
+       id="path5213"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc"
+       clip-path="url(#clipPath5273)"
+       transform="matrix(0.99995779,0.00918793,-0.00918793,0.99995779,21.845238,-25.226861)" />
+    <path
+       style="fill:#00ffff;stroke:none;filter:url(#filter6294)"
+       d="m 294.15642,417.96847 c 15.75401,26.73319 2.4703,38.94751 -2.82843,55.15433 2.44973,23.38219 -2.47452,49.22237 -11.3137,76.36753 -7.44382,12.7843 -1.11221,22.32859 -5.65686,36.76955 6.51686,2.61878 25.60321,45.65489 24.04163,28.28428 11.88669,-13.14854 0.11429,-38.12662 -9.89949,-62.2254 35.54801,-44.28676 16.41123,-63.67723 12.72792,-86.26703 7.68296,-12.25652 18.0468,-24.51303 11.31371,-36.76955 z"
+       id="path4835"
+       inkscape:connector-curvature="0"
+       transform="translate(99.174953,-22.230425)"
+       sodipodi:nodetypes="ccccccccc"
+       clip-path="url(#clipPath4903)" />
+    <g
+       id="g5663"
+       transform="matrix(0.97825868,0.2073884,-0.2073884,0.97825868,-604.60399,-204.00763)">
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path4970-0"
+         d="m 1059.4877,-15.32968 c -53.69,-3.535852 -87.46009,51.61364 -76.21229,101.446491 16.28821,76.941239 152.92009,104.235109 165.80979,-0.94921 10.6621,-42.770207 -31.704,-112.174818 -89.5975,-100.497281 z"
+         style="fill:#483737;stroke:none" />
+      <path
+         transform="matrix(0.99001113,-0.14098921,0.14098921,0.99001113,594.48892,35.754319)"
+         clip-path="url(#clipPath4808)"
+         sodipodi:nodetypes="scscs"
+         inkscape:connector-curvature="0"
+         id="path5545-7"
+         d="M 522.00852,65.366144 C 516.49412,54.121605 502.75003,48.378396 454.85742,18.39406 521.06809,7.676766 541.63373,59.431679 546.54071,66.603238 571.18183,102.61624 533.10018,175.72824 498.13386,182.9383 523.89057,153.77385 527.92071,77.421804 522.00852,65.366144 z"
+         style="fill:#916f6f;stroke:none;filter:url(#filter4802)" />
+    </g>
+    <g
+       id="g6191">
+      <path
+         sodipodi:nodetypes="zsccccz"
+         inkscape:connector-curvature="0"
+         id="path5018"
+         d="m 454.50615,236.08452 c -12.39004,-41.478 27.47381,-39.905 40.96021,-20.50028 30.71611,44.19548 18.53643,49.08158 23.17027,77.22136 11.88754,24.63122 13.47938,58.41693 14.48639,91.87026 -6.98841,5.22833 -21.34359,12.20517 -29.15177,6.33833 -18.36801,-60.62558 -13.67334,-60.53797 -17.61095,-92.35721 -12.56283,-8.4991 -19.4641,-21.09448 -31.85415,-62.57246 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4771)"
+         sodipodi:nodetypes="ccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path4703"
+         d="m 360.62446,225.63543 c -20.74133,-1.65044 67.43668,33.35046 39.59798,98.99494 37.37489,91.44075 14.59364,65.34445 29.69848,87.68125 12.39813,-16.35754 0.99942,-56.51193 -8.48528,-94.75231 -5.6471,-73.09695 -28.80023,-96.50427 -60.81118,-91.92388 z"
+         style="fill:#00ffff;stroke:none;filter:url(#filter4757)" />
+    </g>
+    <path
+       style="fill:#00ffff;stroke:none;filter:url(#filter6187)"
+       d="m 379.00924,285.0324 -18.38478,45.25483 c 12.31171,38.38803 30.2987,48.3892 21.21321,66.46804 -5.56701,-5.47442 -16.5007,25.69347 -14.40227,15.00464 0.93276,-4.75123 -4.18543,-49.535 -29.43836,-74.40161 9.26242,-0.19216 26.72921,-48.65143 25.72563,-62.07913 -2.14706,-28.72732 -6.09915,-45.69887 1.59778,-50.70376 8.54025,-5.55325 22.49265,27.09852 13.68879,60.45699 z"
+       id="path4775"
+       inkscape:connector-curvature="0"
+       transform="translate(99.174953,-22.230425)"
+       sodipodi:nodetypes="cccscssc"
+       clip-path="url(#clipPath4831)" />
+    <g
+       id="g5525"
+       transform="matrix(0.99918235,-0.04043067,0.04043067,0.99918235,-74.376491,18.403285)"
+       inkscape:transform-center-x="-45.484609"
+       inkscape:transform-center-y="63.15239">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path4972"
+         d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+      <path
+         clip-path="url(#clipPath5521)"
+         sodipodi:nodetypes="ccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path5277"
+         d="m 388.90873,70.071935 c 24.97231,1.895917 68.55292,-12.41651 83.4386,55.154325 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 -28.60621,-10.59511 -64.26712,-10.60816 -49.49748,-86.26703 22.75038,-73.322563 -27.13169,-86.631429 -60.81118,-97.580735 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter5515)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/human_SW_1.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,557 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="human_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4192"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4194"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter5267"
+       x="-0.16879905"
+       width="1.3375981"
+       y="-0.10837393"
+       height="1.2167479">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.1944151"
+         id="feGaussianBlur5269" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5273">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path5275"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5515"
+       x="-0.17605084"
+       width="1.3521017"
+       y="-0.1055817"
+       height="1.2111634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.0916386"
+         id="feGaussianBlur5517" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5521">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path5523"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5691"
+       x="-0.092151701"
+       width="1.1843034"
+       y="-0.18220918"
+       height="1.3644184">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="4.7241826"
+         id="feGaussianBlur5693" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5697">
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path5699"
+         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3210"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3212"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter4181"
+       x="-0.28792509"
+       width="1.5758502"
+       y="-0.085628244"
+       height="1.1712565">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.6644709"
+         id="feGaussianBlur4183" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4187">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4189"
+         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4333"
+       x="-0.17848682"
+       width="1.3569736"
+       y="-0.10472454"
+       height="1.2094491">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.8897645"
+         id="feGaussianBlur4335" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4368">
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path4370"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4525">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path4527"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4637"
+       x="-0.29566456"
+       width="1.5913291"
+       y="-0.084966793"
+       height="1.1699336">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.3834616"
+         id="feGaussianBlur4639" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="355.7203"
+     inkscape:cy="298.97676"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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 />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-99.174953,22.230425)">
+    <g
+       id="g5047"
+       transform="matrix(0.65794802,0.61408828,-0.61408828,0.65794801,237.59823,-449.23478)"
+       inkscape:transform-center-y="51.852354"
+       inkscape:transform-center-x="70.608158">
+      <path
+         style="fill:#916f6f;stroke:none"
+         d="m 646.4756,548.47312 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
+         id="path5041"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccc" />
+      <path
+         style="fill:#000080;stroke:none"
+         d="m 649.30403,429.67917 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         id="path5043"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="zcccccz" />
+    </g>
+    <path
+       sodipodi:nodetypes="czcccccc"
+       inkscape:connector-curvature="0"
+       id="path5033"
+       d="m 381.21273,371.83172 c 18.79163,-29.82007 49.43799,-38.04222 57.27565,-16.5463 7.83765,21.49592 11.98099,53.41407 -31.8198,103.09617 36.7784,16.44269 20.72036,40.27769 31.8198,72.54915 -23.12367,11.87684 -41.82099,18.60569 -75.09474,10.18234 -8.90776,-10.18084 10.74082,-25.4147 42.00214,-29.27422 -17.37506,-16.56606 -34.5817,-33.30055 -42.00214,-59.82123 3.55524,-20.3701 4.62532,-34.1131 17.81909,-80.18591 z"
+       style="fill:#000080;stroke:none" />
+    <g
+       id="g4191"
+       transform="translate(11.313709,-70.710678)">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4993"
+         d="m 418.78721,247.24563 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17992 61.79294,57.91208 101.82337,18.38478 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97457 11.73233,-34.66295 46.48974,-77.2162 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76955 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4187)"
+         sodipodi:nodetypes="ccccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path3227"
+         d="m 397.39401,320.38773 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 -17.1011,21.25703 -35.67363,41.60443 -19.79899,84.85281 -4.78131,76.4006 0.69986,75.83259 2.82842,100.40916 20.00634,4.58823 33.73058,-1.29371 42.42641,-15.55635 2.28969,-4.04058 -13.48309,-48.72174 -25.45584,-84.85281 13.64268,-16.54824 30.41223,-27.62448 29.69848,-69.29647 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4181)" />
+    </g>
+    <g
+       id="g4641"
+       transform="translate(-53.740116,-114.5513)">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path5014"
+         d="m 496.56897,504.63249 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34897 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75299 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00061 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4525)"
+         sodipodi:nodetypes="cccccscc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path4377"
+         d="m 432.74935,522.62027 c 8.69565,-17.42519 19.6262,-29.49223 26.87006,4.24264 10.03825,49.99242 -20.71732,67.89695 -45.25484,93.3381 30.71222,9.88911 42.97592,56.10004 40.75484,81.59546 -14.52577,11.54448 -19.31393,12.59837 -38.84609,12.11292 -5.8872,-11.68777 11.02272,-19.36075 20.02092,-19.72217 23.02847,-0.92495 -25.254,-40.95795 -34.65759,-72.572 5.54095,-24.09575 0.92267,-29.12234 31.1127,-98.99495 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4637)" />
+    </g>
+    <g
+       id="g4372"
+       transform="translate(-76.367533,-130.10765)">
+      <path
+         sodipodi:nodetypes="cccccccccc"
+         inkscape:connector-curvature="0"
+         id="path5020"
+         d="m 560.20857,488.36904 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
+         style="fill:#916f6f;stroke:none" />
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path5018"
+         d="m 563.037,369.57509 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4368)"
+         sodipodi:nodetypes="cccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path4195"
+         d="m 492.14632,371.29942 c -8.37415,-5.79487 -16.02205,-9.41099 -16.97056,7.07107 52.42753,49.83624 61.27143,56.75956 65.05382,70.71068 -46.08607,54.91669 -32.62426,43.55735 -36.76955,52.3259 14.58206,-6.94513 32.62684,-27.74115 50.91169,-49.49747 -9.7226,-29.53274 -19.441,-58.49092 -62.2254,-80.61018 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4333)" />
+    </g>
+    <g
+       id="g3192"
+       transform="translate(-12.727922,-19.79899)">
+      <g
+         transform="translate(52.325902,1.4142136)"
+         id="g5529">
+        <path
+           sodipodi:type="arc"
+           style="fill:#916f6f;fill-opacity:1;stroke:none"
+           id="path4196"
+           sodipodi:cx="278.57144"
+           sodipodi:cy="225"
+           sodipodi:rx="88.571426"
+           sodipodi:ry="100.71429"
+           d="m 367.14287,225 c 0,55.62296 -39.65478,100.71429 -88.57143,100.71429 -48.91665,0 -88.57142,-45.09133 -88.57142,-100.71429 0,-55.62296 39.65477,-100.71429 88.57142,-100.71429 48.91665,0 88.57143,45.09133 88.57143,100.71429 z"
+           transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+           inkscape:transform-center-x="14.142136"
+           inkscape:transform-center-y="138.59293" />
+        <path
+           style="fill:#ac9393;stroke:none;filter:url(#filter5267)"
+           d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
+           id="path5213"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc"
+           clip-path="url(#clipPath5273)" />
+        <g
+           id="g4183"
+           transform="matrix(0.98436365,-0.17614827,0.17614827,0.98436365,66.73082,15.845888)">
+          <path
+             transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)"
+             d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
+             sodipodi:ry="8.5714283"
+             sodipodi:rx="8.5714283"
+             sodipodi:cy="108.07647"
+             sodipodi:cx="88.571426"
+             id="path3078"
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             sodipodi:type="arc" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)"
+             d="m 291.42857,125.21932 c 0,19.72446 -15.98983,35.71429 -35.71429,35.71429 -19.72446,0 -35.71429,-15.98983 -35.71429,-35.71429 0,-19.72445 15.98983,-35.714285 35.71429,-35.714285 19.72446,0 35.71429,15.989835 35.71429,35.714285 z"
+             sodipodi:ry="35.714287"
+             sodipodi:rx="35.714287"
+             sodipodi:cy="125.21932"
+             sodipodi:cx="255.71428"
+             id="path3068"
+             style="fill:url(#radialGradient3210);fill-opacity:1;stroke:none"
+             sodipodi:type="arc" />
+          <path
+             sodipodi:type="arc"
+             style="fill:url(#radialGradient3212);fill-opacity:1;stroke:none"
+             id="path3070"
+             sodipodi:cx="255.71428"
+             sodipodi:cy="125.21932"
+             sodipodi:rx="35.714287"
+             sodipodi:ry="35.714287"
+             d="m 291.42857,125.21932 c 0,19.72446 -15.98983,35.71429 -35.71429,35.71429 -19.72446,0 -35.71429,-15.98983 -35.71429,-35.71429 0,-19.72445 15.98983,-35.714285 35.71429,-35.714285 19.72446,0 35.71429,15.989835 35.71429,35.714285 z"
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)"
+             d="m 120,141.6479 c 0,9.86223 -7.99491,17.85715 -17.85714,17.85715 -9.862228,0 -17.857143,-7.99492 -17.857143,-17.85715 0,-9.86222 7.994915,-17.85714 17.857143,-17.85714 9.86223,0 17.85714,7.99492 17.85714,17.85714 z"
+             sodipodi:ry="17.857143"
+             sodipodi:rx="17.857143"
+             sodipodi:cy="141.6479"
+             sodipodi:cx="102.14286"
+             id="path3072"
+             style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
+             sodipodi:type="arc" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)"
+             sodipodi:type="arc"
+             style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
+             id="path3074"
+             sodipodi:cx="102.14286"
+             sodipodi:cy="141.6479"
+             sodipodi:rx="17.857143"
+             sodipodi:ry="17.857143"
+             d="m 120,141.6479 c 0,9.86223 -7.99491,17.85715 -17.85714,17.85715 -9.862228,0 -17.857143,-7.99492 -17.857143,-17.85715 0,-9.86222 7.994915,-17.85714 17.857143,-17.85714 9.86223,0 17.85714,7.99492 17.85714,17.85714 z" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
+             id="path3848"
+             sodipodi:cx="88.571426"
+             sodipodi:cy="108.07647"
+             sodipodi:rx="8.5714283"
+             sodipodi:ry="8.5714283"
+             d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)"
+             inkscape:transform-center-y="-8.5714283"
+             inkscape:transform-center-x="160"
+             d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
+             sodipodi:ry="8.5714283"
+             sodipodi:rx="8.5714283"
+             sodipodi:cy="108.07647"
+             sodipodi:cx="88.571426"
+             id="path3850"
+             style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
+             sodipodi:type="arc" />
+        </g>
+      </g>
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path4970"
+         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
+         style="fill:#483737;stroke:none" />
+      <g
+         transform="translate(45.254834,-16.970563)"
+         id="g5525">
+        <path
+           style="fill:#483737;stroke:none"
+           d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+           id="path4972"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czczc" />
+        <path
+           style="fill:#ac9393;stroke:none;filter:url(#filter5515)"
+           d="m 388.90873,70.071935 c 24.97231,1.895917 68.55292,-12.41651 83.4386,55.154325 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 -28.60621,-10.59511 -64.26712,-10.60816 -49.49748,-86.26703 22.75038,-73.322563 -27.13169,-86.631429 -60.81118,-97.580735 z"
+           id="path5277"
+           inkscape:connector-curvature="0"
+           transform="translate(99.174953,-22.230425)"
+           sodipodi:nodetypes="ccccc"
+           clip-path="url(#clipPath5521)" />
+      </g>
+      <path
+         clip-path="url(#clipPath5697)"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path5545"
+         d="m 479.5984,42.184655 c 4.56123,5.03264 -25.43954,26.414954 -31.11269,41.012193 81.59853,-38.524014 52.50992,-12.187945 45.25483,-16.970562 64.56319,68.021414 22.64863,23.566763 35.35534,29.698483 0.0666,-34.315543 -8.75065,-46.973595 -49.49748,-53.740114 z"
+         style="fill:#916f6f;stroke:none;filter:url(#filter5691)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/human_SW_2.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,565 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="human_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4192"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4194"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter5267"
+       x="-0.16879905"
+       width="1.3375981"
+       y="-0.10837393"
+       height="1.2167479">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.1944151"
+         id="feGaussianBlur5269" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5273">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path5275"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5515"
+       x="-0.17605084"
+       width="1.3521017"
+       y="-0.1055817"
+       height="1.2111634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.0916386"
+         id="feGaussianBlur5517" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5521">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path5523"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5691"
+       x="-0.092151701"
+       width="1.1843034"
+       y="-0.18220918"
+       height="1.3644184">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="4.7241826"
+         id="feGaussianBlur5693" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5697">
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path5699"
+         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3210"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3212"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter4181"
+       x="-0.28792509"
+       width="1.5758502"
+       y="-0.085628244"
+       height="1.1712565">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.6644709"
+         id="feGaussianBlur4183" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4187">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4189"
+         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4333"
+       x="-0.17848682"
+       width="1.3569736"
+       y="-0.10472454"
+       height="1.2094491">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.8897645"
+         id="feGaussianBlur4335" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4368">
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path4370"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4525">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path4527"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4637"
+       x="-0.29566456"
+       width="1.5913291"
+       y="-0.084966793"
+       height="1.1699336">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.3834616"
+         id="feGaussianBlur4639" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="355.7203"
+     inkscape:cy="298.97676"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <g
+       id="g5047"
+       transform="matrix(0.36190724,0.82402862,-0.82402861,0.36190724,524.23411,-465.37442)"
+       inkscape:transform-center-y="32.451439"
+       inkscape:transform-center-x="86.393049">
+      <path
+         style="fill:#916f6f;stroke:none"
+         d="m 646.4756,548.47312 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
+         id="path5041"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccc" />
+      <path
+         style="fill:#000080;stroke:none"
+         d="m 649.30403,429.67917 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         id="path5043"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="zcccccz" />
+    </g>
+    <path
+       sodipodi:nodetypes="czcccccc"
+       inkscape:connector-curvature="0"
+       id="path5033"
+       d="m 397.92543,402.44336 c -6.97371,-34.55039 9.53558,-61.64737 30.04057,-51.49607 20.50498,10.15132 45.52715,30.39549 48.10327,96.57845 37.96623,-13.47509 42.78895,14.85703 73.08987,30.55731 -8.54252,24.55176 -17.43321,42.32317 -47.32945,59.18465 -13.47228,-1.22285 -9.76141,-25.80672 10.20317,-50.17026 -24.00681,-0.002 -48.00793,-0.24268 -71.67795,-14.31889 -11.48177,-17.19738 -20.18972,-27.88319 -42.42948,-70.33519 z"
+       style="fill:#000080;stroke:none"
+       inkscape:transform-center-x="-44.922255"
+       inkscape:transform-center-y="76.76831" />
+    <g
+       id="g4191"
+       transform="translate(11.313709,-70.710678)">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4993"
+         d="m 418.78721,247.24563 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17992 61.79294,57.91208 101.82337,18.38478 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97457 11.73233,-34.66295 46.48974,-77.2162 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76955 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4187)"
+         sodipodi:nodetypes="ccccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path3227"
+         d="m 397.39401,320.38773 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 -17.1011,21.25703 -35.67363,41.60443 -19.79899,84.85281 -4.78131,76.4006 0.69986,75.83259 2.82842,100.40916 20.00634,4.58823 33.73058,-1.29371 42.42641,-15.55635 2.28969,-4.04058 -13.48309,-48.72174 -25.45584,-84.85281 13.64268,-16.54824 30.41223,-27.62448 29.69848,-69.29647 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4181)" />
+    </g>
+    <g
+       id="g4641"
+       transform="matrix(0.88545732,0.4647207,-0.4647207,0.88545732,241.94886,-305.70322)"
+       inkscape:transform-center-x="54.807539"
+       inkscape:transform-center-y="69.703021">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path5014"
+         d="m 496.56897,504.63249 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34897 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75299 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00061 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4525)"
+         sodipodi:nodetypes="cccccscc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path4377"
+         d="m 432.74935,522.62027 c 8.69565,-17.42519 19.6262,-29.49223 26.87006,4.24264 10.03825,49.99242 -20.71732,67.89695 -45.25484,93.3381 30.71222,9.88911 42.97592,56.10004 40.75484,81.59546 -14.52577,11.54448 -19.31393,12.59837 -38.84609,12.11292 -5.8872,-11.68777 11.02272,-19.36075 20.02092,-19.72217 23.02847,-0.92495 -25.254,-40.95795 -34.65759,-72.572 5.54095,-24.09575 0.92267,-29.12234 31.1127,-98.99495 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4637)" />
+    </g>
+    <g
+       id="g4372"
+       transform="matrix(0.8799328,-0.47509816,0.47509816,0.8799328,-176.99351,190.26961)"
+       inkscape:transform-center-y="95.985606"
+       inkscape:transform-center-x="-38.089074">
+      <path
+         sodipodi:nodetypes="cccccccccc"
+         inkscape:connector-curvature="0"
+         id="path5020"
+         d="m 560.20857,488.36904 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
+         style="fill:#916f6f;stroke:none" />
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path5018"
+         d="m 563.037,369.57509 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+      <path
+         clip-path="url(#clipPath4368)"
+         sodipodi:nodetypes="cccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path4195"
+         d="m 492.14632,371.29942 c -8.37415,-5.79487 -16.02205,-9.41099 -16.97056,7.07107 52.42753,49.83624 61.27143,56.75956 65.05382,70.71068 -46.08607,54.91669 -32.62426,43.55735 -36.76955,52.3259 14.58206,-6.94513 32.62684,-27.74115 50.91169,-49.49747 -9.7226,-29.53274 -19.441,-58.49092 -62.2254,-80.61018 z"
+         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4333)" />
+    </g>
+    <g
+       id="g3192"
+       transform="matrix(0.992927,0.11872647,-0.11872647,0.992927,11.742484,-71.705766)"
+       inkscape:transform-center-x="-72.814863"
+       inkscape:transform-center-y="-45.32345">
+      <g
+         transform="translate(52.325902,1.4142136)"
+         id="g5529">
+        <path
+           sodipodi:type="arc"
+           style="fill:#916f6f;fill-opacity:1;stroke:none"
+           id="path4196"
+           sodipodi:cx="278.57144"
+           sodipodi:cy="225"
+           sodipodi:rx="88.571426"
+           sodipodi:ry="100.71429"
+           d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+           transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+           inkscape:transform-center-x="14.142136"
+           inkscape:transform-center-y="138.59293" />
+        <path
+           style="fill:#ac9393;stroke:none;filter:url(#filter5267)"
+           d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
+           id="path5213"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc"
+           clip-path="url(#clipPath5273)" />
+        <g
+           id="g4183"
+           transform="matrix(0.98436365,-0.17614827,0.17614827,0.98436365,66.73082,15.845888)">
+          <path
+             transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)"
+             d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+             sodipodi:ry="8.5714283"
+             sodipodi:rx="8.5714283"
+             sodipodi:cy="108.07647"
+             sodipodi:cx="88.571426"
+             id="path3078"
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             sodipodi:type="arc" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)"
+             d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+             sodipodi:ry="35.714287"
+             sodipodi:rx="35.714287"
+             sodipodi:cy="125.21932"
+             sodipodi:cx="255.71428"
+             id="path3068"
+             style="fill:url(#radialGradient3210);fill-opacity:1;stroke:none"
+             sodipodi:type="arc" />
+          <path
+             sodipodi:type="arc"
+             style="fill:url(#radialGradient3212);fill-opacity:1;stroke:none"
+             id="path3070"
+             sodipodi:cx="255.71428"
+             sodipodi:cy="125.21932"
+             sodipodi:rx="35.714287"
+             sodipodi:ry="35.714287"
+             d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)"
+             d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+             sodipodi:ry="17.857143"
+             sodipodi:rx="17.857143"
+             sodipodi:cy="141.6479"
+             sodipodi:cx="102.14286"
+             id="path3072"
+             style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
+             sodipodi:type="arc" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)"
+             sodipodi:type="arc"
+             style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
+             id="path3074"
+             sodipodi:cx="102.14286"
+             sodipodi:cy="141.6479"
+             sodipodi:rx="17.857143"
+             sodipodi:ry="17.857143"
+             d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
+             id="path3848"
+             sodipodi:cx="88.571426"
+             sodipodi:cy="108.07647"
+             sodipodi:rx="8.5714283"
+             sodipodi:ry="8.5714283"
+             d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z" />
+          <path
+             transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)"
+             inkscape:transform-center-y="-8.5714283"
+             inkscape:transform-center-x="160"
+             d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+             sodipodi:ry="8.5714283"
+             sodipodi:rx="8.5714283"
+             sodipodi:cy="108.07647"
+             sodipodi:cx="88.571426"
+             id="path3850"
+             style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
+             sodipodi:type="arc" />
+        </g>
+      </g>
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path4970"
+         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
+         style="fill:#483737;stroke:none" />
+      <g
+         transform="translate(45.254834,-16.970563)"
+         id="g5525">
+        <path
+           style="fill:#483737;stroke:none"
+           d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+           id="path4972"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czczc" />
+        <path
+           style="fill:#ac9393;stroke:none;filter:url(#filter5515)"
+           d="m 388.90873,70.071935 c 24.97231,1.895917 68.55292,-12.41651 83.4386,55.154325 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 -28.60621,-10.59511 -64.26712,-10.60816 -49.49748,-86.26703 22.75038,-73.322563 -27.13169,-86.631429 -60.81118,-97.580735 z"
+           id="path5277"
+           inkscape:connector-curvature="0"
+           transform="translate(99.174953,-22.230425)"
+           sodipodi:nodetypes="ccccc"
+           clip-path="url(#clipPath5521)" />
+      </g>
+      <path
+         clip-path="url(#clipPath5697)"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path5545"
+         d="m 479.5984,42.184655 c 4.56123,5.03264 -25.43954,26.414954 -31.11269,41.012193 81.59853,-38.524014 52.50992,-12.187945 45.25483,-16.970562 64.56319,68.021414 22.64863,23.566763 35.35534,29.698483 0.0666,-34.315543 -8.75065,-46.973595 -49.49748,-53.740114 z"
+         style="fill:#916f6f;stroke:none;filter:url(#filter5691)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/human_S_1.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,644 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="human_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4192"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4194"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter5267"
+       x="-0.16879905"
+       width="1.3375981"
+       y="-0.10837393"
+       height="1.2167479">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.1944151"
+         id="feGaussianBlur5269" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5273">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path5275"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5515"
+       x="-0.17605084"
+       width="1.3521017"
+       y="-0.1055817"
+       height="1.2111634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.0916386"
+         id="feGaussianBlur5517" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5521">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path5523"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5691"
+       x="-0.092151701"
+       width="1.1843034"
+       y="-0.18220918"
+       height="1.3644184">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="4.7241826"
+         id="feGaussianBlur5693" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5697">
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path5699"
+         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4333"
+       x="-0.17848682"
+       width="1.3569736"
+       y="-0.10472454"
+       height="1.2094491">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.8897645"
+         id="feGaussianBlur4335" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4368">
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path4370"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4525">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path4527"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4637"
+       x="-0.29566456"
+       width="1.5913291"
+       y="-0.084966793"
+       height="1.1699336">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.3834616"
+         id="feGaussianBlur4639" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3245"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3247"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3307"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3309"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter4411"
+       x="-0.50905206"
+       width="2.0181041"
+       y="-0.075831802"
+       height="1.1516636">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="12.571439"
+         id="feGaussianBlur4413" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4432">
+      <g
+         id="g4434">
+        <g
+           id="g4436">
+          <path
+             sodipodi:nodetypes="ccccccc"
+             inkscape:connector-curvature="0"
+             id="path4438"
+             d="m 485.12705,350.4832 c -18.10488,-6.01121 -59.37527,28.33507 -22.62743,101.82338 -17.59273,61.48936 22.7865,58.51027 9.8995,93.33809 -2.01473,0.88196 -26.66019,62.02504 12.72794,53.74011 33.52476,7.3279 39.22368,-22.73394 9.89948,-60.81117 29.07961,-59.36994 7.67013,-72.32831 15.55635,-93.3381 -0.67997,-18.48347 9.43734,-88.60689 -25.45584,-94.75231 z"
+             style="fill:#0000ff;stroke:none" />
+          <path
+             sodipodi:nodetypes="czsccsccc"
+             inkscape:connector-curvature="0"
+             id="path4440"
+             d="m 424.44407,179.36337 c 0.34265,28.91674 -29.41148,27.11787 -45.25484,49.49747 -15.84335,22.3796 32.11855,40.6523 25.36941,79.87425 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17992 85.83458,42.35573 125.865,2.82843 8.79411,-28.10005 -26.68852,-55.86083 -16.96798,-84.14614 11.75524,-34.206 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+             style="fill:#0000ff;stroke:none" />
+        </g>
+      </g>
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4512"
+       x="-0.27638007"
+       width="1.5527601"
+       y="-0.086705384"
+       height="1.1734108">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.6930046"
+         id="feGaussianBlur4514" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4522">
+      <g
+         inkscape:transform-center-y="116.01002"
+         inkscape:transform-center-x="32.044415"
+         transform="matrix(-0.99397367,-0.10961908,-0.10961908,0.99397367,824.28876,91.102486)"
+         id="g4524">
+        <path
+           style="fill:#916f6f;stroke:none"
+           d="m 548.3487,398.40202 c 9.63446,5.61429 0.41155,10.64556 12.92164,25.50091 13.99724,17.698 11.38556,36.82592 11.6459,53.37016 -7.22853,-1.68946 -10.64943,-35.831 -20.38939,-43.29289 3.05357,24.58049 1.58233,33.45282 -4.18013,45.92535 -5.60684,-19.76457 -3.48917,-41.18556 -10.66933,-42.53514 -3.18346,27.38987 -4.59902,30.75117 -13.70601,41.96621 -5.25175,-14.06519 3.27234,-21.169 5.02577,-50.48991 3.37001,-17.31337 3.57429,-23.68878 4.31601,-27.75284 2.76014,-5.82345 3.00744,-7.43518 15.03554,-2.69185 z"
+           id="path4526"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccccccccc"
+           inkscape:transform-center-x="19"
+           inkscape:transform-center-y="-18" />
+        <path
+           style="fill:#0000ff;stroke:none"
+           d="m 495.52371,244.56488 c -7.7686,-42.58622 31.68259,-36.65286 42.96059,-15.88672 25.68634,47.29622 13.04444,50.81775 14.5657,79.2959 9.11585,25.78589 6.99454,59.54249 4.32836,92.90461 -7.51942,4.43076 -22.55289,9.79195 -29.67089,3.10454 -11.6116,-62.27371 -6.95483,-61.67201 -7.38071,-93.73113 -11.55546,-9.82501 -17.03445,-23.10099 -24.80305,-65.6872 z"
+           id="path4528"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="zsccccz" />
+      </g>
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4560"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4562"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="414.96256"
+     inkscape:cy="314.4251"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <path
+       sodipodi:nodetypes="ccccccc"
+       inkscape:connector-curvature="0"
+       id="path3253"
+       d="m 386.64503,356.4594 c 17.52824,-6.27304 58.97017,48.40733 13.21094,108.94668 12.47054,43.58651 -16.15213,41.47479 -7.01723,66.16236 1.42814,0.62518 18.89798,43.96622 -9.02215,38.09348 -23.76391,5.19436 -27.80356,-16.11487 -7.01721,-43.10577 -20.61298,-42.08417 -5.43695,-51.26966 -11.02706,-66.16237 -20.99266,-13.37464 -34.43803,-101.699 20.87271,-103.93438 z"
+       style="fill:#000080;stroke:none" />
+    <g
+       id="g5525"
+       transform="matrix(0.96559274,-0.26005897,0.26005897,0.96559274,-73.474317,130.03578)"
+       inkscape:transform-center-x="-60.860789"
+       inkscape:transform-center-y="50.885106">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path4972"
+         d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+      <path
+         clip-path="url(#clipPath5521)"
+         sodipodi:nodetypes="ccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path5277"
+         d="m 388.90873,70.071935 c 24.97231,1.895917 68.55292,-12.41651 83.4386,55.154325 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 -28.60621,-10.59511 -64.26712,-10.60816 -49.49748,-86.26703 22.75038,-73.322563 -27.13169,-86.631429 -60.81118,-97.580735 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter5515)" />
+    </g>
+    <g
+       id="g3270"
+       inkscape:transform-center-x="-24.913717"
+       inkscape:transform-center-y="82.174243"
+       transform="matrix(0.9959331,-0.09009578,0.09009578,0.9959331,-41.613354,42.787998)">
+      <path
+         style="fill:#916f6f;stroke:none"
+         d="m 527.83261,349.95103 c 6.1415,3.57883 0.26234,6.78602 8.23691,16.25558 8.92256,11.28161 7.25774,23.47473 7.4237,34.02087 -4.60784,-1.07695 -6.7885,-22.84051 -12.99724,-27.5971 1.9465,15.66886 1.00865,21.32454 -2.66463,29.27516 -3.57409,-12.59894 -2.22418,-26.25378 -6.80118,-27.11407 -2.0293,17.4597 -2.93165,19.60237 -8.73691,26.75141 -3.34774,-8.96587 2.08596,-13.4942 3.20368,-32.18485 2.14822,-11.03643 2.27844,-15.10044 2.75125,-17.69108 1.75945,-3.71217 1.91709,-4.73957 9.58442,-1.71592 z"
+         id="path3264"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccc"
+         inkscape:transform-center-x="19"
+         inkscape:transform-center-y="-18" />
+      <path
+         style="fill:#000080;stroke:none"
+         d="m 491.15926,230.88736 c -4.9521,-27.14663 24.1961,-22.3644 31.38528,-9.127 16.37378,30.14903 7.31519,52.39383 8.28492,70.54726 5.81091,16.43724 4.45868,37.95543 2.75912,59.22215 -4.79327,2.82439 -14.37637,6.24189 -18.91375,1.97899 -7.40182,-39.69645 -4.43336,-39.31289 -4.70484,-59.74901 -7.36604,-6.26297 -13.85863,-35.72576 -18.81073,-62.87239 z"
+         id="path3266"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="zsccccz" />
+    </g>
+    <g
+       id="g4419"
+       transform="translate(-19.548411,-3.1749629)">
+      <g
+         id="g4415">
+        <path
+           style="fill:#0000ff;stroke:none"
+           d="m 485.12705,350.4832 c -18.10488,-6.01121 -59.37527,28.33507 -22.62743,101.82338 -17.59273,61.48936 22.7865,58.51027 9.8995,93.33809 -2.01473,0.88196 -26.66019,62.02504 12.72794,53.74011 33.52476,7.3279 39.22368,-22.73394 9.89948,-60.81117 29.07961,-59.36994 7.67013,-72.32831 15.55635,-93.3381 -0.67997,-18.48347 9.43734,-88.60689 -25.45584,-94.75231 z"
+           id="path5014"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="ccccccc" />
+        <path
+           style="fill:#0000ff;stroke:none"
+           d="m 424.44407,179.36337 c 0.34265,28.91674 -29.41148,27.11787 -45.25484,49.49747 -15.84335,22.3796 32.11855,40.6523 25.36941,79.87425 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17992 85.83458,42.35573 125.865,2.82843 8.79411,-28.10005 -26.68852,-55.86083 -16.96798,-84.14614 11.75524,-34.206 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+           id="path4993"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czsccsccc" />
+      </g>
+    </g>
+    <path
+       style="fill:#00ffff;fill-opacity:1;stroke:none;filter:url(#filter4411)"
+       d="m 503.7813,220.36337 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 12.55995,17.11601 16.51679,100.22373 -16.79899,113.85281 53.69743,76.29174 39.25947,107.22553 27.86181,135.29934 13.12138,10.63002 23.52523,45.86191 2.53484,90.15639 36.16064,28.38686 8.0451,50.8936 9.50156,47.72978 5.57936,-12.11994 -35.98478,-11.76223 -29.54593,2.66479 2.15753,4.8342 42.84802,14.82094 38.47614,1.55886 -1.56729,15.10268 27.20258,-22.52512 -7.3054,-53.36407 19.73316,-34.18195 24.47806,-84.06272 6.73181,-86.19228 24.32814,-12.78445 3.54135,-114.52401 -26.45584,-143.85281 13.64268,-16.54824 25.41223,-50.62448 24.69848,-92.29647 z"
+       id="path3227"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccccssccccc"
+       clip-path="url(#clipPath4432)"
+       transform="translate(-19.548411,-3.1749629)" />
+    <g
+       id="g3258"
+       transform="matrix(-0.99397367,-0.10961908,-0.10961908,0.99397367,903.9153,65.697098)"
+       inkscape:transform-center-x="32.044415"
+       inkscape:transform-center-y="116.01002">
+      <path
+         inkscape:transform-center-y="-18"
+         inkscape:transform-center-x="19"
+         sodipodi:nodetypes="cccccccccc"
+         inkscape:connector-curvature="0"
+         id="path5020"
+         d="m 548.3487,398.40202 c 9.63446,5.61429 0.41155,10.64556 12.92164,25.50091 13.99724,17.698 11.38556,36.82592 11.6459,53.37016 -7.22853,-1.68946 -10.64943,-35.831 -20.38939,-43.29289 3.05357,24.58049 1.58233,33.45282 -4.18013,45.92535 -5.60684,-19.76457 -3.48917,-41.18556 -10.66933,-42.53514 -3.18346,27.38987 -4.59902,30.75117 -13.70601,41.96621 -5.25175,-14.06519 3.27234,-21.169 5.02577,-50.48991 3.37001,-17.31337 3.57429,-23.68878 4.31601,-27.75284 2.76014,-5.82345 3.00744,-7.43518 15.03554,-2.69185 z"
+         style="fill:#916f6f;stroke:none" />
+      <path
+         sodipodi:nodetypes="zsccccz"
+         inkscape:connector-curvature="0"
+         id="path5018"
+         d="m 495.52371,244.56488 c -7.7686,-42.58622 31.68259,-36.65286 42.96059,-15.88672 25.68634,47.29622 13.04444,50.81775 14.5657,79.2959 9.11585,25.78589 6.99454,59.54249 4.32836,92.90461 -7.51942,4.43076 -22.55289,9.79195 -29.67089,3.10454 -11.6116,-62.27371 -6.95483,-61.67201 -7.38071,-93.73113 -11.55546,-9.82501 -17.03445,-23.10099 -24.80305,-65.6872 z"
+         style="fill:#0000ff;stroke:none" />
+    </g>
+    <g
+       id="g4633"
+       inkscape:transform-center-x="6.8239285"
+       inkscape:transform-center-y="-81.540337"
+       transform="matrix(0.99001113,-0.14098921,0.14098921,0.99001113,-20.059898,60.94283)">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,305.95742,-158.19454)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path4196"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="translate(20.049569,-21.559739)"
+         clip-path="url(#clipPath5273)"
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path5213"
+         d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter5267)" />
+      <g
+         transform="matrix(0.98436365,-0.17614827,0.17614827,0.98436365,98.780389,-5.7138509)"
+         id="g4183">
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;stroke:none"
+           id="path3078"
+           sodipodi:cx="88.571426"
+           sodipodi:cy="108.07647"
+           sodipodi:rx="8.5714283"
+           sodipodi:ry="8.5714283"
+           d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+           transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:url(#radialGradient4560);fill-opacity:1;stroke:none"
+           id="path3068"
+           sodipodi:cx="255.71428"
+           sodipodi:cy="125.21932"
+           sodipodi:rx="35.714287"
+           sodipodi:ry="35.714287"
+           d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)" />
+        <path
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)"
+           d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+           sodipodi:ry="35.714287"
+           sodipodi:rx="35.714287"
+           sodipodi:cy="125.21932"
+           sodipodi:cx="255.71428"
+           id="path3070"
+           style="fill:url(#radialGradient4562);fill-opacity:1;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
+           id="path3072"
+           sodipodi:cx="102.14286"
+           sodipodi:cy="141.6479"
+           sodipodi:rx="17.857143"
+           sodipodi:ry="17.857143"
+           d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)" />
+        <path
+           d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+           sodipodi:ry="17.857143"
+           sodipodi:rx="17.857143"
+           sodipodi:cy="141.6479"
+           sodipodi:cx="102.14286"
+           id="path3074"
+           style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
+           sodipodi:type="arc"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)" />
+        <path
+           d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+           sodipodi:ry="8.5714283"
+           sodipodi:rx="8.5714283"
+           sodipodi:cy="108.07647"
+           sodipodi:cx="88.571426"
+           id="path3848"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
+           sodipodi:type="arc"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
+           id="path3850"
+           sodipodi:cx="88.571426"
+           sodipodi:cy="108.07647"
+           sodipodi:rx="8.5714283"
+           sodipodi:ry="8.5714283"
+           d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+           inkscape:transform-center-x="160"
+           inkscape:transform-center-y="-8.5714283"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)" />
+      </g>
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path4970"
+         d="M 431.28342,0.0138761 C 378.62824,-11.056367 341.4165,30.779281 345.52605,81.700177 362.66077,66.625014 361.17434,71.578418 390.38391,54.842302 373.18009,64.625073 371.72611,89.302977 401.14128,103.2149 385.51942,88.815327 416.57131,67.806851 442.96971,55.599661 486.42951,68.96375 471.28726,89.192567 498.41336,103.94282 528.8049,76.497048 490.24501,-3.3846599 431.28342,0.0138761 z"
+         style="fill:#483737;stroke:none" />
+      <path
+         transform="translate(-32.276333,-22.973953)"
+         clip-path="url(#clipPath5697)"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path5545"
+         d="m 479.5984,42.184655 c 4.56123,5.03264 -25.43954,26.414954 -31.11269,41.012193 81.59853,-38.524014 52.50992,-12.187945 45.25483,-16.970562 64.56319,68.021414 22.64863,23.566763 35.35534,29.698483 0.0666,-34.315543 -8.75065,-46.973595 -49.49748,-53.740114 z"
+         style="fill:#916f6f;stroke:none;filter:url(#filter5691)" />
+    </g>
+    <path
+       style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4512)"
+       d="m 291.32799,251.09127 c -4.73824,34.95886 -10.68795,68.94854 -33.94112,89.09545 3.31093,35.2655 1.319,68.40986 -14.14214,96.16653 30.68109,-7.83371 22.73527,-59.81247 29.69849,-94.75231 32.33661,-40.25002 35.02379,-69.09642 18.38477,-90.50967 z"
+       id="path4442"
+       inkscape:connector-curvature="0"
+       transform="translate(79.626542,-25.405388)"
+       sodipodi:nodetypes="ccccc"
+       clip-path="url(#clipPath4522)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/human_S_2.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,708 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="human_S_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4192"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4194"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter5267"
+       x="-0.16879905"
+       width="1.3375981"
+       y="-0.10837393"
+       height="1.2167479">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.1944151"
+         id="feGaussianBlur5269" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5273">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path5275"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5515"
+       x="-0.17605084"
+       width="1.3521017"
+       y="-0.1055817"
+       height="1.2111634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.0916386"
+         id="feGaussianBlur5517" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5521">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path5523"
+         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5691"
+       x="-0.092151701"
+       width="1.1843034"
+       y="-0.18220918"
+       height="1.3644184">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="4.7241826"
+         id="feGaussianBlur5693" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5697">
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path5699"
+         d="m 463.55975,22.987829 c -52.65518,-11.070243 -89.86692,30.765405 -85.75737,81.686301 17.13472,-15.075163 15.64829,-10.121759 44.85786,-26.857875 -17.20382,9.782771 -18.6578,34.460675 10.75737,48.372595 -15.62186,-14.39957 15.43003,-35.408046 41.82843,-47.615236 43.4598,13.364089 28.31755,33.592906 55.44365,48.343156 C 561.08123,99.471001 522.52134,19.589293 463.55975,22.987829 z"
+         style="fill:#483737;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4333"
+       x="-0.17848682"
+       width="1.3569736"
+       y="-0.10472454"
+       height="1.2094491">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.8897645"
+         id="feGaussianBlur4335" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4368">
+      <path
+         sodipodi:nodetypes="zcccccz"
+         inkscape:connector-curvature="0"
+         id="path4370"
+         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4525">
+      <path
+         sodipodi:nodetypes="czcccccc"
+         inkscape:connector-curvature="0"
+         id="path4527"
+         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4637"
+       x="-0.29566456"
+       width="1.5913291"
+       y="-0.084966793"
+       height="1.1699336">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.3834616"
+         id="feGaussianBlur4639" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3245"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3247"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3307"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient3309"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter4411"
+       x="-0.50905206"
+       width="2.0181041"
+       y="-0.075831802"
+       height="1.1516636">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="12.571439"
+         id="feGaussianBlur4413" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4432">
+      <g
+         id="g4434">
+        <g
+           id="g4436">
+          <path
+             sodipodi:nodetypes="ccccccc"
+             inkscape:connector-curvature="0"
+             id="path4438"
+             d="m 485.12705,350.4832 c -18.10488,-6.01121 -59.37527,28.33507 -22.62743,101.82338 -17.59273,61.48936 22.7865,58.51027 9.8995,93.33809 -2.01473,0.88196 -26.66019,62.02504 12.72794,53.74011 33.52476,7.3279 39.22368,-22.73394 9.89948,-60.81117 29.07961,-59.36994 7.67013,-72.32831 15.55635,-93.3381 -0.67997,-18.48347 9.43734,-88.60689 -25.45584,-94.75231 z"
+             style="fill:#0000ff;stroke:none" />
+          <path
+             sodipodi:nodetypes="czsccsccc"
+             inkscape:connector-curvature="0"
+             id="path4440"
+             d="m 424.44407,179.36337 c 0.34265,28.91674 -29.41148,27.11787 -45.25484,49.49747 -15.84335,22.3796 32.11855,40.6523 25.36941,79.87425 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17992 85.83458,42.35573 125.865,2.82843 8.79411,-28.10005 -26.68852,-55.86083 -16.96798,-84.14614 11.75524,-34.206 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+             style="fill:#0000ff;stroke:none" />
+        </g>
+      </g>
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4512"
+       x="-0.27638007"
+       width="1.5527601"
+       y="-0.086705384"
+       height="1.1734108">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.6930046"
+         id="feGaussianBlur4514" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4522">
+      <g
+         inkscape:transform-center-y="116.01002"
+         inkscape:transform-center-x="32.044415"
+         transform="matrix(-0.99397367,-0.10961908,-0.10961908,0.99397367,824.28876,91.102486)"
+         id="g4524">
+        <path
+           style="fill:#916f6f;stroke:none"
+           d="m 548.3487,398.40202 c 9.63446,5.61429 0.41155,10.64556 12.92164,25.50091 13.99724,17.698 11.38556,36.82592 11.6459,53.37016 -7.22853,-1.68946 -10.64943,-35.831 -20.38939,-43.29289 3.05357,24.58049 1.58233,33.45282 -4.18013,45.92535 -5.60684,-19.76457 -3.48917,-41.18556 -10.66933,-42.53514 -3.18346,27.38987 -4.59902,30.75117 -13.70601,41.96621 -5.25175,-14.06519 3.27234,-21.169 5.02577,-50.48991 3.37001,-17.31337 3.57429,-23.68878 4.31601,-27.75284 2.76014,-5.82345 3.00744,-7.43518 15.03554,-2.69185 z"
+           id="path4526"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccccccccc"
+           inkscape:transform-center-x="19"
+           inkscape:transform-center-y="-18" />
+        <path
+           style="fill:#0000ff;stroke:none"
+           d="m 495.52371,244.56488 c -7.7686,-42.58622 31.68259,-36.65286 42.96059,-15.88672 25.68634,47.29622 13.04444,50.81775 14.5657,79.2959 9.11585,25.78589 6.99454,59.54249 4.32836,92.90461 -7.51942,4.43076 -22.55289,9.79195 -29.67089,3.10454 -11.6116,-62.27371 -6.95483,-61.67201 -7.38071,-93.73113 -11.55546,-9.82501 -17.03445,-23.10099 -24.80305,-65.6872 z"
+           id="path4528"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="zsccccz" />
+      </g>
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4560"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4562"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <filter
+       inkscape:collect="always"
+       id="filter4757"
+       x="-0.23134917"
+       width="1.4626983"
+       y="-0.092344251"
+       height="1.1846885">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.2038921"
+         id="feGaussianBlur4759" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4771">
+      <path
+         sodipodi:nodetypes="zsccccz"
+         inkscape:connector-curvature="0"
+         id="path4773"
+         d="m 355.3312,258.31495 c -12.39004,-41.47801 27.47381,-39.90501 40.96021,-20.50029 30.71611,44.19549 18.53643,49.08159 23.17027,77.22137 11.88754,24.63122 13.47938,58.41693 14.48639,91.87026 -6.98841,5.22833 -21.34359,12.20517 -29.15177,6.33833 -18.36801,-60.62558 -13.67334,-60.53797 -17.61095,-92.35721 -12.56283,-8.4991 -19.4641,-21.09448 -31.85415,-62.57246 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4831">
+      <path
+         sodipodi:nodetypes="czsccsccc"
+         inkscape:connector-curvature="0"
+         id="path4833"
+         d="m 305.72071,198.41883 c 0.34265,28.91674 -19.51199,25.70366 -35.35535,48.08326 -15.84335,22.37961 22.21906,42.06652 15.46992,81.28847 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17991 75.93509,40.94151 115.96551,1.41422 30.77732,-18.67868 -15.37275,-53.83965 -7.06849,-82.73194 9.99139,-34.76216 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4897"
+       x="-0.27374593"
+       width="1.5474919"
+       y="-0.086967919"
+       height="1.1739358">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.50671"
+         id="feGaussianBlur4899" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4903">
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path4905"
+         d="m 277.23061,369.53867 c 18.10488,-6.01121 59.37527,28.33507 22.62743,101.82338 17.59273,61.48935 -22.7865,58.51026 -9.8995,93.33808 2.01473,0.88196 26.66019,62.02504 -12.72794,53.74011 -33.52476,7.3279 -39.22368,-22.73394 -9.89948,-60.81117 -29.07961,-59.36993 -7.67013,-72.32831 -15.55635,-93.3381 0.67997,-18.48347 -9.43734,-88.60689 25.45584,-94.75231 z"
+         style="fill:#0000ff;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4923"
+       x="-0.31657113"
+       width="1.6331423"
+       y="-0.083384285"
+       height="1.1667686">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6.3918163"
+         id="feGaussianBlur4925" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="414.96256"
+     inkscape:cy="314.4251"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <g
+       id="g5525"
+       transform="matrix(0.99918235,-0.04043067,0.04043067,0.99918235,-74.376491,18.403285)"
+       inkscape:transform-center-x="-45.484609"
+       inkscape:transform-center-y="63.15239">
+      <path
+         sodipodi:nodetypes="czczc"
+         inkscape:connector-curvature="0"
+         id="path4972"
+         d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
+         style="fill:#483737;stroke:none" />
+      <path
+         clip-path="url(#clipPath5521)"
+         sodipodi:nodetypes="ccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path5277"
+         d="m 388.90873,70.071935 c 24.97231,1.895917 68.55292,-12.41651 83.4386,55.154325 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 -28.60621,-10.59511 -64.26712,-10.60816 -49.49748,-86.26703 22.75038,-73.322563 -27.13169,-86.631429 -60.81118,-97.580735 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter5515)" />
+    </g>
+    <path
+       sodipodi:nodetypes="ccccccc"
+       inkscape:connector-curvature="0"
+       id="path3253"
+       d="m 453.33917,356.4594 c -17.52824,-6.27304 -58.97017,48.40733 -13.21094,108.94668 -12.47054,43.58651 16.15213,41.47479 7.01723,66.16236 -1.42814,0.62518 -18.89798,43.96622 9.02215,38.09348 23.76391,5.19436 27.80356,-16.11487 7.01721,-43.10577 20.61298,-42.08417 5.43695,-51.26966 11.02706,-66.16237 20.99266,-13.37464 34.43803,-101.699 -20.87271,-103.93438 z"
+       style="fill:#000080;stroke:none" />
+    <path
+       style="fill:#0000ff;stroke:none"
+       d="m 376.40556,347.30824 c 18.10488,-6.01121 59.37527,28.33507 22.62743,101.82338 17.59273,61.48936 -22.7865,58.51027 -9.8995,93.33809 2.01473,0.88196 26.66019,62.02504 -12.72794,53.74011 -33.52476,7.3279 -39.22368,-22.73394 -9.89948,-60.81117 -29.07961,-59.36994 -7.67013,-72.32831 -15.55635,-93.3381 0.67997,-18.48347 -9.43734,-88.60689 25.45584,-94.75231 z"
+       id="path5014"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccc" />
+    <g
+       id="g3270"
+       inkscape:transform-center-x="27.444293"
+       inkscape:transform-center-y="79.452359"
+       transform="matrix(-0.98474539,-0.17400148,-0.17400148,0.98474539,913.71353,96.120971)">
+      <g
+         id="g4699">
+        <path
+           inkscape:transform-center-y="-18"
+           inkscape:transform-center-x="19"
+           sodipodi:nodetypes="cccccccccc"
+           inkscape:connector-curvature="0"
+           id="path3264"
+           d="m 527.83261,349.95103 c 6.1415,3.57883 0.26234,6.78602 8.23691,16.25558 8.92256,11.28161 7.25774,23.47473 7.4237,34.02087 -4.60784,-1.07695 -6.7885,-22.84051 -12.99724,-27.5971 1.9465,15.66886 1.00865,21.32454 -2.66463,29.27516 -3.57409,-12.59894 -2.22418,-26.25378 -6.80118,-27.11407 -2.0293,17.4597 -2.93165,19.60237 -8.73691,26.75141 -3.34774,-8.96587 2.08596,-13.4942 3.20368,-32.18485 2.14822,-11.03643 2.27844,-15.10044 2.75125,-17.69108 1.75945,-3.71217 1.91709,-4.73957 9.58442,-1.71592 z"
+           style="fill:#916f6f;stroke:none" />
+        <path
+           sodipodi:nodetypes="zsccccz"
+           inkscape:connector-curvature="0"
+           id="path3266"
+           d="m 491.15926,230.88736 c -4.9521,-27.14663 24.1961,-22.3644 31.38528,-9.127 16.37378,30.14903 7.31519,52.39383 8.28492,70.54726 5.81091,16.43724 4.45868,37.95543 2.75912,59.22215 -4.79327,2.82439 -14.37637,6.24189 -18.91375,1.97899 -7.40182,-39.69645 -4.43336,-39.31289 -4.70484,-59.74901 -7.36604,-6.26297 -13.85863,-35.72576 -18.81073,-62.87239 z"
+           style="fill:#000080;stroke:none" />
+      </g>
+    </g>
+    <path
+       style="fill:#0000ff;stroke:none"
+       d="m 404.89566,176.18841 c 0.34265,28.91674 -19.51199,25.70366 -35.35535,48.08326 -15.84335,22.3796 22.21906,42.06651 15.46992,81.28846 -3.76165,21.86043 -35.18004,52.77717 -29.61205,75.68924 19.52353,35.17992 75.93509,40.94152 115.96551,1.41422 30.77732,-18.67868 -15.37275,-53.83964 -7.06849,-82.73193 9.99139,-34.76217 29.43838,-44.22438 8.96798,-93.63056 -33.4282,-3.94354 -27.13382,-4.52045 -31.59798,-35.76955 z"
+       id="path4993"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="czsccsccc" />
+    <path
+       style="fill:#916f6f;stroke:none"
+       d="m 523.87629,383.20396 c 10.19183,4.52433 1.57602,10.53629 15.63915,23.93077 15.85293,16.05699 15.35377,35.35592 17.42611,51.77192 -7.37017,-0.88689 -14.51301,-34.44769 -25.01224,-40.79692 5.72966,24.09763 5.23986,33.07777 0.87935,46.10681 -7.73962,-19.03085 -7.98286,-40.55488 -15.26769,-41.10925 -0.16183,27.57378 -1.20039,31.07 -9.02312,43.21575 -6.76191,-13.40474 0.93209,-21.40014 -0.53917,-50.73656 1.45182,-17.57845 0.956,-23.93784 1.24775,-28.05871 2.10515,-6.09092 2.17428,-7.72005 14.64986,-4.32381 z"
+       id="path5020"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccccccccc"
+       inkscape:transform-center-x="19"
+       inkscape:transform-center-y="-18" />
+    <path
+       style="fill:#0000ff;stroke:none"
+       d="m 454.50615,236.08452 c -12.39004,-41.478 27.47381,-39.905 40.96021,-20.50028 30.71611,44.19548 18.53643,49.08158 23.17027,77.22136 11.88754,24.63122 13.47938,58.41693 14.48639,91.87026 -6.98841,5.22833 -21.34359,12.20517 -29.15177,6.33833 -18.36801,-60.62558 -13.67334,-60.53797 -17.61095,-92.35721 -12.56283,-8.4991 -19.4641,-21.09448 -31.85415,-62.57246 z"
+       id="path5018"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="zsccccz" />
+    <path
+       style="fill:#00ffff;stroke:none;filter:url(#filter4757)"
+       d="m 360.62446,225.63543 c -20.74133,-1.65044 67.43668,33.35046 39.59798,98.99494 37.37489,91.44075 14.59364,65.34445 29.69848,87.68125 12.39813,-16.35754 0.99942,-56.51193 -8.48528,-94.75231 -5.6471,-73.09695 -28.80023,-96.50427 -60.81118,-91.92388 z"
+       id="path4703"
+       inkscape:connector-curvature="0"
+       transform="translate(99.174953,-22.230425)"
+       sodipodi:nodetypes="ccccc"
+       clip-path="url(#clipPath4771)" />
+    <path
+       style="fill:#00ffff;stroke:none;filter:url(#filter4923)"
+       d="m 379.00924,285.0324 -18.38478,45.25483 c 12.31171,38.38803 30.2987,48.3892 21.21321,66.46804 -5.56701,-5.47442 -16.5007,25.69347 -14.40227,15.00464 0.93276,-4.75123 -4.18543,-49.535 -29.43836,-74.40161 9.26242,-0.19216 26.72921,-48.65143 25.72563,-62.07913 -2.14706,-28.72732 -34.38342,-57.01258 -26.68649,-62.01747 8.54025,-5.55325 50.77692,38.41223 41.97306,71.7707 z"
+       id="path4775"
+       inkscape:connector-curvature="0"
+       transform="translate(99.174953,-22.230425)"
+       sodipodi:nodetypes="cccscssc"
+       clip-path="url(#clipPath4831)" />
+    <g
+       id="g4633"
+       inkscape:transform-center-x="-7.9571643"
+       inkscape:transform-center-y="-82.037817"
+       transform="matrix(0.99995779,0.00918793,-0.00918793,0.99995779,1.5984264,-3.8522462)">
+      <path
+         inkscape:transform-center-y="138.59293"
+         inkscape:transform-center-x="14.142136"
+         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,305.95742,-158.19454)"
+         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
+         sodipodi:ry="100.71429"
+         sodipodi:rx="88.571426"
+         sodipodi:cy="225"
+         sodipodi:cx="278.57144"
+         id="path4196"
+         style="fill:#916f6f;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="translate(20.049569,-21.559739)"
+         clip-path="url(#clipPath5273)"
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path5213"
+         d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter5267)" />
+      <g
+         transform="matrix(0.98436365,-0.17614827,0.17614827,0.98436365,98.780389,-5.7138509)"
+         id="g4183">
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;stroke:none"
+           id="path3078"
+           sodipodi:cx="88.571426"
+           sodipodi:cy="108.07647"
+           sodipodi:rx="8.5714283"
+           sodipodi:ry="8.5714283"
+           d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+           transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:url(#radialGradient4560);fill-opacity:1;stroke:none"
+           id="path3068"
+           sodipodi:cx="255.71428"
+           sodipodi:cy="125.21932"
+           sodipodi:rx="35.714287"
+           sodipodi:ry="35.714287"
+           d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)" />
+        <path
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)"
+           d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+           sodipodi:ry="35.714287"
+           sodipodi:rx="35.714287"
+           sodipodi:cy="125.21932"
+           sodipodi:cx="255.71428"
+           id="path3070"
+           style="fill:url(#radialGradient4562);fill-opacity:1;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
+           id="path3072"
+           sodipodi:cx="102.14286"
+           sodipodi:cy="141.6479"
+           sodipodi:rx="17.857143"
+           sodipodi:ry="17.857143"
+           d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)" />
+        <path
+           d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+           sodipodi:ry="17.857143"
+           sodipodi:rx="17.857143"
+           sodipodi:cy="141.6479"
+           sodipodi:cx="102.14286"
+           id="path3074"
+           style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
+           sodipodi:type="arc"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)" />
+        <path
+           d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+           sodipodi:ry="8.5714283"
+           sodipodi:rx="8.5714283"
+           sodipodi:cy="108.07647"
+           sodipodi:cx="88.571426"
+           id="path3848"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
+           sodipodi:type="arc"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
+           id="path3850"
+           sodipodi:cx="88.571426"
+           sodipodi:cy="108.07647"
+           sodipodi:rx="8.5714283"
+           sodipodi:ry="8.5714283"
+           d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+           inkscape:transform-center-x="160"
+           inkscape:transform-center-y="-8.5714283"
+           transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)" />
+      </g>
+      <path
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0"
+         id="path4970"
+         d="M 431.28342,0.0138761 C 378.62824,-11.056367 341.4165,30.779281 345.52605,81.700177 362.66077,66.625014 361.17434,71.578418 390.38391,54.842302 373.18009,64.625073 371.72611,89.302977 401.14128,103.2149 385.51942,88.815327 416.57131,67.806851 442.96971,55.599661 486.42951,68.96375 471.28726,89.192567 498.41336,103.94282 528.8049,76.497048 490.24501,-3.3846599 431.28342,0.0138761 z"
+         style="fill:#483737;stroke:none" />
+      <path
+         transform="translate(-32.276333,-22.973953)"
+         clip-path="url(#clipPath5697)"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path5545"
+         d="m 479.5984,42.184655 c 4.56123,5.03264 -25.43954,26.414954 -31.11269,41.012193 81.59853,-38.524014 52.50992,-12.187945 45.25483,-16.970562 64.56319,68.021414 22.64863,23.566763 35.35534,29.698483 0.0666,-34.315543 -8.75065,-46.973595 -49.49748,-53.740114 z"
+         style="fill:#916f6f;stroke:none;filter:url(#filter5691)" />
+    </g>
+    <path
+       style="fill:#00ffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4897)"
+       d="m 294.15642,417.96847 c 15.75401,26.73319 2.4703,38.94751 -2.82843,55.15433 2.44973,23.38219 -2.47452,49.22237 -11.3137,76.36753 4.20986,19.44354 26.28756,49.09728 7.07106,55.15433 -14.85505,-9.22145 -27.08598,-5.32229 -38.18376,4.24264 26.38108,30.43671 41.75805,9.46535 49.49747,5.65686 11.88669,-13.14854 0.11429,-38.12662 -9.89949,-62.2254 35.54801,-44.28676 16.41123,-63.67723 12.72792,-86.26703 7.68296,-12.25652 18.0468,-24.51303 11.31371,-36.76955 z"
+       id="path4835"
+       inkscape:connector-curvature="0"
+       transform="translate(99.174953,-22.230425)"
+       sodipodi:nodetypes="cccccccccc"
+       clip-path="url(#clipPath4903)" />
+  </g>
+</svg>
--- a/source/images/creatures/human_back_1.svg	Wed Sep 04 01:23:43 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,554 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns: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="human_back_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient6583">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop6585" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1;"
-         offset="1"
-         id="stop6587" />
-    </linearGradient>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6299">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path6301"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6367">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path6369"
-         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
-         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6467">
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path6469"
-         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6499">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6501" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6523">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6525" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6555">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6557" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6579">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6581" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4586">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path4588"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4008">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path4010"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-    </clipPath>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4192"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4194"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <filter
-       inkscape:collect="always"
-       id="filter5267"
-       x="-0.16879905"
-       width="1.3375981"
-       y="-0.10837393"
-       height="1.2167479">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="6.1944151"
-         id="feGaussianBlur5269" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5273">
-      <path
-         inkscape:transform-center-y="138.59293"
-         inkscape:transform-center-x="14.142136"
-         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
-         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
-         sodipodi:ry="100.71429"
-         sodipodi:rx="88.571426"
-         sodipodi:cy="225"
-         sodipodi:cx="278.57144"
-         id="path5275"
-         style="fill:#916f6f;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5515"
-       x="-0.17605084"
-       width="1.3521017"
-       y="-0.1055817"
-       height="1.2111634">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="8.0916386"
-         id="feGaussianBlur5517" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5521">
-      <path
-         sodipodi:nodetypes="czczc"
-         inkscape:connector-curvature="0"
-         id="path5523"
-         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
-         style="fill:#483737;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5691"
-       x="-0.092151701"
-       width="1.1843034"
-       y="-0.18220918"
-       height="1.3644184">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="4.7241826"
-         id="feGaussianBlur5693" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter4181"
-       x="-0.28792509"
-       width="1.5758502"
-       y="-0.085628244"
-       height="1.1712565">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="6.6644709"
-         id="feGaussianBlur4183" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4187">
-      <path
-         sodipodi:nodetypes="czsccsccc"
-         inkscape:connector-curvature="0"
-         id="path4189"
-         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4333"
-       x="-0.17848682"
-       width="1.3569736"
-       y="-0.10472454"
-       height="1.2094491">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="5.8897645"
-         id="feGaussianBlur4335" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4368">
-      <path
-         sodipodi:nodetypes="zcccccz"
-         inkscape:connector-curvature="0"
-         id="path4370"
-         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4525">
-      <path
-         sodipodi:nodetypes="czcccccc"
-         inkscape:connector-curvature="0"
-         id="path4527"
-         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4637"
-       x="-0.29566456"
-       width="1.5913291"
-       y="-0.084966793"
-       height="1.1699336">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="7.3834616"
-         id="feGaussianBlur4639" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6864"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6866"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6881">
-      <path
-         sodipodi:nodetypes="cccc"
-         inkscape:connector-curvature="0"
-         id="path6883"
-         d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
-         style="fill:#483737;stroke:none" />
-    </clipPath>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.70710678"
-     inkscape:cx="355.7203"
-     inkscape:cy="298.97676"
-     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"
-     fit-margin-top="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     fit-margin-left="0" />
-  <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(-99.174953,22.230425)">
-    <path
-       sodipodi:type="arc"
-       style="fill:#ffffff;fill-opacity:1;stroke:none"
-       id="path3078"
-       sodipodi:cx="88.571426"
-       sodipodi:cy="108.07647"
-       sodipodi:rx="8.5714283"
-       sodipodi:ry="8.5714283"
-       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-       transform="matrix(0.97732175,0.21175978,-0.21175978,0.97732175,414.98242,-42.891567)" />
-    <path
-       d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
-       sodipodi:ry="17.857143"
-       sodipodi:rx="17.857143"
-       sodipodi:cy="141.6479"
-       sodipodi:cx="102.14286"
-       id="path3074"
-       style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
-       sodipodi:type="arc"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,250.4208,-9.7842517)" />
-    <path
-       sodipodi:type="arc"
-       style="fill:url(#radialGradient6864);fill-opacity:1;stroke:none"
-       id="path3068"
-       sodipodi:cx="255.71428"
-       sodipodi:cy="125.21932"
-       sodipodi:rx="35.714287"
-       sodipodi:ry="35.714287"
-       d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,112.83278,38.803808)" />
-    <path
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,193.87354,41.2255)"
-       d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-       sodipodi:ry="35.714287"
-       sodipodi:rx="35.714287"
-       sodipodi:cy="125.21932"
-       sodipodi:cx="255.71428"
-       id="path3070"
-       style="fill:url(#radialGradient6866);fill-opacity:1;stroke:none"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:type="arc"
-       style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
-       id="path3072"
-       sodipodi:cx="102.14286"
-       sodipodi:cy="141.6479"
-       sodipodi:rx="17.857143"
-       sodipodi:ry="17.857143"
-       d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,331.46155,-7.3625539)" />
-    <path
-       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-       sodipodi:ry="8.5714283"
-       sodipodi:rx="8.5714283"
-       sodipodi:cy="108.07647"
-       sodipodi:cx="88.571426"
-       id="path3848"
-       style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
-       sodipodi:type="arc"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,365.07492,14.762439)" />
-    <path
-       sodipodi:type="arc"
-       style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
-       id="path3850"
-       sodipodi:cx="88.571426"
-       sodipodi:cy="108.07647"
-       sodipodi:rx="8.5714283"
-       sodipodi:ry="8.5714283"
-       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-       inkscape:transform-center-x="160"
-       inkscape:transform-center-y="-8.5714283"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,284.34506,13.735085)" />
-    <g
-       id="g5047"
-       transform="matrix(0.73856075,-0.5143229,0.51432288,0.73856074,-211.15821,262.42374)"
-       inkscape:transform-center-y="79.45222"
-       inkscape:transform-center-x="-36.933139">
-      <path
-         style="fill:#916f6f;stroke:none"
-         d="m 646.4756,548.47312 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
-         id="path5041"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-      <path
-         style="fill:#000080;stroke:none"
-         d="m 649.30403,429.67917 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         id="path5043"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="zcccccz" />
-    </g>
-    <path
-       sodipodi:nodetypes="czcccccc"
-       inkscape:connector-curvature="0"
-       id="path5033"
-       d="m 453.91604,395.17577 c 2.30968,-35.1714 25.33396,-57.00453 42.46838,-41.84157 17.13441,15.16296 35.98775,41.24911 21.15674,105.80034 40.16938,-3.07141 37.41071,25.53554 62.54784,48.61734 -14.66909,21.46116 -27.90008,36.28709 -61.16671,44.7385 -12.68294,-4.7054 -2.66876,-27.46179 22.9752,-45.75259 -23.16983,-6.28381 -46.27186,-12.79595 -65.43405,-32.57522 -6.58189,-19.60254 -12.19043,-32.19458 -22.5474,-78.9868 z"
-       style="fill:#000080;stroke:none"
-       inkscape:transform-center-x="-39.696898"
-       inkscape:transform-center-y="74.308403" />
-    <g
-       id="g4191"
-       transform="translate(11.313709,-70.710678)">
-      <path
-         sodipodi:nodetypes="czsccsccc"
-         inkscape:connector-curvature="0"
-         id="path4993"
-         d="m 418.78721,247.24563 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17992 61.79294,57.91208 101.82337,18.38478 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97457 11.73233,-34.66295 46.48974,-77.2162 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76955 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4187)"
-         sodipodi:nodetypes="ccccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path3227"
-         d="m 397.39401,320.38773 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 -17.1011,21.25703 -35.67363,41.60443 -19.79899,84.85281 -4.78131,76.4006 0.69986,75.83259 2.82842,100.40916 20.00634,4.58823 33.73058,-1.29371 42.42641,-15.55635 2.28969,-4.04058 -13.48309,-48.72174 -25.45584,-84.85281 13.64268,-16.54824 30.41223,-27.62448 29.69848,-69.29647 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4181)" />
-    </g>
-    <g
-       id="g4641"
-       transform="matrix(0.96754215,0.25270971,-0.25270971,0.96754215,21.467278,-242.42758)"
-       inkscape:transform-center-x="40.134896"
-       inkscape:transform-center-y="77.094402">
-      <path
-         sodipodi:nodetypes="czcccccc"
-         inkscape:connector-curvature="0"
-         id="path5014"
-         d="m 496.56897,504.63249 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34897 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75299 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00061 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4525)"
-         sodipodi:nodetypes="cccccscc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path4377"
-         d="m 432.74935,522.62027 c 8.69565,-17.42519 19.6262,-29.49223 26.87006,4.24264 10.03825,49.99242 -20.71732,67.89695 -45.25484,93.3381 30.71222,9.88911 42.97592,56.10004 40.75484,81.59546 -14.52577,11.54448 -19.31393,12.59837 -38.84609,12.11292 -5.8872,-11.68777 11.02272,-19.36075 20.02092,-19.72217 23.02847,-0.92495 -25.254,-40.95795 -34.65759,-72.572 5.54095,-24.09575 0.92267,-29.12234 31.1127,-98.99495 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4637)" />
-    </g>
-    <g
-       id="g4372"
-       transform="matrix(0.69676753,0.71729701,-0.71729701,0.69676753,266.36388,-435.49523)"
-       inkscape:transform-center-y="57.948919"
-       inkscape:transform-center-x="85.311051">
-      <path
-         sodipodi:nodetypes="cccccccccc"
-         inkscape:connector-curvature="0"
-         id="path5020"
-         d="m 560.20857,488.36904 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
-         style="fill:#916f6f;stroke:none" />
-      <path
-         sodipodi:nodetypes="zcccccz"
-         inkscape:connector-curvature="0"
-         id="path5018"
-         d="m 563.037,369.57509 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4368)"
-         sodipodi:nodetypes="cccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path4195"
-         d="m 492.14632,371.29942 c -8.37415,-5.79487 -16.02205,-9.41099 -16.97056,7.07107 52.42753,49.83624 61.27143,56.75956 65.05382,70.71068 -46.08607,54.91669 -32.62426,43.55735 -36.76955,52.3259 14.58206,-6.94513 32.62684,-27.74115 50.91169,-49.49747 -9.7226,-29.53274 -19.441,-58.49092 -62.2254,-80.61018 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4333)" />
-    </g>
-    <path
-       sodipodi:type="arc"
-       style="fill:#916f6f;fill-opacity:1;stroke:none"
-       id="path4196"
-       sodipodi:cx="278.57144"
-       sodipodi:cy="225"
-       sodipodi:rx="88.571426"
-       sodipodi:ry="100.71429"
-       d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
-       transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,325.50583,-155.01958)"
-       inkscape:transform-center-x="14.142136"
-       inkscape:transform-center-y="138.59293" />
-    <path
-       style="fill:#ac9393;stroke:none;filter:url(#filter5267)"
-       d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
-       id="path5213"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccc"
-       clip-path="url(#clipPath5273)"
-       transform="translate(39.59798,-18.384776)" />
-    <path
-       style="fill:#483737;stroke:none"
-       d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
-       id="path4970"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:#916f6f;stroke:none;filter:url(#filter5691)"
-       d="m 424.44407,19.557237 c -5.23574,2.409254 52.79663,20.600964 65.05383,43.84062 12.2572,23.239657 4.42667,18.924752 -16.97056,22.627422 C 528.55865,85.896309 525.94323,73.4245 509.29689,45.01308 492.65055,16.60166 460.10292,0.88385385 424.44407,19.557237 z"
-       id="path5545"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="czczc"
-       clip-path="url(#clipPath6881)" />
-    <g
-       id="g5525"
-       transform="matrix(0.95739822,-0.28877094,0.28877094,0.95739822,18.30728,160.809)"
-       inkscape:transform-center-x="-93.335368"
-       inkscape:transform-center-y="57.50885">
-      <path
-         sodipodi:nodetypes="czczc"
-         inkscape:connector-curvature="0"
-         id="path4972"
-         d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
-         style="fill:#483737;stroke:none" />
-      <path
-         clip-path="url(#clipPath5521)"
-         sodipodi:nodetypes="ccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path5277"
-         d="m 370.52395,71.486149 c 24.97231,1.895917 86.9377,-13.830724 101.82338,53.740111 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 C 470.61118,243.32459 434.95027,243.31154 449.71991,167.65267 432.41312,97.411428 400.75313,82.700864 370.52395,71.486149 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter5515)" />
-    </g>
-  </g>
-</svg>
--- a/source/images/creatures/human_back_2.svg	Wed Sep 04 01:23:43 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,554 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns: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="human_back_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient6583">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop6585" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1;"
-         offset="1"
-         id="stop6587" />
-    </linearGradient>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6299">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path6301"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6367">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path6369"
-         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
-         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6467">
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path6469"
-         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6499">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6501" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6523">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6525" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6555">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6557" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6579">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6581" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4586">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path4588"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4008">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path4010"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-    </clipPath>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4192"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4194"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <filter
-       inkscape:collect="always"
-       id="filter5267"
-       x="-0.16879905"
-       width="1.3375981"
-       y="-0.10837393"
-       height="1.2167479">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="6.1944151"
-         id="feGaussianBlur5269" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5273">
-      <path
-         inkscape:transform-center-y="138.59293"
-         inkscape:transform-center-x="14.142136"
-         transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,285.90785,-136.6348)"
-         d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
-         sodipodi:ry="100.71429"
-         sodipodi:rx="88.571426"
-         sodipodi:cy="225"
-         sodipodi:cx="278.57144"
-         id="path5275"
-         style="fill:#916f6f;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5515"
-       x="-0.17605084"
-       width="1.3521017"
-       y="-0.1055817"
-       height="1.2111634">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="8.0916386"
-         id="feGaussianBlur5517" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath5521">
-      <path
-         sodipodi:nodetypes="czczc"
-         inkscape:connector-curvature="0"
-         id="path5523"
-         d="m 528.91586,250.57703 c -65.6602,39.54067 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876357 -13.06019,-72.726937 -50.91168,-76.367547 20.81137,-69.751319 148.34745,-34.21381 125.865,63.639627 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
-         style="fill:#483737;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter5691"
-       x="-0.092151701"
-       width="1.1843034"
-       y="-0.18220918"
-       height="1.3644184">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="4.7241826"
-         id="feGaussianBlur5693" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter4181"
-       x="-0.28792509"
-       width="1.5758502"
-       y="-0.085628244"
-       height="1.1712565">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="6.6644709"
-         id="feGaussianBlur4183" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4187">
-      <path
-         sodipodi:nodetypes="czsccsccc"
-         inkscape:connector-curvature="0"
-         id="path4189"
-         d="m 319.61226,269.47606 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17991 61.79294,57.91208 101.82337,18.38477 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97456 11.73233,-34.66296 46.48974,-77.21621 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76956 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4333"
-       x="-0.17848682"
-       width="1.3569736"
-       y="-0.10472454"
-       height="1.2094491">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="5.8897645"
-         id="feGaussianBlur4335" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4368">
-      <path
-         sodipodi:nodetypes="zcccccz"
-         inkscape:connector-curvature="0"
-         id="path4370"
-         d="m 463.86205,391.80552 c -5.13999,-27.16996 13.00961,-31.08394 29.69848,-25.45585 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38477 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4525">
-      <path
-         sodipodi:nodetypes="czcccccc"
-         inkscape:connector-curvature="0"
-         id="path4527"
-         d="m 397.39402,526.86292 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34896 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75298 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00062 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
-         style="fill:#0000ff;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4637"
-       x="-0.29566456"
-       width="1.5913291"
-       y="-0.084966793"
-       height="1.1699336">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="7.3834616"
-         id="feGaussianBlur4639" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6864"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6866"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6881">
-      <path
-         sodipodi:nodetypes="cccc"
-         inkscape:connector-curvature="0"
-         id="path6883"
-         d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
-         style="fill:#483737;stroke:none" />
-    </clipPath>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.70710678"
-     inkscape:cx="355.7203"
-     inkscape:cy="298.97676"
-     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"
-     fit-margin-top="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     fit-margin-left="0" />
-  <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(-99.174953,22.230425)">
-    <path
-       sodipodi:type="arc"
-       style="fill:#ffffff;fill-opacity:1;stroke:none"
-       id="path3078"
-       sodipodi:cx="88.571426"
-       sodipodi:cy="108.07647"
-       sodipodi:rx="8.5714283"
-       sodipodi:ry="8.5714283"
-       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-       transform="matrix(0.97732175,0.21175978,-0.21175978,0.97732175,414.98242,-42.891567)" />
-    <path
-       d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
-       sodipodi:ry="17.857143"
-       sodipodi:rx="17.857143"
-       sodipodi:cy="141.6479"
-       sodipodi:cx="102.14286"
-       id="path3074"
-       style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
-       sodipodi:type="arc"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,250.4208,-9.7842517)" />
-    <path
-       sodipodi:type="arc"
-       style="fill:url(#radialGradient6864);fill-opacity:1;stroke:none"
-       id="path3068"
-       sodipodi:cx="255.71428"
-       sodipodi:cy="125.21932"
-       sodipodi:rx="35.714287"
-       sodipodi:ry="35.714287"
-       d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,112.83278,38.803808)" />
-    <path
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,193.87354,41.2255)"
-       d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-       sodipodi:ry="35.714287"
-       sodipodi:rx="35.714287"
-       sodipodi:cy="125.21932"
-       sodipodi:cx="255.71428"
-       id="path3070"
-       style="fill:url(#radialGradient6866);fill-opacity:1;stroke:none"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:type="arc"
-       style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
-       id="path3072"
-       sodipodi:cx="102.14286"
-       sodipodi:cy="141.6479"
-       sodipodi:rx="17.857143"
-       sodipodi:ry="17.857143"
-       d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,331.46155,-7.3625539)" />
-    <path
-       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-       sodipodi:ry="8.5714283"
-       sodipodi:rx="8.5714283"
-       sodipodi:cy="108.07647"
-       sodipodi:cx="88.571426"
-       id="path3848"
-       style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
-       sodipodi:type="arc"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,365.07492,14.762439)" />
-    <path
-       sodipodi:type="arc"
-       style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
-       id="path3850"
-       sodipodi:cx="88.571426"
-       sodipodi:cy="108.07647"
-       sodipodi:rx="8.5714283"
-       sodipodi:ry="8.5714283"
-       d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-       inkscape:transform-center-x="160"
-       inkscape:transform-center-y="-8.5714283"
-       transform="matrix(0.97603287,-0.21762317,0.21762317,0.97603287,284.34506,13.735085)" />
-    <g
-       id="g5047"
-       transform="matrix(0.44203969,0.78396489,-0.78396487,0.44203967,539.27209,-481.15079)"
-       inkscape:transform-center-y="32.026988"
-       inkscape:transform-center-x="81.622989">
-      <path
-         style="fill:#916f6f;stroke:none"
-         d="m 646.4756,548.47312 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
-         id="path5041"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-      <path
-         style="fill:#000080;stroke:none"
-         d="m 649.30403,429.67917 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         id="path5043"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="zcccccz" />
-    </g>
-    <path
-       sodipodi:nodetypes="czcccccc"
-       inkscape:connector-curvature="0"
-       id="path5033"
-       d="m 450.45937,362.45063 c 33.10464,-12.10144 62.38035,0.13523 55.43549,21.93597 -6.94486,21.80074 -23.18646,49.58826 -88.22512,62.10997 19.04338,35.50158 -8.23822,44.53938 -19.19223,76.8605 -25.55882,-4.74452 -44.46721,-10.85516 -65.64201,-37.86855 -0.82164,-13.50269 24.0407,-13.53946 51.13495,2.52501 -3.61601,-23.73292 -6.99578,-47.49611 3.35211,-73.01728 15.27042,-13.94257 24.52171,-24.16161 63.13681,-52.54562 z"
-       style="fill:#000080;stroke:none"
-       inkscape:transform-center-x="57.435724"
-       inkscape:transform-center-y="64.358655" />
-    <g
-       id="g4191"
-       transform="translate(11.313709,-70.710678)">
-      <path
-         sodipodi:nodetypes="czsccsccc"
-         inkscape:connector-curvature="0"
-         id="path4993"
-         d="m 418.78721,247.24563 c -0.47541,30.1797 -9.31993,34.63524 -29.69848,57.98275 -20.37855,23.34751 16.75249,32.45246 9.81306,71.38897 -3.89199,21.8376 -11.13841,40.04925 -5.57042,62.96132 19.52352,35.17992 61.79294,57.91208 101.82337,18.38478 8.79411,-28.10005 -26.55688,-58.64436 -16.96799,-86.97457 11.73233,-34.66295 46.48974,-77.2162 16.96799,-92.63056 -33.4282,-3.94354 -35.13382,-5.52045 -39.59798,-36.76955 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4187)"
-         sodipodi:nodetypes="ccccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path3227"
-         d="m 397.39401,320.38773 c -0.69169,-8.25471 -6.53664,-14.79168 -29.69848,-15.55634 -17.1011,21.25703 -35.67363,41.60443 -19.79899,84.85281 -4.78131,76.4006 0.69986,75.83259 2.82842,100.40916 20.00634,4.58823 33.73058,-1.29371 42.42641,-15.55635 2.28969,-4.04058 -13.48309,-48.72174 -25.45584,-84.85281 13.64268,-16.54824 30.41223,-27.62448 29.69848,-69.29647 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4181)" />
-    </g>
-    <g
-       id="g4641"
-       transform="matrix(0.70530053,-0.70890844,0.70890844,0.70530053,-321.24373,405.85437)"
-       inkscape:transform-center-x="-56.687185"
-       inkscape:transform-center-y="73.176784">
-      <path
-         sodipodi:nodetypes="czcccccc"
-         inkscape:connector-curvature="0"
-         id="path5014"
-         d="m 496.56897,504.63249 c 20.87959,-33.13341 54.9311,-42.26914 63.63961,-18.38478 8.70851,23.88436 13.31222,59.34897 -35.35533,114.5513 40.86489,18.26966 23.02262,44.75299 35.35533,80.61017 -25.69296,13.19649 -46.46776,20.67298 -83.4386,11.31371 -9.89751,-11.31205 11.93425,-28.23856 46.66905,-32.52691 -19.30562,-18.40674 -38.42411,-37.00061 -46.66905,-66.46804 3.95027,-22.63344 5.13925,-37.90344 19.79899,-89.09545 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4525)"
-         sodipodi:nodetypes="cccccscc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path4377"
-         d="m 432.74935,522.62027 c 8.69565,-17.42519 19.6262,-29.49223 26.87006,4.24264 10.03825,49.99242 -20.71732,67.89695 -45.25484,93.3381 30.71222,9.88911 42.97592,56.10004 40.75484,81.59546 -14.52577,11.54448 -19.31393,12.59837 -38.84609,12.11292 -5.8872,-11.68777 11.02272,-19.36075 20.02092,-19.72217 23.02847,-0.92495 -25.254,-40.95795 -34.65759,-72.572 5.54095,-24.09575 0.92267,-29.12234 31.1127,-98.99495 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4637)" />
-    </g>
-    <g
-       id="g4372"
-       transform="matrix(0.97566928,0.21924744,-0.21924744,0.97566928,-75.323519,-245.06395)"
-       inkscape:transform-center-y="90.61759"
-       inkscape:transform-center-x="29.854106">
-      <path
-         sodipodi:nodetypes="cccccccccc"
-         inkscape:connector-curvature="0"
-         id="path5020"
-         d="m 560.20857,488.36904 c -10.44957,4.04595 -21.45358,6.70581 -28.28427,19.79898 -16.57772,15.30755 -16.97056,34.60895 -19.79899,50.91169 7.40327,-0.54549 16.08876,-33.74052 26.87006,-39.59798 -6.83667,23.80724 0.48864,33.45249 4.24264,46.66905 8.61045,-18.65302 2.59684,-40.79492 9.8995,-41.01219 -1.11206,27.55183 12.54566,28.51805 19.79899,41.01219 7.3739,-13.07807 -12.72433,-18.84612 -9.8995,-48.08326 11.19694,-4.64312 8.58545,-12.04792 11.31371,-18.38478 -1.82153,-6.18166 -1.52301,-14.13003 -14.14214,-11.3137 z"
-         style="fill:#916f6f;stroke:none" />
-      <path
-         sodipodi:nodetypes="zcccccz"
-         inkscape:connector-curvature="0"
-         id="path5018"
-         d="m 563.037,369.57509 c -5.13999,-27.16995 13.00961,-31.08394 29.69848,-25.45584 39.77364,19.71116 52.09717,53.14738 62.2254,87.68124 -16.54157,24.97596 -35.55594,49.45736 -70.71068,70.71068 -11.91936,2.45695 -21.06674,-2.01607 -25.45584,-18.38478 13.16319,-21.24031 23.36914,-44.69854 50.91169,-55.15433 -22.5745,-11.91742 -41.52906,-32.22702 -46.66905,-59.39697 z"
-         style="fill:#0000ff;stroke:none" />
-      <path
-         clip-path="url(#clipPath4368)"
-         sodipodi:nodetypes="cccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path4195"
-         d="m 492.14632,371.29942 c -8.37415,-5.79487 -16.02205,-9.41099 -16.97056,7.07107 52.42753,49.83624 61.27143,56.75956 65.05382,70.71068 -46.08607,54.91669 -32.62426,43.55735 -36.76955,52.3259 14.58206,-6.94513 32.62684,-27.74115 50.91169,-49.49747 -9.7226,-29.53274 -19.441,-58.49092 -62.2254,-80.61018 z"
-         style="fill:#00afff;fill-opacity:1;stroke:none;filter:url(#filter4333)" />
-    </g>
-    <path
-       sodipodi:type="arc"
-       style="fill:#916f6f;fill-opacity:1;stroke:none"
-       id="path4196"
-       sodipodi:cx="278.57144"
-       sodipodi:cy="225"
-       sodipodi:rx="88.571426"
-       sodipodi:ry="100.71429"
-       d="m 367.14287,225 a 88.571426,100.71429 0 1 1 -177.14285,0 88.571426,100.71429 0 1 1 177.14285,0 z"
-       transform="matrix(0.69644384,0.4026185,-0.33973344,0.67241512,325.50583,-155.01958)"
-       inkscape:transform-center-x="14.142136"
-       inkscape:transform-center-y="138.59293" />
-    <path
-       style="fill:#ac9393;stroke:none;filter:url(#filter5267)"
-       d="m 403.23087,190.67708 c -21.0152,-34.81417 -25.17277,-79.74293 -8.48528,-137.178716 39.99634,1.0402 71.52718,13.367735 77.78174,59.396976 -1.17548,34.45299 -1.90801,69.07824 -69.29646,77.78174 z"
-       id="path5213"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccc"
-       clip-path="url(#clipPath5273)"
-       transform="translate(39.59798,-18.384776)" />
-    <path
-       style="fill:#483737;stroke:none"
-       d="M 450.83183,3.188839 C 398.17665,-7.881404 365.20755,45.267953 369.3171,96.188849 369.2269,113.35639 443.37832,194.71779 525.03284,121.25992 547.08378,64.62205 509.79342,-0.209697 450.83183,3.188839 z"
-       id="path4970"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:#916f6f;stroke:none;filter:url(#filter5691)"
-       d="m 424.44407,19.557237 c -5.23574,2.409254 52.79663,20.600964 65.05383,43.84062 12.2572,23.239657 4.42667,18.924752 -16.97056,22.627422 C 528.55865,85.896309 525.94323,73.4245 509.29689,45.01308 492.65055,16.60166 460.10292,0.88385385 424.44407,19.557237 z"
-       id="path5545"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="czczc"
-       clip-path="url(#clipPath6881)" />
-    <g
-       id="g5525"
-       transform="matrix(0.99994557,-0.01043353,0.01043353,0.99994557,13.594166,27.538401)"
-       inkscape:transform-center-x="-70.267909"
-       inkscape:transform-center-y="81.26246">
-      <path
-         sodipodi:nodetypes="czczc"
-         inkscape:connector-curvature="0"
-         id="path4972"
-         d="m 628.09081,228.34661 c -65.6602,39.54066 -125.45538,-13.56224 -125.86501,-83.4386 -0.40963,-69.876362 -13.06019,-72.726942 -50.91168,-76.367552 20.81137,-69.7513185 148.34745,-34.21381 125.865,63.639632 -22.48245,97.85344 40.63054,94.15362 50.91169,96.16652 z"
-         style="fill:#483737;stroke:none" />
-      <path
-         clip-path="url(#clipPath5521)"
-         sodipodi:nodetypes="ccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path5277"
-         d="m 370.52395,71.486149 c 24.97231,1.895917 86.9377,-13.830724 101.82338,53.740111 -8.79367,63.84854 -24.52695,94.71236 26.87006,128.69344 C 470.61118,243.32459 434.95027,243.31154 449.71991,167.65267 432.41312,97.411428 400.75313,82.700864 370.52395,71.486149 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter5515)" />
-    </g>
-  </g>
-</svg>
--- a/source/images/creatures/werewolf_1.svg	Wed Sep 04 01:23:43 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,450 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns: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="werewolf_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient6583">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop6585" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1;"
-         offset="1"
-         id="stop6587" />
-    </linearGradient>
-    <filter
-       inkscape:collect="always"
-       id="filter6285"
-       x="-0.18582313"
-       width="1.3716463"
-       y="-0.10235358"
-       height="1.2047072">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.04861"
-         id="feGaussianBlur6287" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6299">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path6301"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6361"
-       x="-0.1592533"
-       width="1.3185066"
-       y="-0.11271148"
-       height="1.225423">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="12.615103"
-         id="feGaussianBlur6363" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6367">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path6369"
-         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
-         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6461"
-       x="-0.12964776"
-       width="1.2592955"
-       y="-0.13443918"
-       height="1.2688784">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.422084"
-         id="feGaussianBlur6463" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6467">
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path6469"
-         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6499">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6501" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6523">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6525" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6555">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6557" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6579">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6581" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6589"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6597"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       id="filter6619">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6621" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter4580"
-       x="-0.14069959"
-       width="1.2813992"
-       y="-0.12431357"
-       height="1.2486271">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="9.2555326"
-         id="feGaussianBlur4582" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4586">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path4588"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4002"
-       x="-0.11893633"
-       width="1.2378727"
-       y="-0.14828753"
-       height="1.2965751">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="9.3562367"
-         id="feGaussianBlur4004" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4008">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path4010"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-    </clipPath>
-  </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="277.31778"
-     inkscape:cy="288.62974"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:window-width="1178"
-     inkscape:window-height="752"
-     inkscape:window-x="102"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1"
-     fit-margin-top="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     fit-margin-left="0" />
-  <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 />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(-99.174953,22.230425)">
-    <path
-       style="fill:#241c1c;stroke:none;stroke-width:0.75934040999999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       d="m 402.51555,205.87936 c 25.87837,40.12511 -28.42584,80.13795 -54.02342,89.06234 -37.1663,1.59617 -68.23726,-11.26769 -97.59709,-28.19086 l -49.99787,23.65832 c -13.53041,17.53353 -15.91583,41.67088 -14.5505,68.03069 -9.36039,-22.00196 -17.47409,-44.73155 -2.33495,-81.03448 2.61161,-12.78293 -45.65205,20.22051 -53.63321,35.07521 -8.16313,15.19332 11.76636,-51.6618 42.27463,-52.8125 -23.20697,-9.85965 -43.26573,24.10324 -67.09852,22.33591 28.3399,-31.38767 64.33091,-64.74695 133.04061,-47.51371 33.41435,3.24488 69.07363,-5.82952 98.12609,21.3506 27.85762,-76.88622 54.33555,-58.44086 65.79423,-49.96152 z"
-       id="path3064"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccccsccccc"
-       inkscape:transform-center-x="115.28963"
-       inkscape:transform-center-y="84.442532" />
-    <path
-       sodipodi:nodetypes="ccsccccscscc"
-       inkscape:connector-curvature="0"
-       id="path3066"
-       d="m 464.9121,455.5415 c -10.61091,39.6002 -43.64677,51.92677 -37.75435,79.13748 -17.28319,8.21287 -29.07198,31.12953 -50.43875,15.62726 -26.11803,-18.94939 -76.42159,-0.84184 -102.77103,9.10151 19.34091,-23.52363 40.38077,-42.53824 72.4689,-32.23007 -32.75717,-22.27483 -53.95797,-12.97 -78.49437,-12.78033 21.5306,-7.75198 33.02031,-29.50088 73.1597,-11.31248 9.05792,-4.1612 -46.36334,-35.13599 -53.23473,-37.76243 -3.00495,-1.14859 60.99182,-5.45372 103.47646,38.03999 18.52158,-21.00839 38.24347,-35.99494 22.07903,-55.51172 -27.53837,-33.24952 -12.76903,-117.27619 49.51591,-114.98041 78.22216,22.92727 37.66894,97.61997 1.99323,122.6712 z"
-       style="fill:#241c1c;stroke:none;stroke-width:0.78760200999999996px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       inkscape:transform-center-x="50.861985"
-       inkscape:transform-center-y="95.516969" />
-    <g
-       id="g4594">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path3062"
-         d="m 358.06962,135.33256 c 214.69413,-28.79079 251.42403,152.67328 173.00494,295.54153 -60.01015,73.76212 -151.67371,-52.63574 -95.73694,-153.5679 18.62069,-33.59913 -114.64567,-14.22614 -77.268,-141.97363 z"
-         style="fill:#483737;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-      <path
-         clip-path="url(#clipPath6367)"
-         sodipodi:nodetypes="zccz"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path6303"
-         d="m 300,198.57143 c -166.25299,-72.31325 131.94033,-53.49044 150,55.71429 14.81656,85.06351 6.28812,144.19978 -34.28571,178.57142 C 350.41719,390.45134 466.25299,270.88468 300,198.57143 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6361)" />
-    </g>
-    <g
-       id="g3171">
-      <path
-         transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)"
-         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-         sodipodi:ry="8.5714283"
-         sodipodi:rx="8.5714283"
-         sodipodi:cy="108.07647"
-         sodipodi:cx="88.571426"
-         id="path3078"
-         style="fill:#ffffff;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path2987"
-         d="m 208.79116,299.85289 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76333 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59119 -22.49435,-22.927409 -19.90024,-55.152568 -20.81313,-86.339856 39.09411,19.441798 64.18936,44.820011 73.32087,76.967856 29.62924,-4.915554 43.47889,3.92645 54.96219,14.83156 15.64844,-37.266983 49.01717,-51.821738 84.52724,-63.631916 -19.06279,22.118114 13.87129,48.788306 -39.01235,91.732076 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.23271 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:none" />
-      <path
-         clip-path="url(#clipPath6467)"
-         sodipodi:nodetypes="cccssscsc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path6386"
-         d="m 120,302.85714 c 21.19302,-31.47466 30.40641,-70.13711 68.57143,-91.42857 0.78594,-27.5158 -0.067,-55.5779 22.85714,-75.71428 19.27654,1.35348 58.24914,26.25198 55.07381,13.63222 -3.72333,-14.79764 47.90793,-58.238237 60.44578,-49.16041 17.47535,12.65273 -20.28705,73.22329 -40.1762,62.46318 C 268.90362,152.98244 310,193.20635 321.42857,208.57143 292.05134,234.6535 229.26299,220.46532 210.85843,234.4907 181.1374,257.1399 182.50784,273.03881 120,302.85714 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6461)" />
-      <path
-         transform="matrix(1.0547609,-0.04464984,0.06071111,1.4341756,96.349344,39.375804)"
-         d="m 124.28572,176.6479 a 23.571428,12.857142 0 1 1 -47.142861,0 23.571428,12.857142 0 1 1 47.142861,0 z"
-         sodipodi:ry="12.857142"
-         sodipodi:rx="23.571428"
-         sodipodi:cy="176.6479"
-         sodipodi:cx="100.71429"
-         id="path3076"
-         style="fill:#e9afaf;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)"
-         d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-         sodipodi:ry="35.714287"
-         sodipodi:rx="35.714287"
-         sodipodi:cy="125.21932"
-         sodipodi:cx="255.71428"
-         id="path3068"
-         style="fill:url(#radialGradient6589);fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:type="arc"
-         style="fill:url(#radialGradient6597);fill-opacity:1;stroke:none"
-         id="path3070"
-         sodipodi:cx="255.71428"
-         sodipodi:cy="125.21932"
-         sodipodi:rx="35.714287"
-         sodipodi:ry="35.714287"
-         d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)"
-         d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
-         sodipodi:ry="17.857143"
-         sodipodi:rx="17.857143"
-         sodipodi:cy="141.6479"
-         sodipodi:cx="102.14286"
-         id="path3072"
-         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
-         sodipodi:type="arc" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)"
-         sodipodi:type="arc"
-         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
-         id="path3074"
-         sodipodi:cx="102.14286"
-         sodipodi:cy="141.6479"
-         sodipodi:rx="17.857143"
-         sodipodi:ry="17.857143"
-         d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)"
-         sodipodi:type="arc"
-         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
-         id="path3848"
-         sodipodi:cx="88.571426"
-         sodipodi:cy="108.07647"
-         sodipodi:rx="8.5714283"
-         sodipodi:ry="8.5714283"
-         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)"
-         inkscape:transform-center-y="-8.5714283"
-         inkscape:transform-center-x="160"
-         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-         sodipodi:ry="8.5714283"
-         sodipodi:rx="8.5714283"
-         sodipodi:cy="108.07647"
-         sodipodi:cx="88.571426"
-         id="path3850"
-         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:type="arc"
-         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6619)"
-         id="path3852"
-         sodipodi:cx="88.571426"
-         sodipodi:cy="108.07647"
-         sodipodi:rx="8.5714283"
-         sodipodi:ry="8.5714283"
-         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-         inkscape:transform-center-x="160"
-         inkscape:transform-center-y="-8.5714283"
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,132.31175,182.04846)" />
-    </g>
-    <g
-       id="g3156">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path2989"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-      <path
-         clip-path="url(#clipPath6299)"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6285)"
-         d="m 578.49002,400.45119 c 138.94935,-44.39025 79.38642,-117.25324 73.80165,-164.47315 -10.87542,-91.95295 52.23864,-91.55531 68.89675,-94.12809 -55.59342,82.23001 -30.48123,95.96572 -21.35542,153.41047 13.3223,83.86066 -68.45236,109.59672 -121.34298,105.19077 z"
-         id="path5723"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cscsc"
-         inkscape:transform-center-x="-97.563485"
-         inkscape:transform-center-y="-110.27648" />
-    </g>
-    <g
-       id="g4590">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path3866"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:none;stroke-width:0.78760200999999996px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-      <path
-         clip-path="url(#clipPath4586)"
-         sodipodi:nodetypes="zcccz"
-         inkscape:connector-curvature="0"
-         id="path3586"
-         d="m 493.46066,339.19814 c -55.57777,14.83482 -9.96348,96.58907 55.71429,75.71429 32.3717,33.27916 49.58755,57.28914 52.85715,101.42857 10.10653,-11.25813 29.99979,-6.85747 22.85714,-45.71429 C 540.19901,420.01593 549.03843,324.36332 493.46066,339.19814 z"
-         style="fill:#c8b7b7;stroke:none;filter:url(#filter4580)" />
-    </g>
-    <g
-       id="g4012">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:none;stroke-width:0.86652183999999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         d="m 452.3073,223.36984 c 43.43539,32.89477 0.86799,97.02827 -23.08334,116.60668 -39.21948,16.24674 -77.55978,14.6079 -115.65327,7.94811 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89744 11.00785,78.62223 -18.63961,-19.92614 -36.22726,-41.11994 -34.19543,-85.95897 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.59073,-59.98528 24.6653,-73.15052 -28.73487,-1.49381 -36.95591,42.76066 -63.1968,50.18693 18.10591,-44.73245 43.64301,-94.57086 124.04236,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path3058"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-      <path
-         clip-path="url(#clipPath4008)"
-         sodipodi:nodetypes="ccccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path3184"
-         d="M 344.28571,251.42857 C 320.86862,269.53338 310.57156,298.57154 310,335.71429 c -30.18908,-4.05111 -62.23854,-3.45126 -100,11.42857 -32.19019,3.96849 -20.4472,34.07178 -31.42858,55.71428 47.73563,-59.39987 30.72534,-20.01833 150.00001,-45.71428 14.27314,-9.56154 23.53433,-34.1589 34.28571,-54.28572 10.98308,-21.43625 0.81083,-37.58366 -18.57143,-51.42857 z"
-         style="fill:#c8b7b7;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4002)" />
-    </g>
-  </g>
-</svg>
--- a/source/images/creatures/werewolf_2.svg	Wed Sep 04 01:23:43 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,482 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns: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="werewolf_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient6583">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop6585" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1;"
-         offset="1"
-         id="stop6587" />
-    </linearGradient>
-    <filter
-       inkscape:collect="always"
-       id="filter6285"
-       x="-0.18582313"
-       width="1.3716463"
-       y="-0.10235358"
-       height="1.2047072">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.04861"
-         id="feGaussianBlur6287" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6299">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path6301"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6361"
-       x="-0.1592533"
-       width="1.3185066"
-       y="-0.11271148"
-       height="1.225423">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="12.615103"
-         id="feGaussianBlur6363" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6367">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path6369"
-         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
-         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6461"
-       x="-0.12964776"
-       width="1.2592955"
-       y="-0.13443918"
-       height="1.2688784">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.422084"
-         id="feGaussianBlur6463" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6467">
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path6469"
-         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6499">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6501" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6523">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6525" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6555">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6557" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6579">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6581" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6589"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6597"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       id="filter6619">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6621" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter4580"
-       x="-0.14069959"
-       width="1.2813992"
-       y="-0.12431357"
-       height="1.2486271">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="9.2555326"
-         id="feGaussianBlur4582" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4586">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path4588"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4002"
-       x="-0.11893633"
-       width="1.2378727"
-       y="-0.14828753"
-       height="1.2965751">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="9.3562367"
-         id="feGaussianBlur4004" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4008">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path4010"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-    </clipPath>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4016"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient4018"
-       gradientUnits="userSpaceOnUse"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287" />
-  </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="277.31778"
-     inkscape:cy="288.62974"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:window-width="1178"
-     inkscape:window-height="752"
-     inkscape:window-x="102"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1"
-     fit-margin-top="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     fit-margin-left="0" />
-  <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(-99.174953,22.230425)">
-    <path
-       style="fill:#241c1c;stroke:none"
-       d="m 401.34698,204.79609 c 32.30977,35.15385 -14.42007,83.79846 -38.13284,96.93564 -36.35691,7.87756 -69.15969,0.4707 -100.96471,-11.2269 l -45.26012,31.79661 c -10.36011,19.5746 -8.61654,43.76678 -2.79957,69.51298 -12.95694,-20.0953 -24.80868,-41.11916 -16.04701,-79.46403 0.40539,-13.04069 -41.56044,27.67144 -46.90613,43.6647 -5.46758,16.35785 2.83244,-52.90903 32.70338,-59.21818 -24.54315,-5.78016 -38.55008,31.09311 -62.33727,33.39415 22.6049,-35.7401 52.41557,-74.72109 123.0528,-69.39284 33.48053,-2.47023 67.08373,-17.46202 100.32573,4.39603 14.41167,-80.49746 43.63477,-66.81088 56.36574,-60.39816 z"
-       id="path3064"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccccsccccc"
-       inkscape:transform-center-x="128.60829"
-       inkscape:transform-center-y="83.588693" />
-    <path
-       sodipodi:nodetypes="ccsccccscscc"
-       inkscape:connector-curvature="0"
-       id="path3066"
-       d="m 527.20772,367.27735 c 40.15146,8.28416 54.38306,40.54518 81.20396,33.07639 9.20652,16.77498 32.77149,27.20767 18.54128,49.44189 -17.39447,27.17836 3.61499,76.34068 15.07761,102.0656 -24.6112,-17.93658 -44.8201,-37.83209 -36.40021,-70.46661 -20.32719,34.00008 -9.80217,54.62235 -8.18235,79.10595 -8.99403,-21.04203 -31.37579,-31.24423 -15.55847,-72.37574 -4.6822,-8.79991 -32.37323,48.33292 -34.5946,55.34575 -0.97144,3.0668 -9.00028,-60.57013 31.94258,-105.5182 -22.05247,-17.26528 -38.16332,-36.07991 -56.70451,-18.80513 -31.58747,29.42999 -116.33228,19.58455 -117.67163,-42.72829 18.32789,-79.42578 95.25781,-43.29615 122.34634,-9.14161 z"
-       style="fill:#241c1c;stroke:none"
-       inkscape:transform-center-x="-69.016037"
-       inkscape:transform-center-y="62.561196" />
-    <g
-       id="g4594">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path3062"
-         d="m 358.06962,135.33256 c 214.69413,-28.79079 251.42403,152.67328 173.00494,295.54153 -60.01015,73.76212 -151.67371,-52.63574 -95.73694,-153.5679 18.62069,-33.59913 -114.64567,-14.22614 -77.268,-141.97363 z"
-         style="fill:#483737;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-      <path
-         clip-path="url(#clipPath6367)"
-         sodipodi:nodetypes="zccz"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path6303"
-         d="m 300,198.57143 c -166.25299,-72.31325 131.94033,-53.49044 150,55.71429 14.81656,85.06351 6.28812,144.19978 -34.28571,178.57142 C 350.41719,390.45134 466.25299,270.88468 300,198.57143 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6361)" />
-    </g>
-    <g
-       id="g3171"
-       inkscape:transform-center-x="47.91077"
-       transform="matrix(0.94373055,0.33071536,-0.33071536,0.94373055,75.751488,-111.30808)"
-       inkscape:transform-center-y="-46.31158">
-      <path
-         transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)"
-         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-         sodipodi:ry="8.5714283"
-         sodipodi:rx="8.5714283"
-         sodipodi:cy="108.07647"
-         sodipodi:cx="88.571426"
-         id="path3078"
-         style="fill:#ffffff;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path2987"
-         d="m 208.79116,299.85289 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76333 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59119 -22.49435,-22.927409 -19.90024,-55.152568 -20.81313,-86.339856 39.09411,19.441798 64.18936,44.820011 73.32087,76.967856 29.62924,-4.915554 43.47889,3.92645 54.96219,14.83156 15.64844,-37.266983 49.01717,-51.821738 84.52724,-63.631916 -19.06279,22.118114 13.87129,48.788306 -39.01235,91.732076 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.23271 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:none" />
-      <path
-         clip-path="url(#clipPath6467)"
-         sodipodi:nodetypes="cccssscsc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path6386"
-         d="m 120,302.85714 c 21.19302,-31.47466 30.40641,-70.13711 68.57143,-91.42857 0.78594,-27.5158 -0.067,-55.5779 22.85714,-75.71428 19.27654,1.35348 58.24914,26.25198 55.07381,13.63222 -3.72333,-14.79764 47.90793,-58.238237 60.44578,-49.16041 17.47535,12.65273 -20.28705,73.22329 -40.1762,62.46318 C 268.90362,152.98244 310,193.20635 321.42857,208.57143 292.05134,234.6535 229.26299,220.46532 210.85843,234.4907 181.1374,257.1399 182.50784,273.03881 120,302.85714 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6461)" />
-      <path
-         transform="matrix(1.0547609,-0.04464984,0.06071111,1.4341756,96.349344,39.375804)"
-         d="m 124.28572,176.6479 a 23.571428,12.857142 0 1 1 -47.142861,0 23.571428,12.857142 0 1 1 47.142861,0 z"
-         sodipodi:ry="12.857142"
-         sodipodi:rx="23.571428"
-         sodipodi:cy="176.6479"
-         sodipodi:cx="100.71429"
-         id="path3076"
-         style="fill:#e9afaf;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)"
-         d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-         sodipodi:ry="35.714287"
-         sodipodi:rx="35.714287"
-         sodipodi:cy="125.21932"
-         sodipodi:cx="255.71428"
-         id="path3068"
-         style="fill:url(#radialGradient4016);fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:type="arc"
-         style="fill:url(#radialGradient4018);fill-opacity:1;stroke:none"
-         id="path3070"
-         sodipodi:cx="255.71428"
-         sodipodi:cy="125.21932"
-         sodipodi:rx="35.714287"
-         sodipodi:ry="35.714287"
-         d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)"
-         d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
-         sodipodi:ry="17.857143"
-         sodipodi:rx="17.857143"
-         sodipodi:cy="141.6479"
-         sodipodi:cx="102.14286"
-         id="path3072"
-         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
-         sodipodi:type="arc" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)"
-         sodipodi:type="arc"
-         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
-         id="path3074"
-         sodipodi:cx="102.14286"
-         sodipodi:cy="141.6479"
-         sodipodi:rx="17.857143"
-         sodipodi:ry="17.857143"
-         d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)"
-         sodipodi:type="arc"
-         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
-         id="path3848"
-         sodipodi:cx="88.571426"
-         sodipodi:cy="108.07647"
-         sodipodi:rx="8.5714283"
-         sodipodi:ry="8.5714283"
-         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z" />
-      <path
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)"
-         inkscape:transform-center-y="-8.5714283"
-         inkscape:transform-center-x="160"
-         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-         sodipodi:ry="8.5714283"
-         sodipodi:rx="8.5714283"
-         sodipodi:cy="108.07647"
-         sodipodi:cx="88.571426"
-         id="path3850"
-         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:type="arc"
-         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6619)"
-         id="path3852"
-         sodipodi:cx="88.571426"
-         sodipodi:cy="108.07647"
-         sodipodi:rx="8.5714283"
-         sodipodi:ry="8.5714283"
-         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
-         inkscape:transform-center-x="160"
-         inkscape:transform-center-y="-8.5714283"
-         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,132.31175,182.04846)" />
-    </g>
-    <g
-       id="g3156"
-       inkscape:transform-center-x="-64.013871"
-       inkscape:transform-center-y="-128.01661"
-       transform="matrix(0.98506267,-0.17219623,0.17219623,0.98506267,-58.036681,100.92284)">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path2989"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-      <path
-         clip-path="url(#clipPath6299)"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6285)"
-         d="m 578.49002,400.45119 c 138.94935,-44.39025 79.38642,-117.25324 73.80165,-164.47315 -10.87542,-91.95295 52.23864,-91.55531 68.89675,-94.12809 -55.59342,82.23001 -30.48123,95.96572 -21.35542,153.41047 13.3223,83.86066 -68.45236,109.59672 -121.34298,105.19077 z"
-         id="path5723"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cscsc"
-         inkscape:transform-center-x="-97.563485"
-         inkscape:transform-center-y="-110.27648" />
-    </g>
-    <g
-       id="g4590"
-       inkscape:transform-center-x="68.139752"
-       inkscape:transform-center-y="59.078568"
-       transform="matrix(0.24956612,0.96835777,-0.96835777,0.24956612,736.89356,-176.7024)">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path3866"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:none"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-      <path
-         clip-path="url(#clipPath4586)"
-         sodipodi:nodetypes="zcccz"
-         inkscape:connector-curvature="0"
-         id="path3586"
-         d="m 493.46066,339.19814 c -55.57777,14.83482 -9.96348,96.58907 55.71429,75.71429 32.3717,33.27916 49.58755,57.28914 52.85715,101.42857 10.10653,-11.25813 29.99979,-6.85747 22.85714,-45.71429 C 540.19901,420.01593 549.03843,324.36332 493.46066,339.19814 z"
-         style="fill:#c8b7b7;stroke:none;filter:url(#filter4580)" />
-    </g>
-    <g
-       id="g4012"
-       inkscape:transform-center-x="132.46612"
-       inkscape:transform-center-y="83.736805"
-       transform="matrix(0.99279867,0.11979479,-0.11979479,0.99279867,33.333448,-50.924302)">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:none"
-         d="m 452.3073,223.36984 c 43.43539,32.89477 0.86799,97.02827 -23.08334,116.60668 -39.21948,16.24674 -77.55978,14.6079 -115.65327,7.94811 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89744 11.00785,78.62223 -18.63961,-19.92614 -36.22726,-41.11994 -34.19543,-85.95897 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.59073,-59.98528 24.6653,-73.15052 -28.73487,-1.49381 -36.95591,42.76066 -63.1968,50.18693 18.10591,-44.73245 43.64301,-94.57086 124.04236,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path3058"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-      <path
-         clip-path="url(#clipPath4008)"
-         sodipodi:nodetypes="ccccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path3184"
-         d="M 344.28571,251.42857 C 320.86862,269.53338 310.57156,298.57154 310,335.71429 c -30.18908,-4.05111 -62.23854,-3.45126 -100,11.42857 -32.19019,3.96849 -20.4472,34.07178 -31.42858,55.71428 47.73563,-59.39987 30.72534,-20.01833 150.00001,-45.71428 14.27314,-9.56154 23.53433,-34.1589 34.28571,-54.28572 10.98308,-21.43625 0.81083,-37.58366 -18.57143,-51.42857 z"
-         style="fill:#c8b7b7;stroke:none;filter:url(#filter4002)" />
-    </g>
-  </g>
-</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/werewolf_NW_1.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,384 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="werewolf_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter6285"
+       x="-0.18582313"
+       width="1.3716463"
+       y="-0.10235358"
+       height="1.2047072">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.04861"
+         id="feGaussianBlur6287" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6361"
+       x="-0.1592533"
+       width="1.3185066"
+       y="-0.11271148"
+       height="1.225423">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="12.615103"
+         id="feGaussianBlur6363" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6461"
+       x="-0.12964776"
+       width="1.2592955"
+       y="-0.13443918"
+       height="1.2688784">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.422084"
+         id="feGaussianBlur6463" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6589"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6597"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter6619">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6621" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4580"
+       x="-0.14069959"
+       width="1.2813992"
+       y="-0.12431357"
+       height="1.2486271">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.2555326"
+         id="feGaussianBlur4582" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4002"
+       x="-0.11893633"
+       width="1.2378727"
+       y="-0.14828753"
+       height="1.2965751">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.3562367"
+         id="feGaussianBlur4004" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+  </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="277.31778"
+     inkscape:cy="288.62974"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <g
+       id="g7129"
+       transform="matrix(0.93936671,0.34291426,-0.34291426,0.93936671,495.56784,120.55399)">
+      <path
+         transform="matrix(1.0547609,-0.04464984,0.06071111,1.4341756,-333.65066,-54.90991)"
+         d="m 124.28572,176.6479 c 0,7.10081 -10.55329,12.85715 -23.57143,12.85715 -13.018144,0 -23.571431,-5.75634 -23.571431,-12.85715 0,-7.1008 10.553287,-12.85714 23.571431,-12.85714 13.01814,0 23.57143,5.75634 23.57143,12.85714 z"
+         sodipodi:ry="12.857142"
+         sodipodi:rx="23.571428"
+         sodipodi:cy="176.6479"
+         sodipodi:cx="100.71429"
+         id="path3076"
+         style="fill:#e9afaf;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,-119.06454,-79.638623)"
+         d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
+         sodipodi:ry="8.5714283"
+         sodipodi:rx="8.5714283"
+         sodipodi:cy="108.07647"
+         sodipodi:cx="88.571426"
+         id="path3078"
+         style="fill:#ffffff;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path2987"
+         d="m -221.20884,205.56718 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.763334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59119 -22.49435,-22.927409 -19.90024,-55.152568 -20.81313,-86.339856 39.09411,19.441798 64.18936,44.820011 73.32087,76.967856 29.62924,-4.915554 43.47889,3.92645 54.96219,14.83156 15.64844,-37.266983 49.01717,-51.821738 84.52724,-63.631916 -19.06279,22.118114 13.87129,48.788306 -39.01235,91.732076 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.180984 -67.11496,29.232714 -110.54341,23.267564 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:none" />
+      <path
+         clip-path="url(#clipPath6467)"
+         sodipodi:nodetypes="cccssscsc"
+         transform="translate(-330.82505,-116.51614)"
+         inkscape:connector-curvature="0"
+         id="path6386"
+         d="m 120,302.85714 c 21.19302,-31.47466 30.40641,-70.13711 68.57143,-91.42857 0.78594,-27.5158 -0.067,-55.5779 22.85714,-75.71428 19.27654,1.35348 58.24914,26.25198 55.07381,13.63222 -3.72333,-14.79764 47.90793,-58.238237 60.44578,-49.16041 17.47535,12.65273 -20.28705,73.22329 -40.1762,62.46318 C 268.90362,152.98244 310,193.20635 321.42857,208.57143 292.05134,234.6535 229.26299,220.46532 210.85843,234.4907 181.1374,257.1399 182.50784,273.03881 120,302.85714 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6461)" />
+    </g>
+    <path
+       style="fill:#241c1c;stroke:none"
+       d="m 453.7831,231.4885 c 34.96286,32.51634 -7.81504,84.67021 -30.42648,99.62359 -35.62856,10.69985 -68.91055,5.88393 -101.53377,-3.28768 l -42.63177,35.24252 c -8.79577,20.32563 -5.16348,44.30705 2.65135,69.51879 -14.49047,-19.01918 -27.95183,-39.05061 -22.21917,-77.96375 -0.61684,-13.0324 -39.26641,30.84036 -43.34354,47.20306 -4.1701,16.73571 -1.31863,-52.96839 27.96667,-61.59683 -24.92035,-3.84088 -35.99739,34.01583 -59.53142,38.17217 19.73734,-37.40018 46.4046,-78.59547 117.24216,-78.81392 33.18436,-5.08391 65.51068,-22.66055 100.36195,-3.47219 8.06511,-81.3787 38.27006,-70.02206 51.46402,-64.62576 z"
+       id="path3064"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccsccccc"
+       inkscape:transform-center-x="118.29122"
+       inkscape:transform-center-y="79.388223" />
+    <path
+       sodipodi:nodetypes="ccsccccscscc"
+       inkscape:connector-curvature="0"
+       id="path3066"
+       d="m 571.13765,401.26895 c 36.45198,18.76222 41.49738,53.66002 69.33878,53.66811 4.36355,18.63114 24.26132,35.0088 4.58299,52.60489 -24.05407,21.5089 -17.01848,74.50732 -12.88513,102.3655 -18.89044,-23.88687 -33.01425,-48.47852 -16.1399,-77.65321 -28.71098,27.29248 -24.11052,49.98366 -29.12507,74.00293 -3.01299,-22.68441 -21.8329,-38.5223 4.44896,-73.89534 -2.14708,-9.73405 -44.16353,37.86398 -48.18653,44.02268 -1.75933,2.69328 7.59594,-60.76222 59.10533,-93.06438 -16.60598,-22.55311 -27.07254,-45.00307 -49.57168,-33.34192 -38.33038,19.8664 -117.31843,-12.37493 -101.87497,-72.75857 38.98384,-71.5865 103.38563,-16.12507 120.30722,24.04931 z"
+       style="fill:#241c1c;stroke:none"
+       inkscape:transform-center-x="-58.225471"
+       inkscape:transform-center-y="88.532493" />
+    <g
+       id="g4594">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path3062"
+         d="m 358.06962,135.33256 c 214.69413,-28.79079 251.42403,152.67328 173.00494,295.54153 -60.01015,73.76212 -151.67371,-52.63574 -95.73694,-153.5679 18.62069,-33.59913 -114.64567,-14.22614 -77.268,-141.97363 z"
+         style="fill:#483737;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         clip-path="url(#clipPath6367)"
+         sodipodi:nodetypes="zccz"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path6303"
+         d="m 300,198.57143 c -166.25299,-72.31325 131.94033,-53.49044 150,55.71429 14.81656,85.06351 6.28812,144.19978 -34.28571,178.57142 C 350.41719,390.45134 466.25299,270.88468 300,198.57143 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6361)" />
+    </g>
+    <g
+       id="g3156"
+       transform="translate(-25.714286,17.142857)">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path2989"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+      <path
+         clip-path="url(#clipPath6299)"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6285)"
+         d="m 578.49002,400.45119 c 138.94935,-44.39025 79.38642,-117.25324 73.80165,-164.47315 -10.87542,-91.95295 52.23864,-91.55531 68.89675,-94.12809 -55.59342,82.23001 -30.48123,95.96572 -21.35542,153.41047 13.3223,83.86066 -68.45236,109.59672 -121.34298,105.19077 z"
+         id="path5723"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsc"
+         inkscape:transform-center-x="-97.563485"
+         inkscape:transform-center-y="-110.27648" />
+    </g>
+    <g
+       id="g4590"
+       transform="matrix(0.08643402,0.99625758,-0.99625758,0.08643402,772.74493,-115.24349)"
+       inkscape:transform-center-x="82.750475"
+       inkscape:transform-center-y="60.172857">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path3866"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:none"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+      <path
+         clip-path="url(#clipPath4586)"
+         sodipodi:nodetypes="zcccz"
+         inkscape:connector-curvature="0"
+         id="path3586"
+         d="m 493.46066,339.19814 c -55.57777,14.83482 -9.96348,96.58907 55.71429,75.71429 32.3717,33.27916 49.58755,57.28914 52.85715,101.42857 10.10653,-11.25813 29.99979,-6.85747 22.85714,-45.71429 C 540.19901,420.01593 549.03843,324.36332 493.46066,339.19814 z"
+         style="fill:#c8b7b7;stroke:none;filter:url(#filter4580)" />
+    </g>
+    <g
+       id="g4012"
+       transform="matrix(0.97663997,-0.21488224,0.21488224,0.97663997,-118.68776,13.710777)"
+       inkscape:transform-center-x="102.08519"
+       inkscape:transform-center-y="106.66682">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:none"
+         d="m 452.3073,223.36984 c 43.43539,32.89477 0.86799,97.02827 -23.08334,116.60668 -39.21948,16.24674 -77.55978,14.6079 -115.65327,7.94811 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89744 11.00785,78.62223 -18.63961,-19.92614 -36.22726,-41.11994 -34.19543,-85.95897 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.59073,-59.98528 24.6653,-73.15052 -28.73487,-1.49381 -36.95591,42.76066 -63.1968,50.18693 18.10591,-44.73245 43.64301,-94.57086 124.04236,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path3058"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+      <path
+         clip-path="url(#clipPath4008)"
+         sodipodi:nodetypes="ccccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path3184"
+         d="M 344.28571,251.42857 C 320.86862,269.53338 310.57156,298.57154 310,335.71429 c -30.18908,-4.05111 -62.23854,-3.45126 -100,11.42857 -32.19019,3.96849 -20.4472,34.07178 -31.42858,55.71428 47.73563,-59.39987 30.72534,-20.01833 150.00001,-45.71428 14.27314,-9.56154 23.53433,-34.1589 34.28571,-54.28572 10.98308,-21.43625 0.81083,-37.58366 -18.57143,-51.42857 z"
+         style="fill:#c8b7b7;stroke:none;filter:url(#filter4002)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/werewolf_NW_2.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,325 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="640"
+   height="640"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="werewolf_back_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter6285"
+       x="-0.18582313"
+       width="1.3716463"
+       y="-0.10235358"
+       height="1.2047072">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.04861"
+         id="feGaussianBlur6287" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6361"
+       x="-0.1592533"
+       width="1.3185066"
+       y="-0.11271148"
+       height="1.225423">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="12.615103"
+         id="feGaussianBlur6363" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6461"
+       x="-0.12964776"
+       width="1.2592955"
+       y="-0.13443918"
+       height="1.2688784">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.422084"
+         id="feGaussianBlur6463" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4580"
+       x="-0.14069959"
+       width="1.2813992"
+       y="-0.12431357"
+       height="1.2486271">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.2555326"
+         id="feGaussianBlur4582" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4002"
+       x="-0.11893633"
+       width="1.2378727"
+       y="-0.14828753"
+       height="1.2965751">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.3562367"
+         id="feGaussianBlur4004" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+  </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="277.31778"
+     inkscape:cy="288.62974"
+     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"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <g
+       id="g7129"
+       transform="matrix(0.79970372,0.60039484,-0.60039484,0.79970372,489.24305,159.23566)">
+      <path
+         transform="matrix(1.0547609,-0.04464984,0.06071111,1.4341756,-333.65066,-54.90991)"
+         d="m 124.28572,176.6479 c 0,7.10081 -10.55329,12.85715 -23.57143,12.85715 -13.018144,0 -23.571431,-5.75634 -23.571431,-12.85715 0,-7.1008 10.553287,-12.85714 23.571431,-12.85714 13.01814,0 23.57143,5.75634 23.57143,12.85714 z"
+         sodipodi:ry="12.857142"
+         sodipodi:rx="23.571428"
+         sodipodi:cy="176.6479"
+         sodipodi:cx="100.71429"
+         id="path3076"
+         style="fill:#e9afaf;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,-119.06454,-79.638623)"
+         d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
+         sodipodi:ry="8.5714283"
+         sodipodi:rx="8.5714283"
+         sodipodi:cy="108.07647"
+         sodipodi:cx="88.571426"
+         id="path3078"
+         style="fill:#ffffff;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path2987"
+         d="m -221.20884,205.56718 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.763334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59119 -22.49435,-22.927409 -19.90024,-55.152568 -20.81313,-86.339856 39.09411,19.441798 64.18936,44.820011 73.32087,76.967856 29.62924,-4.915554 43.47889,3.92645 54.96219,14.83156 15.64844,-37.266983 49.01717,-51.821738 84.52724,-63.631916 -19.06279,22.118114 13.87129,48.788306 -39.01235,91.732076 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.180984 -67.11496,29.232714 -110.54341,23.267564 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:none" />
+      <path
+         clip-path="url(#clipPath6467)"
+         sodipodi:nodetypes="cccssscsc"
+         transform="translate(-330.82505,-116.51614)"
+         inkscape:connector-curvature="0"
+         id="path6386"
+         d="m 120,302.85714 c 21.19302,-31.47466 30.40641,-70.13711 68.57143,-91.42857 0.78594,-27.5158 -0.067,-55.5779 22.85714,-75.71428 19.27654,1.35348 58.24914,26.25198 55.07381,13.63222 -3.72333,-14.79764 47.90793,-58.238237 60.44578,-49.16041 17.47535,12.65273 -20.28705,73.22329 -40.1762,62.46318 C 268.90362,152.98244 310,193.20635 321.42857,208.57143 292.05134,234.6535 229.26299,220.46532 210.85843,234.4907 181.1374,257.1399 182.50784,273.03881 120,302.85714 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6461)" />
+    </g>
+    <path
+       style="fill:#241c1c;stroke:none"
+       d="m 461.67233,238.22206 c 15.70072,45.09103 -46.49937,71.18938 -73.47872,73.83433 -36.49681,-7.20165 -63.6643,-27.02113 -88.21277,-50.38275 l -54.16327,11.21801 c -17.27911,13.85385 -25.28195,36.7505 -30.16296,62.69041 -3.91549,-23.58754 -6.44798,-47.58864 16.81494,-79.30508 5.54862,-11.80833 -49.13006,8.90037 -60.38512,21.45762 -11.51165,12.8435 23.60213,-47.43763 53.52328,-41.37103 -20.23219,-15.04774 -47.72525,13.23588 -70.47148,5.90546 34.9348,-23.83056 77.76983,-47.77539 140.48835,-14.84524 31.7103,11.02294 68.50366,10.6018 90.33783,43.85948 45.18133,-68.16295 66.57049,-44.00066 75.70992,-33.06121 z"
+       id="path3064"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccsccccc"
+       inkscape:transform-center-x="134.50661"
+       inkscape:transform-center-y="22.695398" />
+    <path
+       sodipodi:nodetypes="ccsccccscscc"
+       inkscape:connector-curvature="0"
+       id="path3066"
+       d="m 484.03097,466.5314 c -16.61546,37.47926 -51.1617,44.54112 -49.55426,72.33608 -18.34655,5.43728 -33.54204,26.25185 -52.25033,7.6277 -22.86841,-22.76547 -75.36929,-12.66647 -102.94069,-6.9236 22.75049,-20.24466 46.48117,-35.77162 76.58585,-20.61858 -28.91247,-27.07894 -51.29847,-21.16956 -75.56825,-24.78193 22.47136,-4.32419 37.19053,-24.03139 74.02899,0.15364 9.59306,-2.70829 -40.3628,-41.89204 -46.74456,-45.5509 -2.79083,-1.60008 61.1006,4.05738 96.3372,53.60563 21.55154,-17.88666 43.35634,-29.63826 30.40931,-51.42284 -22.05707,-37.11304 5.54661,-117.83883 66.72462,-105.92519 73.72795,34.76431 22.09692,102.27577 -17.02788,121.49999 z"
+       style="fill:#241c1c;stroke:none"
+       inkscape:transform-center-x="84.16077"
+       inkscape:transform-center-y="61.224202" />
+    <g
+       id="g4594">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path3062"
+         d="m 358.06962,135.33256 c 214.69413,-28.79079 251.42403,152.67328 173.00494,295.54153 -60.01015,73.76212 -151.67371,-52.63574 -95.73694,-153.5679 18.62069,-33.59913 -114.64567,-14.22614 -77.268,-141.97363 z"
+         style="fill:#483737;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         clip-path="url(#clipPath6367)"
+         sodipodi:nodetypes="zccz"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path6303"
+         d="m 300,198.57143 c -166.25299,-72.31325 131.94033,-53.49044 150,55.71429 14.81656,85.06351 6.28812,144.19978 -34.28571,178.57142 C 350.41719,390.45134 466.25299,270.88468 300,198.57143 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6361)" />
+    </g>
+    <g
+       id="g3156"
+       transform="matrix(0.98767339,-0.15652884,0.15652884,0.98767339,-79.525744,106.64244)"
+       inkscape:transform-center-x="-75.924764"
+       inkscape:transform-center-y="-129.84073">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path2989"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+      <path
+         clip-path="url(#clipPath6299)"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6285)"
+         d="m 578.49002,400.45119 c 138.94935,-44.39025 79.38642,-117.25324 73.80165,-164.47315 -10.87542,-91.95295 52.23864,-91.55531 68.89675,-94.12809 -55.59342,82.23001 -30.48123,95.96572 -21.35542,153.41047 13.3223,83.86066 -68.45236,109.59672 -121.34298,105.19077 z"
+         id="path5723"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsc"
+         inkscape:transform-center-x="-97.563485"
+         inkscape:transform-center-y="-110.27648" />
+    </g>
+    <g
+       id="g4590"
+       transform="matrix(0.99667056,-0.08153399,0.08153399,0.99667056,-72.48631,48.600047)"
+       inkscape:transform-center-x="-59.934482"
+       inkscape:transform-center-y="83.102582">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path3866"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:none"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+      <path
+         clip-path="url(#clipPath4586)"
+         sodipodi:nodetypes="zcccz"
+         inkscape:connector-curvature="0"
+         id="path3586"
+         d="m 493.46066,339.19814 c -55.57777,14.83482 -9.96348,96.58907 55.71429,75.71429 32.3717,33.27916 49.58755,57.28914 52.85715,101.42857 10.10653,-11.25813 29.99979,-6.85747 22.85714,-45.71429 C 540.19901,420.01593 549.03843,324.36332 493.46066,339.19814 z"
+         style="fill:#c8b7b7;stroke:none;filter:url(#filter4580)" />
+    </g>
+    <g
+       id="g4012"
+       transform="matrix(0.77189724,-0.63574732,0.63574732,0.77189724,-135.43323,251.72763)"
+       inkscape:transform-center-x="37.176343"
+       inkscape:transform-center-y="137.11801">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:none"
+         d="m 452.3073,223.36984 c 43.43539,32.89477 0.86799,97.02827 -23.08334,116.60668 -39.21948,16.24674 -77.55978,14.6079 -115.65327,7.94811 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89744 11.00785,78.62223 -18.63961,-19.92614 -36.22726,-41.11994 -34.19543,-85.95897 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.59073,-59.98528 24.6653,-73.15052 -28.73487,-1.49381 -36.95591,42.76066 -63.1968,50.18693 18.10591,-44.73245 43.64301,-94.57086 124.04236,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path3058"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+      <path
+         clip-path="url(#clipPath4008)"
+         sodipodi:nodetypes="ccccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path3184"
+         d="M 344.28571,251.42857 C 320.86862,269.53338 310.57156,298.57154 310,335.71429 c -30.18908,-4.05111 -62.23854,-3.45126 -100,11.42857 -32.19019,3.96849 -20.4472,34.07178 -31.42858,55.71428 47.73563,-59.39987 30.72534,-20.01833 150.00001,-45.71428 14.27314,-9.56154 23.53433,-34.1589 34.28571,-54.28572 10.98308,-21.43625 0.81083,-37.58366 -18.57143,-51.42857 z"
+         style="fill:#c8b7b7;stroke:none;filter:url(#filter4002)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/werewolf_SW_1.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,450 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="werewolf_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter6285"
+       x="-0.18582313"
+       width="1.3716463"
+       y="-0.10235358"
+       height="1.2047072">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.04861"
+         id="feGaussianBlur6287" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6361"
+       x="-0.1592533"
+       width="1.3185066"
+       y="-0.11271148"
+       height="1.225423">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="12.615103"
+         id="feGaussianBlur6363" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6461"
+       x="-0.12964776"
+       width="1.2592955"
+       y="-0.13443918"
+       height="1.2688784">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.422084"
+         id="feGaussianBlur6463" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6589"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6597"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter6619">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6621" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4580"
+       x="-0.14069959"
+       width="1.2813992"
+       y="-0.12431357"
+       height="1.2486271">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.2555326"
+         id="feGaussianBlur4582" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4002"
+       x="-0.11893633"
+       width="1.2378727"
+       y="-0.14828753"
+       height="1.2965751">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.3562367"
+         id="feGaussianBlur4004" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+  </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="277.31778"
+     inkscape:cy="288.62974"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1178"
+     inkscape:window-height="752"
+     inkscape:window-x="102"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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 />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-99.174953,22.230425)">
+    <path
+       style="fill:#241c1c;stroke:none;stroke-width:0.75934040999999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 402.51555,205.87936 c 25.87837,40.12511 -28.42584,80.13795 -54.02342,89.06234 -37.1663,1.59617 -68.23726,-11.26769 -97.59709,-28.19086 l -49.99787,23.65832 c -13.53041,17.53353 -15.91583,41.67088 -14.5505,68.03069 -9.36039,-22.00196 -17.47409,-44.73155 -2.33495,-81.03448 2.61161,-12.78293 -45.65205,20.22051 -53.63321,35.07521 -8.16313,15.19332 11.76636,-51.6618 42.27463,-52.8125 -23.20697,-9.85965 -43.26573,24.10324 -67.09852,22.33591 28.3399,-31.38767 64.33091,-64.74695 133.04061,-47.51371 33.41435,3.24488 69.07363,-5.82952 98.12609,21.3506 27.85762,-76.88622 54.33555,-58.44086 65.79423,-49.96152 z"
+       id="path3064"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccsccccc"
+       inkscape:transform-center-x="115.28963"
+       inkscape:transform-center-y="84.442532" />
+    <path
+       sodipodi:nodetypes="ccsccccscscc"
+       inkscape:connector-curvature="0"
+       id="path3066"
+       d="m 464.9121,455.5415 c -10.61091,39.6002 -43.64677,51.92677 -37.75435,79.13748 -17.28319,8.21287 -29.07198,31.12953 -50.43875,15.62726 -26.11803,-18.94939 -76.42159,-0.84184 -102.77103,9.10151 19.34091,-23.52363 40.38077,-42.53824 72.4689,-32.23007 -32.75717,-22.27483 -53.95797,-12.97 -78.49437,-12.78033 21.5306,-7.75198 33.02031,-29.50088 73.1597,-11.31248 9.05792,-4.1612 -46.36334,-35.13599 -53.23473,-37.76243 -3.00495,-1.14859 60.99182,-5.45372 103.47646,38.03999 18.52158,-21.00839 38.24347,-35.99494 22.07903,-55.51172 -27.53837,-33.24952 -12.76903,-117.27619 49.51591,-114.98041 78.22216,22.92727 37.66894,97.61997 1.99323,122.6712 z"
+       style="fill:#241c1c;stroke:none;stroke-width:0.78760200999999996px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       inkscape:transform-center-x="50.861985"
+       inkscape:transform-center-y="95.516969" />
+    <g
+       id="g4594">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path3062"
+         d="m 358.06962,135.33256 c 214.69413,-28.79079 251.42403,152.67328 173.00494,295.54153 -60.01015,73.76212 -151.67371,-52.63574 -95.73694,-153.5679 18.62069,-33.59913 -114.64567,-14.22614 -77.268,-141.97363 z"
+         style="fill:#483737;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         clip-path="url(#clipPath6367)"
+         sodipodi:nodetypes="zccz"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path6303"
+         d="m 300,198.57143 c -166.25299,-72.31325 131.94033,-53.49044 150,55.71429 14.81656,85.06351 6.28812,144.19978 -34.28571,178.57142 C 350.41719,390.45134 466.25299,270.88468 300,198.57143 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6361)" />
+    </g>
+    <g
+       id="g3171">
+      <path
+         transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)"
+         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+         sodipodi:ry="8.5714283"
+         sodipodi:rx="8.5714283"
+         sodipodi:cy="108.07647"
+         sodipodi:cx="88.571426"
+         id="path3078"
+         style="fill:#ffffff;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path2987"
+         d="m 208.79116,299.85289 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76333 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59119 -22.49435,-22.927409 -19.90024,-55.152568 -20.81313,-86.339856 39.09411,19.441798 64.18936,44.820011 73.32087,76.967856 29.62924,-4.915554 43.47889,3.92645 54.96219,14.83156 15.64844,-37.266983 49.01717,-51.821738 84.52724,-63.631916 -19.06279,22.118114 13.87129,48.788306 -39.01235,91.732076 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.23271 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:none" />
+      <path
+         clip-path="url(#clipPath6467)"
+         sodipodi:nodetypes="cccssscsc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path6386"
+         d="m 120,302.85714 c 21.19302,-31.47466 30.40641,-70.13711 68.57143,-91.42857 0.78594,-27.5158 -0.067,-55.5779 22.85714,-75.71428 19.27654,1.35348 58.24914,26.25198 55.07381,13.63222 -3.72333,-14.79764 47.90793,-58.238237 60.44578,-49.16041 17.47535,12.65273 -20.28705,73.22329 -40.1762,62.46318 C 268.90362,152.98244 310,193.20635 321.42857,208.57143 292.05134,234.6535 229.26299,220.46532 210.85843,234.4907 181.1374,257.1399 182.50784,273.03881 120,302.85714 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6461)" />
+      <path
+         transform="matrix(1.0547609,-0.04464984,0.06071111,1.4341756,96.349344,39.375804)"
+         d="m 124.28572,176.6479 a 23.571428,12.857142 0 1 1 -47.142861,0 23.571428,12.857142 0 1 1 47.142861,0 z"
+         sodipodi:ry="12.857142"
+         sodipodi:rx="23.571428"
+         sodipodi:cy="176.6479"
+         sodipodi:cx="100.71429"
+         id="path3076"
+         style="fill:#e9afaf;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)"
+         d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+         sodipodi:ry="35.714287"
+         sodipodi:rx="35.714287"
+         sodipodi:cy="125.21932"
+         sodipodi:cx="255.71428"
+         id="path3068"
+         style="fill:url(#radialGradient6589);fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:url(#radialGradient6597);fill-opacity:1;stroke:none"
+         id="path3070"
+         sodipodi:cx="255.71428"
+         sodipodi:cy="125.21932"
+         sodipodi:rx="35.714287"
+         sodipodi:ry="35.714287"
+         d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)"
+         d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+         sodipodi:ry="17.857143"
+         sodipodi:rx="17.857143"
+         sodipodi:cy="141.6479"
+         sodipodi:cx="102.14286"
+         id="path3072"
+         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)"
+         sodipodi:type="arc"
+         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
+         id="path3074"
+         sodipodi:cx="102.14286"
+         sodipodi:cy="141.6479"
+         sodipodi:rx="17.857143"
+         sodipodi:ry="17.857143"
+         d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)"
+         sodipodi:type="arc"
+         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
+         id="path3848"
+         sodipodi:cx="88.571426"
+         sodipodi:cy="108.07647"
+         sodipodi:rx="8.5714283"
+         sodipodi:ry="8.5714283"
+         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)"
+         inkscape:transform-center-y="-8.5714283"
+         inkscape:transform-center-x="160"
+         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+         sodipodi:ry="8.5714283"
+         sodipodi:rx="8.5714283"
+         sodipodi:cy="108.07647"
+         sodipodi:cx="88.571426"
+         id="path3850"
+         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6619)"
+         id="path3852"
+         sodipodi:cx="88.571426"
+         sodipodi:cy="108.07647"
+         sodipodi:rx="8.5714283"
+         sodipodi:ry="8.5714283"
+         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+         inkscape:transform-center-x="160"
+         inkscape:transform-center-y="-8.5714283"
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,132.31175,182.04846)" />
+    </g>
+    <g
+       id="g3156">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path2989"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         clip-path="url(#clipPath6299)"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6285)"
+         d="m 578.49002,400.45119 c 138.94935,-44.39025 79.38642,-117.25324 73.80165,-164.47315 -10.87542,-91.95295 52.23864,-91.55531 68.89675,-94.12809 -55.59342,82.23001 -30.48123,95.96572 -21.35542,153.41047 13.3223,83.86066 -68.45236,109.59672 -121.34298,105.19077 z"
+         id="path5723"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsc"
+         inkscape:transform-center-x="-97.563485"
+         inkscape:transform-center-y="-110.27648" />
+    </g>
+    <g
+       id="g4590">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path3866"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:none;stroke-width:0.78760200999999996px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+      <path
+         clip-path="url(#clipPath4586)"
+         sodipodi:nodetypes="zcccz"
+         inkscape:connector-curvature="0"
+         id="path3586"
+         d="m 493.46066,339.19814 c -55.57777,14.83482 -9.96348,96.58907 55.71429,75.71429 32.3717,33.27916 49.58755,57.28914 52.85715,101.42857 10.10653,-11.25813 29.99979,-6.85747 22.85714,-45.71429 C 540.19901,420.01593 549.03843,324.36332 493.46066,339.19814 z"
+         style="fill:#c8b7b7;stroke:none;filter:url(#filter4580)" />
+    </g>
+    <g
+       id="g4012">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:none;stroke-width:0.86652183999999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 452.3073,223.36984 c 43.43539,32.89477 0.86799,97.02827 -23.08334,116.60668 -39.21948,16.24674 -77.55978,14.6079 -115.65327,7.94811 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89744 11.00785,78.62223 -18.63961,-19.92614 -36.22726,-41.11994 -34.19543,-85.95897 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.59073,-59.98528 24.6653,-73.15052 -28.73487,-1.49381 -36.95591,42.76066 -63.1968,50.18693 18.10591,-44.73245 43.64301,-94.57086 124.04236,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path3058"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+      <path
+         clip-path="url(#clipPath4008)"
+         sodipodi:nodetypes="ccccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path3184"
+         d="M 344.28571,251.42857 C 320.86862,269.53338 310.57156,298.57154 310,335.71429 c -30.18908,-4.05111 -62.23854,-3.45126 -100,11.42857 -32.19019,3.96849 -20.4472,34.07178 -31.42858,55.71428 47.73563,-59.39987 30.72534,-20.01833 150.00001,-45.71428 14.27314,-9.56154 23.53433,-34.1589 34.28571,-54.28572 10.98308,-21.43625 0.81083,-37.58366 -18.57143,-51.42857 z"
+         style="fill:#c8b7b7;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4002)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/images/creatures/werewolf_SW_2.svg	Wed Sep 04 20:20:13 2013 +0200
@@ -0,0 +1,482 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns: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="werewolf_1.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6583">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6585" />
+      <stop
+         style="stop-color:#c8c8c8;stop-opacity:1;"
+         offset="1"
+         id="stop6587" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter6285"
+       x="-0.18582313"
+       width="1.3716463"
+       y="-0.10235358"
+       height="1.2047072">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.04861"
+         id="feGaussianBlur6287" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6299">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path6301"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6361"
+       x="-0.1592533"
+       width="1.3185066"
+       y="-0.11271148"
+       height="1.225423">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="12.615103"
+         id="feGaussianBlur6363" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6367">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path6369"
+         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
+         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6461"
+       x="-0.12964776"
+       width="1.2592955"
+       y="-0.13443918"
+       height="1.2688784">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="11.422084"
+         id="feGaussianBlur6463" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6467">
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path6469"
+         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6499">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6501" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6523">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6525" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6555">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.89287219"
+         id="feGaussianBlur6557" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6579">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6581" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6589"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient6597"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter6619">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.42857862"
+         id="feGaussianBlur6621" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4580"
+       x="-0.14069959"
+       width="1.2813992"
+       y="-0.12431357"
+       height="1.2486271">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.2555326"
+         id="feGaussianBlur4582" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4586">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path4588"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4002"
+       x="-0.11893633"
+       width="1.2378727"
+       y="-0.14828753"
+       height="1.2965751">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.3562367"
+         id="feGaussianBlur4004" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4008">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path4010"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4016"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6583"
+       id="radialGradient4018"
+       gradientUnits="userSpaceOnUse"
+       cx="255.71428"
+       cy="125.21932"
+       fx="255.71428"
+       fy="125.21932"
+       r="35.714287" />
+  </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="277.31778"
+     inkscape:cy="288.62974"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1178"
+     inkscape:window-height="752"
+     inkscape:window-x="102"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     fit-margin-left="0" />
+  <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(-99.174953,22.230425)">
+    <path
+       style="fill:#241c1c;stroke:none"
+       d="m 401.34698,204.79609 c 32.30977,35.15385 -14.42007,83.79846 -38.13284,96.93564 -36.35691,7.87756 -69.15969,0.4707 -100.96471,-11.2269 l -45.26012,31.79661 c -10.36011,19.5746 -8.61654,43.76678 -2.79957,69.51298 -12.95694,-20.0953 -24.80868,-41.11916 -16.04701,-79.46403 0.40539,-13.04069 -41.56044,27.67144 -46.90613,43.6647 -5.46758,16.35785 2.83244,-52.90903 32.70338,-59.21818 -24.54315,-5.78016 -38.55008,31.09311 -62.33727,33.39415 22.6049,-35.7401 52.41557,-74.72109 123.0528,-69.39284 33.48053,-2.47023 67.08373,-17.46202 100.32573,4.39603 14.41167,-80.49746 43.63477,-66.81088 56.36574,-60.39816 z"
+       id="path3064"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccsccccc"
+       inkscape:transform-center-x="128.60829"
+       inkscape:transform-center-y="83.588693" />
+    <path
+       sodipodi:nodetypes="ccsccccscscc"
+       inkscape:connector-curvature="0"
+       id="path3066"
+       d="m 527.20772,367.27735 c 40.15146,8.28416 54.38306,40.54518 81.20396,33.07639 9.20652,16.77498 32.77149,27.20767 18.54128,49.44189 -17.39447,27.17836 3.61499,76.34068 15.07761,102.0656 -24.6112,-17.93658 -44.8201,-37.83209 -36.40021,-70.46661 -20.32719,34.00008 -9.80217,54.62235 -8.18235,79.10595 -8.99403,-21.04203 -31.37579,-31.24423 -15.55847,-72.37574 -4.6822,-8.79991 -32.37323,48.33292 -34.5946,55.34575 -0.97144,3.0668 -9.00028,-60.57013 31.94258,-105.5182 -22.05247,-17.26528 -38.16332,-36.07991 -56.70451,-18.80513 -31.58747,29.42999 -116.33228,19.58455 -117.67163,-42.72829 18.32789,-79.42578 95.25781,-43.29615 122.34634,-9.14161 z"
+       style="fill:#241c1c;stroke:none"
+       inkscape:transform-center-x="-69.016037"
+       inkscape:transform-center-y="62.561196" />
+    <g
+       id="g4594">
+      <path
+         sodipodi:nodetypes="ccsc"
+         inkscape:connector-curvature="0"
+         id="path3062"
+         d="m 358.06962,135.33256 c 214.69413,-28.79079 251.42403,152.67328 173.00494,295.54153 -60.01015,73.76212 -151.67371,-52.63574 -95.73694,-153.5679 18.62069,-33.59913 -114.64567,-14.22614 -77.268,-141.97363 z"
+         style="fill:#483737;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         clip-path="url(#clipPath6367)"
+         sodipodi:nodetypes="zccz"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path6303"
+         d="m 300,198.57143 c -166.25299,-72.31325 131.94033,-53.49044 150,55.71429 14.81656,85.06351 6.28812,144.19978 -34.28571,178.57142 C 350.41719,390.45134 466.25299,270.88468 300,198.57143 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6361)" />
+    </g>
+    <g
+       id="g3171"
+       inkscape:transform-center-x="47.91077"
+       transform="matrix(0.94373055,0.33071536,-0.33071536,0.94373055,75.751488,-111.30808)"
+       inkscape:transform-center-y="-46.31158">
+      <path
+         transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,310.93546,14.647091)"
+         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+         sodipodi:ry="8.5714283"
+         sodipodi:rx="8.5714283"
+         sodipodi:cy="108.07647"
+         sodipodi:cx="88.571426"
+         id="path3078"
+         style="fill:#ffffff;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path2987"
+         d="m 208.79116,299.85289 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76333 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59119 -22.49435,-22.927409 -19.90024,-55.152568 -20.81313,-86.339856 39.09411,19.441798 64.18936,44.820011 73.32087,76.967856 29.62924,-4.915554 43.47889,3.92645 54.96219,14.83156 15.64844,-37.266983 49.01717,-51.821738 84.52724,-63.631916 -19.06279,22.118114 13.87129,48.788306 -39.01235,91.732076 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.23271 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
+         style="fill:#6c5353;stroke:none" />
+      <path
+         clip-path="url(#clipPath6467)"
+         sodipodi:nodetypes="cccssscsc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path6386"
+         d="m 120,302.85714 c 21.19302,-31.47466 30.40641,-70.13711 68.57143,-91.42857 0.78594,-27.5158 -0.067,-55.5779 22.85714,-75.71428 19.27654,1.35348 58.24914,26.25198 55.07381,13.63222 -3.72333,-14.79764 47.90793,-58.238237 60.44578,-49.16041 17.47535,12.65273 -20.28705,73.22329 -40.1762,62.46318 C 268.90362,152.98244 310,193.20635 321.42857,208.57143 292.05134,234.6535 229.26299,220.46532 210.85843,234.4907 181.1374,257.1399 182.50784,273.03881 120,302.85714 z"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6461)" />
+      <path
+         transform="matrix(1.0547609,-0.04464984,0.06071111,1.4341756,96.349344,39.375804)"
+         d="m 124.28572,176.6479 a 23.571428,12.857142 0 1 1 -47.142861,0 23.571428,12.857142 0 1 1 47.142861,0 z"
+         sodipodi:ry="12.857142"
+         sodipodi:rx="23.571428"
+         sodipodi:cy="176.6479"
+         sodipodi:cx="100.71429"
+         id="path3076"
+         style="fill:#e9afaf;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,-0.88016437,41.841911)"
+         d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+         sodipodi:ry="35.714287"
+         sodipodi:rx="35.714287"
+         sodipodi:cy="125.21932"
+         sodipodi:cx="255.71428"
+         id="path3068"
+         style="fill:url(#radialGradient4016);fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:url(#radialGradient4018);fill-opacity:1;stroke:none"
+         id="path3070"
+         sodipodi:cx="255.71428"
+         sodipodi:cy="125.21932"
+         sodipodi:rx="35.714287"
+         sodipodi:ry="35.714287"
+         d="m 291.42857,125.21932 a 35.714287,35.714287 0 1 1 -71.42858,0 35.714287,35.714287 0 1 1 71.42858,0 z"
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,78.466838,58.500927)" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,222.46217,34.908502)"
+         d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z"
+         sodipodi:ry="17.857143"
+         sodipodi:rx="17.857143"
+         sodipodi:cy="141.6479"
+         sodipodi:cx="102.14286"
+         id="path3072"
+         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6555)"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,143.11518,18.249483)"
+         sodipodi:type="arc"
+         style="fill:#808000;fill-opacity:1;stroke:none;filter:url(#filter6499)"
+         id="path3074"
+         sodipodi:cx="102.14286"
+         sodipodi:cy="141.6479"
+         sodipodi:rx="17.857143"
+         sodipodi:ry="17.857143"
+         d="m 120,141.6479 a 17.857143,17.857143 0 1 1 -35.714283,0 17.857143,17.857143 0 1 1 35.714283,0 z" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,251.65267,62.608478)"
+         sodipodi:type="arc"
+         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6579)"
+         id="path3848"
+         sodipodi:cx="88.571426"
+         sodipodi:cy="108.07647"
+         sodipodi:rx="8.5714283"
+         sodipodi:ry="8.5714283"
+         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z" />
+      <path
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,172.3661,47.376763)"
+         inkscape:transform-center-y="-8.5714283"
+         inkscape:transform-center-x="160"
+         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+         sodipodi:ry="8.5714283"
+         sodipodi:rx="8.5714283"
+         sodipodi:cy="108.07647"
+         sodipodi:cx="88.571426"
+         id="path3850"
+         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6523)"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter6619)"
+         id="path3852"
+         sodipodi:cx="88.571426"
+         sodipodi:cy="108.07647"
+         sodipodi:rx="8.5714283"
+         sodipodi:ry="8.5714283"
+         d="m 97.142855,108.07647 a 8.5714283,8.5714283 0 1 1 -17.142857,0 8.5714283,8.5714283 0 1 1 17.142857,0 z"
+         inkscape:transform-center-x="160"
+         inkscape:transform-center-y="-8.5714283"
+         transform="matrix(0.99910522,-0.04229384,0.04229384,0.99910522,132.31175,182.04846)" />
+    </g>
+    <g
+       id="g3156"
+       inkscape:transform-center-x="-64.013871"
+       inkscape:transform-center-y="-128.01661"
+       transform="matrix(0.98506267,-0.17219623,0.17219623,0.98506267,-58.036681,100.92284)">
+      <path
+         inkscape:transform-center-y="-110.27648"
+         inkscape:transform-center-x="-97.563485"
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path2989"
+         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
+         style="fill:#6c5353;stroke:none" />
+      <path
+         clip-path="url(#clipPath6299)"
+         style="fill:#ac9393;stroke:none;filter:url(#filter6285)"
+         d="m 578.49002,400.45119 c 138.94935,-44.39025 79.38642,-117.25324 73.80165,-164.47315 -10.87542,-91.95295 52.23864,-91.55531 68.89675,-94.12809 -55.59342,82.23001 -30.48123,95.96572 -21.35542,153.41047 13.3223,83.86066 -68.45236,109.59672 -121.34298,105.19077 z"
+         id="path5723"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsc"
+         inkscape:transform-center-x="-97.563485"
+         inkscape:transform-center-y="-110.27648" />
+    </g>
+    <g
+       id="g4590"
+       inkscape:transform-center-x="68.139752"
+       inkscape:transform-center-y="59.078568"
+       transform="matrix(0.24956612,0.96835777,-0.96835777,0.24956612,736.89356,-176.7024)">
+      <path
+         sodipodi:nodetypes="ccsccccscscc"
+         inkscape:connector-curvature="0"
+         id="path3866"
+         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
+         style="fill:#916f6f;stroke:none"
+         inkscape:transform-center-x="-69.387539"
+         inkscape:transform-center-y="83.521187" />
+      <path
+         clip-path="url(#clipPath4586)"
+         sodipodi:nodetypes="zcccz"
+         inkscape:connector-curvature="0"
+         id="path3586"
+         d="m 493.46066,339.19814 c -55.57777,14.83482 -9.96348,96.58907 55.71429,75.71429 32.3717,33.27916 49.58755,57.28914 52.85715,101.42857 10.10653,-11.25813 29.99979,-6.85747 22.85714,-45.71429 C 540.19901,420.01593 549.03843,324.36332 493.46066,339.19814 z"
+         style="fill:#c8b7b7;stroke:none;filter:url(#filter4580)" />
+    </g>
+    <g
+       id="g4012"
+       inkscape:transform-center-x="132.46612"
+       inkscape:transform-center-y="83.736805"
+       transform="matrix(0.99279867,0.11979479,-0.11979479,0.99279867,33.333448,-50.924302)">
+      <path
+         inkscape:transform-center-y="107.29473"
+         inkscape:transform-center-x="92.419155"
+         style="fill:#916f6f;stroke:none"
+         d="m 452.3073,223.36984 c 43.43539,32.89477 0.86799,97.02827 -23.08334,116.60668 -39.21948,16.24674 -77.55978,14.6079 -115.65327,7.94811 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89744 11.00785,78.62223 -18.63961,-19.92614 -36.22726,-41.11994 -34.19543,-85.95897 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.59073,-59.98528 24.6653,-73.15052 -28.73487,-1.49381 -36.95591,42.76066 -63.1968,50.18693 18.10591,-44.73245 43.64301,-94.57086 124.04236,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
+         id="path3058"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccsccccc" />
+      <path
+         clip-path="url(#clipPath4008)"
+         sodipodi:nodetypes="ccccccc"
+         transform="translate(99.174953,-22.230425)"
+         inkscape:connector-curvature="0"
+         id="path3184"
+         d="M 344.28571,251.42857 C 320.86862,269.53338 310.57156,298.57154 310,335.71429 c -30.18908,-4.05111 -62.23854,-3.45126 -100,11.42857 -32.19019,3.96849 -20.4472,34.07178 -31.42858,55.71428 47.73563,-59.39987 30.72534,-20.01833 150.00001,-45.71428 14.27314,-9.56154 23.53433,-34.1589 34.28571,-54.28572 10.98308,-21.43625 0.81083,-37.58366 -18.57143,-51.42857 z"
+         style="fill:#c8b7b7;stroke:none;filter:url(#filter4002)" />
+    </g>
+  </g>
+</svg>
--- a/source/images/creatures/werewolf_back_1.svg	Wed Sep 04 01:23:43 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,384 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns: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="werewolf_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient6583">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop6585" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1;"
-         offset="1"
-         id="stop6587" />
-    </linearGradient>
-    <filter
-       inkscape:collect="always"
-       id="filter6285"
-       x="-0.18582313"
-       width="1.3716463"
-       y="-0.10235358"
-       height="1.2047072">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.04861"
-         id="feGaussianBlur6287" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6299">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path6301"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6361"
-       x="-0.1592533"
-       width="1.3185066"
-       y="-0.11271148"
-       height="1.225423">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="12.615103"
-         id="feGaussianBlur6363" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6367">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path6369"
-         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
-         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6461"
-       x="-0.12964776"
-       width="1.2592955"
-       y="-0.13443918"
-       height="1.2688784">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.422084"
-         id="feGaussianBlur6463" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6467">
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path6469"
-         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6499">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6501" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6523">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6525" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6555">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.89287219"
-         id="feGaussianBlur6557" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter6579">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6581" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6589"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6583"
-       id="radialGradient6597"
-       cx="255.71428"
-       cy="125.21932"
-       fx="255.71428"
-       fy="125.21932"
-       r="35.714287"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       id="filter6619">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.42857862"
-         id="feGaussianBlur6621" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter4580"
-       x="-0.14069959"
-       width="1.2813992"
-       y="-0.12431357"
-       height="1.2486271">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="9.2555326"
-         id="feGaussianBlur4582" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4586">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path4588"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4002"
-       x="-0.11893633"
-       width="1.2378727"
-       y="-0.14828753"
-       height="1.2965751">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="9.3562367"
-         id="feGaussianBlur4004" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4008">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path4010"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-    </clipPath>
-  </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="277.31778"
-     inkscape:cy="288.62974"
-     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"
-     fit-margin-top="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     fit-margin-left="0" />
-  <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(-99.174953,22.230425)">
-    <g
-       id="g7129"
-       transform="matrix(0.93936671,0.34291426,-0.34291426,0.93936671,495.56784,120.55399)">
-      <path
-         transform="matrix(1.0547609,-0.04464984,0.06071111,1.4341756,-333.65066,-54.90991)"
-         d="m 124.28572,176.6479 c 0,7.10081 -10.55329,12.85715 -23.57143,12.85715 -13.018144,0 -23.571431,-5.75634 -23.571431,-12.85715 0,-7.1008 10.553287,-12.85714 23.571431,-12.85714 13.01814,0 23.57143,5.75634 23.57143,12.85714 z"
-         sodipodi:ry="12.857142"
-         sodipodi:rx="23.571428"
-         sodipodi:cy="176.6479"
-         sodipodi:cx="100.71429"
-         id="path3076"
-         style="fill:#e9afaf;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,-119.06454,-79.638623)"
-         d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
-         sodipodi:ry="8.5714283"
-         sodipodi:rx="8.5714283"
-         sodipodi:cy="108.07647"
-         sodipodi:cx="88.571426"
-         id="path3078"
-         style="fill:#ffffff;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path2987"
-         d="m -221.20884,205.56718 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.763334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59119 -22.49435,-22.927409 -19.90024,-55.152568 -20.81313,-86.339856 39.09411,19.441798 64.18936,44.820011 73.32087,76.967856 29.62924,-4.915554 43.47889,3.92645 54.96219,14.83156 15.64844,-37.266983 49.01717,-51.821738 84.52724,-63.631916 -19.06279,22.118114 13.87129,48.788306 -39.01235,91.732076 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.180984 -67.11496,29.232714 -110.54341,23.267564 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:none" />
-      <path
-         clip-path="url(#clipPath6467)"
-         sodipodi:nodetypes="cccssscsc"
-         transform="translate(-330.82505,-116.51614)"
-         inkscape:connector-curvature="0"
-         id="path6386"
-         d="m 120,302.85714 c 21.19302,-31.47466 30.40641,-70.13711 68.57143,-91.42857 0.78594,-27.5158 -0.067,-55.5779 22.85714,-75.71428 19.27654,1.35348 58.24914,26.25198 55.07381,13.63222 -3.72333,-14.79764 47.90793,-58.238237 60.44578,-49.16041 17.47535,12.65273 -20.28705,73.22329 -40.1762,62.46318 C 268.90362,152.98244 310,193.20635 321.42857,208.57143 292.05134,234.6535 229.26299,220.46532 210.85843,234.4907 181.1374,257.1399 182.50784,273.03881 120,302.85714 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6461)" />
-    </g>
-    <path
-       style="fill:#241c1c;stroke:none"
-       d="m 453.7831,231.4885 c 34.96286,32.51634 -7.81504,84.67021 -30.42648,99.62359 -35.62856,10.69985 -68.91055,5.88393 -101.53377,-3.28768 l -42.63177,35.24252 c -8.79577,20.32563 -5.16348,44.30705 2.65135,69.51879 -14.49047,-19.01918 -27.95183,-39.05061 -22.21917,-77.96375 -0.61684,-13.0324 -39.26641,30.84036 -43.34354,47.20306 -4.1701,16.73571 -1.31863,-52.96839 27.96667,-61.59683 -24.92035,-3.84088 -35.99739,34.01583 -59.53142,38.17217 19.73734,-37.40018 46.4046,-78.59547 117.24216,-78.81392 33.18436,-5.08391 65.51068,-22.66055 100.36195,-3.47219 8.06511,-81.3787 38.27006,-70.02206 51.46402,-64.62576 z"
-       id="path3064"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccccsccccc"
-       inkscape:transform-center-x="118.29122"
-       inkscape:transform-center-y="79.388223" />
-    <path
-       sodipodi:nodetypes="ccsccccscscc"
-       inkscape:connector-curvature="0"
-       id="path3066"
-       d="m 571.13765,401.26895 c 36.45198,18.76222 41.49738,53.66002 69.33878,53.66811 4.36355,18.63114 24.26132,35.0088 4.58299,52.60489 -24.05407,21.5089 -17.01848,74.50732 -12.88513,102.3655 -18.89044,-23.88687 -33.01425,-48.47852 -16.1399,-77.65321 -28.71098,27.29248 -24.11052,49.98366 -29.12507,74.00293 -3.01299,-22.68441 -21.8329,-38.5223 4.44896,-73.89534 -2.14708,-9.73405 -44.16353,37.86398 -48.18653,44.02268 -1.75933,2.69328 7.59594,-60.76222 59.10533,-93.06438 -16.60598,-22.55311 -27.07254,-45.00307 -49.57168,-33.34192 -38.33038,19.8664 -117.31843,-12.37493 -101.87497,-72.75857 38.98384,-71.5865 103.38563,-16.12507 120.30722,24.04931 z"
-       style="fill:#241c1c;stroke:none"
-       inkscape:transform-center-x="-58.225471"
-       inkscape:transform-center-y="88.532493" />
-    <g
-       id="g4594">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path3062"
-         d="m 358.06962,135.33256 c 214.69413,-28.79079 251.42403,152.67328 173.00494,295.54153 -60.01015,73.76212 -151.67371,-52.63574 -95.73694,-153.5679 18.62069,-33.59913 -114.64567,-14.22614 -77.268,-141.97363 z"
-         style="fill:#483737;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-      <path
-         clip-path="url(#clipPath6367)"
-         sodipodi:nodetypes="zccz"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path6303"
-         d="m 300,198.57143 c -166.25299,-72.31325 131.94033,-53.49044 150,55.71429 14.81656,85.06351 6.28812,144.19978 -34.28571,178.57142 C 350.41719,390.45134 466.25299,270.88468 300,198.57143 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6361)" />
-    </g>
-    <g
-       id="g3156"
-       transform="translate(-25.714286,17.142857)">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path2989"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-      <path
-         clip-path="url(#clipPath6299)"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6285)"
-         d="m 578.49002,400.45119 c 138.94935,-44.39025 79.38642,-117.25324 73.80165,-164.47315 -10.87542,-91.95295 52.23864,-91.55531 68.89675,-94.12809 -55.59342,82.23001 -30.48123,95.96572 -21.35542,153.41047 13.3223,83.86066 -68.45236,109.59672 -121.34298,105.19077 z"
-         id="path5723"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cscsc"
-         inkscape:transform-center-x="-97.563485"
-         inkscape:transform-center-y="-110.27648" />
-    </g>
-    <g
-       id="g4590"
-       transform="matrix(0.08643402,0.99625758,-0.99625758,0.08643402,772.74493,-115.24349)"
-       inkscape:transform-center-x="82.750475"
-       inkscape:transform-center-y="60.172857">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path3866"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:none"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-      <path
-         clip-path="url(#clipPath4586)"
-         sodipodi:nodetypes="zcccz"
-         inkscape:connector-curvature="0"
-         id="path3586"
-         d="m 493.46066,339.19814 c -55.57777,14.83482 -9.96348,96.58907 55.71429,75.71429 32.3717,33.27916 49.58755,57.28914 52.85715,101.42857 10.10653,-11.25813 29.99979,-6.85747 22.85714,-45.71429 C 540.19901,420.01593 549.03843,324.36332 493.46066,339.19814 z"
-         style="fill:#c8b7b7;stroke:none;filter:url(#filter4580)" />
-    </g>
-    <g
-       id="g4012"
-       transform="matrix(0.97663997,-0.21488224,0.21488224,0.97663997,-118.68776,13.710777)"
-       inkscape:transform-center-x="102.08519"
-       inkscape:transform-center-y="106.66682">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:none"
-         d="m 452.3073,223.36984 c 43.43539,32.89477 0.86799,97.02827 -23.08334,116.60668 -39.21948,16.24674 -77.55978,14.6079 -115.65327,7.94811 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89744 11.00785,78.62223 -18.63961,-19.92614 -36.22726,-41.11994 -34.19543,-85.95897 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.59073,-59.98528 24.6653,-73.15052 -28.73487,-1.49381 -36.95591,42.76066 -63.1968,50.18693 18.10591,-44.73245 43.64301,-94.57086 124.04236,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path3058"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-      <path
-         clip-path="url(#clipPath4008)"
-         sodipodi:nodetypes="ccccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path3184"
-         d="M 344.28571,251.42857 C 320.86862,269.53338 310.57156,298.57154 310,335.71429 c -30.18908,-4.05111 -62.23854,-3.45126 -100,11.42857 -32.19019,3.96849 -20.4472,34.07178 -31.42858,55.71428 47.73563,-59.39987 30.72534,-20.01833 150.00001,-45.71428 14.27314,-9.56154 23.53433,-34.1589 34.28571,-54.28572 10.98308,-21.43625 0.81083,-37.58366 -18.57143,-51.42857 z"
-         style="fill:#c8b7b7;stroke:none;filter:url(#filter4002)" />
-    </g>
-  </g>
-</svg>
--- a/source/images/creatures/werewolf_back_2.svg	Wed Sep 04 01:23:43 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,325 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="640"
-   height="640"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.48.4 r9939"
-   sodipodi:docname="werewolf_back_1.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient6583">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop6585" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1;"
-         offset="1"
-         id="stop6587" />
-    </linearGradient>
-    <filter
-       inkscape:collect="always"
-       id="filter6285"
-       x="-0.18582313"
-       width="1.3716463"
-       y="-0.10235358"
-       height="1.2047072">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.04861"
-         id="feGaussianBlur6287" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6299">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path6301"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6361"
-       x="-0.1592533"
-       width="1.3185066"
-       y="-0.11271148"
-       height="1.225423">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="12.615103"
-         id="feGaussianBlur6363" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6367">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path6369"
-         d="M 258.89467,157.56298 C 473.5888,128.77219 510.3187,310.23627 431.89961,453.10452 371.88946,526.86663 280.2259,400.46878 336.16267,299.53662 354.78336,265.93749 221.517,285.31048 258.89467,157.56298 z"
-         style="fill:#483737;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter6461"
-       x="-0.12964776"
-       width="1.2592955"
-       y="-0.13443918"
-       height="1.2688784">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="11.422084"
-         id="feGaussianBlur6463" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath6467">
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path6469"
-         d="m 109.61621,322.08332 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.76334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59118 -22.49435,-22.92741 -19.90024,-55.152573 -20.81313,-86.339861 39.09411,19.441798 64.18936,44.820011 73.32087,76.967861 29.62924,-4.91556 43.47889,3.92645 54.96219,14.83155 15.64844,-37.26698 49.01717,-51.821733 84.52724,-63.631911 -19.06279,22.118114 13.87129,48.788311 -39.01235,91.732081 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.18098 -67.11496,29.2327 -110.54341,23.26756 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4580"
-       x="-0.14069959"
-       width="1.2813992"
-       y="-0.12431357"
-       height="1.2486271">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="9.2555326"
-         id="feGaussianBlur4582" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4586">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path4588"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.78760201px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-    </clipPath>
-    <filter
-       inkscape:collect="always"
-       id="filter4002"
-       x="-0.11893633"
-       width="1.2378727"
-       y="-0.14828753"
-       height="1.2965751">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="9.3562367"
-         id="feGaussianBlur4004" />
-    </filter>
-    <clipPath
-       clipPathUnits="userSpaceOnUse"
-       id="clipPath4008">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:#000000;stroke-width:0.86652184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-         d="m 353.13235,245.60026 c 43.43539,32.89478 0.86799,97.02828 -23.08334,116.60669 -39.21948,16.24673 -77.55978,14.6079 -115.65327,7.9481 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89745 11.00785,78.62223 -18.63961,-19.92613 -36.22726,-41.11994 -34.19543,-85.95896 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.590733,-59.98528 24.6653,-73.15052 -28.734873,-1.49381 -36.955913,42.76066 -63.196803,50.18693 18.10591,-44.73245 43.643013,-94.57086 124.042363,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path4010"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-    </clipPath>
-  </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="277.31778"
-     inkscape:cy="288.62974"
-     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"
-     fit-margin-top="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     fit-margin-left="0" />
-  <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(-99.174953,22.230425)">
-    <g
-       id="g7129"
-       transform="matrix(0.79970372,0.60039484,-0.60039484,0.79970372,489.24305,159.23566)">
-      <path
-         transform="matrix(1.0547609,-0.04464984,0.06071111,1.4341756,-333.65066,-54.90991)"
-         d="m 124.28572,176.6479 c 0,7.10081 -10.55329,12.85715 -23.57143,12.85715 -13.018144,0 -23.571431,-5.75634 -23.571431,-12.85715 0,-7.1008 10.553287,-12.85714 23.571431,-12.85714 13.01814,0 23.57143,5.75634 23.57143,12.85714 z"
-         sodipodi:ry="12.857142"
-         sodipodi:rx="23.571428"
-         sodipodi:cy="176.6479"
-         sodipodi:cx="100.71429"
-         id="path3076"
-         style="fill:#e9afaf;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         transform="matrix(0.92473888,0.38060216,-0.38060216,0.92473888,-119.06454,-79.638623)"
-         d="m 97.142855,108.07647 c 0,4.73387 -3.837559,8.57143 -8.571429,8.57143 -4.733869,0 -8.571428,-3.83756 -8.571428,-8.57143 0,-4.73387 3.837559,-8.571429 8.571428,-8.571429 4.73387,0 8.571429,3.837559 8.571429,8.571429 z"
-         sodipodi:ry="8.5714283"
-         sodipodi:rx="8.5714283"
-         sodipodi:cy="108.07647"
-         sodipodi:cx="88.571426"
-         id="path3078"
-         style="fill:#ffffff;fill-opacity:1;stroke:none"
-         sodipodi:type="arc" />
-      <path
-         sodipodi:nodetypes="cccccccccccc"
-         inkscape:connector-curvature="0"
-         id="path2987"
-         d="m -221.20884,205.56718 c -7.87896,-25.88041 18.10125,-78.93145 32.69897,-105.763334 -13.65697,0.0875 -25.17152,-17.17768 -36.00721,-39.94143 9.44362,-18.06571 18.30742,-36.55633 46.89664,-40.59119 -22.49435,-22.927409 -19.90024,-55.152568 -20.81313,-86.339856 39.09411,19.441798 64.18936,44.820011 73.32087,76.967856 29.62924,-4.915554 43.47889,3.92645 54.96219,14.83156 15.64844,-37.266983 49.01717,-51.821738 84.52724,-63.631916 -19.06279,22.118114 13.87129,48.788306 -39.01235,91.732076 29.81782,20.34876 18.05568,31.7329 29.11243,45.9527 -30.88866,20.180984 -67.11496,29.232714 -110.54341,23.267564 -19.37193,23.39569 -76.3293,70.69335 -115.14224,83.51597 z"
-         style="fill:#6c5353;stroke:none" />
-      <path
-         clip-path="url(#clipPath6467)"
-         sodipodi:nodetypes="cccssscsc"
-         transform="translate(-330.82505,-116.51614)"
-         inkscape:connector-curvature="0"
-         id="path6386"
-         d="m 120,302.85714 c 21.19302,-31.47466 30.40641,-70.13711 68.57143,-91.42857 0.78594,-27.5158 -0.067,-55.5779 22.85714,-75.71428 19.27654,1.35348 58.24914,26.25198 55.07381,13.63222 -3.72333,-14.79764 47.90793,-58.238237 60.44578,-49.16041 17.47535,12.65273 -20.28705,73.22329 -40.1762,62.46318 C 268.90362,152.98244 310,193.20635 321.42857,208.57143 292.05134,234.6535 229.26299,220.46532 210.85843,234.4907 181.1374,257.1399 182.50784,273.03881 120,302.85714 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6461)" />
-    </g>
-    <path
-       style="fill:#241c1c;stroke:none"
-       d="m 461.67233,238.22206 c 15.70072,45.09103 -46.49937,71.18938 -73.47872,73.83433 -36.49681,-7.20165 -63.6643,-27.02113 -88.21277,-50.38275 l -54.16327,11.21801 c -17.27911,13.85385 -25.28195,36.7505 -30.16296,62.69041 -3.91549,-23.58754 -6.44798,-47.58864 16.81494,-79.30508 5.54862,-11.80833 -49.13006,8.90037 -60.38512,21.45762 -11.51165,12.8435 23.60213,-47.43763 53.52328,-41.37103 -20.23219,-15.04774 -47.72525,13.23588 -70.47148,5.90546 34.9348,-23.83056 77.76983,-47.77539 140.48835,-14.84524 31.7103,11.02294 68.50366,10.6018 90.33783,43.85948 45.18133,-68.16295 66.57049,-44.00066 75.70992,-33.06121 z"
-       id="path3064"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccccsccccc"
-       inkscape:transform-center-x="134.50661"
-       inkscape:transform-center-y="22.695398" />
-    <path
-       sodipodi:nodetypes="ccsccccscscc"
-       inkscape:connector-curvature="0"
-       id="path3066"
-       d="m 484.03097,466.5314 c -16.61546,37.47926 -51.1617,44.54112 -49.55426,72.33608 -18.34655,5.43728 -33.54204,26.25185 -52.25033,7.6277 -22.86841,-22.76547 -75.36929,-12.66647 -102.94069,-6.9236 22.75049,-20.24466 46.48117,-35.77162 76.58585,-20.61858 -28.91247,-27.07894 -51.29847,-21.16956 -75.56825,-24.78193 22.47136,-4.32419 37.19053,-24.03139 74.02899,0.15364 9.59306,-2.70829 -40.3628,-41.89204 -46.74456,-45.5509 -2.79083,-1.60008 61.1006,4.05738 96.3372,53.60563 21.55154,-17.88666 43.35634,-29.63826 30.40931,-51.42284 -22.05707,-37.11304 5.54661,-117.83883 66.72462,-105.92519 73.72795,34.76431 22.09692,102.27577 -17.02788,121.49999 z"
-       style="fill:#241c1c;stroke:none"
-       inkscape:transform-center-x="84.16077"
-       inkscape:transform-center-y="61.224202" />
-    <g
-       id="g4594">
-      <path
-         sodipodi:nodetypes="ccsc"
-         inkscape:connector-curvature="0"
-         id="path3062"
-         d="m 358.06962,135.33256 c 214.69413,-28.79079 251.42403,152.67328 173.00494,295.54153 -60.01015,73.76212 -151.67371,-52.63574 -95.73694,-153.5679 18.62069,-33.59913 -114.64567,-14.22614 -77.268,-141.97363 z"
-         style="fill:#483737;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-      <path
-         clip-path="url(#clipPath6367)"
-         sodipodi:nodetypes="zccz"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path6303"
-         d="m 300,198.57143 c -166.25299,-72.31325 131.94033,-53.49044 150,55.71429 14.81656,85.06351 6.28812,144.19978 -34.28571,178.57142 C 350.41719,390.45134 466.25299,270.88468 300,198.57143 z"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6361)" />
-    </g>
-    <g
-       id="g3156"
-       transform="matrix(0.98767339,-0.15652884,0.15652884,0.98767339,-79.525744,106.64244)"
-       inkscape:transform-center-x="-75.924764"
-       inkscape:transform-center-y="-129.84073">
-      <path
-         inkscape:transform-center-y="-110.27648"
-         inkscape:transform-center-x="-97.563485"
-         sodipodi:nodetypes="cscsc"
-         inkscape:connector-curvature="0"
-         id="path2989"
-         d="m 541.34716,381.87976 c 124.1812,-54.23568 86.61571,-96.63832 83.80165,-138.75886 -7.44235,-111.39656 86.71078,-115.54275 110.32532,-106.98524 -71.98156,84.96137 -27.6021,95.88284 -27.0697,153.41047 1.17087,126.51666 -130.16522,154.79588 -167.05727,92.33363 z"
-         style="fill:#6c5353;stroke:none" />
-      <path
-         clip-path="url(#clipPath6299)"
-         style="fill:#ac9393;stroke:none;filter:url(#filter6285)"
-         d="m 578.49002,400.45119 c 138.94935,-44.39025 79.38642,-117.25324 73.80165,-164.47315 -10.87542,-91.95295 52.23864,-91.55531 68.89675,-94.12809 -55.59342,82.23001 -30.48123,95.96572 -21.35542,153.41047 13.3223,83.86066 -68.45236,109.59672 -121.34298,105.19077 z"
-         id="path5723"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cscsc"
-         inkscape:transform-center-x="-97.563485"
-         inkscape:transform-center-y="-110.27648" />
-    </g>
-    <g
-       id="g4590"
-       transform="matrix(0.99667056,-0.08153399,0.08153399,0.99667056,-72.48631,48.600047)"
-       inkscape:transform-center-x="-59.934482"
-       inkscape:transform-center-y="83.102582">
-      <path
-         sodipodi:nodetypes="ccsccccscscc"
-         inkscape:connector-curvature="0"
-         id="path3866"
-         d="m 555.9632,397.8861 c 33.81755,23.1763 34.45624,58.43116 62.07776,61.9232 1.99779,19.03076 19.68967,37.76964 -2.03593,52.76491 -26.55658,18.3297 -26.20842,71.79194 -25.59373,99.94838 -15.75276,-26.06303 -26.68818,-52.2288 -6.2956,-79.06251 -31.90063,23.48508 -30.17588,46.57358 -38.15675,69.77654 -0.15061,-22.88315 -16.84065,-40.95162 13.66115,-72.75776 -0.91206,-9.92619 -48.55462,32.03979 -53.31669,37.64665 -2.08253,2.45194 15.13993,-59.33405 70.28666,-84.93646 -13.65316,-24.45387 -21.22809,-48.03714 -45.00964,-39.28316 -40.51514,14.91361 -114.84762,-26.95873 -91.96924,-84.93513 47.63564,-66.1454 104.59082,-3.06078 116.35201,38.91534 z"
-         style="fill:#916f6f;stroke:none"
-         inkscape:transform-center-x="-69.387539"
-         inkscape:transform-center-y="83.521187" />
-      <path
-         clip-path="url(#clipPath4586)"
-         sodipodi:nodetypes="zcccz"
-         inkscape:connector-curvature="0"
-         id="path3586"
-         d="m 493.46066,339.19814 c -55.57777,14.83482 -9.96348,96.58907 55.71429,75.71429 32.3717,33.27916 49.58755,57.28914 52.85715,101.42857 10.10653,-11.25813 29.99979,-6.85747 22.85714,-45.71429 C 540.19901,420.01593 549.03843,324.36332 493.46066,339.19814 z"
-         style="fill:#c8b7b7;stroke:none;filter:url(#filter4580)" />
-    </g>
-    <g
-       id="g4012"
-       transform="matrix(0.77189724,-0.63574732,0.63574732,0.77189724,-135.43323,251.72763)"
-       inkscape:transform-center-x="37.176343"
-       inkscape:transform-center-y="137.11801">
-      <path
-         inkscape:transform-center-y="107.29473"
-         inkscape:transform-center-x="92.419155"
-         style="fill:#916f6f;stroke:none"
-         d="m 452.3073,223.36984 c 43.43539,32.89477 0.86799,97.02827 -23.08334,116.60668 -39.21948,16.24674 -77.55978,14.6079 -115.65327,7.94811 l -44.34702,44.91661 c -7.64783,24.08833 -0.76507,50.89744 11.00785,78.62223 -18.63961,-19.92614 -36.22726,-41.11994 -34.19543,-85.95897 -2.19961,-14.72517 -41.03264,39.53152 -43.77915,58.57774 -2.80915,19.48042 -7.59073,-59.98528 24.6653,-73.15052 -28.73487,-1.49381 -36.95591,42.76066 -63.1968,50.18693 18.10591,-44.73245 43.64301,-94.57086 124.04236,-102.96821 37.09058,-9.58958 71.76977,-33.26392 113.54519,-15.48804 -0.20543,-93.32008 35.39388,-83.90131 50.99428,-79.29257 z"
-         id="path3058"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccsccccc" />
-      <path
-         clip-path="url(#clipPath4008)"
-         sodipodi:nodetypes="ccccccc"
-         transform="translate(99.174953,-22.230425)"
-         inkscape:connector-curvature="0"
-         id="path3184"
-         d="M 344.28571,251.42857 C 320.86862,269.53338 310.57156,298.57154 310,335.71429 c -30.18908,-4.05111 -62.23854,-3.45126 -100,11.42857 -32.19019,3.96849 -20.4472,34.07178 -31.42858,55.71428 47.73563,-59.39987 30.72534,-20.01833 150.00001,-45.71428 14.27314,-9.56154 23.53433,-34.1589 34.28571,-54.28572 10.98308,-21.43625 0.81083,-37.58366 -18.57143,-51.42857 z"
-         style="fill:#c8b7b7;stroke:none;filter:url(#filter4002)" />
-    </g>
-  </g>
-</svg>
--- a/tools/area_editor.py	Wed Sep 04 01:23:43 2013 +0200
+++ b/tools/area_editor.py	Wed Sep 04 20:20:13 2013 +0200
@@ -24,7 +24,9 @@
 from albow.root import RootWidget
 from albow.widget import Widget
 from albow.controls import Button, Label, CheckBox
-from albow.dialogs import alert
+from albow.dialogs import alert, Dialog
+from albow.layout import Row
+from albow.table_view import TableView, TableColumn
 
 from nagslang.options import parse_args
 from nagslang.constants import SCREEN
@@ -39,6 +41,10 @@
 MENU_LEFT = SCREEN[0] + MENU_HALF_PAD
 MENU_WIDTH = 200 - MENU_PAD
 
+BUTTON_RECT = pygame.rect.Rect(0, 0, MENU_WIDTH, MENU_BUTTON_HEIGHT)
+CHECK_RECT = pygame.rect.Rect(0, 0, MENU_BUTTON_HEIGHT // 2,
+                              MENU_BUTTON_HEIGHT // 2)
+
 
 class EditorLevel(Level):
 
@@ -165,6 +171,36 @@
         return self._surface.copy()
 
 
+class ObjectTable(TableView):
+
+    columns = [TableColumn("Object", 690, 'l', '%r')]
+
+    def __init__(self, data):
+        super(ObjectTable, self).__init__(height=450)
+        self.data = data
+        self.selected_row = -1
+
+    def num_rows(self):
+        return len(self.data)
+
+    def row_data(self, i):
+        data = self.data[i]
+        if 'name' in data:
+            return ('%s (%s)' % (data['classname'], data['name']), )
+        return (data['classname'], )
+
+    def row_is_selected(self, i):
+        return self.selected_row == i
+
+    def click_row(self, i, ev):
+        self.selected_row = i
+
+    def get_selection(self):
+        if self.selected_row >= 0:
+            return self.data[self.selected_row]
+        return None
+
+
 class LevelWidget(Widget):
 
     def __init__(self, level):
@@ -328,6 +364,39 @@
         else:
             alert("Failed to close the polygon")
 
+    def _make_edit_dialog(self, entries):
+        # Dialog to hold the editor
+        edit_box = Dialog()
+        edit_box.rect = pygame.rect.Rect(0, 0, 700, 500)
+        table = ObjectTable(entries)
+        edit_box.add(table)
+        buttons = []
+        for text in ['OK', 'Delete', 'Cancel']:
+            but = Button(text, action=lambda x=text: edit_box.dismiss(x))
+            buttons.append(but)
+        row = Row(buttons)
+        row.rect = pygame.rect.Rect(0, 450, 700, 50)
+        edit_box.add(row)
+        return edit_box
+
+    def edit_objects(self):
+        edit_box = self._make_edit_dialog(self.level._game_objects)
+        res = edit_box.present()
+        if res == 'OK':
+            # Edit object stuff goes here
+            pass
+        elif res == 'Delete':
+            pass
+
+    def edit_enemies(self):
+        edit_box = self._make_edit_dialog(self.level._enemies)
+        res = edit_box.present()
+        if res == 'OK':
+            # Edit object stuff goes here
+            pass
+        elif res == 'Delete':
+            pass
+
 
 class PolyButton(Button):
     """Button for coosing the correct polygon"""
@@ -353,6 +422,17 @@
         self.level_widget = LevelWidget(self.level)
         self.add(self.level_widget)
 
+        self._dMenus = {}
+
+        self._make_draw_menu()
+        self._make_objects_menu()
+
+        self._menu_mode = 'drawing'
+        self._populate_menu()
+
+    def _make_draw_menu(self):
+        widgets = []
+
         # Add poly buttons
         y = 15
         for poly in range(1, 7):
@@ -365,67 +445,109 @@
                 but.rect.move_ip(MENU_LEFT + MENU_WIDTH // 2 - MENU_HALF_PAD,
                                  y)
                 y += MENU_BUTTON_HEIGHT + MENU_PAD
-            self.add(but)
-
-        button_rect = pygame.rect.Rect(0, 0, MENU_WIDTH, MENU_BUTTON_HEIGHT)
-
-        check_rect = pygame.rect.Rect(0, 0, MENU_BUTTON_HEIGHT // 2,
-                                      MENU_BUTTON_HEIGHT // 2)
+            widgets.append(but)
 
         end_poly_but = PolyButton(None, self.level_widget)
-        end_poly_but.rect = button_rect.copy()
+        end_poly_but.rect = BUTTON_RECT.copy()
         end_poly_but.rect.move_ip(MENU_LEFT, y)
-        self.add(end_poly_but)
+        widgets.append(end_poly_but)
         y += MENU_BUTTON_HEIGHT + MENU_PAD
 
         draw_line = Button("Draw interior wall", self.level_widget.line_mode)
-        draw_line.rect = button_rect.copy()
+        draw_line.rect = BUTTON_RECT.copy()
         draw_line.rect.move_ip(MENU_LEFT, y)
-        self.add(draw_line)
+        widgets.append(draw_line)
         y += MENU_BUTTON_HEIGHT + MENU_PAD
 
         fill_but = Button('Fill exterior', action=self.level_widget.set_filled)
-        fill_but.rect = button_rect.copy()
+        fill_but.rect = BUTTON_RECT.copy()
         fill_but.rect.move_ip(MENU_LEFT, y)
-        self.add(fill_but)
+        widgets.append(fill_but)
         y += MENU_BUTTON_HEIGHT + MENU_PAD
 
         save_but = Button('Save Level', action=self.save)
-        save_but.rect = button_rect.copy()
+        save_but.rect = BUTTON_RECT.copy()
         save_but.rect.move_ip(MENU_LEFT, y)
-        self.add(save_but)
+        widgets.append(save_but)
         y += MENU_BUTTON_HEIGHT + MENU_PAD
 
         close_poly_but = Button('Close Polygon',
                                 action=self.level_widget.close_poly)
-        close_poly_but.rect = button_rect.copy()
+        close_poly_but.rect = BUTTON_RECT.copy()
         close_poly_but.rect.move_ip(MENU_LEFT, y)
-        self.add(close_poly_but)
+        widgets.append(close_poly_but)
         y += MENU_BUTTON_HEIGHT + MENU_PAD
 
         white = pygame.color.Color("white")
         self.show_objs = CheckBox(fg_color=white)
-        self.show_objs.rect = check_rect.copy()
+        self.show_objs.rect = CHECK_RECT.copy()
         self.show_objs.rect.move_ip(MENU_LEFT, y)
         label = Label("Show Objects", fg_color=white)
         label.rect.move_ip(MENU_LEFT + MENU_BUTTON_HEIGHT // 2 + MENU_PAD, y)
-        self.add(self.show_objs)
-        self.add(label)
+        widgets.append(self.show_objs)
+        widgets.append(label)
         y += label.rect.height + MENU_PAD
 
         self.show_enemies = CheckBox(fg_color=white)
-        self.show_enemies.rect = check_rect.copy()
+        self.show_enemies.rect = CHECK_RECT.copy()
         self.show_enemies.rect.move_ip(MENU_LEFT, y)
         label = Label("Show enemy start pos", fg_color=white)
         label.rect.move_ip(MENU_LEFT + MENU_BUTTON_HEIGHT // 2 + MENU_PAD, y)
-        self.add(self.show_enemies)
-        self.add(label)
+        widgets.append(self.show_enemies)
+        widgets.append(label)
         y += label.rect.height + MENU_PAD
 
+        switch_but = Button('Switch to Objects', action=self.switch_to_objects)
+        switch_but.rect = BUTTON_RECT.copy()
+        switch_but.rect.move_ip(MENU_LEFT, y)
+        widgets.append(switch_but)
+        y += switch_but.rect.height + MENU_PAD
+
         quit_but = Button('Quit', action=self.quit)
-        quit_but.rect = button_rect.copy()
+        quit_but.rect = BUTTON_RECT.copy()
         quit_but.rect.move_ip(MENU_LEFT, y)
-        self.add(quit_but)
+        widgets.append(quit_but)
+
+        self._dMenus['drawing'] = widgets
+
+    def _make_objects_menu(self):
+        widgets = []
+
+        # Add poly buttons
+        y = 15
+
+        edit_objs_but = Button('Edit Objects',
+                               action=self.level_widget.edit_objects)
+        edit_objs_but.rect = BUTTON_RECT.copy()
+        edit_objs_but.rect.move_ip(MENU_LEFT, y)
+        widgets.append(edit_objs_but)
+        y += MENU_BUTTON_HEIGHT + MENU_PAD
+
+        edir_enemies_but = Button('Edit Enemies',
+                                  action=self.level_widget.edit_enemies)
+        edir_enemies_but.rect = BUTTON_RECT.copy()
+        edir_enemies_but.rect.move_ip(MENU_LEFT, y)
+        widgets.append(edir_enemies_but)
+        y += MENU_BUTTON_HEIGHT + MENU_PAD
+
+        save_but = Button('Save Level', action=self.save)
+        save_but.rect = BUTTON_RECT.copy()
+        save_but.rect.move_ip(MENU_LEFT, y)
+        widgets.append(save_but)
+        y += MENU_BUTTON_HEIGHT + MENU_PAD
+
+        switch_but = Button('Switch to Drawing', action=self.switch_to_draw)
+        switch_but.rect = BUTTON_RECT.copy()
+        switch_but.rect.move_ip(MENU_LEFT, y)
+        widgets.append(switch_but)
+        y += switch_but.rect.height + MENU_PAD
+
+        quit_but = Button('Quit', action=self.quit)
+        quit_but.rect = BUTTON_RECT.copy()
+        quit_but.rect.move_ip(MENU_LEFT, y)
+        widgets.append(quit_but)
+
+        self._dMenus['objects'] = widgets
 
     def key_down(self, ev):
         if ev.key == pgl.K_ESCAPE:
@@ -445,13 +567,39 @@
             # display errors
             alert("Failed to save level.\n\n%s" % '\n'.join(messages))
 
+    def switch_to_draw(self):
+        if self._menu_mode != 'drawing':
+            self._clear_menu()
+            self._menu_mode = 'drawing'
+            self._populate_menu()
+
+    def switch_to_objects(self):
+        if self._menu_mode != 'objects':
+            self._clear_menu()
+            self._menu_mode = 'objects'
+            self._populate_menu()
+
+    def _clear_menu(self):
+        for widget in self._dMenus[self._menu_mode]:
+            self.remove(widget)
+
+    def _populate_menu(self):
+        self.level_widget.change_poly(None)
+        for widget in self._dMenus[self._menu_mode]:
+            self.add(widget)
+        self.invalidate()
+
     def mouse_move(self, ev):
         self.level_widget.mouse_move(ev)
 
     def draw(self, surface):
         # Update checkbox state
-        self.level_widget.set_objects(self.show_objs.value)
-        self.level_widget.set_enemies(self.show_enemies.value)
+        if self._menu_mode == 'drawing':
+            self.level_widget.set_objects(self.show_objs.value)
+            self.level_widget.set_enemies(self.show_enemies.value)
+        else:
+            self.level_widget.set_objects(True)
+            self.level_widget.set_enemies(True)
         super(EditorApp, self).draw(surface)