Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Moleri <pmoleri@pmoleri-laptop.(none)>2010-09-13 23:19:19 (GMT)
committer Pablo Moleri <pmoleri@pmoleri-laptop.(none)>2010-09-13 23:19:19 (GMT)
commitcbcf831725570e05dd9f44c5874b8aa2a3e26321 (patch)
treefd937b07ed5f78a15cc1479f76e088e9312284ab
Initial commit, really basic proof of concept.
-rw-r--r--Saludame.activity/activity.py43
-rw-r--r--Saludame.activity/activity/activity.info8
-rw-r--r--Saludame.activity/activity/saludame.svg41
-rw-r--r--Saludame.activity/animation.py111
-rw-r--r--Saludame.activity/assets/background/background.pngbin0 -> 62869 bytes
-rw-r--r--Saludame.activity/assets/background/background.svg228
-rw-r--r--Saludame.activity/assets/food/apple/12316860561101736632rg1024_apple.svg264
-rw-r--r--Saludame.activity/assets/food/apple/apple0000.pngbin0 -> 13460 bytes
-rw-r--r--Saludame.activity/assets/food/apple/apple0001.pngbin0 -> 10127 bytes
-rw-r--r--Saludame.activity/assets/food/apple/apple0002.pngbin0 -> 9560 bytes
-rw-r--r--Saludame.activity/assets/food/apple/apple0003.pngbin0 -> 8923 bytes
-rw-r--r--Saludame.activity/assets/food/apple/apple0004.pngbin0 -> 5658 bytes
-rw-r--r--Saludame.activity/assets/kid/kid.svg1705
-rw-r--r--Saludame.activity/assets/kid/kid01.pngbin0 -> 6687 bytes
-rw-r--r--Saludame.activity/assets/kid/kid02.pngbin0 -> 6699 bytes
-rw-r--r--Saludame.activity/assets/kid/kid03.pngbin0 -> 6694 bytes
-rw-r--r--Saludame.activity/assets/kid/kid04.pngbin0 -> 6699 bytes
-rw-r--r--Saludame.activity/assets/kid/kid05.pngbin0 -> 6695 bytes
-rw-r--r--Saludame.activity/assets/kid/kid06.pngbin0 -> 6688 bytes
-rw-r--r--Saludame.activity/assets/kid/kid07.pngbin0 -> 6699 bytes
-rw-r--r--Saludame.activity/assets/kid/kid08.pngbin0 -> 6699 bytes
-rw-r--r--Saludame.activity/assets/kid/kid09.pngbin0 -> 6699 bytes
-rw-r--r--Saludame.activity/assets/kid/kid10.pngbin0 -> 6688 bytes
-rw-r--r--Saludame.activity/assets/kid/kid11.pngbin0 -> 6695 bytes
-rw-r--r--Saludame.activity/assets/sound/blip.oggbin0 -> 4032 bytes
-rw-r--r--Saludame.activity/assets/sound/blip.wavbin0 -> 4102 bytes
-rw-r--r--Saludame.activity/game.py95
-rwxr-xr-xSaludame.activity/menu.py71
-rw-r--r--Saludame.activity/setup.py21
-rw-r--r--Saludame.activity/sugargame/__init__.py1
-rw-r--r--Saludame.activity/sugargame/canvas.py63
-rw-r--r--Saludame.activity/sugargame/event.py280
-rw-r--r--Saludame.activity/window.py128
33 files changed, 3059 insertions, 0 deletions
diff --git a/Saludame.activity/activity.py b/Saludame.activity/activity.py
new file mode 100644
index 0000000..b7a7e44
--- /dev/null
+++ b/Saludame.activity/activity.py
@@ -0,0 +1,43 @@
+# -*- coding: utf-8 -*-
+
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+from sugar.activity.activity import Activity, ActivityToolbox
+from sugargame.canvas import PygameCanvas
+import gtk
+import gobject
+
+from gettext import gettext as _
+
+import game
+
+class SaludameActivity(Activity):
+ ''' Clase llamada por sugar cuando se ejecuta la actividad.
+ El nombre de esta clase está señalada en el archivo activity/activity.info '''
+
+ def __init__(self, handle):
+ Activity.__init__(self, handle)
+
+ # Crea la barra de herramientas básica de Sugar
+ toolbox = ActivityToolbox(self)
+
+ activity_toolbar = toolbox.get_activity_toolbar()
+
+ self.game_toolbar = gtk.Toolbar()
+ toolbox.add_toolbar(_("Game"), self.game_toolbar)
+ self.game_toolbar.show()
+
+ self.set_toolbox(toolbox)
+ toolbox.show()
+
+ # Create the canvas to embbed pygame
+ self.pygame_canvas = PygameCanvas(self, False)
+ self.set_canvas(self.pygame_canvas)
+ self.show_all()
+
+ # Start pygame
+ self.pygame_canvas.run_pygame(lambda:game.main(True)) # Indico que llame a la función local para iniciar el juego pygame
+
+ def canvas_resize_cb(self):
+ pass
diff --git a/Saludame.activity/activity/activity.info b/Saludame.activity/activity/activity.info
new file mode 100644
index 0000000..bea85a1
--- /dev/null
+++ b/Saludame.activity/activity/activity.info
@@ -0,0 +1,8 @@
+[Activity]
+name = Saludame
+service_name = org.ceibaljam.Saludame
+class = activity.SaludameActivity
+icon = saludame
+activity_version = 1
+show_launcher = yes
+
diff --git a/Saludame.activity/activity/saludame.svg b/Saludame.activity/activity/saludame.svg
new file mode 100644
index 0000000..0554ff9
--- /dev/null
+++ b/Saludame.activity/activity/saludame.svg
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY stroke_color "#666666">
+ <!ENTITY fill_color "#FFFFFF">
+]>
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.1"
+ width="131.73584"
+ height="150.11812"
+ id="svg2918"
+ xml:space="preserve"><defs
+ id="defs2922"><clipPath
+ id="clipPath2940"><path
+ d="M 0,600 800,600 800,0 0,0 0,600 z"
+ id="path2942" /></clipPath></defs><g
+ transform="matrix(1.25,0,0,-1.25,-196.09669,476.84693)"
+ id="g2928"><g
+ id="g3824"><g
+ transform="translate(256.0039,331.5659)"
+ id="g2944"><path
+ d="m 0,0 c 0,0 -9.406,14.952 -24.357,14.471 -14.503,-0.468 -15.846,-1.218 -22.076,-1.877 -6.229,0.659 -7.572,1.409 -22.075,1.877 C -83.459,14.952 -92.864,0 -92.864,0 c 0,0 -18.524,-28.485 10.852,-61.251 12.334,-13.757 23.735,-6.62 35.579,-6.286 11.845,-0.334 23.246,-7.471 35.581,6.286 C 18.523,-28.485 0,0 0,0"
+ id="path2946"
+ style="fill:none;stroke:&stroke_color;;stroke-opacity:1" /></g><g
+ transform="translate(211.5308,342.4219)"
+ id="g2948"><path
+ d="m 0,0 c 0,0 -1.206,13.506 7.716,15.436 2.654,0.241 3.86,0 2.654,2.894 C 8.923,18.812 7.717,20.018 7.476,21.225 5.788,21.706 6.016,20.018 5.419,18.571 4.823,17.124 -2.834,15.194 -2.141,0 -0.951,-0.28 0,0 0,0"
+ id="path2950"
+ style="fill:&fill_color;;stroke:&stroke_color;;stroke-opacity:1" /></g><g
+ transform="translate(210.1416,346.9897)"
+ id="g2952"
+ style="stroke-width:0.80000001;stroke-miterlimit:4;stroke-dasharray:none"><path
+ d="m 0,0 c 0,0 2.235,12.644 -3.045,16.272 -5.279,3.631 -21.217,11.319 -22.676,16.742 -1.459,5.426 -0.053,-11.204 0.662,-16.576 0.716,-5.371 -0.107,-10.396 9.63,-14.756 C -2.82,-3.968 0,0 0,0"
+ id="path2954"
+ style="fill:none;stroke:&stroke_color;;stroke-width:0.80000001;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="translate(198.6616,336.8896)"
+ id="g3020"><path
+ d="m 0,0 c 0,0 -12.223,1.579 -17.915,-2.653 -9.405,-6.993 -12.202,-14.265 -13.131,-23.701 -0.599,-6.077 -0.056,-15.556 -3.579,-7.717 -1.977,4.398 -2.416,23.532 6.753,32.553 9.999,9.841 17.604,7.023 26.768,5.079 C 8.06,1.618 1.185,-0.219 0,0"
+ id="path3022"
+ style="fill:#e96060;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g></g></g></svg>
diff --git a/Saludame.activity/animation.py b/Saludame.activity/animation.py
new file mode 100644
index 0000000..9460261
--- /dev/null
+++ b/Saludame.activity/animation.py
@@ -0,0 +1,111 @@
+# -*- coding: utf-8 -*-
+
+import pygame
+import os
+
+KID_PATH = os.path.normpath("assets/kid")
+KID_PREFIX, KID_SUFIX = "kid", ".png"
+
+COLORS_HAIR = ("#803300", "#552200")
+COLORS_HAIR_NEW = [("#000000", "#101010"), ("#FFFF00", "#DDDD00"), ("#803300", "#552200")]
+
+COLORS_EYES = ("#078002",)
+COLORS_EYES_NEW = [("#008000",), ("#2222FF",), ("#000000",)]
+
+GRAY = pygame.Color("gray")
+BLACK = pygame.Color("black")
+
+class Kid:
+
+ def __init__(self, rect, background, frame_rate):
+ self.index = 1
+ self.rect = rect
+ self.frame_rate = frame_rate
+ self.color_index = 0
+ self.background = background
+
+ def draw(self, screen):
+ file_nro = str(self.index)
+ if len(file_nro) == 1:
+ file_nro = "0" + file_nro
+
+ file = os.path.join(KID_PATH, KID_PREFIX + file_nro + KID_SUFIX)
+ self.sprite = pygame.image.load(file)
+
+ self.change_color(COLORS_HAIR + COLORS_EYES, COLORS_HAIR_NEW[self.color_index] + COLORS_EYES_NEW[self.color_index])
+
+ screen.blit(self.background, self.rect)
+ screen.blit(self.sprite, self.rect)
+
+ self.index = (self.index % 11) + 1
+ if self.index == 1:
+ self.color_index = (self.color_index + 1) % 3
+
+ return [self.rect]
+
+
+ def change_color(self, old, new):
+ # No funciona en pygame 1.8.0
+ #image_pixel_array = pygame.PixelArray(self.sprite)
+ #image_pixel_array.replace(old_color, new_color)
+
+ index = 0
+ for old_color_text in old:
+ old_color = pygame.Color(old_color_text)
+ new_color = pygame.Color(new[index])
+ mapped_int = self.sprite.map_rgb(old_color)
+ self.sprite.set_palette_at(mapped_int, new_color[0:3])
+
+ index += 1
+
+BLIP_PATH = os.path.normpath("assets/sound/blip.ogg")
+APPLE_PATH = os.path.normpath("assets/food/apple")
+
+class Food:
+
+ def __init__(self, path, rect, frame_rate):
+ self.path = path
+ self.frame_rate = frame_rate
+ self.rect = rect
+
+ dirList = os.listdir(path)
+ dirList.sort()
+ self.file_list = [os.path.join(APPLE_PATH, fname) for fname in dirList if '.png' in fname]
+
+ self.index = 0
+
+ self.blip = pygame.mixer.Sound(BLIP_PATH)
+
+
+ def draw(self, screen):
+ file = self.file_list[self.index]
+ self.sprite = pygame.image.load(file).convert_alpha()
+
+ screen.fill(BLACK, self.rect)
+ screen.blit(self.sprite, self.rect)
+
+ self.index = (self.index + 1) % len(self.file_list)
+ self.blip.play()
+ return [self.rect]
+
+class Apple(Food):
+
+ def __init__(self, rect, frame_rate):
+ Food.__init__(self, APPLE_PATH, rect, frame_rate)
+
+
+class FPS:
+
+ def __init__(self, rect, frame_rate, clock):
+ self.rect = rect
+ self.frame_rate = frame_rate
+ self.clock = clock
+
+ self.font = pygame.font.Font(None, 16)
+
+ def draw(self, screen):
+ screen.fill(BLACK, self.rect)
+ text = str(round(self.clock.get_fps()))
+ text_surf = self.font.render(text, False, (255,255,255))
+ screen.blit(text_surf, self.rect)
+ return [self.rect]
diff --git a/Saludame.activity/assets/background/background.png b/Saludame.activity/assets/background/background.png
new file mode 100644
index 0000000..742ce79
--- /dev/null
+++ b/Saludame.activity/assets/background/background.png
Binary files differ
diff --git a/Saludame.activity/assets/background/background.svg b/Saludame.activity/assets/background/background.svg
new file mode 100644
index 0000000..c0f2209
--- /dev/null
+++ b/Saludame.activity/assets/background/background.svg
@@ -0,0 +1,228 @@
+<?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://web.resource.org/cc/" 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="2271.4375" height="1665.7122" id="svg2" sodipodi:version="0.32" inkscape:version="0.45.1" sodipodi:docbase="/Users/johnolsen/Desktop" sodipodi:docname="carlitos_Cartoon_Landscape.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0">
+ <defs id="defs4">
+ <linearGradient id="linearGradient4641">
+ <stop style="stop-color: rgb(252, 175, 62); stop-opacity: 1;" offset="0" id="stop4643"/>
+ <stop style="stop-color: rgb(255, 206, 134); stop-opacity: 1;" offset="1" id="stop4645"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4368">
+ <stop id="stop4370" offset="0" style="stop-color: rgb(105, 208, 7); stop-opacity: 1;"/>
+ <stop id="stop4372" offset="1" style="stop-color: rgb(78, 154, 6); stop-opacity: 0;"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4336">
+ <stop style="stop-color: rgb(69, 137, 5); stop-opacity: 1;" offset="0" id="stop4338"/>
+ <stop style="stop-color: rgb(78, 154, 6); stop-opacity: 0;" offset="1" id="stop4340"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4328">
+ <stop style="stop-color: rgb(143, 89, 2); stop-opacity: 1;" offset="0" id="stop4330"/>
+ <stop style="stop-color: rgb(114, 71, 1); stop-opacity: 1;" offset="1" id="stop4332"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4238">
+ <stop style="stop-color: rgb(85, 168, 0); stop-opacity: 1;" offset="0" id="stop4240"/>
+ <stop style="stop-color: rgb(116, 228, 0); stop-opacity: 1;" offset="1" id="stop4242"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4191">
+ <stop style="stop-color: rgb(0, 121, 0); stop-opacity: 1;" offset="0" id="stop4193"/>
+ <stop style="stop-color: rgb(0, 132, 0); stop-opacity: 0;" offset="1" id="stop4195"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4180">
+ <stop style="stop-color: rgb(0, 164, 0); stop-opacity: 1;" offset="0" id="stop4182"/>
+ <stop style="stop-color: rgb(0, 164, 0); stop-opacity: 0;" offset="1" id="stop4184"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4103">
+ <stop style="stop-color: rgb(0, 172, 244); stop-opacity: 1;" offset="0" id="stop4105"/>
+ <stop style="stop-color: rgb(166, 229, 255); stop-opacity: 1;" offset="1" id="stop4107"/>
+ </linearGradient>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4103" id="linearGradient4109" x1="345.71426" y1="-241.92688" x2="345.71426" y2="978.1759" gradientUnits="userSpaceOnUse" gradientTransform="translate(0, -153.543)"/>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4191" id="linearGradient4200" gradientUnits="userSpaceOnUse" x1="-242.85715" y1="405.21933" x2="-248.57143" y2="994.63672"/>
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath4234">
+ <path style="opacity: 1; fill: rgb(156, 240, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M -1433.2321,-115.47321 C -1444.8877,-115.47321 -1454.2946,-109.72107 -1454.2946,-102.59821 L -1454.2946,727.43304 C -1380.613,717.5258 -1300.4421,712.37054 -1217.1384,712.37054 C -873.32127,712.37053 -732.83268,756.48802 -394.29464,948.08929 C -51.43751,1142.135 380.97336,1409.5133 -1285.7009,1412.3705 C -1345.8057,1412.4738 -1402.1848,1402.9724 -1454.2946,1386.4331 L -1454.2946,1537.4018 C -1454.2946,1544.5247 -1444.8877,1550.2458 -1433.2321,1550.2455 L 796.11166,1550.2455 C 807.76716,1550.2455 817.14286,1544.5246 817.14286,1537.4018 L 817.14286,897.40179 L 817.14286,829.99554 L 817.14286,-102.59821 C 817.14286,-109.72107 807.76706,-115.47321 796.11166,-115.47321 L -1433.2321,-115.47321 z " id="path4236"/>
+ </clipPath>
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath4253">
+ <path style="opacity: 1; fill: url(&quot;#linearGradient4257&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M -458.94643,-138.33036 C -470.60201,-138.33036 -480.00893,-132.57822 -480.00893,-125.45536 L -480.00893,704.57589 L -480.00893,874.54464 L -480.00893,1514.5446 C -480.00893,1521.6675 -470.60199,1527.3885 -458.94643,1527.3883 L 1770.3974,1527.3883 C 1782.0529,1527.3883 1791.4286,1521.6674 1791.4286,1514.5446 L 1791.4286,874.54464 L 1791.4286,807.13839 L 1791.4286,-125.45536 C 1791.4286,-132.57822 1782.0529,-138.33036 1770.3974,-138.33036 L -458.94643,-138.33036 z " id="path4255"/>
+ </clipPath>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4103" id="linearGradient4257" gradientUnits="userSpaceOnUse" gradientTransform="translate(251.429, -90.6861)" x1="345.71426" y1="-241.92688" x2="345.71426" y2="978.1759"/>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4180" id="linearGradient4261" gradientUnits="userSpaceOnUse" x1="-242.85715" y1="605.08643" x2="-242.85715" y2="1096.6478"/>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4238" id="linearGradient4263" gradientUnits="userSpaceOnUse" x1="404.28125" y1="543.41498" x2="428.5249" y2="1831.1267"/>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4336" id="linearGradient4382" gradientUnits="userSpaceOnUse" x1="-664.67871" y1="1024.9598" x2="-734.84564" y2="762.32013"/>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4368" id="linearGradient4384" gradientUnits="userSpaceOnUse" x1="-1133.0326" y1="223.79074" x2="-1071.7157" y2="463.79074"/>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4368" id="linearGradient4386" gradientUnits="userSpaceOnUse" x1="-1521.5546" y1="326.64789" x2="-1141.5403" y2="806.80164"/>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4336" id="linearGradient4388" gradientUnits="userSpaceOnUse" x1="-1381.4706" y1="990.43616" x2="-983.90717" y2="651.0249"/>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4328" id="linearGradient4390" gradientUnits="userSpaceOnUse" x1="-2329.5454" y1="1589.9091" x2="-2157.5569" y2="1589.9091"/>
+ <filter inkscape:collect="always" x="-0.19116105" width="1.3823221" y="-0.63012344" height="2.2602468" id="filter4635">
+ <feGaussianBlur inkscape:collect="always" stdDeviation="40.507936" id="feGaussianBlur4637"/>
+ </filter>
+ <radialGradient inkscape:collect="always" xlink:href="#linearGradient4641" id="radialGradient4647" cx="-640" cy="-27.637817" fx="-640" fy="-27.637817" r="284.19949" gradientTransform="matrix(1.38966, 0.707173, -0.555426, 1.09147, 234.034, 455.119)" gradientUnits="userSpaceOnUse"/>
+ <filter inkscape:collect="always" x="-0.24816327" width="1.4963264" y="-0.26434782" height="1.5286956" id="filter4962">
+ <feGaussianBlur inkscape:collect="always" stdDeviation="57.904762" id="feGaussianBlur4964"/>
+ </filter>
+ <filter inkscape:collect="always" x="-0.13033217" width="1.2606643" y="-0.29791084" height="1.5958217" id="filter5183">
+ <feGaussianBlur inkscape:collect="always" stdDeviation="24.825904" id="feGaussianBlur5185"/>
+ </filter>
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath5381">
+ <path style="opacity: 0.893333; fill: rgb(253, 253, 253); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 66.775486,-44.781199 C 18.262986,-44.781199 -23.501514,-32.851269 -42.109054,-15.752199 C -46.377914,-16.047019 -50.718544,-16.209809 -55.128924,-16.209769 C -113.02051,-16.209769 -160.01339,10.306087 -160.01339,42.97548 C -160.01339,71.56698 -124.01781,95.440051 -76.227394,100.95537 C -61.379114,131.8748 5.0531863,155.21877 84.697386,155.2188 C 175.24579,155.2188 248.73999,125.05055 248.73999,87.875016 L 248.62229,86.792444 C 277.95599,77.560408 297.14289,62.290908 297.14289,45.017873 L 296.72129,40.63173 C 291.62069,14.122372 242.75389,-5.9889126 183.39549,-6.0089126 C 171.91539,-28.442309 123.98999,-44.781239 66.775486,-44.781199 z " id="path5383"/>
+ </clipPath>
+ <filter inkscape:collect="always" x="-0.095725909" width="1.1914518" y="-0.21880852" height="1.4376169" id="filter5445">
+ <feGaussianBlur inkscape:collect="always" stdDeviation="18.234042" id="feGaussianBlur5447"/>
+ </filter>
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath5495">
+ <path id="path5497" d="M 1101.0612,-136.20977 C 1052.5487,-136.20977 1010.7842,-124.27984 992.17666,-107.18077 C 987.9078,-107.47559 983.56717,-107.63838 979.15679,-107.63834 C 921.2652,-107.63834 874.27232,-81.122484 874.27232,-48.453091 C 874.27232,-19.861591 910.2679,4.0114801 958.05832,9.5268016 C 972.9066,40.44623 1039.3389,63.790194 1118.9831,63.79023 C 1209.5315,63.79023 1283.0257,33.62198 1283.0257,-3.5535556 L 1282.908,-4.636127 C 1312.2417,-13.868163 1331.4286,-29.137663 1331.4286,-46.410698 L 1331.007,-50.796841 C 1325.9064,-77.306199 1277.0396,-97.417484 1217.6812,-97.437484 C 1206.2011,-119.87088 1158.2757,-136.20981 1101.0612,-136.20977 z " style="opacity: 0.893333; fill: rgb(253, 253, 253); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ </clipPath>
+ <filter inkscape:collect="always" x="-0.095832475" width="1.1916651" y="-0.21905209" height="1.4381042" id="filter5575">
+ <feGaussianBlur inkscape:collect="always" stdDeviation="18.254341" id="feGaussianBlur5577"/>
+ </filter>
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath5671">
+ <rect style="opacity: 1; fill: url(&quot;#linearGradient5675&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; display: inline;" id="rect5673" width="3815.5286" height="1722.9872" x="-791.15668" y="-243.84096" rx="35.341087" ry="21.597332"/>
+ </clipPath>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4103" id="linearGradient5675" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.67979, 0, 0, 1.67979, 437.492, -163.819)" x1="345.71426" y1="-241.92688" x2="345.71426" y2="978.1759"/>
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath5677">
+ <rect ry="20.374983" rx="33.340881" y="-231.60446" x="-782.60162" height="1625.4709" width="3599.5803" id="rect5679" style="opacity: 1; fill: url(&quot;#linearGradient5681&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; display: inline;"/>
+ </clipPath>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4103" id="linearGradient5681" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.58472, 0, 0, 1.58472, 376.509, -156.112)" x1="345.71426" y1="-241.92688" x2="345.71426" y2="978.1759"/>
+ </defs>
+ <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.175" inkscape:cx="1516.3052" inkscape:cy="-40.374307" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1018" inkscape:window-height="715" inkscape:window-x="0" inkscape:window-y="0" showguides="true" inkscape:guide-bbox="true" borderlayer="true"/>
+ <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>Summer Landscape</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Carlos Asmat</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>summer</rdf:li>
+ <rdf:li>green</rdf:li>
+ <rdf:li>landscape</rdf:li>
+ <rdf:li>tree</rdf:li>
+ <rdf:li>clouds</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:description>A simple summer landscape featuring green grass, a blue sky and white clouds.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g inkscape:groupmode="layer" id="layer2" inkscape:label="background" style="display: inline;" transform="translate(731.438, 201.181)">
+ <rect style="opacity: 1; fill: url(&quot;#linearGradient4109&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="rect2160" width="2271.4285" height="1025.7142" x="-731.42859" y="-201.181" rx="21.03896" ry="12.857142"/>
+ <path style="fill: url(&quot;#linearGradient4263&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 480,603.78125 C 264.82844,603.78125 100.77847,638.02202 -26.1875,690.1875 C -165.88025,641.26146 -296.41173,626.65624 -494.28125,626.65625 C -577.58416,626.65625 -657.75688,631.8113 -731.4375,641.71875 L -731.4375,1451.6875 C -731.4375,1458.8104 -722.03056,1464.5313 -710.375,1464.5312 L 1518.9688,1464.5312 C 1530.6243,1464.5312 1540,1458.8103 1540,1451.6875 L 1540,744.28125 C 1372.2567,745.2097 1205.8213,747.45509 1040.875,751 C 872.82748,687.1162 736.8416,603.78126 480,603.78125 z " id="path4202"/>
+ <path transform="translate(722.857, -85.7143)" style="fill: url(&quot;#linearGradient4200&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 505.71426,890.93359 C 779.37024,942.3124 4429.1607,1318.7496 -240,1266.6479 C -4901.0794,1214.5462 -1027.9364,953.26413 -939.99997,885.2193 C -799.99997,776.88788 -586.67428,689.50502 -242.85715,689.50502 C 100.95998,689.50502 228.21701,838.83359 505.71426,890.93359 z " id="path4113" sodipodi:nodetypes="czszz" clip-path="url(#clipPath4234)"/>
+ <path transform="translate(-251.429, -62.8571)" style="fill: url(&quot;#linearGradient4261&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1; display: inline;" d="M 579.99997,925.2193 C 922.85711,1119.265 1355.2457,1386.6479 -311.42858,1389.5051 C -655.2452,1390.0955 -876.94392,1076.8391 -877.14283,925.2193 C -877.33326,777.20419 -586.67428,689.50502 -242.85715,689.50502 C 100.95998,689.50502 241.46193,733.61804 579.99997,925.2193 z " id="path4111" sodipodi:nodetypes="csssz" clip-path="url(#clipPath4253)"/>
+ </g>
+ <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" style="display: inline;" transform="translate(731.438, 201.181)">
+ <path transform="matrix(-1.39999, 0, 0, 1, 175.983, 891.429)" style="opacity: 0.0311111; fill: rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; filter: url(&quot;#filter5183&quot;);" d="M 66.775486,-44.781199 C 18.262986,-44.781199 -23.501514,-32.851269 -42.109054,-15.752199 C -46.377914,-16.047019 -50.718544,-16.209809 -55.128924,-16.209769 C -113.02051,-16.209769 -160.01339,10.306087 -160.01339,42.97548 C -160.01339,71.56698 -124.01781,95.440051 -76.227394,100.95537 C -61.379114,131.8748 5.0531863,155.21877 84.697386,155.2188 C 175.24579,155.2188 248.73999,125.05055 248.73999,87.875016 L 248.62229,86.792444 C 277.95599,77.560408 297.14289,62.290908 297.14289,45.017873 L 296.72129,40.63173 C 291.62069,14.122372 242.75389,-5.9889126 183.39549,-6.0089126 C 171.91539,-28.442309 123.98999,-44.781239 66.775486,-44.781199 z " id="path5189"/>
+ <path transform="matrix(0.631026, 0, 0, 0.631026, -237.587, -55.0326)" sodipodi:open="true" sodipodi:end="6.1971643" sodipodi:start="0" d="M -360,-27.637817 A 280,262.85715 0 1 1 -361.03531,-50.221179" sodipodi:ry="262.85715" sodipodi:rx="280" sodipodi:cy="-27.637817" sodipodi:cx="-640" id="path4649" style="opacity: 0.288889; fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 8.39896; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; filter: url(&quot;#filter4962&quot;);" sodipodi:type="arc" clip-path="url(#clipPath5677)"/>
+ <g id="g4374" transform="matrix(0.545965, 0, 0, 0.545965, 940.019, 86.9666)">
+ <path id="path4314" d="M -2312.1875,385.40625 C -2407.0628,385.40625 -2490.5953,428.54949 -2539.125,493.8125 C -2691.4372,520.34488 -2806.4688,639.58385 -2806.4688,782.5625 C -2806.4688,859.39039 -2773.2372,929.35422 -2718.875,981.78125 C -2720.1048,992.36099 -2720.75,1003.1184 -2720.75,1014 C -2720.75,1178.0229 -2577.39,1311.125 -2400.75,1311.125 C -2313.6375,1311.125 -2234.6273,1278.7422 -2176.9062,1226.25 C -2137.6759,1244.105 -2094.5475,1254 -2049.3125,1254 C -1867.9411,1254 -1720.75,1095.2532 -1720.75,899.6875 C -1720.75,704.12179 -1867.9411,545.40627 -2049.3125,545.40625 C -2051.6151,545.40625 -2053.9274,545.44909 -2056.2188,545.5 C -2093.4861,452.28106 -2194.0513,385.40624 -2312.1875,385.40625 z " style="opacity: 1; fill: rgb(78, 154, 6); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path transform="translate(-1212.18, 161.624)" d="M -508.57144 738.07648 A 328.57144 354.28571 0 1 1 -1165.7143,738.07648 A 328.57144 354.28571 0 1 1 -508.57144 738.07648 z" sodipodi:ry="354.28571" sodipodi:rx="328.57144" sodipodi:cy="738.07648" sodipodi:cx="-837.14288" id="path4305" style="opacity: 1; fill: url(&quot;#linearGradient4382&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="arc"/>
+ <path transform="translate(-1212.18, 161.624)" d="M -828.57144 463.79074 A 271.42856 240 0 1 1 -1371.4286,463.79074 A 271.42856 240 0 1 1 -828.57144 463.79074 z" sodipodi:ry="240" sodipodi:rx="271.42856" sodipodi:cy="463.79074" sodipodi:cx="-1100" id="path4301" style="opacity: 1; fill: url(&quot;#linearGradient4384&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="arc"/>
+ <path transform="translate(-1212.18, 161.624)" d="M -931.42862 620.93359 A 331.42856 294.28571 0 1 1 -1594.2857,620.93359 A 331.42856 294.28571 0 1 1 -931.42862 620.93359 z" sodipodi:ry="294.28571" sodipodi:rx="331.42856" sodipodi:cy="620.93359" sodipodi:cx="-1262.8572" id="path4303" style="opacity: 1; fill: url(&quot;#linearGradient4386&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="arc"/>
+ <path transform="translate(-1315.04, 173.053)" d="M -765.71423 840.93359 A 320 297.14285 0 1 1 -1405.7142,840.93359 A 320 297.14285 0 1 1 -765.71423 840.93359 z" sodipodi:ry="297.14285" sodipodi:rx="320" sodipodi:cy="840.93359" sodipodi:cx="-1085.7142" id="path4307" style="opacity: 0.311111; fill: url(&quot;#linearGradient4388&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="arc"/>
+ <path sodipodi:nodetypes="ccccc" id="rect4323" d="M -2416.285,1137.215 C -2248.5997,1416.0171 -2265.7723,1062.4637 -2177.889,1181.6617 C -2239.5084,1531.1745 -2127.3814,1662.4943 -2165.7672,2030.1899 C -2289.0058,2074.6366 -2275.8738,1983.7229 -2501.1378,2005.9462 C -2508.2089,1664.5146 -2418.3052,1379.6517 -2416.285,1137.215 z " style="fill: url(&quot;#linearGradient4390&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ </g>
+ <path sodipodi:nodetypes="ccccccscccccszccczcczsc" id="path7786" d="M -553.80313,1101.6263 C -557.98653,1103.053 -559.0329,1106.3293 -562.54541,1111.2287 C -567.11629,1119.6366 -576.3747,1144.818 -575.33299,1148.9355 C -573.95237,1156.3529 -562.32119,1114.3232 -553.80313,1101.6263 z M -632.33952,1119.9612 C -622.41091,1150.2629 -621.47633,1152.5329 -613.73299,1152.0934 C -615.37744,1146.5021 -620.09841,1141.9483 -623.41123,1136.6353 C -626.94239,1130.9716 -628.86179,1120.3801 -632.33952,1119.9612 z M -597.44061,1121.066 C -608.74071,1140.8645 -609.94761,1147.995 -608.04428,1150.2246 C -604.56405,1152.3768 -605.32373,1146.7593 -597.44061,1121.066 z M -576.29988,1125.3117 C -579.08181,1124.552 -581.10842,1131.4094 -582.21419,1137.0183 C -585.03746,1151.3395 -585.06944,1149.2727 -583.16631,1150.4865 C -580.54246,1152.1598 -580.55894,1137.547 -576.29988,1125.3117 z M -557.58781,1123.9966 C -560.49962,1124.1364 -562.0142,1129.9378 -564.05605,1135.2926 C -566.10671,1145.5036 -572.07538,1151.8463 -567.86584,1152.2343 C -563.68064,1152.6199 -560.78514,1136.116 -557.58781,1123.9966 z M -588.79623,1127.9244 C -597.97882,1144.3429 -599.94284,1149.3788 -596.25449,1150.0568 C -593.87659,1150.4938 -593.68888,1146.4818 -590.97407,1139.7363 C -589.22538,1135.3912 -587.04516,1131.5839 -588.79623,1127.9244 z " style="opacity: 0.698; fill: rgb(30, 158, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <g id="g7640" transform="translate(-21.4286, -365.714)">
+ <path transform="matrix(1.75, 0, 0, 1.03636, 432.134, 492.033)" d="M -485.71429 1150.9336 A 17.142857 15.714286 0 1 1 -520,1150.9336 A 17.142857 15.714286 0 1 1 -485.71429 1150.9336 z" sodipodi:ry="15.714286" sodipodi:rx="17.142857" sodipodi:cy="1150.9336" sodipodi:cx="-502.85715" id="path4271" style="fill: rgb(173, 127, 168); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; display: inline;" sodipodi:type="arc"/>
+ <path transform="matrix(0.153952, 0, 0, 0.095273, -814.707, 1439.07)" sodipodi:type="star" style="fill: rgb(206, 92, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path5606" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="112.86618" sodipodi:r2="87.586037" sodipodi:arg1="0.77274061" sodipodi:arg2="1.285516" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z "/>
+ <path transform="matrix(0.190687, 0, 0, 0.0978986, -929.806, 1473.25)" sodipodi:type="star" style="fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path5604" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="112.86618" sodipodi:r2="96.218704" sodipodi:arg1="0.77274061" sodipodi:arg2="1.2963394" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1804.4073,906.05549 C 1793.1025,918.09508 1771.5149,920.28783 1755.4628,924.50843 C 1739.4106,928.72902 1715.9084,948.9709 1700.105,944.02625 C 1684.3016,939.0816 1669.9044,914.72418 1658.3953,903.12166 C 1646.8863,891.51914 1625.9992,879.7295 1621.128,863.84379 C 1616.2568,847.95808 1631.9165,823.49182 1635.738,807.81229 C 1639.5594,792.13276 1635.155,761.49186 1646.9428,750.18758 C 1658.7307,738.8833 1687.7864,745.83399 1703.1101,740.77832 C 1718.4337,735.72264 1733.2787,718.1793 1749.213,722.28525 C 1765.1472,726.3912 1779.4664,751.07858 1790.9226,763.18985 C 1802.3789,775.30111 1832.4032,781.26491 1837.5974,796.75007 C 1842.7916,812.23523 1826.6255,837.74355 1822.3359,853.20268 C 1818.0464,868.6618 1815.7121,894.0159 1804.4073,906.05549 z "/>
+ <path d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z " inkscape:randomized="0.066" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2117437" sodipodi:arg1="0.68814496" sodipodi:r2="96.218704" sodipodi:r1="117.69902" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path5600" style="fill: rgb(252, 201, 22); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.155633, 0, 0, 0.071967, -784.809, 1467.44)"/>
+ <path d="M 1818.078,909.67573 C 1807.1172,922.61264 1776.1042,909.28717 1760.5847,915.80307 C 1745.0651,922.31897 1718.084,953.62097 1701.3238,949.93066 C 1684.5637,946.24035 1674.9424,914.7845 1661.2352,904.09389 C 1647.5281,893.40328 1620.822,892.0233 1614.4969,876.14318 C 1608.1719,860.26307 1624.5461,828.19897 1628.0453,811.58183 C 1631.5444,794.96469 1620.8123,765.39638 1631.6921,751.93327 C 1642.5718,738.47017 1674.4828,741.6683 1690.6352,736.57928 C 1706.7876,731.49025 1725.6971,709.39699 1742.6294,712.20086 C 1759.5617,715.00473 1774.2569,742.52685 1788.0244,752.82553 C 1801.7918,763.12422 1829.792,772.22081 1836.7232,788.02776 C 1843.6544,803.83471 1825.0327,824.11215 1822.8134,841.10331 C 1820.594,858.09446 1829.0389,896.73881 1818.078,909.67573 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2117437" sodipodi:arg1="0.68814496" sodipodi:r2="96.218704" sodipodi:r1="117.69902" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path5598" style="fill: rgb(173, 127, 168); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.175384, 0, 0, 0.10368, -869.202, 1451.48)"/>
+ <path d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.285516" sodipodi:arg1="0.77274061" sodipodi:r2="87.586037" sodipodi:r1="112.86618" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path5594" style="fill: rgb(206, 92, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.245771, 0, 0, 0.140189, -999.917, 1454.5)"/>
+ <path transform="matrix(0.207062, 0, 0, 0.10368, -901.016, 1475.76)" sodipodi:type="star" style="fill: rgb(52, 101, 164); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path5592" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="117.69902" sodipodi:r2="96.218704" sodipodi:arg1="0.68814496" sodipodi:arg2="1.2117437" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1818.078,909.67573 C 1807.1172,922.61264 1776.1042,909.28717 1760.5847,915.80307 C 1745.0651,922.31897 1718.084,953.62097 1701.3238,949.93066 C 1684.5637,946.24035 1674.9424,914.7845 1661.2352,904.09389 C 1647.5281,893.40328 1620.822,892.0233 1614.4969,876.14318 C 1608.1719,860.26307 1624.5461,828.19897 1628.0453,811.58183 C 1631.5444,794.96469 1620.8123,765.39638 1631.6921,751.93327 C 1642.5718,738.47017 1674.4828,741.6683 1690.6352,736.57928 C 1706.7876,731.49025 1725.6971,709.39699 1742.6294,712.20086 C 1759.5617,715.00473 1774.2569,742.52685 1788.0244,752.82553 C 1801.7918,763.12422 1829.792,772.22081 1836.7232,788.02776 C 1843.6544,803.83471 1825.0327,824.11215 1822.8134,841.10331 C 1820.594,858.09446 1829.0389,896.73881 1818.078,909.67573 z "/>
+ <path transform="matrix(0.247001, 0, 0, 0.1163, -950.711, 1510.22)" sodipodi:type="star" style="fill: rgb(252, 175, 62); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path5590" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="117.69902" sodipodi:r2="96.218704" sodipodi:arg1="0.68814496" sodipodi:arg2="1.2117437" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.066" d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z "/>
+ <path transform="matrix(0.291681, 0, 0, 0.172271, -979.307, 1483.48)" sodipodi:type="star" style="fill: rgb(204, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path5586" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="112.86618" sodipodi:r2="87.586037" sodipodi:arg1="0.77274061" sodipodi:arg2="1.285516" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z "/>
+ <path d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z " inkscape:randomized="0.066" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2117437" sodipodi:arg1="0.68814496" sodipodi:r2="96.218704" sodipodi:r1="117.69902" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path5582" style="fill: rgb(252, 175, 62); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.287959, 0, 0, 0.136989, -1023.18, 1551.22)"/>
+ <path d="M 1818.078,909.67573 C 1807.1172,922.61264 1776.1042,909.28717 1760.5847,915.80307 C 1745.0651,922.31897 1718.084,953.62097 1701.3238,949.93066 C 1684.5637,946.24035 1674.9424,914.7845 1661.2352,904.09389 C 1647.5281,893.40328 1620.822,892.0233 1614.4969,876.14318 C 1608.1719,860.26307 1624.5461,828.19897 1628.0453,811.58183 C 1631.5444,794.96469 1620.8123,765.39638 1631.6921,751.93327 C 1642.5718,738.47017 1674.4828,741.6683 1690.6352,736.57928 C 1706.7876,731.49025 1725.6971,709.39699 1742.6294,712.20086 C 1759.5617,715.00473 1774.2569,742.52685 1788.0244,752.82553 C 1801.7918,763.12422 1829.792,772.22081 1836.7232,788.02776 C 1843.6544,803.83471 1825.0327,824.11215 1822.8134,841.10331 C 1820.594,858.09446 1829.0389,896.73881 1818.078,909.67573 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2117437" sodipodi:arg1="0.68814496" sodipodi:r2="96.218704" sodipodi:r1="117.69902" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path5576" style="fill: rgb(173, 127, 168); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.273669, 0, 0, 0.145649, -917.028, 1561.6)"/>
+ <path transform="matrix(0.324768, 0, 0, 0.171526, -1043.47, 1544.4)" sodipodi:type="star" style="fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path5574" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="112.86618" sodipodi:r2="96.218704" sodipodi:arg1="0.77274061" sodipodi:arg2="1.2963394" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1804.4073,906.05549 C 1793.1025,918.09508 1771.5149,920.28783 1755.4628,924.50843 C 1739.4106,928.72902 1715.9084,948.9709 1700.105,944.02625 C 1684.3016,939.0816 1669.9044,914.72418 1658.3953,903.12166 C 1646.8863,891.51914 1625.9992,879.7295 1621.128,863.84379 C 1616.2568,847.95808 1631.9165,823.49182 1635.738,807.81229 C 1639.5594,792.13276 1635.155,761.49186 1646.9428,750.18758 C 1658.7307,738.8833 1687.7864,745.83399 1703.1101,740.77832 C 1718.4337,735.72264 1733.2787,718.1793 1749.213,722.28525 C 1765.1472,726.3912 1779.4664,751.07858 1790.9226,763.18985 C 1802.3789,775.30111 1832.4032,781.26491 1837.5974,796.75007 C 1842.7916,812.23523 1826.6255,837.74355 1822.3359,853.20268 C 1818.0464,868.6618 1815.7121,894.0159 1804.4073,906.05549 z "/>
+ <path transform="matrix(0.24385, 0, 0, 0.113344, -919.693, 1483.03)" sodipodi:type="star" style="fill: rgb(252, 201, 22); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path5578" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="117.69902" sodipodi:r2="96.218704" sodipodi:arg1="0.68814496" sodipodi:arg2="1.2117437" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.066" d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z "/>
+ <path d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.285516" sodipodi:arg1="0.77274061" sodipodi:r2="87.586037" sodipodi:r1="112.86618" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path5580" style="fill: rgb(206, 92, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.196582, 0, 0, 0.0984813, -965.213, 1431.75)"/>
+ <path transform="matrix(0.308077, 0, 0, 0.149813, -973.018, 1521.12)" sodipodi:type="star" style="fill: rgb(206, 92, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path5584" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="112.86618" sodipodi:r2="87.586037" sodipodi:arg1="0.77274061" sodipodi:arg2="1.285516" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z "/>
+ <path d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.285516" sodipodi:arg1="0.77274061" sodipodi:r2="87.586037" sodipodi:r1="112.86618" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path5588" style="fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.235933, 0, 0, 0.143397, -944.568, 1513.61)"/>
+ <path transform="matrix(0.226093, 0, 0, 0.133658, -988.142, 1487.99)" sodipodi:type="star" style="fill: rgb(173, 127, 168); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path5596" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="117.69902" sodipodi:r2="96.218704" sodipodi:arg1="0.68814496" sodipodi:arg2="1.2117437" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1818.078,909.67573 C 1807.1172,922.61264 1776.1042,909.28717 1760.5847,915.80307 C 1745.0651,922.31897 1718.084,953.62097 1701.3238,949.93066 C 1684.5637,946.24035 1674.9424,914.7845 1661.2352,904.09389 C 1647.5281,893.40328 1620.822,892.0233 1614.4969,876.14318 C 1608.1719,860.26307 1624.5461,828.19897 1628.0453,811.58183 C 1631.5444,794.96469 1620.8123,765.39638 1631.6921,751.93327 C 1642.5718,738.47017 1674.4828,741.6683 1690.6352,736.57928 C 1706.7876,731.49025 1725.6971,709.39699 1742.6294,712.20086 C 1759.5617,715.00473 1774.2569,742.52685 1788.0244,752.82553 C 1801.7918,763.12422 1829.792,772.22081 1836.7232,788.02776 C 1843.6544,803.83471 1825.0327,824.11215 1822.8134,841.10331 C 1820.594,858.09446 1829.0389,896.73881 1818.078,909.67573 z "/>
+ <path d="M 1804.4073,906.05549 C 1793.1025,918.09508 1771.5149,920.28783 1755.4628,924.50843 C 1739.4106,928.72902 1715.9084,948.9709 1700.105,944.02625 C 1684.3016,939.0816 1669.9044,914.72418 1658.3953,903.12166 C 1646.8863,891.51914 1625.9992,879.7295 1621.128,863.84379 C 1616.2568,847.95808 1631.9165,823.49182 1635.738,807.81229 C 1639.5594,792.13276 1635.155,761.49186 1646.9428,750.18758 C 1658.7307,738.8833 1687.7864,745.83399 1703.1101,740.77832 C 1718.4337,735.72264 1733.2787,718.1793 1749.213,722.28525 C 1765.1472,726.3912 1779.4664,751.07858 1790.9226,763.18985 C 1802.3789,775.30111 1832.4032,781.26491 1837.5974,796.75007 C 1842.7916,812.23523 1826.6255,837.74355 1822.3359,853.20268 C 1818.0464,868.6618 1815.7121,894.0159 1804.4073,906.05549 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2963394" sodipodi:arg1="0.77274061" sodipodi:r2="96.218704" sodipodi:r1="112.86618" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path5602" style="fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.190687, 0, 0, 0.0978986, -909.092, 1431.82)"/>
+ <path d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z " inkscape:randomized="0.066" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2117437" sodipodi:arg1="0.68814496" sodipodi:r2="96.218704" sodipodi:r1="117.69902" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7636" style="fill: rgb(252, 175, 62); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.180166, 0, 0, 0.103761, -807.585, 1462.56)"/>
+ </g>
+ <path sodipodi:type="arc" style="opacity: 0.364445; fill: rgb(50, 50, 50); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; filter: url(&quot;#filter4635&quot;);" id="path4397" sodipodi:cx="-368.57144" sodipodi:cy="1192.3622" sodipodi:rx="254.28571" sodipodi:ry="77.14286" d="M -114.28574 1192.3622 A 254.28571 77.14286 0 1 1 -622.85715,1192.3622 A 254.28571 77.14286 0 1 1 -114.28574 1192.3622 z"/>
+ <path sodipodi:type="arc" style="opacity: 1; fill: url(&quot;#radialGradient4647&quot;) rgb(0, 0, 0); fill-opacity: 1; stroke: rgb(252, 175, 62); stroke-width: 8.39896; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path4639" sodipodi:cx="-640" sodipodi:cy="-27.637817" sodipodi:rx="280" sodipodi:ry="262.85715" d="M -360 -27.637817 A 280 262.85715 0 1 1 -920,-27.637817 A 280 262.85715 0 1 1 -360 -27.637817 z" transform="matrix(0.595312, 0, 0, 0.595312, -260.444, -56.0196)" clip-path="url(#clipPath5671)"/>
+ <path style="opacity: 1; fill: rgb(253, 253, 253); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; filter: url(&quot;#filter5575&quot;);" d="M 1101.0612,-136.20977 C 1052.5487,-136.20977 1010.7842,-124.27984 992.17666,-107.18077 C 987.9078,-107.47559 983.56717,-107.63838 979.15679,-107.63834 C 921.2652,-107.63834 874.27232,-81.122484 874.27232,-48.453091 C 874.27232,-19.861591 910.2679,4.0114801 958.05832,9.5268016 C 972.9066,40.44623 1039.3389,63.790194 1118.9831,63.79023 C 1209.5315,63.79023 1283.0257,33.62198 1283.0257,-3.5535556 L 1282.908,-4.636127 C 1312.2417,-13.868163 1331.4286,-29.137663 1331.4286,-46.410698 L 1331.007,-50.796841 C 1325.9064,-77.306199 1277.0396,-97.417484 1217.6812,-97.437484 C 1206.2011,-119.87088 1158.2757,-136.20981 1101.0612,-136.20977 z " id="path4984" clip-path="url(#clipPath5495)"/>
+ <path id="path5187" d="M 66.775486,-44.781199 C 18.262986,-44.781199 -23.501514,-32.851269 -42.109054,-15.752199 C -46.377914,-16.047019 -50.718544,-16.209809 -55.128924,-16.209769 C -113.02051,-16.209769 -160.01339,10.306087 -160.01339,42.97548 C -160.01339,71.56698 -124.01781,95.440051 -76.227394,100.95537 C -61.379114,131.8748 5.0531863,155.21877 84.697386,155.2188 C 175.24579,155.2188 248.73999,125.05055 248.73999,87.875016 L 248.62229,86.792444 C 277.95599,77.560408 297.14289,62.290908 297.14289,45.017873 L 296.72129,40.63173 C 291.62069,14.122372 242.75389,-5.9889126 183.39549,-6.0089126 C 171.91539,-28.442309 123.98999,-44.781239 66.775486,-44.781199 z " style="opacity: 1; fill: rgb(253, 253, 253); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1; filter: url(&quot;#filter5445&quot;);" transform="matrix(-1.51249, 0, 0, 1.25714, 180.839, 22.9437)" clip-path="url(#clipPath5381)"/>
+ <g transform="matrix(-0.210623, 0, 0, 0.556237, -341.333, 359.596)" id="g5828" style="opacity: 0.697778; fill: rgb(0, 152, 0); display: inline;">
+ <path style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 54.72075,1729.9654 C 41.764795,1672.665 -10.697664,1625.8162 -56.034505,1590.1872 C 2.2500856,1596.151 42.585887,1660.1126 68.003489,1708.121 C 70.576179,1717.0972 65.558296,1730.3186 54.72075,1729.9654 z " id="path5830" sodipodi:nodetypes="cccc"/>
+ <path style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 129.30136,1721.2886 C 146.22357,1691.2152 93.821359,1606.5193 103.04552,1570.6289 C 132.33532,1625.113 150.28646,1662.985 145.05996,1711.542 C 141.64328,1717.2167 134.56116,1718.1096 129.30136,1721.2886 z " id="path5832" sodipodi:nodetypes="cccc"/>
+ <path style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 203.81356,1718.924 C 229.06279,1671.6731 259.07211,1624.0026 312.35187,1605.6055 C 282.82429,1626.0647 249.25616,1646.6294 236.19401,1682.0657 C 229.3489,1696.8958 221.49813,1714.9421 203.81356,1718.924 z " id="path5834" sodipodi:nodetypes="cccc"/>
+ <path style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 312.58644,1727.8821 C 332.85066,1718.7223 353.22043,1666.8147 381.61701,1642.953 C 350.30976,1721.3669 339.0134,1729.3208 312.58644,1727.8821 z " id="path5836" sodipodi:nodetypes="ccc"/>
+ <path style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 169.52784,1710.3525 C 182.20786,1695.2621 187.20999,1670.842 208.79803,1665.5281 C 197.08704,1681.3524 191.29105,1705.3079 169.52784,1710.3525 z " id="path5838"/>
+ <path style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 90.730639,1685.0479 C 80.480559,1663.7248 69.643069,1642.387 54.565194,1624.001 C 96.582319,1642.9725 110.21472,1674.3029 90.730639,1685.0479 z " id="path5840" sodipodi:nodetypes="ccc"/>
+ <path style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 284.11903,1681.6729 C 302.37251,1660.3573 323.96329,1640.9773 350.07886,1629.9484 C 327.08694,1641.8915 308.00148,1674.8165 284.11903,1681.6729 z " id="path5842" sodipodi:nodetypes="ccc"/>
+ </g>
+ <g style="opacity: 0.697778; fill: rgb(0, 140, 0); display: inline;" id="g5844" transform="matrix(-0.284483, 0, 0, 0.391411, 808.187, 580.556)">
+ <path sodipodi:nodetypes="cccc" id="path5846" d="M 54.72075,1729.9654 C 41.764795,1672.665 -10.697664,1625.8162 -56.034505,1590.1872 C 2.2500856,1596.151 42.585887,1660.1126 68.003489,1708.121 C 70.576179,1717.0972 65.558296,1730.3186 54.72075,1729.9654 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="cccc" id="path5848" d="M 129.30136,1721.2886 C 146.22357,1691.2152 93.821359,1606.5193 103.04552,1570.6289 C 132.33532,1625.113 150.28646,1662.985 145.05996,1711.542 C 141.64328,1717.2167 134.56116,1718.1096 129.30136,1721.2886 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="cccc" id="path5850" d="M 203.81356,1718.924 C 229.06279,1671.6731 259.07211,1624.0026 312.35187,1605.6055 C 282.82429,1626.0647 249.25616,1646.6294 236.19401,1682.0657 C 229.3489,1696.8958 221.49813,1714.9421 203.81356,1718.924 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="ccc" id="path5852" d="M 312.58644,1727.8821 C 332.85066,1718.7223 353.22043,1666.8147 381.61701,1642.953 C 350.30976,1721.3669 339.0134,1729.3208 312.58644,1727.8821 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path id="path5854" d="M 169.52784,1710.3525 C 182.20786,1695.2621 187.20999,1670.842 208.79803,1665.5281 C 197.08704,1681.3524 191.29105,1705.3079 169.52784,1710.3525 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="ccc" id="path5856" d="M 90.730639,1685.0479 C 80.480559,1663.7248 69.643069,1642.387 54.565194,1624.001 C 96.582319,1642.9725 110.21472,1674.3029 90.730639,1685.0479 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="ccc" id="path5858" d="M 284.11903,1681.6729 C 302.37251,1660.3573 323.96329,1640.9773 350.07886,1629.9484 C 327.08694,1641.8915 308.00148,1674.8165 284.11903,1681.6729 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ </g>
+ <g transform="matrix(0.326029, 0, 0, 0.480164, 1333.72, 586.943)" id="g5860" style="opacity: 0.697778; fill: rgb(0, 140, 0); display: inline;">
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 54.72075,1729.9654 C 41.764795,1672.665 -10.697664,1625.8162 -56.034505,1590.1872 C 2.2500856,1596.151 42.585887,1660.1126 68.003489,1708.121 C 70.576179,1717.0972 65.558296,1730.3186 54.72075,1729.9654 z " id="path5862" sodipodi:nodetypes="cccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 129.30136,1721.2886 C 146.22357,1691.2152 93.821359,1606.5193 103.04552,1570.6289 C 132.33532,1625.113 150.28646,1662.985 145.05996,1711.542 C 141.64328,1717.2167 134.56116,1718.1096 129.30136,1721.2886 z " id="path5864" sodipodi:nodetypes="cccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 203.81356,1718.924 C 229.06279,1671.6731 259.07211,1624.0026 312.35187,1605.6055 C 282.82429,1626.0647 249.25616,1646.6294 236.19401,1682.0657 C 229.3489,1696.8958 221.49813,1714.9421 203.81356,1718.924 z " id="path5866" sodipodi:nodetypes="cccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 312.58644,1727.8821 C 332.85066,1718.7223 353.22043,1666.8147 381.61701,1642.953 C 350.30976,1721.3669 339.0134,1729.3208 312.58644,1727.8821 z " id="path5868" sodipodi:nodetypes="ccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 169.52784,1710.3525 C 182.20786,1695.2621 187.20999,1670.842 208.79803,1665.5281 C 197.08704,1681.3524 191.29105,1705.3079 169.52784,1710.3525 z " id="path5870"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 90.730639,1685.0479 C 80.480559,1663.7248 69.643069,1642.387 54.565194,1624.001 C 96.582319,1642.9725 110.21472,1674.3029 90.730639,1685.0479 z " id="path5872" sodipodi:nodetypes="ccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 284.11903,1681.6729 C 302.37251,1660.3573 323.96329,1640.9773 350.07886,1629.9484 C 327.08694,1641.8915 308.00148,1674.8165 284.11903,1681.6729 z " id="path5874" sodipodi:nodetypes="ccc"/>
+ </g>
+ <g transform="matrix(-0.192158, 0, 0, 0.213906, 1121.46, 743.183)" id="g5876" style="opacity: 0.697778; fill: rgb(0, 140, 0); display: inline;">
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 54.72075,1729.9654 C 41.764795,1672.665 -10.697664,1625.8162 -56.034505,1590.1872 C 2.2500856,1596.151 42.585887,1660.1126 68.003489,1708.121 C 70.576179,1717.0972 65.558296,1730.3186 54.72075,1729.9654 z " id="path5878" sodipodi:nodetypes="cccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 129.30136,1721.2886 C 146.22357,1691.2152 93.821359,1606.5193 103.04552,1570.6289 C 132.33532,1625.113 150.28646,1662.985 145.05996,1711.542 C 141.64328,1717.2167 134.56116,1718.1096 129.30136,1721.2886 z " id="path5880" sodipodi:nodetypes="cccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 203.81356,1718.924 C 229.06279,1671.6731 259.07211,1624.0026 312.35187,1605.6055 C 282.82429,1626.0647 249.25616,1646.6294 236.19401,1682.0657 C 229.3489,1696.8958 221.49813,1714.9421 203.81356,1718.924 z " id="path5882" sodipodi:nodetypes="cccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 312.58644,1727.8821 C 332.85066,1718.7223 353.22043,1666.8147 381.61701,1642.953 C 350.30976,1721.3669 339.0134,1729.3208 312.58644,1727.8821 z " id="path5884" sodipodi:nodetypes="ccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 169.52784,1710.3525 C 182.20786,1695.2621 187.20999,1670.842 208.79803,1665.5281 C 197.08704,1681.3524 191.29105,1705.3079 169.52784,1710.3525 z " id="path5886"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 90.730639,1685.0479 C 80.480559,1663.7248 69.643069,1642.387 54.565194,1624.001 C 96.582319,1642.9725 110.21472,1674.3029 90.730639,1685.0479 z " id="path5888" sodipodi:nodetypes="ccc"/>
+ <path style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 284.11903,1681.6729 C 302.37251,1660.3573 323.96329,1640.9773 350.07886,1629.9484 C 327.08694,1641.8915 308.00148,1674.8165 284.11903,1681.6729 z " id="path5890" sodipodi:nodetypes="ccc"/>
+ </g>
+ <g style="opacity: 0.697778; fill: rgb(0, 140, 0); display: inline;" id="g5892" transform="matrix(0.169077, 0, 0, 0.16319, 1217.85, 559.511)">
+ <path sodipodi:nodetypes="cccc" id="path5894" d="M 54.72075,1729.9654 C 41.764795,1672.665 -10.697664,1625.8162 -56.034505,1590.1872 C 2.2500856,1596.151 42.585887,1660.1126 68.003489,1708.121 C 70.576179,1717.0972 65.558296,1730.3186 54.72075,1729.9654 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="cccc" id="path5896" d="M 129.30136,1721.2886 C 146.22357,1691.2152 93.821359,1606.5193 103.04552,1570.6289 C 132.33532,1625.113 150.28646,1662.985 145.05996,1711.542 C 141.64328,1717.2167 134.56116,1718.1096 129.30136,1721.2886 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="cccc" id="path5898" d="M 203.81356,1718.924 C 229.06279,1671.6731 259.07211,1624.0026 312.35187,1605.6055 C 282.82429,1626.0647 249.25616,1646.6294 236.19401,1682.0657 C 229.3489,1696.8958 221.49813,1714.9421 203.81356,1718.924 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="ccc" id="path5900" d="M 312.58644,1727.8821 C 332.85066,1718.7223 353.22043,1666.8147 381.61701,1642.953 C 350.30976,1721.3669 339.0134,1729.3208 312.58644,1727.8821 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path id="path5902" d="M 169.52784,1710.3525 C 182.20786,1695.2621 187.20999,1670.842 208.79803,1665.5281 C 197.08704,1681.3524 191.29105,1705.3079 169.52784,1710.3525 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="ccc" id="path5904" d="M 90.730639,1685.0479 C 80.480559,1663.7248 69.643069,1642.387 54.565194,1624.001 C 96.582319,1642.9725 110.21472,1674.3029 90.730639,1685.0479 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="ccc" id="path5906" d="M 284.11903,1681.6729 C 302.37251,1660.3573 323.96329,1640.9773 350.07886,1629.9484 C 327.08694,1641.8915 308.00148,1674.8165 284.11903,1681.6729 z " style="opacity: 1; fill: rgb(0, 140, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ </g>
+ <g style="fill: rgb(0, 152, 0); display: inline;" id="g5811" transform="matrix(0.38604, 0, 0, 0.492842, -213.2, 373.302)">
+ <path sodipodi:nodetypes="cccc" id="path5727" d="M 54.72075,1729.9654 C 41.764795,1672.665 -10.697664,1625.8162 -56.034505,1590.1872 C 2.2500856,1596.151 42.585887,1660.1126 68.003489,1708.121 C 70.576179,1717.0972 65.558296,1730.3186 54.72075,1729.9654 z " style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="cccc" id="path5729" d="M 129.30136,1721.2886 C 146.22357,1691.2152 93.821359,1606.5193 103.04552,1570.6289 C 132.33532,1625.113 150.28646,1662.985 145.05996,1711.542 C 141.64328,1717.2167 134.56116,1718.1096 129.30136,1721.2886 z " style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="cccc" id="path5731" d="M 203.81356,1718.924 C 229.06279,1671.6731 259.07211,1624.0026 312.35187,1605.6055 C 282.82429,1626.0647 249.25616,1646.6294 236.19401,1682.0657 C 229.3489,1696.8958 221.49813,1714.9421 203.81356,1718.924 z " style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="ccc" id="path5733" d="M 312.58644,1727.8821 C 332.85066,1718.7223 353.22043,1666.8147 381.61701,1642.953 C 350.30976,1721.3669 339.0134,1729.3208 312.58644,1727.8821 z " style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path id="path5735" d="M 169.52784,1710.3525 C 182.20786,1695.2621 187.20999,1670.842 208.79803,1665.5281 C 197.08704,1681.3524 191.29105,1705.3079 169.52784,1710.3525 z " style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="ccc" id="path5737" d="M 90.730639,1685.0479 C 80.480559,1663.7248 69.643069,1642.387 54.565194,1624.001 C 96.582319,1642.9725 110.21472,1674.3029 90.730639,1685.0479 z " style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ <path sodipodi:nodetypes="ccc" id="path5753" d="M 284.11903,1681.6729 C 302.37251,1660.3573 323.96329,1640.9773 350.07886,1629.9484 C 327.08694,1641.8915 308.00148,1674.8165 284.11903,1681.6729 z " style="opacity: 1; fill: rgb(0, 152, 0); fill-opacity: 1; stroke: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;"/>
+ </g>
+ <g id="g7741" transform="matrix(0.137234, 0.0203209, -0.00457729, 0.0689332, 874.477, 574.517)">
+ <path d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.285516" sodipodi:arg1="0.77274061" sodipodi:r2="87.586037" sodipodi:r1="112.86618" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7685" style="fill: rgb(206, 92, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.749782, 0, 0, 0.384739, -171.523, 2314.32)"/>
+ <path transform="matrix(0.776722, 0, 0, 0.359168, -121.06, 2269.22)" sodipodi:type="star" style="fill: rgb(252, 201, 22); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path7689" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="117.69902" sodipodi:r2="96.218704" sodipodi:arg1="0.68814496" sodipodi:arg2="1.2117437" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.066" d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z "/>
+ <path transform="matrix(0.875293, 0, 0, 0.517442, -695.786, 2290.56)" sodipodi:type="star" style="fill: rgb(173, 127, 168); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path7691" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="117.69902" sodipodi:r2="96.218704" sodipodi:arg1="0.68814496" sodipodi:arg2="1.2117437" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1818.078,909.67573 C 1807.1172,922.61264 1776.1042,909.28717 1760.5847,915.80307 C 1745.0651,922.31897 1718.084,953.62097 1701.3238,949.93066 C 1684.5637,946.24035 1674.9424,914.7845 1661.2352,904.09389 C 1647.5281,893.40328 1620.822,892.0233 1614.4969,876.14318 C 1608.1719,860.26307 1624.5461,828.19897 1628.0453,811.58183 C 1631.5444,794.96469 1620.8123,765.39638 1631.6921,751.93327 C 1642.5718,738.47017 1674.4828,741.6683 1690.6352,736.57928 C 1706.7876,731.49025 1725.6971,709.39699 1742.6294,712.20086 C 1759.5617,715.00473 1774.2569,742.52685 1788.0244,752.82553 C 1801.7918,763.12422 1829.792,772.22081 1836.7232,788.02776 C 1843.6544,803.83471 1825.0327,824.11215 1822.8134,841.10331 C 1820.594,858.09446 1829.0389,896.73881 1818.078,909.67573 z "/>
+ <path d="M 1804.4073,906.05549 C 1793.1025,918.09508 1771.5149,920.28783 1755.4628,924.50843 C 1739.4106,928.72902 1715.9084,948.9709 1700.105,944.02625 C 1684.3016,939.0816 1669.9044,914.72418 1658.3953,903.12166 C 1646.8863,891.51914 1625.9992,879.7295 1621.128,863.84379 C 1616.2568,847.95808 1631.9165,823.49182 1635.738,807.81229 C 1639.5594,792.13276 1635.155,761.49186 1646.9428,750.18758 C 1658.7307,738.8833 1687.7864,745.83399 1703.1101,740.77832 C 1718.4337,735.72264 1733.2787,718.1793 1749.213,722.28525 C 1765.1472,726.3912 1779.4664,751.07858 1790.9226,763.18985 C 1802.3789,775.30111 1832.4032,781.26491 1837.5974,796.75007 C 1842.7916,812.23523 1826.6255,837.74355 1822.3359,853.20268 C 1818.0464,868.6618 1815.7121,894.0159 1804.4073,906.05549 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2963394" sodipodi:arg1="0.77274061" sodipodi:r2="96.218704" sodipodi:r1="112.86618" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7687" style="fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(0.951666, 0, 0, 0.488586, -622.468, 2374.95)"/>
+ <path transform="matrix(1.22658, 0, 0, 0.699644, -1279.46, 2443.02)" sodipodi:type="star" style="fill: rgb(206, 92, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path7693" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="112.86618" sodipodi:r2="87.586037" sodipodi:arg1="0.77274061" sodipodi:arg2="1.285516" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z "/>
+ <path d="M 1818.078,909.67573 C 1807.1172,922.61264 1776.1042,909.28717 1760.5847,915.80307 C 1745.0651,922.31897 1718.084,953.62097 1701.3238,949.93066 C 1684.5637,946.24035 1674.9424,914.7845 1661.2352,904.09389 C 1647.5281,893.40328 1620.822,892.0233 1614.4969,876.14318 C 1608.1719,860.26307 1624.5461,828.19897 1628.0453,811.58183 C 1631.5444,794.96469 1620.8123,765.39638 1631.6921,751.93327 C 1642.5718,738.47017 1674.4828,741.6683 1690.6352,736.57928 C 1706.7876,731.49025 1725.6971,709.39699 1742.6294,712.20086 C 1759.5617,715.00473 1774.2569,742.52685 1788.0244,752.82553 C 1801.7918,763.12422 1829.792,772.22081 1836.7232,788.02776 C 1843.6544,803.83471 1825.0327,824.11215 1822.8134,841.10331 C 1820.594,858.09446 1829.0389,896.73881 1818.078,909.67573 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2117437" sodipodi:arg1="0.68814496" sodipodi:r2="96.218704" sodipodi:r1="117.69902" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7695" style="fill: rgb(52, 101, 164); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(1.03339, 0, 0, 0.517442, -737.38, 2484.5)"/>
+ <path d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z " inkscape:randomized="0.066" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2117437" sodipodi:arg1="0.68814496" sodipodi:r2="96.218704" sodipodi:r1="117.69902" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7697" style="fill: rgb(252, 175, 62); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(1.23272, 0, 0, 0.580422, -908.625, 2523.09)"/>
+ <path d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.285516" sodipodi:arg1="0.77274061" sodipodi:r2="87.586037" sodipodi:r1="112.86618" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7699" style="fill: rgb(204, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(1.4557, 0, 0, 0.859759, -1006.89, 2260.38)"/>
+ <path transform="matrix(1.43713, 0, 0, 0.683673, -1229.91, 2707.55)" sodipodi:type="star" style="fill: rgb(252, 175, 62); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path7701" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="117.69902" sodipodi:r2="96.218704" sodipodi:arg1="0.68814496" sodipodi:arg2="1.2117437" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.066" d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z "/>
+ <path transform="matrix(1.36581, 0, 0, 0.726893, -562.733, 2577.51)" sodipodi:type="star" style="fill: rgb(173, 127, 168); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path7703" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="117.69902" sodipodi:r2="96.218704" sodipodi:arg1="0.68814496" sodipodi:arg2="1.2117437" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1818.078,909.67573 C 1807.1172,922.61264 1776.1042,909.28717 1760.5847,915.80307 C 1745.0651,922.31897 1718.084,953.62097 1701.3238,949.93066 C 1684.5637,946.24035 1674.9424,914.7845 1661.2352,904.09389 C 1647.5281,893.40328 1620.822,892.0233 1614.4969,876.14318 C 1608.1719,860.26307 1624.5461,828.19897 1628.0453,811.58183 C 1631.5444,794.96469 1620.8123,765.39638 1631.6921,751.93327 C 1642.5718,738.47017 1674.4828,741.6683 1690.6352,736.57928 C 1706.7876,731.49025 1725.6971,709.39699 1742.6294,712.20086 C 1759.5617,715.00473 1774.2569,742.52685 1788.0244,752.82553 C 1801.7918,763.12422 1829.792,772.22081 1836.7232,788.02776 C 1843.6544,803.83471 1825.0327,824.11215 1822.8134,841.10331 C 1820.594,858.09446 1829.0389,896.73881 1818.078,909.67573 z "/>
+ <path d="M 1804.4073,906.05549 C 1793.1025,918.09508 1771.5149,920.28783 1755.4628,924.50843 C 1739.4106,928.72902 1715.9084,948.9709 1700.105,944.02625 C 1684.3016,939.0816 1669.9044,914.72418 1658.3953,903.12166 C 1646.8863,891.51914 1625.9992,879.7295 1621.128,863.84379 C 1616.2568,847.95808 1631.9165,823.49182 1635.738,807.81229 C 1639.5594,792.13276 1635.155,761.49186 1646.9428,750.18758 C 1658.7307,738.8833 1687.7864,745.83399 1703.1101,740.77832 C 1718.4337,735.72264 1733.2787,718.1793 1749.213,722.28525 C 1765.1472,726.3912 1779.4664,751.07858 1790.9226,763.18985 C 1802.3789,775.30111 1832.4032,781.26491 1837.5974,796.75007 C 1842.7916,812.23523 1826.6255,837.74355 1822.3359,853.20268 C 1818.0464,868.6618 1815.7121,894.0159 1804.4073,906.05549 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2963394" sodipodi:arg1="0.77274061" sodipodi:r2="96.218704" sodipodi:r1="112.86618" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7705" style="fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(1.62083, 0, 0, 0.856041, -1201.87, 2592.66)"/>
+ <path d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z " inkscape:randomized="0.066" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2117437" sodipodi:arg1="0.68814496" sodipodi:r2="96.218704" sodipodi:r1="117.69902" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7707" style="fill: rgb(252, 201, 22); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(1.21699, 0, 0, 0.548952, -850.794, 2257.89)"/>
+ <path transform="matrix(0.981089, 0, 0, 0.491494, -928.471, 2123.41)" sodipodi:type="star" style="fill: rgb(206, 92, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path7709" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="112.86618" sodipodi:r2="87.586037" sodipodi:arg1="0.77274061" sodipodi:arg2="1.285516" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z "/>
+ <path d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.285516" sodipodi:arg1="0.77274061" sodipodi:r2="87.586037" sodipodi:r1="112.86618" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7711" style="fill: rgb(206, 92, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(1.53753, 0, 0, 0.638787, -1201.78, 2595.53)"/>
+ <path transform="matrix(1.17748, 0, 0, 0.715656, -950.696, 2511.76)" sodipodi:type="star" style="fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path7713" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="112.86618" sodipodi:r2="87.586037" sodipodi:arg1="0.77274061" sodipodi:arg2="1.285516" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1804.4073,906.05549 C 1793.2426,918.2071 1765.694,907.09197 1750.059,911.10682 C 1733.9068,915.25448 1716.4724,948.9533 1700.105,944.02625 C 1684.2616,939.25696 1674.1309,901.72319 1662.5601,889.92826 C 1650.6065,877.74318 1626.3336,880.18635 1621.128,863.84379 C 1616.089,848.0245 1637.6118,822.39297 1641.9362,806.3804 C 1646.4036,789.83816 1634.902,761.98757 1646.9428,750.18758 C 1658.5981,738.76542 1684.3223,754.63857 1699.7579,750.22144 C 1715.7041,745.65819 1732.7199,718.22536 1749.213,722.28525 C 1765.1779,726.21515 1775.707,754.36369 1787.4092,765.68235 C 1799.4986,777.37542 1832.0628,780.82456 1837.5974,796.75007 C 1842.9547,812.16566 1810.1842,830.21759 1806.8828,846.4043 C 1803.4723,863.12645 1815.9413,893.50193 1804.4073,906.05549 z "/>
+ <path d="M 1818.078,909.67573 C 1807.1172,922.61264 1776.1042,909.28717 1760.5847,915.80307 C 1745.0651,922.31897 1718.084,953.62097 1701.3238,949.93066 C 1684.5637,946.24035 1674.9424,914.7845 1661.2352,904.09389 C 1647.5281,893.40328 1620.822,892.0233 1614.4969,876.14318 C 1608.1719,860.26307 1624.5461,828.19897 1628.0453,811.58183 C 1631.5444,794.96469 1620.8123,765.39638 1631.6921,751.93327 C 1642.5718,738.47017 1674.4828,741.6683 1690.6352,736.57928 C 1706.7876,731.49025 1725.6971,709.39699 1742.6294,712.20086 C 1759.5617,715.00473 1774.2569,742.52685 1788.0244,752.82553 C 1801.7918,763.12422 1829.792,772.22081 1836.7232,788.02776 C 1843.6544,803.83471 1825.0327,824.11215 1822.8134,841.10331 C 1820.594,858.09446 1829.0389,896.73881 1818.078,909.67573 z " inkscape:randomized="0.041" inkscape:rounded="0.29" inkscape:flatsided="false" sodipodi:arg2="1.2117437" sodipodi:arg1="0.68814496" sodipodi:r2="96.218704" sodipodi:r1="117.69902" sodipodi:cy="830.1286" sodipodi:cx="1725.3406" sodipodi:sides="6" id="path7715" style="fill: rgb(173, 127, 168); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" sodipodi:type="star" transform="matrix(1.25396, 0, 0, 0.650092, -845.474, 2319.21)"/>
+ <path transform="matrix(0.951666, 0, 0, 0.488586, -761.525, 2216.68)" sodipodi:type="star" style="fill: rgb(245, 121, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path7717" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="112.86618" sodipodi:r2="96.218704" sodipodi:arg1="0.77274061" sodipodi:arg2="1.2963394" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.041" d="M 1804.4073,906.05549 C 1793.1025,918.09508 1771.5149,920.28783 1755.4628,924.50843 C 1739.4106,928.72902 1715.9084,948.9709 1700.105,944.02625 C 1684.3016,939.0816 1669.9044,914.72418 1658.3953,903.12166 C 1646.8863,891.51914 1625.9992,879.7295 1621.128,863.84379 C 1616.2568,847.95808 1631.9165,823.49182 1635.738,807.81229 C 1639.5594,792.13276 1635.155,761.49186 1646.9428,750.18758 C 1658.7307,738.8833 1687.7864,745.83399 1703.1101,740.77832 C 1718.4337,735.72264 1733.2787,718.1793 1749.213,722.28525 C 1765.1472,726.3912 1779.4664,751.07858 1790.9226,763.18985 C 1802.3789,775.30111 1832.4032,781.26491 1837.5974,796.75007 C 1842.7916,812.23523 1826.6255,837.74355 1822.3359,853.20268 C 1818.0464,868.6618 1815.7121,894.0159 1804.4073,906.05549 z "/>
+ <path transform="matrix(0.899161, 0, 0, 0.517842, -711.519, 2410.52)" sodipodi:type="star" style="fill: rgb(252, 175, 62); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" id="path7719" sodipodi:sides="6" sodipodi:cx="1725.3406" sodipodi:cy="830.1286" sodipodi:r1="117.69902" sodipodi:r2="96.218704" sodipodi:arg1="0.68814496" sodipodi:arg2="1.2117437" inkscape:flatsided="false" inkscape:rounded="0.29" inkscape:randomized="0.066" d="M 1819.1901,912.60002 C 1808.1892,925.34982 1776.6465,906.3155 1761.4591,913.11503 C 1746.2716,919.91456 1715.0785,956.40624 1698.4354,952.18237 C 1681.7922,947.95851 1673.3968,914.43744 1659.4082,903.87652 C 1645.4196,893.3156 1620.6062,894.75448 1614.1004,878.98259 C 1607.5947,863.2107 1622.6861,826.30507 1626.5964,809.88324 C 1630.5066,793.4614 1619.1523,763.43007 1630.0245,749.83325 C 1640.8967,736.23643 1673.9027,738.98705 1690.0893,734.46557 C 1706.2759,729.9441 1724.4727,708.29109 1741.4155,711.09202 C 1758.3583,713.89294 1774.9111,741.08186 1788.9846,751.00768 C 1803.0581,760.93349 1829.9689,771.94313 1837.4484,787.57478 C 1844.9278,803.20643 1826.2294,821.15724 1824.3705,838.18479 C 1822.5116,855.21235 1830.191,899.85022 1819.1901,912.60002 z "/>
+ </g>
+ <path style="opacity: 0.698; fill: rgb(30, 158, 0); fill-opacity: 1; stroke: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0pt; stroke-opacity: 1;" d="M 1454.6357,760.19467 C 1456.1586,760.51092 1456.5395,761.23708 1457.8183,762.32301 C 1459.4823,764.18667 1462.8527,769.76805 1462.4734,770.68067 C 1461.9708,772.32472 1457.7366,763.00894 1454.6357,760.19467 z M 1483.2262,764.2586 C 1479.6117,770.97488 1479.2716,771.47803 1476.4526,771.38061 C 1477.0513,770.14131 1478.7699,769.132 1479.9759,767.95434 C 1481.2614,766.69903 1481.9601,764.35143 1483.2262,764.2586 z M 1470.5215,764.50347 C 1474.6353,768.89175 1475.0746,770.47222 1474.3817,770.96639 C 1473.1147,771.44343 1473.3913,770.19834 1470.5215,764.50347 z M 1462.8254,765.44449 C 1463.8381,765.27613 1464.5759,766.79605 1464.9785,768.03927 C 1466.0063,771.21352 1466.0179,770.75542 1465.3251,771.02444 C 1464.3699,771.39533 1464.3759,768.15643 1462.8254,765.44449 z M 1456.0135,765.15301 C 1457.0735,765.18401 1457.6249,766.46987 1458.3682,767.65676 C 1459.1147,769.92 1461.2875,771.32585 1459.7551,771.41183 C 1458.2315,771.49733 1457.1774,767.83928 1456.0135,765.15301 z M 1467.3746,766.0236 C 1470.7174,769.66273 1471.4324,770.77893 1470.0897,770.92921 C 1469.2241,771.02608 1469.1558,770.13682 1468.1674,768.64168 C 1467.5308,767.67859 1466.7372,766.83473 1467.3746,766.0236 z " id="path7788" sodipodi:nodetypes="ccccccscccccszccczcczsc"/>
+ </g>
+</svg> \ No newline at end of file
diff --git a/Saludame.activity/assets/food/apple/12316860561101736632rg1024_apple.svg b/Saludame.activity/assets/food/apple/12316860561101736632rg1024_apple.svg
new file mode 100644
index 0000000..53e69ff
--- /dev/null
+++ b/Saludame.activity/assets/food/apple/12316860561101736632rg1024_apple.svg
@@ -0,0 +1,264 @@
+<?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="371.125"
+ height="425.10889"
+ id="svg3987"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ sodipodi:docname="apple.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ version="1.0"
+ inkscape:export-filename="/home/roger/mis-dibujos/open/temporal/apple.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs3">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient9878">
+ <stop
+ style="stop-color:#fce94f;stop-opacity:1;"
+ offset="0"
+ id="stop9880" />
+ <stop
+ style="stop-color:#fce94f;stop-opacity:0;"
+ offset="1"
+ id="stop9882" />
+ </linearGradient>
+ <inkscape:path-effect
+ effect="bend_path"
+ id="path-effect9874"
+ bendpath="M -64.005,450.501 C -64.005,450.501 26.388,437.915 84.478,439.939 C 158.121,442.507 251.129,457.546 251.129,457.546 "
+ prop_scale="1"
+ bendpath-nodetypes="csc" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4647">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4649" />
+ <stop
+ style="stop-color:#555753;stop-opacity:0;"
+ offset="1"
+ id="stop4651" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4529">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4531" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop4533" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4514">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop4516" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:0;"
+ offset="1"
+ id="stop4518" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective3993" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4514"
+ id="linearGradient4520"
+ x1="284.28571"
+ y1="230.20946"
+ x2="322.58047"
+ y2="457.35233"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6526354,0,0,0.6526354,197.1131,43.949524)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4529"
+ id="linearGradient4535"
+ x1="-86.876953"
+ y1="1120.375"
+ x2="-67.56263"
+ y2="931.64386"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6215198,0,0,0.6215198,457.7737,-127.76778)" />
+ <filter
+ inkscape:collect="always"
+ id="filter4613"
+ x="-0.072893724"
+ width="1.1457874"
+ y="-0.25015965"
+ height="1.5003192">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="18.13611"
+ id="feGaussianBlur4615" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4647"
+ id="linearGradient4659"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.451784,0,0,0.451784,532.39811,52.98725)"
+ x1="-334.96848"
+ y1="108.3955"
+ x2="-336.86279"
+ y2="248.17491" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4647"
+ id="linearGradient3098"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.3084584,-0.2192986,-0.2617802,0.3682118,415.52494,27.363653)"
+ x1="-334.96848"
+ y1="108.3955"
+ x2="-336.86279"
+ y2="248.17491" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9878"
+ id="linearGradient9884"
+ x1="404.90948"
+ y1="282.03149"
+ x2="404.90948"
+ y2="364.03149"
+ gradientUnits="userSpaceOnUse"
+ spreadMethod="reflect"
+ gradientTransform="matrix(1,0,0,0.863835,-309,123.91401)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4514"
+ id="linearGradient9888"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6526354,0,0,0.6526354,-107.8869,108.94952)"
+ x1="284.28571"
+ y1="230.20946"
+ x2="322.58047"
+ y2="457.35233" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9878"
+ id="linearGradient9891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.2357489,-103,233.95646)"
+ spreadMethod="reflect"
+ x1="404.90948"
+ y1="282.03149"
+ x2="404.90948"
+ y2="364.03149" />
+ </defs>
+ <sodipodi:namedview
+ inkscape:document-units="mm"
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.5"
+ inkscape:cx="439.42609"
+ inkscape:cy="695.45006"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1272"
+ inkscape:window-height="944"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ orientation="0,1"
+ position="534,1420"
+ id="guide4787" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-330,875"
+ id="guide9876" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata4">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-217.4375,-93.261632)">
+ <path
+ style="opacity:1;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+ d="M 412.36005,211.10314 C 412.16849,210.06453 412.43923,208.9142 413.2392,207.65012 C 421.78854,194.14066 455.40377,148.74559 475.33288,138.92887 C 500.37407,126.59406 521.32979,151.60033 524.0443,167.2757 C 524.27473,168.60637 524.34869,169.97234 524.27965,171.35896 C 524.79345,172.53752 525.17263,173.79141 525.40327,175.12328 C 528.11778,190.79866 517.7691,227.04433 491.6375,233.08236 C 470.84058,237.88775 426.35879,220.5323 414.40532,214.38407 C 413.14007,213.7333 412.52602,212.75069 412.46438,211.50461 C 412.42357,211.37218 412.38518,211.23941 412.36005,211.10314 z"
+ id="path3094"
+ inkscape:transform-center-x="-79.376842"
+ inkscape:transform-center-y="103.36906" />
+ <path
+ inkscape:transform-center-y="89.206417"
+ inkscape:transform-center-x="-68.501383"
+ id="path3096"
+ d="M 419.18999,207.91767 C 419.02468,207.02135 419.25831,206.02865 419.94868,204.93776 C 427.32668,193.27923 456.33626,154.10375 473.53487,145.63205 C 495.14517,134.98722 513.22972,156.56737 515.57233,170.09506 C 515.77118,171.24341 515.83501,172.42223 515.77543,173.61887 C 516.21883,174.63594 516.54606,175.71805 516.7451,176.86744 C 519.0877,190.39512 510.1569,221.67474 487.6056,226.88552 C 469.65807,231.03252 431.27075,216.05495 420.95503,210.74909 C 419.86314,210.18747 419.33321,209.33951 419.28002,208.26414 C 419.2448,208.14983 419.21168,208.03529 419.18999,207.91767 z"
+ style="opacity:1;fill:url(#linearGradient3098);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+ <path
+ sodipodi:nodetypes="ccssscssc"
+ id="path4551"
+ d="M 421.15625,692.375 C 379.77062,692.375 341.4155,697.403 310.09375,705.95747 C 280.29883,698.63608 244.85753,694.3864 206.84375,694.3864 C 101.17518,694.3864 15.4375,727.2101 15.4375,767.64776 C 15.4375,808.08542 171.17517,864.85646 276.84375,864.85646 C 318.22938,864.85646 288.01307,867.39569 319.33482,858.84121 C 349.12974,866.16261 340.28533,866.37054 378.29911,866.37054 C 483.96768,866.37054 612.56247,806.06297 612.5625,765.62531 C 612.5625,725.18766 526.82481,692.375 421.15625,692.375 z"
+ style="opacity:1;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4613)"
+ transform="matrix(0.4579572,0,0,0.400053,260.08937,171.77637)" />
+ <path
+ style="opacity:1;fill:#a40000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+ d="M 469.59973,195.18302 C 443.87774,195.18302 420.03928,204.01937 400.57219,219.05326 C 382.05406,206.18642 360.02659,198.71791 336.40027,198.71791 C 270.72516,198.71791 217.4375,256.40327 217.4375,327.46962 C 217.4375,398.53596 314.23154,498.30709 379.90666,498.3071 C 405.62864,498.3071 386.84861,502.7696 406.3157,487.73571 C 424.83383,500.60255 419.33685,500.96798 442.96317,500.96798 C 508.63828,500.96798 588.56248,394.98165 588.5625,323.9153 C 588.5625,252.84896 535.27483,195.18302 469.59973,195.18302 z"
+ id="path3995"
+ sodipodi:nodetypes="ccssscssc" />
+ <path
+ style="opacity:1;fill:url(#linearGradient4535);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+ d="M 406.19969,389.56975 C 353.4592,389.56975 305.74535,401.62042 271.41488,421.04389 C 301.32834,459.89679 345.89313,491.6568 380.55472,491.6568 C 403.06146,491.6568 386.63379,495.56634 403.66749,482.41169 C 419.87084,493.67017 415.06342,493.98507 435.73645,493.98507 C 470.80814,493.98507 510.51316,459.43338 536.14103,418.37573 C 502.23406,400.51162 456.49982,389.56975 406.19969,389.56975 z"
+ id="path4526" />
+ <path
+ inkscape:transform-center-y="37.68681"
+ inkscape:transform-center-x="162.34319"
+ id="path4655"
+ d="M 408.38781,204.57196 C 409.29256,203.83647 409.82482,202.74206 409.92088,201.24829 C 410.9475,185.28404 409.64225,128.80837 397.04328,109.25993 C 381.21251,84.69705 343.52831,92.93509 330.04498,104.13791 C 328.9004,105.0889 327.88363,106.15934 326.99169,107.32946 C 325.67663,107.99229 324.44043,108.79453 323.29481,109.74638 C 309.81147,120.9492 294.80919,156.48645 316.0562,176.54916 C 332.9657,192.51613 388.24646,204.14552 404.12861,206.06088 C 405.8097,206.26362 407.08675,205.81858 408.0086,204.83872 C 408.13993,204.75443 408.2691,204.66847 408.38781,204.57196 z"
+ style="opacity:1;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+ <path
+ style="opacity:1;fill:url(#linearGradient4659);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+ d="M 403.94631,198.01824 C 404.7271,197.38351 405.18643,196.43907 405.26933,195.14995 C 406.15529,181.37296 405.02888,132.63505 394.1561,115.76496 C 380.4943,94.56745 347.97324,101.67679 336.33725,111.3447 C 335.34949,112.1654 334.47203,113.08918 333.7023,114.09898 C 332.56742,114.67099 331.50059,115.36332 330.51193,116.18476 C 318.87595,125.85267 305.92915,156.52094 324.26508,173.83486 C 338.85781,187.61419 386.56453,197.65023 400.27065,199.30316 C 401.72142,199.47812 402.8235,199.09407 403.61906,198.24845 C 403.73239,198.1757 403.84385,198.10153 403.94631,198.01824 z"
+ id="path4657"
+ inkscape:transform-center-x="140.10047"
+ inkscape:transform-center-y="32.523324" />
+ <path
+ style="opacity:1;fill:url(#linearGradient4520);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+ d="M 461.51133,203.99087 C 437.67961,203.99087 415.59301,212.17784 397.55654,226.10691 C 380.39927,214.18563 359.99058,207.26599 338.10053,207.26599 C 277.25182,207.26599 227.8802,260.71212 227.8802,326.55589 C 227.8802,326.83106 227.89507,327.10756 227.8982,327.38366 C 227.8982,327.38366 274.9093,341.92169 392.35722,300.23668 C 512.77688,257.49694 571.62369,327.38366 571.62369,327.38366 C 571.68593,325.99921 571.73167,324.62083 571.73167,323.26277 C 571.73167,257.419 522.36005,203.99087 461.51133,203.99087 z"
+ id="path4000"
+ sodipodi:nodetypes="ccsscscsc" />
+ <path
+ style="opacity:1;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+ d="M 472.5987,109.14344 C 459.85835,116.00522 450.18788,127.36587 442.39672,139.42311 C 430.61708,158.54417 423.04108,179.91537 413.64668,200.2033 C 408.90701,210.89205 403.92172,221.44104 399.51185,232.26262 C 399.70558,235.2511 403.53102,235.47643 404.93073,233.27259 C 413.27201,218.95575 419.91055,203.53809 427.60181,188.79884 C 433.87532,176.48709 440.76569,164.42328 448.20404,152.74694 C 455.60651,142.58758 463.84918,132.99475 470.15146,121.94286 C 471.9795,118.36429 474.91665,114.95779 475.53149,110.96915 C 475.2161,109.71592 473.84348,108.9512 472.5987,109.14344 z"
+ id="path4545" />
+ </g>
+</svg>
diff --git a/Saludame.activity/assets/food/apple/apple0000.png b/Saludame.activity/assets/food/apple/apple0000.png
new file mode 100644
index 0000000..23ad3db
--- /dev/null
+++ b/Saludame.activity/assets/food/apple/apple0000.png
Binary files differ
diff --git a/Saludame.activity/assets/food/apple/apple0001.png b/Saludame.activity/assets/food/apple/apple0001.png
new file mode 100644
index 0000000..7d02ecd
--- /dev/null
+++ b/Saludame.activity/assets/food/apple/apple0001.png
Binary files differ
diff --git a/Saludame.activity/assets/food/apple/apple0002.png b/Saludame.activity/assets/food/apple/apple0002.png
new file mode 100644
index 0000000..e8d2249
--- /dev/null
+++ b/Saludame.activity/assets/food/apple/apple0002.png
Binary files differ
diff --git a/Saludame.activity/assets/food/apple/apple0003.png b/Saludame.activity/assets/food/apple/apple0003.png
new file mode 100644
index 0000000..717d694
--- /dev/null
+++ b/Saludame.activity/assets/food/apple/apple0003.png
Binary files differ
diff --git a/Saludame.activity/assets/food/apple/apple0004.png b/Saludame.activity/assets/food/apple/apple0004.png
new file mode 100644
index 0000000..fd4c941
--- /dev/null
+++ b/Saludame.activity/assets/food/apple/apple0004.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid.svg b/Saludame.activity/assets/kid/kid.svg
new file mode 100644
index 0000000..5e19788
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid.svg
@@ -0,0 +1,1705 @@
+<?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="400"
+ height="600"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.47 r22583"
+ sodipodi:docname="dibujo.svg"
+ style="display:inline"
+ inkscape:export-filename="/home/pmoleri/saludame/Saludame.activity/assets/kid/kid11.png"
+ inkscape:export-xdpi="72"
+ inkscape:export-ydpi="72">
+ <defs
+ id="defs4">
+ <inkscape:path-effect
+ effect="spiro"
+ id="path-effect2871"
+ is_visible="true" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective2828"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective2828-7"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective2883"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective2905"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective2934"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective3730"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective3338"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:path-effect
+ effect="spiro"
+ id="path-effect2871-8"
+ is_visible="true" />
+ <inkscape:perspective
+ id="perspective3408"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:path-effect
+ effect="spiro"
+ id="path-effect2871-8-2"
+ is_visible="true" />
+ <inkscape:perspective
+ id="perspective3478"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:path-effect
+ effect="spiro"
+ id="path-effect2871-8-2-7"
+ is_visible="true" />
+ <inkscape:perspective
+ id="perspective3478-3"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:path-effect
+ effect="spiro"
+ id="path-effect2871-8-2-2"
+ is_visible="true" />
+ <inkscape:perspective
+ id="perspective3589"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:path-effect
+ effect="spiro"
+ id="path-effect2871-8-2-2-2"
+ is_visible="true" />
+ <inkscape:perspective
+ id="perspective3689"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:path-effect
+ effect="spiro"
+ id="path-effect2871-8-5"
+ is_visible="true" />
+ <inkscape:perspective
+ id="perspective3760"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:path-effect
+ effect="spiro"
+ id="path-effect2871-8-5-3"
+ is_visible="true" />
+ <inkscape:perspective
+ id="perspective3860"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:path-effect
+ effect="spiro"
+ id="path-effect2871-8-5-3-0"
+ is_visible="true" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.35"
+ inkscape:cx="-769.02002"
+ inkscape:cy="157.64285"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1280"
+ inkscape:window-height="725"
+ inkscape:window-x="0"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Capa01"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-180.62061,-90.00505)"
+ style="display:inline">
+ <path
+ transform="matrix(1,0,0,0.98913042,16.334904,7.0598679)"
+ d="m 548.57143,518.07648 a 184.28572,131.42857 0 1 1 -368.57145,0 184.28572,131.42857 0 1 1 368.57145,0 z"
+ sodipodi:ry="131.42857"
+ sodipodi:rx="184.28572"
+ sodipodi:cy="518.07648"
+ sodipodi:cx="364.28571"
+ id="path3894"
+ style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline"
+ sodipodi:type="arc" />
+ <g
+ style="display:inline"
+ transform="translate(12.477753,1.7912207e-5)"
+ id="g3896">
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3898"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(61.714286,-2.8571429)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3900"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(231.71428,-2.8571429)" />
+ </g>
+ <g
+ style="display:inline"
+ transform="translate(25.9116,-12.000182)"
+ id="g3902">
+ <path
+ sodipodi:type="arc"
+ style="fill:#eecd74;fill-opacity:1;stroke:none"
+ id="path3904"
+ sodipodi:cx="365.71429"
+ sodipodi:cy="302.36218"
+ sodipodi:rx="117.14286"
+ sodipodi:ry="107.14285"
+ d="m 482.85715,302.36218 a 117.14286,107.14285 0 1 1 -234.28572,0 117.14286,107.14285 0 1 1 234.28572,0 z"
+ transform="translate(0,8)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3906"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z"
+ transform="translate(0,8)" />
+ <path
+ transform="translate(85.999987,7.1428528)"
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3908"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ transform="translate(43.714273,44.28571)"
+ sodipodi:type="arc"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3910"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714"
+ id="path3912"
+ inkscape:path-effect="#path-effect2871-8"
+ inkscape:original-d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714 z" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3914"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="translate(234.28571,68)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3916"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="translate(195.01011,-40.836482)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3918"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="matrix(-1,0,0,1,475.13231,70.55258)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3920"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="matrix(-1,0,0,1,514.40791,-38.2839)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3922"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,0.49641209,0,136.84824,325.41759)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3924"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,-0.49641209,0,603.6871,323.4646)" />
+ </g>
+ </g>
+ <g
+ transform="translate(-180.62061,-90.00505)"
+ id="g3790"
+ inkscape:groupmode="layer"
+ inkscape:label="Capa02"
+ style="display:none">
+ <path
+ transform="matrix(1,0,0,0.95108694,16.334904,31.7693)"
+ d="m 548.57143,518.07648 a 184.28572,131.42857 0 1 1 -368.57145,0 184.28572,131.42857 0 1 1 368.57145,0 z"
+ sodipodi:ry="131.42857"
+ sodipodi:rx="184.28572"
+ sodipodi:cy="518.07648"
+ sodipodi:cx="364.28571"
+ id="path3894-0"
+ style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline"
+ sodipodi:type="arc" />
+ <g
+ style="display:inline"
+ transform="translate(12.477753,1.7912207e-5)"
+ id="g3896-6">
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3898-5"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(61.714286,-2.8571429)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3900-1"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(231.71428,-2.8571429)" />
+ </g>
+ <g
+ style="display:inline"
+ transform="translate(25.911492,-2.000198)"
+ id="g3902-9">
+ <path
+ sodipodi:type="arc"
+ style="fill:#eecd74;fill-opacity:1;stroke:none"
+ id="path3904-4"
+ sodipodi:cx="365.71429"
+ sodipodi:cy="302.36218"
+ sodipodi:rx="117.14286"
+ sodipodi:ry="107.14285"
+ d="m 482.85715,302.36218 a 117.14286,107.14285 0 1 1 -234.28572,0 117.14286,107.14285 0 1 1 234.28572,0 z"
+ transform="translate(0,8)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3906-4"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z"
+ transform="translate(0,8)" />
+ <path
+ transform="translate(85.999987,7.1428528)"
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3908-6"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ transform="translate(43.714273,44.28571)"
+ sodipodi:type="arc"
+ style="fill:none;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3910-8"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714"
+ id="path3912-1"
+ inkscape:path-effect="#path-effect2871-8-2"
+ inkscape:original-d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714 z" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3914-0"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="translate(234.28571,68)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3916-8"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="translate(195.01011,-40.836482)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3918-1"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="matrix(-1,0,0,1,475.13231,70.55258)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3920-2"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="matrix(-1,0,0,1,514.40791,-38.2839)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3922-9"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,0.49641209,0,136.84824,325.41759)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3924-8"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,-0.49641209,0,603.6871,323.4646)" />
+ </g>
+ </g>
+ <g
+ inkscape:label="Capa03"
+ inkscape:groupmode="layer"
+ id="g3824"
+ transform="translate(-180.62061,-90.00505)"
+ style="display:none">
+ <path
+ transform="matrix(1,0,0,0.91304346,16.334904,56.478728)"
+ d="m 548.57143,518.07648 a 184.28572,131.42857 0 1 1 -368.57145,0 184.28572,131.42857 0 1 1 368.57145,0 z"
+ sodipodi:ry="131.42857"
+ sodipodi:rx="184.28572"
+ sodipodi:cy="518.07648"
+ sodipodi:cx="364.28571"
+ id="path3894-0-2"
+ style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline"
+ sodipodi:type="arc" />
+ <g
+ style="display:inline"
+ transform="translate(12.477753,1.7912207e-5)"
+ id="g3896-6-4">
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3898-5-7"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(61.714286,-2.8571429)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3900-1-4"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(231.71428,-2.8571429)" />
+ </g>
+ <g
+ style="display:inline"
+ transform="translate(25.9116,7.999802)"
+ id="g3902-9-1">
+ <path
+ sodipodi:type="arc"
+ style="fill:#eecd74;fill-opacity:1;stroke:none"
+ id="path3904-4-6"
+ sodipodi:cx="365.71429"
+ sodipodi:cy="302.36218"
+ sodipodi:rx="117.14286"
+ sodipodi:ry="107.14285"
+ d="m 482.85715,302.36218 a 117.14286,107.14285 0 1 1 -234.28572,0 117.14286,107.14285 0 1 1 234.28572,0 z"
+ transform="translate(0,8)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3906-4-1"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z"
+ transform="translate(0,8)" />
+ <path
+ transform="translate(85.999987,7.1428528)"
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3908-6-6"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ transform="translate(43.714273,44.28571)"
+ sodipodi:type="arc"
+ style="fill:none;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3910-8-8"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714"
+ id="path3912-1-7"
+ inkscape:path-effect="#path-effect2871-8-2-2"
+ inkscape:original-d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714 z" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3914-0-0"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="translate(234.28571,68)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3916-8-4"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="translate(195.01011,-40.836482)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3918-1-9"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="matrix(-1,0,0,1,475.13231,70.55258)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3920-2-69"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="matrix(-1,0,0,1,514.40791,-38.2839)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3922-9-5"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,0.49641209,0,136.84824,325.41759)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3924-8-1"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,-0.49641209,0,603.6871,323.4646)" />
+ </g>
+ </g>
+ <g
+ inkscape:label="Capa04"
+ inkscape:groupmode="layer"
+ id="g3858"
+ transform="translate(-180.62061,-90.00505)"
+ style="display:none">
+ <path
+ transform="matrix(1,0,0,0.95108694,16.334904,31.769298)"
+ d="m 548.57143,518.07648 a 184.28572,131.42857 0 1 1 -368.57145,0 184.28572,131.42857 0 1 1 368.57145,0 z"
+ sodipodi:ry="131.42857"
+ sodipodi:rx="184.28572"
+ sodipodi:cy="518.07648"
+ sodipodi:cx="364.28571"
+ id="path3894-0-0"
+ style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline"
+ sodipodi:type="arc" />
+ <g
+ style="display:inline"
+ transform="translate(12.477753,1.7912207e-5)"
+ id="g3896-6-7">
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3898-5-1"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(61.714286,-2.8571429)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3900-1-9"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(231.71428,-2.8571429)" />
+ </g>
+ <g
+ style="display:inline"
+ transform="translate(25.9116,-2.0002021)"
+ id="g3902-9-6">
+ <path
+ sodipodi:type="arc"
+ style="fill:#eecd74;fill-opacity:1;stroke:none"
+ id="path3904-4-3"
+ sodipodi:cx="365.71429"
+ sodipodi:cy="302.36218"
+ sodipodi:rx="117.14286"
+ sodipodi:ry="107.14285"
+ d="m 482.85715,302.36218 a 117.14286,107.14285 0 1 1 -234.28572,0 117.14286,107.14285 0 1 1 234.28572,0 z"
+ transform="translate(0,8)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3906-4-0"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z"
+ transform="translate(0,8)" />
+ <path
+ transform="translate(85.999987,7.1428528)"
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3908-6-1"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ transform="translate(43.714273,44.28571)"
+ sodipodi:type="arc"
+ style="fill:none;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3910-8-4"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714"
+ id="path3912-1-8"
+ inkscape:path-effect="#path-effect2871-8-2-7"
+ inkscape:original-d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714 z" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3914-0-6"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="translate(234.28571,68)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3916-8-6"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="translate(195.01011,-40.836482)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3918-1-6"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="matrix(-1,0,0,1,475.13231,70.55258)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3920-2-6"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="matrix(-1,0,0,1,514.40791,-38.2839)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3922-9-1"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,0.49641209,0,136.84824,325.41759)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3924-8-7"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,-0.49641209,0,603.6871,323.4646)" />
+ </g>
+ </g>
+ <g
+ transform="translate(-180.62061,-90.00505)"
+ id="g3892"
+ inkscape:groupmode="layer"
+ inkscape:label="Capa05"
+ style="display:none">
+ <path
+ transform="matrix(1,0,0,0.91304346,16.334904,46.47873)"
+ d="m 548.57143,518.07648 a 184.28572,131.42857 0 1 1 -368.57145,0 184.28572,131.42857 0 1 1 368.57145,0 z"
+ sodipodi:ry="131.42857"
+ sodipodi:rx="184.28572"
+ sodipodi:cy="518.07648"
+ sodipodi:cx="364.28571"
+ id="path3894-0-2-3"
+ style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline"
+ sodipodi:type="arc" />
+ <g
+ style="display:inline"
+ transform="translate(12.477753,-9.9999821)"
+ id="g3896-6-4-8">
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3898-5-7-0"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(61.714286,-2.8571429)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3900-1-4-5"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(231.71428,-2.8571429)" />
+ </g>
+ <g
+ style="display:inline"
+ transform="translate(25.9116,-2.0002021)"
+ id="g3902-9-1-2">
+ <path
+ sodipodi:type="arc"
+ style="fill:#eecd74;fill-opacity:1;stroke:none"
+ id="path3904-4-6-5"
+ sodipodi:cx="365.71429"
+ sodipodi:cy="302.36218"
+ sodipodi:rx="117.14286"
+ sodipodi:ry="107.14285"
+ d="m 482.85715,302.36218 a 117.14286,107.14285 0 1 1 -234.28572,0 117.14286,107.14285 0 1 1 234.28572,0 z"
+ transform="translate(0,8)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3906-4-1-1"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z"
+ transform="translate(0,8)" />
+ <path
+ transform="translate(85.999987,7.1428528)"
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3908-6-6-5"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ transform="translate(43.714273,44.28571)"
+ sodipodi:type="arc"
+ style="fill:none;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3910-8-8-1"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.9999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714"
+ id="path3912-1-7-1"
+ inkscape:path-effect="#path-effect2871-8-2-2-2"
+ inkscape:original-d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714 z" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3914-0-0-5"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="translate(234.28571,68)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3916-8-4-8"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="translate(195.01011,-40.836482)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3918-1-9-9"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="matrix(-1,0,0,1,475.13231,70.55258)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3920-2-69-3"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="matrix(-1,0,0,1,514.40791,-38.2839)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3922-9-5-3"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,0.49641209,0,136.84824,325.41759)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3924-8-1-6"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,-0.49641209,0,603.6871,323.4646)" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Capa06"
+ style="display:none">
+ <path
+ transform="matrix(1,0,0,0.98913042,-164.28571,-102.94518)"
+ d="m 548.57143,518.07648 a 184.28572,131.42857 0 1 1 -368.57145,0 184.28572,131.42857 0 1 1 368.57145,0 z"
+ sodipodi:ry="131.42857"
+ sodipodi:rx="184.28572"
+ sodipodi:cy="518.07648"
+ sodipodi:cx="364.28571"
+ id="path3894-4"
+ style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline"
+ sodipodi:type="arc" />
+ <g
+ style="display:inline"
+ transform="translate(-168.14286,-110.00503)"
+ id="g3896-68">
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3898-1"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(61.714286,-2.8571429)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3900-0"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(231.71428,-2.8571429)" />
+ </g>
+ <g
+ style="display:inline"
+ transform="translate(-154.70901,-122.00523)"
+ id="g3902-5">
+ <path
+ sodipodi:type="arc"
+ style="fill:#eecd74;fill-opacity:1;stroke:none"
+ id="path3904-1"
+ sodipodi:cx="365.71429"
+ sodipodi:cy="302.36218"
+ sodipodi:rx="117.14286"
+ sodipodi:ry="107.14285"
+ d="m 482.85715,302.36218 a 117.14286,107.14285 0 1 1 -234.28572,0 117.14286,107.14285 0 1 1 234.28572,0 z"
+ transform="translate(0,8)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3906-8"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z"
+ transform="translate(0,8)" />
+ <path
+ transform="translate(85.999987,7.1428528)"
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3908-9"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ transform="translate(43.714273,44.28571)"
+ sodipodi:type="arc"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3910-1"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714"
+ id="path3912-8"
+ inkscape:path-effect="#path-effect2871-8-5"
+ inkscape:original-d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714 z" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3914-1"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="translate(234.28571,68)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3916-0"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="translate(195.01011,-40.836482)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3918-9"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="matrix(-1,0,0,1,475.13231,70.55258)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3920-7"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="matrix(-1,0,0,1,514.40791,-38.2839)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3922-3"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,0.49641209,0,136.84824,325.41759)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3924-9"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,-0.49641209,0,603.6871,323.4646)" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Capa07"
+ style="display:none">
+ <path
+ transform="matrix(1,0,0,0.98913042,-164.28571,-112.94518)"
+ d="m 548.57143,518.07648 a 184.28572,131.42857 0 1 1 -368.57145,0 184.28572,131.42857 0 1 1 368.57145,0 z"
+ sodipodi:ry="131.42857"
+ sodipodi:rx="184.28572"
+ sodipodi:cy="518.07648"
+ sodipodi:cx="364.28571"
+ id="path3894-4-6"
+ style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline"
+ sodipodi:type="arc" />
+ <g
+ style="display:inline"
+ transform="translate(-168.14286,-120.00503)"
+ id="g3896-68-4">
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3898-1-7"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(61.714286,-2.8571429)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3900-0-1"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(231.71428,-2.8571429)" />
+ </g>
+ <g
+ style="display:inline"
+ transform="translate(-154.70901,-132.00523)"
+ id="g3902-5-5">
+ <path
+ sodipodi:type="arc"
+ style="fill:#eecd74;fill-opacity:1;stroke:none"
+ id="path3904-1-9"
+ sodipodi:cx="365.71429"
+ sodipodi:cy="302.36218"
+ sodipodi:rx="117.14286"
+ sodipodi:ry="107.14285"
+ d="m 482.85715,302.36218 a 117.14286,107.14285 0 1 1 -234.28572,0 117.14286,107.14285 0 1 1 234.28572,0 z"
+ transform="translate(0,8)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3906-8-4"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z"
+ transform="translate(0,8)" />
+ <path
+ transform="translate(85.999987,7.1428528)"
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3908-9-4"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ transform="translate(43.714273,44.28571)"
+ sodipodi:type="arc"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3910-1-2"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714"
+ id="path3912-8-0"
+ inkscape:path-effect="#path-effect2871-8-5-3"
+ inkscape:original-d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714 z" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3914-1-0"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="translate(234.28571,68)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3916-0-0"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="translate(195.01011,-40.836482)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3918-9-0"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="matrix(-1,0,0,1,475.13231,70.55258)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3920-7-8"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="matrix(-1,0,0,1,514.40791,-38.2839)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3922-3-1"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,0.49641209,0,136.84824,325.41759)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3924-9-7"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,-0.49641209,0,603.6871,323.4646)" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Capa08"
+ style="display:none">
+ <path
+ transform="matrix(1,0,0,0.98913042,-164.28571,-122.94518)"
+ d="m 548.57143,518.07648 a 184.28572,131.42857 0 1 1 -368.57145,0 184.28572,131.42857 0 1 1 368.57145,0 z"
+ sodipodi:ry="131.42857"
+ sodipodi:rx="184.28572"
+ sodipodi:cy="518.07648"
+ sodipodi:cx="364.28571"
+ id="path3894-4-6-7"
+ style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline"
+ sodipodi:type="arc" />
+ <g
+ style="display:inline"
+ transform="translate(-168.14286,-130.00503)"
+ id="g3896-68-4-6">
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3898-1-7-6"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(61.714286,-2.8571429)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3900-0-1-8"
+ sodipodi:cx="221.42857"
+ sodipodi:cy="656.64789"
+ sodipodi:rx="70"
+ sodipodi:ry="35.714287"
+ d="m 291.42857,656.64789 a 70,35.714287 0 1 1 -140,0 70,35.714287 0 1 1 140,0 z"
+ transform="translate(231.71428,-2.8571429)" />
+ </g>
+ <g
+ style="display:inline"
+ transform="translate(-154.70901,-142.00523)"
+ id="g3902-5-5-1">
+ <path
+ sodipodi:type="arc"
+ style="fill:#eecd74;fill-opacity:1;stroke:none"
+ id="path3904-1-9-6"
+ sodipodi:cx="365.71429"
+ sodipodi:cy="302.36218"
+ sodipodi:rx="117.14286"
+ sodipodi:ry="107.14285"
+ d="m 482.85715,302.36218 a 117.14286,107.14285 0 1 1 -234.28572,0 117.14286,107.14285 0 1 1 234.28572,0 z"
+ transform="translate(0,8)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3906-8-4-8"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z"
+ transform="translate(0,8)" />
+ <path
+ transform="translate(85.999987,7.1428528)"
+ sodipodi:type="arc"
+ style="fill:#008000;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3908-9-4-2"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ transform="translate(43.714273,44.28571)"
+ sodipodi:type="arc"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3910-1-2-5"
+ sodipodi:cx="318.57144"
+ sodipodi:cy="265.21933"
+ sodipodi:rx="15.714286"
+ sodipodi:ry="12.857142"
+ d="m 334.28573,265.21933 a 15.714286,12.857142 0 1 1 -31.42857,0 15.714286,12.857142 0 1 1 31.42857,0 z" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714"
+ id="path3912-8-0-3"
+ inkscape:path-effect="#path-effect2871-8-5-3-0"
+ inkscape:original-d="m 294.28571,357.50504 77.14286,40 65.71429,-42.85714 -142.85715,2.85714 z" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3914-1-0-7"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="translate(234.28571,68)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3916-0-0-3"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="translate(195.01011,-40.836482)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#552200;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3918-9-0-5"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="85.952049"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="-2.767259"
+ sodipodi:arg2="-1.7200615"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 110.2538,128.58929 294.0117,160.8866 258.20641,222.37947 110.2538,128.58929 z"
+ transform="matrix(-1,0,0,1,475.13231,70.55258)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#803300;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3920-7-8-5"
+ sodipodi:sides="3"
+ sodipodi:cx="265.71429"
+ sodipodi:cy="180.93361"
+ sodipodi:r1="78.037148"
+ sodipodi:r2="29.311834"
+ sodipodi:arg1="1.1562894"
+ sodipodi:arg2="2.2034869"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="-1"
+ d="M 293.89131,261.3923 146.95708,247.12584 295.87727,191.7905 293.89131,261.3923 z"
+ transform="matrix(-1,0,0,1,514.40791,-38.2839)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3922-3-1-1"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,0.49641209,0,136.84824,325.41759)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#120072;fill-opacity:1;stroke:none"
+ id="path3924-9-7-8"
+ sodipodi:sides="3"
+ sodipodi:cx="-211.42857"
+ sodipodi:cy="366.64789"
+ sodipodi:r1="73.01104"
+ sodipodi:r2="90.407242"
+ sodipodi:arg1="0.53370819"
+ sodipodi:arg2="1.5809058"
+ inkscape:flatsided="true"
+ inkscape:rounded="1"
+ inkscape:randomized="-0.424"
+ d="m -161.60704,405.20778 c -4.34178,125.30531 -28.10828,82.00324 -90.15871,-38.14268 -62.05044,-120.14592 -80.6732,-116.15677 43.82877,-98.35238 124.501966,17.80438 50.67172,11.18974 46.32994,136.49506 z"
+ transform="matrix(0,-0.5649674,-0.49641209,0,603.6871,323.4646)" />
+ </g>
+ </g>
+</svg>
diff --git a/Saludame.activity/assets/kid/kid01.png b/Saludame.activity/assets/kid/kid01.png
new file mode 100644
index 0000000..ec73570
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid01.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid02.png b/Saludame.activity/assets/kid/kid02.png
new file mode 100644
index 0000000..eea5e04
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid02.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid03.png b/Saludame.activity/assets/kid/kid03.png
new file mode 100644
index 0000000..faa5325
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid03.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid04.png b/Saludame.activity/assets/kid/kid04.png
new file mode 100644
index 0000000..2812baf
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid04.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid05.png b/Saludame.activity/assets/kid/kid05.png
new file mode 100644
index 0000000..3aca31c
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid05.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid06.png b/Saludame.activity/assets/kid/kid06.png
new file mode 100644
index 0000000..293d6fe
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid06.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid07.png b/Saludame.activity/assets/kid/kid07.png
new file mode 100644
index 0000000..839d5e6
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid07.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid08.png b/Saludame.activity/assets/kid/kid08.png
new file mode 100644
index 0000000..7d8c9c0
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid08.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid09.png b/Saludame.activity/assets/kid/kid09.png
new file mode 100644
index 0000000..666c28b
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid09.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid10.png b/Saludame.activity/assets/kid/kid10.png
new file mode 100644
index 0000000..f07424c
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid10.png
Binary files differ
diff --git a/Saludame.activity/assets/kid/kid11.png b/Saludame.activity/assets/kid/kid11.png
new file mode 100644
index 0000000..4c41aaa
--- /dev/null
+++ b/Saludame.activity/assets/kid/kid11.png
Binary files differ
diff --git a/Saludame.activity/assets/sound/blip.ogg b/Saludame.activity/assets/sound/blip.ogg
new file mode 100644
index 0000000..3219bbe
--- /dev/null
+++ b/Saludame.activity/assets/sound/blip.ogg
Binary files differ
diff --git a/Saludame.activity/assets/sound/blip.wav b/Saludame.activity/assets/sound/blip.wav
new file mode 100644
index 0000000..587c32b
--- /dev/null
+++ b/Saludame.activity/assets/sound/blip.wav
Binary files differ
diff --git a/Saludame.activity/game.py b/Saludame.activity/game.py
new file mode 100644
index 0000000..b1901c7
--- /dev/null
+++ b/Saludame.activity/game.py
@@ -0,0 +1,95 @@
+# -*- coding: utf-8 -*-
+
+import pygame
+import logging
+from gettext import gettext as _
+import os
+
+import window
+import animation
+import menu
+
+log = logging.getLogger('saludame')
+log.setLevel(logging.DEBUG)
+
+MAX_FPS = 18 # Max frames per second
+SLEEP_TIMEOUT = 30 # Seconds until the PauseScreen if no events show up
+
+def main(fromSugar):
+ """Main function of the game.
+
+ This function initializes the game and enters the PyGame main loop.
+ """
+
+ if fromSugar:
+ import gtk
+
+ # Optimizes sound quality and buffer for quick loading
+ pygame.mixer.pre_init(22050, -16, 8, 256)
+
+ # Inits PyGame module
+ pygame.init()
+
+ target_size = (1000, 700)
+
+ if not fromSugar:
+ screen = pygame.display.set_mode(target_size)
+
+ screen = pygame.display.get_surface()
+ assert screen, "No screen"
+
+ pygame.display.update()
+
+ # This clock is used to keep the game at the desired FPS.
+ clock = pygame.time.Clock()
+
+ windows = []
+ windows.append(window.BlinkWindow(pygame.Rect((700, 0),(300,140)), 5, pygame.Color("red")))
+ windows.append(window.BlinkWindow(pygame.Rect((700, 150),(300,140)), 5, pygame.Color("blue")))
+ windows.append(window.StatusWindow(pygame.Rect((700, 300),(300,140)), 2, pygame.Color("gray")))
+ windows.append(window.MainWindow(pygame.Rect((0, 0),(600,500)), 1))
+ windows.append(animation.Apple(pygame.Rect((150, 500),(150,172)), 10))
+ windows.append(menu.Menu(pygame.Rect((150, 500),(150,172)), 1))
+ windows.append(animation.FPS(pygame.Rect((650, 80),(50,20)), 15, clock))
+
+ frames = 0
+
+ # Main loop
+ update = True # The first time the screen need to be updated
+ running = True
+ while running:
+
+ if fromSugar:
+ # Pump GTK messages.
+ while gtk.events_pending():
+ gtk.main_iteration()
+
+ # Waits for events, if none the game pauses:
+ # http://wiki.laptop.org/go/Game_development_HOWTO#Reducing_CPU_Load
+ milliseconds = clock.tick(MAX_FPS) # waits if the game is running faster than MAX_FPS
+
+ events = pygame.event.get()
+
+ if events:
+ for event in events:
+ if event.type == pygame.QUIT:
+ running = False
+ elif event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
+ running = False
+
+ changes = []
+ for win in windows:
+ if frames % win.frame_rate == 0:
+ changes.extend(win.draw(screen))
+
+ if changes:
+ pygame.display.update(changes)
+ update = False
+
+ frames += 1
+
+ # Una vez que sale del loop manda la senal de quit para que cierre la ventana
+ pygame.quit()
+
+if __name__ == "__main__":
+ main(False)
diff --git a/Saludame.activity/menu.py b/Saludame.activity/menu.py
new file mode 100755
index 0000000..63a1afb
--- /dev/null
+++ b/Saludame.activity/menu.py
@@ -0,0 +1,71 @@
+# -*- coding: utf-8 -*-
+
+# This module offers a menu.
+# Items are displayed in a circle with an exit button as a center.
+# The diameter of the circle will vary with the quantity of items
+# Items will be a concatenation of an icon and a name
+# When mouse over an item a description will be shown
+
+import pygame
+import os
+import math
+
+BLACK = pygame.Color("black")
+
+example = [
+ ("name", "icon.png", "tooltip", None),
+ ("eat", "icon.png", "comer algo", [
+ ("apple", "icon.png", "Eat an apple", None),
+ ("meat", "icon.png", "Eat meat", None)
+ ]),
+ ("sport", "icon.png", "Do sports...", [
+ ("run", "icon.png", "Run", None),
+ ("jump rope", "icon.png", "Jump the rope", None),
+ ("footbal", "icon.png", "Play footbal", None)
+ ]),
+ ("sleep", "icon.png", "Go to sleep", None)
+]
+
+class Menu:
+
+ def __init__(self, rect, frame_rate):
+ self.rect = rect
+ self.frame_rate = frame_rate
+ self.menu = example
+
+ self.path = None # Path of items selected
+
+ # Test
+ self.path = ["sport"]
+ self.calculate()
+
+ def calculate(self):
+ """
+ creates a rect list with the coordinates of the menu options to be displayed
+ """
+
+ menu = self.menu
+ for entry in self.path:
+ parent = menu
+ menu = [item[3] for item in menu if item[0] == entry][0] # Selects the submenu named entry
+
+ qty = len(menu)
+
+ angle = (2 * math.pi) / qty # Angle beetwen options (in radians)
+ radius = 100
+ width, height = 120, 30
+ center = pygame.Rect(200, 250, width, height)
+
+ self.rect_list = [center]
+
+ current_angle = math.pi / 2
+ for item in menu:
+ rect = center.copy()
+ rect.center = rect.center[0] + math.cos(current_angle)*radius, rect.center[1] + math.sin(current_angle)*radius
+ self.rect_list.append(rect)
+ current_angle += angle
+
+ def draw(self, screen):
+ for rect in self.rect_list:
+ screen.fill(BLACK, rect)
+ return self.rect_list
diff --git a/Saludame.activity/setup.py b/Saludame.activity/setup.py
new file mode 100644
index 0000000..530f97c
--- /dev/null
+++ b/Saludame.activity/setup.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+from sugar.activity import bundlebuilder
+
+bundlebuilder.start()
diff --git a/Saludame.activity/sugargame/__init__.py b/Saludame.activity/sugargame/__init__.py
new file mode 100644
index 0000000..439eb0c
--- /dev/null
+++ b/Saludame.activity/sugargame/__init__.py
@@ -0,0 +1 @@
+__version__ = '1.1'
diff --git a/Saludame.activity/sugargame/canvas.py b/Saludame.activity/sugargame/canvas.py
new file mode 100644
index 0000000..05f9a9e
--- /dev/null
+++ b/Saludame.activity/sugargame/canvas.py
@@ -0,0 +1,63 @@
+# -*- coding: utf-8 -*-
+import os
+import gtk
+import gobject
+import pygame
+import event
+
+CANVAS = None
+
+class PygameCanvas(gtk.EventBox):
+
+ """
+ mainwindow is the activity intself.
+ """
+ def __init__(self, mainwindow, pointer_hint = True):
+ gtk.EventBox.__init__(self)
+
+ global CANVAS
+ assert CANVAS == None, "Only one PygameCanvas can be created, ever."
+ CANVAS = self
+
+ # Initialize Events translator before widget gets "realized".
+ self.translator = event.Translator(mainwindow, self)
+
+ self._mainwindow = mainwindow
+
+ self.set_flags(gtk.CAN_FOCUS)
+
+ self._socket = gtk.Socket()
+ self.add(self._socket)
+ self.show_all()
+
+ def run_pygame(self, main_fn):
+ # Run the main loop after a short delay. The reason for the delay is that the
+ # Sugar activity is not properly created until after its constructor returns.
+ # If the Pygame main loop is called from the activity constructor, the
+ # constructor never returns and the activity freezes.
+ gobject.idle_add(self._run_pygame_cb, main_fn)
+
+ def _run_pygame_cb(self, main_fn):
+ assert pygame.display.get_surface() is None, "PygameCanvas.run_pygame can only be called once."
+
+ # Preinitialize Pygame with the X window ID.
+ assert pygame.display.get_init() == False, "Pygame must not be initialized before calling PygameCanvas.run_pygame."
+ os.environ['SDL_WINDOWID'] = str(self._socket.get_id())
+ pygame.init()
+
+ # Restore the default cursor.
+ self._socket.window.set_cursor(None)
+
+ # Initialize the Pygame window.
+ r = self.get_allocation()
+ pygame.display.set_mode((r.width, r.height), pygame.RESIZABLE)
+
+ # Hook certain Pygame functions with GTK equivalents.
+ self.translator.hook_pygame()
+
+ # Run the Pygame main loop.
+ main_fn()
+ return False
+
+ def get_pygame_widget(self):
+ return self._socket
diff --git a/Saludame.activity/sugargame/event.py b/Saludame.activity/sugargame/event.py
new file mode 100644
index 0000000..60eeb47
--- /dev/null
+++ b/Saludame.activity/sugargame/event.py
@@ -0,0 +1,280 @@
+# -*- coding: utf-8 -*-
+
+import gtk
+import gobject
+import pygame
+import pygame.event
+import logging
+
+log = logging.getLogger('Sugargame')
+log.setLevel(logging.DEBUG)
+
+class _MockEvent(object):
+ def __init__(self, keyval):
+ self.keyval = keyval
+
+class Translator(object):
+ key_trans = {
+ 'Alt_L': pygame.K_LALT,
+ 'Alt_R': pygame.K_RALT,
+ 'Control_L': pygame.K_LCTRL,
+ 'Control_R': pygame.K_RCTRL,
+ 'Shift_L': pygame.K_LSHIFT,
+ 'Shift_R': pygame.K_RSHIFT,
+ 'Super_L': pygame.K_LSUPER,
+ 'Super_R': pygame.K_RSUPER,
+ 'KP_Page_Up' : pygame.K_KP9,
+ 'KP_Page_Down' : pygame.K_KP3,
+ 'KP_End' : pygame.K_KP1,
+ 'KP_Home' : pygame.K_KP7,
+ 'KP_Up' : pygame.K_KP8,
+ 'KP_Down' : pygame.K_KP2,
+ 'KP_Left' : pygame.K_KP4,
+ 'KP_Right' : pygame.K_KP6,
+
+ }
+
+ mod_map = {
+ pygame.K_LALT: pygame.KMOD_LALT,
+ pygame.K_RALT: pygame.KMOD_RALT,
+ pygame.K_LCTRL: pygame.KMOD_LCTRL,
+ pygame.K_RCTRL: pygame.KMOD_RCTRL,
+ pygame.K_LSHIFT: pygame.KMOD_LSHIFT,
+ pygame.K_RSHIFT: pygame.KMOD_RSHIFT,
+ }
+
+ def __init__(self, mainwindow, inner_evb):
+ """Initialise the Translator with the windows to which to listen"""
+ self._mainwindow = mainwindow
+ self._inner_evb = inner_evb
+
+ # Enable events
+ # (add instead of set here because the main window is already realized)
+ self._mainwindow.add_events(
+ gtk.gdk.KEY_PRESS_MASK | \
+ gtk.gdk.KEY_RELEASE_MASK \
+ )
+
+ self._inner_evb.set_events(
+ gtk.gdk.POINTER_MOTION_MASK | \
+ gtk.gdk.POINTER_MOTION_HINT_MASK | \
+ gtk.gdk.BUTTON_MOTION_MASK | \
+ gtk.gdk.BUTTON_PRESS_MASK | \
+ gtk.gdk.BUTTON_RELEASE_MASK
+ )
+
+ self._mainwindow.set_flags(gtk.CAN_FOCUS)
+ self._inner_evb.set_flags(gtk.CAN_FOCUS)
+
+ # Callback functions to link the event systems
+ self._mainwindow.connect('unrealize', self._quit_cb)
+ self._mainwindow.connect('key_press_event', self._keydown_cb)
+ self._mainwindow.connect('key_release_event', self._keyup_cb)
+ self._inner_evb.connect('key_press_event', self._keydown_cb)
+ self._inner_evb.connect('key_release_event', self._keyup_cb)
+ self._inner_evb.connect('button_press_event', self._mousedown_cb)
+ self._inner_evb.connect('button_release_event', self._mouseup_cb)
+ self._inner_evb.connect('motion-notify-event', self._mousemove_cb)
+ self._inner_evb.connect('expose-event', self._expose_cb)
+ self._inner_evb.connect('configure-event', self._resize_cb)
+
+ # Internal data
+ self.__stopped = False
+ self.__keystate = [0] * 323
+ self.__button_state = [0,0,0]
+ self.__mouse_pos = (0,0)
+ self.__repeat = (None, None)
+ self.__held = set()
+ self.__held_time_left = {}
+ self.__held_last_time = {}
+ self.__tick_id = None
+
+ def hook_pygame(self):
+ pygame.key.get_pressed = self._get_pressed
+ pygame.key.set_repeat = self._set_repeat
+ pygame.mouse.get_pressed = self._get_mouse_pressed
+ pygame.mouse.get_pos = self._get_mouse_pos
+
+ self.real_pygame_set_mode = pygame.display.set_mode
+ pygame.display.set_mode = self._set_display_mode
+
+
+ def _expose_cb(self, event, widget):
+ if pygame.display.get_init():
+ pygame.event.post(pygame.event.Event(pygame.VIDEOEXPOSE))
+ return True
+
+ def _resize_cb(self, widget, event):
+ evt = pygame.event.Event(pygame.VIDEORESIZE,
+ size=(event.width,event.height), width=event.width, height=event.height)
+ pygame.event.post(evt)
+ return False # continue processing
+
+ def _quit_cb(self, data=None):
+ self.__stopped = True
+ pygame.event.post(pygame.event.Event(pygame.QUIT))
+
+ def _keydown_cb(self, widget, event):
+ key = event.keyval
+ if key in self.__held:
+ return True
+ else:
+ if self.__repeat[0] is not None:
+ self.__held_last_time[key] = pygame.time.get_ticks()
+ self.__held_time_left[key] = self.__repeat[0]
+ self.__held.add(key)
+
+ return self._keyevent(widget, event, pygame.KEYDOWN)
+
+ def _keyup_cb(self, widget, event):
+ key = event.keyval
+ if self.__repeat[0] is not None:
+ if key in self.__held:
+ # This is possibly false if set_repeat() is called with a key held
+ del self.__held_time_left[key]
+ del self.__held_last_time[key]
+ self.__held.discard(key)
+
+ return self._keyevent(widget, event, pygame.KEYUP)
+
+ def _keymods(self):
+ mod = 0
+ for key_val, mod_val in self.mod_map.iteritems():
+ mod |= self.__keystate[key_val] and mod_val
+ return mod
+
+ def _keyevent(self, widget, event, type):
+ key = gtk.gdk.keyval_name(event.keyval)
+ if key is None:
+ log.warning("Missing key %s" % event.keyval)
+ # No idea what this key is.
+ return False
+
+ log.debug("Key event. Key: %s, Type: %s" % (key, type))
+
+ keycode = None
+ if key in self.key_trans:
+ keycode = self.key_trans[key]
+ elif hasattr(pygame, 'K_'+key.upper()):
+ keycode = getattr(pygame, 'K_'+key.upper())
+ elif hasattr(pygame, 'K_'+key.lower()):
+ keycode = getattr(pygame, 'K_'+key.lower())
+ elif key == 'XF86Start':
+ # view source request, specially handled...
+ self._mainwindow.view_source()
+ else:
+ print 'Key %s unrecognized' % key
+
+ if keycode is not None:
+ if type == pygame.KEYDOWN:
+ mod = self._keymods()
+ self.__keystate[keycode] = type == pygame.KEYDOWN
+ if type == pygame.KEYUP:
+ mod = self._keymods()
+ ukey = unichr(gtk.gdk.keyval_to_unicode(event.keyval))
+ if ukey == '\000':
+ ukey = ''
+ evt = pygame.event.Event(type, key=keycode, unicode=ukey, mod=mod)
+ self._post(evt)
+
+ return True
+
+ def _get_pressed(self):
+ return self.__keystate
+
+ def _get_mouse_pressed(self):
+ return self.__button_state
+
+ def _mousedown_cb(self, widget, event):
+ self.__button_state[event.button-1] = 1
+ return self._mouseevent(widget, event, pygame.MOUSEBUTTONDOWN)
+
+ def _mouseup_cb(self, widget, event):
+ self.__button_state[event.button-1] = 0
+ return self._mouseevent(widget, event, pygame.MOUSEBUTTONUP)
+
+ def _mouseevent(self, widget, event, type):
+ evt = pygame.event.Event(type, button=event.button, pos=(event.x, event.y))
+ self._post(evt)
+ return True
+
+ def _mousemove_cb(self, widget, event):
+ # From http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/
+ # if this is a hint, then let's get all the necessary
+ # information, if not it's all we need.
+ if event.is_hint:
+ x, y, state = event.window.get_pointer()
+ else:
+ x = event.x
+ y = event.y
+ state = event.state
+
+ rel = (x - self.__mouse_pos[0], y - self.__mouse_pos[1])
+ self.__mouse_pos = (x, y)
+
+ self.__button_state = [
+ state & gtk.gdk.BUTTON1_MASK and 1 or 0,
+ state & gtk.gdk.BUTTON2_MASK and 1 or 0,
+ state & gtk.gdk.BUTTON3_MASK and 1 or 0,
+ ]
+
+ evt = pygame.event.Event(pygame.MOUSEMOTION,
+ pos=self.__mouse_pos, rel=rel, buttons=self.__button_state)
+ self._post(evt)
+ return True
+
+ def _tick_cb(self):
+ cur_time = pygame.time.get_ticks()
+ for key in self.__held:
+ delta = cur_time - self.__held_last_time[key]
+ self.__held_last_time[key] = cur_time
+
+ self.__held_time_left[key] -= delta
+ if self.__held_time_left[key] <= 0:
+ self.__held_time_left[key] = self.__repeat[1]
+ self._keyevent(None, _MockEvent(key), pygame.KEYDOWN)
+
+ return True
+
+ def _set_repeat(self, delay=None, interval=None):
+ if delay is not None and self.__repeat[0] is None:
+ self.__tick_id = gobject.timeout_add(10, self._tick_cb)
+ elif delay is None and self.__repeat[0] is not None:
+ gobject.source_remove(self.__tick_id)
+ self.__repeat = (delay, interval)
+
+ def _get_mouse_pos(self):
+ return self.__mouse_pos
+
+ def _post(self, evt):
+ try:
+ pygame.event.post(evt)
+ except pygame.error, e:
+ if str(e) == 'Event queue full':
+ print "Event queue full!"
+ pass
+ else:
+ raise e
+
+ def _set_display_mode(self, resolution=(0,0), flags=0, depth=0):
+ """ Hook version of pygame.event.set_mode
+
+ It calls the real pygame function and then takes the new resolution
+ and centers the inner event box in the main window.
+ """
+ self.real_pygame_set_mode(resolution, flags, depth)
+
+ width, height = resolution
+ window_rect = self._mainwindow.get_allocation()
+
+ x, y = 0, 0
+
+ if width < window_rect.width:
+ x = (window_rect.width - width) / 2.0
+
+ if height < window_rect.height:
+ y = (window_rect.height - height) / 2.0
+
+ rect = gtk.gdk.Rectangle(x, y, width, height)
+
+ self._inner_evb.size_allocate(rect)
diff --git a/Saludame.activity/window.py b/Saludame.activity/window.py
new file mode 100644
index 0000000..5f7ea67
--- /dev/null
+++ b/Saludame.activity/window.py
@@ -0,0 +1,128 @@
+# -*- coding: utf-8 -*-
+
+import pygame
+import os
+
+BLACK = pygame.Color("black")
+
+class Window:
+
+ def __init__(self, rect, frame_rate, background_color):
+ self.rect = rect
+ self.frame_rate = frame_rate
+ self.surface = pygame.Surface((rect.width, rect.height))
+ self.background_color = background_color
+
+ self.surface.fill(self.background_color)
+
+ def draw(self, screen):
+ self.surface.fill(self.background_color)
+ screen.blit(self.surface, self.rect)
+ return [self.rect]
+
+
+class BlinkWindow(Window):
+
+ def __init__(self, rect, frame_rate, background_color):
+ Window.__init__(self, rect, frame_rate, background_color)
+ self.par = True
+
+ def draw(self, screen):
+ self.par = not self.par
+
+ if self.par:
+ self.surface.fill(self.background_color)
+ else:
+ self.surface.fill(BLACK)
+
+ screen.blit(self.surface, self.rect)
+
+ return [self.rect]
+
+
+class StatusWindow(Window):
+
+ def __init__(self, rect, frame_rate, background_color):
+ self.rect = rect
+ self.frame_rate = frame_rate
+ self.surface = pygame.Surface(rect.size)
+ self.background_color = background_color
+
+ self.surface.fill(self.background_color)
+
+ self.bars = []
+ self.bars.append(IdleStatusBar(pygame.Rect(20, 15, 260, 30), pygame.Color("green")))
+ self.bars.append(IdleStatusBar(pygame.Rect(20, 55, 260, 30), pygame.Color("blue"), 35))
+ self.bars.append(IdleStatusBar(pygame.Rect(20, 95, 260, 30), pygame.Color("yellow"), 65))
+
+ def draw(self, screen):
+ self.surface.fill(self.background_color)
+
+ for bar in self.bars:
+ bar.draw(self.surface)
+
+ screen.blit(self.surface, self.rect)
+
+ return [self.rect]
+
+
+class StatusBar:
+
+ def __init__(self, rect, color, value = 0):
+ self.rect = rect
+ self.color = color
+ self.surface = pygame.Surface(rect.size)
+ self.value = value
+
+
+class IdleStatusBar(StatusBar):
+
+ def __init__(self, rect, color, value = 0):
+ StatusBar.__init__(self, rect, color, value)
+
+ def draw(self, screen):
+ self.value = (self.value + 1) % 101
+ factor = self.value / 100.0
+
+ rect = pygame.Rect((0,0), self.rect.size)
+ rect.width *= factor
+
+ self.surface.fill(BLACK)
+ self.surface.fill(self.color, rect)
+ screen.blit(self.surface, self.rect)
+
+ return [self.rect]
+
+import animation
+
+BACKGROUND_PATH = os.path.normpath("assets/background/background.png")
+
+class MainWindow(Window):
+
+ def __init__(self, rect, frame_rate):
+ Window.__init__(self, rect, frame_rate, BLACK)
+
+ self.first = True
+
+ self.background = pygame.image.load(BACKGROUND_PATH).convert()
+
+ kid_rect = pygame.Rect((100, 20),(350,480))
+ kid_background = self.background.subsurface(kid_rect)
+
+ self.windows = []
+ self.windows.append(animation.Kid(kid_rect, kid_background, 1))
+
+ def draw(self, screen):
+
+ if self.first:
+ # First time blits the entire background
+ self.first = False
+ screen.blit(self.background, self.rect)
+ return [self.rect]
+ else:
+ # Next blits only the changed areas
+ changes = []
+ for win in self.windows:
+ changes.extend(win.draw(screen))
+
+ return changes #[rect.move(self.rect.left, self.rect.top) for rect in changes]