merge default qmlfrontend
authorunc0rr
Sat, 03 Jan 2015 23:46:26 +0300
branchqmlfrontend
changeset 10748 dc587913987c
parent 10616 20a2d5e6930a (current diff)
parent 10746 c882355f7bc3 (diff)
child 10751 97d00ace1aed
merge default
CMakeLists.txt
gameServer/OfficialServer/checker.hs
hedgewars/SDLh.pas
hedgewars/hwengine.pas
hedgewars/uIO.pas
hedgewars/uMisc.pas
hedgewars/uTypes.pas
hedgewars/uUtils.pas
hedgewars/uVariables.pas
share/hedgewars/Data/Maps/Basketball/map.png
share/hedgewars/Data/Maps/Basketball/mask.png
share/hedgewars/Data/Scripts/Draw.lua
--- a/CMakeLists.txt	Thu Dec 18 00:03:53 2014 +0300
+++ b/CMakeLists.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -230,9 +230,8 @@
 
 include(${CMAKE_MODULE_PATH}/cpackvars.cmake)
 
-if(NOT BUILD_ENGINE_C)
 enable_testing()
-endif(NOT BUILD_ENGINE_C)
+
 add_custom_target(test         COMMAND ${CMAKE_CTEST_COMMAND} -E '^todo/' --timeout 300 --schedule-random)
 add_custom_target(test_verbose COMMAND ${CMAKE_CTEST_COMMAND} -E '^todo/' --timeout 300 --schedule-random -V)
 
--- a/ChangeLog.txt	Thu Dec 18 00:03:53 2014 +0300
+++ b/ChangeLog.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -8,10 +8,14 @@
  + Highlander gamemode can now be used with custom weapon schemes (1-8=How probable to get this weapon. 9=All hogs get it)
  + New gameplay mode "Construction Mode"
  + New gameplay mode "TechRacer"
+ + New game play mode "DiagonalMaze" (generates a simple diagonal maze)
+ + Add 7 target practice missions, now with simple scoring
+ + Update RC Plane Challenge: Stats screen reworked and shows now several facts, simple ranking system based on used planes, some taunts in the game
  + New training/multiplayer mission: "Climb Home"
  + Game scheme screen has a "Script parameter" field now. This allows to make more customizable scripts/modes.
  + Network game rejoining. Note: Your team(s) will vanish after 3 turns.
- + Visual and gameplay changes to "sea" - world edges.
+ + Visual and gameplay changes to "sea" - world edge, visual change to wrap world edge to allow seeing through the wrap, visual change to bounce worldedge 
+ + The map of the Basketball Mission can be selected for regular games again ("BasketballField")
  + New engine command: /togglechat will disable/enable chat display (does not affect chat history display)
  + Change to Racer: first weapon/utility available will be automatically selected on start
  + Added some visual feedback to failed girder placement.
@@ -31,22 +35,34 @@
  + Moved room status filter to top left of rooms list.
 
 Lua API:
+ + New library: Params, makes parsing of script parameters easier
+ + New library: TargetPractice, used to generate target practice missions (the newly added missions use it)
  + More helpful syntax error messages.
- + New hooks: onParameters(), onPreviewInit().
+ + New hooks:
+      onParameters(paramString) -- called when script parameters are configured. the parameter contains the parameter(s) as text string
+      onPreviewInit() -- called during map preview initialization
+      onGearWaterSkip(gearUid) -- called when a gear skims the water without drowning (when hitting it with high speed at low angle). By checking gearUid you can figure out which gear that was.
  + New functions:
-      Dismissteam(teamname)
+      DismissTeam(teamname) -- removes a team from the game (note: if you used loc() on teamnames, don't forget to the translated teamname here too)
       GetGameFlag(gameflag) -- returns true/false
       PlaceSprite(x, y, sprite, frameIdx [, landFlag, ... ]) -- sprite refers to an id from the TSprite list
       SetWaterLine(waterline) -- moves water level to the specified y. the current value is in read-only global waterline
       SetNextWeapon() -- make current hedgehog switch to next weapon. e.g. use in trainings to preselect weapon
       SetWeapon(ammoType) -- decide which weapon the current hedgehog should equip
+ + Map Drawing:
+      -- to be used in onGameInit() -- first set MapGen to mgDrawn and then use the commands below
+      AddPoint(x, y [, width [, erase] ]) -- takes x,y location, a width (means start of a new line) and erase (if line should erase, not draw)
+      FlushPoints() -- makes sure that all the points/lines specified using the command above are actually applied to the map
  + New global enumerations:
       Mapgens: mgRandom, mgMaze, mgPerlin, mgDrawn
       TSprite values
       LandFlags: lfIndestructible, lfIce, lfBouncy
  + Changed functions:
       HogSay(gearUid, text, manner [, vgState]) -- now also allows you to make NON-Hedgehog gears speak, e.g. barrels... wait what?!
-
+ + Changed hooks:
+      onHogAttack() can now be hooked with new parameter: onHogAttack(ammoType) - to conveniently find out which ammo/weapon is being used
+ * Fixes:
+      gfResetHealth is now a available like the other GameFlags
 0.9.19 -> 0.9.20:
  + New campaign, A Space Adventure!
  + Password protected rooms
--- a/QTfrontend/hwform.cpp	Thu Dec 18 00:03:53 2014 +0300
+++ b/QTfrontend/hwform.cpp	Sat Jan 03 23:46:26 2015 +0300
@@ -1832,7 +1832,7 @@
     if (hwnet)
     {
         NetAmmoSchemeModel * netAmmo = new NetAmmoSchemeModel(hwnet);
-        connect(hwnet, SIGNAL(netSchemeConfig(QStringList &)), netAmmo, SLOT(setNetSchemeConfig(QStringList &)));
+        connect(hwnet, SIGNAL(netSchemeConfig(QStringList)), netAmmo, SLOT(setNetSchemeConfig(QStringList)));
 
         ui.pageNetGame->pGameCFG->GameSchemes->setModel(netAmmo);
 
--- a/QTfrontend/model/ammoSchemeModel.cpp	Thu Dec 18 00:03:53 2014 +0300
+++ b/QTfrontend/model/ammoSchemeModel.cpp	Sat Jan 03 23:46:26 2015 +0300
@@ -845,7 +845,7 @@
     return netScheme[index.column()];
 }
 
-void NetAmmoSchemeModel::setNetSchemeConfig(QStringList & cfg)
+void NetAmmoSchemeModel::setNetSchemeConfig(QStringList cfg)
 {
     if(cfg.size() != netScheme.size())
     {
--- a/QTfrontend/model/ammoSchemeModel.h	Thu Dec 18 00:03:53 2014 +0300
+++ b/QTfrontend/model/ammoSchemeModel.h	Sat Jan 03 23:46:26 2015 +0300
@@ -70,7 +70,7 @@
         QVariant data(const QModelIndex &index, int role) const;
 
     public slots:
-        void setNetSchemeConfig(QStringList & cfg);
+        void setNetSchemeConfig(QStringList cfg);
 
     private:
         QList<QVariant> netScheme;
--- a/QTfrontend/net/newnetclient.cpp	Thu Dec 18 00:03:53 2014 +0300
+++ b/QTfrontend/net/newnetclient.cpp	Sat Jan 03 23:46:26 2015 +0300
@@ -32,7 +32,7 @@
 #include "servermessages.h"
 #include "HWApplication.h"
 
-char delimeter='\n';
+char delimiter='\n';
 
 HWNewNet::HWNewNet() :
     isChief(false),
@@ -74,7 +74,7 @@
 {
     if (m_game_connected)
     {
-        RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit"));
+        RawSendNet(QString("QUIT%1%2").arg(delimiter).arg("User quit"));
         emit disconnected(tr("User quit"));
     }
     NetSocket.flush();
@@ -91,7 +91,7 @@
 void HWNewNet::Disconnect()
 {
     if (m_game_connected)
-        RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit"));
+        RawSendNet(QString("QUIT%1%2").arg(delimiter).arg("User quit"));
     m_game_connected = false;
 
     NetSocket.disconnectFromHost();
@@ -108,9 +108,9 @@
     myroom = room;
 
     if(password.isEmpty())
-        RawSendNet(QString("CREATE_ROOM%1%2").arg(delimeter).arg(room));
+        RawSendNet(QString("CREATE_ROOM%1%2").arg(delimiter).arg(room));
     else
-        RawSendNet(QString("CREATE_ROOM%1%2%1%3").arg(delimeter).arg(room).arg(password));
+        RawSendNet(QString("CREATE_ROOM%1%2%1%3").arg(delimiter).arg(room).arg(password));
 
     isChief = true;
 }
@@ -126,29 +126,29 @@
     myroom = room;
 
     if(password.isEmpty())
-        RawSendNet(QString("JOIN_ROOM%1%2").arg(delimeter).arg(room));
+        RawSendNet(QString("JOIN_ROOM%1%2").arg(delimiter).arg(room));
     else
-        RawSendNet(QString("JOIN_ROOM%1%2%1%3").arg(delimeter).arg(room).arg(password));
+        RawSendNet(QString("JOIN_ROOM%1%2%1%3").arg(delimiter).arg(room).arg(password));
 
     isChief = false;
 }
 
 void HWNewNet::AddTeam(const HWTeam & team)
 {
-    QString cmd = QString("ADD_TEAM") + delimeter +
-                  team.name() + delimeter +
-                  QString::number(team.color()) + delimeter +
-                  team.grave() + delimeter +
-                  team.fort() + delimeter +
-                  team.voicepack() + delimeter +
-                  team.flag() + delimeter +
+    QString cmd = QString("ADD_TEAM") + delimiter +
+                  team.name() + delimiter +
+                  QString::number(team.color()) + delimiter +
+                  team.grave() + delimiter +
+                  team.fort() + delimiter +
+                  team.voicepack() + delimiter +
+                  team.flag() + delimiter +
                   QString::number(team.difficulty());
 
     for(int i = 0; i < HEDGEHOGS_PER_TEAM; ++i)
     {
-        cmd.append(delimeter);
+        cmd.append(delimiter);
         cmd.append(team.hedgehog(i).Name);
-        cmd.append(delimeter);
+        cmd.append(delimiter);
         cmd.append(team.hedgehog(i).Hat);
     }
     RawSendNet(cmd);
@@ -156,12 +156,12 @@
 
 void HWNewNet::RemoveTeam(const HWTeam & team)
 {
-    RawSendNet(QString("REMOVE_TEAM") + delimeter + team.name());
+    RawSendNet(QString("REMOVE_TEAM") + delimiter + team.name());
 }
 
 void HWNewNet::NewNick(const QString & nick)
 {
-    RawSendNet(QString("NICK%1%2").arg(delimeter).arg(nick));
+    RawSendNet(QString("NICK%1%2").arg(delimiter).arg(nick));
 }
 
 void HWNewNet::ToggleReady()
@@ -173,7 +173,7 @@
 {
     QString msg = QString(buf.toBase64());
 
-    RawSendNet(QString("EM%1%2").arg(delimeter).arg(msg));
+    RawSendNet(QString("EM%1%2").arg(delimiter).arg(msg));
 }
 
 void HWNewNet::RawSendNet(const QString & str)
@@ -292,14 +292,14 @@
         {
             // TODO: Warn user, disconnect
             qWarning() << "Server too old";
-            RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("Server too old"));
+            RawSendNet(QString("QUIT%1%2").arg(delimiter).arg("Server too old"));
             Disconnect();
             emit disconnected(tr("The server is too old. Disconnecting now."));
             return;
         }
 
-        RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick));
-        RawSendNet(QString("PROTO%1%2").arg(delimeter).arg(*cProtoVer));
+        RawSendNet(QString("NICK%1%2").arg(delimiter).arg(mynick));
+        RawSendNet(QString("PROTO%1%2").arg(delimiter).arg(*cProtoVer));
         netClientState = Connected;
         m_game_connected = true;
         emit adminAccess(false);
@@ -331,7 +331,7 @@
     if (lst[0] == "PING")
     {
         if (lst.size() > 1)
-            RawSendNet(QString("PONG%1%2").arg(delimeter).arg(lst[1]));
+            RawSendNet(QString("PONG%1%2").arg(delimiter).arg(lst[1]));
         else
             RawSendNet(QString("PONG"));
         return;
@@ -873,7 +873,7 @@
 {
     if (isChief)
         RawSendNet(QString("HH_NUM%1%2%1%3")
-                   .arg(delimeter)
+                   .arg(delimiter)
                    .arg(team.name())
                    .arg(team.numHedgehogs()));
 }
@@ -882,7 +882,7 @@
 {
     if (isChief)
         RawSendNet(QString("TEAM_COLOR%1%2%1%3")
-                   .arg(delimeter)
+                   .arg(delimiter)
                    .arg(team.name())
                    .arg(team.color()));
 }
@@ -892,9 +892,9 @@
     if (isChief)
         RawSendNet(
             QString("CFG%1%2%1%3")
-            .arg(delimeter)
+            .arg(delimiter)
             .arg(param)
-            .arg(value.join(QString(delimeter)))
+            .arg(value.join(QString(delimiter)))
         );
 }
 
@@ -911,7 +911,7 @@
 {
     if(str != "")
     {
-        RawSendNet(QString("CHAT") + delimeter + str);
+        RawSendNet(QString("CHAT") + delimiter + str);
         QString action = HWProto::chatStringToAction(str);
         if (action != NULL)
             emit(roomChatAction(mynick, action));
@@ -924,7 +924,7 @@
 {
     if(str != "")
     {
-        RawSendNet(QString("CHAT") + delimeter + str);
+        RawSendNet(QString("CHAT") + delimiter + str);
         QString action = HWProto::chatStringToAction(str);
         if (action != NULL)
             emit(lobbyChatAction(mynick, action));
@@ -935,7 +935,7 @@
 
 void HWNewNet::SendTeamMessage(const QString& str)
 {
-    RawSendNet(QString("TEAMCHAT") + delimeter + str);
+    RawSendNet(QString("TEAMCHAT") + delimiter + str);
 }
 
 void HWNewNet::askRoomsList()
@@ -978,23 +978,23 @@
     if (netClientState == InGame)
     {
         netClientState = InRoom;
-        RawSendNet(QString("ROUNDFINISHED%1%2").arg(delimeter).arg(correctly ? "1" : "0"));
+        RawSendNet(QString("ROUNDFINISHED%1%2").arg(delimiter).arg(correctly ? "1" : "0"));
     }
 }
 
 void HWNewNet::banPlayer(const QString & nick)
 {
-    RawSendNet(QString("BAN%1%2").arg(delimeter).arg(nick));
+    RawSendNet(QString("BAN%1%2").arg(delimiter).arg(nick));
 }
 
 void HWNewNet::banIP(const QString & ip, const QString & reason, int seconds)
 {
-    RawSendNet(QString("BANIP%1%2%1%3%1%4").arg(delimeter).arg(ip).arg(reason).arg(seconds));
+    RawSendNet(QString("BANIP%1%2%1%3%1%4").arg(delimiter).arg(ip).arg(reason).arg(seconds));
 }
 
 void HWNewNet::banNick(const QString & nick, const QString & reason, int seconds)
 {
-    RawSendNet(QString("BANNICK%1%2%1%3%1%4").arg(delimeter).arg(nick).arg(reason).arg(seconds));
+    RawSendNet(QString("BANNICK%1%2%1%3%1%4").arg(delimiter).arg(nick).arg(reason).arg(seconds));
 }
 
 void HWNewNet::getBanList()
@@ -1004,31 +1004,31 @@
 
 void HWNewNet::removeBan(const QString & b)
 {
-    RawSendNet(QString("UNBAN%1%2").arg(delimeter).arg(b));
+    RawSendNet(QString("UNBAN%1%2").arg(delimiter).arg(b));
 }
 
 void HWNewNet::kickPlayer(const QString & nick)
 {
-    RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick));
+    RawSendNet(QString("KICK%1%2").arg(delimiter).arg(nick));
 }
 
 void HWNewNet::infoPlayer(const QString & nick)
 {
-    RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick));
+    RawSendNet(QString("INFO%1%2").arg(delimiter).arg(nick));
 }
 
 void HWNewNet::followPlayer(const QString & nick)
 {
     if (!isInRoom())
     {
-        RawSendNet(QString("FOLLOW%1%2").arg(delimeter).arg(nick));
+        RawSendNet(QString("FOLLOW%1%2").arg(delimiter).arg(nick));
         isChief = false;
     }
 }
 
 void HWNewNet::consoleCommand(const QString & cmd)
 {
-    RawSendNet(QString("CMD%1%2").arg(delimeter).arg(cmd));
+    RawSendNet(QString("CMD%1%2").arg(delimiter).arg(cmd));
 }
 
 bool HWNewNet::allPlayersReady()
@@ -1047,7 +1047,7 @@
 
 void HWNewNet::updateRoomName(const QString & name)
 {
-    RawSendNet(QString("ROOM_NAME%1%2").arg(delimeter).arg(name));
+    RawSendNet(QString("ROOM_NAME%1%2").arg(delimiter).arg(name));
 }
 
 
@@ -1085,17 +1085,17 @@
 
 void HWNewNet::setServerMessageNew(const QString & msg)
 {
-    RawSendNet(QString("SET_SERVER_VAR%1MOTD_NEW%1%2").arg(delimeter).arg(msg));
+    RawSendNet(QString("SET_SERVER_VAR%1MOTD_NEW%1%2").arg(delimiter).arg(msg));
 }
 
 void HWNewNet::setServerMessageOld(const QString & msg)
 {
-    RawSendNet(QString("SET_SERVER_VAR%1MOTD_OLD%1%2").arg(delimeter).arg(msg));
+    RawSendNet(QString("SET_SERVER_VAR%1MOTD_OLD%1%2").arg(delimiter).arg(msg));
 }
 
 void HWNewNet::setLatestProtocolVar(int proto)
 {
-    RawSendNet(QString("SET_SERVER_VAR%1LATEST_PROTO%1%2").arg(delimeter).arg(proto));
+    RawSendNet(QString("SET_SERVER_VAR%1LATEST_PROTO%1%2").arg(delimiter).arg(proto));
 }
 
 void HWNewNet::askServerVars()
@@ -1165,5 +1165,5 @@
                 .append("!hedgewars")
                 , QCryptographicHash::Sha1).toHex();
 
-    RawSendNet(QString("PASSWORD%1%2%1%3").arg(delimeter).arg(hash).arg(m_clientSalt));
+    RawSendNet(QString("PASSWORD%1%2%1%3").arg(delimiter).arg(hash).arg(m_clientSalt));
 }
--- a/QTfrontend/net/newnetclient.h	Thu Dec 18 00:03:53 2014 +0300
+++ b/QTfrontend/net/newnetclient.h	Sat Jan 03 23:46:26 2015 +0300
@@ -36,7 +36,7 @@
 class QSortFilterProxyModel;
 class QAbstractItemModel;
 
-extern char delimeter;
+extern char delimiter;
 
 class HWNewNet : public QObject
 {
@@ -111,7 +111,7 @@
         void roomNameUpdated(const QString & name);
         void askForRoomPassword();
 
-        void netSchemeConfig(QStringList &);
+        void netSchemeConfig(QStringList);
         void paramChanged(const QString & param, const QStringList & value);
         void configAsked();
 
--- a/QTfrontend/res/html/about.html	Thu Dec 18 00:03:53 2014 +0300
+++ b/QTfrontend/res/html/about.html	Sat Jan 03 23:46:26 2015 +0300
@@ -74,7 +74,7 @@
             English: Andrey Korotaev &lt;<a href="mailto:unC0Rr@gmail.com">unC0Rr@gmail.com</a>&gt;<br>
             Finnish: Nina Kuisma &lt;<a href="mailto:ninnnu@gmail.com">ninnnu@gmail.com</a>&gt;, Janne Uusitupa<br>
             French: Antoine Turmel &lt;<a href="mailto:geekshadow@gmail.com">geekshadow@gmail.com</a>&gt;, Clement Woitrain &lt;<a href="mailto:sphrixclement@gmail.com">sphrixclement@gmail.com</a>&gt;, Matisumi<br>
-            German: Peter Hüwe &lt;<a href="mailto:PeterHuewe@gmx.de">PeterHuewe@gmx.de</a>&gt;, Mario Liebisch &lt;<a href="mailto:mario.liebisch@gmail.com">mario.liebisch@gmail.com</a>&gt;, Richard Karolyi &lt;<a href="mailto:sheepluva@ercatec.net">sheepluva@ercatec.net</a>&gt;<br>
+            German: Peter Hüwe &lt;<a href="mailto:PeterHuewe@gmx.de">PeterHuewe@gmx.de</a>&gt;, Mario Liebisch &lt;<a href="mailto:mario.liebisch@gmail.com">mario.liebisch@gmail.com</a>&gt;, Richard Karolyi &lt;<a href="mailto:sheepluva@ercatec.net">sheepluva@ercatec.net</a>&gt;, Wuzzy &lt;<a href="mailto:almikes@aol.com">almikes@aol.com</a>&gt;<br>
             Greek: &lt;<a href="mailto:talos_kriti@yahoo.gr">talos_kriti@yahoo.gr</a>&gt;<br>
             Italian: Luca Bonora &lt;<a href="mailto:bonora.luca@gmail.com">bonora.luca@gmail.com</a>&gt;, Marco Bresciani &lt;<a href="mailto:m.bresciani@email.it">m.bresciani@email.it</a>&gt;<br>
             Japanese: ADAM Etienne &lt;<a href="mailto:etienne.adam@gmail.com">etienne.adam@gmail.com</a>&gt;, Marco Bresciani &lt;<a href="mailto:m.bresciani@email.it">m.bresciani@email.it</a>&gt;<br>
--- a/QTfrontend/ui/page/pagedrawmap.cpp	Thu Dec 18 00:03:53 2014 +0300
+++ b/QTfrontend/ui/page/pagedrawmap.cpp	Sat Jan 03 23:46:26 2015 +0300
@@ -45,6 +45,7 @@
 
     pbClear = addButton(tr("Clear"), pageLayout, 5, 0);
     pbOptimize = addButton(tr("Optimize"), pageLayout, 6, 0);
+    pbOptimize->setVisible(false);
     pbLoad = addButton(tr("Load"), pageLayout, 7, 0);
     pbSave = addButton(tr("Save"), pageLayout, 8, 0);
 
--- a/cmake_modules/CheckHaskellModuleExists.cmake	Thu Dec 18 00:03:53 2014 +0300
+++ b/cmake_modules/CheckHaskellModuleExists.cmake	Sat Jan 03 23:46:26 2015 +0300
@@ -30,11 +30,11 @@
                     "-DPARAMETERS=${PARAMETERS}"
                     -cpp
                     -c "${CMAKE_MODULE_PATH}/checkModule.hs"
+                    RESULT_VARIABLE COMMAND_RESULT
                     ERROR_VARIABLE BUILD_ERROR
                     OUTPUT_STRIP_TRAILING_WHITESPACE
                     )
-
-    if("${BUILD_ERROR}" STREQUAL "")
+    if(${COMMAND_RESULT} EQUAL 0)
       message(STATUS "Looking for ${FUNCTION} in ${MODULE} - found")
       set(${VARIABLE} 1 CACHE INTERNAL "Have module ${MODULE}")
       file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
--- a/gameServer/Actions.hs	Thu Dec 18 00:03:53 2014 +0300
+++ b/gameServer/Actions.hs	Sat Jan 03 23:46:26 2015 +0300
@@ -415,11 +415,12 @@
 processAction RemoveClientTeams = do
     (Just ci) <- gets clientIndex
     rnc <- gets roomsClients
+    n <- client's nick
 
     removeTeamActions <- io $ do
         rId <- clientRoomM rnc ci
         roomTeams <- room'sM rnc teams rId
-        return . Prelude.map (RemoveTeam . teamname) . Prelude.filter (\t -> teamownerId t == ci) $ roomTeams
+        return . Prelude.map (RemoveTeam . teamname) . Prelude.filter (\t -> teamowner t == n) $ roomTeams
 
     mapM_ processAction removeTeamActions
 
--- a/gameServer/CoreTypes.hs	Thu Dec 18 00:03:53 2014 +0300
+++ b/gameServer/CoreTypes.hs	Sat Jan 03 23:46:26 2015 +0300
@@ -162,7 +162,6 @@
 data TeamInfo =
     TeamInfo
     {
-        teamownerId :: ClientIndex,
         teamowner :: B.ByteString,
         teamname :: B.ByteString,
         teamcolor :: B.ByteString,
@@ -170,6 +169,7 @@
         teamfort :: B.ByteString,
         teamvoicepack :: B.ByteString,
         teamflag :: B.ByteString,
+        isOwnerRegistered :: Bool,
         difficulty :: Int,
         hhnum :: Int,
         hedgehogs :: [HedgehogInfo]
--- a/gameServer/EngineInteraction.hs	Thu Dec 18 00:03:53 2014 +0300
+++ b/gameServer/EngineInteraction.hs	Sat Jan 03 23:46:26 2015 +0300
@@ -102,6 +102,7 @@
         , [eml ["eseed ", mParams Map.! "SEED"]]
         , [eml ["e$gmflags ", showB gameFlags]]
         , schemeFlags
+        , schemeAdditional
         , [eml ["e$template_filter ", mParams Map.! "TEMPLATE"]]
         , [eml ["e$mapgen ", mapgen]]
         , mapgenSpecific
@@ -115,7 +116,7 @@
         keys2 = Set.fromList ["AMMO", "SCHEME", "SCRIPT", "THEME"]
         sane = Set.null (keys1 Set.\\ Map.keysSet mParams)
             && Set.null (keys2 Set.\\ Map.keysSet prms)
-            && (not . null . drop 27 $ scheme)
+            && (not . null . drop 40 $ scheme)
             && (not . null . tail $ prms Map.! "AMMO")
         mapGenTypes = ["+rnd+", "+maze+", "+drawn+"]
         maybeScript = let s = head . fromMaybe ["Normal"] $ Map.lookup "SCRIPT" prms in if s == "Normal" then [] else [eml ["escript Scripts/Multiplayer/", s, ".lua"]]
@@ -131,6 +132,7 @@
         schemeFlags = map (\(v, (n, m)) -> eml [n, " ", showB $ (readInt_ v) * m])
             $ filter (\(_, (n, _)) -> not $ B.null n)
             $ zip (drop (length gameFlagConsts) scheme) schemeParams
+        schemeAdditional = let scriptParam = B.tail $ scheme !! 41 in [eml ["e$scriptparam ", scriptParam] | not $ B.null scriptParam]
         ammoStr :: B.ByteString
         ammoStr = head . tail $ prms Map.! "AMMO"
         ammo = let l = B.length ammoStr `div` 4; ((a, b), (c, d)) = (B.splitAt l . fst &&& B.splitAt l . snd) . B.splitAt (l * 2) $ ammoStr in
@@ -184,6 +186,7 @@
     , ("e$healthdec", 1)
     , ("e$ropepct", 1)
     , ("e$getawaytime", 1)
+    , ("e$worldedge", 1)
     ]
 
 
--- a/gameServer/HWProtoInRoomState.hs	Thu Dec 18 00:03:53 2014 +0300
+++ b/gameServer/HWProtoInRoomState.hs	Sat Jan 03 23:46:26 2015 +0300
@@ -41,7 +41,7 @@
     chans <- roomClientsChans
 
     let nicks = map (nick . client rnc) . roomClients rnc $ clientRoom rnc ci
-    let allPlayersRegistered = all ((<) 0 . B.length . webPassword . client rnc . teamownerId) $ teams rm
+    let allPlayersRegistered = all isOwnerRegistered $ teams rm
 
     if (playersIn rm == readyPlayers rm || clientProto cl > 43) && not (isJust $ gameInfo rm) then
         if enoughClans rm then
@@ -87,15 +87,19 @@
             return [Warning $ loc "Restricted"]
         else if isMaster cl then
            return [
-                ModifyRoom f,
+                ModifyRoom $ f (clientProto cl),
                 AnswerClients chans ("CFG" : paramName : paramStrs)]
             else
             return [ProtocolError $ loc "Not room master"]
     where
-        f r = if paramName `Map.member` (mapParams r) then
+        f clproto r = if paramName `Map.member` (mapParams r) then
                 r{mapParams = Map.insert paramName (head paramStrs) (mapParams r)}
                 else
-                r{params = Map.insert paramName paramStrs (params r)}
+                r{params = Map.insert paramName (fixedParamStr clproto) (params r)}
+        fixedParamStr clproto
+            | clproto /= 49 = paramStrs
+            | paramName /= "SCHEME" = paramStrs
+            | otherwise = L.init paramStrs ++ [B.replicate 50 'X' `B.append` L.last paramStrs]
 
 
 handleCmd_inRoom ("ADD_TEAM" : tName : color : grave : fort : voicepack : flag : difStr : hhsInfo)
@@ -103,11 +107,13 @@
     | otherwise = do
         (ci, _) <- ask
         rm <- thisRoom
+        cl <- thisClient
         clNick <- clientNick
         clChan <- thisClientChans
         othChans <- roomOthersChans
         roomChans <- roomClientsChans
         cl <- thisClient
+        let isRegistered = (<) 0 . B.length . webPassword $ cl
         teamColor <-
             if clientProto cl < 42 then
                 return color
@@ -115,7 +121,7 @@
                 liftM (head . (L.\\) (map B.singleton ['0'..]) . map teamcolor . teams) thisRoom
         let roomTeams = teams rm
         let hhNum = let p = if not $ null roomTeams then minimum [hhnum $ head roomTeams, canAddNumber roomTeams] else 4 in newTeamHHNum roomTeams p
-        let newTeam = clNick `seq` TeamInfo ci clNick tName teamColor grave fort voicepack flag dif hhNum (hhsList hhsInfo)
+        let newTeam = clNick `seq` TeamInfo clNick tName teamColor grave fort voicepack flag isRegistered dif hhNum (hhsList hhsInfo)
         return $
             if not . null . drop (maxTeams rm - 1) $ roomTeams then
                 [Warning $ loc "too many teams"]
@@ -152,6 +158,7 @@
 handleCmd_inRoom ["REMOVE_TEAM", tName] = do
         (ci, _) <- ask
         r <- thisRoom
+        clNick <- clientNick
 
         let maybeTeam = findTeam r
         let team = fromJust maybeTeam
@@ -159,18 +166,18 @@
         return $
             if isNothing $ maybeTeam then
                 [Warning $ loc "REMOVE_TEAM: no such team"]
-            else if ci /= teamownerId team then
+            else if clNick /= teamowner team then
                 [ProtocolError $ loc "Not team owner!"]
             else
                 [RemoveTeam tName,
                 ModifyClient
                     (\c -> c{
                         teamsInGame = teamsInGame c - 1,
-                        clientClan = if teamsInGame c == 1 then Nothing else Just $ anotherTeamClan ci team r
+                        clientClan = if teamsInGame c == 1 then Nothing else Just $ anotherTeamClan clNick team r
                     })
                 ]
     where
-        anotherTeamClan ci team = teamcolor . fromMaybe (error "CHECKPOINT 011") . find (\t -> (teamownerId t == ci) && (t /= team)) . teams
+        anotherTeamClan clNick team = teamcolor . fromMaybe (error "CHECKPOINT 011") . find (\t -> (teamowner t == clNick) && (t /= team)) . teams
         findTeam = find (\t -> tName == teamname t) . teams
 
 
@@ -207,16 +214,18 @@
 
     let maybeTeam = findTeam r
     let team = fromJust maybeTeam
+    maybeClientId <- clientByNick $ teamowner team
+    let teamOwnerId = fromJust maybeClientId
 
     return $
         if not $ isMaster cl then
             [ProtocolError $ loc "Not room master"]
-        else if isNothing maybeTeam then
+        else if isNothing maybeTeam || isNothing maybeClientId then
             []
         else
             [ModifyRoom $ modifyTeam team{teamcolor = newColor},
             AnswerClients others ["TEAM_COLOR", teamName, newColor],
-            ModifyClient2 (teamownerId team) (\c -> c{clientClan = Just newColor})]
+            ModifyClient2 teamOwnerId (\c -> c{clientClan = Just newColor})]
     where
         findTeam = find (\t -> teamName == teamname t) . teams
 
--- a/gameServer/HWProtoLobbyState.hs	Thu Dec 18 00:03:53 2014 +0300
+++ b/gameServer/HWProtoLobbyState.hs	Sat Jan 03 23:46:26 2015 +0300
@@ -105,7 +105,7 @@
                 : AnswerClients chans ["CLIENT_FLAGS", "-r", nick cl]
                 : [(AnswerClients [sendChan cl] $ "JOINED" : nicks) | not $ null nicks]
             )
-                ++ [ModifyRoom (\r -> let (t', g') = moveTeams clTeams . fromJust $ gameInfo r in r{gameInfo = Just g', teams = t'}) | not $ null clTeams]
+            -- ++ [ModifyRoom (\r -> let (t', g') = moveTeams clTeams . fromJust $ gameInfo r in r{gameInfo = Just g', teams = t'}) | not $ null clTeams]
             ++ [AnswerClients [sendChan cl] ["CLIENT_FLAGS", "+h", nick $ fromJust owner] | isJust owner]
             ++ [sendStateFlags cl jRoomClients | not $ null jRoomClients]
             ++ answerFullConfig cl jRoom
--- a/gameServer/OfficialServer/checker.hs	Thu Dec 18 00:03:53 2014 +0300
+++ b/gameServer/OfficialServer/checker.hs	Sat Jan 03 23:46:26 2015 +0300
@@ -54,7 +54,7 @@
     deriving Show
 
 serverAddress = "netserver.hedgewars.org"
-protocolNumber = "47"
+protocolNumber = "49"
 
 getLines :: Handle -> IO [B.ByteString]
 getLines h = g
@@ -87,18 +87,18 @@
             "ACHIEVEMENT" : typ : teamname : location : value : ps bs
         ps _ = []
 
-checkReplay :: Chan Message -> [B.ByteString] -> IO ()
-checkReplay coreChan msgs = do
+checkReplay :: String -> String -> String -> Chan Message -> [B.ByteString] -> IO ()
+checkReplay home exe prefix coreChan msgs = do
     tempDir <- getTemporaryDirectory
     (fileName, h) <- openBinaryTempFile tempDir "checker-demo"
     B.hPut h . BW.pack . concat . map (fromMaybe [] . Base64.decode . B.unpack) $ msgs
     hFlush h
     hClose h
 
-    (_, _, Just hOut, _) <- createProcess (proc "/usr/home/unC0Rr/Sources/Hedgewars/Releases/0.9.20/bin/hwengine"
+    (_, _, Just hOut, _) <- createProcess (proc exe
                 [fileName
-                , "--user-prefix", "/usr/home/unC0Rr/.hedgewars"
-                , "--prefix", "/usr/home/unC0Rr/Sources/Hedgewars/Releases/0.9.20/share/hedgewars/Data"
+                , "--user-prefix", home
+                , "--prefix", prefix
                 , "--nomusic"
                 , "--nosound"
                 , "--stats-only"
@@ -139,8 +139,8 @@
         sendPacket packet = writeChan chan $ Packet packet
 
 
-session :: B.ByteString -> B.ByteString -> Socket -> IO ()
-session l p s = do
+session :: B.ByteString -> B.ByteString -> String -> String -> String -> Socket -> IO ()
+session l p home exe prefix s = do
     noticeM "Core" "Connected"
     coreChan <- newChan
     forkIO $ recvLoop s coreChan
@@ -169,7 +169,7 @@
     onPacket _ ["PING"] = answer ["PONG"]
     onPacket _ ["LOGONPASSED"] = answer ["READY"]
     onPacket chan ("REPLAY":msgs) = do
-        checkReplay chan msgs
+        checkReplay home exe prefix chan msgs
         warningM "Check" "Started check"
     onPacket _ ("BYE" : xs) = error $ show xs
     onPacket _ _ = return ()
@@ -187,18 +187,24 @@
     updateGlobalLogger "Check" (setLevel DEBUG)
     updateGlobalLogger "Engine" (setLevel DEBUG)
 
+    d <- getHomeDirectory
     Right (login, password) <- runErrorT $ do
-        d <- liftIO $ getHomeDirectory
         conf <- join . liftIO . CF.readfile CF.emptyCP $ d ++ "/.hedgewars/settings.ini"
         l <- CF.get conf "net" "nick"
         p <- CF.get conf "net" "passwordhash"
         return (B.pack l, B.pack p)
 
+    Right (exeFullname, dataPrefix) <- runErrorT $ do
+        conf <- join . liftIO . CF.readfile CF.emptyCP $ d ++ "/.hedgewars/checker.ini"
+        l <- CF.get conf "engine" "exe"
+        p <- CF.get conf "engine" "prefix"
+        return (l, p)
+
 
     Exception.bracket
         setupConnection
         (\s -> noticeM "Core" "Shutting down" >> sClose s)
-        (session login password)
+        (session login password (d ++ "/.hedgewars") exeFullname dataPrefix)
     where
         setupConnection = do
             noticeM "Core" "Connecting to the server..."
--- a/hedgewars/SDLh.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/SDLh.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -1124,6 +1124,7 @@
 
 function  TTF_OpenFontRW(src: PSDL_RWops; freesrc: LongBool; size: LongInt): PTTF_Font; cdecl; external SDL_TTFLibName;
 procedure TTF_SetFontStyle(font: PTTF_Font; style: LongInt); cdecl; external SDL_TTFLibName;
+procedure TTF_CloseFont(font: PTTF_Font); cdecl; external SDL_TTFLibName;
 
 (*  SDL_mixer  *)
 function  Mix_Init(flags: LongInt): LongInt; {$IFDEF SDL_MIXER_NEWER}cdecl; external SDL_MixerLibName{$ELSE}inline{$ENDIF};
--- a/hedgewars/hwengine.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/hwengine.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -112,10 +112,13 @@
     if flagMakeCapture then
         begin
         flagMakeCapture:= false;
+        if flagDumpLand then
+             s:= '/Screenshots/mapdump_'
+        else s:= '/Screenshots/hw_';
         {$IFDEF PAS2C}
-        s:= '/Screenshots/hw_' + inttostr(GameTicks);
+        s:= s + inttostr(GameTicks);
         {$ELSE}
-        s:= '/Screenshots/hw_' + FormatDateTime('YYYY-MM-DD_HH-mm-ss', Now()) + inttostr(GameTicks);
+        s:= s + FormatDateTime('YYYY-MM-DD_HH-mm-ss', Now()) + inttostr(GameTicks);
         {$ENDIF}
 
         // flash
@@ -123,8 +126,8 @@
         ScreenFade:= sfFromWhite;
         ScreenFadeValue:= sfMax;
         ScreenFadeSpeed:= 5;
-
-        if MakeScreenshot(s, 1) then
+        
+        if (not flagDumpLand and MakeScreenshot(s, 1, 0)) or (flagDumpLand and MakeScreenshot(s, 1, 1) and MakeScreenshot(s, 1, 2)) then
             WriteLnToConsole('Screenshot saved: ' + s)
         else
             begin
--- a/hedgewars/uAIAmmoTests.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uAIAmmoTests.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -211,6 +211,7 @@
     rTime:= 350;
     ap.ExplR:= 0;
     valueResult:= BadTurn;
+    timer:= 0;
     repeat
         rTime:= rTime + 300 + Level * 50 + random(300);
         Vx:= - windSpeed * rTime * 0.5 + (Targ.Point.X + AIrndSign(2) - mX) / rTime;
@@ -253,7 +254,7 @@
             EX:= trunc(x);
             EY:= trunc(y);
             // Try to prevent AI from thinking firing into water will cause a drowning
-            if (EY < cWaterLine-5) and (Timer > 0) and (Abs(Targ.Point.X - trunc(x)) + Abs(Targ.Point.Y - trunc(y)) > 21) then exit(BadTurn);
+            if (EY < cWaterLine-5) and (timer > 0) and (Abs(Targ.Point.X - trunc(x)) + Abs(Targ.Point.Y - trunc(y)) > 21) then exit(BadTurn);
             if Level = 1 then
                 value:= RateExplosion(Me, EX, EY, 101, afTrackFall or afErasesLand)
             else value:= RateExplosion(Me, EX, EY, 101);
--- a/hedgewars/uAIMisc.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uAIMisc.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -556,6 +556,7 @@
                 pX:= Point.x;
                 pY:= Point.y;
                 fallDmg:= 0;
+                dX:= 0;
                 if (Flags and afTrackFall <> 0) and (Score > 0) and (dmg < Score) then
                     begin
                     dX:= (0.005 * dmg + 0.01) / Density;
@@ -741,10 +742,11 @@
                 end;
             if dmg > 0 then
                 begin
+                fallDmg:= 0;
+                pX:= Point.x;
+                pY:= Point.y;
                 if (not dead) and (Score > 0) and (dmg < Score) then
                     begin
-                    pX:= Point.x;
-                    pY:= Point.y;
                     dX:= gdX * dmg / Density;
                     dY:= gdY * dmg / Density;
                     if dX < 0 then dX:= dX - 0.01
--- a/hedgewars/uCaptions.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uCaptions.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -48,10 +48,7 @@
     if Length(s) = 0 then
         exit;
     if Captions[Group].Text <> s then
-        begin
-        FreeTexture(Captions[Group].Tex);
-        Captions[Group].Tex:= nil
-        end;
+        FreeAndNilTexture(Captions[Group].Tex);
 
     if Captions[Group].Tex = nil then
         begin
@@ -73,7 +70,7 @@
 begin
 for Group:= Low(TCapGroup) to High(TCapGroup) do
     if unload then
-        FreeTexture(Captions[Group].Tex)
+        FreeAndNilTexture(Captions[Group].Tex)
     else if length(Captions[Group].Text) > 0 then
         Captions[Group].Tex:= RenderStringTex(Captions[Group].Text, Captions[Group].Color, fntBig)
 end;
@@ -97,8 +94,7 @@
                 inc(offset, Tex^.h + 2);
                 if EndTime <= RealTicks then
                     begin
-                    FreeTexture(Tex);
-                    Tex:= nil;
+                    FreeAndNilTexture(Tex);
                     Text:= ansistring('');
                     EndTime:= 0
                     end;
@@ -114,10 +110,7 @@
 var group: TCapGroup;
 begin
     for group:= Low(TCapGroup) to High(TCapGroup) do
-        begin
-        FreeTexture(Captions[group].Tex);
-        Captions[group].Tex:= nil
-        end
+        FreeAndNilTexture(Captions[group].Tex);
 end;
 
 end.
--- a/hedgewars/uChat.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uChat.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -147,7 +147,7 @@
 var color  : TSDL_Color;
 begin
 if cl.Tex <> nil then
-    FreeTexture(cl.Tex);
+    FreeAndNilTexture(cl.Tex);
 
 if isInput then
     begin
@@ -583,9 +583,9 @@
 procedure freeModule;
 var i: ShortInt;
 begin
-    FreeTexture(InputStr.Tex);
+    FreeAndNilTexture(InputStr.Tex);
     for i:= 0 to MaxStrIndex do
-        FreeTexture(Strs[i].Tex);
+        FreeAndNilTexture(Strs[i].Tex);
 end;
 
 end.
--- a/hedgewars/uCollisions.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uCollisions.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -97,7 +97,7 @@
 if Gear^.CollisionIndex >= 0 then
     begin
     with cinfos[Gear^.CollisionIndex] do
-        ChangeRoundInLand(X, Y, Radius - 1, false, (Gear = CurrentHedgehog^.Gear) or ((Gear^.Kind = gtCase) and (Gear^.State and gstFrozen = 0)));
+        ChangeRoundInLand(X, Y, Radius - 1, false, ((CurrentHedgehog <> nil) and (Gear = CurrentHedgehog^.Gear)) or ((Gear^.Kind = gtCase) and (Gear^.State and gstFrozen = 0)));
     cinfos[Gear^.CollisionIndex]:= cinfos[Pred(Count)];
     cinfos[Gear^.CollisionIndex].cGear^.CollisionIndex:= Gear^.CollisionIndex;
     Gear^.CollisionIndex:= -1;
--- a/hedgewars/uCommandHandlers.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uCommandHandlers.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -323,6 +323,7 @@
 end;
 
 procedure chAttack_p(var s: shortstring);
+var inbtwnTrgtAttks: Boolean;
 begin
 s:= s; // avoid compiler hint
 if CheckNoTeamOrHH then
@@ -333,7 +334,9 @@
     AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));
     if ((State and gstHHDriven) <> 0) then
         begin
-        FollowGear:= CurrentHedgehog^.Gear;
+        inbtwnTrgtAttks:= ((GameFlags and gfInfAttack) <> 0) and ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) <> 0);
+        if (not inbtwnTrgtAttks) then
+            FollowGear:= CurrentHedgehog^.Gear;
         if not isExternalSource then
             SendIPC(_S'A');
         Message:= Message or (gmAttack and InputMask);
@@ -487,7 +490,8 @@
 procedure chCapture(var s: shortstring);
 begin
 s:= s; // avoid compiler hint
-flagMakeCapture:= true
+flagMakeCapture:= true;
+flagDumpLand:= LocalMessage and gmPrecise  <> 0;
 end;
 
 procedure chRecord(var s: shortstring);
--- a/hedgewars/uConsts.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uConsts.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -36,6 +36,7 @@
     HaltTestSuccess     =  0;
     HaltTestFailed      =  10;
     HaltTestLuaError    =  11;
+    HaltTestUnexpected  =  12;
 
 
     sfMax = 1000;
@@ -48,6 +49,7 @@
     errmsgIncorrectUse    = 'Incorrect use';
     errmsgShouldntRun     = 'This program shouldn''t be run manually';
     errmsgWrongNumber     = 'Wrong parameters number';
+    errmsgLuaTestTerm     = 'WARNING: Lua test terminated before the test was properly finished with EndLuaTest()!';
 
     msgLoading           = 'Loading ';
     msgOK                = 'ok';
@@ -103,9 +105,9 @@
 // To allow these to layer, going to treat them as masks. The bottom byte is reserved for objects
 // TODO - set lfBasic for all solid land, ensure all uses of the flags can handle multiple flag bits
 // lfObject and lfBasic are only to be different *graphically*  in all other ways they should be treated the same
-    lfBasic          = $8000;  // white
+    lfBasic          = $8000;  // black
     lfIndestructible = $4000;  // red
-    lfObject         = $2000;
+    lfObject         = $2000;  // white
     lfDamaged        = $1000;  //
     lfIce            = $0800;  // blue
     lfBouncy         = $0400;  // green
@@ -317,6 +319,7 @@
     kSystemSoundID_Vibrate = $00000FFF;
 
     cMinPlayWidth = 200;
+    cWorldEdgeDist = 200;
 
 implementation
 
--- a/hedgewars/uGears.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uGears.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -215,7 +215,7 @@
             begin
             if curHandledGear^.RenderTimer and (curHandledGear^.Timer > 500) and ((curHandledGear^.Timer mod 1000) = 0) then
                 begin
-                FreeTexture(curHandledGear^.Tex);
+                FreeAndNilTexture(curHandledGear^.Tex);
                 curHandledGear^.Tex:= RenderStringTex(ansistring(inttostr(curHandledGear^.Timer div 1000)), cWhiteColor, fntSmall);
                 end;
             curHandledGear^.doStep(curHandledGear);
--- a/hedgewars/uGearsHandlersMess.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uGearsHandlersMess.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -804,6 +804,8 @@
             move:= true
         else if (xx > snowRight) or (xx < snowLeft) then
             move:=true
+        else if (cGravity < _0) and (yy < LAND_HEIGHT-1200) then
+            move:=true
         // Solid pixel encountered
         else if ((yy and LAND_HEIGHT_MASK) = 0) and ((xx and LAND_WIDTH_MASK) = 0) and (Land[yy, xx] <> 0) then
             begin
@@ -882,7 +884,10 @@
                                 end
                             else Land[ly, lx]:= lf;
                         if gun then
-                            LandPixels[ry, rx]:= (ExplosionBorderColor and (not AMask)) or (p^[px] and AMask)
+                             LandPixels[ry, rx]:= (Gear^.Tint shr 24         shl RShift) or 
+                                                  (Gear^.Tint shr 16 and $FF shl GShift) or 
+                                                  (Gear^.Tint shr  8 and $FF shl BShift) or 
+                                                  (p^[px] and AMask)
                         else LandPixels[ry, rx]:= addBgColor(LandPixels[ry, rx], p^[px]);
                         end
                     else allpx:= false
@@ -917,7 +922,9 @@
         end;
     Gear^.Pos:= 0;
     Gear^.X:= int2hwFloat(LongInt(GetRandom(snowRight - snowLeft)) + snowLeft);
-    Gear^.Y:= int2hwFloat(LAND_HEIGHT + LongInt(GetRandom(50)) - 1325);
+    if (cGravity < _0) and (yy < LAND_HEIGHT-1200) then
+         Gear^.Y:= int2hwFloat(LAND_HEIGHT - 50 - LongInt(GetRandom(50)))
+    else Gear^.Y:= int2hwFloat(LAND_HEIGHT + LongInt(GetRandom(50)) - 1250);
     Gear^.State:= Gear^.State or gstInvisible;
     end
 end;
@@ -1264,15 +1271,22 @@
         dec(Gear^.Health, Gear^.Damage);
         Gear^.Damage := 0
         end;
-    if ((Gear^.State and gstDrowning) <> 0) and (Gear^.Damage < Gear^.Health) and ((not SuddenDeathDmg and (WaterOpacity < $FF)) or (SuddenDeathDmg and (SDWaterOpacity < $FF))) then
-        begin
-        for i:=(Gear^.Health - Gear^.Damage) * 4 downto 0 do
+
+    if ((Gear^.State and gstDrowning) <> 0) and (Gear^.Health > 0) then
+        begin
+        // draw bubbles
+        if (not SuddenDeathDmg and (WaterOpacity < $FF)) or (SuddenDeathDmg and (SDWaterOpacity < $FF)) then
             begin
-            if Random(6) = 0 then
-                AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtBubble);
-            Gear^.X := Gear^.X + Gear^.dX;
-            Gear^.Y := Gear^.Y + Gear^.dY;
+            for i:=(Gear^.Health * 4) downto 0 do
+                begin
+                if Random(6) = 0 then
+                    AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtBubble);
+                Gear^.X := Gear^.X + Gear^.dX;
+                Gear^.Y := Gear^.Y + Gear^.dY;
+                end;
             end;
+        // bullet dies underwater
+        Gear^.Health:= 0;
         end;
 
     if (Gear^.Health <= 0)
@@ -1285,7 +1299,7 @@
                 cArtillery := false;
 
         // Bullet Hit
-            if (hwRound(Gear^.X) and LAND_WIDTH_MASK = 0) and (hwRound(Gear^.Y) and LAND_HEIGHT_MASK = 0) then
+            if ((Gear^.State and gstDrowning) = 0) and (hwRound(Gear^.X) and LAND_WIDTH_MASK = 0) and (hwRound(Gear^.Y) and LAND_HEIGHT_MASK = 0) then
                 begin
                 VGear := AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtBulletHit);
                 if VGear <> nil then
@@ -1651,6 +1665,7 @@
 procedure doStepMine(Gear: PGear);
 var vg: PVisualGear;
     dxdy: hwFloat;
+    dmg: LongWord;
 begin
     if Gear^.Health = 0 then dxdy:= hwAbs(Gear^.dX)+hwAbs(Gear^.dY);
     if (Gear^.State and gstMoving) <> 0 then
@@ -1671,7 +1686,11 @@
     if (Gear^.Health = 0) then
         begin
         if (dxdy > _0_4) and (Gear^.State and gstCollision <> 0) then
-            inc(Gear^.Damage, hwRound(dxdy * _50));
+            begin
+            dmg:= hwRound(dxdy * _50);
+            inc(Gear^.Damage, dmg);
+            ScriptCall('onGearDamage', Gear^.UID, dmg)
+            end;
 
         if ((GameTicks and $FF) = 0) and (Gear^.Damage > random(30)) then
             begin
@@ -1810,7 +1829,7 @@
 
 procedure doStepRollingBarrel(Gear: PGear);
 var
-    i: LongInt;
+    i, dmg: LongInt;
     particle: PVisualGear;
     dxdy: hwFloat;
 begin
@@ -1838,7 +1857,9 @@
                         particle^.dX := particle^.dX + (Gear^.dX.QWordValue / 21474836480)
                     end
                 end;
-            inc(Gear^.Damage, hwRound(dxdy * _50))
+            dmg:= hwRound(dxdy * _50);
+            inc(Gear^.Damage, dmg);
+            ScriptCall('onGearDamage', Gear^.UID, dmg)
             end;
         CalcRotationDirAngle(Gear);
         //CheckGearDrowning(Gear)
@@ -2171,7 +2192,7 @@
         then
         begin
             // norm speed vector to length of 2 for fire particles to keep flying in the same direction
-            f:= _2 / Distance(Gear^.dX, Gear^.dY);
+            f:= _1_9 / Distance(Gear^.dX, Gear^.dY);
             Gear^.dX:= Gear^.dX * f;
             Gear^.dY:= Gear^.dY * f;
         end
@@ -2650,12 +2671,13 @@
         HHGear^.Message := HHGear^.Message and (not gmAttack);
         HHGear^.State := HHGear^.State and (not gstAttacking);
         HHGear^.State := HHGear^.State or gstHHChooseTarget;
-        DeleteGear(Gear);
         isCursorVisible := true;
         warn:= AddVisualGear(Gear^.Target.X, oy, vgtNoPlaceWarn, 0, true);
         if warn <> nil then
             warn^.Tex := GetPlaceCollisionTex(lx, ty, sprHHTelepMask, 0);
-        PlaySound(sndDenied)
+        DeleteGear(Gear);
+        PlaySound(sndDenied);
+        exit
         end
     else
         begin
@@ -3645,7 +3667,7 @@
         begin
         Gear^.Damage:= i;
         //AddCaption('Fuel: '+inttostr(round(Gear^.Health/20))+'%', cWhiteColor, capgrpAmmostate);
-        FreeTexture(Gear^.Tex);
+        FreeAndNilTexture(Gear^.Tex);
         Gear^.Tex := RenderStringTex(trmsg[sidFuel] + ansistring(': ' + inttostr(i) + '%'), cWhiteColor, fntSmall)
         end;
 
@@ -4564,7 +4586,7 @@
 var
     x, y, rX, rY, t, tmp, initHealth: LongInt;
     oX, oY, ldX, ldY, sdX, sdY, sine, lx, ly, amp: hwFloat;
-    justCollided: boolean;
+    justCollided, justBounced: boolean;
 begin
     AllInactive := false;
     initHealth := Gear^.Health;
@@ -4587,6 +4609,8 @@
 
     // used for a work-around detection of area that is within land array, but outside borders
     justCollided := false;
+    // this variable is just to ensure we don't run in infinite loop due to precision errors
+    justBounced:= false;
 
     repeat
         lX := lX + ldX;
@@ -4599,7 +4623,6 @@
         amp := _128 * (_1 - hwSqr(int2hwFloat(Gear^.Health)/initHealth));
         sine := amp * AngleSin(tmp mod 2048);
         sine.isNegative := (tmp < 2048);
-        inc(t,Gear^.Health div 313);
         Gear^.X := lX + (sine * sdX);
         Gear^.Y := ly + (sine * sdY);
         Gear^.dX := Gear^.X - oX;
@@ -4608,6 +4631,40 @@
         x := hwRound(Gear^.X);
         y := hwRound(Gear^.Y);
 
+        if WorldEdge = weWrap then
+            begin
+            if x > LongInt(rightX) then
+                repeat
+                    dec(x,  playWidth);
+                    dec(rx, playWidth);
+                until x <= LongInt(rightX)
+            else if x < LongInt(leftX) then
+                repeat
+                    inc(x,  playWidth);
+                    inc(rx, playWidth);
+                until x >= LongInt(leftX);
+            end
+        else if (WorldEdge = weBounce) then
+            begin
+            if (not justBounced) and ((x > LongInt(rightX)) or (x < LongInt(leftX))) then
+                begin
+                // reflect
+                lX:= lX - ldX + ((oX - lX) * 2);
+                lY:= lY - ldY;
+                Gear^.X:= oX;
+                Gear^.Y:= oY;
+                ldX.isNegative:= (not ldX.isNegative);
+                sdX.isNegative:= (not sdX.isNegative);
+                justBounced:= true;
+                continue;
+                end
+            else
+                justBounced:= false;
+            end;
+
+
+        inc(t,Gear^.Health div 313);
+
         // if borders are on, stop outside land array
         if hasBorder and (((x and LAND_WIDTH_MASK) <> 0) or ((y and LAND_HEIGHT_MASK) <> 0)) then
             begin
@@ -4704,7 +4761,6 @@
             if (Gear^.Health <= (initHealth div 6)) then
                 dec(Gear^.Radius)
             end;
-
     until (Gear^.Health <= 0);
 
     DeleteGear(Gear);
@@ -4805,7 +4861,7 @@
         if (i <> Gear^.Damage) and ((GameTicks and $3F) = 0) then
             begin
             Gear^.Damage:= i;
-            FreeTexture(Gear^.Tex);
+            FreeAndNilTexture(Gear^.Tex);
             Gear^.Tex := RenderStringTex(trmsg[sidFuel] + ansistring(': ' + inttostr(i) +
                          '%'), cWhiteColor, fntSmall)
             end
@@ -4882,7 +4938,7 @@
         if (i <> Gear^.Damage) and ((GameTicks and $3F) = 0) then
             begin
             Gear^.Damage:= i;
-            FreeTexture(Gear^.Tex);
+            FreeAndNilTexture(Gear^.Tex);
             Gear^.Tex := RenderStringTex(trmsg[sidFuel] + ansistring(': ' + inttostr(i) +
                          '%'), cWhiteColor, fntSmall)
             end
@@ -5487,7 +5543,7 @@
     if (t <> Gear^.Damage) and ((GameTicks and $3F) = 0) then
     begin
     Gear^.Damage:= t;
-    FreeTexture(Gear^.Tex);
+    FreeAndNilTexture(Gear^.Tex);
     Gear^.Tex := RenderStringTex(trmsg[sidFuel] + ansistring(': ' + inttostr(t) +
               '%'), cWhiteColor, fntSmall)
     end;
--- a/hedgewars/uGearsHandlersRope.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uGearsHandlersRope.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -28,12 +28,22 @@
 uses uConsts, uFloat, uCollisions, uVariables, uGearsList, uSound, uGearsUtils,
     uAmmos, uDebug, uUtils, uGearsHedgehog, uGearsRender;
 
+const
+    IsNilHHFatal = false;
+
 procedure doStepRopeAfterAttack(Gear: PGear);
 var
     HHGear: PGear;
     tX:     hwFloat;
 begin
     HHGear := Gear^.Hedgehog^.Gear;
+    if HHGear = nil then
+        begin
+        OutError('ERROR: doStepRopeAfterAttack called while HHGear = nil', IsNilHHFatal);
+        DeleteGear(Gear);
+        exit()
+        end;
+
     tX:= HHGear^.X;
     if WorldWrap(HHGear) and (WorldEdge = weWrap) and
        ((TestCollisionXwithGear(HHGear, 1) <> 0) or (TestCollisionXwithGear(HHGear, -1) <> 0))  then
@@ -121,9 +131,23 @@
     haveDivided: boolean;
     wrongSide: boolean;
 begin
-    if GameTicks mod 4 <> 0 then exit;
+    HHGear := Gear^.Hedgehog^.Gear;
+    if HHGear = nil then
+        begin
+        OutError('ERROR: doStepRopeWork called while HHGear = nil', IsNilHHFatal);
+        DeleteGear(Gear);
+        exit()
+        end;
 
-    HHGear := Gear^.Hedgehog^.Gear;
+    if ((HHGear^.State and gstHHDriven) = 0) or
+        (CheckGearDrowning(HHGear)) or (Gear^.PortalCounter <> 0) then
+        begin
+        PlaySound(sndRopeRelease);
+        RopeDeleteMe(Gear, HHGear);
+        exit
+        end;
+
+    if GameTicks mod 4 <> 0 then exit;
 
     tX:= HHGear^.X;
     if WorldWrap(HHGear) and (WorldEdge = weWrap) and
@@ -137,14 +161,6 @@
         end;
 
     tX:= HHGear^.X;
-    if ((HHGear^.State and gstHHDriven) = 0) or
-        (CheckGearDrowning(HHGear)) or (Gear^.PortalCounter <> 0) then
-        begin
-        PlaySound(sndRopeRelease);
-        RopeDeleteMe(Gear, HHGear);
-        exit
-        end;
-
     HHGear^.dX.QWordValue:= HHGear^.dX.QWordValue shl 2;
     HHGear^.dY.QWordValue:= HHGear^.dY.QWordValue shl 2;
     if (Gear^.Message and gmLeft  <> 0) and (TestCollisionXwithGear(HHGear, -1) = 0) then
@@ -414,6 +430,13 @@
     Gear^.Elasticity := Gear^.Elasticity + _1;
 
     HHGear := Gear^.Hedgehog^.Gear;
+    if HHGear = nil then
+        begin
+        OutError('ERROR: doStepRopeAttach called while HHGear = nil', IsNilHHFatal);
+        DeleteGear(Gear);
+        exit()
+        end;
+
     DeleteCI(HHGear);
 
     if (HHGear^.State and gstMoving) <> 0 then
--- a/hedgewars/uGearsHedgehog.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uGearsHedgehog.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -505,9 +505,11 @@
             end
         else
             Message:= Message and (not gmAttack);
-    end;
+
+    ScriptCall('onHogAttack', ord(CurAmmoType));
+    end; // of with Gear^, Gear^.Hedgehog^ do
+
     TargetPoint.X := NoPointX;
-    ScriptCall('onHogAttack');
 end;
 
 procedure AfterAttack;
@@ -832,7 +834,9 @@
 
     Gear^.Hedgehog^.visStepPos:= (Gear^.Hedgehog^.visStepPos + 1) and 7;
 
-    if (not cArtillery) and ((Gear^.Message and gmPrecise) = 0) then
+    if (not cArtillery or
+           ((CurAmmoGear <> nil) and (CurAmmoGear^.Kind = gtBlowTorch))) and
+       ((Gear^.Message and gmPrecise) = 0) then
         MakeHedgehogsStep(Gear);
 
     SetAllHHToActive(false);
--- a/hedgewars/uGearsList.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uGearsList.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -143,14 +143,22 @@
 
 procedure RemoveGearFromList(Gear: PGear);
 begin
-TryDo((curHandledGear = nil) or (Gear = curHandledGear), 'You''re doing it wrong', true);
+if (Gear <> GearsList) and (Gear <> nil) and (Gear^.NextGear = nil) and (Gear^.PrevGear = nil) then
+    begin
+    AddFileLog('Attempted to remove Gear #'+inttostr(Gear^.uid)+' from the list twice.');
+    exit
+    end;
+TryDo((Gear = nil) or (curHandledGear = nil) or (Gear = curHandledGear), 'You''re doing it wrong', true);
 
 if Gear^.NextGear <> nil then
     Gear^.NextGear^.PrevGear:= Gear^.PrevGear;
 if Gear^.PrevGear <> nil then
     Gear^.PrevGear^.NextGear:= Gear^.NextGear
-else
-    GearsList:= Gear^.NextGear
+else 
+    GearsList:= Gear^.NextGear;
+
+Gear^.NextGear:= nil;
+Gear^.PrevGear:= nil
 end;
 
 
@@ -282,15 +290,22 @@
                         dy.isNegative:= false;
                         dy.QWordValue:= QWord($3AD3) * GetRandom(7000) * 8;
                         if GetRandom(2) = 0 then
-                            dx := -dx
-                        end;
+                            dx := -dx;
+                        Tint:= $FFFFFFFF
+                        end
+                    else
+                        Tint:= (ExplosionBorderColor shr RShift and $FF shl 24) or
+                               (ExplosionBorderColor shr GShift and $FF shl 16) or
+                               (ExplosionBorderColor shr BShift and $FF shl 8) or $FF;
                     State:= State or gstInvisible;
-                    Health:= random(vobFrameTicks);
+                    // use health field to store current frameticks
+                    if vobFrameTicks > 0 then
+                        Health:= random(vobFrameTicks)
+                    else
+                        Health:= 0;
+                    // use timer to store currently displayed frame index
                     if gear^.Timer = 0 then Timer:= random(vobFramesCount);
-                    Damage:= (random(2) * 2 - 1) * (vobVelocity + random(vobVelocity)) * 8;
-                    Tint:= ((ExplosionBorderColor and RMask) shl RShift) or
-                           ((ExplosionBorderColor and GMask) shl GShift) or
-                           ((ExplosionBorderColor and BMask) shl BShift) or $FF;
+                    Damage:= (random(2) * 2 - 1) * (vobVelocity + random(vobVelocity)) * 8
                     end
                 end;
        gtGrave: begin
@@ -626,8 +641,7 @@
 
 DeleteCI(Gear);
 
-FreeTexture(Gear^.Tex);
-Gear^.Tex:= nil;
+FreeAndNilTexture(Gear^.Tex);
 
 // make sure that portals have their link removed before deletion
 if (Gear^.Kind = gtPortal) then
@@ -648,7 +662,7 @@
         end
     else*)
         begin
-        if (Gear <> CurrentHedgehog^.Gear) or (CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtKamikaze) then
+        if ((CurrentHedgehog = nil) or (Gear <> CurrentHedgehog^.Gear)) or (CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtKamikaze) then
             Gear^.Hedgehog^.Team^.Clan^.Flawless:= false;
         if CheckCoordInWater(hwRound(Gear^.X), hwRound(Gear^.Y)) then
             begin
@@ -659,7 +673,7 @@
             end;
 
         team:= Gear^.Hedgehog^.Team;
-        if CurrentHedgehog^.Gear = Gear then
+        if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear = Gear) then
             begin
             AttackBar:= 0;
             FreeActionsList; // to avoid ThinkThread on drawned gear
@@ -669,6 +683,7 @@
             end;
 
         Gear^.Hedgehog^.Gear:= nil;
+
         if Gear^.Hedgehog^.King then
             begin
             // are there any other kings left? Just doing nil check.  Presumably a mortally wounded king will get reaped soon enough
@@ -686,9 +701,9 @@
 
         // should be not CurrentHedgehog, but hedgehog of the last gear which caused damage to this hog
         // same stand for CheckHHDamage
-        if (Gear^.LastDamage <> nil) then
+        if (Gear^.LastDamage <> nil) and (CurrentHedgehog <> nil) then
             uStats.HedgehogDamaged(Gear, Gear^.LastDamage, 0, true)
-        else
+        else if CurrentHedgehog <> nil then
             uStats.HedgehogDamaged(Gear, CurrentHedgehog, 0, true);
 
         inc(KilledHHs);
@@ -699,7 +714,7 @@
             with CurrentHedgehog^ do
                 begin
                 inc(Team^.stats.AIKills);
-                FreeTexture(Team^.AIKillsTex);
+                FreeAndNilTexture(Team^.AIKillsTex);
                 Team^.AIKillsTex := RenderStringTex(ansistring(inttostr(Team^.stats.AIKills)), Team^.Clan^.Color, fnt16);
                 end
         end;
@@ -714,7 +729,10 @@
     FollowGear:= nil;
 if lastGearByUID = Gear then
     lastGearByUID := nil;
-RemoveGearFromList(Gear);
+if (Gear^.Hedgehog = nil) or (Gear^.Hedgehog^.GearHidden <> Gear) then // hidden hedgehogs shouldn't be in the list
+     RemoveGearFromList(Gear)
+else Gear^.Hedgehog^.GearHidden:= nil;
+
 Dispose(Gear)
 end;
 
--- a/hedgewars/uGearsRender.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uGearsRender.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -168,6 +168,7 @@
 procedure DrawRope(Gear: PGear);
 var roplen, i: LongInt;
 begin
+    if Gear^.Hedgehog^.Gear = nil then exit;
     if (cReducedQuality and rqSimpleRope) <> 0 then
         DrawRopeLinesRQ(Gear)
     else
@@ -1204,9 +1205,12 @@
          gtAirBomb: DrawSpriteRotated(sprAirBomb, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX));
         gtTeleport: begin
                     HHGear:= Gear^.Hedgehog^.Gear;
-                    if ((Gear^.State and gstAnimation) <> 0) then
-                        DrawSpriteRotatedF(sprTeleport, x + 1, y - 3, Gear^.Pos, hwSign(Gear^.dX), 0);
-                    DrawSpriteRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0);
+                    if HHGear <> nil then
+                        begin
+                        if ((Gear^.State and gstAnimation) <> 0) then
+                            DrawSpriteRotatedF(sprTeleport, x + 1, y - 3, Gear^.Pos, hwSign(Gear^.dX), 0);
+                        DrawSpriteRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0)
+                        end
                     end;
         gtSwitcher: DrawSprite(sprSwitch, x - 16, y - 56, (GameTicks shr 6) mod 12);
           gtTarget: begin
--- a/hedgewars/uGearsUtils.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uGearsUtils.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -81,6 +81,7 @@
     fX, fY, tdX, tdY: hwFloat;
     vg: PVisualGear;
     i, cnt: LongInt;
+    wrap: boolean;
 begin
 if Radius > 4 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');
 if Radius > 25 then KickFlakes(Radius, X, Y);
@@ -101,9 +102,15 @@
     dmgRadius:= Radius;
 dmgBase:= dmgRadius + cHHRadius div 2;*)
 dmgBase:= Radius shl 1 + cHHRadius div 2;
+
+// we might have to run twice if weWrap is enabled
+wrap:= false;
+repeat
+
 fX:= int2hwFloat(X);
 fY:= int2hwFloat(Y);
 Gear:= GearsList;
+
 while Gear <> nil do
     begin
     dmg:= 0;
@@ -188,6 +195,27 @@
                 AddVisualGear(X, Y, vgtChunk)
         end;
 
+if (WorldEdge = weWrap) then
+    begin
+    // already wrapped? let's not wrap again!
+    if wrap then
+        break;
+
+    // Radius + 5 because that's the actual radius the explosion changes graphically
+    if X + (Radius + 5) > LongInt(rightX) then
+        begin
+        dec(X, playWidth);
+        wrap:= true;
+        end
+    else if X - (Radius + 5) < LongInt(leftX) then
+        begin
+        inc(X, playWidth);
+        wrap:= true;
+        end;
+    end;
+
+until (not wrap);
+
 uAIMisc.AwareOfExplosion(0, 0, 0)
 end;
 
@@ -670,6 +698,8 @@
         if isImpact or isSkip then
             addSplashForGear(Gear, isSkip);
 
+        if isSkip then
+            ScriptCall('onGearWaterSkip', Gear^.uid);
         end
     else
         begin
@@ -700,7 +730,7 @@
         with CurrentHedgehog^ do
             begin
             inc(Team^.stats.AIKills);
-            FreeTexture(Team^.AIKillsTex);
+            FreeAndNilTexture(Team^.AIKillsTex);
             Team^.AIKillsTex := RenderStringTex(ansistring(inttostr(Team^.stats.AIKills)), Team^.Clan^.Color, fnt16);
             end;
     tempTeam := gear^.Hedgehog^.Team;
--- a/hedgewars/uIO.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uIO.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -180,7 +180,7 @@
 repeat
     BlockRead(f, s[1], 255 - Length(ss), i);
     if i > 0 then
-    begin
+        begin
         s[0]:= char(i);
         ss:= ss + s;
         while (Length(ss) > 1)and(Length(ss) > byte(ss[1])) do
--- a/hedgewars/uLand.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uLand.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -56,18 +56,18 @@
     begin
         yd:= LAND_HEIGHT - 1;
         repeat
-            while (yd > 0) and (Land[yd, x] =  0) do dec(yd);
+            while (yd > 0) and (Land[yd, x] <> lfBasic) do dec(yd);
 
             if (yd < 0) then
                 yd:= 0;
 
-            while (yd < LAND_HEIGHT) and (Land[yd, x] <> 0) do
+            while (yd < LAND_HEIGHT) and (Land[yd, x] = lfBasic) do
                 inc(yd);
             dec(yd);
             yu:= yd;
 
-            while (yu > 0  ) and (Land[yu, x] <> 0) do dec(yu);
-            while (yu < yd ) and (Land[yu, x] =  0) do inc(yu);
+            while (yu > 0  ) and (Land[yu, x] = lfBasic) do dec(yu);
+            while (yu < yd ) and (Land[yu, x] <>  lfBasic) do inc(yu);
 
             if (yd < LAND_HEIGHT - 1) and ((yd - yu) >= 16) then
                 begin
@@ -578,10 +578,19 @@
 
 if hasBorder then
     begin
-    for y:= 0 to LAND_HEIGHT - 1 do
-        for x:= 0 to LAND_WIDTH - 1 do
-            if (y < topY) or (x < leftX) or (x > rightX) then
+    if WorldEdge = weNone then
+        begin
+        for y:= 0 to LAND_HEIGHT - 1 do
+            for x:= 0 to LAND_WIDTH - 1 do
+                if (y < topY) or (x < leftX) or (x > rightX) then
+                    Land[y, x]:= lfIndestructible;
+        end
+    else if topY > 0 then
+        begin
+        for y:= 0 to LongInt(topY) - 1 do
+            for x:= 0 to LAND_WIDTH - 1 do
                 Land[y, x]:= lfIndestructible;
+        end;
     // experiment hardcoding cave
     // also try basing cave dimensions on map/template dimensions, if they exist
     for w:= 0 to 5 do // width of 3 allowed hogs to be knocked through with grenade
@@ -665,6 +674,11 @@
     end;
 
 PrettifyLandAlpha();
+
+// adjust world edges for borderless maps
+if (WorldEdge <> weNone) and (not hasBorder) then
+    InitWorldEdges();
+
 end;
 
 procedure GenPreview(out Preview: TPreview);
--- a/hedgewars/uLandGenPerlin.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uLandGenPerlin.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -97,11 +97,6 @@
                             grad(p[BB  ], x-N , y-N)));
 end;
 
-function f(t: double): double; inline;
-begin
-    f:= t * t * t * (t * (t * 6 - 15) + 10);
-end;
-
 procedure inoise_setup();
 var i, ii, t: Longword;
 begin
@@ -130,7 +125,8 @@
     margin = 200;
 
 procedure GenPerlin;
-var y, x, {dy, }di, dj, df, r, param1, param2, rCutoff, detail: LongInt;
+var y, x, di, dj, r, param1, param2, rCutoff, detail: LongInt;
+var df: Int64;
 begin
     param1:= cTemplateFilter div 3;
     param2:= cTemplateFilter mod 3;
--- a/hedgewars/uLandGraphics.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uLandGraphics.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -527,15 +527,18 @@
     end;
 end;
 
+type TWrapNeeded = (wnNone, wnLeft, wnRight);
 
 //
 //  - (dX, dY) - direction, vector of length = 0.5
 //
-procedure DrawTunnel(X, Y, dX, dY: hwFloat; ticks, HalfWidth: LongInt);
+function DrawTunnel_real(X, Y, dX, dY: hwFloat; ticks, HalfWidth: LongInt): TWrapNeeded;
 var nx, ny, dX8, dY8: hwFloat;
     i, t, tx, ty, by, bx, stX, stY, ddy, ddx: Longint;
     despeckle : Boolean;
 begin  // (-dY, dX) is (dX, dY) rotated by PI/2
+DrawTunnel_real:= wnNone;
+
 stY:= hwRound(Y);
 stX:= hwRound(X);
 
@@ -637,14 +640,38 @@
     ny:= ny + dX;
     end;
 
-tx:= Max(stX - HalfWidth * 2 - 4 - abs(hwRound(dX * ticks)), 0);
+tx:= stX - HalfWidth * 2 - 4 - abs(hwRound(dX * ticks));
+ddx:= stX + HalfWidth * 2 + 4 + abs(hwRound(dX * ticks));
+
+if WorldEdge = weWrap then
+    begin
+    if (tx < leftX) or (ddx < leftX) then
+        DrawTunnel_real:= wnLeft
+    else if (tx > rightX) or (ddx > rightX) then
+        DrawTunnel_real:= wnRight;
+    end;
+
+tx:= Max(tx, 0);
 ty:= Max(stY - HalfWidth * 2 - 4 - abs(hwRound(dY * ticks)), 0);
-ddx:= Min(stX + HalfWidth * 2 + 4 + abs(hwRound(dX * ticks)), LAND_WIDTH) - tx;
+ddx:= Min(ddx, LAND_WIDTH) - tx;
 ddy:= Min(stY + HalfWidth * 2 + 4 + abs(hwRound(dY * ticks)), LAND_HEIGHT) - ty;
 
 UpdateLandTexture(tx, ddx, ty, ddy, false)
 end;
 
+procedure DrawTunnel(X, Y, dX, dY: hwFloat; ticks, HalfWidth: LongInt);
+var wn: TWrapNeeded;
+begin
+wn:= DrawTunnel_real(X, Y, dX, dY, ticks, HalfWidth);
+if wn <> wnNone then
+    begin
+    if wn = wnLeft then
+        DrawTunnel_real(X + int2hwFloat(playWidth), Y, dX, dY, ticks, HalfWidth)
+    else
+        DrawTunnel_real(X - int2hwFloat(playWidth), Y, dX, dY, ticks, HalfWidth);
+    end;
+end;
+
 function TryPlaceOnLandSimple(cpX, cpY: LongInt; Obj: TSprite; Frame: LongInt; doPlace, indestructible: boolean): boolean; inline;
 var lf: Word;
 begin
@@ -772,7 +799,7 @@
 
 function GetPlaceCollisionTex(cpX, cpY: LongInt; Obj: TSprite; Frame: LongInt): PTexture;
 var X, Y, bpp, h, w, row, col, numFramesFirstCol: LongInt;
-    p, pt: PByteArray;
+    p, pt: PLongWordArray;
     Image, finalSurface: PSDL_Surface;
 begin
 GetPlaceCollisionTex:= nil;
@@ -800,23 +827,20 @@
 if SDL_MustLock(finalSurface) then
     SDLTry(SDL_LockSurface(finalSurface) >= 0, true);
 
-// draw on surface based on collisions
-p:= PByteArray(@(PByteArray(Image^.pixels)^[ Image^.pitch * row * h + col * w * 4 ]));
-pt:= PByteArray(@(PByteArray(finalSurface^.pixels)^));
+p:= PLongWordArray(@(PLongWordArray(Image^.pixels)^[ (Image^.pitch div 4) * row * h + col * w ]));
+pt:= PLongWordArray(finalSurface^.pixels);
 
-case bpp of
-    4: for y:= 0 to Pred(h) do
-        begin
-        for x:= 0 to Pred(w) do
-            if (((PLongword(@(p^[x * 4]))^) and AMask) <> 0)
-                and (((cpY + y) <= Longint(topY)) or ((cpY + y) >= LAND_HEIGHT) or
-                   ((cpX + x) <= Longint(leftX)) or ((cpX + x) >= Longint(rightX)) or (Land[cpY + y, cpX + x] <> 0)) then
-                    (PLongword(@(pt^[x * 4]))^):= cWhiteColor
-            else
-                (PLongword(@(pt^[x * 4]))^):= 0;
-        p:= PByteArray(@(p^[Image^.pitch]));
-        pt:= PByteArray(@(pt^[finalSurface^.pitch]));
-        end;
+for y:= 0 to Pred(h) do
+    begin
+    for x:= 0 to Pred(w) do
+        if ((p^[x] and AMask) <> 0)
+            and (((cpY + y) < Longint(topY)) or ((cpY + y) >= LAND_HEIGHT) or
+            ((cpX + x) < Longint(leftX)) or ((cpX + x) > Longint(rightX)) or (Land[cpY + y, cpX + x] <> 0)) then
+                pt^[x]:= cWhiteColor
+        else
+            (pt^[x]):= cWhiteColor and (not AMask);
+    p:= PLongWordArray(@(p^[Image^.pitch div 4]));
+    pt:= PLongWordArray(@(pt^[finalSurface^.pitch div 4]));
     end;
 
 if SDL_MustLock(Image) then
--- a/hedgewars/uLandTexture.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uLandTexture.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -169,10 +169,7 @@
                         glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, TEXSIZE, TEXSIZE, 0, GL_RGBA, GL_UNSIGNED_BYTE, Pixels(x,y));
                         end
                     else if tex <> nil then
-                        begin
-                        FreeTexture(tex);
-                        tex:= nil
-                        end;
+                        FreeAndNilTexture(tex);
 
                     // nothing else to do
                     if dirtyLandTexCount < 1 then
@@ -284,13 +281,7 @@
     for x:= 0 to LANDTEXARW - 1 do
         for y:= 0 to LANDTEXARH - 1 do
             with LandTextures[x, y] do
-                begin
-                if tex <> nil then
-                    begin
-                    FreeTexture(tex);
-                    tex:= nil
-                    end
-                end;
+                FreeAndNilTexture(tex);
 end;
 
 procedure freeModule;
--- a/hedgewars/uLandUtils.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uLandUtils.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -2,9 +2,10 @@
 interface
 
 procedure ResizeLand(width, height: LongWord);
+procedure InitWorldEdges();
 
 implementation
-uses uUtils, uConsts, uVariables;
+uses uUtils, uConsts, uVariables, uTypes;
 
 procedure ResizeLand(width, height: LongWord);
 var potW, potH: LongInt;
@@ -31,4 +32,56 @@
     end;
 end;
 
+procedure InitWorldEdges();
+var cy, cx, lx, ly: LongInt;
+    found: boolean;
+begin
+playHeight:= LAND_HEIGHT;
+topY:= 0;
+
+lx:= LongInt(LAND_WIDTH) - 1;
+
+if WorldEdge = weNone then
+    begin
+    playWidth:= LAND_WIDTH;
+    leftX := 0;
+    rightX:= lx;
+    EXIT;
+    end;
+
+ly:= LongInt(LAND_HEIGHT) - 1;
+
+// find most left land pixels and set leftX accordingly
+found:= false;
+for cx:= 0 to lx do
+    begin
+    for cy:= ly downto 0 do
+        if Land[cy, cx] <> 0 then
+            begin
+            leftX:= max(0, cx - cWorldEdgeDist);
+            // break out of both loops
+            found:= true;
+            break;
+            end;
+    if found then break;
+    end;
+
+// find most right land pixels and set rightX accordingly
+found:= false;
+for cx:= lx downto 0 do
+    begin
+    for cy:= ly downto 0 do
+        if Land[cy, cx] <> 0 then
+            begin
+            rightX:= min(lx, cx + cWorldEdgeDist);
+            // break out of both loops
+            found:= true;
+            break;
+            end;
+    if found then break;
+    end;
+
+playWidth := rightX + 1 - leftX;
+end;
+
 end.
--- a/hedgewars/uMisc.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uMisc.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -28,7 +28,7 @@
 
 procedure movecursor(dx, dy: LongInt);
 function  doSurfaceConversion(tmpsurf: PSDL_Surface): PSDL_Surface;
-function  MakeScreenshot(filename: shortstring; k: LongInt): boolean;
+function MakeScreenshot(filename: shortstring; k: LongInt; dump: LongWord): boolean;
 function  GetTeamStatString(p: PTeam): shortstring;
 {$IFDEF SDL2}
 function  SDL_RectMake(x, y, width, height: LongInt): TSDL_Rect; inline;
@@ -221,12 +221,13 @@
 
 // captures and saves the screen. returns true on success.
 // saved image will be k times smaller than original (useful for saving thumbnails).
-function MakeScreenshot(filename: shortstring; k: LongInt): Boolean;
+function MakeScreenshot(filename: shortstring; k: LongInt; dump: LongWord): boolean;
 var p: Pointer;
     size: QWord;
     image: PScreenshot;
     format: GLenum;
     ext: string[4];
+    x,y: LongWord;
 begin
 {$IFDEF PNG_SCREENSHOTS}
 format:= GL_RGBA;
@@ -236,7 +237,9 @@
 ext:= '.bmp';
 {$ENDIF}
 
-size:= toPowerOf2(cScreenWidth) * toPowerOf2(cScreenHeight) * 4;
+if dump > 0 then
+     size:= LAND_WIDTH*LAND_HEIGHT*4
+else size:= toPowerOf2(cScreenWidth) * toPowerOf2(cScreenHeight) * 4;
 p:= GetMem(size); // will be freed in SaveScreenshot()
 
 // memory could not be allocated
@@ -248,18 +251,55 @@
 end;
 
 // read pixels from the front buffer
-glReadPixels(0, 0, cScreenWidth, cScreenHeight, format, GL_UNSIGNED_BYTE, p);
-
+if dump > 0 then
+    begin
+    for y:= 0 to LAND_HEIGHT-1 do
+        for x:= 0 to LAND_WIDTH-1 do
+            if dump = 2 then
+                PLongWordArray(p)^[y*LAND_WIDTH+x]:= LandPixels[LAND_HEIGHT-1-y, x]
+            else
+                begin
+                if Land[LAND_HEIGHT-1-y, x] and lfIndestructible = lfIndestructible then
+                    PLongWordArray(p)^[y*LAND_WIDTH+x]:= (AMask or RMask)
+                else if Land[LAND_HEIGHT-1-y, x] and lfIce = lfIce then
+                    PLongWordArray(p)^[y*LAND_WIDTH+x]:= (AMask or BMask)
+                else if Land[LAND_HEIGHT-1-y, x] and lfBouncy = lfBouncy then
+                    PLongWordArray(p)^[y*LAND_WIDTH+x]:= (AMask or GMask)
+                else if Land[LAND_HEIGHT-1-y, x] and lfObject = lfObject then
+                    PLongWordArray(p)^[y*LAND_WIDTH+x]:= $FFFFFFFF
+                else if Land[LAND_HEIGHT-1-y, x] and lfBasic = lfBasic then
+                    PLongWordArray(p)^[y*LAND_WIDTH+x]:= AMask
+                else
+                    PLongWordArray(p)^[y*LAND_WIDTH+x]:= 0
+                end
+    end
+else
+    begin
+    glReadPixels(0, 0, cScreenWidth, cScreenHeight, format, GL_UNSIGNED_BYTE, p);
 {$IFDEF USE_VIDEO_RECORDING}
-ReduceImage(p, cScreenWidth, cScreenHeight, k);
+    ReduceImage(p, cScreenWidth, cScreenHeight, k)
 {$ENDIF}
+    end;
 
 // allocate and fill structure that will be passed to new thread
 New(image); // will be disposed in SaveScreenshot()
-//image^.filename:= shortstring(UserPathPrefix) + filename + ext;
+{if dump = 2 then
+     image^.filename:= shortstring(UserPathPrefix) + filename + '_landpixels' + ext
+else if dump = 1 then
+     image^.filename:= shortstring(UserPathPrefix) + filename + '_land' + ext
+else image^.filename:= shortstring(UserPathPrefix) + filename + ext;}
 image^.filename:= filename + ext;
-image^.width:= cScreenWidth div k;
-image^.height:= cScreenHeight div k;
+
+if dump <> 0 then
+    begin
+    image^.width:= LAND_WIDTH;
+    image^.height:= LAND_HEIGHT
+    end
+else
+    begin
+    image^.width:= cScreenWidth div k;
+    image^.height:= cScreenHeight div k
+    end;
 image^.size:= size;
 image^.buffer:= p;
 
--- a/hedgewars/uRenderUtils.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uRenderUtils.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -304,15 +304,64 @@
         end;
 end;
 
+function GetNextSpeechLine(s: ansistring; ldelim: char; var startFrom: LongInt; out substr: ansistring): boolean;
+var p, l, m, r: Integer;
+    newl, skip: boolean;
+    c         : char;
+begin
+    m:= Length(s);
+
+    substr:= '';
+
+    SetLengthA(substr, m);
+
+    // number of chars read
+    r:= 0;
+
+    // number of chars to be written
+    l:= 0;
+
+    newl:= true;
+
+    for p:= max(1, startFrom) to m do
+        begin
+
+        inc(r);
+        // read char from source string
+        c:= s[p];
+
+        // strip empty lines, spaces and newlines on beginnings of line
+        skip:= ((newl or (p = m)) and ((c = ' ') or (c = ldelim)));
+
+        if (not skip) then
+            begin
+            newl:= (c = ldelim);
+            // stop if we went past the end of the line
+            if newl then
+                break;
+
+            // copy current char to output substring
+            inc(l);
+            substr[l]:= c;
+            end;
+
+        end;
+
+    inc(startFrom, r);
+
+    SetLengthA(substr, l);
+
+    GetNextSpeechLine:= (l > 0);
+end;
 
 function RenderSpeechBubbleTex(s: ansistring; SpeechType: Longword; font: THWFont): PTexture;
-var textWidth, textHeight, x, y, w, h, i, j, pos, prevpos, line, numLines, edgeWidth, edgeHeight, cornerWidth, cornerHeight: LongInt;
+var textWidth, textHeight, x, y, w, h, i, j, pos, line, numLines, edgeWidth, edgeHeight, cornerWidth, cornerHeight: LongInt;
     finalSurface, tmpsurf, rotatedEdge: PSDL_Surface;
     rect: TSDL_Rect;
     {$IFNDEF PAS2C}
     chars: set of char = [#9,' ',';',':','?','!',','];
     {$ENDIF}
-    substr: shortstring;
+    substr: ansistring;
     edge, corner, tail: TSPrite;
 begin
     if cOnlyStats then exit(nil);
@@ -362,27 +411,25 @@
         {$IFNDEF PAS2C}
         s:= WrapText(s, #1, chars, i);
         {$ENDIF}
-        pos:= 1; prevpos:= 0; line:= 0;
+        pos:= 1; line:= 0;
     // Find the longest line for the purposes of centring the text.  Font dependant.
-        while pos <= length(s) do
+        while GetNextSpeechLine(s, #1, pos, substr) do
             begin
-            if (s[pos] = #1) or (pos = length(s)) then
-                begin
-                inc(numlines);
-                if s[pos] <> #1 then inc(pos);
-                while s[prevpos+1] = ' ' do inc(prevpos);
-                substr:= copy(s, prevpos+1, pos-prevpos-1);
-                i:= 0; j:= 0;
-                TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(substr), @i, @j);
-                if i > w then
-                    w:= i;
-                prevpos:= pos;
-                end;
-            inc(pos);
+            inc(numLines);
+            i:= 0; j:= 0;
+            TTF_SizeUTF8(Fontz[font].Handle, PChar(substr), @i, @j);
+            if i > w then
+                w:= i;
             end;
         end
     else numLines := 1;
 
+    if numLines < 1 then
+        begin
+        s:= '...';
+        numLines:= 1;
+        end;
+
     textWidth:=((w-(cornerWidth-edgeWidth)*2) div edgeWidth)*edgeWidth+edgeWidth;
     textHeight:=(((numlines * h + 2)-((cornerHeight-edgeWidth)*2)) div edgeWidth)*edgeWidth;
 
@@ -468,30 +515,17 @@
     j:= rect.h;
     SDL_FillRect(finalSurface, @rect, cWhiteColor);
 
-    pos:= 1; prevpos:= 0; line:= 0;
-    while pos <= length(s) do
+    pos:= 1; line:= 0;
+    while GetNextSpeechLine(s, #1, pos, substr) do
         begin
-        if (s[pos] = #1) or (pos = length(s)) then
-            begin
-            if s[pos] <> #1 then
-                inc(pos);
-            while s[prevpos+1] = ' 'do
-                inc(prevpos);
-            substr:= copy(s, prevpos+1, pos-prevpos-1);
-            if Length(substr) <> 0 then
-                begin
-                tmpsurf:= TTF_RenderUTF8_Blended(Fontz[Font].Handle, Str2PChar(substr), cNearBlackColorChannels);
-                rect.x:= edgeHeight + 1 + ((i - w) div 2);
-                // trying to more evenly position the text, vertically
-                rect.y:= edgeHeight + ((j-(numLines*h)) div 2) + line * h;
-                SDLTry(tmpsurf <> nil, true);
-                SDL_UpperBlit(tmpsurf, nil, finalSurface, @rect);
-                SDL_FreeSurface(tmpsurf);
-                inc(line);
-                prevpos:= pos;
-                end;
-                end;
-        inc(pos);
+        tmpsurf:= TTF_RenderUTF8_Blended(Fontz[Font].Handle, PChar(substr), cNearBlackColorChannels);
+        rect.x:= edgeHeight + 1 + ((i - w) div 2);
+        // trying to more evenly position the text, vertically
+        rect.y:= edgeHeight + ((j-(numLines*h)) div 2) + line * h;
+        SDLTry(tmpsurf <> nil, true);
+        SDL_UpperBlit(tmpsurf, nil, finalSurface, @rect);
+        SDL_FreeSurface(tmpsurf);
+        inc(line);
         end;
 
     RenderSpeechBubbleTex:= Surface2Tex(finalSurface, true);
--- a/hedgewars/uScript.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uScript.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -100,6 +100,7 @@
     ScriptAmmoReinforcement : shortstring;
     ScriptLoaded : boolean;
     mapDims : boolean;
+    PointsBuffer: shortstring;
 
 procedure ScriptPrepareAmmoStore; forward;
 procedure ScriptApplyAmmoStore; forward;
@@ -108,8 +109,10 @@
 
 var LuaDebugInfo: lua_Debug;
 
+procedure SetGlobals; forward;
 procedure LuaParseString(s: shortString);
 begin
+    SetGlobals;
     AddFileLog('[Lua] input string: ' + s);
     AddChatString(#3 + '[Lua] > ' + s);
     if luaL_dostring(luaState, Str2PChar(s)) <> 0 then
@@ -190,6 +193,19 @@
     CheckAndFetchParamCount:= true;
 end;
 
+// check if is in range of count1 and count2
+function CheckAndFetchParamCountRange(L : Plua_State; count1, count2: LongInt; call, paramsyntax: shortstring; out actual: LongInt): boolean; inline;
+begin
+    actual:= lua_gettop(L);
+    if (actual < count1) or (actual > count2) then
+        begin
+        LuaParameterCountError('at least ' + inttostr(count1) + ', but at most ' + inttostr(count2), call, paramsyntax, actual);
+        exit(false);
+        end;
+
+    CheckAndFetchParamCountRange:= true;
+end;
+
 // check if is same or higher as minCount
 function CheckAndFetchLuaParamMinCount(L : Plua_State; minCount: LongInt; call, paramsyntax: shortstring; out actual: LongInt): boolean; inline;
 begin
@@ -1053,16 +1069,16 @@
                 hh:= team^.Hedgehogs[j];
                 if (hh.Gear <> nil) or (hh.GearHidden <> nil) then
                     begin
-                    FreeTexture(hh.NameTagTex);
+                    FreeAndNilTexture(hh.NameTagTex);
                     hh.NameTagTex:= RenderStringTex(ansistring(hh.Name), clan^.Color, fnt16);
                     RenderHealth(hh);
                     end;
                 end;
-            FreeTexture(team^.NameTagTex);
+            FreeAndNilTexture(team^.NameTagTex);
             team^.NameTagTex:= RenderStringTex(ansistring(clan^.Teams[i]^.TeamName), clan^.Color, fnt16);
             end;
 
-	FreeTexture(clan^.HealthTex);
+	    FreeAndNilTexture(clan^.HealthTex);
         clan^.HealthTex:= makeHealthBarTexture(cTeamHealthWidth + 5, clan^.Teams[0]^.NameTagTex^.h, clan^.Color);
         end;
 
@@ -1095,7 +1111,7 @@
             begin
             gear^.Hedgehog^.Team^.TeamName := lua_tostring(L, 2);
 
-            FreeTexture(gear^.Hedgehog^.Team^.NameTagTex);
+            FreeAndNilTexture(gear^.Hedgehog^.Team^.NameTagTex);
             gear^.Hedgehog^.Team^.NameTagTex:= RenderStringTex(ansistring(gear^.Hedgehog^.Team^.TeamName), gear^.Hedgehog^.Team^.Clan^.Color, fnt16);
             end
         else
@@ -1134,7 +1150,7 @@
             begin
             gear^.Hedgehog^.Name:= lua_tostring(L, 2);
 
-            FreeTexture(gear^.Hedgehog^.NameTagTex);
+            FreeAndNilTexture(gear^.Hedgehog^.NameTagTex);
             gear^.Hedgehog^.NameTagTex:= RenderStringTex(ansistring(gear^.Hedgehog^.Name), gear^.Hedgehog^.Team^.Clan^.Color, fnt16)
             end
         end;
@@ -2252,16 +2268,86 @@
     lc_declareachievement:= 0
 end;
 
-// stuff for testing the lua API
-function lc_endluatest(L : Plua_State) : LongInt; Cdecl;
+
+procedure ScriptFlushPoints();
 begin
-    if CheckLuaParamCount(L, 1, 'EndLuaAPITest', 'LUA_API_TEST_SUCCESSFUL or LUA_API_TEST_FAILED') then
+    ParseCommand('draw ' + PointsBuffer, true, true);
+    PointsBuffer:= '';
+end;
+
+
+function lc_addPoint(L : Plua_State) : LongInt; Cdecl;
+var np, param: LongInt;
+begin
+    if CheckAndFetchParamCountRange(L, 2, 4, 'AddPoint', 'x, y [, width [, erase] ]', np) then
         begin
-        WriteLnToConsole('Lua test finished');
-        halt(lua_tointeger(L, 1));
-        end
-    else
-        lua_pushnil(L);
+        // x
+        param:= LongInt(lua_tointeger(L,1));
+        PointsBuffer:= PointsBuffer + char((param shr 8) and $FF);
+        PointsBuffer:= PointsBuffer + char((param and $FF));
+        // y
+        param:= LongInt(lua_tointeger(L,2));
+        PointsBuffer:= PointsBuffer + char((param shr 8) and $FF);
+        PointsBuffer:= PointsBuffer + char((param and $FF));
+        // width
+        if np > 2 then
+            begin
+            param:= lua_tointeger(L,3);
+            param:= (param or $80);
+            // erase
+            if (np > 3) and lua_toboolean(L, 4) then
+                param:= (param or $40);
+            PointsBuffer:= PointsBuffer + char(param);
+            end
+        // no width defined
+        else
+            PointsBuffer:= PointsBuffer + char(0);
+
+        // flush before shortstring limit length is reached
+        if length(PointsBuffer) > 245 then
+            ScriptFlushPoints();
+        end;
+    lc_addPoint:= 0
+end;
+
+
+function lc_flushPoints(L : Plua_State) : LongInt; Cdecl;
+begin
+    if CheckLuaParamCount(L, 0, 'FlushPoints', '') then
+        if length(PointsBuffer) > 0 then
+            ScriptFlushPoints();
+    lc_flushPoints:= 0
+end;
+
+// stuff for lua tests
+function lc_endluatest(L : Plua_State) : LongInt; Cdecl;
+var rstring: shortstring;
+const
+    call = 'EndLuaTest';
+    params = 'TEST_SUCCESSFUL or TEST_FAILED';
+begin
+    if CheckLuaParamCount(L, 1, call, params) then
+        begin
+
+        case lua_tointeger(L, 1) of
+            HaltTestSuccess : rstring:= 'Success';
+            HaltTestLuaError: rstring:= 'FAILED';
+        else
+            begin
+            LuaCallError('Parameter must be either ' + params, call, params);
+            exit(0);
+            end;
+        end;
+
+        if cTestLua then
+            begin
+            WriteLnToConsole('Lua test finished, result: ' + rstring);
+            halt(lua_tointeger(L, 1));
+            end
+        else LuaError('Not in lua test mode, engine will keep running. Reported test result: ' + rstring);
+
+        end;
+
     lc_endluatest:= 0;
 end;
 ///////////////////
@@ -2738,6 +2824,7 @@
 ScriptSetInteger('gfLowGravity', gfLowGravity);
 ScriptSetInteger('gfLaserSight', gfLaserSight);
 ScriptSetInteger('gfInvulnerable', gfInvulnerable);
+ScriptSetInteger('gfResetHealth', gfResetHealth);
 ScriptSetInteger('gfVampiric', gfVampiric);
 ScriptSetInteger('gfKarma', gfKarma);
 ScriptSetInteger('gfArtillery', gfArtillery);
@@ -2947,17 +3034,17 @@
 lua_register(luaState, _P'SetWaterLine', @lc_setwaterline);
 lua_register(luaState, _P'SetNextWeapon', @lc_setnextweapon);
 lua_register(luaState, _P'SetWeapon', @lc_setweapon);
+// drawn map functions
+lua_register(luaState, _P'AddPoint', @lc_addPoint);
+lua_register(luaState, _P'FlushPoints', @lc_flushPoints);
 
 lua_register(luaState, _P'SetGearAIHints', @lc_setaihintsongear);
 lua_register(luaState, _P'HedgewarsScriptLoad', @lc_hedgewarsscriptload);
 lua_register(luaState, _P'DeclareAchievement', @lc_declareachievement);
 
-if cTestLua then
-    begin
-    ScriptSetInteger('TEST_SUCCESSFUL'   , HaltTestSuccess);
-    ScriptSetInteger('TEST_FAILED'       , HaltTestFailed);
-    lua_register(luaState, _P'EndLuaTest', @lc_endluatest);
-    end;
+ScriptSetInteger('TEST_SUCCESSFUL'   , HaltTestSuccess);
+ScriptSetInteger('TEST_FAILED'       , HaltTestFailed);
+lua_register(luaState, _P'EndLuaTest', @lc_endluatest);
 
 ScriptClearStack; // just to be sure stack is empty
 ScriptLoaded:= false;
@@ -3051,6 +3138,7 @@
 procedure initModule;
 begin
 mapDims:= false;
+PointsBuffer:= '';
 end;
 
 procedure freeModule;
--- a/hedgewars/uStore.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uStore.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -50,7 +50,6 @@
 function  RenderHelpWindow(caption, subcaption, description, extra: ansistring; extracolor: LongInt; iconsurf: PSDL_Surface; iconrect: PSDL_Rect): PTexture;
 procedure RenderWeaponTooltip(atype: TAmmoType);
 procedure ShowWeaponTooltip(x, y: LongInt);
-procedure FreeWeaponTooltip;
 procedure MakeCrossHairs;
 {$IFDEF USE_VIDEO_RECORDING}
 procedure InitOffscreenOpenGL;
@@ -97,7 +96,9 @@
 procedure InitZoom(zoom: real);
 begin
     SetScale(zoom);
-    UpdateViewLimits();
+    // make sure view limits are updated
+    // because SetScale() doesn't do it, if zoom=cScaleFactor
+    updateViewLimits();
 end;
 
 function WriteInRect(Surface: PSDL_Surface; X, Y: LongInt; Color: LongWord; Font: THWFont; s: PChar): TSDL_Rect;
@@ -475,7 +476,7 @@
             tmpsurf:= TTF_RenderUTF8_Blended(Fontz[CheckCJKFont(trAmmo[NameId],fnt16)].Handle, PChar(trAmmo[NameId]), cWhiteColorChannels);
             TryDo(tmpsurf <> nil,'Name-texture creation for ammo type #' + intToStr(ord(ai)) + ' failed!',true);
             tmpsurf:= doSurfaceConversion(tmpsurf);
-            FreeTexture(NameTex);
+            FreeAndNilTexture(NameTex);
             NameTex:= Surface2Tex(tmpsurf, false);
             SDL_FreeSurface(tmpsurf)
             end;
@@ -485,7 +486,7 @@
         begin
         tmpsurf:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, Str2PChar(IntToStr(i) + 'x'), cWhiteColorChannels);
         tmpsurf:= doSurfaceConversion(tmpsurf);
-        FreeTexture(CountTexz[i]);
+        FreeAndNilTexture(CountTexz[i]);
         CountTexz[i]:= Surface2Tex(tmpsurf, false);
         SDL_FreeSurface(tmpsurf)
         end;
@@ -580,7 +581,7 @@
 var s: shortstring;
 begin
 str(Hedgehog.Gear^.Health, s);
-FreeTexture(Hedgehog.HealthTagTex);
+FreeAndNilTexture(Hedgehog.HealthTagTex);
 Hedgehog.HealthTagTex:= RenderStringTex(ansistring(s), Hedgehog.Team^.Clan^.Color, fnt16)
 end;
 
@@ -610,17 +611,17 @@
     // loading failed
     if tmpsurf = nil then
         begin
-
-        // anounce that loading failed
-        OutError(msgFailed, false);
-
         // output sdl error if loading failed when data source was available
         if rwops <> nil then
             begin
+            // anounce that loading failed
+            OutError(msgFailed, false);
+
             SDLTry(false, (imageFlags and ifCritical) <> 0);
             // rwops was already freed by IMG_Load_RW
             rwops:= nil;
-            end;
+            end else
+            OutError(msgFailed, (imageFlags and ifCritical) <> 0);
         exit;
         end;
 
@@ -697,10 +698,7 @@
 begin
     // free the mem of any previously assigned texture.  This was previously only if the new one could be loaded, but, NoHat is usually a better choice
     if HH.HatTex <> nil then
-        begin
-        FreeTexture(HH.HatTex);
-        HH.HatTex:= nil
-        end;
+        FreeAndNilTexture(HH.HatTex);
 
     // load new hat surface if this hat is different than the one already loaded
     if newHat <> prevHat then
@@ -843,8 +841,7 @@
             GameLoaded();
     {$ENDIF}
     WriteLnToConsole('Freeing progress surface... ');
-    FreeTexture(ProgrTex);
-    ProgrTex:= nil;
+    FreeAndNilTexture(ProgrTex);
     Step:= 0
 end;
 
@@ -982,7 +979,7 @@
         end;
 
 // free old texture
-FreeWeaponTooltip;
+FreeAndNilTexture(WeaponTooltipTex);
 
 // image region
 i:= LongInt(atype) - 1;
@@ -1022,13 +1019,6 @@
     DrawTexture(x, y, WeaponTooltipTex)
 end;
 
-procedure FreeWeaponTooltip;
-begin
-// free the existing texture (if there is any)
-FreeTexture(WeaponTooltipTex);
-WeaponTooltipTex:= nil
-end;
-
 {$IFDEF USE_VIDEO_RECORDING}
 {$IFDEF SDL2}
 procedure InitOffscreenOpenGL;
@@ -1270,8 +1260,20 @@
 end;
 
 procedure freeModule;
+var fi: THWFont;
 begin
     StoreRelease(false);
+    // make sure fonts are cleaned up
+    for fi:= Low(THWFont) to High(THWFont) do
+        with Fontz[fi] do
+            begin
+            if Handle <> nil then
+                begin
+                TTF_CloseFont(Handle);
+                Handle:= nil;
+                end;
+            end;
+
     TTF_Quit();
 {$IFDEF SDL2}
     SDL_GL_DeleteContext(SDLGLcontext);
--- a/hedgewars/uTeams.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uTeams.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -649,38 +649,38 @@
     Delete(s, 1, 1);
 
     t:= 0;
-    while (t < cMaxTeams) and (TeamsArray[t] <> nil) and (TeamsArray[t]^.TeamName <> s) do
+    while (t < TeamsCount) and (TeamsArray[t]^.TeamName <> s) do
         inc(t);
-    if (t = cMaxTeams) or (TeamsArray[t] = nil) then
+    if t = TeamsCount then
         exit;
 
     TeamsArray[t]^.isGoneFlagPendingToBeSet:= true;
 
     if isSynced then
-    begin
-    for i:= 0 to Pred(cMaxTeams) do
-        with TeamsArray[i]^ do
-            begin
-            if (not hasGone) and isGoneFlagPendingToBeSet then
+        begin
+        for i:= 0 to Pred(TeamsCount) do
+            with TeamsArray[i]^ do
                 begin
-                AddChatString('** '+ TeamName + ' is gone'); // TODO: localize
-                if not CurrentTeam^.ExtDriven then SendIPC(_S'f' + s);
-                hasGone:= true;
-                skippedTurns:= 0;
-                isGoneFlagPendingToBeSet:= false;
-                RecountTeamHealth(TeamsArray[i])
-                end;
-            if hasGone and isGoneFlagPendingToBeUnset then
-                ParseCommand('/teamback s' + s, true);
-            end;
-    end
+                if (not hasGone) and isGoneFlagPendingToBeSet then
+                    begin
+                    AddChatString('** '+ TeamName + ' is gone'); // TODO: localize
+                    if not CurrentTeam^.ExtDriven then SendIPC(_S'f' + s);
+                    hasGone:= true;
+                    skippedTurns:= 0;
+                    isGoneFlagPendingToBeSet:= false;
+                    RecountTeamHealth(TeamsArray[i])
+                    end;
+                if hasGone and isGoneFlagPendingToBeUnset then
+                    ParseCommand('/teamback s' + s, true)
+                end
+        end
     else
-    begin
+        begin
         TeamsArray[t]^.isGoneFlagPendingToBeSet:= true;
 
         if (not CurrentTeam^.ExtDriven) or (CurrentTeam^.TeamName = s) or (CurrentTeam^.hasGone) then
-            ParseCommand('/teamgone s' + s, true);
-    end;
+            ParseCommand('/teamgone s' + s, true)
+        end;
 end;
 
 procedure chTeamBack(var s:shortstring);
@@ -692,9 +692,9 @@
     Delete(s, 1, 1);
 
     t:= 0;
-    while (t < cMaxTeams) and (TeamsArray[t] <> nil) and (TeamsArray[t]^.TeamName <> s) do
+    while (t < TeamsCount) and (TeamsArray[t]^.TeamName <> s) do
         inc(t);
-    if (t = cMaxTeams) or (TeamsArray[t] = nil) then
+    if t = TeamsCount then
         exit;
 
     if isSynced then
@@ -715,12 +715,12 @@
                 end;
         end
     else
-    begin
+        begin
         TeamsArray[t]^.isGoneFlagPendingToBeUnset:= true;
 
         if not CurrentTeam^.ExtDriven then
             ParseCommand('/teamback s' + s, true);
-    end;
+        end;
 end;
 
 
@@ -731,10 +731,10 @@
 s:= s;
 
 t:= 0;
-while (t < cMaxTeams) and (TeamsArray[t] <> nil) do
+while t < TeamsCount do
     begin
     TeamsArray[t]^.hasGone:= true;
-    inc(t);
+    inc(t)
     end;
 
 AddChatString('** Good-bye!');
@@ -845,6 +845,7 @@
 procedure freeModule;
 var i, h: LongWord;
 begin
+CurrentHedgehog:= nil;
 if TeamsCount > 0 then
     begin
     for i:= 0 to Pred(TeamsCount) do
@@ -852,28 +853,32 @@
         for h:= 0 to cMaxHHIndex do
             with TeamsArray[i]^.Hedgehogs[h] do
                 begin
+//                if Gear <> nil then
+//                    DeleteGearStage(Gear, true);
                 if GearHidden <> nil then
                     Dispose(GearHidden);
+//                    DeleteGearStage(GearHidden, true);
 
-                FreeTexture(NameTagTex);
-                FreeTexture(HealthTagTex);
-                FreeTexture(HatTex);
+                FreeAndNilTexture(NameTagTex);
+                FreeAndNilTexture(HealthTagTex);
+                FreeAndNilTexture(HatTex)
                 end;
 
         with TeamsArray[i]^ do
             begin
-            FreeTexture(NameTagTex);
-            FreeTexture(GraveTex);
-            FreeTexture(AIKillsTex);
-            FreeTexture(FlagTex);
+            FreeAndNilTexture(NameTagTex);
+            FreeAndNilTexture(OwnerTex);
+            FreeAndNilTexture(GraveTex);
+            FreeAndNilTexture(AIKillsTex);
+            FreeAndNilTexture(FlagTex);
             end;
 
-        Dispose(TeamsArray[i]);
-    end;
+        Dispose(TeamsArray[i])
+        end;
     for i:= 0 to Pred(ClansCount) do
         begin
-        FreeTexture(ClansArray[i]^.HealthTex);
-        Dispose(ClansArray[i]);
+        FreeAndNilTexture(ClansArray[i]^.HealthTex);
+        Dispose(ClansArray[i])
         end
     end;
 TeamsCount:= 0;
--- a/hedgewars/uTextures.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uTextures.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -27,7 +27,6 @@
 function  Surface2Tex(surf: PSDL_Surface; enableClamp: boolean): PTexture;
 procedure PrettifySurfaceAlpha(surf: PSDL_Surface; pixels: PLongwordArray);
 procedure PrettifyAlpha2D(pixels: TLandArray; height, width: LongWord);
-procedure FreeTexture(tex: PTexture);
 procedure FreeAndNilTexture(var tex: PTexture);
 
 procedure initModule;
@@ -297,25 +296,20 @@
 
 // deletes texture and frees the memory allocated for it.
 // if nil is passed nothing is done
-procedure FreeTexture(tex: PTexture);
-begin
-if tex <> nil then
-    begin
-    if tex^.NextTexture <> nil then
-        tex^.NextTexture^.PrevTexture:= tex^.PrevTexture;
-    if tex^.PrevTexture <> nil then
-        tex^.PrevTexture^.NextTexture:= tex^.NextTexture
-    else
-        TextureList:= tex^.NextTexture;
-    glDeleteTextures(1, @tex^.id);
-    Dispose(tex);
-    end
-end;
-
 procedure FreeAndNilTexture(var tex: PTexture);
 begin
-    FreeTexture(tex);
-    tex:= nil
+    if tex <> nil then
+        begin
+        if tex^.NextTexture <> nil then
+            tex^.NextTexture^.PrevTexture:= tex^.PrevTexture;
+        if tex^.PrevTexture <> nil then
+            tex^.PrevTexture^.NextTexture:= tex^.NextTexture
+        else
+            TextureList:= tex^.NextTexture;
+        glDeleteTextures(1, @tex^.id);
+        Dispose(tex);
+        tex:= nil;
+        end;
 end;
 
 procedure initModule;
@@ -324,13 +318,15 @@
 end;
 
 procedure freeModule;
+var tex: PTexture;
 begin
 if TextureList <> nil then
     WriteToConsole('FIXME FIXME FIXME. App shutdown without full cleanup of texture list; read game0.log and please report this problem');
     while TextureList <> nil do
         begin
-        AddFileLog('Texture not freed: width='+inttostr(LongInt(TextureList^.w))+' height='+inttostr(LongInt(TextureList^.h))+' priority='+inttostr(round(TextureList^.priority*1000)));
-        FreeTexture(TextureList);
+        tex:= TextureList;
+        AddFileLog('Texture not freed: width='+inttostr(LongInt(tex^.w))+' height='+inttostr(LongInt(tex^.h))+' priority='+inttostr(round(tex^.priority*1000)));
+        FreeAndNilTexture(tex);
         end
 end;
 
--- a/hedgewars/uTypes.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uTypes.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -388,7 +388,7 @@
             Hedgehogs: array[0..cMaxHHIndex] of THedgehog;
             CurrHedgehog: LongWord;
             NameTagTex,
-            OwnerTex: PTexture;
+            OwnerTex,
             GraveTex,
             AIKillsTex,
             FlagTex: PTexture;
--- a/hedgewars/uUtils.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uUtils.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -74,6 +74,7 @@
 procedure Write(var f: textfile; s: shortstring);
 procedure WriteLn(var f: textfile; s: shortstring);
 function StrLength(s: PChar): Longword;
+procedure SetLengthA(var s: ansistring; len: Longword);
 {$ENDIF}
 
 function  isPhone: Boolean; inline;
--- a/hedgewars/uVariables.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uVariables.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -186,6 +186,7 @@
 
 
     flagMakeCapture : boolean;
+    flagDumpLand    : boolean;
 
     InitStepsFlags  : Longword;
     RealTicks       : Longword;
@@ -2584,6 +2585,7 @@
     cVampiric       := false;
     cArtillery      := false;
     flagMakeCapture := false;
+    flagDumpLand    := false;
     bBetweenTurns   := false;
     bWaterRising    := false;
     isCursorVisible := false;
@@ -2612,13 +2614,13 @@
 
     dirtyLandTexCount:= 0;
 
-    vobFrameTicks:= 99999;
+    vobFrameTicks:= 0;
     vobFramesCount:= 4;
     vobCount:= 0;
     vobVelocity:= 10;
     vobFallSpeed:= 100;
 
-    vobSDFrameTicks:= 99999;
+    vobSDFrameTicks:= 0;
     vobSDFramesCount:= 4;
     vobSDCount:= 30 * cScreenSpace div LAND_WIDTH;
     vobSDVelocity:= 15;
--- a/hedgewars/uVideoRec.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uVideoRec.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -239,7 +239,7 @@
     thumbpath:= '/VideoTemp/' + RecPrefix;
     AddFileLog('Saving thumbnail ' + thumbpath);
     k:= max(max(cScreenWidth, cScreenHeight) div 400, 1); // here 400 is minimum size of thumbnail
-    MakeScreenshot(thumbpath, k);
+    MakeScreenshot(thumbpath, k, 0);
     thumbnailSaved:= true;
 end;
 
--- a/hedgewars/uVisualGears.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uVisualGears.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -205,9 +205,9 @@
                   vgtSmoke: DrawTextureF(SpritesData[sprSmoke].Texture, Gear^.scale, round(Gear^.X) + WorldDx, round(Gear^.Y) + WorldDy, 7 - Gear^.Frame, 1, SpritesData[sprSmoke].Width, SpritesData[sprSmoke].Height);
                   vgtSmokeWhite: DrawSprite(sprSmokeWhite, round(Gear^.X) + WorldDx - 11, round(Gear^.Y) + WorldDy - 11, 7 - Gear^.Frame);
                   vgtDust: if Gear^.State = 1 then
-                               DrawSpriteRotatedF(sprSnowDust, round(Gear^.X) + WorldDx - 11, round(Gear^.Y) + WorldDy - 11, 7 - Gear^.Frame, Gear^.Tag, Gear^.Angle)
+                               DrawSpriteRotatedF(sprSnowDust, round(Gear^.X) + WorldDx, round(Gear^.Y) + WorldDy, 7 - Gear^.Frame, Gear^.Tag, Gear^.Angle)
                            else
-                               DrawSpriteRotatedF(sprDust, round(Gear^.X) + WorldDx - 11, round(Gear^.Y) + WorldDy - 11, 7 - Gear^.Frame, Gear^.Tag, Gear^.Angle);
+                               DrawSpriteRotatedF(sprDust, round(Gear^.X) + WorldDx, round(Gear^.Y) + WorldDy, 7 - Gear^.Frame, Gear^.Tag, Gear^.Angle);
                   vgtFire: if (Gear^.State and gstTmpFlag) = 0 then
                                DrawSprite(sprFlame, round(Gear^.X) + WorldDx - 8, round(Gear^.Y) + WorldDy, (RealTicks shr 6 + Gear^.Frame) mod 8)
                            else
@@ -508,11 +508,11 @@
     vg:= VisualGearLayers[i];
     while vg <> nil do
         if vg^.Kind = vgtFlake then
-        begin
-        tmp:= vg^.NextGear;
-        DeleteVisualGear(vg);
-        vg:= tmp
-        end
+            begin
+            tmp:= vg^.NextGear;
+            DeleteVisualGear(vg);
+            vg:= tmp
+            end
         else vg:= vg^.NextGear;
     end;
 if hasBorder or (not cSnow) then
--- a/hedgewars/uVisualGearsHandlers.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uVisualGearsHandlers.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -80,32 +80,41 @@
 procedure doStepFlake(Gear: PVisualGear; Steps: Longword);
 var sign: real;
     moved: boolean;
+    vfc, vft: LongWord;
 begin
 if vobCount = 0 then exit;
 
 sign:= 1;
 with Gear^ do
     begin
-    inc(FrameTicks, Steps);
-    if not SuddenDeathDmg and (FrameTicks > vobFrameTicks) then
+
+    X:= X + (cWindSpeedf * 400 + dX + tdX) * Steps * Gear^.Scale;
+
+    if SuddenDeathDmg then
         begin
-        dec(FrameTicks, vobFrameTicks);
-        inc(Frame);
-        if Frame = vobFramesCount then
-            Frame:= 0
+        Y:= Y + (dY + tdY + cGravityf * vobSDFallSpeed) * Steps * Gear^.Scale;
+        vfc:= vobSDFramesCount;
+        vft:= vobSDFrameTicks;
         end
-    else if SuddenDeathDmg and (FrameTicks > vobSDFrameTicks) then
+    else
         begin
-        dec(FrameTicks, vobSDFrameTicks);
-        inc(Frame);
-        if Frame = vobSDFramesCount then
-            Frame:= 0
+        Y:= Y + (dY + tdY + cGravityf * vobFallSpeed) * Steps * Gear^.Scale;
+        vfc:= vobFramesCount;
+        vft:= vobFrameTicks;
         end;
-    X:= X + (cWindSpeedf * 400 + dX + tdX) * Steps * Gear^.Scale;
-    if SuddenDeathDmg then
-        Y:= Y + (dY + tdY + cGravityf * vobSDFallSpeed) * Steps * Gear^.Scale
-    else
-        Y:= Y + (dY + tdY + cGravityf * vobFallSpeed) * Steps * Gear^.Scale;
+
+    if vft > 0 then
+        begin
+        inc(FrameTicks, Steps);
+        if FrameTicks > vft then
+            begin
+            dec(FrameTicks, vft);
+            inc(Frame);
+            if Frame = vfc then
+                Frame:= 0
+            end;
+        end;
+
     Angle:= Angle + dAngle * Steps;
     if Angle > 360 then
         Angle:= Angle - 360
--- a/hedgewars/uVisualGearsList.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uVisualGearsList.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -102,12 +102,14 @@
                 Scale:= 1.0;
                 if SuddenDeathDmg then
                     begin
-                    FrameTicks:= random(vobSDFrameTicks);
+                    if vobSDFrameTicks > 0 then
+                        FrameTicks:= random(vobSDFrameTicks);
                     Frame:= random(vobSDFramesCount);
                     end
                 else
                     begin
-                    FrameTicks:= random(vobFrameTicks);
+                    if vobFrameTicks > 0 then
+                        FrameTicks:= random(vobFrameTicks);
                     Frame:= random(vobFramesCount);
                     end;
                 Angle:= random(360);
@@ -430,8 +432,7 @@
 
 procedure DeleteVisualGear(Gear: PVisualGear);
 begin
-    FreeTexture(Gear^.Tex);
-    Gear^.Tex:= nil;
+    FreeAndNilTexture(Gear^.Tex);
 
     if Gear^.NextGear <> nil then
         Gear^.NextGear^.PrevGear:= Gear^.PrevGear;
--- a/hedgewars/uWorld.pas	Thu Dec 18 00:03:53 2014 +0300
+++ b/hedgewars/uWorld.pas	Sat Jan 03 23:46:26 2015 +0300
@@ -228,7 +228,7 @@
 prevPoint.Y:= cScreenHeight div 2;
 //prevTargetPoint.X:= 0;
 //prevTargetPoint.Y:= 0;
-WorldDx:=  -(LAND_WIDTH div 2);// + cScreenWidth div 2;
+WorldDx:=  -(LongInt(leftX + (playWidth div 2))); // -(LAND_WIDTH div 2);// + cScreenWidth div 2;
 WorldDy:=  -(LAND_HEIGHT - (playHeight div 2)) + (cScreenHeight div 2);
 
 //aligns it to the bottom of the screen, minus the border
@@ -404,17 +404,12 @@
 // for uStore texture resetting
 procedure ResetWorldTex;
 begin
-    FreeTexture(fpsTexture);
-    fpsTexture:= nil;
-    FreeTexture(timeTexture);
-    timeTexture:= nil;
-    FreeTexture(missionTex);
-    missionTex:= nil;
-    FreeTexture(recTexture);
-    recTexture:= nil;
-    FreeTexture(AmmoMenuTex);
+    FreeAndNilTexture(fpsTexture);
+    FreeAndNilTexture(timeTexture);
+    FreeAndNilTexture(missionTex);
+    FreeAndNilTexture(recTexture);
+    FreeAndNilTexture(AmmoMenuTex);
     AmmoMenuInvalidated:= true;
-    AmmoMenuTex:= nil;
 end;
 
 function GetAmmoMenuTexture(Ammo: PHHAmmo): PTexture;
@@ -566,7 +561,7 @@
 if(AmmoMenuInvalidated) then
     begin
     AmmoMenuInvalidated:= false;
-    FreeTexture(AmmoMenuTex);
+    FreeAndNilTexture(AmmoMenuTex);
     AmmoMenuTex:= GetAmmoMenuTexture(Ammo);
 
 {$IFDEF USE_LANDSCAPE_AMMOMENU}
@@ -749,7 +744,7 @@
                 bShowAmmoMenu:= false;
                 SetWeapon(Ammo^[Slot, Pos].AmmoType);
                 bSelected:= false;
-                FreeWeaponTooltip;
+                FreeAndNilTexture(WeaponTooltipTex);
 {$IFDEF USE_TOUCH_INTERFACE}//show the aiming buttons + animation
                 if (Ammo^[Slot, Pos].Propz and ammoprop_NeedUpDown) <> 0 then
                     begin
@@ -772,7 +767,7 @@
             end
         end
     else
-        FreeWeaponTooltip;
+        FreeAndNilTexture(WeaponTooltipTex);
 
     if (WeaponTooltipTex <> nil) and (AMShiftX = 0) and (AMShiftY = 0) then
 {$IFDEF USE_LANDSCAPE_AMMOMENU}
@@ -1032,7 +1027,7 @@
         begin
         rect.w:= w;
         rect.x:= ViewLeftX;
-        DrawRect(rect, $30, $30, $30, $40, true);
+        DrawRect(rect, $10, $10, $10, $80, true);
         if WorldEdge = weBounce then
             DrawLineOnScreen(tmp - 1, ViewTopY, tmp - 1, ViewBottomY, 2, $54, $54, $FF, $FF);
         end;
@@ -1044,7 +1039,7 @@
         begin
         rect.w:= w;
         rect.x:= tmp;
-        DrawRect(rect, $30, $30, $30, $40, true);
+        DrawRect(rect, $10, $10, $10, $80, true);
         if WorldEdge = weBounce then
             DrawLineOnScreen(tmp - 1, ViewTopY, tmp - 1, ViewBottomY, 2, $54, $54, $FF, $FF);
         end;
@@ -1682,7 +1677,7 @@
 
         tmpSurface:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, Str2PChar(s), cWhiteColorChannels);
         tmpSurface:= doSurfaceConversion(tmpSurface);
-        FreeTexture(timeTexture);
+        FreeAndNilTexture(timeTexture);
         timeTexture:= Surface2Tex(tmpSurface, false);
         SDL_FreeSurface(tmpSurface)
         end;
@@ -1700,7 +1695,7 @@
             s:= inttostr(FPS) + ' fps';
             tmpSurface:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, Str2PChar(s), cWhiteColorChannels);
             tmpSurface:= doSurfaceConversion(tmpSurface);
-            FreeTexture(fpsTexture);
+            FreeAndNilTexture(fpsTexture);
             fpsTexture:= Surface2Tex(tmpSurface, false);
             SDL_FreeSurface(tmpSurface)
             end;
@@ -1763,7 +1758,7 @@
         s:= 'rec';
         tmpSurface:= TTF_RenderUTF8_Blended(Fontz[fntBig].Handle, Str2PChar(s), cWhiteColorChannels);
         tmpSurface:= doSurfaceConversion(tmpSurface);
-        FreeTexture(recTexture);
+        FreeAndNilTexture(recTexture);
         recTexture:= Surface2Tex(tmpSurface, false);
         SDL_FreeSurface(tmpSurface)
         end;
@@ -1862,7 +1857,7 @@
     uCursor.updatePosition();
 {$ENDIF}
 z:= round(200/zoom);
-inbtwnTrgtAttks := (CurrentHedgehog <> nil) and ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) <> 0) and ((GameFlags and gfInfAttack) <> 0);
+inbtwnTrgtAttks := ((GameFlags and gfInfAttack) <> 0) and (CurrentHedgehog <> nil) and ((CurrentHedgehog^.Gear = nil) or (CurrentHedgehog^.Gear <> FollowGear)) and ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) <> 0);
 if autoCameraOn and (not PlacingHogs) and (FollowGear <> nil) and (not isCursorVisible) and (not bShowAmmoMenu) and (not fastUntilLag) and (not inbtwnTrgtAttks) then
     if ((abs(CursorPoint.X - prevPoint.X) + abs(CursorPoint.Y - prevpoint.Y)) > 4) then
         begin
@@ -1872,12 +1867,17 @@
         end
     else
         begin
-        if abs(prevPoint.X - WorldDx - hwRound(FollowGear^.X)) > LongInt(rightX) - leftX - 100 then
+        if (WorldEdge = weWrap) then
+            cameraJump:= LongInt(playWidth) div 2 + 50
+        else
+            cameraJump:= LongInt(rightX) - leftX - 100;
+
+        if abs(prevPoint.X - WorldDx - hwRound(FollowGear^.X)) > cameraJump then
             begin
-            if (prevPoint.X - WorldDx) * 2 < LongInt((rightX + leftX)) then
-                cameraJump:= LongInt(rightX) - leftX
-                else
-                cameraJump:= LongInt(leftX) - rightX;
+            if prevPoint.X - WorldDx < LongInt(playWidth div 2) then
+                cameraJump:= LongInt(playWidth)
+            else
+                cameraJump:= -LongInt(playWidth);
             WorldDx:= WorldDx - cameraJump;
             end;
 
@@ -2001,7 +2001,7 @@
 if time = 0 then
     time:= 5000;
 missionTimer:= time;
-FreeTexture(missionTex);
+FreeAndNilTexture(missionTex);
 
 if icon > -1 then
     begin
--- a/project_files/hwc/rtl/pas2c.h	Thu Dec 18 00:03:53 2014 +0300
+++ b/project_files/hwc/rtl/pas2c.h	Sat Jan 03 23:46:26 2015 +0300
@@ -61,7 +61,7 @@
 typedef LongInt * PLongInt;
 typedef LongWord * PLongWord;
 typedef Integer * PInteger;
-typedef int PtrInt;
+typedef ptrdiff_t PtrInt;
 typedef wchar_t widechar;
 typedef wchar_t* PWideChar;
 typedef char Char;
--- a/project_files/hwc/rtl/system.c	Thu Dec 18 00:03:53 2014 +0300
+++ b/project_files/hwc/rtl/system.c	Sat Jan 03 23:46:26 2015 +0300
@@ -296,6 +296,11 @@
 }
 
 LongInt fpcrtl_random(LongInt l) {
+    // random(0) is undefined in docs but effectively returns 0 in free pascal
+    if (l == 0) {
+        printf("WARNING: random(0) called!");
+        return 0;
+    }
     return (LongInt) (rand() / (double) RAND_MAX * l);
 }
 
Binary file share/hedgewars/Data/Graphics/Hats/war_UNPeacekeeper02.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Training/ClimbHome.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Training/ClimbHome@2x.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Training/Target_Practice_-_Bazooka_easy@2x.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Training/Target_Practice_-_Bazooka_hard@2x.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Training/Target_Practice_-_Cluster_Bomb@2x.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Training/Target_Practice_-_Grenade_easy@2x.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Training/Target_Practice_-_Grenade_hard@2x.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Training/Target_Practice_-_Homing_Bee@2x.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Training/Target_Practice_-_Shotgun@2x.png has changed
Binary file share/hedgewars/Data/Graphics/amRubber.png has changed
--- a/share/hedgewars/Data/Locale/de.txt	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Locale/de.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -130,7 +130,7 @@
 02:00=%1 ist ab jetzt ein Ex-Igel
 02:00=%1 sieht sich die Radieschen von unten an
 02:00=%1 hat aufgehört zu existieren
-02:00=Verabschieden Sie sich von %1
+02:00=Wir verabschieden uns von %1
 02:00=Für %1 gibt es keine Hoffnung mehr
 02:00=%1 trat von der Lebensbühne ab
 02:00=%1 erleidet ein spontanes multiples Organversagen
@@ -153,6 +153,21 @@
 02:00=%1 spürt keinen Schmerz mehr
 02:00=%1 muss nicht mehr leiden
 02:00=%1 hat eine Abkürzung gefunden …
+02:00=%1 war ohnehin nur Kanonenfutter
+02:00=Mir kommen die Tränen, %1!
+02:00=Man wird dich rächen, %1!
+02:00=%1 wartet auf die Wiederbelebung.
+02:00=%1 hat ein Nach-Tod-Erlebnis
+02:00=%1 hat im Spiel des Lebens verloren
+02:00=%1 wurde vernichtend geschlagen
+02:00=%1 hat alle Lebenspunkte aufgebraucht
+02:00=%1 wird nicht mehr auf Futtersuche gehen müssen
+02:00=%1 schläft den ganz langen Winterschlaf
+02:00=Warum musstest du sterben, %1?
+02:00=Oh, nein, %1! Wir hatten noch so viel vor …
+02:00=Jetzt braucht sich %1 nicht mehr vor dem Tod zu fürchten.
+02:00=%1 wurde von den Schrecken des Krieges erlöst
+02:00=Klappe zu, %1 tot!
 
 ; Hog (%1) drowned
 02:01=%1 geht auf Tauchstation!
@@ -221,6 +236,7 @@
 02:01=%1 lässt sich diese  einmalige  Tauchgelegenheit nicht entgehen
 02:01=Und wir dachten %1 könnte nicht noch tiefer sinken …
 02:01=%1 zieht eine Etage tiefer
+02:01=Seht, %1 kann schwimmen! Nein, doch nicht …
 
 ; Round starts
 02:02=Auf in die Schlacht!
@@ -253,7 +269,6 @@
 02:02=Lassen Sie den Kampf in der Woche beginnen
 02:02=Lassen Sie den Kampf des Tages beginnen
 02:02=Lassen Sie den Kampf der Stunde beginnen
-02:02=Tun Sie Ihr Bestes!
 02:02=Zerstört den Feind!
 02:02=Viel Glück!
 02:02=Viel Spaß!
@@ -292,6 +307,18 @@
 02:05=Ein Grund zur Hoffnung!
 02:05=Frisch aus dem Jungbrunnen
 02:05=Lebenszeit in Kisten
+02:05=Hilfe ist in Sicht!
+02:05=Das macht kranke Igel wieder gesund
+02:05=Schlagt das Lazarett auf!
+02:05=Erhöhe deine Lebenserwartung …
+02:05=Erste Hilfe!
+02:05=Endlich kommt Hilfe!
+02:05=Gesundmacher aus der Luft!
+02:05=Lebenspunkterhöhungsmittel!
+02:05=Kiste des Lebens
+02:05=Tankt eure Lebensenergie wieder auf!
+02:05=Hat jemand »Hatschi!« gesagt?
+02:05=Damit fühlt sich der Igel wieder pudelwohl!
 
 ; New ammo crate
 02:06=Nachschub!
@@ -312,13 +339,30 @@
 02:06=Was auch immer da drin ist, es ist bestimmt nicht Pizza
 02:06=Einsammlen!
 02:06=Eine Waffenkiste!
-02:06=Lassen Sie nicht zu, dass sich der Feind sie holt!
+02:06=Lasse nicht zu, dass der Feind sie holt!
 02:06=Schönes neues Spielzeug!
 02:06=Eine geheimnisvolle Kiste!
 02:06=Ein eckiges Ü-Ei!
 02:06=Die Holzkiste der Pandora!
 02:06=Willst du mit mir spielen?
 02:06=Quadratisch, praktisch, … gefährlich?
+02:06=Diese Kiste bringt Bombenstimmung!
+02:06=Damit kann man dem Feind so richtig einheizen
+02:06=Jetzt geht die Party erst richtig los!
+02:06=Damit kommt Freude auf!
+02:06=Ob da eine Melonenbombe drin ist?
+02:06=Das ist wie ein Kindergeburtstag!
+02:06=Wir brauchen Waffen, viele Waffen!
+02:06=Davon kann man nie genug haben.
+02:06=Neue Waffen, um das Spiel etwas spannender zu machen
+02:06=Neue Waffen braucht das Land!
+02:06=Nichts für Weicheier!
+02:06=Achtung: Inhalt hochexplosiv
+02:06=Wer zuerst kommt, mahlt zuerst!
+02:06=Für die Waffennarren
+02:06=Damit schlägt das Herz jedes Waffennarren höher!
+02:06=Waffenkiste: Nur echt mit dem Fragezeichen
+02:06=Dies könnte die spielentscheidende Waffe sein!
 
 ; New utility crate
 02:07=Nützliches?
@@ -327,11 +371,23 @@
 02:07=Lieferung frei Haus!
 02:07=Mehr als nur eine Kiste!
 02:07=Weitere Hilfsmittel!
-02:07=Extras für Sie!
+02:07=Extras für dich!
 02:07=Dies sollte gut sein!
-02:07=Verwenden Sie diese mit Bedacht
+02:07=Verwende diese mit Bedacht
 02:07=Uff, diese Box ist schwer
 02:07=Futter für Strategen
+02:07=Heimwerker atmen auf!
+02:07=Schaffe, schaffe, Häusle baue
+02:07=Werkzeuge kann man immer gebrauchen
+02:07=Auf diese Kisten können Sie bauen
+02:07=Ein Geschenk der Techniker!
+02:07=Strategen freuen sich!
+02:07=Dies könnte deine Mobilität wiederherstellen …
+02:07=Verschaffe dir einen strategischen Vorteil
+02:07=Muttern und Schrauben!
+02:07=Lieferung aus den Igelwerken!
+02:07=Damit schlägt das Herz jedes Mechanikers höher!
+02:07=So viele Möglichkeiten …
 
 ; Hog (%1) skips his turn
 02:08=%1 ist so ein Langeweiler …
@@ -392,7 +448,7 @@
 02:09=Das hat wohl nicht ganz geklappt, %1
 02:09=%1 geht ein wenig zu sorglos mit gefährlichen Waffen um
 02:09=%1 sollte eine Änderung der Laufbahn betrachten
-02:09=Nein, nein, nein, %1, Sie müssen auf den Feind schießen!
+02:09=Nein, nein, nein, %1, du musst auf den Feind schießen!
 02:09=%1 bewegt sich einen Schritt näher zum Selbstmord
 02:09=%1, Helfer des Feindes
 02:09=%1 hatte das anders geplant
@@ -418,6 +474,22 @@
 02:09=%1 wird vom Pech verfolgt
 02:09=Auch %1 macht mal Fehler
 02:09=Hoppla?!
+02:09=%1 will unbedingt den Darwin-Award gewinnen
+02:09=%1 macht sich lächerlich
+02:09=%1 hat absolut nichts dazugelernt
+02:09=%1 hat wohl nicht mehr alle Tassen im Schrank
+02:09=%1 ist durchgeknallt
+02:09=%1 bekommt so bald keine Beförderung mehr
+02:09=%1 verstümmelt sich selbst
+02:09=%1 mag Schmerzen
+02:09=%1 ist heute auf dem falschen Bein aufgestanden
+02:09=%1 schoss in die falsche Richtung
+02:09=Das sah schmerzhaft aus!
+02:09=%1 verwirrt den Feind
+02:09=Was ist denn mit %1 los?
+02:09=Keine Sorge, %1, nächstes Mal klappt’s bestimmt!
+02:09=%1 ist eine Gefahr für sich selbst
+02:09=%1 braucht keine Feinde mehr
 
 ; Hog (%1) shot an home run (using the bat and another hog)
 02:10=Home Run!
--- a/share/hedgewars/Data/Locale/hedgewars_de.ts	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_de.ts	Sat Jan 03 23:46:26 2015 +0300
@@ -275,7 +275,7 @@
 %1
 
 Please check your installation!</source>
-        <translation>Ich konnte dieses Daten-Verzeichnis nicht öffnen:
+        <translation>Folgendes Daten-Verzeichnis konnte nicht geöffnet werden:
 %1
 
 Bitte überprüfe deine Installation!</translation>
@@ -1130,7 +1130,7 @@
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="49"/>
         <source>Save</source>
-        <translation>Wiederholung speichern</translation>
+        <translation>Speichern</translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="78"/>
@@ -3456,13 +3456,15 @@
     <message>
         <location filename="../../../../QTfrontend/net/tcpBase.cpp" line="122"/>
         <source>Unable to start server at %1.</source>
-        <translation>Ich bin unfähig, den Server auf %1 zu starten.</translation>
+        <translation>Der Server konnte nicht gestartet werden.
+Pfad: %1</translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/net/tcpBase.cpp" line="221"/>
         <source>Unable to run engine at %1
 Error code: %2</source>
-        <translation>Ich bin unfähig, die Engine auf %1 laufen zu lassen.
+        <translation>Die Spiel-Engine konnte nicht gestartet werden.
+Pfad: %1
 Fehlercode: %2</translation>
     </message>
     <message>
--- a/share/hedgewars/Data/Locale/hedgewars_ru.ts	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_ru.ts	Sat Jan 03 23:46:26 2015 +0300
@@ -27,7 +27,7 @@
     </message>
     <message>
         <source>copy of %1</source>
-        <translation type="unfinished"></translation>
+        <translation>копия %1</translation>
     </message>
 </context>
 <context>
@@ -616,11 +616,11 @@
     </message>
     <message>
         <source>Random perlin</source>
-        <translation type="unfinished"></translation>
+        <translation>Случайная перлиновская</translation>
     </message>
     <message>
         <source>Style:</source>
-        <translation type="unfinished"></translation>
+        <translation>Стиль:</translation>
     </message>
 </context>
 <context>
@@ -690,7 +690,7 @@
     </message>
     <message>
         <source>Server authentication error</source>
-        <translation type="unfinished"></translation>
+        <translation>Ошибка аутентификации сервера</translation>
     </message>
 </context>
 <context>
@@ -890,7 +890,7 @@
     </message>
     <message>
         <source>Open packages directory</source>
-        <translation type="unfinished"></translation>
+        <translation>Открыть папку с пакетами</translation>
     </message>
 </context>
 <context>
@@ -945,7 +945,7 @@
     </message>
     <message>
         <source>Optimize</source>
-        <translation type="unfinished"></translation>
+        <translation>Оптимизировать</translation>
     </message>
 </context>
 <context>
@@ -1007,10 +1007,10 @@
     </message>
     <message numerus="yes">
         <source>The best shot award was won by &lt;b&gt;%1&lt;/b&gt; with &lt;b&gt;%2&lt;/b&gt; pts.</source>
-        <translation type="unfinished">
+        <translation>
+            <numerusform>Приз за лучший выстрел получает &lt;b&gt;%1&lt;/b&gt; с &lt;b&gt;%2&lt;/b&gt; пунктом урона.</numerusform>
             <numerusform>Приз за лучший выстрел получает &lt;b&gt;%1&lt;/b&gt; с &lt;b&gt;%2&lt;/b&gt; пунктами урона.</numerusform>
-            <numerusform></numerusform>
-            <numerusform></numerusform>
+            <numerusform>Приз за лучший выстрел получает &lt;b&gt;%1&lt;/b&gt; с &lt;b&gt;%2&lt;/b&gt; пунктами урона.</numerusform>
         </translation>
     </message>
     <message numerus="yes">
@@ -1073,8 +1073,6 @@
         <source>(%1 %2)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
-            <numerusform></numerusform>
-            <numerusform></numerusform>
         </translation>
     </message>
 </context>
@@ -1096,7 +1094,7 @@
     <name>PageMain</name>
     <message>
         <source>Downloadable Content</source>
-        <translation type="unfinished"></translation>
+        <translation>Скачиваемые дополнения</translation>
     </message>
     <message>
         <source>Play a game on a single computer</source>
@@ -1116,7 +1114,7 @@
     </message>
     <message>
         <source>Access the user created content downloadable from our website</source>
-        <translation type="unfinished"></translation>
+        <translation>Доступ к скачиваемым с нашего сайта дополнениям, созданным пользователями</translation>
     </message>
     <message>
         <source>Exit game</source>
@@ -1837,7 +1835,7 @@
     </message>
     <message>
         <source>Enable team tags by default</source>
-        <translation type="unfinished"></translation>
+        <translation>Включить ярлыки команд по умолчанию</translation>
     </message>
     <message>
         <source>Hog</source>
@@ -1845,7 +1843,7 @@
     </message>
     <message>
         <source>Enable hedgehog tags by default</source>
-        <translation type="unfinished"></translation>
+        <translation>Включить ярлыки ежей по умолчанию</translation>
     </message>
     <message>
         <source>Health</source>
@@ -1853,7 +1851,7 @@
     </message>
     <message>
         <source>Enable health tags by default</source>
-        <translation type="unfinished"></translation>
+        <translation>Включить ярлыки уровня здоровья по умолчанию</translation>
     </message>
     <message>
         <source>Translucent</source>
@@ -1861,7 +1859,7 @@
     </message>
     <message>
         <source>Enable translucent tags by default</source>
-        <translation type="unfinished"></translation>
+        <translation>Включить прозрачность ярлыков по умолчанию</translation>
     </message>
 </context>
 <context>
@@ -2262,7 +2260,7 @@
     </message>
     <message>
         <source>Script parameter</source>
-        <translation type="unfinished"></translation>
+        <translation>Параметр скрипта</translation>
     </message>
 </context>
 <context>
@@ -2429,8 +2427,6 @@
         <source>Do you really want to remove %1 file(s)?</source>
         <translation type="unfinished">
             <numerusform></numerusform>
-            <numerusform></numerusform>
-            <numerusform></numerusform>
         </translation>
     </message>
     <message>
@@ -2623,7 +2619,7 @@
     </message>
     <message>
         <source>Reset</source>
-        <translation type="unfinished"></translation>
+        <translation>Сбросить</translation>
     </message>
     <message>
         <source>Set the default server port for Hedgewars</source>
@@ -2713,7 +2709,7 @@
     </message>
     <message>
         <source>Random Perlin</source>
-        <translation type="unfinished"></translation>
+        <translation>Случайная перлиновская</translation>
     </message>
 </context>
 <context>
@@ -2763,7 +2759,7 @@
     </message>
     <message>
         <source>copy of %1</source>
-        <translation type="unfinished"></translation>
+        <translation>копия %1</translation>
     </message>
 </context>
 <context>
@@ -2992,7 +2988,7 @@
     </message>
     <message>
         <source>speed up replay</source>
-        <translation type="unfinished"></translation>
+        <translation>ускорить проигрывание</translation>
     </message>
 </context>
 <context>
@@ -3440,7 +3436,7 @@
     </message>
     <message>
         <source>restricted</source>
-        <translation type="unfinished"></translation>
+        <translation>ограничено</translation>
     </message>
     <message>
         <source>REMOVE_TEAM: no such team</source>
@@ -3496,7 +3492,7 @@
     </message>
     <message>
         <source>kicked</source>
-        <translation type="unfinished"></translation>
+        <translation>выкинут</translation>
     </message>
     <message>
         <source>Ping timeout</source>
@@ -3504,7 +3500,7 @@
     </message>
     <message>
         <source>bye</source>
-        <translation type="unfinished"></translation>
+        <translation>пока</translation>
     </message>
     <message>
         <source>No such room</source>
@@ -3512,7 +3508,7 @@
     </message>
     <message>
         <source>Joining restricted</source>
-        <translation type="unfinished"></translation>
+        <translation>Вход ограничен</translation>
     </message>
     <message>
         <source>Registered users only</source>
@@ -3528,7 +3524,7 @@
     </message>
     <message>
         <source>Restricted</source>
-        <translation type="unfinished"></translation>
+        <translation>Ограничено</translation>
     </message>
     <message>
         <source>Room version incompatible to your hedgewars version</source>
@@ -3552,15 +3548,15 @@
     </message>
     <message>
         <source>kick</source>
-        <translation type="unfinished"></translation>
+        <translation>выкинуть</translation>
     </message>
     <message>
         <source>map</source>
-        <translation type="unfinished"></translation>
+        <translation>карта</translation>
     </message>
     <message>
         <source>pause</source>
-        <translation type="unfinished">пауза</translation>
+        <translation>пауза</translation>
     </message>
     <message>
         <source>Reconnected too fast</source>
--- a/share/hedgewars/Data/Locale/missions_de.txt	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Locale/missions_de.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -51,3 +51,28 @@
 
 portal.name=Mission: Knifflige Portalherausforderung
 portal.desc="Benutze das Portalgerät, um dich schnell und weit zu bewegen; benutze es zum Töten; benutze es mit Vorsicht!"
+
+Target_Practice_-_Bazooka_easy.name=Zielübung: Bazooka (einfach)
+Target_Practice_-_Bazooka_easy.desc="Nun gut, Soldat: Zerstör einfach die Zielscheiben so schnell, wie du kannst!"
+
+Target_Practice_-_Bazooka_hard.name=Zielübung: Bazooka (schwer)
+Target_Practice_-_Bazooka_hard.desc="Kannst du die Zielscheiben treffen, auch wenn sie sehr weit weg sind?"
+
+Target_Practice_-_Cluster_Bomb.name=Zielübung: Splittergranate
+Target_Practice_-_Cluster_Bomb.desc="Jemand braucht eine heiße Dusche!"
+
+Target_Practice_-_Shotgun.name=Zielübung: Schrotflinte
+Target_Practice_-_Shotgun.desc="Erst schießen, dann fragen!"
+
+Target_Practice_-_Homing_Bee.name=Zielübung: Zielsuchende Biene
+Target_Practice_-_Homing_Bee.desc="Die zielsuchende Biene zu benutzen ist kniffliger, als es aussieht!"
+
+Target_Practice_-_Grenade_easy.name=Zielübung: Granate (einfach)
+Target_Practice_-_Grenade_easy.desc="Eine Aufwärmübung für den aufstrebenden Grenadier."
+
+Target_Practice_-_Grenade_hard.name=Zielübung: Granate (schwer)
+Target_Practice_-_Grenade_hard.desc="Das ist nichts für Grünschnäbel! Wir werden die Zielscheiben an ein paar wirklich knifflige Stellen platzieren."
+
+ClimbHome.name=Herausforderung: Nach Hause klettern
+ClimbHome.desc="Du bist weit von Zuhause weg und das Wasser steigt ständig. Klettere so hoch, wie du kannst!"
+
--- a/share/hedgewars/Data/Locale/missions_en.txt	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Locale/missions_en.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -1,53 +1,74 @@
-Basic_Training_-_Bazooka.name=Basic Bazooka Training
-Basic_Training_-_Bazooka.desc="Using the wind to your advantage is key!"
-
-Basic_Training_-_Grenade.name=Basic Grenade Training
-Basic_Training_-_Grenade.desc="Remember, you pull the pin out AND throw!"
-
-Basic_Training_-_Cluster_Bomb.name=Basic Cluster Bomb Training
-Basic_Training_-_Cluster_Bomb.desc="Someone needs hot shower!"
-
-Basic_Training_-_Shotgun.name=Basic Shotgun Training
-Basic_Training_-_Shotgun.desc="Shoot first, ask questions later!"
-
-Basic_Training_-_Sniper_Rifle.name=Basic Sniper Rifle Training
-Basic_Training_-_Sniper_Rifle.desc="Boom, headshot!"
-
-Basic_Training_-_Rope.name=Basic Rope Training
-Basic_Training_-_Rope.desc="Get out there and swing!"
-
-User_Mission_-_Dangerous_Ducklings.name=Mission: Dangerous Ducklings
-User_Mission_-_Dangerous_Ducklings.desc="Alright, rookie! Time to put what we learned in Basic Training into practice!"
-
-User_Mission_-_Diver.name=Mission: Diver
-User_Mission_-_Diver.desc="This 'amphibious assault' thing is harder than it looks..."
-
-User_Mission_-_Teamwork.name=Mission: Teamwork
-User_Mission_-_Teamwork.desc="Sometimes, love hurts."
-
-User_Mission_-_Spooky_Tree.name=Mission: Spooky Tree
-User_Mission_-_Spooky_Tree.desc="Lots of crates out here. I sure hope that bird ain't feeling hungry."
-
-User_Mission_-_Bamboo_Thicket.name=Mission: Bamboo Thicket
-User_Mission_-_Bamboo_Thicket.desc="Death comes from above."
-
-User_Mission_-_That_Sinking_Feeling.name=Mission: That Sinking Feeling
-User_Mission_-_That_Sinking_Feeling.desc="The water is rising rapidly and time is limited. Many have tried and failed. Can you save them all?"
-
-User_Mission_-_Newton_and_the_Hammock.name=Mission: Newton and the Hammock
-User_Mission_-_Newton_and_the_Hammock.desc="Remember hoglets: The velocity of a body remains constant unless the body is acted upon by an external force!"
-
-User_Mission_-_The_Great_Escape.name=Mission: The Great Escape
-User_Mission_-_The_Great_Escape.desc="You think you can cage me!?"
-
-User_Mission_-_Rope_Knock_Challenge.name=Challenge: Rope Knocking
-User_Mission_-_Rope_Knock_Challenge.desc="Look behind you!"
-
-User_Mission_-_Nobody_Laugh.name=Mission: Nobody Laugh
-User_Mission_-_Nobody_Laugh.desc="This ain't no joke."
-
-User_Mission_-_RCPlane_Challenge.name=Challenge: RC Plane
-User_Mission_-_RCPlane_Challenge.desc="Feeling pretty confident, eh, flyboy?"
-
-portal.name=Mission: Portal Mind Challenge
-portal.desc="Use the portal to move fast and far, use it to kill, use it with caution!"
+Basic_Training_-_Bazooka.name=Basic Bazooka Training
+Basic_Training_-_Bazooka.desc="Using the wind to your advantage is key!"
+
+Basic_Training_-_Grenade.name=Basic Grenade Training
+Basic_Training_-_Grenade.desc="Remember, you pull the pin out AND throw!"
+
+Basic_Training_-_Cluster_Bomb.name=Basic Cluster Bomb Training
+Basic_Training_-_Cluster_Bomb.desc="Someone needs hot shower!"
+
+Basic_Training_-_Shotgun.name=Basic Shotgun Training
+Basic_Training_-_Shotgun.desc="Shoot first, ask questions later!"
+
+Basic_Training_-_Sniper_Rifle.name=Basic Sniper Rifle Training
+Basic_Training_-_Sniper_Rifle.desc="Boom, headshot!"
+
+Basic_Training_-_Rope.name=Basic Rope Training
+Basic_Training_-_Rope.desc="Get out there and swing!"
+
+User_Mission_-_Dangerous_Ducklings.name=Mission: Dangerous Ducklings
+User_Mission_-_Dangerous_Ducklings.desc="Alright, rookie! Time to put what we learned in Basic Training into practice!"
+
+User_Mission_-_Diver.name=Mission: Diver
+User_Mission_-_Diver.desc="This 'amphibious assault' thing is harder than it looks..."
+
+User_Mission_-_Teamwork.name=Mission: Teamwork
+User_Mission_-_Teamwork.desc="Sometimes, love hurts."
+
+User_Mission_-_Spooky_Tree.name=Mission: Spooky Tree
+User_Mission_-_Spooky_Tree.desc="Lots of crates out here. I sure hope that bird ain't feeling hungry."
+
+User_Mission_-_Bamboo_Thicket.name=Mission: Bamboo Thicket
+User_Mission_-_Bamboo_Thicket.desc="Death comes from above."
+
+User_Mission_-_That_Sinking_Feeling.name=Mission: That Sinking Feeling
+User_Mission_-_That_Sinking_Feeling.desc="The water is rising rapidly and time is limited. Many have tried and failed. Can you save them all?"
+
+User_Mission_-_Newton_and_the_Hammock.name=Mission: Newton and the Hammock
+User_Mission_-_Newton_and_the_Hammock.desc="Remember hoglets: The velocity of a body remains constant unless the body is acted upon by an external force!"
+
+User_Mission_-_The_Great_Escape.name=Mission: The Great Escape
+User_Mission_-_The_Great_Escape.desc="You think you can cage me!?"
+
+User_Mission_-_Rope_Knock_Challenge.name=Challenge: Rope Knocking
+User_Mission_-_Rope_Knock_Challenge.desc="Look behind you!"
+
+User_Mission_-_Nobody_Laugh.name=Mission: Nobody Laugh
+User_Mission_-_Nobody_Laugh.desc="This ain't no joke."
+
+User_Mission_-_RCPlane_Challenge.name=Challenge: RC Plane
+User_Mission_-_RCPlane_Challenge.desc="Feeling pretty confident, eh, flyboy?"
+
+portal.name=Mission: Portal Mind Challenge
+portal.desc="Use the portal to move fast and far, use it to kill, use it with caution!"
+
+Target_Practice_-_Bazooka_easy.name=Target Practice: Bazooka (easy)
+Target_Practice_-_Bazooka_easy.desc="Alright, soldier, blow those targets up as fast as you can!"
+
+Target_Practice_-_Bazooka_hard.name=Target Practice: Bazooka (hard)
+Target_Practice_-_Bazooka_hard.desc="Can you hit the targets even when they are very far away?"
+
+Target_Practice_-_Cluster_Bomb.name=Target Practice: Cluster Bomb
+Target_Practice_-_Cluster_Bomb.desc="Someone needs hot shower!"
+
+Target_Practice_-_Shotgun.name=Target Practice: Shotgun
+Target_Practice_-_Shotgun.desc="Shoot first, ask questions later!"
+
+Target_Practice_-_Homing_Bee.name=Target Practice: Homing Bee
+Target_Practice_-_Homing_Bee.desc="Using the homing bee is trickier than it seems."
+
+Target_Practice_-_Grenade_easy.name=Target Practice: Grenade (easy)
+Target_Practice_-_Grenade_easy.desc="A warm-up training for the aspiring grenadier."
+
+Target_Practice_-_Grenade_hard.name=Target Practice: Grenade (hard)
+Target_Practice_-_Grenade_hard.desc="This is nothing for greenhorns! We will place the targets at some really tricky positions."
\ No newline at end of file
--- a/share/hedgewars/Data/Locale/pl.txt	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Locale/pl.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -58,6 +58,7 @@
 00:54=Miotacz błota
 00:55=Zamrażarka
 00:56=Tasak
+00:57=Guma
 
 01:00=Walczmy!
 01:01=Remis
@@ -81,6 +82,9 @@
 01:19=Ekstremalne
 01:20=%1 odbicie
 01:21=Dźwięk wyciszony
+01:22=Tryb AFK
+01:23=Automatyczne wyłączanie kamery
+01:24=Automatyczne włączanie kamery
 
 ; Event messages
 ; Hog (%1) died
@@ -544,6 +548,7 @@
 03:54=Narzędzie
 03:55=Przełammy lody!
 03:56=Nie przytnij sobie igieł!
+03:57=Narzędzie
 
 ; Weapon Descriptions (use | as line breaks)
 04:00=Atakuj przeciwników zwykłym granatem.|Wybuchnie kiedy zapalnik skończy odliczanie.|1-5: Ustawia zapalnik|Atak: Przytrzymaj by rzucić z większą siłą
@@ -604,6 +609,7 @@
 04:54=Wystrzel strumień kleistej mazi.|Buduj mosty, zasypuj wrogów, zatykaj tunele.|Uważaj by nie zasypać samego siebie!
 04:55=Epoka lodowcowa powraca!!|Zamroź jeże, uczyń podłoże śliskim lub zapobiegnij|utonięciu zamrażając wodę.|Atak: Strzał
 04:56=Rzuć w przeciwnika dwoma tasakami i zablokuj mu |drogę lub użyj ich do wspinaczki! Jednak uważaj! |Te tasaki są naprawdę ostre!|Atak: Przytrzymaj by rzucić z większą siłą (dwukrotnie)
+04:57=Budowanie elastyczny pasek wykonany z gumy,|z których jeże i inne rzeczy|odbijają się bez obrażeń upadku.|Lewo/Prawo: Zmiana orientacji pasek gumy|Kursor: Umieść pasek gumy w aktualnej pozycji
 
 ; Game goal strings
 05:00=Ustawienia gry
--- a/share/hedgewars/Data/Maps/Basketball/CMakeLists.txt	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Maps/Basketball/CMakeLists.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -1,8 +1,6 @@
 install(FILES
-    map.png
     map.cfg
     map.lua
-    mask.png
     preview.png
     desc.txt
     DESTINATION ${SHAREPATH}Data/Maps/Basketball)
--- a/share/hedgewars/Data/Maps/Basketball/map.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Maps/Basketball/map.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -14,6 +14,7 @@
 	Explosives = 0
 	Delay = 500
 	SuddenDeathTurns = 99999 -- "disable" sudden death
+    Map = 'BasketballField'
 end
 
 function onGameStart()
Binary file share/hedgewars/Data/Maps/Basketball/map.png has changed
Binary file share/hedgewars/Data/Maps/Basketball/mask.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Maps/BasketballField/CMakeLists.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,6 @@
+install(FILES
+    map.png
+    map.cfg
+    mask.png
+    preview.png
+    DESTINATION ${SHAREPATH}Data/Maps/BasketballField)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Maps/BasketballField/map.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,2 @@
+Nature
+12
\ No newline at end of file
Binary file share/hedgewars/Data/Maps/BasketballField/map.png has changed
Binary file share/hedgewars/Data/Maps/BasketballField/mask.png has changed
Binary file share/hedgewars/Data/Maps/BasketballField/preview.png has changed
Binary file share/hedgewars/Data/Maps/BasketballField/preview@2x.png has changed
--- a/share/hedgewars/Data/Maps/CMakeLists.txt	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Maps/CMakeLists.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -2,6 +2,7 @@
     Bamboo
     BambooPlinko
     Basketball
+    BasketballField
     Bath
     Battlefield
     Blizzard
--- a/share/hedgewars/Data/Maps/ClimbHome/map.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Maps/ClimbHome/map.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -14,6 +14,8 @@
 local HH = {}
 local totalHedgehogs = 0
 local deadHedgehogs = 0
+local currTeam = ''
+local teams = {}
 local teamScoreStats = {}
 local teamBests = {}
 local MrMine -- in honour of sparkle's first arrival in the cabin
@@ -30,7 +32,6 @@
 local jokeAwardDamage = nil
 local recordBroken = false
 local ready = false
--- TODO. Fix use of dummy team for scaling the graph.
 local showWaterStats = false -- uses the AI team to draw water height.
 local scaleGraph = false
 local dummyHog = nil
@@ -57,7 +58,7 @@
         dummyHog = AddHog(" ", 0, 1, "NoHat")
         HH[dummyHog] = nil
         totalHedgehogs = totalHedgehogs - 1
-        if not showWaterStates then
+        if not showWaterStats then
             SendStat(siClanHealth, tostring(32640), " ")
         end
         SendStat(siClanHealth, tostring(32640), " ")
@@ -68,6 +69,7 @@
     if GetGearType(gear) == gtHedgehog then
         HH[gear] = 1
         totalHedgehogs = totalHedgehogs + 1
+        teams[GetHogTeamName(gear)] = 1
     end
 end
 
@@ -127,6 +129,7 @@
     YouLost = false
     tauntNoo = false
     recordBroken = false
+    currTeam = GetHogTeamName(CurrentHedgehog)
     if CurrentHedgehog ~= nil then
         if CurrentHedgehog ~= dummyHog then
             SetGearPosition(CurrentHedgehog, 1951,32640)
@@ -226,7 +229,7 @@
             Cake = nil
         end
 
-        if Cake ~= nil and GetHealth(Cake) < 999990 and gearIsInCircle(CurrentHedgehog,cx,cy,450) then
+        if Cake ~= nil and GetHealth(Cake) < 999980 and gearIsInCircle(CurrentHedgehog,cx,cy,450) then
             FireBoom(cx,cy,200) -- todo animate
             DeleteGear(Cake)
             Cake = nil
@@ -307,8 +310,6 @@
                 }
             end
         end
-
--- this block was moved out of the % 500 below because it was not triggering fast enough to give correct stats for all teams.
             if isSinglePlayer then
                 if distanceFromWater < 0 and not YouLost and not YouWon then
                     makeSinglePlayerLoserStats()
@@ -351,7 +352,13 @@
             if showWaterStats == true then
 	        SendStat(siClanHealth, tostring(getActualHeight(WaterLine)), " ")
             end
-            SendStat(siClanHealth, tostring(getActualHeight(y)), GetHogTeamName(CurrentHedgehog))
+	    for t,i in pairs(teams) do
+                if currTeam == t then
+                    SendStat(siClanHealth, tostring(getActualHeight(y)), t)
+                else
+                    SendStat(siClanHealth, '0', t)
+                end
+            end
     
             -- play taunts
             if not YouWon and not YouLost then
@@ -531,7 +538,6 @@
     else
         SendStat(siCustomAchievement, string.format(text, RecordHeightHogName))
     end
-    SendStat(siPointType, "points")
     SendStat(siPlayerKills, actualHeight, loc(GetHogTeamName(CurrentHedgehog)))
     EndGame()
 end
@@ -582,8 +588,8 @@
     end
     checkAwards()
     for i = #ranking, 1, -1 do
+	SendStat(siPointType, loc("points"))
         SendStat(siPlayerKills, tostring(ranking[i].score), ranking[i].name)
-        SendStat(siPointType, "points")
     end
 end
 
--- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/desert01.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/desert01.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -526,7 +526,7 @@
 	-- bazooka - grenade - rope - parachute - deagle - btorch - construct - portal - rcplane
 	SaveCampaignVar("HeroAmmo", GetAmmoCount(hero.gear, amBazooka)..GetAmmoCount(hero.gear, amGrenade)..
 			GetAmmoCount(hero.gear, amRope)..GetAmmoCount(hero.gear, amParachute)..GetAmmoCount(hero.gear, amDEagle)..
-			GetAmmoCount(hero.gear, amBlowTorch)..GetAmmoCount(hero.gear, amConstruction)..
+			GetAmmoCount(hero.gear, amBlowTorch)..GetAmmoCount(hero.gear, amGirder)..
 			GetAmmoCount(hero.gear, amPortalGun)..GetAmmoCount(hero.gear, amRCPlane))
 	AnimCaption(hero.gear, loc("Checkpoint reached!"), 5000)
 end
@@ -542,7 +542,7 @@
 	AddAmmo(hero.gear, amBlowTorch, tonumber(ammo:sub(6,6)))
 	-- weird, if 0 bazooka isn't displayed in the weapons menu
 	if tonumber(ammo:sub(7,7)) > 0 then
-		AddAmmo(hero.gear, amConstruction, tonumber(ammo:sub(7,7)))
+		AddAmmo(hero.gear, amGirder, tonumber(ammo:sub(7,7)))
 	end
 	AddAmmo(hero.gear, amPortalGun, tonumber(ammo:sub(8,8)))
 	AddAmmo(hero.gear, amRCPlane, tonumber(ammo:sub(9,9)))
--- a/share/hedgewars/Data/Missions/Training/Basic_Training_-_Bazooka.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Missions/Training/Basic_Training_-_Bazooka.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,186 +1,242 @@
--- Hedgewars Bazooka Training
--- Scripting Example
-
--- Lines such as this one are comments - they are ignored
--- by the game, no matter what kind of text is in there.
--- It's also possible to place a comment after some real
--- instruction as you see below. In short, everything
--- following "--" is ignored.
-
----------------------------------------------------------------
--- At first we implement the localization library using loadfile.
--- This allows us to localize strings without needing to think
--- about translations.
--- We can use the function loc(text) to localize a string.
-
-HedgewarsScriptLoad("/Scripts/Locale.lua")
-
--- This variable will hold the number of destroyed targets.
-local score = 0
--- This variable represents the number of targets to destroy.
-local score_goal = 5
--- This variable controls how many milliseconds/ticks we'd
--- like to wait before we end the round once all targets
--- have been destroyed.
-local end_timer = 1000 -- 1000 ms = 1 s
--- This variable is set to true if the game is lost (i.e.
--- time runs out).
-local game_lost = false
--- This variable will point to the hog's gear
-local player = nil
--- This variable will grab the time left at the end of the round
-local time_goal = 0
-
--- This is a custom function to make it easier to
--- spawn more targets with just one line of code
--- You may define as many custom functions as you
--- like.
-function spawnTarget()
-	-- add a new target gear
-	gear = AddGear(0, 0, gtTarget, 0, 0, 0, 0)
-	
-	-- move it to a random position within 0 and
-	-- LAND_WIDTH - the width of the map
-	FindPlace(gear, true, 0, LAND_WIDTH)
-	
-	-- move the target to a higher vertical position
-	-- to ensure it's not somewhere down below
-	x, y = GetGearPosition(gear)
-	SetGearPosition(gear, x, 0)
-end
-
--- This function is called before the game loads its
--- resources.
--- It's one of the predefined function names that will
--- be called by the game. They give you entry points
--- where you're able to call your own code using either
--- provided instructions or custom functions.
-function onGameInit()
-	-- At first we have to overwrite/set some global variables
-	-- that define the map, the game has to load, as well as
-	-- other things such as the game rules to use, etc.
-	-- Things we don't modify here will use their default values.
-
-	-- The base number for the random number generator
-	Seed = 1
-	-- Game settings and rules
-    EnableGameFlags(gfMultiWeapon, gfOneClanMode, gfSolidLand)
-    -- Uncommenting this wouldn't do anything
-    --EnableGameFlags(gfMultiWeapon, gfOneClanMode, gfSolidLand)
-    -- Neither this
-    --DisableGameFlags(gfArtillery)
-    -- Uncommenting this would make the terrain damageable
-    --DisableGameFlags(gfSolidLand)
-    -- Uncommenting this would remove all flags set previously
-    --ClearGameFlags()
-	-- The time the player has to move each round (in ms)
-	TurnTime = 60000
-	-- The frequency of crate drops
-	CaseFreq = 0
-	-- The number of mines being placed
-	MinesNum = 0
-	-- The number of explosives being placed
-	Explosives = 0
-	-- The delay between each round
-	Delay = 0
-	-- The map to be played
-	Map = "Bamboo"
-	-- The theme to be used
-	Theme = "Bamboo"
-
-	-- Create the player team
-	AddTeam(loc("'Zooka Team"), 14483456, "Simple", "Island", "Default")
-	-- And add a hog to it
-	player = AddHog(loc("Hunter"), 0, 1, "NoHat")
-	SetGearPosition(player, 936, 136)
-end
-
--- This function is called when the round starts
--- it spawns the first target that has to be destroyed.
--- In addition it shows the scenario goal(s).
-function onGameStart()
-	-- Spawn the first target.
-	spawnTarget()
-	
-	-- Show some nice mission goals.
-	-- Parameters are: caption, sub caption, description,
-	-- extra text, icon and time to show.
-	-- A negative icon parameter (-n) represents the n-th weapon icon
-	-- A positive icon paramter (n) represents the (n+1)-th mission icon
-	-- A timeframe of 0 is replaced with the default time to show.
-	ShowMission(loc("Bazooka Training"), loc("Aiming Practice"), loc("Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."), -amBazooka, 0)
-end
-
-function onNewTurn()
-	SetWeapon(amBazooka)
-end
-
--- This function is called every game tick.
--- Note that there are 1000 ticks within one second.
--- You shouldn't try to calculate too complicated
--- code here as this might slow down your game.
-function onGameTick20()
-	-- If time's up, set the game to be lost.
-	-- We actually check the time to be "1 ms" as it
-	-- will be at "0 ms" right at the start of the game.
-	if TurnTimeLeft < 40 and TurnTimeLeft > 0 and score < score_goal then
-		game_lost = true
-		-- ... and show a short message.
-		ShowMission(loc("Bazooka Training"), loc("Aiming Practice"), loc("Oh no! Time's up! Just try again."), -amSkip, 0)
-		-- How about killing our poor hog due to his poor performance?
-		SetHealth(player, 0)
-		-- Just to be sure set the goal time to 1 ms
-		time_goal = 1
-	end
-	-- If the goal is reached or we've lost ...
-	if score == score_goal or game_lost then
-		-- ... check to see if the time we'd like to
-		-- wait has passed and then ...
-		if end_timer == 0 then
-			-- ... end the game ...
-			EndGame()
-		else
-			-- ... or just lower the timer by 20ms.
-			-- Reset the time left to stop the timer
-			TurnTimeLeft = time_goal
-		end
-        end_timer = end_timer - 20
-	end
-end
-
--- This function is called when the game is initialized
--- to request the available ammo and probabilities
-function onAmmoStoreInit()
-	-- add an unlimited supply of bazooka ammo
-	SetAmmo(amBazooka, 9, 0, 0, 0)
-end
-
--- This function is called when a new gear is added.
--- We don't need it for this training, so we can
--- keep it empty.
--- function onGearAdd(gear)
--- end
-
--- This function is called before a gear is destroyed.
--- We use it to count the number of targets destroyed.
-function onGearDelete(gear)
-	-- We're only interested in target gears.
-	if GetGearType(gear) == gtTarget then
-		-- Add one point to our score/counter
-		score = score + 1
-		-- If we haven't reached the goal ...
-		if score < score_goal then
-			-- ... spawn another target.
-			spawnTarget()
-		else
-			if not game_lost then
-			-- Otherwise show that the goal was accomplished
-			ShowMission(loc("Bazooka Training"), loc("Aiming Practice"), loc("Congratulations! You've eliminated all targets|within the allowed time frame."), 0, 0)
-			-- Also let the hogs shout "victory!"
-			PlaySound(sndVictory)
-			-- Save the time left so we may keep it.
-			time_goal = TurnTimeLeft
-			end
-		end
-	end
-end
+-- Hedgewars Bazooka Training
+-- Scripting Example
+
+-- Lines such as this one are comments - they are ignored
+-- by the game, no matter what kind of text is in there.
+-- It's also possible to place a comment after some real
+-- instruction as you see below. In short, everything
+-- following "--" is ignored.
+
+---------------------------------------------------------------
+-- At first we implement the localization library using loadfile.
+-- This allows us to localize strings without needing to think
+-- about translations.
+-- We can use the function loc(text) to localize a string.
+
+HedgewarsScriptLoad("/Scripts/Locale.lua")
+
+-- This variable will hold the number of destroyed targets.
+local score = 0
+-- This variable represents the number of targets to destroy.
+local score_goal = 5
+-- This variable controls how many milliseconds/ticks we'd
+-- like to wait before we end the round once all targets
+-- have been destroyed.
+local end_timer = 1000 -- 1000 ms = 1 s
+-- This variable is set to true if the game is lost (i.e.
+-- time runs out).
+local game_lost = false
+-- This variable will point to the hog's gear
+local player = nil
+-- This variable will grab the time left at the end of the round
+local time_goal = 0
+-- This variable stores the number of bazooka shots
+local shots = 0
+
+-- This is a custom function to make it easier to
+-- spawn more targets with just one line of code
+-- You may define as many custom functions as you
+-- like.
+function spawnTarget()
+	-- add a new target gear
+	gear = AddGear(0, 0, gtTarget, 0, 0, 0, 0)
+	
+	-- move it to a random position within 0 and
+	-- LAND_WIDTH - the width of the map
+	FindPlace(gear, true, 0, LAND_WIDTH)
+	
+	-- move the target to a higher vertical position
+	-- to ensure it's not somewhere down below
+	x, y = GetGearPosition(gear)
+	SetGearPosition(gear, x, 0)
+end
+
+-- This function is called before the game loads its
+-- resources.
+-- It's one of the predefined function names that will
+-- be called by the game. They give you entry points
+-- where you're able to call your own code using either
+-- provided instructions or custom functions.
+function onGameInit()
+	-- At first we have to overwrite/set some global variables
+	-- that define the map, the game has to load, as well as
+	-- other things such as the game rules to use, etc.
+	-- Things we don't modify here will use their default values.
+
+	-- The base number for the random number generator
+	Seed = 1
+	-- Game settings and rules
+    EnableGameFlags(gfMultiWeapon, gfOneClanMode, gfSolidLand)
+    -- Uncommenting this wouldn't do anything
+    --EnableGameFlags(gfMultiWeapon, gfOneClanMode, gfSolidLand)
+    -- Neither this
+    --DisableGameFlags(gfArtillery)
+    -- Uncommenting this would make the terrain damageable
+    --DisableGameFlags(gfSolidLand)
+    -- Uncommenting this would remove all flags set previously
+    --ClearGameFlags()
+	-- The time the player has to move each round (in ms)
+	TurnTime = 60000
+	-- The frequency of crate drops
+	CaseFreq = 0
+	-- The number of mines being placed
+	MinesNum = 0
+	-- The number of explosives being placed
+	Explosives = 0
+	-- The delay between each round
+	Delay = 0
+	-- The map to be played
+	Map = "Bamboo"
+	-- The theme to be used
+	Theme = "Bamboo"
+
+	-- Create the player team
+	AddTeam(loc("'Zooka Team"), 14483456, "Simple", "Island", "Default")
+	-- And add a hog to it
+	player = AddHog(loc("Hunter"), 0, 1, "NoHat")
+	SetGearPosition(player, 936, 136)
+end
+
+-- This function is called when the round starts
+-- it spawns the first target that has to be destroyed.
+-- In addition it shows the scenario goal(s).
+function onGameStart()
+	-- Disable the graph in the stats screen, we don't need it
+	SendHealthStatsOff()
+	-- Spawn the first target.
+	spawnTarget()
+	
+	-- Show some nice mission goals.
+	-- Parameters are: caption, sub caption, description,
+	-- extra text, icon and time to show.
+	-- A negative icon parameter (-n) represents the n-th weapon icon
+	-- A positive icon paramter (n) represents the (n+1)-th mission icon
+	-- A timeframe of 0 is replaced with the default time to show.
+	ShowMission(loc("Bazooka Training"), loc("Aiming Practice"), loc("Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."), -amBazooka, 0)
+end
+
+function onNewTurn()
+	SetWeapon(amBazooka)
+end
+
+-- This function is called every game tick.
+-- Note that there are 1000 ticks within one second.
+-- You shouldn't try to calculate too complicated
+-- code here as this might slow down your game.
+function onGameTick20()
+	-- If time's up, set the game to be lost.
+	-- We actually check the time to be "1 ms" as it
+	-- will be at "0 ms" right at the start of the game.
+	if TurnTimeLeft < 40 and TurnTimeLeft > 0 and score < score_goal and not game_lost then
+		game_lost = true
+		-- ... and show a short message.
+		ShowMission(loc("Bazooka Training"), loc("Aiming Practice"), loc("Oh no! Time's up! Just try again."), -amSkip, 0)
+		-- How about killing our poor hog due to his poor performance?
+		SetHealth(player, 0)
+		-- Just to be sure set the goal time to 1 ms
+		time_goal = 1
+	end
+
+	if band(GetState(player), gstDrowning) == gstDrowning and game_lost == false and score < score_goal then
+		game_lost = true
+		time_goal = 1
+		AddCaption(loc("You lose!"), 0xFFFFFFFF, capgrpGameState)
+		ShowMission(loc("Bazooka Training"), loc("Aiming practice"), loc("Oh no! You failed! Just try again."), -amSkip, 0)
+	end
+
+	-- If the goal is reached or we've lost ...
+	if score == score_goal or game_lost then
+		-- ... check to see if the time we'd like to
+		-- wait has passed and then ...
+		if end_timer == 0 then
+			-- Let’s create some stats for the stats screen!
+			-- We will expose the number of hit targets hit, launched bazooka and the accuracy
+
+			SendStat(siPointType, loc("hits"))
+			SendStat(siPlayerKills, tostring(score), loc("'Zooka Team"))
+			SendStat(siCustomAchievement, string.format(loc("You have destroyed %d of %d targets."), score, score_goal))
+			SendStat(siCustomAchievement, string.format(loc("You have launched %d bazookas."), shots))
+
+			-- We must avoid a division by zero
+			if(shots > 0) then
+				SendStat(siCustomAchievement, string.format(loc("Your accuracy was %.1f%%."), (score/shots)*100))
+			end
+			if score == score_goal then
+				SendStat(siGameResult, "You have finished the bazooka training!")
+				SendStat(siCustomAchievement, string.format(loc("%.1f seconds were remaining."), (time_goal/1000), math.ceil(time_goal/12)))
+			end
+			if game_lost then
+				SendStat(siGameResult, "You lose!")
+			end
+
+			-- Finally we end the game ...
+			EndGame()
+		else
+			-- ... or just lower the timer by 20ms.
+			-- Reset the time left to stop the timer
+			TurnTimeLeft = time_goal
+		end
+        end_timer = end_timer - 20
+	end
+end
+
+-- This function is called when the game is initialized
+-- to request the available ammo and probabilities
+function onAmmoStoreInit()
+	-- add an unlimited supply of bazooka ammo
+	SetAmmo(amBazooka, 9, 0, 0, 0)
+end
+
+-- This function is called when a new gear is added.
+-- We don't need it for this training, so we can
+-- keep it empty.
+-- function onGearAdd(gear)
+-- end
+
+-- This function is called before a gear is destroyed.
+-- We use it to count the number of targets destroyed.
+function onGearDelete(gear)
+	-- We're only interested in target gears.
+	if GetGearType(gear) == gtTarget then
+		-- Add one point to our score/counter
+		score = score + 1
+		-- If we haven't reached the goal ...
+		if score < score_goal then
+			-- ... spawn another target.
+			spawnTarget()
+		else
+			if not game_lost then
+			-- Otherwise show that the goal was accomplished
+			ShowMission(loc("Bazooka Training"), loc("Aiming Practice"), loc("Congratulations! You've eliminated all targets|within the allowed time frame."), 0, 0)
+			-- Also let the hogs shout "victory!"
+			PlaySound(sndVictory)
+			-- Save the time left so we may keep it.
+			time_goal = TurnTimeLeft
+			end
+		end
+	end
+end
+
+-- This function is called when a gear has been damaged.
+-- We only use it to determine wheather our hog took damage in order to abort the mission.
+function onGearDamage(gear, damage)
+	if GetGearType(gear) == gtHedgehog then
+		if not game_lost then
+			game_lost = true
+			AddCaption(loc("You lose!", 0xFFFFFFFF, capgrpGameState))
+			ShowMission(loc("Bazooka Training") , loc("Aiming practice"), loc("Oh no! You failed! Just try again."), -amSkip, 0)
+
+			time_goal = 1
+		end
+	end
+end
+
+
+-- This function is called after a gear is added.
+-- We use it to count the number of bazooka shots.
+function onGearAdd(gear)
+	-- Count the number of bazooka shots for our stats
+	if GetGearType(gear) == gtShell then
+		shots = shots + 1
+	end
+end
--- a/share/hedgewars/Data/Missions/Training/Basic_Training_-_Sniper_Rifle.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Missions/Training/Basic_Training_-_Sniper_Rifle.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,312 +1,349 @@
--- Hedgewars SniperRifle Training
--- Scripting Example
-
--- Lines such as this one are comments - they are ignored
--- by the game, no matter what kind of text is in there.
--- It's also possible to place a comment after some real
--- instruction as you see below. In short, everything
--- following "--" is ignored.
-
----------------------------------------------------------------
--- At first we implement the localization library using loadfile.
--- This allows us to localize strings without needing to think
--- about translations.
--- We can use the function loc(text) to localize a string.
-
-HedgewarsScriptLoad("/Scripts/Locale.lua")
-
--- This variable will hold the number of destroyed targets.
-local score = 0
--- This variable represents the number of targets to destroy.
-local score_goal = 31
--- This variable controls how many milliseconds/ticks we'd
--- like to wait before we end the round once all targets
--- have been destroyed.
-local end_timer = 1000 -- 1000 ms = 1 s
--- This variable is set to true if the game is lost (i.e.
--- time runs out).
-local game_lost = false
--- This variable will point to the hog's gear
-local player = nil
--- This variable will grab the time left at the end of the round
-local time_goal = 0
-
-local target = nil
-
-local last_hit_time = 0
--- This is a custom function to make it easier to
--- spawn more targets with just one line of code
--- You may define as many custom functions as you
--- like.
-function spawnTarget(x, y)
-	-- add a new target gear
-	target = AddGear(x, y, gtTarget, 0, 0, 0, 0)
-	-- have the camera move to the target so the player knows where it is
-	FollowGear(target)
-end
-
-function blowUp(x, y)
-	-- adds some TNT
-	gear = AddGear(x, y, gtDynamite, 0, 0, 0, 0)
-end
-
-function onNewTurn()
-	SetWeapon(amSniperRifle)
-end
-
--- This function is called before the game loads its
--- resources.
--- It's one of the predefined function names that will
--- be called by the game. They give you entry points
--- where you're able to call your own code using either
--- provided instructions or custom functions.
-function onGameInit()
-	-- At first we have to overwrite/set some global variables
-	-- that define the map, the game has to load, as well as
-	-- other things such as the game rules to use, etc.
-	-- Things we don't modify here will use their default values.
-
-	-- The base number for the random number generator
-	Seed = 0
-	-- Game settings and rules
-	GameFlags = gfMultiWeapon + gfOneClanMode + gfArtillery
-	-- The time the player has to move each round (in ms)
-	TurnTime = 150000
-	-- The frequency of crate drops
-	CaseFreq = 0
-	-- The number of mines being placed
-	MinesNum = 0
-	-- The number of explosives being placed
-	Explosives = 0
-	-- The delay between each round
-	Delay = 0
-	-- The map to be played
-	Map = "Ropes"
-	-- The theme to be used
-	Theme = "City"
-
-	-- Create the player team
-	AddTeam(loc("Sniperz"), 14483456, "Simple", "Island", "Default")
-	-- And add a hog to it
-	player = AddHog(loc("Hunter"), 0, 1, "Sniper")
-	SetGearPosition(player, 602, 1465)
-end
-
--- This function is called when the round starts
--- it spawns the first target that has to be destroyed.
--- In addition it shows the scenario goal(s).
-function onGameStart()
-	-- Spawn the first target.
-	spawnTarget(860,1020)
-	
-	-- Show some nice mission goals.
-	-- Parameters are: caption, sub caption, description,
-	-- extra text, icon and time to show.
-	-- A negative icon parameter (-n) represents the n-th weapon icon
-	-- A positive icon paramter (n) represents the (n+1)-th mission icon
-	-- A timeframe of 0 is replaced with the default time to show.
-	ShowMission(loc("Sniper Training"), loc("Aiming Practice"), loc("Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."), -amSniperRifle, 0)
-end
-
--- This function is called every game tick.
--- Note that there are 1000 ticks within one second.
--- You shouldn't try to calculate too complicated
--- code here as this might slow down your game.
-function onGameTick20()
-	if game_lost then
-		return
-	end
-	-- after a target is destroyed, show hog, then target
-	if (target ~= nil) and (TurnTimeLeft + 1300 < last_hit_time) then
-		-- move camera to the target
-		FollowGear(target)
-	elseif TurnTimeLeft + 300 < last_hit_time then
-		-- move camera to the hog
-		FollowGear(player)
-	end
-	-- If time's up, set the game to be lost.
-	-- We actually check the time to be "1 ms" as it
-	-- will be at "0 ms" right at the start of the game.
-	if TurnTimeLeft < 40 and TurnTimeLeft > 0 and score < score_goal then
-		game_lost = true
-		-- ... and show a short message.
-		ShowMission(loc("Sniper Training"), loc("Aiming Practice"), loc("Oh no! Time's up! Just try again."), -amSkip, 0)
-		-- How about killing our poor hog due to his poor performance?
-		SetHealth(player, 0)
-		-- Just to be sure set the goal time to 1 ms
-		time_goal = 1
-	end
-	-- If the goal is reached or we've lost ...
-	if score == score_goal or game_lost then
-		-- ... check to see if the time we'd like to
-		-- wait has passed and then ...
-		if end_timer == 0 then
-			-- ... end the game ...
-			EndGame()
-		else
-			-- ... or just lower the timer by 1.
-			-- Reset the time left to stop the timer
-			TurnTimeLeft = time_goal
-		end
-        end_timer = end_timer - 20
-	end
-end
-
--- This function is called when the game is initialized
--- to request the available ammo and probabilities
-function onAmmoStoreInit()
-	-- add an unlimited supply of shotgun ammo
-	SetAmmo(amSniperRifle, 9, 0, 0, 0)
-end
-
--- This function is called when a new gear is added.
--- We don't need it for this training, so we can
--- keep it empty.
--- function onGearAdd(gear)
--- end
-
--- This function is called before a gear is destroyed.
--- We use it to count the number of targets destroyed.
-function onGearDelete(gear)
-    
-	if GetGearType(gear) == gtCase then
-		game_lost = true
-		return
-	end
-	
-	if (GetGearType(gear) == gtTarget) then
-		-- remember when the target was hit for adjusting the camera
-		last_hit_time = TurnTimeLeft
-		-- Add one point to our score/counter
-		score = score + 1
-		-- If we haven't reached the goal ...
-		if score < score_goal then
-			-- ... spawn another target.
-			if score == 1 then
-				spawnTarget(1520,1350)
-			elseif score == 2 then
-				spawnTarget(1730,1040)
-			elseif score == 3 then
-				spawnTarget(2080,780)
-			elseif score == 4 then
-				AddCaption(loc("Good so far!") .. " " .. loc("Keep it up!"));
-				blowUp(1730,1226)
-				blowUp(1440,1595)
-				blowUp(1527,1575)
-				blowUp(1614,1595)
-				blowUp(1420,1675)
-				blowUp(1527,1675)
-				blowUp(1634,1675)
-				blowUp(1440,1755)
-				blowUp(1527,1775)
-				blowUp(1614,1755)
-				spawnTarget(1527,1667)
-			elseif score == 5 then
-				spawnTarget(1527,1667)
-			elseif score == 6 then
-				spawnTarget(2175,1300)
-			elseif score == 7 then
-				spawnTarget(2250,940)
-			elseif score == 8 then
-				spawnTarget(2665,1540)
-			elseif score == 9 then
-				spawnTarget(3040,1160)
-			elseif score == 10 then
-				spawnTarget(2930,1500)
-			elseif score == 11 then
-				AddCaption(loc("This one's tricky."));
-				spawnTarget(700,720)
-			elseif score == 12 then
-				AddCaption(loc("Well done."));
-				blowUp(914,1222)
-				blowUp(1050,1222)
-				blowUp(1160,1008)
-				blowUp(1160,1093)
-				blowUp(1160,1188)
-				blowUp(375,911)
-				blowUp(510,911)
-				blowUp(640,911)
-				blowUp(780,911)
-				blowUp(920,911)
-				blowUp(1060,913)
-				blowUp(1198,913)
-				spawnTarget(1200,730)
-			elseif score == 13 then
-				spawnTarget(1200,830)
-			elseif score == 14 then
-				spawnTarget(1430,450)
-			elseif score == 15 then
-				spawnTarget(796,240)
-			elseif score == 16 then
-				spawnTarget(300,10)
-			elseif score == 17 then
-				spawnTarget(2080,820)
-			elseif score == 18 then
-				AddCaption(loc("Demolition is fun!"));
-				blowUp(2110,920)
-				blowUp(2210,920)
-				blowUp(2200,305)
-				blowUp(2300,305)
-				blowUp(2300,400)
-				blowUp(2300,500)
-				blowUp(2300,600)
-				blowUp(2300,700)
-				blowUp(2300,800)
-				blowUp(2300,900)
-				blowUp(2401,305)
-				blowUp(2532,305)
-				blowUp(2663,305)
-				spawnTarget(2300,760)
-			elseif score == 19 then
-				spawnTarget(2300,760)
-			elseif score == 20 then
-				spawnTarget(2738,190)
-			elseif score == 21 then
-				spawnTarget(2590,-100)
-			elseif score == 22 then
-				AddCaption(loc("Will this ever end?"));
-				blowUp(2790,305)
-				blowUp(2930,305)
-				blowUp(3060,305)
-				blowUp(3190,305)
-				blowUp(3310,305)
-				blowUp(3393,613)
-				blowUp(2805,370)
-				blowUp(2805,500)
-				blowUp(2805,630)
-				blowUp(2805,760)
-				blowUp(2805,890)
-				blowUp(3258,370)
-				blowUp(3258,475)
-				blowUp(3264,575)
-				spawnTarget(3230,240)
-			elseif score == 23 then
-				spawnTarget(3230,290)
-			elseif score == 24 then
-				spawnTarget(3670,250)
-			elseif score == 25 then
-				spawnTarget(2620,-100)
-			elseif score == 26 then
-				spawnTarget(2870,300)
-			elseif score == 27 then
-				spawnTarget(3850,900)
-			elseif score == 28 then
-				spawnTarget(3780,300)
-			elseif score == 29 then
-				spawnTarget(3670,0)
-			elseif score == 30 then
-				AddCaption(loc("Last Target!"));
-				spawnTarget(3480,1200)
-			end
-		else
-			if not game_lost then
-			-- Otherwise show that the goal was accomplished
-			ShowMission(loc("Sniper Training"), loc("Aiming Practice"), loc("Congratulations! You've eliminated all targets|within the allowed time frame."), 0, 0)
-			-- Also let the hogs shout "victory!"
-			PlaySound(sndVictory)
-			-- Save the time left so we may keep it.
-			time_goal = TurnTimeLeft
-			end
-		end
-	end
-end
+-- Hedgewars SniperRifle Training
+-- Scripting Example
+
+-- Lines such as this one are comments - they are ignored
+-- by the game, no matter what kind of text is in there.
+-- It's also possible to place a comment after some real
+-- instruction as you see below. In short, everything
+-- following "--" is ignored.
+
+---------------------------------------------------------------
+-- At first we implement the localization library using loadfile.
+-- This allows us to localize strings without needing to think
+-- about translations.
+-- We can use the function loc(text) to localize a string.
+
+HedgewarsScriptLoad("/Scripts/Locale.lua")
+
+-- This variable will hold the number of destroyed targets.
+local score = 0
+-- This variable will hold the number of shots from the sniper rifle
+local shots = 0
+-- This variable represents the number of targets to destroy.
+local score_goal = 31
+-- This variable controls how many milliseconds/ticks we'd
+-- like to wait before we end the round once all targets
+-- have been destroyed.
+local end_timer = 1000 -- 1000 ms = 1 s
+-- This variable is set to true if the game is lost (i.e.
+-- time runs out).
+local game_lost = false
+-- This variable will point to the hog's gear
+local player = nil
+-- This variable will grab the time left at the end of the round
+local time_goal = 0
+
+local target = nil
+
+local last_hit_time = 0
+-- This is a custom function to make it easier to
+-- spawn more targets with just one line of code
+-- You may define as many custom functions as you
+-- like.
+function spawnTarget(x, y)
+	-- add a new target gear
+	target = AddGear(x, y, gtTarget, 0, 0, 0, 0)
+	-- have the camera move to the target so the player knows where it is
+	FollowGear(target)
+end
+
+function blowUp(x, y)
+	-- adds some TNT
+	gear = AddGear(x, y, gtDynamite, 0, 0, 0, 0)
+end
+
+function onNewTurn()
+	SetWeapon(amSniperRifle)
+end
+
+-- This function is called before the game loads its
+-- resources.
+-- It's one of the predefined function names that will
+-- be called by the game. They give you entry points
+-- where you're able to call your own code using either
+-- provided instructions or custom functions.
+function onGameInit()
+	-- At first we have to overwrite/set some global variables
+	-- that define the map, the game has to load, as well as
+	-- other things such as the game rules to use, etc.
+	-- Things we don't modify here will use their default values.
+
+	-- The base number for the random number generator
+	Seed = 0
+	-- Game settings and rules
+	GameFlags = gfMultiWeapon + gfOneClanMode + gfArtillery
+	-- The time the player has to move each round (in ms)
+	TurnTime = 150000
+	-- The frequency of crate drops
+	CaseFreq = 0
+	-- The number of mines being placed
+	MinesNum = 0
+	-- The number of explosives being placed
+	Explosives = 0
+	-- The delay between each round
+	Delay = 0
+	-- The map to be played
+	Map = "Ropes"
+	-- The theme to be used
+	Theme = "City"
+
+	-- Create the player team
+	AddTeam(loc("Sniperz"), 14483456, "Simple", "Island", "Default")
+	-- And add a hog to it
+	player = AddHog(loc("Hunter"), 0, 1, "Sniper")
+	SetGearPosition(player, 602, 1465)
+end
+
+-- This function is called when the round starts
+-- it spawns the first target that has to be destroyed.
+-- In addition it shows the scenario goal(s).
+function onGameStart()
+	-- Disable graph in stats screen
+	SendHealthStatsOff()
+	-- Spawn the first target.
+	spawnTarget(860,1020)
+	
+	-- Show some nice mission goals.
+	-- Parameters are: caption, sub caption, description,
+	-- extra text, icon and time to show.
+	-- A negative icon parameter (-n) represents the n-th weapon icon
+	-- A positive icon paramter (n) represents the (n+1)-th mission icon
+	-- A timeframe of 0 is replaced with the default time to show.
+	ShowMission(loc("Sniper Training"), loc("Aiming Practice"), loc("Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."), -amSniperRifle, 0)
+end
+
+-- This function is called every game tick.
+-- Note that there are 1000 ticks within one second.
+-- You shouldn't try to calculate too complicated
+-- code here as this might slow down your game.
+function onGameTick20()
+	if game_lost then
+		return
+	end
+	-- after a target is destroyed, show hog, then target
+	if (target ~= nil) and (TurnTimeLeft + 1300 < last_hit_time) then
+		-- move camera to the target
+		FollowGear(target)
+	elseif TurnTimeLeft + 300 < last_hit_time then
+		-- move camera to the hog
+		FollowGear(player)
+	end
+	-- If time's up, set the game to be lost.
+	-- We actually check the time to be "1 ms" as it
+	-- will be at "0 ms" right at the start of the game.
+	if TurnTimeLeft < 40 and TurnTimeLeft > 0 and score < score_goal and game_lost == false then
+		game_lost = true
+		-- ... and show a short message.
+		AddCaption(loc("Time's up!"))
+		ShowMission(loc("Sniper Training"), loc("Aiming Practice"), loc("Oh no! Time's up! Just try again."), -amSkip, 0)
+		-- and generate the stats and go to the stats screen
+		generateStats()
+		EndGame()
+		-- Just to be sure set the goal time to 1 ms
+		time_goal = 1
+	end
+	-- If the goal is reached or we've lost ...
+	if score == score_goal or game_lost then
+		-- ... check to see if the time we'd like to
+		-- wait has passed and then ...
+		if end_timer == 0 then
+			-- ... end the game ...
+			generateStats()
+			EndGame()
+		else
+			-- ... or just lower the timer by 1.
+			-- Reset the time left to stop the timer
+			TurnTimeLeft = time_goal
+		end
+        end_timer = end_timer - 20
+	end
+end
+
+-- This function is called when the game is initialized
+-- to request the available ammo and probabilities
+function onAmmoStoreInit()
+	-- add an unlimited supply of shotgun ammo
+	SetAmmo(amSniperRifle, 9, 0, 0, 0)
+end
+
+-- This function is called when a new gear is added.
+-- We use it to count the number of shots, which we
+-- in turn use to calculate the final score and stats
+function onGearAdd(gear)
+	if GetGearType(gear) == gtSniperRifleShot then
+		shots = shots + 1
+	end
+end
+
+-- This function is called before a gear is destroyed.
+-- We use it to count the number of targets destroyed.
+function onGearDelete(gear)
+    
+	if GetGearType(gear) == gtCase then
+		game_lost = true
+		return
+	end
+	
+	if (GetGearType(gear) == gtTarget) then
+		-- remember when the target was hit for adjusting the camera
+		last_hit_time = TurnTimeLeft
+		-- Add one point to our score/counter
+		score = score + 1
+		-- If we haven't reached the goal ...
+		if score < score_goal then
+			-- ... spawn another target.
+			if score == 1 then
+				spawnTarget(1520,1350)
+			elseif score == 2 then
+				spawnTarget(1730,1040)
+			elseif score == 3 then
+				spawnTarget(2080,780)
+			elseif score == 4 then
+				AddCaption(loc("Good so far!") .. " " .. loc("Keep it up!"));
+				blowUp(1730,1226)
+				blowUp(1440,1595)
+				blowUp(1527,1575)
+				blowUp(1614,1595)
+				blowUp(1420,1675)
+				blowUp(1527,1675)
+				blowUp(1634,1675)
+				blowUp(1440,1755)
+				blowUp(1527,1775)
+				blowUp(1614,1755)
+				spawnTarget(1527,1667)
+			elseif score == 5 then
+				spawnTarget(1527,1667)
+			elseif score == 6 then
+				spawnTarget(2175,1300)
+			elseif score == 7 then
+				spawnTarget(2250,940)
+			elseif score == 8 then
+				spawnTarget(2665,1540)
+			elseif score == 9 then
+				spawnTarget(3040,1160)
+			elseif score == 10 then
+				spawnTarget(2930,1500)
+			elseif score == 11 then
+				AddCaption(loc("This one's tricky."));
+				spawnTarget(700,720)
+			elseif score == 12 then
+				AddCaption(loc("Well done."));
+				blowUp(914,1222)
+				blowUp(1050,1222)
+				blowUp(1160,1008)
+				blowUp(1160,1093)
+				blowUp(1160,1188)
+				blowUp(375,911)
+				blowUp(510,911)
+				blowUp(640,911)
+				blowUp(780,911)
+				blowUp(920,911)
+				blowUp(1060,913)
+				blowUp(1198,913)
+				spawnTarget(1200,730)
+			elseif score == 13 then
+				spawnTarget(1200,830)
+			elseif score == 14 then
+				spawnTarget(1430,450)
+			elseif score == 15 then
+				spawnTarget(796,240)
+			elseif score == 16 then
+				spawnTarget(300,10)
+			elseif score == 17 then
+				spawnTarget(2080,820)
+			elseif score == 18 then
+				AddCaption(loc("Demolition is fun!"));
+				blowUp(2110,920)
+				blowUp(2210,920)
+				blowUp(2200,305)
+				blowUp(2300,305)
+				blowUp(2300,400)
+				blowUp(2300,500)
+				blowUp(2300,600)
+				blowUp(2300,700)
+				blowUp(2300,800)
+				blowUp(2300,900)
+				blowUp(2401,305)
+				blowUp(2532,305)
+				blowUp(2663,305)
+				spawnTarget(2300,760)
+			elseif score == 19 then
+				spawnTarget(2300,760)
+			elseif score == 20 then
+				spawnTarget(2738,190)
+			elseif score == 21 then
+				spawnTarget(2590,-100)
+			elseif score == 22 then
+				AddCaption(loc("Will this ever end?"));
+				blowUp(2790,305)
+				blowUp(2930,305)
+				blowUp(3060,305)
+				blowUp(3190,305)
+				blowUp(3310,305)
+				blowUp(3393,613)
+				blowUp(2805,370)
+				blowUp(2805,500)
+				blowUp(2805,630)
+				blowUp(2805,760)
+				blowUp(2805,890)
+				blowUp(3258,370)
+				blowUp(3258,475)
+				blowUp(3264,575)
+				spawnTarget(3230,240)
+			elseif score == 23 then
+				spawnTarget(3230,290)
+			elseif score == 24 then
+				spawnTarget(3670,250)
+			elseif score == 25 then
+				spawnTarget(2620,-100)
+			elseif score == 26 then
+				spawnTarget(2870,300)
+			elseif score == 27 then
+				spawnTarget(3850,900)
+			elseif score == 28 then
+				spawnTarget(3780,300)
+			elseif score == 29 then
+				spawnTarget(3670,0)
+			elseif score == 30 then
+				AddCaption(loc("Last Target!"));
+				spawnTarget(3480,1200)
+			end
+		else
+			if not game_lost then
+			-- Otherwise show that the goal was accomplished
+			ShowMission(loc("Sniper Training"), loc("Aiming Practice"), loc("Congratulations! You've eliminated all targets|within the allowed time frame."), 0, 0)
+			-- Also let the hogs shout "victory!"
+			PlaySound(sndVictory)
+			-- Save the time left so we may keep it.
+			time_goal = TurnTimeLeft
+			end
+		end
+	end
+end
+
+-- This function calculates the final score of the player and provides some texts and
+-- data for the final stats screen
+function generateStats()
+	local accuracy = (score/shots)*100
+	local end_score_targets = (score * 200)
+	local end_score_overall
+	if not game_lost then
+		local end_score_time = math.ceil(time_goal/5)
+		local end_score_accuracy = math.ceil(accuracy * 100)
+		end_score_overall = end_score_time + end_score_targets + end_score_accuracy
+
+		SendStat(siGameResult, loc("You have successfully finished the sniper rifle training!"))
+		SendStat(siCustomAchievement, string.format(loc("You have destroyed %d of %d targets (+%d points)."), score, score_goal, end_score_targets))
+		SendStat(siCustomAchievement, string.format(loc("You have made %d shots."), shots))
+		SendStat(siCustomAchievement, string.format(loc("Accuracy bonus: +%d points"), end_score_accuracy))
+		SendStat(siCustomAchievement, string.format(loc("You had %.2fs remaining on the clock (+%d points)."), (time_goal/1000), end_score_time))
+	else
+		SendStat(siGameResult, loc("You lose!"))
+	
+		SendStat(siCustomAchievement, string.format(loc("You have destroyed %d of %d targets (+%d points)."), score, score_goal, end_score_targets))
+		SendStat(siCustomAchievement, string.format(loc("You have made %d shots."), shots))
+		end_score_overall = end_score_targets
+	end
+	SendStat(siPlayerKills, tostring(end_score_overall), loc("Sniperz"))
+	SendStat(siPointType, loc("points"))
+end
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Missions/Training/Target_Practice_-_Bazooka_easy.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,35 @@
+HedgewarsScriptLoad("/Scripts/TargetPractice.lua")
+
+local params = {
+	ammoType = amBazooka,
+	gearType = gtShell,
+	missionTitle = "Target Practice: Bazooka (easy)",
+	wind = 50,
+	solidLand = true,
+	map = "Lonely_Island",
+	theme = "Island",
+	hog_x = 1439,
+	hog_y = 482,
+	hogName = loc("Zook"),
+	hogHat = "war_americanww2helmet",
+	teamName = loc("Team Zook"),
+	targets = {
+		{ x = 1310, y = 756 },
+		{ x = 1281, y = 893 },
+		{ x = 1376, y = 670 },
+		{ x = 1725, y = 907 },
+		{ x = 1971, y = 914 },
+		{ x = 1098, y = 955 },
+		{ x = 1009, y = 877 },
+		{ x = 930, y = 711 },
+		{ x = 771, y = 744 },
+		{ x = 385, y = 405 },
+		{ x = 442, y = 780 },
+		{ x = 620, y = 639 },
+		{ x = 311, y = 239 },
+	},
+	time = 80000,
+	shootText = loc("You have launched %d bazookas."),
+}
+
+TargetPracticeMission(params)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Missions/Training/Target_Practice_-_Bazooka_hard.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,40 @@
+HedgewarsScriptLoad("/Scripts/TargetPractice.lua")
+
+local params = {
+	ammoType = amBazooka,
+	gearType = gtShell,
+	missionTitle = "Target Practice: Bazooka (hard)",
+	wind = 20,
+	solidLand = true,
+	artillery = true,
+	map = "SB_Grassy",
+	theme = "Castle",
+	hog_x = 2112,
+	hog_y = 913,
+	hogName = loc("Zook"),
+	hogHat = "war_americanww2helmet",
+	teamName = loc("Team Zook"),
+	targets = {
+		{ x = 2660, y = 936 },
+		{ x = 2857, y = 629 },
+		{ x = 3044, y = 851 },
+		{ x = 3200, y = 441 },
+		{ x = 2931, y = 440 },
+		{ x = 3264, y = 370 },
+		{ x = 1880, y = 684 },
+		{ x = 1392, y = 672 },
+		{ x = 1587, y = 656 },
+		{ x = 1300, y = 840 },
+		{ x = 952, y = 814 },
+		{ x = 862, y = 634 },
+		{ x = 748, y = 794 },
+		{ x = 639, y = 548 },
+		{ x = 1730, y = 549 },
+		{ x = 1466, y = 566 },
+		{ x = 3716, y = 954 },
+	},
+	time = 180000,
+	shootText = loc("You have launched %d bazookas."),
+}
+
+TargetPracticeMission(params)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Missions/Training/Target_Practice_-_Cluster_Bomb.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,33 @@
+HedgewarsScriptLoad("/Scripts/TargetPractice.lua")
+
+local params = {
+	ammoType = amClusterBomb,
+	gearType = gtClusterBomb,
+	missionTitle = "Cluster Bomb Training",
+	solidLand = false,
+	map = "Trash",
+	theme = "Golf",
+	hog_x = 756,
+	hog_y = 370,
+	hogName = loc("Private Nolak"),
+	hogHat = "war_desertgrenadier1",
+	teamName = loc("The Hogies"),
+	targets = {
+		{ x = 628, y = 0 },
+		{ x = 891, y = 0 },
+		{ x = 1309, y = 0 },
+		{ x = 1128, y = 0 },
+		{ x = 410, y = 0 },
+		{ x = 1564, y = 0 },
+		{ x = 1248, y = 476 },
+		{ x = 169, y = 0 },
+		{ x = 1720, y = 0 },
+		{ x = 1441, y = 0 },
+		{ x = 599, y = 0 },
+		{ x = 1638, y = 0 },
+	},
+	time = 180000,
+	shootText = loc("You have thrown %d cluster bombs."),
+}
+
+TargetPracticeMission(params)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Missions/Training/Target_Practice_-_Grenade_easy.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,30 @@
+HedgewarsScriptLoad("/Scripts/TargetPractice.lua")
+
+local params = {
+	ammoType = amGrenade,
+	gearType = gtGrenade,
+	missionTitle = "Target Practice: Grenade (easy)",
+	solidLand = true,
+	artillery = true,
+	map = "SB_Crystal",
+	theme = "Cave",
+	hog_x = 2039,
+	hog_y = 684,
+	hogName = loc("Grenadier"),
+	hogHat = "war_desertgrenadier2",
+	teamName = loc("Grenade Group"),
+	targets = {
+		{ x = 1834, y = 747 },
+		{ x = 2308, y = 729 },
+		{ x = 1659, y = 718 },
+		{ x = 1196, y = 704 },
+		{ x = 2650, y = 826 },
+		{ x = 1450, y = 705 },
+		{ x = 2774, y = 848 },
+		{ x = 2970, y = 704 },
+	},
+	time = 80000,
+	shootText = loc("You have thrown %d grenades."),
+}
+
+TargetPracticeMission(params)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Missions/Training/Target_Practice_-_Grenade_hard.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,41 @@
+HedgewarsScriptLoad("/Scripts/TargetPractice.lua")
+
+local params = {
+	ammoType = amGrenade,
+	gearType = gtGrenade,
+	missionTitle = "Target Practice: Grenade (hard)",
+	solidLand = true,
+	artillery = true,
+	map = "SB_Crystal",
+	theme = "Cave",
+	hog_x = 1456,
+	hog_y = 669,
+	hogName = loc("Grenadier"),
+	hogHat = "war_desertgrenadier2",
+	teamName = loc("Grenade Group"),
+	targets = {
+		{ x = 1190, y = 694 },
+		{ x = 962, y = 680 },
+		{ x = 1090, y = 489 },
+		{ x = 1664, y = 666 },
+		{ x = 1584, y = 580 },
+		{ x = 2160, y = 738 },
+		{ x = 1836, y = 726 },
+		{ x = 618, y = 753 },
+		{ x = 837, y = 668 },
+		{ x = 2424, y = 405 },
+		{ x = 2310, y = 742 },
+		{ x = 294, y = 897 },
+		{ x = 472, y = 855 },
+		{ x = 2949, y = 724},
+		{ x = 3356, y = 926 },
+		{ x = 3734, y = 918 },
+		{ x = 170, y = 874 },
+		
+		
+	},
+	time = 180000,
+	shootText = loc("You have thrown %d grenades."),
+}
+
+TargetPracticeMission(params)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Missions/Training/Target_Practice_-_Homing_Bee.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,35 @@
+HedgewarsScriptLoad("/Scripts/TargetPractice.lua")
+
+local params = {
+	ammoType = amBee,
+	gearType = gtBee,
+	missionTitle = "Target Practice: Homing Bee",
+	solidLand = true,
+	map = "Hedgewars",
+	theme = "Nature",
+	hog_x = 1990,
+	hog_y = 514,
+	hogHat = "NoHat",
+	teamGrave = "bp2",
+	targets = {
+		{ x = 1949, y = 273 },
+		{ x = 1734, y = 322 },
+		{ x = 1574, y = 340 },
+		{ x = 1642, y = 474 },
+		{ x = 2006, y = 356 },
+		{ x = 1104, y = 285 },
+		{ x = 565, y = 440 },
+		{ x = 732, y = 350 },
+		{ x = 2022, y = 396 },
+		{ x = 366, y = 360 },
+		{ x = 556, y = 300 },
+		{ x = 902, y = 306 },
+		{ x = 924, y = 411 },
+		{ x = 227, y = 510 },
+		{ x = 150, y = 300 },
+	},
+	time = 120000,
+	shootText = loc("You have launched %d homing bees."),
+}
+
+TargetPracticeMission(params)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Missions/Training/Target_Practice_-_Shotgun.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,38 @@
+HedgewarsScriptLoad("/Scripts/TargetPractice.lua")
+
+local params = {
+	ammoType = amShotgun,
+	gearType = gtShotgunShot,
+	missionTitle = "Target Practice: Shotgun",
+	solidLand = false,
+	map = "SB_Haunty",
+	theme = "Halloween",
+	hog_x = 320,
+	hog_y = 324,
+	hogHat = "NoHat",
+	hogGrave = "Bones",
+	targets = {
+		{ x = 495, y = 501 },
+		{ x = 227, y = 530 },
+		{ x = 835, y = 934 },
+		{ x = 1075, y = 889 },
+		{ x = 887, y = 915 },
+		{ x = 1148, y = 750 },
+		{ x = 916, y = 915 },
+		{ x = 1211, y = 700 },
+		{ x = 443, y = 505 },
+		{ x = 822, y = 964 },
+		{ x = 1092, y = 819 },
+		{ x = 1301, y = 683 },
+		{ x = 1480, y = 661 },
+		{ x = 1492, y = 786 },
+		{ x = 1605, y = 562 },
+		{ x = 1545, y = 466 },
+		{ x = 1654, y = 392 },
+		{ x = 1580, y = 334 },
+		{ x = 1730, y = 222 },
+	},
+	time = 90000,
+}
+
+TargetPracticeMission(params)
--- a/share/hedgewars/Data/Missions/Training/User_Mission_-_RCPlane_Challenge.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Missions/Training/User_Mission_-_RCPlane_Challenge.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,343 +1,490 @@
-HedgewarsScriptLoad("/Scripts/Locale.lua")
-
-local player = nil
-local RCGear = nil
-local planesUsed = 0
-local cratesLeft = 0
-
-function onGameInit()
-
-	Seed = 1
-	GameFlags = gfInfAttack + gfInvulnerable + gfOneClanMode + gfSolidLand
-
-	TurnTime = 90 * 1000
-
-	Map = "Ropes"
-	Theme = "Eyes"
-
-	CaseFreq = 0
-	MinesNum = 0
-	Explosives = 0
-
-	AddTeam(loc("Wannabe Flyboys"), 14483456, "Simple", "Island", "Default", "Hedgewars")
-	player = AddHog(loc("Ace"), 0, 80, "Gasmask")
-	SetGearPosition(player, 1380, 1500)
-
-end
-
-
-
-function onGameStart()
-
-	ShowMission     (
-                                loc("RC PLANE TRAINING"),
-                                loc("a Hedgewars challenge"),
-
-                                loc("Collect or destroy all the health crates.") .. "|" ..
-                                loc("Compete to use as few planes as possible!") .. "|" ..
-								"", -amRCPlane, 4000
-                                )
-
-	PlaceGirder(2192, 508, 6)
-	PlaceGirder(2192, 670, 6)
-	PlaceGirder(2193, 792, 2)
-	PlaceGirder(2100, 825, 4)
-	PlaceGirder(2009, 899, 6)
-	PlaceGirder(2084, 992, 4)
-	PlaceGirder(2145, 1087, 6)
-	PlaceGirder(2199, 1235, 5)
-	PlaceGirder(2308, 1296, 0)
-	PlaceGirder(2424, 1234, 7)
-	PlaceGirder(2473, 1129, 2)
-	PlaceGirder(2437, 1046, 1)
-	PlaceGirder(2409, 927, 6)
-	PlaceGirder(2408, 763, 6)
-	PlaceGirder(2404, 540, 6)
-	PlaceGirder(2426, 423, 3)
-	PlaceGirder(2550, 400, 4)
-	PlaceGirder(2668, 425, 1)
-	PlaceGirder(2707, 541, 6)
-	PlaceGirder(2706, 703, 6)
-	PlaceGirder(2705, 867, 6)
-	PlaceGirder(2779, 962, 4)
-	PlaceGirder(2894, 924, 3)
-	PlaceGirder(2908, 802, 6)
-	PlaceGirder(2907, 639, 6)
-	PlaceGirder(3052, 566, 4)
-	PlaceGirder(2971, 394, 4)
-	PlaceGirder(3103, 448, 7)
-	PlaceGirder(3047, 654, 0)
-	PlaceGirder(3043, 746, 6)
-	PlaceGirder(3265, 1583, 6)
-	PlaceGirder(3256, 1491, 4)
-	PlaceGirder(3187, 1401, 6)
-	PlaceGirder(3326, 1400, 6)
-	PlaceGirder(774, 530, 5)
-	PlaceGirder(922, 595, 4)
-	PlaceGirder(1079, 533, 7)
-	PlaceGirder(1139, 386, 6)
-	PlaceGirder(1074, 237, 5)
-	PlaceGirder(723, 381, 6)
-	PlaceGirder(781, 229, 7)
-	PlaceGirder(927, 746, 6)
-	PlaceGirder(874, 736, 0)
-	PlaceGirder(982, 737, 0)
-	PlaceGirder(2430, 1730, 4)
-
-	PlaceGirder(1613, 1104, 7)
-	PlaceGirder(1564, 1256, 6)
-	PlaceGirder(1643, 1341, 5)
-	PlaceGirder(1780, 1372, 4)
-	PlaceGirder(1869, 1296, 7)
-	PlaceGirder(1858, 1163, 5)
-	PlaceGirder(1739, 1044, 5)
-	PlaceGirder(1621, 926, 5)
-	PlaceGirder(1597, 985, 5)
-	PlaceGirder(1449, 939, 4)
-	PlaceGirder(1473, 874, 4)
-	PlaceGirder(2092, 1352, 7)
-	PlaceGirder(2145, 1444, 7)
-	PlaceGirder(2004, 1443, 3)
-	PlaceGirder(1978, 1523, 2)
-	PlaceGirder(2021, 1596, 1)
-	PlaceGirder(2103, 1625, 0)
-	PlaceGirder(2208, 1551, 7)
-	PlaceGirder(2327, 1431, 7)
-	PlaceGirder(2395, 1478, 6)
-	PlaceGirder(2396, 1600, 2)
-	PlaceGirder(2495, 1285, 6)
-	PlaceGirder(2494, 1408, 2)
-	PlaceGirder(2547, 530, 0)
-
-	PlaceGirder(2451, 1551, 0)
-	PlaceGirder(2551, 706, 6)
-	PlaceGirder(2551, 869, 6)
-	PlaceGirder(2623, 1016, 5)
-	PlaceGirder(2773, 1083, 4)
-	PlaceGirder(2924, 1019, 7)
-	PlaceGirder(2568, 1491, 7)
-	PlaceGirder(2618, 1346, 6)
-	PlaceGirder(2674, 1195, 7)
-	PlaceGirder(2822, 1142, 4)
-	PlaceGirder(2963, 1069, 7)
-	PlaceGirder(3067, 938, 5)
-	PlaceGirder(2803, 1373, 2)
-	PlaceGirder(2811, 1559, 2)
-
-	tempG = SpawnHealthCrate(930, 557)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(979, 692)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(876, 703)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2309, 1260)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(1733, 1127)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(1738, 1320)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(3249, 1460)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(3051, 617)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2972, 353)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2548, 358)
-
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2090, 1580)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(1752, 1753)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(1865, 1758)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(1985, 1760)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2429, 1760)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2810, 1480)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2800, 1277)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2806, 1107)
-	SetHealth(tempG, 25)
-
-	PlaceGirder(1897, 903, 6)
-	PlaceGirder(1916, 784, 3)
-	PlaceGirder(2010, 732, 4)
-	PlaceGirder(2082, 639, 6)
-	PlaceGirder(2081, 516, 2)
-	PlaceGirder(1985, 487, 4)
-	PlaceGirder(1862, 407, 5)
-	PlaceGirder(1855, 224, 7)
-	PlaceGirder(2006, 163, 4)
-	PlaceGirder(2128, 187, 1)
-	PlaceGirder(2251, 213, 4)
-	PlaceGirder(2413, 213, 4)
-	PlaceGirder(1952, 618, 0)
-	PlaceGirder(957, 1068, 4)
-	PlaceGirder(794, 1069, 4)
-	PlaceGirder(728, 1163, 6)
-	PlaceGirder(728, 1287, 2)
-	PlaceGirder(802, 1342, 4)
-	PlaceGirder(966, 1342, 4)
-	PlaceGirder(674, 1032, 1)
-	PlaceGirder(554, 1011, 4)
-	PlaceGirder(445, 1056, 3)
-	PlaceGirder(422, 1174, 6)
-	PlaceGirder(369, 1341, 5)
-	PlaceGirder(495, 1313, 5)
-	PlaceGirder(568, 1379, 3)
-	PlaceGirder(577, 1202, 2)
-	PlaceGirder(744, 1490, 5)
-	PlaceGirder(760, 1617, 7)
-	PlaceGirder(622, 1693, 4)
-	PlaceGirder(476, 1623, 5)
-	PlaceGirder(376, 1697, 1)
-	PlaceGirder(955, 1746, 2)
-	PlaceGirder(1025, 1746, 2)
-	PlaceGirder(1090, 1745, 2)
-	PlaceGirder(1156, 1746, 2)
-	PlaceGirder(3806, 1530, 2)
-	PlaceGirder(3880, 1464, 2)
-	PlaceGirder(3738, 1458, 2)
-	PlaceGirder(3806, 1390, 2)
-	PlaceGirder(3805, 1588, 0)
-	PlaceGirder(3676, 1609, 3)
-	PlaceGirder(3930, 1615, 1)
-	PlaceGirder(3719, 1295, 0)
-	PlaceGirder(3888, 1294, 0)
-	PlaceGirder(3661, 1385, 2)
-	PlaceGirder(3955, 1377, 2)
-	PlaceGirder(3982, 1518, 0)
-	PlaceGirder(3378, 440, 2)
-	PlaceGirder(3447, 492, 4)
-	PlaceGirder(3564, 529, 1)
-	PlaceGirder(3596, 647, 6)
-	PlaceGirder(3521, 740, 4)
-	PlaceGirder(3524, 838, 4)
-	PlaceGirder(3644, 819, 3)
-	PlaceGirder(3691, 708, 6)
-	PlaceGirder(3690, 545, 6)
-	PlaceGirder(3612, 433, 5)
-	PlaceGirder(3463, 383, 4)
-	PlaceGirder(2815, 122, 7)
-	PlaceGirder(2960, 72, 4)
-	PlaceGirder(3032, 123, 2)
-	PlaceGirder(3063, 174, 0)
-	PlaceGirder(3095, 124, 2)
-	PlaceGirder(3169, 71, 4)
-	PlaceGirder(3320, 124, 5)
-	PlaceGirder(3210, 179, 2)
-	PlaceGirder(2932, 181, 2)
-
-	tempG = SpawnHealthCrate(3804, 1461)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(3269, 1742)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(3066, 121)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(3207, 104)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2928, 103)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(1997, 202)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2253, 159)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2132, 774)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(2549, 490)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(3527, 694)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(3777, 78)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(1124, 1746)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(1056, 1740)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(993, 1742)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(799, 1298)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(577, 1126)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(596, 1463)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(3854, 1043)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(1944, 567)
-	SetHealth(tempG, 25)
-	tempG = SpawnHealthCrate(338, 1748)
-	SetHealth(tempG, 25)
-
-
-end
-
---function onGameTick()
-
-	--if RCGear ~= nil then
-	--	AddCaption(GetTimer(RCGear))
-	--end
-
---end
-
-function onNewTurn()
-	TurnTimeLeft = -1
-end
-
-function onGearAdd(gear)
-
-	if GetGearType(gear) == gtRCPlane then
-		RCGear = gear
-		planesUsed = planesUsed + 1
-	end
-
-	if GetGearType(gear) == gtCase then
-		cratesLeft = cratesLeft + 1
-	end
-
-end
-
-function onGearDelete(gear)
-
-	if GetGearType(gear) == gtRCPlane then
-
-		RCGear = nil
-		AddCaption(loc("Planes Used:") .. " " .. planesUsed)
-
-	elseif GetGearType(gear) == gtCase then
-
-		AddCaption(loc("Crates Left:") .. " " .. cratesLeft)
-		cratesLeft = cratesLeft - 1
-
-		if cratesLeft == 0 then
-
-			if planesUsed == 1 then
-				AddCaption(loc("Achievement Unlocked") .. ": " .. loc("Prestigious Pilot"),0xffba00ff,capgrpMessage2)
-			end
-
-			ShowMission     (
-                                loc("CHALLENGE COMPLETE"),
-                                loc("Congratulations!"),
-                                loc("Planes Used") .. ": " .. planesUsed .. "|" ..
-                                "", 0, 0
-                                )
-
-
-
-			DismissTeam(loc("Wannabe Flyboys"))
-		end
-
-		if RCGear ~= nil then
-			SetTimer(RCGear, GetTimer(RCGear) + 10000)
-		end
-
-	end
-
-end
-
-function onAmmoStoreInit()
-	SetAmmo(amRCPlane, 9, 0, 0, 0)
-end
+HedgewarsScriptLoad("/Scripts/Locale.lua")
+
+local player = nil
+local RCGear = nil
+local planesUsed = 0
+local planeTimer = 0
+local planeUhOh = false
+local cratesLeft = 0
+local crateStreak = 0
+local longestCrateStreak = 0
+local commentTimer = 0
+local missiles = 0
+local totalMissiles = 0
+local missileScanTimer = 0
+local nextComment = sndNone
+
+function onGameInit()
+
+	Seed = 1
+	GameFlags = gfInfAttack + gfInvulnerable + gfOneClanMode + gfSolidLand
+
+	TurnTime = 90 * 1000
+
+	Map = "Ropes"
+	Theme = "Eyes"
+
+	CaseFreq = 0
+	MinesNum = 0
+	Explosives = 0
+
+	AddTeam(loc("Wannabe Flyboys"), 14483456, "Simple", "Island", "Default", "Hedgewars")
+	player = AddHog(loc("Ace"), 0, 80, "Gasmask")
+	SetGearPosition(player, 1380, 1500)
+
+end
+
+
+
+function onGameStart()
+
+	SendHealthStatsOff()
+
+	ShowMission     (
+                                loc("RC PLANE TRAINING"),
+                                loc("a Hedgewars challenge"),
+
+                                loc("Collect or destroy all the health crates.") .. "|" ..
+                                loc("Compete to use as few planes as possible!") .. "|" ..
+								"", -amRCPlane, 4000
+                                )
+
+	PlaceGirder(2192, 508, 6)
+	PlaceGirder(2192, 670, 6)
+	PlaceGirder(2193, 792, 2)
+	PlaceGirder(2100, 825, 4)
+	PlaceGirder(2009, 899, 6)
+	PlaceGirder(2084, 992, 4)
+	PlaceGirder(2145, 1087, 6)
+	PlaceGirder(2199, 1235, 5)
+	PlaceGirder(2308, 1296, 0)
+	PlaceGirder(2424, 1234, 7)
+	PlaceGirder(2473, 1129, 2)
+	PlaceGirder(2437, 1046, 1)
+	PlaceGirder(2409, 927, 6)
+	PlaceGirder(2408, 763, 6)
+	PlaceGirder(2404, 540, 6)
+	PlaceGirder(2426, 423, 3)
+	PlaceGirder(2550, 400, 4)
+	PlaceGirder(2668, 425, 1)
+	PlaceGirder(2707, 541, 6)
+	PlaceGirder(2706, 703, 6)
+	PlaceGirder(2705, 867, 6)
+	PlaceGirder(2779, 962, 4)
+	PlaceGirder(2894, 924, 3)
+	PlaceGirder(2908, 802, 6)
+	PlaceGirder(2907, 639, 6)
+	PlaceGirder(3052, 566, 4)
+	PlaceGirder(2971, 394, 4)
+	PlaceGirder(3103, 448, 7)
+	PlaceGirder(3047, 654, 0)
+	PlaceGirder(3043, 746, 6)
+	PlaceGirder(3265, 1583, 6)
+	PlaceGirder(3256, 1491, 4)
+	PlaceGirder(3187, 1401, 6)
+	PlaceGirder(3326, 1400, 6)
+	PlaceGirder(774, 530, 5)
+	PlaceGirder(922, 595, 4)
+	PlaceGirder(1079, 533, 7)
+	PlaceGirder(1139, 386, 6)
+	PlaceGirder(1074, 237, 5)
+	PlaceGirder(723, 381, 6)
+	PlaceGirder(781, 229, 7)
+	PlaceGirder(927, 746, 6)
+	PlaceGirder(874, 736, 0)
+	PlaceGirder(982, 737, 0)
+	PlaceGirder(2430, 1730, 4)
+
+	PlaceGirder(1613, 1104, 7)
+	PlaceGirder(1564, 1256, 6)
+	PlaceGirder(1643, 1341, 5)
+	PlaceGirder(1780, 1372, 4)
+	PlaceGirder(1869, 1296, 7)
+	PlaceGirder(1858, 1163, 5)
+	PlaceGirder(1739, 1044, 5)
+	PlaceGirder(1621, 926, 5)
+	PlaceGirder(1597, 985, 5)
+	PlaceGirder(1449, 939, 4)
+	PlaceGirder(1473, 874, 4)
+	PlaceGirder(2092, 1352, 7)
+	PlaceGirder(2145, 1444, 7)
+	PlaceGirder(2004, 1443, 3)
+	PlaceGirder(1978, 1523, 2)
+	PlaceGirder(2021, 1596, 1)
+	PlaceGirder(2103, 1625, 0)
+	PlaceGirder(2208, 1551, 7)
+	PlaceGirder(2327, 1431, 7)
+	PlaceGirder(2395, 1478, 6)
+	PlaceGirder(2396, 1600, 2)
+	PlaceGirder(2495, 1285, 6)
+	PlaceGirder(2494, 1408, 2)
+	PlaceGirder(2547, 530, 0)
+
+	PlaceGirder(2451, 1551, 0)
+	PlaceGirder(2551, 706, 6)
+	PlaceGirder(2551, 869, 6)
+	PlaceGirder(2623, 1016, 5)
+	PlaceGirder(2773, 1083, 4)
+	PlaceGirder(2924, 1019, 7)
+	PlaceGirder(2568, 1491, 7)
+	PlaceGirder(2618, 1346, 6)
+	PlaceGirder(2674, 1195, 7)
+	PlaceGirder(2822, 1142, 4)
+	PlaceGirder(2963, 1069, 7)
+	PlaceGirder(3067, 938, 5)
+	PlaceGirder(2803, 1373, 2)
+	PlaceGirder(2811, 1559, 2)
+
+	tempG = SpawnHealthCrate(930, 557)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(979, 692)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(876, 703)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2309, 1260)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(1733, 1127)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(1738, 1320)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(3249, 1460)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(3051, 617)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2972, 353)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2548, 358)
+
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2090, 1580)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(1752, 1753)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(1865, 1758)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(1985, 1760)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2429, 1760)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2810, 1480)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2800, 1277)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2806, 1107)
+	SetHealth(tempG, 25)
+
+	PlaceGirder(1897, 903, 6)
+	PlaceGirder(1916, 784, 3)
+	PlaceGirder(2010, 732, 4)
+	PlaceGirder(2082, 639, 6)
+	PlaceGirder(2081, 516, 2)
+	PlaceGirder(1985, 487, 4)
+	PlaceGirder(1862, 407, 5)
+	PlaceGirder(1855, 224, 7)
+	PlaceGirder(2006, 163, 4)
+	PlaceGirder(2128, 187, 1)
+	PlaceGirder(2251, 213, 4)
+	PlaceGirder(2413, 213, 4)
+	PlaceGirder(1952, 618, 0)
+	PlaceGirder(957, 1068, 4)
+	PlaceGirder(794, 1069, 4)
+	PlaceGirder(728, 1163, 6)
+	PlaceGirder(728, 1287, 2)
+	PlaceGirder(802, 1342, 4)
+	PlaceGirder(966, 1342, 4)
+	PlaceGirder(674, 1032, 1)
+	PlaceGirder(554, 1011, 4)
+	PlaceGirder(445, 1056, 3)
+	PlaceGirder(422, 1174, 6)
+	PlaceGirder(369, 1341, 5)
+	PlaceGirder(495, 1313, 5)
+	PlaceGirder(568, 1379, 3)
+	PlaceGirder(577, 1202, 2)
+	PlaceGirder(744, 1490, 5)
+	PlaceGirder(760, 1617, 7)
+	PlaceGirder(622, 1693, 4)
+	PlaceGirder(476, 1623, 5)
+	PlaceGirder(376, 1697, 1)
+	PlaceGirder(955, 1746, 2)
+	PlaceGirder(1025, 1746, 2)
+	PlaceGirder(1090, 1745, 2)
+	PlaceGirder(1156, 1746, 2)
+	PlaceGirder(3806, 1530, 2)
+	PlaceGirder(3880, 1464, 2)
+	PlaceGirder(3738, 1458, 2)
+	PlaceGirder(3806, 1390, 2)
+	PlaceGirder(3805, 1588, 0)
+	PlaceGirder(3676, 1609, 3)
+	PlaceGirder(3930, 1615, 1)
+	PlaceGirder(3719, 1295, 0)
+	PlaceGirder(3888, 1294, 0)
+	PlaceGirder(3661, 1385, 2)
+	PlaceGirder(3955, 1377, 2)
+	PlaceGirder(3982, 1518, 0)
+	PlaceGirder(3378, 440, 2)
+	PlaceGirder(3447, 492, 4)
+	PlaceGirder(3564, 529, 1)
+	PlaceGirder(3596, 647, 6)
+	PlaceGirder(3521, 740, 4)
+	PlaceGirder(3524, 838, 4)
+	PlaceGirder(3644, 819, 3)
+	PlaceGirder(3691, 708, 6)
+	PlaceGirder(3690, 545, 6)
+	PlaceGirder(3612, 433, 5)
+	PlaceGirder(3463, 383, 4)
+	PlaceGirder(2815, 122, 7)
+	PlaceGirder(2960, 72, 4)
+	PlaceGirder(3032, 123, 2)
+	PlaceGirder(3063, 174, 0)
+	PlaceGirder(3095, 124, 2)
+	PlaceGirder(3169, 71, 4)
+	PlaceGirder(3320, 124, 5)
+	PlaceGirder(3210, 179, 2)
+	PlaceGirder(2932, 181, 2)
+
+	tempG = SpawnHealthCrate(3804, 1461)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(3269, 1742)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(3066, 121)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(3207, 104)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2928, 103)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(1997, 202)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2253, 159)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2132, 774)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(2549, 490)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(3527, 694)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(3777, 78)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(1124, 1746)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(1056, 1740)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(993, 1742)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(799, 1298)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(577, 1126)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(596, 1463)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(3854, 1043)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(1944, 567)
+	SetHealth(tempG, 25)
+	tempG = SpawnHealthCrate(338, 1748)
+	SetHealth(tempG, 25)
+
+
+end
+
+--function onGameTick()
+
+	--if RCGear ~= nil then
+	--	AddCaption(GetTimer(RCGear))
+	--end
+
+--end
+
+function onGameTick20()
+	if RCGear ~= nil then
+		if(GetTimer(RCGear) < 3000 and planeUhOh == false) then
+			PlaySound(sndUhOh, player)
+			planeUhOh = true
+		end
+		planeTimer = planeTimer + 20
+	end
+	if commentTimer > 0 then
+		commentTimer = commentTimer - 20
+	elseif(nextComment ~= sndNone) then
+		PlaySound(nextComment, player)
+		nextComment = sndNone
+	end
+	if missileScanTimer > 0 then
+		missileScanTimer = missileScanTimer - 20
+	else
+		if crateStreak == 0 and missiles == 3 then
+			PlaySound(sndMissed, player)
+			missiles = 4
+		end
+	end
+end
+
+function onNewTurn()
+	TurnTimeLeft = -1
+end
+
+function onGearAdd(gear)
+
+	if GetGearType(gear) == gtRCPlane then
+		RCGear = gear
+		planesUsed = planesUsed + 1
+		planeTimer = 0
+		missiles = 0
+	end
+
+	if GetGearType(gear) == gtCase then
+		cratesLeft = cratesLeft + 1
+	end
+
+	if GetGearType(gear) == gtAirBomb then
+		totalMissiles = totalMissiles + 1
+	end
+end
+
+function onGearDelete(gear)
+
+	if GetGearType(gear) == gtRCPlane then
+
+		RCGear = nil
+		planeUhOh = false
+		missiles = 0
+		AddCaption(string.format(loc("Planes used: %d"), planesUsed))
+
+		if(planeTimer < 2000 and crateStreak == 0) then
+			nextComment = sndStupid
+			commentTimer = math.min(2000-planeTimer, 800)
+		elseif(planeTimer < 5000 and crateStreak == 0) then
+			PlaySound(sndOops, player)
+		elseif(planesUsed == 72) then
+			PlaySound(sndStupid, player)
+		elseif(planesUsed == 50) then
+			PlaySound(sndNutter, player)
+		elseif(planesUsed == 30) then
+			PlaySound(sndOops, player)
+		end
+
+		crateStreak = 0
+
+	elseif GetGearType(gear) == gtAirBomb then
+		missiles = missiles + 1
+		missileScanTimer = 500
+
+	elseif GetGearType(gear) == gtCase then
+
+		cratesLeft = cratesLeft - 1
+		crateStreak = crateStreak + 1
+		if(crateStreak > longestCrateStreak) then
+			longestCrateStreak = crateStreak
+		end
+
+		AddCaption(string.format(loc("Crates left: %d"), cratesLeft))
+
+		if cratesLeft == 0 then
+
+			local rank = "unknown"
+			local color = 0xFFFFFFFF
+			local sound = sndVictory
+			if planesUsed >= 156 then
+				rank = loc("Destroyer of planes")	
+				color = 0xD06700FF
+				sound = sndLaugh
+			elseif planesUsed >= 98 then
+				rank = loc("Hopeless case")
+				color = 0xFF0000FF
+			elseif planesUsed >= 72 then
+				rank = loc("Drunk greenhorn")
+				color = 0xFF0040FF
+			elseif planesUsed >= 50 then
+				rank = loc("Greenhorn") -- a.k.a. "absolute beginner"
+				color = 0xFF0080FF
+			elseif planesUsed >= 39 then
+				rank = loc("Beginner")
+				color = 0xFF00BFFF
+			elseif planesUsed >= 30 then
+				rank = loc("Experienced beginner")
+				color = 0xFF00CCFF
+			elseif planesUsed >= 21 then
+				rank = loc("Below-average pilot")
+				color = 0xFF00FFFF
+			elseif planesUsed >= 17 then
+				rank = loc("Average pilot")				
+				color = 0xBF00FFFF
+			elseif planesUsed >= 13 then
+				rank = loc("Above-average pilot")
+				color = 0x8000FFFF
+			elseif planesUsed >= 8 then
+				rank = loc("Professional pilot")
+				color = 0x4000FFFF
+			elseif planesUsed >= 5 then
+				rank = loc("Professional stunt pilot")
+				color = 0x0000FFFF
+			elseif planesUsed >= 3 then
+				rank = loc("Elite pilot")
+				color = 0x0040FFFF
+			elseif planesUsed == 2 then
+				rank = loc("Upper-class elite pilot")
+				color = 0x0080FFFF
+			elseif planesUsed == 1 then
+				rank = loc("Top-class elite pilot")
+				color = 0x00FFFFFF
+				sound = sndFlawless
+			else
+				rank = loc("Cheater")
+				color = 0xFF0000FF
+				sound = sndCoward
+			end
+			AddCaption(string.format(loc("Rank: %s"), rank), color, capgrpMessage2)
+			SendStat(siCustomAchievement, string.format(loc("Your rank: %s"), rank))
+			if planesUsed == 1 then
+				AddCaption(loc("Flawless victory!"))
+				SendStat(siGameResult, loc("You have perfectly beaten the challenge!"))
+				SendStat(siCustomAchievement, loc("You have used only 1 RC plane. Outstanding!"))
+			else
+				AddCaption(loc("Victory!"))
+				SendStat(siGameResult, loc("You have finished the challenge!"))
+				SendStat(siCustomAchievement, string.format(loc("You have used %d RC planes."), planesUsed))
+			end
+		
+			if(totalMissiles > 1) then
+				SendStat(siCustomAchievement, string.format(loc("You have dropped %d missiles."), totalMissiles))
+			end
+
+			if(longestCrateStreak > 5) then
+				if(planesUsed == 1) then
+					SendStat(siCustomAchievement, string.format(loc("In your best (and only) flight you took out %d crates with one RC plane!"), longestCrateStreak))
+				else
+					SendStat(siCustomAchievement, string.format(loc("In your best flight you took out %d crates with one RC plane."), longestCrateStreak))
+				end
+			end
+
+			if(planesUsed == 2) then
+				SendStat(siCustomAchievement, loc("This was an awesome performance! But this challenge can be finished with even just one RC plane. Can you figure out how?"))
+			end
+			if(planesUsed == 1) then
+				SendStat(siCustomAchievement, loc("Congratulations! You have truly mastered this challenge! Don't forget to save the demo."))
+				SendStat(siCustomAchievement, string.format(loc("You have gained an achievement: %s"), loc("Prestigious Pilot")))
+			end
+
+			ShowMission     (
+                                loc("CHALLENGE COMPLETE"),
+                                loc("Congratulations!"),
+                                string.format(loc("Planes used: %d"), planesUsed) .. "|" ..
+                                "", 0, 0
+                                )
+			SetState(player, gstWinner)
+			PlaySound(sound, player)
+
+
+			DismissTeam(loc("Wannabe Flyboys"))
+			EndGame()
+		end
+
+		if RCGear ~= nil then
+			SetTimer(RCGear, GetTimer(RCGear) + 10000)
+		end
+	end
+
+end
+
+function onAmmoStoreInit()
+	SetAmmo(amRCPlane, 9, 0, 0, 0)
+end
\ No newline at end of file
--- a/share/hedgewars/Data/Scripts/Draw.lua	Thu Dec 18 00:03:53 2014 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,25 +0,0 @@
-local PointsBuffer = ''  -- A string to accumulate points in
-
-function AddPoint(x, y, width, erase)
- PointsBuffer = PointsBuffer .. string.char(band(x,0xff00) / 256 , band(x,0xff) , band(y,0xff00) / 256 , band(y,0xff))
- if width then
-     width = bor(width,0x80)
-     if erase then
-         width = bor(width,0x40)
-     end
-     PointsBuffer = PointsBuffer .. string.char(width)
- else
-     PointsBuffer = PointsBuffer .. string.char(0)
- end
- if #PointsBuffer > 245 then
-     ParseCommand('draw '..PointsBuffer)
-     PointsBuffer = ''
- end
-end
-
-function FlushPoints()
- if #PointsBuffer > 0 then
-     ParseCommand('draw '..PointsBuffer)
-     PointsBuffer = ''
- end
-end
Binary file share/hedgewars/Data/Scripts/Multiplayer/Construction_Mode.hwp has changed
--- a/share/hedgewars/Data/Scripts/Multiplayer/Construction_Mode.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Construction_Mode.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1070,12 +1070,12 @@
 
 				{amLowGravity, 		"amLowGravity",		0, loc("Low Gravity"), 		4*placeholder},
 				{amExtraDamage, 	"amExtraDamage",	0, loc("Extra Damage"), 	6*placeholder},
-				{amExtraTime,		"amExtraTime",		0, loc("Extra Time"), 		8*placeholder},
+				{amExtraTime,		"amExtraTime",		0, loc("Extra Time"), 		8*placeholder}
 
-				{amResurrector, 	"amResurrector",	0, loc("Resurrector"), 		8*placeholder},
-				{amTardis, 			"amTardis",			0, loc("Tardis"), 			2*placeholder},
+				--{amResurrector, 	"amResurrector",	0, loc("Resurrector"), 		8*placeholder},
+				--{amTardis, 			"amTardis",			0, loc("Tardis"), 			2*placeholder},
 
-				{amSwitch,			"amSwitch",			0, loc("Switch Hog"), 		4*placeholder}
+				--{amSwitch,			"amSwitch",			0, loc("Switch Hog"), 		4*placeholder}
 				}
 
 ----------------------------
@@ -1345,7 +1345,11 @@
 		placedCount = placedCount + 1
 
 	else
-		AddCaption("Invalid Placement",0xffba00ff,capgrpVolume)
+	    if (clanPower[GetHogClan(CurrentHedgehog)] >= placedExpense) then
+            AddCaption(loc("Invalid Placement"),0xffba00ff,capgrpVolume)
+        else
+            AddCaption(loc("Insufficient Power"),0xffba00ff,capgrpVolume)
+        end
 		PlaySound(sndDenied)
 	end
 
--- a/share/hedgewars/Data/Scripts/Multiplayer/DiagonalMaze.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Scripts/Multiplayer/DiagonalMaze.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,4 +1,3 @@
-HedgewarsScriptLoad("/Scripts/Draw.lua")
 
 function onPreviewInit()
 onGameInit()
--- a/share/hedgewars/Data/Scripts/Multiplayer/Gravity.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Gravity.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -17,7 +17,12 @@
 
 
 function grav_onNewTurn()
-    SetGravity(gravity)
+    if delta ~= nil and period == nil then 
+      SetGravity(gravity)
+    else
+      SetGravity(div(gravity, mln))
+    end
+    
     wdGameTicks = GameTime
     
     if script2_onNewTurn ~= nil then
--- a/share/hedgewars/Data/Scripts/Multiplayer/ShoppaMap.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Scripts/Multiplayer/ShoppaMap.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,7 +1,5 @@
 ObjectList = {}
 
-HedgewarsScriptLoad("/Scripts/Draw.lua")
-
 -- Overall padding for roping freedom
 Padding = 430
 
--- a/share/hedgewars/Data/Scripts/Multiplayer/Space_Invasion.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Space_Invasion.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -290,7 +290,6 @@
 local chainLength = 0
 local shotsFired = 0
 local shotsHit = 0
-local SurfTime = 0
 local sniperHits = 0
 local pointBlankHits = 0
 ---------------------
@@ -1105,7 +1104,6 @@
 	pointBlankHits = 0
 	chainLength = 0
 	chainCounter = 0
-	SurfTime = 12
 
 	-------------------------
 	-- gaudy racer
@@ -1160,6 +1158,19 @@
 
 end
 
+function onGearWaterSkip(gear)
+	if gear == CurrentHedgehog then
+
+		for i = 0,(TeamsCount-1) do
+			if teamClan[i] == GetHogClan(CurrentHedgehog) and (teamSurfer[i] == false) then
+				teamSurfer[i] = true
+				AddCaption(loc("Surfer! +15 points!"),0xffba00ff,capgrpVolume)
+				AwardPoints(15)
+			end
+		end
+
+	end
+end
 
 function onGameTick()
 
@@ -1328,30 +1339,6 @@
 				--------------
 				--------------
 
-				------------------------
-				-- surfer achievement
-				------------------------
-
-				if (WaterLine - GetY(CurrentHedgehog)) < 15 then
-					SurfTime = SurfTime -1
-				end
-
-				if SurfTime ~= 12 then
-
-					SurfTime = SurfTime - 1
-					if SurfTime <= 0 then
-						for i = 0,(TeamsCount-1) do
-							if teamClan[i] == GetHogClan(CurrentHedgehog) and (teamSurfer[i] == false) then
-								teamSurfer[i] = true
-								SurfTime = 12
-								AddCaption(loc("Surfer! +15 points!"),0xffba00ff,capgrpVolume)
-								AwardPoints(15)
-							end
-						end
-					end
-				end
-
-
 				dx, dy = GetGearVelocity(CurrentHedgehog)
 
 				--WriteLnToConsole("I just got the velocity of currenthedgehog. It is dx: " .. dx .. "; dy: " .. dy)
--- a/share/hedgewars/Data/Scripts/Multiplayer/TechRacer.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Scripts/Multiplayer/TechRacer.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -481,7 +481,7 @@
 			--AddCaption("don't load any map")
 		elseif mapID == "1" then
 
-			--testmap1
+			--simple testmap
 			------ GIRDER LIST ------
 			PlaceSprite(306, 530, sprAmGirder, 7, lfNormal)
 			PlaceSprite(451, 474, sprAmGirder, 4, lfNormal)
@@ -574,12 +574,6 @@
 			PlaceSprite(3649, 1275, sprAmGirder, 2, lfNormal)
 			PlaceSprite(3514, 1750, sprAmGirder, 0, lfNormal)
 
-			------ RUBBER BAND LIST ------
-
-			------ LAND SPRITE LIST ------
-
-			------ HEALTH CRATE LIST ------
-
 			------ AMMO CRATE LIST ------
 			tempG = SpawnAmmoCrate(1707, 1755, amBazooka)
 			tempG = SpawnAmmoCrate(3983, 1873, amBazooka)
@@ -609,7 +603,7 @@
 
 		elseif mapID == "2" then
 
-			-- land flags test map
+			-- simple land flags test map
 			------ GIRDER LIST ------
 			PlaceSprite(335, 622, sprAmGirder, 16,16384)
 			PlaceSprite(474, 569, sprAmGirder, 13,16384)
@@ -642,14 +636,208 @@
 
 			------ AMMO CRATE LIST ------
 			tempG = SpawnAmmoCrate(472, 711, amBazooka)
-
 			tempG = SpawnUtilityCrate(540, 660, amParachute)
-
 			tempG = SpawnAmmoCrate(1155, 528, amBazooka)
 
 			------ UTILITY CRATE LIST ------
 			tempG = SpawnUtilityCrate(2006, 1102, amRope)
 
+		elseif mapID == "3" then
+
+			-- more detailed landflag test map
+			------ GIRDER LIST ------
+			PlaceSprite(396, 665, sprAmGirder, 1,0)
+			PlaceSprite(619, 665, sprAmGirder, 3,0)
+			PlaceSprite(696, 635, sprAmGirder, 0,0)
+			PlaceSprite(319, 637, sprAmGirder, 0,0)
+			PlaceSprite(268, 604, sprAmGirder, 2,0)
+			PlaceSprite(746, 603, sprAmGirder, 2,0)
+			PlaceSprite(325, 495, sprAmGirder, 7,0)
+			PlaceSprite(689, 493, sprAmGirder, 5,0)
+			PlaceSprite(504, 422, sprAmGirder, 6,0)
+			PlaceSprite(595, 422, sprAmGirder, 4,0)
+			PlaceSprite(412, 422, sprAmGirder, 4,0)
+			PlaceSprite(320, 696, sprAmGirder, 4,0)
+			PlaceSprite(249, 786, sprAmGirder, 6,0)
+			PlaceSprite(249, 948, sprAmGirder, 6,0)
+			PlaceSprite(191, 785, sprAmGirder, 6,0)
+			PlaceSprite(191, 946, sprAmGirder, 6,0)
+			PlaceSprite(191, 1107, sprAmGirder, 6,0)
+			PlaceSprite(249, 1109, sprAmGirder, 6,0)
+			PlaceSprite(130, 1251, sprAmGirder, 7,0)
+			PlaceSprite(306, 1251, sprAmGirder, 5,0)
+			PlaceSprite(72, 1360, sprAmGirder, 2,0)
+			PlaceSprite(364, 1360, sprAmGirder, 2,0)
+			PlaceSprite(132, 1462, sprAmGirder, 5,0)
+			PlaceSprite(304, 1463, sprAmGirder, 7,0)
+			PlaceSprite(182, 1616, sprAmGirder, 6,0)
+			PlaceSprite(255, 1613, sprAmGirder, 6,0)
+			PlaceSprite(217, 1796, sprAmGirder, 4,0)
+			PlaceSprite(221, 1381, sprAmGirder, 0,0)--
+			PlaceSprite(154, 669, sprAmGirder, 1,0)
+			PlaceSprite(124, 553, sprAmGirder, 6,0)
+			PlaceSprite(326, 467, sprAmGirder, 3,0)
+			PlaceSprite(223, 592, sprAmGirder, 3,0)
+
+			PlaceSprite(638, 791, sprAmGirder, 5,0)
+			PlaceSprite(752, 907, sprAmGirder, 5,0)
+			PlaceSprite(866, 1022, sprAmGirder, 5,0)
+			PlaceSprite(402, 1863, sprAmGirder, 18,2048)
+			PlaceSprite(442, 1863, sprAmGirder, 22,2048)
+			PlaceSprite(2067, 1945, sprAmGirder, 15,16384)
+			PlaceSprite(2005, 1797, sprAmGirder, 14,16384)
+			PlaceSprite(1943, 1653, sprAmGirder, 15,16384)
+			PlaceSprite(1999, 1504, sprAmGirder, 16,16384)
+			PlaceSprite(2143, 1445, sprAmGirder, 13,16384)
+			PlaceSprite(2288, 1503, sprAmGirder, 14,16384)
+			PlaceSprite(2432, 1565, sprAmGirder, 13,16384)
+			PlaceSprite(2593, 1565, sprAmGirder, 13,16384)
+			PlaceSprite(2752, 1565, sprAmGirder, 13,16384)
+			PlaceSprite(2206, 1949, sprAmGirder, 15,16384)
+			PlaceSprite(2262, 1800, sprAmGirder, 16,16384)
+			PlaceSprite(2407, 1745, sprAmGirder, 13,16384)
+			PlaceSprite(2569, 1745, sprAmGirder, 13,16384)
+			PlaceSprite(2715, 1802, sprAmGirder, 14,16384)
+			PlaceSprite(2898, 1624, sprAmGirder, 14,16384)
+			PlaceSprite(3014, 1740, sprAmGirder, 14,16384)
+			PlaceSprite(2830, 1919, sprAmGirder, 14,16384)
+			PlaceSprite(3131, 1856, sprAmGirder, 14,16384)
+			PlaceSprite(3191, 1968, sprAmGirder, 11,16384)
+			PlaceSprite(3264, 2021, sprAmGirder, 13,16384)
+			PlaceSprite(2840, 2006, sprAmGirder, 12,16384)
+			PlaceSprite(1505, 395, sprAmGirder, 7,0)
+			PlaceSprite(1445, 544, sprAmGirder, 6,0)
+			PlaceSprite(1506, 686, sprAmGirder, 5,0)
+			PlaceSprite(1650, 339, sprAmGirder, 4,0)
+			PlaceSprite(1797, 397, sprAmGirder, 5,0)
+			PlaceSprite(1857, 547, sprAmGirder, 6,0)
+			PlaceSprite(1797, 688, sprAmGirder, 7,0)
+			PlaceSprite(1652, 754, sprAmGirder, 4,0)
+			PlaceSprite(3326, 863, sprAmGirder, 4,0)
+			PlaceSprite(3474, 921, sprAmGirder, 5,0)
+			PlaceSprite(3180, 921, sprAmGirder, 7,0)
+			PlaceSprite(3120, 1071, sprAmGirder, 6,0)
+			PlaceSprite(3183, 1214, sprAmGirder, 5,0)
+			PlaceSprite(3536, 1071, sprAmGirder, 6,0)
+			PlaceSprite(3480, 1214, sprAmGirder, 7,0)
+			PlaceSprite(3330, 1279, sprAmGirder, 4,0)
+			PlaceSprite(2502, 556, sprAmGirder, 16,16384)
+			PlaceSprite(2601, 634, sprAmGirder, 16,16384)
+			PlaceSprite(2616, 441, sprAmGirder, 16,16384)
+			PlaceSprite(2716, 519, sprAmGirder, 16,16384)
+			PlaceSprite(2756, 379, sprAmGirder, 13,16384)
+			PlaceSprite(2862, 466, sprAmGirder, 13,16384)
+			PlaceSprite(2918, 379, sprAmGirder, 13,16384)
+			PlaceSprite(3023, 467, sprAmGirder, 13,16384)
+			PlaceSprite(3080, 378, sprAmGirder, 13,16384)
+			PlaceSprite(3172, 527, sprAmGirder, 14,16384)
+			PlaceSprite(3232, 428, sprAmGirder, 14,16384)
+			PlaceSprite(3289, 647, sprAmGirder, 14,16384)
+			PlaceSprite(3350, 545, sprAmGirder, 14,16384)
+			PlaceSprite(3406, 764, sprAmGirder, 14,16384)
+			PlaceSprite(3469, 556, sprAmGirder, 16,16384)
+			PlaceSprite(3616, 503, sprAmGirder, 13,16384)
+			PlaceSprite(3552, 828, sprAmGirder, 13,16384)
+			PlaceSprite(3696, 763, sprAmGirder, 16,16384)
+			PlaceSprite(3708, 575, sprAmGirder, 15,16384)
+			PlaceSprite(3705, 680, sprAmGirder, 10,16384)
+
+			PlaceSprite(1481, 1133, sprAmGirder, 7,0)
+			PlaceSprite(1626, 1078, sprAmGirder, 4,0)
+			PlaceSprite(1772, 1135, sprAmGirder, 5,0)
+			PlaceSprite(1422, 1280, sprAmGirder, 6,0)
+			PlaceSprite(1831, 1286, sprAmGirder, 6,0)
+			PlaceSprite(1773, 1429, sprAmGirder, 7,0)
+			PlaceSprite(1627, 1492, sprAmGirder, 4,0)
+			PlaceSprite(1482, 1427, sprAmGirder, 5,0)
+			PlaceSprite(587, 855, sprAmGirder, 4,0)
+			PlaceSprite(425, 855, sprAmGirder, 4,0)
+			PlaceSprite(302, 822, sprAmGirder, 1,0)
+
+			------ RUBBER BAND LIST ------
+			PlaceSprite(505, 708, sprAmRubber, 0, lfBouncy)
+			PlaceSprite(175, 451, sprAmRubber, 0, lfBouncy)
+			PlaceSprite(822, 1693, sprAmRubber, 0, lfBouncy)
+			PlaceSprite(982, 1691, sprAmRubber, 0, lfBouncy)
+			PlaceSprite(1142, 1688, sprAmRubber, 0, lfBouncy)
+			PlaceSprite(1302, 1684, sprAmRubber, 0, lfBouncy)
+			PlaceSprite(1450, 1750, sprAmRubber, 1, lfBouncy)
+			PlaceSprite(1566, 1860, sprAmRubber, 1, lfBouncy)
+			PlaceSprite(1680, 1973, sprAmRubber, 1, lfBouncy)
+
+			------ AMMO CRATE LIST ------
+			tempG = SpawnAmmoCrate(324, 613, amFirePunch)
+			tempG = SpawnAmmoCrate(2361, 1721, amBazooka)
+			tempG = SpawnAmmoCrate(2430, 1721, amBazooka)
+			tempG = SpawnAmmoCrate(2510, 1721, amBazooka)
+			tempG = SpawnAmmoCrate(2581, 1721, amBazooka)
+			tempG = SpawnAmmoCrate(405, 1839, amSineGun)
+			tempG = SpawnAmmoCrate(481, 1839, amSineGun)
+
+			------ UTILITY CRATE LIST ------
+			tempG = SpawnUtilityCrate(696, 611, amParachute)
+			tempG = SpawnUtilityCrate(825, 1664, amJetpack)
+			tempG = SpawnUtilityCrate(919, 1657, amJetpack)
+			tempG = SpawnUtilityCrate(1015, 1662, amJetpack)
+			tempG = SpawnUtilityCrate(1095, 1654, amJetpack)
+			tempG = SpawnUtilityCrate(1166, 1659, amJetpack)
+			tempG = SpawnUtilityCrate(1250, 1650, amJetpack)
+			tempG = SpawnUtilityCrate(1335, 1655, amJetpack)
+
+			------ MINE LIST ------
+			SetTimer(AddGear(221, 1373, gtMine, 0, 0, 0, 0), 1)
+			SetTimer(AddGear(609, 661, gtMine, 0, 0, 0, 0), 3000)
+
+			------ STICKY MINE LIST ------
+			tempG = AddGear(190, 756, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(191, 810, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(189, 868, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(190, 923, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(192, 984, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(192, 1045, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(189, 1097, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(192, 1159, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(248, 753, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(248, 808, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(249, 868, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(250, 921, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(246, 982, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(247, 1041, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(249, 1094, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(249, 1156, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2571, 665, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2614, 623, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2658, 580, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2704, 533, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2751, 484, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2830, 466, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2912, 465, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2992, 465, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(3072, 468, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2465, 592, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2518, 540, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2580, 477, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2635, 425, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2713, 381, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2796, 378, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2892, 379, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(2988, 379, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(3061, 377, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(3136, 377, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(627, 770, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(661, 804, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(705, 850, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(754, 899, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(805, 950, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(850, 996, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(902, 1048, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(888, 1034, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(788, 933, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(839, 985, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(736, 881, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(686, 829, gtSMine, 0, 0, 0, 0)
+			tempG = AddGear(649, 792, gtSMine, 0, 0, 0, 0)
+
 		else
 
 
@@ -904,7 +1092,6 @@
 
 			------ AMMO CRATE LIST ------
 			tempG = SpawnAmmoCrate(889, 1126, amBaseballBat)
-
 			tempG = SpawnAmmoCrate(1211, 975, amSineGun)
 			tempG = SpawnAmmoCrate(3619, 451, amFirePunch)
 
@@ -1103,32 +1290,6 @@
 	mapID = params["m"]
 end
 
-PointsBuffer = ''  -- A string to accumulate points in
-
-function AddPoint(x, y, width, erase)
- PointsBuffer = PointsBuffer .. string.char(band(x,0xff00) / 256 , band(x,0xff) , band(y,0xff00) / 256 , band(y,0xff))
- if width then
-     width = bor(width,0x80)
-     if erase then
-         width = bor(width,0x40)
-     end
-     PointsBuffer = PointsBuffer .. string.char(width)
- else
-     PointsBuffer = PointsBuffer .. string.char(0)
- end
- if #PointsBuffer > 245 then
-     ParseCommand('draw '..PointsBuffer)
-     PointsBuffer = ''
- end
-end
-
-function FlushPoints()
- if #PointsBuffer > 0 then
-     ParseCommand('draw '..PointsBuffer)
-     PointsBuffer = ''
- end
-end
-
 function onPreviewInit()
 	onGameInit()
 end
--- a/share/hedgewars/Data/Scripts/Multiplayer/Tunnels.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Tunnels.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,26 +1,3 @@
- PointsBuffer = ''  -- A string to accumulate points in
- function AddPoint(x, y, width, erase)
-     PointsBuffer = PointsBuffer .. string.char(band(x,0xff00) / 256 , band(x,0xff) , band(y,0xff00) / 256 , band(y,0xff))
-     if width then
-         width = bor(width,0x80)
-         if erase then
-             width = bor(width,0x40)
-         end
-         PointsBuffer = PointsBuffer .. string.char(width)
-     else
-         PointsBuffer = PointsBuffer .. string.char(0)
-     end
-     if #PointsBuffer > 245 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
- function FlushPoints()
-     if #PointsBuffer > 0 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
 
 function onPreviewInit()
 onGameInit()
--- a/share/hedgewars/Data/Scripts/Multiplayer/WxW.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Scripts/Multiplayer/WxW.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -77,8 +77,6 @@
 --local margin
 local wallsLeft = 0
 
-local highestY = 0
-local surferTimer = 0
 local hasSurfed = false
 local allWallsHit = false
 
@@ -356,25 +354,14 @@
 
 end
 
-function CheckSurfer()
-
-	if GetY(CurrentHedgehog) > highestY then
-		highestY = GetY(CurrentHedgehog)
+function onGearWaterSkip(gear)
+	if gear == CurrentHedgehog then
+		hasSurfed = true
+		AddCaption(loc("Surfer!"),0xffba00ff,capgrpMessage2)
 	end
-
-	if (highestY == (WaterLine-8)) and (hasSurfed == false)  then
-
-		surferTimer = surferTimer +1
-		if (surferTimer == 40) then
-			hasSurfed = true
-			AddCaption(loc("Surfer!"),0xffba00ff,capgrpMessage2)
-		end
-	end
-
 end
 
 
-
 function WallHit(id, zXMin,zYMin, zWidth, zHeight)
 
 	if wTouched[id] == false then
@@ -588,10 +575,8 @@
 
 	allowCrate = true
 
-	surferTimer = 0
 	hasSurfed = false
 	allWallsHit = false
-	highestY = 0
 
 	crateG = nil
 
@@ -650,8 +635,6 @@
 		--AddCaption(Map)
 		--AddCaption(RightX ..";" .. GetX(CurrentHedgehog))
 
-		CheckSurfer()
-
 		gTimer = gTimer + 1
 		if gTimer == 25 then
 			gTimer = 1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Scripts/TargetPractice.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,260 @@
+--[=[
+Target Practice Mission Framework for Hedgewars
+
+This is a simple library intended to make setting up simple training missions a trivial
+task requiring just. The library has been created to reduce redundancy in Lua scripts.
+
+The training framework generates complete and fully usable training missions by just
+one function call.
+
+The missions generated by this script are all the same:
+- The player will get a team with a single hedgehog.
+- The team gets a single predefined weapon infinitely times.
+- A fixed sequence of targets will spawn at predefined positions.
+- When a target has been destroyed, the next target of the target sequence appears
+- The mission ends successfully when all targets have been destroyed
+- The mission ends unsuccessfully when the time runs out or the hedgehog dies
+- When the mission ends, a score is awarded, based on the performance (hit targets,
+  accuracy and remaining time) of the hedgehog. When not all targets are hit, there
+  will be no accuracy and time bonuses.
+
+To use this library, you first have to load it and to call TrainingMission once with
+the appropriate parameters. Really, that’s all!
+See the comment of TrainingMission for a specification of all parameters.
+
+Below is a template for your convenience, you just have to fill in the fields and delete
+optional arguments you don’t want.
+----- snip -----
+HedgewarsScriptLoad("/Scripts/Training.lua")
+params = {
+	missionTitle = ,
+	map = ,
+	theme = ,
+	time = ,
+	ammoType = ,
+	gearType = ,
+	targets = {
+		{ x = , y = },
+		{ x = , y = },
+		-- etc.
+	},
+
+	wind = ,
+	solidLand = ,
+	artillery = ,
+	hogHat = ,
+	hogName = ,
+	teamName = ,
+	teamGrave = ,
+	clanColor = ,
+	goalText = ,
+	shootText =
+}
+TargetPracticeMission(params)
+----- snip -----
+]=]
+
+HedgewarsScriptLoad("/Scripts/Locale.lua")
+
+local player = nil
+local scored = 0
+local shots = 0
+local end_timer = 1000
+local game_lost = false
+local time_goal = 0
+local total_targets
+local targets
+
+--[[
+TrainingMission(params)
+
+This function sets up the *entire* training mission and needs one argument: params.
+The argument “params” is a table containing fields which describe the training mission.
+	mandatory fields:
+	- missionTitle:	the name of the mission
+	- map:		the name map to be used
+	- theme:	the name of the theme (does not need to be a standalone theme)
+	- time:		the time limit in milliseconds
+	- ammoType:	the ammo type of the weapon to be used
+	- gearType:	the gear type of the gear which is fired (used to count shots)
+	- targets:	The coordinates of where the targets will be spawned.
+			It is a table containing tables containing coordinates of format
+			{ x=value, y=value }. The targets will be spawned in the same
+			order as specified the coordinate tables appear. Example:
+				targets = {
+					{ x = 324, y = 43 },
+					{ x = 123, y = 56 },
+					{ x = 6, y = 0 },
+				}
+			There must be at least 1 target.
+
+	optional fields:
+	- wind:		the initial wind (-100 to 100) (default: 0 (no wind))
+	- solidLand:	weather the terrain is indestructible (default: false)
+	- artillery:	if true, the hog can’t move (default: false)
+	- hogHat:	hat of the hedgehog (default: "NoHat")
+	- hogName:	name of the hedgehog (default: "Trainee")
+	- teamName:	name of the hedgehog’s team (default: "Training Team")
+	- teamGrave:	name of the hedgehog’s grave
+	- clanColor:	color of the (only) clan (default: 0xFF0204, which is a red tone)
+	- goalText:	A short string explaining the goal of the mission
+			(default: "Destroy all targets within the time!")
+	- shootText:	A string which says how many times the player shot, “%d” is replaced
+			by the number of shots. (default: "You have shot %d times.")
+]]
+function TargetPracticeMission(params)
+	if params.hogHat == nil then params.hogHat = "NoHat" end
+	if params.hogName == nil then params.hogName = loc("Trainee") end
+	if params.teamName == nil then params.teamName = loc("Training Team") end
+	if params.goalText == nil then params.goalText = loc("Eliminate all targets before your time runs out.|You have unlimited ammo for this mission.") end
+	if params.shootText == nil then params.shootText = loc("You have shot %d times.") end
+	if params.clanColor == nil then params.clanColor = 0xFF0204 end
+	if params.teamGrave == nil then params.teamGrave= "Statue" end
+	if params.wind == nil then params.wind = 0 end
+
+	local solid, artillery
+	if params.solidLand == true then solid = gfSolidLand else solid = 0 end
+	if params.artillery == true then artillery = gfArtillery else artillery = 0 end
+
+	targets = params.targets
+
+	total_targets = #targets
+
+	_G.onAmmoStoreInit = function()
+		SetAmmo(params.ammoType, 9, 0, 0, 0)
+	end
+
+	_G.onGameInit = function()
+		Seed = 1
+		GameFlags = gfDisableWind + gfInfAttack + gfOneClanMode + solid + artillery
+		TurnTime = params.time
+		Map = params.map
+		Theme = params.theme
+		Goals = params.goalText
+		CaseFreq = 0
+		MinesNum = 0
+		Explosives = 0
+
+		SetWind(params.wind)
+
+		AddTeam(loc(params.teamName), params.clanColor, params.teamGrave, "Island", "Default", "Flowerhog")
+
+		player = AddHog(loc(params.hogName), 0, 1, params.hogHat)
+		SetGearPosition(player, params.hog_x, params.hog_y)
+	end
+
+	_G.onGameStart = function()
+		SendHealthStatsOff()
+		ShowMission(params.missionTitle, loc("Aiming practice"), params.goalText, -params.ammoType, 5000)
+		spawnTarget()
+	end
+
+	_G.onNewTurn = function()
+		-- TODO: Remove the else branch when 0.9.21 has been released
+		if SetWeapon ~= nil then
+			SetWeapon(params.ammoType)
+		else
+			ParseCommand("/setweap "..string.char(params.ammoType))
+		end
+	end
+
+	_G.spawnTarget = function()
+		gear = AddGear(0, 0, gtTarget, 0, 0, 0, 0)
+
+		x = targets[scored+1].x
+		y = targets[scored+1].y
+
+		SetGearPosition(gear, x, y)
+	end
+
+	_G.onGameTick20 = function()
+		if TurnTimeLeft < 40 and TurnTimeLeft > 0 and scored < total_targets and game_lost == false then
+			game_lost = true
+			AddCaption(loc("Time’s up!"), 0xFFFFFFFF, capgrpGameState)
+			ShowMission(params.missionTitle, loc("Aiming practice"), loc("Oh no! Time's up! Just try again."), -amSkip, 0)
+			SetHealth(player, 0)
+			time_goal = 1
+		end
+
+		if band(GetState(player), gstDrowning) == gstDrowning and game_lost == false and scored < total_targets then
+			game_lost = true
+			time_goal = 1
+			AddCaption(loc("You lose!"), 0xFFFFFFFF, capgrpGameState)
+			ShowMission(params.missionTitle, loc("Aiming practice"), loc("Oh no! You failed! Just try again."), -amSkip, 0)
+		end
+
+		if scored == total_targets  or game_lost then
+			if end_timer == 0 then
+				generateStats()
+				EndGame()
+			else
+				TurnTimeLeft = time_goal
+			end
+	        end_timer = end_timer - 20
+		end
+	end
+
+	_G.onGearAdd = function(gear)
+		if GetGearType(gear) == params.gearType then
+			shots = shots + 1
+		end
+	end
+
+	_G.onGearDamage = function(gear, damage)
+		if GetGearType(gear) == gtTarget then
+			scored = scored + 1
+			if scored < total_targets then
+				AddCaption(string.format(loc("Targets left: %d"), (total_targets-scored)), 0xFFFFFFFF, capgrpMessage)
+				spawnTarget()
+			else
+				if not game_lost then
+					AddCaption(loc("You have destroyed all targets!"), 0xFFFFFFFF, capgrpGameState)
+					ShowMission(params.missionTitle, loc("Aiming practice"), loc("Congratulations! You have destroyed all targets within the time."), 0, 0)
+					PlaySound(sndVictory, player)
+					SetState(player, bor(GetState(player), gstWinner))
+					time_goal = TurnTimeLeft
+				end
+			end
+		end
+
+		if GetGearType(gear) == gtHedgehog then
+			if not game_lost then
+				game_lost = true
+				AddCaption(loc("You lose!", 0xFFFFFFFF, capgrpGameState))
+				ShowMission(params.missionTitle, loc("Aiming practice"), loc("Oh no! You failed! Just try again."), -amSkip, 0)
+
+				SetHealth(player, 0)
+				time_goal = 1
+			end
+		end
+	end
+
+	_G.generateStats = function()
+		local accuracy = (scored/shots)*100
+		local end_score_targets = scored * math.ceil(6000/#targets)
+		local end_score_overall
+		if not game_lost then
+			local end_score_time = math.ceil(time_goal/(params.time/6000))
+			local end_score_accuracy = math.ceil(accuracy * 60)
+			end_score_overall = end_score_time + end_score_targets + end_score_accuracy
+
+			SendStat(siGameResult, loc("You have finished the target practice!"))
+
+			SendStat(siCustomAchievement, string.format(loc("You have destroyed %d of %d targets (+%d points)."), scored, total_targets, end_score_targets))
+			SendStat(siCustomAchievement, string.format(params.shootText, shots))
+			SendStat(siCustomAchievement, string.format(loc("Your accuracy was %.1f%% (+%d points)."), accuracy, end_score_accuracy))
+			SendStat(siCustomAchievement, string.format(loc("You had %.1fs remaining on the clock (+%d points)."), (time_goal/1000), end_score_time))
+		else
+			SendStat(siGameResult, loc("You lose!"))
+
+			SendStat(siCustomAchievement, string.format(loc("You have destroyed %d of %d targets (+%d points)."), scored, total_targets, end_score_targets))
+			SendStat(siCustomAchievement, string.format(params.shootText, shots))
+			if(shots > 0) then
+				SendStat(siCustomAchievement, string.format(loc("Your accuracy was %.1f%%."), accuracy))
+			end
+			end_score_overall = end_score_targets
+		end
+		SendStat(siPlayerKills, tostring(end_score_overall), loc(params.teamName))
+		SendStat(siPointType, loc("points"))
+	end
+end
--- a/share/hedgewars/Data/Themes/Beach/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Beach/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -15,4 +15,4 @@
 spray = SprayObject29, 3
 spray = SprayObject36, 2
 spray = SprayObject4, 1
-flakes = 20, 1, 99999999, 0, 10
+flakes = 20, 1, 0, 0, 10
--- a/share/hedgewars/Data/Themes/CMakeLists.txt	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/CMakeLists.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -21,6 +21,7 @@
     Golf
     Halloween
     Hell
+    Hoggywood
     Island
     Jungle
     Nature
Binary file share/hedgewars/Data/Themes/Cake/CandyCane.png has changed
Binary file share/hedgewars/Data/Themes/Cake/Cherry.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Cherry.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,311 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="250"
+   height="250"
+   sodipodi:docname="Cherry.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Cherry.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8252">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8254" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8256" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8252"
+       id="linearGradient8275"
+       gradientUnits="userSpaceOnUse"
+       x1="427.62885"
+       y1="204.98993"
+       x2="426.23254"
+       y2="268.66971" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8252-1"
+       id="linearGradient8275-6"
+       gradientUnits="userSpaceOnUse"
+       x1="427.62885"
+       y1="204.98993"
+       x2="426.23254"
+       y2="268.66971" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8252-1">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8254-6" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8256-2" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8252-1"
+       id="linearGradient8515"
+       gradientUnits="userSpaceOnUse"
+       x1="427.62885"
+       y1="204.98993"
+       x2="426.23254"
+       y2="268.66971" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8252"
+       id="linearGradient8517"
+       gradientUnits="userSpaceOnUse"
+       x1="427.62885"
+       y1="204.98993"
+       x2="426.23254"
+       y2="268.66971" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8252-1"
+       id="linearGradient3052"
+       gradientUnits="userSpaceOnUse"
+       x1="427.62885"
+       y1="204.98993"
+       x2="426.23254"
+       y2="268.66971" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8252"
+       id="linearGradient3054"
+       gradientUnits="userSpaceOnUse"
+       x1="427.62885"
+       y1="204.98993"
+       x2="426.23254"
+       y2="268.66971" />
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:zoom="1.0806021"
+     inkscape:cx="149.89429"
+     inkscape:cy="125.74149"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <g
+     id="g8452"
+     transform="matrix(0.72101463,0,0,0.75429249,16.473561,54.411294)"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Cherry.png"
+     inkscape:export-xdpi="90"
+     inkscape:export-ydpi="90">
+    <g
+       style="fill:#2b1100"
+       transform="matrix(1.0271546,0,0,1.0134883,-38.167835,-2.1432386)"
+       id="g8440">
+      <g
+         transform="translate(36.806356,6.6987343)"
+         id="g8328-9"
+         style="fill:#2b1100;stroke:none">
+        <path
+           sodipodi:nodetypes="ccccscccsccssccscc"
+           inkscape:connector-curvature="0"
+           id="path8198-3"
+           d="m 95.079019,155.31595 c -0.81084,-0.56793 -1.47426,-1.61268 -1.47426,-2.32165 -8.686225,-12.25685 -2.97994,-44.53973 11.276631,-66.295501 23.04038,-41.363086 34.90329,-59.362407 52.40315,-80.8672333 0,-0.789521 0.96845,-6.9663334 1.90258,-5.79740376 1.62051,2.02775046 4.67978,31.52871506 3.41193,36.69126706 -0.97855,2.938667 -2.29359,30.101286 -2.29092,47.320046 1.06061,24.013215 1.98279,37.973305 10.24299,58.905925 0,1.4538 -1.97715,3.4472 -3.41909,3.4472 -1.29033,0 -3.87755,-2.76314 -3.87755,-4.14119 -6.30398,-12.7556 -7.89374,-27.68637 -8.57163,-41.297 -0.7349,-15.090058 1.49015,-65.405474 2.63924,-68.925239 0.97342,-2.981682 0.32885,-14.986129 -0.55192,-14.986129 -0.39762,0 -0.91241,0.596998 -1.144,1.326663 -26.51904,45.013151 -73.263766,94.304055 -57.0465,130.676215 1.16444,0 3.92112,4.22079 2.96164,6.01359 -0.85146,1.59098 -4.35466,1.72675 -6.462371,0.25044 z"
+           style="fill:#2b1100;fill-opacity:1;stroke:none" />
+        <g
+           transform="translate(-260.1692,-20.787228)"
+           id="g8266-6-0"
+           style="fill:#2b1100;stroke:none">
+          <g
+             transform="translate(146.3651,15.832825)"
+             id="g8204-2-3-1"
+             style="fill:#2b1100;stroke:none">
+            <path
+               transform="matrix(1.0359105,0,0,0.99125908,95.314222,-2.4256205)"
+               d="m 226.12777,197.43155 c 0,26.72857 -20.73382,48.39635 -46.3103,48.39635 -25.57647,0 -46.31029,-21.66778 -46.31029,-48.39635 0,-26.72857 20.73382,-48.39635 46.31029,-48.39635 25.57648,0 46.3103,21.66778 46.3103,48.39635 z"
+               sodipodi:ry="48.396351"
+               sodipodi:rx="46.310299"
+               sodipodi:cy="197.43155"
+               sodipodi:cx="179.81747"
+               id="path7404-6-2-5-3"
+               style="fill:#2b1100;fill-opacity:1;stroke:none"
+               sodipodi:type="arc" />
+            <path
+               sodipodi:nodetypes="cscccssc"
+               inkscape:connector-curvature="0"
+               id="path8200-7-0-6"
+               d="m 249.52909,183.97216 c -2.21011,-8.40204 -0.72441,-18.73246 5.21989,-23.63279 11.52924,-9.50441 34.6493,-8.29738 43.79512,-1.0594 1.09359,1.09359 0.36815,2.17799 -1.45704,2.17799 -21.24091,-0.12711 -28.81853,12.12814 -45.2196,22.04515 -0.2542,0 -0.46219,0.42215 -0.46219,0.9381 0,0.62539 -0.31269,0.93809 -0.93809,0.93809 -0.72962,0 -0.93809,-0.3127 -0.93809,-1.40714 z"
+               style="fill:#2b1100;fill-opacity:1;stroke:none" />
+          </g>
+        </g>
+        <g
+           transform="translate(-336.95413,-9.7447695)"
+           id="g8266-1"
+           style="fill:#2b1100;stroke:none">
+          <g
+             transform="translate(146.3651,15.832825)"
+             id="g8204-2-7"
+             style="fill:#2b1100;stroke:none">
+            <path
+               transform="matrix(1.0359105,0,0,0.99125908,95.314222,-2.4256205)"
+               d="m 226.12777,197.43155 c 0,26.72857 -20.73382,48.39635 -46.3103,48.39635 -25.57647,0 -46.31029,-21.66778 -46.31029,-48.39635 0,-26.72857 20.73382,-48.39635 46.31029,-48.39635 25.57648,0 46.3103,21.66778 46.3103,48.39635 z"
+               sodipodi:ry="48.396351"
+               sodipodi:rx="46.310299"
+               sodipodi:cy="197.43155"
+               sodipodi:cx="179.81747"
+               id="path7404-6-2-1"
+               style="fill:#2b1100;fill-opacity:1;stroke:none"
+               sodipodi:type="arc" />
+            <path
+               sodipodi:nodetypes="cscccssc"
+               inkscape:connector-curvature="0"
+               id="path8200-7-5"
+               d="m 249.52909,183.97216 c -2.21011,-8.40204 -0.72441,-18.73246 5.21989,-23.63279 11.52924,-9.50441 34.6493,-8.29738 43.79512,-1.0594 1.09359,1.09359 0.36815,2.17799 -1.45704,2.17799 -21.24091,-0.12711 -28.81853,12.12814 -45.2196,22.04515 -0.2542,0 -0.46219,0.42215 -0.46219,0.9381 0,0.62539 -0.31269,0.93809 -0.93809,0.93809 -0.72962,0 -0.93809,-0.3127 -0.93809,-1.40714 z"
+               style="fill:#2b1100;fill-opacity:1;stroke:none" />
+          </g>
+        </g>
+      </g>
+    </g>
+    <g
+       id="g8328">
+      <path
+         style="fill:#502d16;fill-opacity:1;stroke:#28170b"
+         d="m 95.079019,155.31595 c -0.81084,-0.56793 -1.47426,-1.61268 -1.47426,-2.32165 -8.686225,-12.25685 -2.97994,-44.53973 11.276631,-66.295501 23.04038,-41.363086 34.90329,-59.362407 52.40315,-80.8672333 0,-0.789521 3.87453,-2.7120646 4.8087,-1.543135 1.62051,2.0277505 1.7737,27.2744463 0.50585,32.4369983 -0.97855,2.938667 -2.29359,30.101286 -2.29092,47.320046 1.06061,24.013215 1.98279,37.973305 10.24299,58.905925 0,1.4538 -1.97715,3.4472 -3.41909,3.4472 -1.29033,0 -3.87755,-2.76314 -3.87755,-4.14119 -6.30398,-12.7556 -7.89374,-27.68637 -8.57163,-41.297 -0.7349,-15.090058 1.49015,-65.405474 2.63924,-68.925239 0.97342,-2.981682 0.32885,-14.986129 -0.55192,-14.986129 -0.39762,0 -0.91241,0.596998 -1.144,1.326663 -26.51904,45.013151 -73.263766,94.304055 -57.0465,130.676215 1.16444,0 3.92112,4.22079 2.96164,6.01359 -0.85146,1.59098 -4.35466,1.72675 -6.462371,0.25044 z"
+         id="path8198"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccscccsccssccscc" />
+      <g
+         id="g8266-6"
+         transform="translate(-260.1692,-20.787228)">
+        <g
+           id="g8204-2-3"
+           transform="translate(146.3651,15.832825)">
+          <path
+             sodipodi:type="arc"
+             style="fill:#990000;fill-opacity:1;stroke:#660000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path7404-6-2-5"
+             sodipodi:cx="179.81747"
+             sodipodi:cy="197.43155"
+             sodipodi:rx="46.310299"
+             sodipodi:ry="48.396351"
+             d="m 226.12777,197.43155 c 0,26.72857 -20.73382,48.39635 -46.3103,48.39635 -25.57647,0 -46.31029,-21.66778 -46.31029,-48.39635 0,-26.72857 20.73382,-48.39635 46.31029,-48.39635 25.57648,0 46.3103,21.66778 46.3103,48.39635 z"
+             transform="matrix(1.0359105,0,0,0.99125908,95.314222,-2.4256205)" />
+          <path
+             style="fill:#ff0000;fill-opacity:1;stroke:none"
+             d="m 249.52909,183.97216 c -2.21011,-8.40204 -0.72441,-18.73246 5.21989,-23.63279 11.52924,-9.50441 34.6493,-8.29738 43.79512,-1.0594 1.09359,1.09359 0.36815,2.17799 -1.45704,2.17799 -21.24091,-0.12711 -28.81853,12.12814 -45.2196,22.04515 -0.2542,0 -0.46219,0.42215 -0.46219,0.9381 0,0.62539 -0.31269,0.93809 -0.93809,0.93809 -0.72962,0 -0.93809,-0.3127 -0.93809,-1.40714 z"
+             id="path8200-7-0"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cscccssc" />
+        </g>
+        <g
+           id="g8260-8">
+          <path
+             style="opacity:0.6;fill:#803300;fill-opacity:1;stroke:none"
+             d="m 420.73083,258.30217 c -25.85001,-3.60064 -44.8378,-27.6597 -42.25648,-53.54233 1.2172,-12.20473 11.67613,14.30051 20.08813,5.9429 12.50829,-12.42742 11.10841,-12.11494 28.23296,-7.74265 4.37738,1.11765 9.17117,13.78401 14.41869,15.06625 5.20965,1.27299 5.85818,-11.8567 10.50101,-12.97439 10.96313,-2.63921 11.84427,10.2811 15.49475,5.13803 4.62668,-6.51839 7.63182,-18.39656 8.87677,-13.52059 4.37229,17.12456 -0.47473,34.95555 -12.90215,47.46384 -8.10686,8.15963 -18.38207,13.09538 -29.94628,14.38486 -5.43411,0.60594 -6.77297,0.58283 -12.5074,-0.21592 z"
+             id="path8232-1"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssssssss" />
+          <path
+             style="opacity:0.30040002;fill:none;stroke:url(#linearGradient3052);stroke-width:0.98528695"
+             d="m 421.20103,258.03233 c -25.85383,-3.49495 -44.84443,-26.8478 -42.26273,-51.97069 1.21738,-11.84648 11.67786,13.88074 20.0911,5.76846 12.51014,-12.06264 11.11005,-11.75933 28.23714,-7.51538 4.37803,1.08484 9.17253,13.3794 14.42082,14.62401 5.21042,1.23562 5.85905,-11.50867 10.50257,-12.59355 10.96475,-2.56174 11.84602,9.97931 15.49704,4.98721 4.62736,-6.32705 7.63295,-17.85656 8.87808,-13.12372 4.37294,16.6219 -0.4748,33.92949 -12.90406,46.07062 -8.10806,7.92012 -18.38479,12.71099 -29.95071,13.96262 -5.43491,0.58815 -6.77397,0.56572 -12.50925,-0.20958 z"
+             id="path8232-0-5"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssssssss" />
+        </g>
+        <path
+           sodipodi:nodetypes="sccssssss"
+           inkscape:connector-curvature="0"
+           id="path8264-9"
+           d="m 423.84104,258.77802 c -5.99538,-0.51113 -13.2837,-2.53986 -18.34994,-5.10777 22.53424,-3.33287 36.46632,-4.83964 64.38567,-17.68296 -4.08366,6.34267 -9.63878,11.78351 -16.3795,15.93763 -1.38343,0.85257 -2.60144,1.55012 -2.70668,1.55012 -0.10524,0 -1.28671,0.50002 -2.62549,1.11115 -3.69785,1.688 -7.6922,2.98094 -10.42042,3.37299 -0.71519,0.10277 -2.0466,0.31946 -2.95868,0.48154 -2.58957,0.46016 -7.66803,0.61666 -10.94496,0.3373 z"
+           style="opacity:0.30040002;fill:#1a1a1a;stroke:none" />
+      </g>
+      <g
+         id="g8266"
+         transform="translate(-336.95413,-9.7447695)">
+        <g
+           id="g8204-2"
+           transform="translate(146.3651,15.832825)">
+          <path
+             sodipodi:type="arc"
+             style="fill:#990000;fill-opacity:1;stroke:#660000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path7404-6-2"
+             sodipodi:cx="179.81747"
+             sodipodi:cy="197.43155"
+             sodipodi:rx="46.310299"
+             sodipodi:ry="48.396351"
+             d="m 226.12777,197.43155 c 0,26.72857 -20.73382,48.39635 -46.3103,48.39635 -25.57647,0 -46.31029,-21.66778 -46.31029,-48.39635 0,-26.72857 20.73382,-48.39635 46.31029,-48.39635 25.57648,0 46.3103,21.66778 46.3103,48.39635 z"
+             transform="matrix(1.0359105,0,0,0.99125908,95.314222,-2.4256205)" />
+          <path
+             style="fill:#ff0000;fill-opacity:1;stroke:none"
+             d="m 249.52909,183.97216 c -2.21011,-8.40204 -0.72441,-18.73246 5.21989,-23.63279 11.52924,-9.50441 34.6493,-8.29738 43.79512,-1.0594 1.09359,1.09359 0.36815,2.17799 -1.45704,2.17799 -21.24091,-0.12711 -28.81853,12.12814 -45.2196,22.04515 -0.2542,0 -0.46219,0.42215 -0.46219,0.9381 0,0.62539 -0.31269,0.93809 -0.93809,0.93809 -0.72962,0 -0.93809,-0.3127 -0.93809,-1.40714 z"
+             id="path8200-7"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cscccssc" />
+        </g>
+        <g
+           id="g8260">
+          <path
+             style="opacity:0.6;fill:#803300;fill-opacity:1;stroke:none"
+             d="m 420.73083,258.30217 c -25.85001,-3.60064 -44.8378,-27.6597 -42.25648,-53.54233 1.2172,-12.20473 11.67613,14.30051 20.08813,5.9429 12.50829,-12.42742 11.10841,-12.11494 28.23296,-7.74265 4.37738,1.11765 9.17117,13.78401 14.41869,15.06625 5.20965,1.27299 5.85818,-11.8567 10.50101,-12.97439 10.96313,-2.63921 11.84427,10.2811 15.49475,5.13803 4.62668,-6.51839 7.63182,-18.39656 8.87677,-13.52059 4.37229,17.12456 -0.47473,34.95555 -12.90215,47.46384 -8.10686,8.15963 -18.38207,13.09538 -29.94628,14.38486 -5.43411,0.60594 -6.77297,0.58283 -12.5074,-0.21592 z"
+             id="path8232"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssssssss" />
+          <path
+             style="opacity:0.30040002;fill:none;stroke:url(#linearGradient3054);stroke-width:0.98528695"
+             d="m 421.20103,258.03233 c -25.85383,-3.49495 -44.84443,-26.8478 -42.26273,-51.97069 1.21738,-11.84648 11.67786,13.88074 20.0911,5.76846 12.51014,-12.06264 11.11005,-11.75933 28.23714,-7.51538 4.37803,1.08484 9.17253,13.3794 14.42082,14.62401 5.21042,1.23562 5.85905,-11.50867 10.50257,-12.59355 10.96475,-2.56174 11.84602,9.97931 15.49704,4.98721 4.62736,-6.32705 7.63295,-17.85656 8.87808,-13.12372 4.37294,16.6219 -0.4748,33.92949 -12.90406,46.07062 -8.10806,7.92012 -18.38479,12.71099 -29.95071,13.96262 -5.43491,0.58815 -6.77397,0.56572 -12.50925,-0.20958 z"
+             id="path8232-0"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssssssss" />
+        </g>
+        <path
+           sodipodi:nodetypes="sccssssss"
+           inkscape:connector-curvature="0"
+           id="path8264"
+           d="m 423.84104,258.77802 c -5.99538,-0.51113 -13.2837,-2.53986 -18.34994,-5.10777 22.53424,-3.33287 36.46632,-4.83964 64.38567,-17.68296 -4.08366,6.34267 -9.63878,11.78351 -16.3795,15.93763 -1.38343,0.85257 -2.60144,1.55012 -2.70668,1.55012 -0.10524,0 -1.28671,0.50002 -2.62549,1.11115 -3.69785,1.688 -7.6922,2.98094 -10.42042,3.37299 -0.71519,0.10277 -2.0466,0.31946 -2.95868,0.48154 -2.58957,0.46016 -7.66803,0.61666 -10.94496,0.3373 z"
+           style="opacity:0.30040002;fill:#1a1a1a;stroke:none" />
+      </g>
+    </g>
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Chunk.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Chunk.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,12078 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="64"
+   height="64"
+   sodipodi:docname="Chunk.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Chunk.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 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="perspective2944"
+       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="perspective3743"
+       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="perspective3955"
+       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" />
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="2.6431885"
+     inkscape:cx="26.538497"
+     inkscape:cy="35.782493"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <a
+     id="a3730"
+     transform="translate(-3.7686999,6.6624196)" />
+  <g
+     id="g4892"
+     transform="matrix(0.59204105,0,0,0.55890333,-3.926455,-3.0414668)">
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6750"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,5.4927844,-19.94118)"
+       inkscape:tile-cx="8.6326225"
+       inkscape:tile-cy="77.277343"
+       inkscape:tile-w="3.559322"
+       inkscape:tile-h="3.559322"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6752"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,37.769195,-8.9160691)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6754"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.989156,-31.276024)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6756"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,19.793472,-3.7833042)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6758"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,1.9775318,-18.074156)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6760"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,13.082534,-3.1244966)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6762"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.599531,8.260734)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6764"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,36.660541,0.92049486)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6766"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,7.340138,-11.852406)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6768"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,7.0205696,-17.674695)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6770"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,19.803307,0.15107945)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6772"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,31.717066,-21.379237)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6774"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.609366,-25.84336)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6776"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,11.264686,-21.199783)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6778"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,33.714368,7.8108866)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6780"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,29.799655,-27.172021)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6782"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,38.038377,-28.090174)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6784"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,9.9163557,-24.405302)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6786"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,3.8445557,-5.4610379)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6788"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,14.150637,-10.724082)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6790"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,9.9962478,3.9859009)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6792"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,15.278962,-29.608124)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6794"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,21.430654,-17.614473)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6796"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,25.585044,-10.973594)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6798"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,31.89652,-17.11545)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6800"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,28.301375,-3.284281)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6802"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-1.6046223,-73.801082)"
+       inkscape:tile-cx="5.6568539"
+       inkscape:tile-cy="70.47267"
+       inkscape:tile-w="5.1774596"
+       inkscape:tile-h="4.9857021"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6804"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.137108,-56.12319)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6806"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.493131,-46.456245)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6808"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,23.848386,-54.445455)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6810"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,4.9444539,-53.48675)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6812"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-4.225113,-65.23089)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6814"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,22.813452,-80.410389)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6816"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,25.444352,-73.619561)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6818"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,2.0930025,-70.663553)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6820"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,7.0482557,-66.589056)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6822"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,13.181388,-75.696756)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6824"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-0.11496779,-65.23089)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6826"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,1.4147069,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6828"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-0.68951611,-47.175273)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6830"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,8.4397527,-71.622258)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6832"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,4.3903214,-73.539669)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6834"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,5.8354162,-65.470566)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6836"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,27.990971,-69.624956)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6838"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-1.7466408,-54.924808)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6840"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,14.404789,-75.936431)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6842"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,7.062717,-77.694058)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6844"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.588041,-72.580963)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6846"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.04104,-47.574734)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6848"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,6.0031524,-48.773116)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6850"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,10.266472,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6852"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,13.299052,-66.269487)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6854"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,12.890138,-77.694058)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6856"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,29.456989,-49.572037)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6858"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,12.920926,-69.385279)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6860"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,14.121195,-56.602542)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6862"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,6.0352146,-44.698618)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6864"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,16.365897,-81.848448)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6866"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.856971,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6868"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.732862,-76.335892)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6870"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.734684,-69.385279)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6872"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,26.854222,-60.357471)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6874"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,24.466516,-45.177971)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6876"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,11.616977,11.048336)"
+       inkscape:tile-cx="8.6326225"
+       inkscape:tile-cy="77.277343"
+       inkscape:tile-w="3.559322"
+       inkscape:tile-h="3.559322"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6878"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-10.286482,12.333957)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6880"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,0.48835711,22.209998)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6882"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.027625,19.981886)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6884"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,10.184431,15.382142)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6886"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,9.8373022,23.851454)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6888"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,4.248927,37.098067)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6890"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,5.1442519,15.384961)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6892"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,2.9514865,23.637956)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6894"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.312864,12.813619)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6896"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,14.153433,21.469012)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6898"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,6.9001443,16.942423)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6900"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,3.2744942,24.475618)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6902"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,8.8257827,17.176518)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6904"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.5243518,21.664959)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6906"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,5.2853533,20.093407)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6908"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,20.721473,15.909084)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6910"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.311938,0.2681281,0.21938196,9.1295417,17.643753)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6912"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-7.2305801,26.669526)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6914"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.8457138,17.516486)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6916"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.501698,28.213285)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6918"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.5367416,27.001311)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6920"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,7.2657681,32.866584)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6922"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,6.9908649,24.356796)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6924"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,15.339765,19.42172)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6926"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-2.0521775,9.830063)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6928"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-28.507197,9.8340693)"
+       inkscape:tile-cx="5.6568539"
+       inkscape:tile-cy="70.47267"
+       inkscape:tile-w="5.1774596"
+       inkscape:tile-h="4.9857021"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6930"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-27.276859,18.337888)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6932"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-11.102705,3.9567493)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6934"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-26.862052,25.261079)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6936"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.454782,9.1369476)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6938"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-17.603234,0.83967608)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6940"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-26.079777,3.6666196)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6942"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-37.323263,14.413488)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6944"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.059456,-5.7560055)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6946"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-27.19113,10.649867)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6948"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-16.044132,-1.3772023)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6950"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-33.036379,4.9660738)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6952"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-34.965049,17.286195)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6954"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-30.467159,5.9647984)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6956"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.935115,-2.6448068)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6958"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-7.8444449,0.59531571)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6960"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-13.984301,8.1609602)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6962"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.619563,4.5307651)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6964"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-32.59074,11.276142)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6966"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-25.117269,13.289796)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6968"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-8.0426543,3.4567446)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6970"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-21.144544,22.65733)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6972"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-35.271084,-1.5659075)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6974"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-10.557269,-2.6148919)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6976"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-29.657163,10.04932)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6978"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-24.822307,0.11698409)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6980"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-18.77263,-0.55695715)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6982"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.298854,4.9228084)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6984"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-28.250466,14.074906)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6986"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-11.884693,13.149875)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6988"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-36.746214,9.0799251)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6990"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-24.251765,-6.5481048)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6992"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-44.729236,10.851463)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6994"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.711585,17.737574)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <g
+       style="fill:#ffdd55;fill-opacity:1"
+       transform="matrix(0.21925838,-0.54261519,-0.41123581,-0.28930586,104.37348,85.74643)"
+       id="g7514">
+      <g
+         id="g4319">
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           inkscape:tile-h="3.559322"
+           inkscape:tile-w="3.559322"
+           inkscape:tile-cy="77.277343"
+           inkscape:tile-cx="8.6326225"
+           transform="matrix(0.5965909,0,0,0.5965909,-42.899596,108.06269)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7516"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-4.1645297,121.29398)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7518"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-21.902128,94.459697)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7520"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-25.737278,127.45383)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7522"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-47.118276,110.30332)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7524"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-33.791108,128.24447)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7526"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-22.369718,141.90794)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7528"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-5.4950297,133.09888)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7530"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-40.682586,117.77007)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7532"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-41.066096,110.78271)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7534"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-25.725478,132.1755)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7536"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-11.42772,106.33687)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7538"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-22.357918,100.97946)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7540"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-35.972718,106.55224)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7542"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-9.0307497,141.36807)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7544"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-13.72882,99.384927)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7546"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-3.8414897,98.283047)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7548"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-37.590858,102.70528)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7550"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-44.877646,125.44038)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7552"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-32.509278,119.12417)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7554"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-37.494978,136.77769)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7556"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-31.155168,96.461347)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7558"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-23.772488,110.85498)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7560"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-18.78679,118.82473)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7562"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-11.21236,111.45386)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7564"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-15.52691,128.05271)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7566"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           inkscape:tile-h="4.9857021"
+           inkscape:tile-w="5.1774596"
+           inkscape:tile-cy="70.47267"
+           inkscape:tile-cx="5.6568539"
+           transform="matrix(1.2272727,0,0,1.3684211,-51.417226,43.425174)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7568"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.925198,64.640497)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7570"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-26.097718,76.241837)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7572"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-20.870958,66.653957)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7574"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-43.557656,67.804497)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7576"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-54.562096,53.710304)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7578"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-22.112988,35.493314)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7580"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-18.95564,43.643014)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7582"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-46.979696,47.190534)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7584"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-41.032876,52.080354)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7586"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.672478,41.150164)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7588"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-49.629486,53.710304)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7590"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-47.793716,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7592"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-50.319006,75.378927)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7594"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-39.362928,46.039984)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7596"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-44.222676,43.738894)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7598"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.488406,53.422664)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7600"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-15.89943,48.436964)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7602"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-51.587666,66.078677)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7604"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-32.204268,40.862534)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7606"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-41.015516,38.753194)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7608"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.384028,44.889444)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7610"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-26.640278,74.899537)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7612"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.287106,73.461357)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7614"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-37.170678,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7616"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.531268,52.463874)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7618"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-34.022008,38.753194)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7620"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-14.14005,72.502567)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7622"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.985058,48.724594)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7624"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-32.544608,64.065227)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7626"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.248626,78.351177)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7628"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-29.850728,33.767494)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7630"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-25.661078,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7632"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-25.810018,40.383134)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7634"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.208038,48.724594)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7636"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-17.26364,59.558914)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7638"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-20.129138,77.775907)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7640"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           inkscape:tile-h="3.559322"
+           inkscape:tile-w="3.559322"
+           inkscape:tile-cy="77.277343"
+           inkscape:tile-cx="8.6326225"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-35.549928,145.25335)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7642"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-61.836364,146.79623)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7644"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-48.905436,158.64851)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7646"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-35.057108,155.97454)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7648"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-37.269138,150.45437)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7650"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-37.685728,160.61843)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7652"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-44.392356,176.51575)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7654"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-43.317876,150.45775)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7656"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-45.949426,160.36221)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7658"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-34.714798,147.37187)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7660"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-32.505918,157.75925)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7662"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-41.210626,152.32687)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7664"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-45.561776,161.36749)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7666"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-38.899658,152.60781)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7668"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.320896,157.99441)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7670"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-43.148536,156.10838)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7672"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-24.623588,151.08676)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7674"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.37435824,0.32178177,0.26328131,-38.535108,153.16854)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7676"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-58.168966,164.00041)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7678"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.706566,153.01581)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7680"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-34.488168,165.85308)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7682"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.335766,164.39859)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7684"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-40.771836,171.43753)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7686"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-41.101746,161.22489)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7688"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-31.082198,155.30229)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7690"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.954346,143.79129)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7692"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           inkscape:tile-h="4.9857021"
+           inkscape:tile-w="5.1774596"
+           inkscape:tile-cy="70.47267"
+           inkscape:tile-cx="5.6568539"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-83.703132,143.7961)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7694"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-82.226592,154.00157)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7696"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-62.815924,136.74271)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7698"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-81.728782,162.31013)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7700"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-72.839284,142.95948)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7702"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-70.617234,133.00189)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7704"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-80.789972,136.39452)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7706"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-94.283332,149.29188)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7708"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.364334,125.08638)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7710"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-82.123712,144.77514)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7712"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-68.746154,130.34141)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7714"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-89.138622,137.954)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7716"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-91.453232,152.73943)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7718"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-86.055292,139.15257)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7720"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-73.415734,128.82015)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7722"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-58.905666,132.70863)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7724"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.274134,141.7882)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7726"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-67.036524,137.43159)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7728"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-88.603812,145.52674)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7730"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-79.634864,147.94334)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7732"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-59.143546,136.14265)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7734"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-74.867174,159.18536)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7736"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-91.820502,130.11494)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7738"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-62.161344,128.85605)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7740"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-85.083212,144.05443)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7742"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-79.280884,132.13459)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7744"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-72.020634,131.32579)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7746"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.651634,137.90208)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7748"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-83.395022,148.88555)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7750"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-63.754384,147.77542)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7752"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-93.590812,142.89105)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7754"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-78.596174,124.13578)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7756"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-103.17127,145.01708)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7758"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-73.147474,153.28114)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7760"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+      </g>
+    </g>
+  </g>
+  <g
+     id="g4892-4"
+     transform="matrix(0.39173755,-0.24196687,0.23502587,0.38050027,-4.9456724,42.056775)">
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6750-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,5.4927844,-19.94118)"
+       inkscape:tile-cx="8.6326225"
+       inkscape:tile-cy="77.277343"
+       inkscape:tile-w="3.559322"
+       inkscape:tile-h="3.559322"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6752-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,37.769195,-8.9160691)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6754-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.989156,-31.276024)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6756-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,19.793472,-3.7833042)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6758-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,1.9775318,-18.074156)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6760-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,13.082534,-3.1244966)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6762-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.599531,8.260734)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6764-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,36.660541,0.92049486)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6766-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,7.340138,-11.852406)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6768-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,7.0205696,-17.674695)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6770-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,19.803307,0.15107945)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6772-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,31.717066,-21.379237)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6774-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.609366,-25.84336)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6776-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,11.264686,-21.199783)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6778-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,33.714368,7.8108866)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6780-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,29.799655,-27.172021)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6782-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,38.038377,-28.090174)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6784-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,9.9163557,-24.405302)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6786-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,3.8445557,-5.4610379)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6788-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,14.150637,-10.724082)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6790-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,9.9962478,3.9859009)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6792-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,15.278962,-29.608124)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6794-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,21.430654,-17.614473)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6796-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,25.585044,-10.973594)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6798-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,31.89652,-17.11545)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6800-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,28.301375,-3.284281)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6802-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-1.6046223,-73.801082)"
+       inkscape:tile-cx="5.6568539"
+       inkscape:tile-cy="70.47267"
+       inkscape:tile-w="5.1774596"
+       inkscape:tile-h="4.9857021"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6804-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.137108,-56.12319)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6806-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.493131,-46.456245)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6808-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,23.848386,-54.445455)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6810-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,4.9444539,-53.48675)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6812-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-4.225113,-65.23089)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6814-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,22.813452,-80.410389)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6816-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,25.444352,-73.619561)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6818-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,2.0930025,-70.663553)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6820-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,7.0482557,-66.589056)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6822-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,13.181388,-75.696756)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6824-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-0.11496779,-65.23089)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6826-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,1.4147069,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6828-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-0.68951611,-47.175273)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6830-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,8.4397527,-71.622258)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6832-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,4.3903214,-73.539669)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6834-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,5.8354162,-65.470566)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6836-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,27.990971,-69.624956)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6838-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-1.7466408,-54.924808)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6840-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,14.404789,-75.936431)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6842-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,7.062717,-77.694058)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6844-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.588041,-72.580963)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6846-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.04104,-47.574734)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6848-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,6.0031524,-48.773116)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6850-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,10.266472,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6852-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,13.299052,-66.269487)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6854-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,12.890138,-77.694058)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6856-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,29.456989,-49.572037)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6858-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,12.920926,-69.385279)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6860-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,14.121195,-56.602542)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6862-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,6.0352146,-44.698618)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6864-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,16.365897,-81.848448)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6866-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.856971,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6868-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.732862,-76.335892)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6870-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.734684,-69.385279)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6872-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,26.854222,-60.357471)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6874-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,24.466516,-45.177971)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6876-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,11.616977,11.048336)"
+       inkscape:tile-cx="8.6326225"
+       inkscape:tile-cy="77.277343"
+       inkscape:tile-w="3.559322"
+       inkscape:tile-h="3.559322"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6878-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-10.286482,12.333957)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6880-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,0.48835711,22.209998)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6882-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.027625,19.981886)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6884-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,10.184431,15.382142)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6886-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,9.8373022,23.851454)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6888-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,4.248927,37.098067)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6890-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,5.1442519,15.384961)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6892-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,2.9514865,23.637956)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6894-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.312864,12.813619)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6896-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,14.153433,21.469012)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6898-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,6.9001443,16.942423)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6900-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,3.2744942,24.475618)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6902-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,8.8257827,17.176518)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6904-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.5243518,21.664959)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6906-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,5.2853533,20.093407)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6908-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,20.721473,15.909084)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6910-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.311938,0.2681281,0.21938196,9.1295417,17.643753)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6912-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-7.2305801,26.669526)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6914-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.8457138,17.516486)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6916-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.501698,28.213285)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6918-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.5367416,27.001311)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6920-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,7.2657681,32.866584)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6922-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,6.9908649,24.356796)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6924-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,15.339765,19.42172)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6926-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-2.0521775,9.830063)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6928-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-28.507197,9.8340693)"
+       inkscape:tile-cx="5.6568539"
+       inkscape:tile-cy="70.47267"
+       inkscape:tile-w="5.1774596"
+       inkscape:tile-h="4.9857021"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6930-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-27.276859,18.337888)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6932-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-11.102705,3.9567493)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6934-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-26.862052,25.261079)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6936-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.454782,9.1369476)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6938-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-17.603234,0.83967608)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6940-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-26.079777,3.6666196)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6942-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-37.323263,14.413488)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6944-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.059456,-5.7560055)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6946-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-27.19113,10.649867)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6948-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-16.044132,-1.3772023)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6950-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-33.036379,4.9660738)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6952-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-34.965049,17.286195)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6954-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-30.467159,5.9647984)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6956-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.935115,-2.6448068)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6958-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-7.8444449,0.59531571)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6960-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-13.984301,8.1609602)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6962-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.619563,4.5307651)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6964-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-32.59074,11.276142)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6966-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-25.117269,13.289796)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6968-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-8.0426543,3.4567446)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6970-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-21.144544,22.65733)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6972-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-35.271084,-1.5659075)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6974-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-10.557269,-2.6148919)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6976-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-29.657163,10.04932)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6978-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-24.822307,0.11698409)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6980-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-18.77263,-0.55695715)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6982-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.298854,4.9228084)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6984-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-28.250466,14.074906)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6986-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-11.884693,13.149875)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6988-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-36.746214,9.0799251)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6990-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-24.251765,-6.5481048)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6992-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-44.729236,10.851463)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6994-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.711585,17.737574)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <g
+       style="fill:#ffdd55;fill-opacity:1"
+       transform="matrix(0.21925838,-0.54261519,-0.41123581,-0.28930586,104.37348,85.74643)"
+       id="g7514-7">
+      <g
+         id="g4319-2">
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           inkscape:tile-h="3.559322"
+           inkscape:tile-w="3.559322"
+           inkscape:tile-cy="77.277343"
+           inkscape:tile-cx="8.6326225"
+           transform="matrix(0.5965909,0,0,0.5965909,-42.899596,108.06269)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7516-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-4.1645297,121.29398)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7518-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-21.902128,94.459697)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7520-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-25.737278,127.45383)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7522-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-47.118276,110.30332)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7524-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-33.791108,128.24447)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7526-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-22.369718,141.90794)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7528-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-5.4950297,133.09888)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7530-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-40.682586,117.77007)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7532-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-41.066096,110.78271)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7534-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-25.725478,132.1755)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7536-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-11.42772,106.33687)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7538-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-22.357918,100.97946)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7540-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-35.972718,106.55224)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7542-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-9.0307497,141.36807)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7544-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-13.72882,99.384927)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7546-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-3.8414897,98.283047)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7548-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-37.590858,102.70528)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7550-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-44.877646,125.44038)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7552-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-32.509278,119.12417)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7554-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-37.494978,136.77769)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7556-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-31.155168,96.461347)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7558-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-23.772488,110.85498)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7560-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-18.78679,118.82473)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7562-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-11.21236,111.45386)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7564-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-15.52691,128.05271)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7566-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           inkscape:tile-h="4.9857021"
+           inkscape:tile-w="5.1774596"
+           inkscape:tile-cy="70.47267"
+           inkscape:tile-cx="5.6568539"
+           transform="matrix(1.2272727,0,0,1.3684211,-51.417226,43.425174)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7568-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.925198,64.640497)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7570-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-26.097718,76.241837)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7572-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-20.870958,66.653957)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7574-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-43.557656,67.804497)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7576-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-54.562096,53.710304)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7578-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-22.112988,35.493314)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7580-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-18.95564,43.643014)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7582-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-46.979696,47.190534)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7584-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-41.032876,52.080354)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7586-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.672478,41.150164)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7588-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-49.629486,53.710304)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7590-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-47.793716,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7592-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-50.319006,75.378927)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7594-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-39.362928,46.039984)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7596-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-44.222676,43.738894)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7598-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.488406,53.422664)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7600-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-15.89943,48.436964)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7602-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-51.587666,66.078677)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7604-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-32.204268,40.862534)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7606-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-41.015516,38.753194)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7608-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.384028,44.889444)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7610-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-26.640278,74.899537)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7612-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.287106,73.461357)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7614-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-37.170678,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7616-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.531268,52.463874)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7618-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-34.022008,38.753194)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7620-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-14.14005,72.502567)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7622-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.985058,48.724594)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7624-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-32.544608,64.065227)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7626-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.248626,78.351177)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7628-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-29.850728,33.767494)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7630-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-25.661078,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7632-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-25.810018,40.383134)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7634-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.208038,48.724594)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7636-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-17.26364,59.558914)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7638-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-20.129138,77.775907)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7640-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           inkscape:tile-h="3.559322"
+           inkscape:tile-w="3.559322"
+           inkscape:tile-cy="77.277343"
+           inkscape:tile-cx="8.6326225"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-35.549928,145.25335)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7642-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-61.836364,146.79623)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7644-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-48.905436,158.64851)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7646-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-35.057108,155.97454)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7648-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-37.269138,150.45437)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7650-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-37.685728,160.61843)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7652-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-44.392356,176.51575)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7654-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-43.317876,150.45775)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7656-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-45.949426,160.36221)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7658-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-34.714798,147.37187)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7660-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-32.505918,157.75925)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7662-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-41.210626,152.32687)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7664-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-45.561776,161.36749)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7666-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-38.899658,152.60781)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7668-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.320896,157.99441)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7670-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-43.148536,156.10838)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7672-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-24.623588,151.08676)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7674-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.37435824,0.32178177,0.26328131,-38.535108,153.16854)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7676-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-58.168966,164.00041)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7678-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.706566,153.01581)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7680-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-34.488168,165.85308)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7682-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.335766,164.39859)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7684-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-40.771836,171.43753)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7686-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-41.101746,161.22489)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7688-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-31.082198,155.30229)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7690-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.954346,143.79129)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7692-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           inkscape:tile-h="4.9857021"
+           inkscape:tile-w="5.1774596"
+           inkscape:tile-cy="70.47267"
+           inkscape:tile-cx="5.6568539"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-83.703132,143.7961)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7694-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-82.226592,154.00157)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7696-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-62.815924,136.74271)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7698-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-81.728782,162.31013)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7700-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-72.839284,142.95948)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7702-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-70.617234,133.00189)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7704-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-80.789972,136.39452)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7706-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-94.283332,149.29188)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7708-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.364334,125.08638)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7710-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-82.123712,144.77514)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7712-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-68.746154,130.34141)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7714-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-89.138622,137.954)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7716-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-91.453232,152.73943)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7718-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-86.055292,139.15257)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7720-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-73.415734,128.82015)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7722-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-58.905666,132.70863)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7724-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.274134,141.7882)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7726-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-67.036524,137.43159)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7728-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-88.603812,145.52674)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7730-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-79.634864,147.94334)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7732-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-59.143546,136.14265)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7734-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-74.867174,159.18536)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7736-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-91.820502,130.11494)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7738-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-62.161344,128.85605)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7740-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-85.083212,144.05443)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7742-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-79.280884,132.13459)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7744-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-72.020634,131.32579)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7746-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.651634,137.90208)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7748-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-83.395022,148.88555)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7750-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-63.754384,147.77542)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7752-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-93.590812,142.89105)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7754-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-78.596174,124.13578)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7756-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-103.17127,145.01708)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7758-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-73.147474,153.28114)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7760-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+      </g>
+    </g>
+  </g>
+  <g
+     id="g4892-4-1"
+     transform="matrix(0.16424301,-0.33667095,0.3268516,0.15150792,28.187133,21.542354)">
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6750-2-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,5.4927844,-19.94118)"
+       inkscape:tile-cx="8.6326225"
+       inkscape:tile-cy="77.277343"
+       inkscape:tile-w="3.559322"
+       inkscape:tile-h="3.559322"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6752-6-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,37.769195,-8.9160691)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6754-1-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.989156,-31.276024)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6756-6-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,19.793472,-3.7833042)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6758-1-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,1.9775318,-18.074156)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6760-8-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,13.082534,-3.1244966)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6762-3-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.599531,8.260734)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6764-3-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,36.660541,0.92049486)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6766-0-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,7.340138,-11.852406)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6768-0-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,7.0205696,-17.674695)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6770-4-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,19.803307,0.15107945)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6772-4-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,31.717066,-21.379237)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6774-0-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.609366,-25.84336)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6776-4-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,11.264686,-21.199783)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6778-1-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,33.714368,7.8108866)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6780-9-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,29.799655,-27.172021)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6782-9-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,38.038377,-28.090174)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6784-2-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,9.9163557,-24.405302)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6786-4-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,3.8445557,-5.4610379)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6788-5-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,14.150637,-10.724082)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6790-1-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,9.9962478,3.9859009)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6792-4-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,15.278962,-29.608124)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6794-3-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,21.430654,-17.614473)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6796-3-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,25.585044,-10.973594)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6798-9-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,31.89652,-17.11545)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6800-0-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,28.301375,-3.284281)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6802-1-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-1.6046223,-73.801082)"
+       inkscape:tile-cx="5.6568539"
+       inkscape:tile-cy="70.47267"
+       inkscape:tile-w="5.1774596"
+       inkscape:tile-h="4.9857021"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6804-5-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.137108,-56.12319)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6806-6-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.493131,-46.456245)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6808-2-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,23.848386,-54.445455)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6810-9-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,4.9444539,-53.48675)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6812-8-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-4.225113,-65.23089)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6814-9-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,22.813452,-80.410389)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6816-2-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,25.444352,-73.619561)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6818-7-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,2.0930025,-70.663553)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6820-0-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,7.0482557,-66.589056)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6822-1-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,13.181388,-75.696756)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6824-0-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-0.11496779,-65.23089)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6826-3-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,1.4147069,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6828-3-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-0.68951611,-47.175273)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6830-3-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,8.4397527,-71.622258)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6832-9-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,4.3903214,-73.539669)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6834-9-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,5.8354162,-65.470566)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6836-3-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,27.990971,-69.624956)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6838-5-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-1.7466408,-54.924808)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6840-3-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,14.404789,-75.936431)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6842-4-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,7.062717,-77.694058)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6844-5-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.588041,-72.580963)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6846-5-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.04104,-47.574734)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6848-0-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,6.0031524,-48.773116)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6850-0-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,10.266472,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6852-8-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,13.299052,-66.269487)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6854-4-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,12.890138,-77.694058)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6856-3-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,29.456989,-49.572037)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6858-3-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,12.920926,-69.385279)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6860-3-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,14.121195,-56.602542)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6862-6-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,6.0352146,-44.698618)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6864-4-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,16.365897,-81.848448)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6866-1-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.856971,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6868-2-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.732862,-76.335892)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6870-7-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.734684,-69.385279)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6872-0-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,26.854222,-60.357471)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6874-3-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,24.466516,-45.177971)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6876-8-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,11.616977,11.048336)"
+       inkscape:tile-cx="8.6326225"
+       inkscape:tile-cy="77.277343"
+       inkscape:tile-w="3.559322"
+       inkscape:tile-h="3.559322"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6878-5-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-10.286482,12.333957)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6880-0-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,0.48835711,22.209998)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6882-0-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.027625,19.981886)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6884-8-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,10.184431,15.382142)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6886-2-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,9.8373022,23.851454)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6888-3-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,4.248927,37.098067)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6890-1-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,5.1442519,15.384961)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6892-5-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,2.9514865,23.637956)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6894-4-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.312864,12.813619)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6896-2-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,14.153433,21.469012)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6898-0-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,6.9001443,16.942423)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6900-0-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,3.2744942,24.475618)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6902-5-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,8.8257827,17.176518)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6904-4-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.5243518,21.664959)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6906-7-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,5.2853533,20.093407)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6908-2-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,20.721473,15.909084)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6910-5-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.311938,0.2681281,0.21938196,9.1295417,17.643753)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6912-7-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-7.2305801,26.669526)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6914-0-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.8457138,17.516486)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6916-1-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.501698,28.213285)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6918-2-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.5367416,27.001311)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6920-5-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,7.2657681,32.866584)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6922-7-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,6.9908649,24.356796)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6924-8-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,15.339765,19.42172)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6926-0-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-2.0521775,9.830063)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6928-8-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-28.507197,9.8340693)"
+       inkscape:tile-cx="5.6568539"
+       inkscape:tile-cy="70.47267"
+       inkscape:tile-w="5.1774596"
+       inkscape:tile-h="4.9857021"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6930-3-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-27.276859,18.337888)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6932-9-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-11.102705,3.9567493)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6934-8-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-26.862052,25.261079)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6936-6-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.454782,9.1369476)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6938-7-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-17.603234,0.83967608)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6940-5-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-26.079777,3.6666196)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6942-8-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-37.323263,14.413488)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6944-7-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.059456,-5.7560055)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6946-3-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-27.19113,10.649867)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6948-0-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-16.044132,-1.3772023)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6950-2-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-33.036379,4.9660738)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6952-4-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-34.965049,17.286195)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6954-8-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-30.467159,5.9647984)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6956-8-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.935115,-2.6448068)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6958-7-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-7.8444449,0.59531571)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6960-8-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-13.984301,8.1609602)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6962-0-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.619563,4.5307651)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6964-4-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-32.59074,11.276142)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6966-5-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-25.117269,13.289796)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6968-7-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-8.0426543,3.4567446)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6970-7-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-21.144544,22.65733)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6972-0-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-35.271084,-1.5659075)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6974-6-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-10.557269,-2.6148919)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6976-9-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-29.657163,10.04932)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6978-1-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-24.822307,0.11698409)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6980-9-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-18.77263,-0.55695715)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6982-5-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.298854,4.9228084)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6984-8-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-28.250466,14.074906)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6986-9-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-11.884693,13.149875)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6988-5-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-36.746214,9.0799251)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6990-6-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-24.251765,-6.5481048)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6992-4-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-44.729236,10.851463)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6994-4-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.711585,17.737574)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <g
+       style="fill:#ffdd55;fill-opacity:1"
+       transform="matrix(0.21925838,-0.54261519,-0.41123581,-0.28930586,104.37348,85.74643)"
+       id="g7514-7-0">
+      <g
+         id="g4319-2-4">
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           inkscape:tile-h="3.559322"
+           inkscape:tile-w="3.559322"
+           inkscape:tile-cy="77.277343"
+           inkscape:tile-cx="8.6326225"
+           transform="matrix(0.5965909,0,0,0.5965909,-42.899596,108.06269)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7516-3-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-4.1645297,121.29398)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7518-4-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-21.902128,94.459697)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7520-0-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-25.737278,127.45383)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7522-0-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-47.118276,110.30332)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7524-8-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-33.791108,128.24447)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7526-3-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-22.369718,141.90794)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7528-4-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-5.4950297,133.09888)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7530-2-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-40.682586,117.77007)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7532-1-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-41.066096,110.78271)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7534-2-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-25.725478,132.1755)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7536-1-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-11.42772,106.33687)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7538-9-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-22.357918,100.97946)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7540-5-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-35.972718,106.55224)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7542-8-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-9.0307497,141.36807)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7544-4-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-13.72882,99.384927)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7546-2-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-3.8414897,98.283047)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7548-5-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-37.590858,102.70528)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7550-6-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-44.877646,125.44038)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7552-9-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-32.509278,119.12417)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7554-6-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-37.494978,136.77769)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7556-0-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-31.155168,96.461347)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7558-0-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-23.772488,110.85498)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7560-1-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-18.78679,118.82473)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7562-0-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-11.21236,111.45386)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7564-1-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-15.52691,128.05271)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7566-8-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           inkscape:tile-h="4.9857021"
+           inkscape:tile-w="5.1774596"
+           inkscape:tile-cy="70.47267"
+           inkscape:tile-cx="5.6568539"
+           transform="matrix(1.2272727,0,0,1.3684211,-51.417226,43.425174)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7568-9-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.925198,64.640497)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7570-6-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-26.097718,76.241837)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7572-4-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-20.870958,66.653957)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7574-8-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-43.557656,67.804497)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7576-8-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-54.562096,53.710304)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7578-7-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-22.112988,35.493314)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7580-2-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-18.95564,43.643014)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7582-1-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-46.979696,47.190534)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7584-9-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-41.032876,52.080354)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7586-0-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.672478,41.150164)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7588-4-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-49.629486,53.710304)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7590-5-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-47.793716,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7592-5-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-50.319006,75.378927)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7594-7-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-39.362928,46.039984)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7596-8-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-44.222676,43.738894)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7598-8-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.488406,53.422664)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7600-6-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-15.89943,48.436964)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7602-5-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-51.587666,66.078677)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7604-6-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-32.204268,40.862534)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7606-3-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-41.015516,38.753194)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7608-7-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.384028,44.889444)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7610-3-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-26.640278,74.899537)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7612-1-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.287106,73.461357)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7614-8-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-37.170678,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7616-0-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.531268,52.463874)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7618-1-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-34.022008,38.753194)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7620-8-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-14.14005,72.502567)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7622-1-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.985058,48.724594)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7624-4-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-32.544608,64.065227)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7626-0-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.248626,78.351177)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7628-2-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-29.850728,33.767494)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7630-3-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-25.661078,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7632-8-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-25.810018,40.383134)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7634-6-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.208038,48.724594)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7636-1-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-17.26364,59.558914)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7638-6-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-20.129138,77.775907)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7640-6-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           inkscape:tile-h="3.559322"
+           inkscape:tile-w="3.559322"
+           inkscape:tile-cy="77.277343"
+           inkscape:tile-cx="8.6326225"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-35.549928,145.25335)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7642-3-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-61.836364,146.79623)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7644-9-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-48.905436,158.64851)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7646-5-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-35.057108,155.97454)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7648-4-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-37.269138,150.45437)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7650-3-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-37.685728,160.61843)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7652-3-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-44.392356,176.51575)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7654-1-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-43.317876,150.45775)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7656-0-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-45.949426,160.36221)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7658-3-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-34.714798,147.37187)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7660-9-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-32.505918,157.75925)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7662-9-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-41.210626,152.32687)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7664-8-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-45.561776,161.36749)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7666-6-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-38.899658,152.60781)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7668-4-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.320896,157.99441)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7670-5-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-43.148536,156.10838)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7672-9-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-24.623588,151.08676)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7674-7-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.37435824,0.32178177,0.26328131,-38.535108,153.16854)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7676-4-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-58.168966,164.00041)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7678-1-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.706566,153.01581)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7680-9-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-34.488168,165.85308)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7682-4-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.335766,164.39859)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7684-3-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-40.771836,171.43753)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7686-5-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-41.101746,161.22489)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7688-4-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-31.082198,155.30229)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7690-7-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.954346,143.79129)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7692-8-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           inkscape:tile-h="4.9857021"
+           inkscape:tile-w="5.1774596"
+           inkscape:tile-cy="70.47267"
+           inkscape:tile-cx="5.6568539"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-83.703132,143.7961)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7694-2-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-82.226592,154.00157)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7696-3-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-62.815924,136.74271)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7698-9-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-81.728782,162.31013)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7700-1-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-72.839284,142.95948)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7702-9-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-70.617234,133.00189)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7704-4-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-80.789972,136.39452)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7706-2-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-94.283332,149.29188)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7708-7-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.364334,125.08638)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7710-0-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-82.123712,144.77514)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7712-8-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-68.746154,130.34141)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7714-0-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-89.138622,137.954)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7716-1-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-91.453232,152.73943)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7718-0-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-86.055292,139.15257)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7720-3-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-73.415734,128.82015)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7722-1-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-58.905666,132.70863)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7724-1-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.274134,141.7882)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7726-1-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-67.036524,137.43159)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7728-9-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-88.603812,145.52674)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7730-5-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-79.634864,147.94334)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7732-8-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-59.143546,136.14265)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7734-0-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-74.867174,159.18536)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7736-3-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-91.820502,130.11494)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7738-2-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-62.161344,128.85605)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7740-2-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-85.083212,144.05443)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7742-4-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-79.280884,132.13459)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7744-7-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-72.020634,131.32579)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7746-7-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.651634,137.90208)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7748-9-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-83.395022,148.88555)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7750-3-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-63.754384,147.77542)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7752-4-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-93.590812,142.89105)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7754-9-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-78.596174,124.13578)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7756-8-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-103.17127,145.01708)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7758-7-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-73.147474,153.28114)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7760-0-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+      </g>
+    </g>
+  </g>
+  <g
+     id="g4892-4-1-6"
+     transform="matrix(-0.14230944,-0.29671238,0.26806409,-0.09219204,39.979858,62.201195)">
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6750-2-9-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,5.4927844,-19.94118)"
+       inkscape:tile-cx="8.6326225"
+       inkscape:tile-cy="77.277343"
+       inkscape:tile-w="3.559322"
+       inkscape:tile-h="3.559322"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6752-6-4-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,37.769195,-8.9160691)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6754-1-3-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.989156,-31.276024)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6756-6-8-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,19.793472,-3.7833042)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6758-1-5-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,1.9775318,-18.074156)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6760-8-1-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,13.082534,-3.1244966)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6762-3-0-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.599531,8.260734)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6764-3-6-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,36.660541,0.92049486)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6766-0-4-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,7.340138,-11.852406)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6768-0-5-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,7.0205696,-17.674695)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6770-4-9-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,19.803307,0.15107945)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6772-4-5-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,31.717066,-21.379237)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6774-0-8-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,22.609366,-25.84336)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6776-4-8-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,11.264686,-21.199783)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6778-1-1-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,33.714368,7.8108866)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6780-9-6-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,29.799655,-27.172021)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6782-9-9-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,38.038377,-28.090174)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6784-2-6-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,9.9163557,-24.405302)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6786-4-1-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,3.8445557,-5.4610379)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6788-5-3-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,14.150637,-10.724082)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6790-1-2-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,9.9962478,3.9859009)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6792-4-0-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,15.278962,-29.608124)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6794-3-0-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,21.430654,-17.614473)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6796-3-3-9"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,25.585044,-10.973594)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6798-9-5-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,31.89652,-17.11545)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6800-0-4-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.49711574,0,0,0.49711574,28.301375,-3.284281)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6802-1-4-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-1.6046223,-73.801082)"
+       inkscape:tile-cx="5.6568539"
+       inkscape:tile-cy="70.47267"
+       inkscape:tile-w="5.1774596"
+       inkscape:tile-h="4.9857021"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6804-5-3-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.137108,-56.12319)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6806-6-3-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.493131,-46.456245)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6808-2-4-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,23.848386,-54.445455)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6810-9-6-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,4.9444539,-53.48675)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6812-8-4-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-4.225113,-65.23089)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6814-9-8-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,22.813452,-80.410389)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6816-2-0-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,25.444352,-73.619561)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6818-7-2-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,2.0930025,-70.663553)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6820-0-5-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,7.0482557,-66.589056)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6822-1-3-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,13.181388,-75.696756)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6824-0-4-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-0.11496779,-65.23089)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6826-3-4-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,1.4147069,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6828-3-7-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-0.68951611,-47.175273)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6830-3-9-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,8.4397527,-71.622258)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6832-9-3-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,4.3903214,-73.539669)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6834-9-3-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,5.8354162,-65.470566)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6836-3-7-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,27.990971,-69.624956)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6838-5-4-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,-1.7466408,-54.924808)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6840-3-6-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,14.404789,-75.936431)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6842-4-6-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,7.062717,-77.694058)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6844-5-5-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.588041,-72.580963)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6846-5-4-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.04104,-47.574734)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6848-0-7-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,6.0031524,-48.773116)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6850-0-8-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,10.266472,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6852-8-8-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,13.299052,-66.269487)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6854-4-9-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,12.890138,-77.694058)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6856-3-0-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,29.456989,-49.572037)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6858-3-3-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,12.920926,-69.385279)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6860-3-4-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,14.121195,-56.602542)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6862-6-4-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,6.0352146,-44.698618)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6864-4-7-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,16.365897,-81.848448)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6866-1-8-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.856971,-61.0765)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6868-2-9-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,19.732862,-76.335892)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6870-7-1-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,17.734684,-69.385279)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6872-0-4-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,26.854222,-60.357471)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6874-3-4-8"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(1.0226381,0,0,1.1402515,24.466516,-45.177971)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6876-8-1-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,11.616977,11.048336)"
+       inkscape:tile-cx="8.6326225"
+       inkscape:tile-cy="77.277343"
+       inkscape:tile-w="3.559322"
+       inkscape:tile-h="3.559322"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6878-5-6-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-10.286482,12.333957)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6880-0-8-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,0.48835711,22.209998)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6882-0-7-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.027625,19.981886)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6884-8-2-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,10.184431,15.382142)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6886-2-3-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,9.8373022,23.851454)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6888-3-3-0"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,4.248927,37.098067)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6890-1-9-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,5.1442519,15.384961)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6892-5-4-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,2.9514865,23.637956)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6894-4-8-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.312864,12.813619)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6896-2-4-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,14.153433,21.469012)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6898-0-2-2"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,6.9001443,16.942423)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6900-0-4-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,3.2744942,24.475618)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6902-5-2-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,8.8257827,17.176518)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6904-4-0-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.5243518,21.664959)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6906-7-9-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,5.2853533,20.093407)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6908-2-6-5"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,20.721473,15.909084)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6910-5-7-8"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.311938,0.2681281,0.21938196,9.1295417,17.643753)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6912-7-9-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-7.2305801,26.669526)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6914-0-6-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.8457138,17.516486)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6916-1-6-1"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,12.501698,28.213285)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6918-2-9-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-1.5367416,27.001311)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6920-5-9-7"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,7.2657681,32.866584)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6922-7-0-4"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,6.9908649,24.356796)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6924-8-5-3"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,15.339765,19.42172)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#f7e684;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6926-0-6-6"
+       sodipodi:cx="25.762712"
+       sodipodi:cy="89.491524"
+       sodipodi:rx="2.9830508"
+       sodipodi:ry="2.9830508"
+       d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+       transform="matrix(0.18857102,-0.2681281,0.2681281,0.18857102,-2.0521775,9.830063)"
+       inkscape:tile-x0="6.8529615"
+       inkscape:tile-y0="75.497682" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path6928-8-0-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-28.507197,9.8340693)"
+       inkscape:tile-cx="5.6568539"
+       inkscape:tile-cy="70.47267"
+       inkscape:tile-w="5.1774596"
+       inkscape:tile-h="4.9857021"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6930-3-5-1"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-27.276859,18.337888)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6932-9-9-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-11.102705,3.9567493)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6934-8-7-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-26.862052,25.261079)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6936-6-9-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.454782,9.1369476)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6938-7-3-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-17.603234,0.83967608)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6940-5-3-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-26.079777,3.6666196)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6942-8-9-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-37.323263,14.413488)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6944-7-2-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.059456,-5.7560055)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6946-3-5-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-27.19113,10.649867)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6948-0-2-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-16.044132,-1.3772023)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6950-2-5-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-33.036379,4.9660738)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6952-4-7-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-34.965049,17.286195)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6954-8-7-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-30.467159,5.9647984)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6956-8-3-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.935115,-2.6448068)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6958-7-1-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-7.8444449,0.59531571)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6960-8-1-4"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-13.984301,8.1609602)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6962-0-8-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.619563,4.5307651)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6964-4-6-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-32.59074,11.276142)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6966-5-1-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-25.117269,13.289796)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6968-7-9-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-8.0426543,3.4567446)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6970-7-2-6"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-21.144544,22.65733)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6972-0-0-0"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-35.271084,-1.5659075)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6974-6-1-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-10.557269,-2.6148919)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6976-9-1-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-29.657163,10.04932)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6978-1-8-3"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-24.822307,0.11698409)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6980-9-0-9"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-18.77263,-0.55695715)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6982-5-0-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-14.298854,4.9228084)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6984-8-0-7"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-28.250466,14.074906)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6986-9-8-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-11.884693,13.149875)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#a68b47;fill-opacity:0.73333405;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6988-5-9-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-36.746214,9.0799251)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6990-6-3-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-24.251765,-6.5481048)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6992-4-3-5"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-44.729236,10.851463)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ffff99;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="use6994-4-8-2"
+       sodipodi:cx="18.696383"
+       sodipodi:cy="82.169891"
+       sodipodi:rx="2.1093354"
+       sodipodi:ry="1.8216988"
+       d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+       transform="matrix(0.38791753,-0.55157779,0.61501464,0.43253185,-19.711585,17.737574)"
+       inkscape:tile-x0="3.0681241"
+       inkscape:tile-y0="67.979819" />
+    <g
+       style="fill:#ffdd55;fill-opacity:1"
+       transform="matrix(0.21925838,-0.54261519,-0.41123581,-0.28930586,104.37348,85.74643)"
+       id="g7514-7-0-6">
+      <g
+         id="g4319-2-4-7">
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           inkscape:tile-h="3.559322"
+           inkscape:tile-w="3.559322"
+           inkscape:tile-cy="77.277343"
+           inkscape:tile-cx="8.6326225"
+           transform="matrix(0.5965909,0,0,0.5965909,-42.899596,108.06269)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7516-3-1-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-4.1645297,121.29398)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7518-4-5-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-21.902128,94.459697)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7520-0-3-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-25.737278,127.45383)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7522-0-3-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-47.118276,110.30332)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7524-8-3-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-33.791108,128.24447)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7526-3-8-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-22.369718,141.90794)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7528-4-0-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-5.4950297,133.09888)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7530-2-0-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-40.682586,117.77007)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7532-1-7-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-41.066096,110.78271)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7534-2-4-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-25.725478,132.1755)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7536-1-3-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-11.42772,106.33687)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7538-9-0-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-22.357918,100.97946)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7540-5-4-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-35.972718,106.55224)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7542-8-9-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-9.0307497,141.36807)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7544-4-3-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-13.72882,99.384927)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7546-2-3-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-3.8414897,98.283047)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7548-5-4-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-37.590858,102.70528)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7550-6-3-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-44.877646,125.44038)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7552-9-4-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-32.509278,119.12417)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7554-6-5-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-37.494978,136.77769)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7556-0-3-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-31.155168,96.461347)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7558-0-7-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-23.772488,110.85498)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7560-1-7-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-18.78679,118.82473)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7562-0-3-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-11.21236,111.45386)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7564-1-5-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.5965909,0,0,0.5965909,-15.52691,128.05271)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7566-8-6-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           inkscape:tile-h="4.9857021"
+           inkscape:tile-w="5.1774596"
+           inkscape:tile-cy="70.47267"
+           inkscape:tile-cx="5.6568539"
+           transform="matrix(1.2272727,0,0,1.3684211,-51.417226,43.425174)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7568-9-6-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.925198,64.640497)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7570-6-0-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-26.097718,76.241837)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7572-4-7-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-20.870958,66.653957)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7574-8-8-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-43.557656,67.804497)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7576-8-6-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-54.562096,53.710304)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7578-7-0-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-22.112988,35.493314)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7580-2-4-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-18.95564,43.643014)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7582-1-1-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-46.979696,47.190534)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7584-9-6-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-41.032876,52.080354)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7586-0-9-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.672478,41.150164)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7588-4-1-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-49.629486,53.710304)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7590-5-6-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-47.793716,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7592-5-1-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-50.319006,75.378927)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7594-7-8-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-39.362928,46.039984)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7596-8-2-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-44.222676,43.738894)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7598-8-4-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.488406,53.422664)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7600-6-0-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-15.89943,48.436964)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7602-5-6-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-51.587666,66.078677)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7604-6-6-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-32.204268,40.862534)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7606-3-3-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-41.015516,38.753194)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7608-7-2-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.384028,44.889444)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7610-3-2-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-26.640278,74.899537)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7612-1-8-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.287106,73.461357)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7614-8-8-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-37.170678,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7616-0-9-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.531268,52.463874)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7618-1-1-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-34.022008,38.753194)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7620-8-7-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-14.14005,72.502567)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7622-1-6-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-33.985058,48.724594)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7624-4-7-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-32.544608,64.065227)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7626-0-4-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-42.248626,78.351177)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7628-2-5-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-29.850728,33.767494)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7630-3-5-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-25.661078,58.696004)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7632-8-4-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-25.810018,40.383134)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7634-6-4-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-28.208038,48.724594)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7636-1-4-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-17.26364,59.558914)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7638-6-2-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(1.2272727,0,0,1.3684211,-20.129138,77.775907)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7640-6-4-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           inkscape:tile-h="3.559322"
+           inkscape:tile-w="3.559322"
+           inkscape:tile-cy="77.277343"
+           inkscape:tile-cx="8.6326225"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-35.549928,145.25335)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7642-3-0-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-61.836364,146.79623)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7644-9-4-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-48.905436,158.64851)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7646-5-0-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-35.057108,155.97454)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7648-4-9-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-37.269138,150.45437)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7650-3-5-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-37.685728,160.61843)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7652-3-7-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-44.392356,176.51575)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7654-1-0-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-43.317876,150.45775)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7656-0-6-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-45.949426,160.36221)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7658-3-1-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-34.714798,147.37187)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7660-9-6-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-32.505918,157.75925)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7662-9-6-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-41.210626,152.32687)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7664-8-8-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-45.561776,161.36749)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7666-6-4-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-38.899658,152.60781)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7668-4-2-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.320896,157.99441)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7670-5-2-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-43.148536,156.10838)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7672-9-8-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-24.623588,151.08676)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7674-7-0-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.37435824,0.32178177,0.26328131,-38.535108,153.16854)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7676-4-0-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-58.168966,164.00041)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7678-1-7-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.706566,153.01581)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7680-9-4-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-34.488168,165.85308)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7682-4-8-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.335766,164.39859)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7684-3-6-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-40.771836,171.43753)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7686-5-1-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-41.101746,161.22489)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7688-4-2-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-31.082198,155.30229)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7690-7-3-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="75.497682"
+           inkscape:tile-x0="6.8529615"
+           transform="matrix(0.22630496,-0.32178177,0.32178177,0.22630496,-51.954346,143.79129)"
+           d="m 28.745763,89.491524 c 0,1.647493 -1.335557,2.983051 -2.983051,2.983051 -1.647493,0 -2.98305,-1.335558 -2.98305,-2.983051 0,-1.647494 1.335557,-2.983051 2.98305,-2.983051 1.647494,0 2.983051,1.335557 2.983051,2.983051 z"
+           sodipodi:ry="2.9830508"
+           sodipodi:rx="2.9830508"
+           sodipodi:cy="89.491524"
+           sodipodi:cx="25.762712"
+           id="path7692-8-8-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           inkscape:tile-h="4.9857021"
+           inkscape:tile-w="5.1774596"
+           inkscape:tile-cy="70.47267"
+           inkscape:tile-cx="5.6568539"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-83.703132,143.7961)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7694-2-9-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-82.226592,154.00157)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7696-3-7-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-62.815924,136.74271)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7698-9-2-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-81.728782,162.31013)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7700-1-1-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-72.839284,142.95948)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7702-9-1-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-70.617234,133.00189)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7704-4-4-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-80.789972,136.39452)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7706-2-7-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-94.283332,149.29188)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7708-7-4-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.364334,125.08638)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7710-0-5-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-82.123712,144.77514)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7712-8-5-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-68.746154,130.34141)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7714-0-1-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-89.138622,137.954)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7716-1-7-5"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-91.453232,152.73943)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7718-0-3-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-86.055292,139.15257)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7720-3-4-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-73.415734,128.82015)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7722-1-6-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-58.905666,132.70863)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7724-1-1-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.274134,141.7882)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7726-1-2-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-67.036524,137.43159)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7728-9-0-3"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-88.603812,145.52674)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7730-5-3-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-79.634864,147.94334)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7732-8-6-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-59.143546,136.14265)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7734-0-1-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-74.867174,159.18536)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7736-3-6-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-91.820502,130.11494)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7738-2-7-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-62.161344,128.85605)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7740-2-8-9"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-85.083212,144.05443)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7742-4-0-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-79.280884,132.13459)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7744-7-7-1"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-72.020634,131.32579)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7746-7-6-4"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-66.651634,137.90208)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7748-9-3-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-83.395022,148.88555)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7750-3-1-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-63.754384,147.77542)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7752-4-9-8"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-93.590812,142.89105)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7754-9-1-2"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-78.596174,124.13578)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7756-8-2-6"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-103.17127,145.01708)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7758-7-6-0"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           inkscape:tile-y0="67.979819"
+           inkscape:tile-x0="3.0681241"
+           transform="matrix(0.46554162,-0.66195106,0.73808192,0.51908348,-73.147474,153.28114)"
+           d="m 20.805718,82.169891 c 0,1.006097 -0.944382,1.821699 -2.109335,1.821699 -1.164954,0 -2.109336,-0.815602 -2.109336,-1.821699 0,-1.006096 0.944382,-1.821698 2.109336,-1.821698 1.164953,0 2.109335,0.815602 2.109335,1.821698 z"
+           sodipodi:ry="1.8216988"
+           sodipodi:rx="2.1093354"
+           sodipodi:cy="82.169891"
+           sodipodi:cx="18.696383"
+           id="path7760-0-4-7"
+           style="color:#000000;fill:#ffdd55;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+      </g>
+    </g>
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Clouds.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Clouds.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,280 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="256"
+   height="512"
+   sodipodi:docname="Clouds.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Clouds.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective10" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2848" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3615"
+       xlink:href="#linearGradient3617"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2851" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2837" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3743"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3738"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3733"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3728"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       id="linearGradient3724"
+       xlink:href="#linearGradient3605"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective10-6"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3706">
+      <stop
+         id="stop3708"
+         offset="0"
+         style="stop-color:#9aa3dc;stop-opacity:1;" />
+      <stop
+         id="stop3710"
+         offset="1"
+         style="stop-color:#9aa3dc;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718">
+      <stop
+         id="stop3720"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.49803922;"
+         offset="0.5"
+         id="stop3603" />
+      <stop
+         id="stop3722"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3607" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.24705882;"
+         offset="0.5907774"
+         id="stop3613" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3611" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3617">
+      <stop
+         id="stop3619"
+         offset="0"
+         style="stop-color:#ffdfe1;stop-opacity:1;" />
+      <stop
+         id="stop3621"
+         offset="0.52097768"
+         style="stop-color:#ffdfe1;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3623"
+         offset="1"
+         style="stop-color:#ffdfe1;stop-opacity:0;" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#081471"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="0.35839844"
+     inkscape:cx="27.990687"
+     inkscape:cy="219.94271"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <path
+     style="fill:#ff80e5;fill-opacity:1;stroke:#800066;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+     d="m 167.79628,429.90625 c 6.88621,-54.20506 -95.910233,-47.98209 -91.152321,6.33998 -36.780523,13.44756 -17.393783,55.60537 68.176851,45.15254 6.07372,5.86147 14.71644,7.1321 22.90295,4.54859 50.44072,0.35828 33.06824,-64.7277 0.0725,-56.04111 z"
+     id="path3628"
+     sodipodi:nodetypes="ccccc"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:#ffaaee;fill-opacity:1;stroke:none"
+     d="m 162.03744,441.25881 c -1.36319,-49.25801 -70.84174,-44.59276 -73.56421,-0.0256 -37.89558,0.67449 -29.98797,47.87467 57.17122,35.71956 6.0099,7.17251 13.2001,8.57757 21.7257,5.87623 43.45828,-5.64496 20.24934,-50.77328 -5.33271,-41.57015 z"
+     id="path3624"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:#ff80e5;fill-opacity:1;stroke:none"
+     d="M 35.51038,60.826602 C 30.10945,5.369057 173.31939,8.812326 176.54237,56.135592 202.32043,49.47102 245.36426,58.660968 243.28372,83.01503 241.20317,107.36909 165.62848,112.01794 126.37288,101.9661 14.82644,110.79522 -9.11426,74.486646 35.51038,60.826602 z"
+     id="path2818"
+     sodipodi:nodetypes="cczcc" />
+  <path
+     style="fill:#ffaaee;fill-opacity:1;stroke:none;opacity:1"
+     d="M 47.935121,67.693673 C 55.279955,21.727655 154.13261,20.419517 165.21999,67.471595 c 17.14098,-3.43759 63.50622,-0.561734 63.15549,20.35266 -0.35074,20.914395 -62.747,24.193685 -102.0026,14.141845 C 14.82644,110.79522 4.5308199,68.60796 47.935121,67.693673 z"
+     id="path3594"
+     sodipodi:nodetypes="cczcc" />
+  <path
+     sodipodi:nodetypes="cczcc"
+     id="path3592"
+     d="M 58.290041,72.487617 C 50.71962,34.11482 162.60753,34.981818 158.50847,75.525421 180.25962,71.545459 222.35333,78.028505 219.69751,92.027645 217.0417,106.02679 165.62848,112.01794 126.37288,101.9661 14.82644,110.79522 23.156926,71.503599 58.290041,72.487617 z"
+     style="fill:#ffd5f6;fill-opacity:1;stroke:none;opacity:1" />
+  <path
+     sodipodi:nodetypes="cczcc"
+     id="path3596"
+     d="M 35.51038,60.826602 C 30.10945,5.3690574 173.31939,8.8123258 176.54237,56.135592 202.32043,49.47102 245.36426,58.660968 243.28372,83.015027 241.20317,107.36909 165.62848,112.01794 126.37288,101.9661 14.82644,110.79522 -9.11426,74.486646 35.51038,60.826602 z"
+     style="fill:none;fill-opacity:1;stroke:#800066;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+  <path
+     style="fill:#ff80e5;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
+     d="m 91.280324,186.44749 c -0.572532,-52.33401 78.269996,-60.0929 77.262046,6.50166 25.56939,18.81678 9.23638,58.58843 -50.30508,47.32204 -7.93005,7.2174 -19.934946,7.40328 -28.344387,4.54859 -50.462498,6.87804 -46.267598,-69.35997 1.387421,-58.37229 z"
+     id="path3598"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     sodipodi:nodetypes="ccccc"
+     id="path3600"
+     d="m 97.00091,200.50411 c 2.307391,-48.17327 59.56702,-58.37674 63.55102,-0.2503 25.9859,2.78382 20.49274,49.59484 -42.32241,39.74083 -7.88081,7.17251 -19.811166,7.35723 -28.16839,4.5203 -41.903581,3.57537 -33.516057,-54.16312 6.93978,-44.01083 z"
+     style="fill:#ffaaee;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" />
+  <path
+     style="fill:#ffd5f6;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1"
+     d="m 100.64431,209.90024 c 0.40908,-42.47835 53.97713,-52.6313 55.11368,-3.31842 20.0414,-0.66782 26.05371,40.96574 -37.52847,33.41282 -7.88081,7.17251 -19.811166,7.35723 -28.16839,4.5203 -36.344259,-0.62802 -24.042151,-43.27546 10.58318,-34.6147 z"
+     id="path3602"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     sodipodi:nodetypes="ccccc"
+     id="path3604"
+     d="m 91.280324,186.44749 c -0.572532,-52.33401 78.269996,-60.0929 77.262046,6.50166 25.56939,18.81678 9.23638,58.58843 -50.30508,47.32204 -7.93005,7.2174 -19.934946,7.40328 -28.344387,4.54859 -50.462498,6.87804 -46.267598,-69.35997 1.387421,-58.37229 z"
+     style="fill:none;stroke:#800066;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
+  <path
+     sodipodi:nodetypes="cczcc"
+     id="path3606"
+     d="m 200.66036,311.36124 c 3.82282,-50.33223 -108.617799,-46.47836 -110.791616,-3.53573 -20.29452,-5.91384 -54.028615,2.64179 -52.210845,24.72238 1.817778,22.08058 61.203712,25.91198 91.956301,16.59385 87.66707,7.43976 106.19423,-25.6173 71.04616,-37.7805 z"
+     style="fill:#ff80e5;fill-opacity:1;stroke:none" />
+  <path
+     sodipodi:nodetypes="cczcc"
+     id="path3608"
+     d="m 190.95474,317.65364 c -6.11513,-41.6576 -83.75665,-42.33994 -92.108644,0.39683 -13.487225,-3.03075 -49.877382,-0.1856 -49.444047,18.78374 0.433343,18.96934 49.459562,21.62566 80.212151,12.30753 87.66707,7.43976 95.43399,-30.88016 61.34054,-31.4881 z"
+     style="fill:#ffaaee;fill-opacity:1;stroke:none" />
+  <path
+     style="fill:#ffd5f6;fill-opacity:1;stroke:none"
+     d="m 182.85893,322.05497 c 5.65555,-34.84599 -82.20648,-33.4888 -78.6813,3.26676 -17.111802,-3.4992 -50.120181,2.59619 -47.928803,15.28105 2.191368,12.68487 42.612784,17.85709 73.365373,8.53896 87.66707,7.43976 80.82828,-28.15856 53.24473,-27.08677 z"
+     id="path3610"
+     sodipodi:nodetypes="cczcc"
+     inkscape:connector-curvature="0" />
+  <path
+     style="fill:none;stroke:#800066;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+     d="m 200.66037,311.36125 c 3.82282,-50.33223 -108.617806,-46.47837 -110.791623,-3.53574 -20.29452,-5.91384 -54.028616,2.6418 -52.210846,24.72238 1.817778,22.08058 61.203715,25.91199 91.956299,16.59386 87.66708,7.43976 106.19424,-25.61731 71.04617,-37.7805 z"
+     id="path3612"
+     sodipodi:nodetypes="cczcc" />
+  <path
+     sodipodi:nodetypes="ccccc"
+     id="path3626"
+     d="m 159.62078,452.65494 c 2.4529,-46.81733 -66.020473,-42.32621 -62.612044,-3.5896 -29.498451,-3.1085 -38.604784,40.92719 48.134714,29.30647 8.04379,8.39285 14.92143,7.93815 21.27755,5.10122 35.16882,3.16859 20.7172,-41.91953 -6.80022,-30.81809 z"
+     style="fill:#ffd5f6;fill-opacity:1;stroke:none"
+     inkscape:connector-curvature="0" />
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/CupCake.png has changed
Binary file share/hedgewars/Data/Themes/Cake/Flake.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Flake.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,155 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="64"
+   height="256"
+   sodipodi:docname="Flake.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/Flake.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="1.3215942"
+     inkscape:cx="32"
+     inkscape:cy="131.90095"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <g
+     id="g3004"
+     transform="matrix(1.4047978,0,0,1.4121342,2.5071265,178.14671)">
+    <path
+       transform="matrix(0.82358881,0,0,1.6311818,2.4477171,-15.206346)"
+       d="m 31.187275,28.754107 c 0,2.477461 -4.016759,4.48584 -8.971682,4.48584 -4.954923,0 -8.971681,-2.008379 -8.971681,-4.48584 0,-2.477462 4.016758,-4.485841 8.971681,-4.485841 4.954923,0 8.971682,2.008379 8.971682,4.485841 z"
+       sodipodi:ry="4.4858408"
+       sodipodi:rx="8.9716816"
+       sodipodi:cy="28.754107"
+       sodipodi:cx="22.215593"
+       id="path2982"
+       style="fill:#d40000;fill-opacity:1;stroke:#aa0000;stroke-width:1.39999998;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       inkscape:connector-curvature="0"
+       id="path2984"
+       d="m 14.187556,33.377262 c -0.558299,-2.646443 0.0066,-4.501587 1.686889,-6.019632 2.619588,-2.36659 7.070797,-2.582609 10.159685,0.386068 1.537688,2.887946 -0.512254,2.236983 -4.369308,1.513825 -3.201028,-0.600159 -6.609791,0.261818 -7.477266,4.119739 z"
+       style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       inkscape:connector-curvature="0"
+       id="path2984-9"
+       d="m 14.211845,30.392472 c 0.08802,-1.612257 0.938606,-2.667032 2.279052,-3.663023 1.518992,-1.128656 5.448081,-2.151491 7.856221,0.08539 0.868312,1.412401 -1.298877,1.127408 -4.305891,0.58251 -2.495566,-0.452217 -2.977359,0.251825 -5.829382,2.995121 z"
+       style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+  </g>
+  <g
+     id="g3004-8"
+     transform="matrix(1.4047978,0,0,1.4121342,2.8585497,114.13831)">
+    <path
+       transform="matrix(0.82358881,0,0,1.6311818,2.4477171,-15.206346)"
+       d="m 31.187275,28.754107 c 0,2.477461 -4.016759,4.48584 -8.971682,4.48584 -4.954923,0 -8.971681,-2.008379 -8.971681,-4.48584 0,-2.477462 4.016758,-4.485841 8.971681,-4.485841 4.954923,0 8.971682,2.008379 8.971682,4.485841 z"
+       sodipodi:ry="4.4858408"
+       sodipodi:rx="8.9716816"
+       sodipodi:cy="28.754107"
+       sodipodi:cx="22.215593"
+       id="path2982-6"
+       style="fill:#ffd42a;fill-opacity:1;stroke:#ffcc00;stroke-width:1.39999998000000003;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       inkscape:connector-curvature="0"
+       id="path2984-3"
+       d="m 14.187556,33.377262 c -0.558299,-2.646443 0.0066,-4.501587 1.686889,-6.019632 2.619588,-2.36659 7.070797,-2.582609 10.159685,0.386068 1.537688,2.887946 -0.512254,2.236983 -4.369308,1.513825 -3.201028,-0.600159 -6.609791,0.261818 -7.477266,4.119739 z"
+       style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       inkscape:connector-curvature="0"
+       id="path2984-9-3"
+       d="m 14.211845,30.392472 c 0.08802,-1.612257 0.938606,-2.667032 2.279052,-3.663023 1.518992,-1.128656 5.448081,-2.151491 7.856221,0.08539 0.868312,1.412401 -1.298877,1.127408 -4.305891,0.58251 -2.495566,-0.452217 -2.977359,0.251825 -5.829382,2.995121 z"
+       style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+    <g
+       id="g3004-7"
+       transform="translate(-0.12507899,-44.845724)">
+      <path
+         transform="matrix(0.82358881,0,0,1.6311818,2.4477171,-15.206346)"
+         d="m 31.187275,28.754107 c 0,2.477461 -4.016759,4.48584 -8.971682,4.48584 -4.954923,0 -8.971681,-2.008379 -8.971681,-4.48584 0,-2.477462 4.016758,-4.485841 8.971681,-4.485841 4.954923,0 8.971682,2.008379 8.971682,4.485841 z"
+         sodipodi:ry="4.4858408"
+         sodipodi:rx="8.9716816"
+         sodipodi:cy="28.754107"
+         sodipodi:cx="22.215593"
+         id="path2982-2"
+         style="fill:#44aa00;fill-opacity:1;stroke:#338000;stroke-width:1.39999998000000003;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path2984-0"
+         d="m 14.187556,33.377262 c -0.558299,-2.646443 0.0066,-4.501587 1.686889,-6.019632 2.619588,-2.36659 7.070797,-2.582609 10.159685,0.386068 1.537688,2.887946 -0.512254,2.236983 -4.369308,1.513825 -3.201028,-0.600159 -6.609791,0.261818 -7.477266,4.119739 z"
+         style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+      <path
+         sodipodi:nodetypes="cscsc"
+         inkscape:connector-curvature="0"
+         id="path2984-9-6"
+         d="m 14.211845,30.392472 c 0.08802,-1.612257 0.938606,-2.667032 2.279052,-3.663023 1.518992,-1.128656 5.448081,-2.151491 7.856221,0.08539 0.868312,1.412401 -1.298877,1.127408 -4.305891,0.58251 -2.495566,-0.452217 -2.977359,0.251825 -5.829382,2.995121 z"
+         style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+    </g>
+    <path
+       transform="matrix(0.82358878,0,0,1.6311818,2.572797,-105.37949)"
+       d="m 31.187275,28.754107 a 8.9716816,4.4858408 0 1 1 -17.943363,0 8.9716816,4.4858408 0 1 1 17.943363,0 z"
+       sodipodi:ry="4.4858408"
+       sodipodi:rx="8.9716816"
+       sodipodi:cy="28.754107"
+       sodipodi:cx="22.215593"
+       id="path2982-6-9"
+       style="fill:#aa4400;fill-opacity:1;stroke:#803300;stroke-width:1.39999998000000003;stroke-miterlimit:4;stroke-opacity:0.98039216;stroke-dasharray:none"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       inkscape:connector-curvature="0"
+       id="path2984-3-4"
+       d="m 14.312636,-56.795882 c -0.558299,-2.646443 0.0066,-4.501587 1.686889,-6.019632 2.619588,-2.36659 7.070796,-2.582609 10.159684,0.386068 1.537688,2.887946 -0.512254,2.236983 -4.369308,1.513825 -3.201027,-0.600159 -6.60979,0.261818 -7.477265,4.119739 z"
+       style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       inkscape:connector-curvature="0"
+       id="path2984-9-3-8"
+       d="m 14.336925,-59.780672 c 0.08802,-1.612257 0.938606,-2.667032 2.279052,-3.663023 1.518992,-1.128656 5.448081,-2.151491 7.856221,0.08539 0.868311,1.412401 -1.298877,1.127408 -4.305891,0.58251 -2.495566,-0.452217 -2.977359,0.251825 -5.829382,2.995121 z"
+       style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Gingerbread.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Gingerbread.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,940 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="161"
+   height="200"
+   sodipodi:docname="Gingerbread.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Gingerbread.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6">
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient5294">
+      <stop
+         id="stop5296"
+         offset="0"
+         style="stop-color:#d6cda8;stop-opacity:1;" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3874" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3800" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3619-1" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3619-5" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3619" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2941" />
+    <inkscape:perspective
+       id="perspective2910"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       sodipodi:type="inkscape:persp3d" />
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="1.2125628"
+     inkscape:cx="82.121484"
+     inkscape:cy="102.11309"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <g
+     id="g4309"
+     transform="matrix(1.0521731,0.18502879,-0.18630073,1.0329807,19.346483,-30.253076)">
+    <path
+       sodipodi:nodetypes="cssscccccsssssscccccscccc"
+       inkscape:connector-curvature="0"
+       id="path3413-4-4"
+       d="m 35.561829,189.47545 c -4.027113,-0.83656 -8.77565,-4.35364 -11.958546,-8.85729 -2.540673,-3.59494 -2.929268,-4.68643 -3.174657,-8.917 -0.222745,-3.84017 0.02591,-5.40398 1.222367,-7.68868 1.952092,-3.72754 5.247427,-6.37834 9.073382,-7.29872 15.612449,-2.68737 31.524228,-25.31324 25.833342,-39.24814 -7.854986,-8.76262 -24.365571,-11.34387 -27.50303,-21.696927 -2.45552,-8.61297 1.346071,-17.32995 9.082903,-20.82692 11.632132,-3.5073 10.828139,3.6579 22.357677,4.33326 1.460734,0 1.560504,-1.31048 0.24485,-3.21612 -0.532055,-0.77065 -1.762579,-3.47896 -2.734498,-6.01848 -2.287553,-5.97711 -2.408506,-14.00283 -0.308728,-20.48548 2.546574,-7.862054 11.295744,-16.620398 18.569415,-18.588883 3.899048,-1.055205 14.710942,-0.858065 18.171489,0.331325 11.256525,3.868891 18.946215,15.382477 18.996465,28.442918 0.0213,5.53399 -3.37009,5.83564 -8.04652,15.98665 10.02909,3.16446 -6.917629,0.346716 1.28672,21.814366 1.71433,4.751531 11.23267,-3.649078 9.75668,0.487452 -4.07175,11.610979 -0.72428,12.761669 -3.36096,19.746139 -0.78553,16.69584 -7.68131,39.91388 7.36103,43.33245 4.45517,0.98262 5.81892,6.37157 8.07464,8.63586 6.20687,6.23046 22.61919,5.43098 15.71255,13.12226 -17.23734,15.98378 -34.54437,1.40961 -49.197819,-8.38394 -7.026271,-4.6795 -9.755314,-5.28164 -14.740691,-3.25245 -14.43596,7.36638 -27.47619,21.55874 -44.718061,18.24635 z"
+       style="fill:#c28d7a;fill-opacity:1;stroke:#c28d7a;stroke-width:2.5827055;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+    <path
+       sodipodi:nodetypes="cssscccccsssssscccccscccc"
+       inkscape:connector-curvature="0"
+       id="path3413-4"
+       d="m 40.02627,196.80058 c -4.081047,-0.85183 -8.893181,-4.4331 -12.118705,-9.01895 -2.574699,-3.66055 -2.968499,-4.77196 -3.217174,-9.07975 -0.225728,-3.91026 0.02626,-5.50261 1.238738,-7.82901 1.978236,-3.79558 5.317704,-6.49476 9.1949,-7.43194 15.821543,-2.73642 31.946425,-25.77525 26.179322,-39.96449 -7.960186,-8.92255 -24.691893,-11.55091 -27.871372,-22.09294 -2.488407,-8.77017 1.364099,-17.64625 9.204549,-21.207043 11.787918,-3.571314 10.973158,3.724664 22.657108,4.412352 1.480297,0 1.581404,-1.3344 0.248129,-3.274822 -0.53918,-0.784714 -1.786185,-3.542459 -2.77112,-6.128329 -2.31819,-6.086202 -2.440763,-14.258406 -0.312863,-20.859384 2.58068,-8.005546 11.447025,-16.923746 18.818111,-18.928159 3.951267,-1.074465 14.907962,-0.873727 18.414856,0.337372 11.407281,3.939505 19.199951,15.663235 19.250881,28.962052 0.0216,5.635001 -3.41523,5.942157 -8.15429,16.278432 10.16341,3.222217 27.13609,-12.889446 35.45031,8.970028 1.73729,4.838255 1.79817,7.119086 0.30241,11.331121 -4.12628,11.8229 -25.2954,15.40232 -27.96739,22.51427 -0.79605,17.00057 9.28899,35.82692 24.53279,39.30789 4.51484,1.00055 5.89685,1.67242 8.18278,3.97803 6.29,6.34418 5.84894,15.16101 -1.1502,22.99267 -17.46819,16.27551 -35.007,1.43534 -49.8567,-8.53696 -7.120373,-4.76491 -9.885965,-5.37804 -14.93811,-3.31182 -14.629298,7.50083 -27.844172,21.95223 -45.31696,18.57938 z"
+       style="fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:2.62356234;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+    <g
+       transform="matrix(-0.18321792,0,0,0.19145756,487.23846,9.7163698)"
+       id="layer3-8"
+       inkscape:label="Hedgehog"
+       style="fill:#723520;fill-opacity:1;display:inline">
+      <g
+         style="fill:#723520;fill-opacity:1"
+         transform="matrix(0.96657031,-0.23902575,0.27504081,0.96657031,-46.727345,529.97533)"
+         id="g3854-4">
+        <g
+           id="g3843-9"
+           style="fill:#723520;fill-opacity:1;stroke:#723520;stroke-opacity:1"
+           transform="matrix(0.50289393,0.33749497,-0.38577197,0.41118745,2150.4954,-35.802327)">
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3847-1"
+             d="M 539.75014,184.97991 289.94272,20.934533 c -10.12171,-6.646795 -18.53237,-1.405552 -18.77514,8.934515 l -6.50762,277.176512"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3821-7"
+             d="M 480.10727,181.8052 317.21732,74.837421 c -12.48356,-8.197799 -12.24256,-8.157389 -12.24256,5.825858 l -4.24337,180.736311"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M 539.75014,184.97991 292.73724,-3.8875338 C 282.61553,-10.534329 265.49585,12.558817 265.25308,22.898884 l -0.59312,284.146676"
+             id="path3790-1"
+             sodipodi:nodetypes="cccc" />
+        </g>
+        <g
+           style="fill:#723520;fill-opacity:1;stroke:#723520;stroke-opacity:1"
+           id="g3839-5"
+           transform="matrix(0.50289393,0.33749497,-0.38577197,0.41118745,2150.4954,-35.802327)">
+          <path
+             inkscape:connector-curvature="0"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M 394.49409,176.74515 96.356601,156.04088 C 84.276653,155.202 79.509956,163.89039 84.36166,173.02478 l 130.05508,244.85679"
+             id="path3823-0"
+             sodipodi:nodetypes="cccc" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path3849-4"
+             d="m 94.1875,156 c -10.459488,0.29677 -14.360973,8.46776 -9.8125,17.03125 L 102.0625,206.3125 359.09375,224.15625 394.5,176.75 96.34375,156.03125 c -0.754997,-0.0524 -1.458951,-0.051 -2.15625,-0.0313 z"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3813-8"
+             d="M 394.49409,176.74515 105.58837,126.93409 c -12.079948,-0.83888 -42.559461,31.27889 -37.707757,40.41328 l 146.536127,250.5342"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        </g>
+        <g
+           id="g3835-8"
+           style="fill:#723520;fill-opacity:1;stroke:#723520;stroke-opacity:1"
+           transform="matrix(0.50289393,0.33749497,-0.38577197,0.41118745,2150.4954,-35.802327)">
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3827-4"
+             d="M 305.99695,247.38296 28.159159,357.4774 c -11.257429,4.46082 -11.804016,14.3558 -3.482965,20.49879 L 247.73076,542.64501"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path3854-0"
+             d="M 306,247.375 28.15625,357.46875 c -11.257429,4.46082 -11.789801,14.35701 -3.46875,20.5 l 37.5,27.6875 230.625,-91.375 L 306,247.375 z"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M 305.99695,247.38296 33.279706,328.52387 c -11.257429,4.46082 -16.924563,43.30933 -8.603512,49.45232 L 247.73076,542.64501"
+             id="path3815-7"
+             sodipodi:nodetypes="cccc" />
+        </g>
+        <g
+           id="g3831-9"
+           style="fill:#723520;fill-opacity:1;stroke:#723520;stroke-opacity:1"
+           transform="matrix(0.50289393,0.33749497,-0.38577197,0.41118745,2150.4954,-35.802327)">
+          <path
+             inkscape:connector-curvature="0"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M 228.84636,338.65556 53.568239,580.71384 c -7.101908,9.80772 -2.250103,18.44887 8.068116,19.16343 l 276.590465,19.15401"
+             id="path3829-3"
+             sodipodi:nodetypes="cccc" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path3859-2"
+             d="M 228.84375,338.65625 53.5625,580.71875 c -7.101908,9.80772 -2.255719,18.44169 8.0625,19.15625 l 41.84375,2.90625 148.4375,-205 -23.0625,-59.125 z"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3817-4"
+             d="M 228.84636,338.65556 52.305784,565.48076 c -7.101908,9.80772 -0.987648,33.68195 9.330571,34.39651 l 276.590465,19.15401"
+             style="color:#000000;fill:#723520;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        </g>
+      </g>
+      <path
+         style="fill:#723520;fill-opacity:1;stroke:none;display:inline"
+         d="m 2121.9562,324.13194 c -9.3392,0.43178 -10.9363,13.96002 -1.0849,20.37986 25.6824,16.73645 81.3129,18.62124 107.9526,-3.09093 6.7091,-5.46806 2.8527,-10.9321 -0.9857,-9.24912 -8.0499,3.52956 -21.9199,7.6416 -39.9625,9.12974 -29.0269,2.39406 -55.9705,-17.62952 -65.9195,-17.16955 z"
+         id="path3864-0-1"
+         sodipodi:nodetypes="csssss"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       transform="matrix(-0.18321792,0,0,0.19145756,484.71304,7.234715)"
+       id="layer3"
+       inkscape:label="Hedgehog"
+       style="display:inline">
+      <g
+         transform="matrix(0.96657031,-0.23902575,0.27504081,0.96657031,-46.727345,529.97533)"
+         id="g3854">
+        <g
+           id="g3843"
+           style="fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-opacity:1"
+           transform="matrix(0.50289393,0.33749497,-0.38577197,0.41118745,2150.4954,-35.802327)">
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3847"
+             d="M 539.75014,184.97991 289.94272,20.934533 c -10.12171,-6.646795 -18.53237,-1.405552 -18.77514,8.934515 l -6.50762,277.176512"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3821"
+             d="M 480.10727,181.8052 317.21732,74.837421 c -12.48356,-8.197799 -12.24256,-8.157389 -12.24256,5.825858 l -4.24337,180.736311"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M 539.75014,184.97991 289.94272,20.934533 c -10.12171,-6.646795 -18.53237,-1.405552 -18.77514,8.934515 l -6.50762,277.176512"
+             id="path3790"
+             sodipodi:nodetypes="cccc" />
+        </g>
+        <g
+           style="fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-opacity:1"
+           id="g3839"
+           transform="matrix(0.50289393,0.33749497,-0.38577197,0.41118745,2150.4954,-35.802327)">
+          <path
+             inkscape:connector-curvature="0"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M 394.49409,176.74515 96.356601,156.04088 C 84.276653,155.202 79.509956,163.89039 84.36166,173.02478 l 130.05508,244.85679"
+             id="path3823"
+             sodipodi:nodetypes="cccc" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path3849"
+             d="m 94.1875,156 c -10.459488,0.29677 -14.360973,8.46776 -9.8125,17.03125 L 102.0625,206.3125 359.09375,224.15625 394.5,176.75 96.34375,156.03125 c -0.754997,-0.0524 -1.458951,-0.051 -2.15625,-0.0313 z"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3813"
+             d="M 394.49409,176.74515 96.356601,156.04088 C 84.276653,155.202 79.509956,163.89039 84.36166,173.02478 l 130.05508,244.85679"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        </g>
+        <g
+           id="g3835"
+           style="fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-opacity:1"
+           transform="matrix(0.50289393,0.33749497,-0.38577197,0.41118745,2150.4954,-35.802327)">
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3827"
+             d="M 305.99695,247.38296 28.159159,357.4774 c -11.257429,4.46082 -11.804016,14.3558 -3.482965,20.49879 L 247.73076,542.64501"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path3854"
+             d="M 306,247.375 28.15625,357.46875 c -11.257429,4.46082 -11.789801,14.35701 -3.46875,20.5 l 37.5,27.6875 230.625,-91.375 L 306,247.375 z"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M 305.99695,247.38296 28.159159,357.4774 c -11.257429,4.46082 -11.804016,14.3558 -3.482965,20.49879 L 247.73076,542.64501"
+             id="path3815"
+             sodipodi:nodetypes="cccc" />
+        </g>
+        <g
+           id="g3831"
+           style="fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-opacity:1"
+           transform="matrix(0.50289393,0.33749497,-0.38577197,0.41118745,2150.4954,-35.802327)">
+          <path
+             inkscape:connector-curvature="0"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M 228.84636,338.65556 53.568239,580.71384 c -7.101908,9.80772 -2.250103,18.44887 8.068116,19.16343 l 276.590465,19.15401"
+             id="path3829"
+             sodipodi:nodetypes="cccc" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path3859"
+             d="M 228.84375,338.65625 53.5625,580.71875 c -7.101908,9.80772 -2.255719,18.44169 8.0625,19.15625 l 41.84375,2.90625 148.4375,-205 -23.0625,-59.125 z"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc"
+             id="path3817"
+             d="M 228.84636,338.65556 53.568239,580.71384 c -7.101908,9.80772 -2.250103,18.44887 8.068116,19.16343 l 276.590465,19.15401"
+             style="color:#000000;fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:22;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        </g>
+      </g>
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 2121.9562,324.13194 c -9.3392,0.43178 -10.9363,13.96002 -1.0849,20.37986 25.6824,16.73645 81.3129,18.62124 107.9526,-3.09093 6.7091,-5.46806 2.8527,-10.9321 -0.9857,-9.24912 -8.0499,3.52956 -21.9199,7.6416 -39.9625,9.12974 -29.0269,2.39406 -55.9705,-17.62952 -65.9195,-17.16955 z"
+         id="path3864-0"
+         sodipodi:nodetypes="csssss"
+         inkscape:connector-curvature="0" />
+    </g>
+    <path
+       sodipodi:nodetypes="cssscccccsssssscccccscccc"
+       inkscape:connector-curvature="0"
+       id="path3413"
+       d="m 35.046247,193.18324 c -4.027113,-0.83656 -8.775652,-4.35365 -11.958547,-8.85729 -2.540672,-3.59494 -2.929268,-4.68644 -3.174659,-8.917 -0.222745,-3.84017 0.02587,-5.40399 1.222367,-7.68869 1.952094,-3.72753 5.247429,-6.37833 9.073385,-7.29871 15.612449,-2.68738 31.524227,-25.31324 25.833342,-39.24814 -7.854986,-8.76263 -24.365571,-11.34387 -27.503031,-21.696931 -2.45552,-8.612977 1.346071,-17.329957 9.082904,-20.826923 11.632132,-3.507299 10.828139,3.6579 22.357676,4.333262 1.460735,0 1.560504,-1.310482 0.24485,-3.216122 -0.532054,-0.770648 -1.762579,-3.478961 -2.734497,-6.018481 -2.287553,-5.977109 -2.408506,-14.002829 -0.308729,-20.485487 2.546574,-7.86205 11.295745,-16.620394 18.569416,-18.588878 3.899048,-1.055205 14.710942,-0.858065 18.171489,0.331325 11.256517,3.868891 18.946217,15.382477 18.996467,28.442916 0.0213,5.533997 -0.85774,8.495785 -5.53417,18.646786 10.02909,3.16446 24.26511,-15.318545 32.46946,6.149106 1.71433,4.751529 1.77439,6.991477 0.2984,11.128016 -4.07174,11.610971 -24.9611,15.126241 -27.59778,22.110711 -0.78552,16.69584 9.16624,35.18473 24.20858,38.60331 4.45517,0.98262 5.81892,1.64244 8.07464,3.90672 6.20687,6.23047 5.77164,14.88925 -1.13501,22.58054 -17.23733,15.98378 -34.54435,1.40961 -49.197801,-8.38394 -7.026272,-4.6795 -9.755314,-5.28164 -14.740692,-3.25246 -14.43596,7.36639 -27.47619,21.55874 -44.71806,18.24636 z"
+       style="fill:#a85b41;fill-opacity:1;stroke:#723520;stroke-width:2.5827055;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+    <g
+       id="g4192">
+      <g
+         id="g4174">
+        <g
+           style="opacity:0.3;fill:#333333"
+           transform="translate(0.2929335,0.80000001)"
+           id="g5218-6">
+          <path
+             sodipodi:type="arc"
+             style="fill:#333333;fill-opacity:1;stroke:none"
+             id="path4640-8"
+             sodipodi:cx="68.720268"
+             sodipodi:cy="34.923569"
+             sodipodi:rx="3.6946383"
+             sodipodi:ry="3.6946383"
+             d="m 72.414907,34.923569 c 0,2.040492 -1.654146,3.694638 -3.694639,3.694638 -2.040492,0 -3.694638,-1.654146 -3.694638,-3.694638 0,-2.040493 1.654146,-3.694639 3.694638,-3.694639 2.040493,0 3.694639,1.654146 3.694639,3.694639 z"
+             transform="matrix(1.1638487,0,0,1.1638487,-6.5284254,13.05425)" />
+          <path
+             style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none"
+             d="m 69.519448,55.437067 c -0.176864,-0.372713 -0.319506,-1.133697 -0.316981,-1.691076 0.01222,-2.698086 2.392008,-4.731912 4.982537,-4.258201 3.575769,1.70382 -2.663151,2.858656 -4.665556,5.949277 z"
+             id="path5209-2"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cscc" />
+          <g
+             style="fill:#333333"
+             id="g5215-9">
+            <path
+               inkscape:connector-curvature="0"
+               id="path5211-5"
+               d="m 72.598912,57.905547 c -1.287504,-0.251441 -2.459563,-1.198389 -3.062658,-2.474429 -0.301428,-0.637766 -0.331829,-0.794183 -0.329511,-1.695341 0.002,-0.785956 0.05242,-1.117962 0.241949,-1.593845 0.766454,-1.924482 2.830879,-3.060633 4.811057,-2.647754 0.882537,0.184014 1.459382,0.469837 2.053546,1.017518 1.009052,0.930112 1.45395,2.026954 1.387334,3.420303 -0.03517,0.735578 -0.103136,1.031252 -0.363679,1.582089 -0.848425,1.793733 -2.787404,2.772406 -4.738038,2.391459 z"
+               style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none" />
+          </g>
+          <path
+             style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none"
+             d="m 72.174852,57.724809 c 3.228087,-1.125211 2.774963,-1.437894 5.102034,-2.281758 -0.349179,0.745349 -0.680675,1.151436 -1.356095,1.661232 -0.984307,0.742939 -2.657141,1.02005 -3.745941,0.620528 z"
+             id="path5213-3"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccscc" />
+        </g>
+        <g
+           style="opacity:0.3;fill:#333333"
+           transform="translate(22.165191,1)"
+           id="g5218-6-4">
+          <path
+             sodipodi:type="arc"
+             style="fill:#333333;fill-opacity:1;stroke:none"
+             id="path4640-8-8"
+             sodipodi:cx="68.720268"
+             sodipodi:cy="34.923569"
+             sodipodi:rx="3.6946383"
+             sodipodi:ry="3.6946383"
+             d="m 72.414907,34.923569 c 0,2.040492 -1.654146,3.694638 -3.694639,3.694638 -2.040492,0 -3.694638,-1.654146 -3.694638,-3.694638 0,-2.040493 1.654146,-3.694639 3.694638,-3.694639 2.040493,0 3.694639,1.654146 3.694639,3.694639 z"
+             transform="matrix(1.1638487,0,0,1.1638487,-6.5284254,13.05425)" />
+          <path
+             style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none"
+             d="m 69.519448,55.437067 c -0.176864,-0.372713 -0.319506,-1.133697 -0.316981,-1.691076 0.01222,-2.698086 2.392008,-4.731912 4.982537,-4.258201 3.575769,1.70382 -2.663151,2.858656 -4.665556,5.949277 z"
+             id="path5209-2-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cscc" />
+          <g
+             style="fill:#333333"
+             id="g5215-9-3">
+            <path
+               inkscape:connector-curvature="0"
+               id="path5211-5-8"
+               d="m 72.598912,57.905547 c -1.287504,-0.251441 -2.459563,-1.198389 -3.062658,-2.474429 -0.301428,-0.637766 -0.331829,-0.794183 -0.329511,-1.695341 0.002,-0.785956 0.05242,-1.117962 0.241949,-1.593845 0.766454,-1.924482 2.830879,-3.060633 4.811057,-2.647754 0.882537,0.184014 1.459382,0.469837 2.053546,1.017518 1.009052,0.930112 1.45395,2.026954 1.387334,3.420303 -0.03517,0.735578 -0.103136,1.031252 -0.363679,1.582089 -0.848425,1.793733 -2.787404,2.772406 -4.738038,2.391459 z"
+               style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none" />
+          </g>
+          <path
+             style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none"
+             d="m 72.174852,57.724809 c 3.228087,-1.125211 2.774963,-1.437894 5.102034,-2.281758 -0.349179,0.745349 -0.680675,1.151436 -1.356095,1.661232 -0.984307,0.742939 -2.657141,1.02005 -3.745941,0.620528 z"
+             id="path5213-3-5"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccscc" />
+        </g>
+        <g
+           style="opacity:0.35;fill:#333333"
+           id="g5354-5"
+           transform="translate(0.41395149,1.0921216)">
+          <path
+             style="fill:#333333;fill-opacity:1;stroke:none"
+             d="m 71.451653,73.530518 c -0.141796,0 -0.257811,-0.565079 -0.257811,-1.255735 0,-1.740407 1.254076,-3.681412 2.449204,-2.260333 10.745912,12.77753 21.117581,2.210039 22.558458,0 0.911641,-1.39829 2.320299,0.570313 2.320299,2.134755 -6.193528,12.701643 -23.62967,7.81445 -27.07015,1.381313 z"
+             id="path4662-5"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cssscc" />
+          <path
+             style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none"
+             d="m 78.105064,78.818884 c -0.08937,0.0079 -0.193776,-0.134777 -0.232006,-0.317042 -0.09634,-0.459299 0.586649,-1.041342 1.418589,-0.73284 7.48033,2.773871 13.432534,-0.592245 14.218368,-1.255684 0.497198,-0.419758 1.49403,0.02135 1.580629,0.434212 -3.200628,3.696753 -14.460979,3.377567 -16.98558,1.871354 z"
+             id="path4662-3-6"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cssscc" />
+          <path
+             style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none"
+             d="m 83.501133,77.238725 c -1.107062,-0.127702 -2.366952,-0.400222 -3.44134,-0.74438 -0.524597,-0.168043 -1.11895,-0.305533 -1.320786,-0.305533 -2.05479,-1.22476 -3.778445,-1.367979 -5.610389,-2.815573 -0.813858,-0.637761 -1.979512,-1.096117 -1.492454,-2.732041 0.326887,-0.665676 0.738569,-1.021398 1.182079,-1.021398 0.240777,0 0.560155,0.272187 1.760371,1.500258 1.638015,1.67603 2.686142,2.539235 4.084716,3.364044 4.541995,2.678642 9.342147,2.312778 14.136657,-1.07749 0.826041,-0.584106 1.938511,-1.595344 2.702094,-2.431176 1.419688,1.673715 -0.06612,2.70602 -1.903081,3.892157 -1.133509,0.747108 -2.744156,1.48649 -4.01006,1.838896 -1.761659,0.490417 -4.428853,0.723601 -6.087807,0.532236 z"
+             id="path5276-0"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cscccssssccsc" />
+        </g>
+      </g>
+      <g
+         id="g4097"
+         transform="translate(0.10130538,-0.12698573)">
+        <g
+           transform="translate(-0.15156954,0)"
+           id="g5218">
+          <path
+             sodipodi:type="arc"
+             style="fill:#e4c6a4;fill-opacity:1;stroke:none"
+             id="path4640"
+             sodipodi:cx="68.720268"
+             sodipodi:cy="34.923569"
+             sodipodi:rx="3.6946383"
+             sodipodi:ry="3.6946383"
+             d="m 72.414907,34.923569 c 0,2.040492 -1.654146,3.694638 -3.694639,3.694638 -2.040492,0 -3.694638,-1.654146 -3.694638,-3.694638 0,-2.040493 1.654146,-3.694639 3.694638,-3.694639 2.040493,0 3.694639,1.654146 3.694639,3.694639 z"
+             transform="matrix(1.1638487,0,0,1.1638487,-6.5284254,13.05425)" />
+          <path
+             style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none"
+             d="m 69.519448,55.437067 c -0.176864,-0.372713 -0.319506,-1.133697 -0.316981,-1.691076 0.01222,-2.698086 2.392008,-4.731912 4.982537,-4.258201 3.575769,1.70382 -2.663151,2.858656 -4.665556,5.949277 z"
+             id="path5209"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cscc" />
+          <g
+             id="g5215">
+            <path
+               inkscape:connector-curvature="0"
+               id="path5211"
+               d="m 72.598912,57.905547 c -1.287504,-0.251441 -2.459563,-1.198389 -3.062658,-2.474429 -0.301428,-0.637766 -0.331829,-0.794183 -0.329511,-1.695341 0.002,-0.785956 0.05242,-1.117962 0.241949,-1.593845 0.766454,-1.924482 2.830879,-3.060633 4.811057,-2.647754 0.882537,0.184014 1.459382,0.469837 2.053546,1.017518 1.009052,0.930112 1.45395,2.026954 1.387334,3.420303 -0.03517,0.735578 -0.103136,1.031252 -0.363679,1.582089 -0.848425,1.793733 -2.787404,2.772406 -4.738038,2.391459 z"
+               style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+          </g>
+          <path
+             style="opacity:0.3;fill:#808080;fill-opacity:1;stroke:none"
+             d="m 72.174852,57.724809 c 3.228087,-1.125211 2.774963,-1.437894 5.102034,-2.281758 -0.349179,0.745349 -0.680675,1.151436 -1.356095,1.661232 -0.984307,0.742939 -2.657141,1.02005 -3.745941,0.620528 z"
+             id="path5213"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccscc" />
+        </g>
+        <g
+           transform="translate(21.711643,1.2505069e-8)"
+           id="g5218-2">
+          <path
+             sodipodi:type="arc"
+             style="fill:#e4c6a4;fill-opacity:1;stroke:none"
+             id="path4640-0"
+             sodipodi:cx="68.720268"
+             sodipodi:cy="34.923569"
+             sodipodi:rx="3.6946383"
+             sodipodi:ry="3.6946383"
+             d="m 72.414907,34.923569 c 0,2.040492 -1.654146,3.694638 -3.694639,3.694638 -2.040492,0 -3.694638,-1.654146 -3.694638,-3.694638 0,-2.040493 1.654146,-3.694639 3.694638,-3.694639 2.040493,0 3.694639,1.654146 3.694639,3.694639 z"
+             transform="matrix(1.1638487,0,0,1.1638487,-6.5284254,13.05425)" />
+          <path
+             style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none"
+             d="m 69.519448,55.437067 c -0.176864,-0.372713 -0.319506,-1.133697 -0.316981,-1.691076 0.01222,-2.698086 2.392008,-4.731912 4.982537,-4.258201 3.575769,1.70382 -2.663151,2.858656 -4.665556,5.949277 z"
+             id="path5209-7"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cscc" />
+          <g
+             id="g5215-7">
+            <path
+               inkscape:connector-curvature="0"
+               id="path5211-8"
+               d="m 72.598912,57.905547 c -1.287504,-0.251441 -2.459563,-1.198389 -3.062658,-2.474429 -0.301428,-0.637766 -0.331829,-0.794183 -0.329511,-1.695341 0.002,-0.785956 0.05242,-1.117962 0.241949,-1.593845 0.766454,-1.924482 2.830879,-3.060633 4.811057,-2.647754 0.882537,0.184014 1.459382,0.469837 2.053546,1.017518 1.009052,0.930112 1.45395,2.026954 1.387334,3.420303 -0.03517,0.735578 -0.103136,1.031252 -0.363679,1.582089 -0.848425,1.793733 -2.787404,2.772406 -4.738038,2.391459 z"
+               style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+          </g>
+          <path
+             style="opacity:0.3;fill:#808080;fill-opacity:1;stroke:none"
+             d="m 72.174852,57.724809 c 3.228087,-1.125211 2.774963,-1.437894 5.102034,-2.281758 -0.349179,0.745349 -0.680675,1.151436 -1.356095,1.661232 -0.984307,0.742939 -2.657141,1.02005 -3.745941,0.620528 z"
+             id="path5213-4"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccscc" />
+        </g>
+        <g
+           id="g5354">
+          <path
+             style="fill:#e4c6a4;fill-opacity:1;stroke:none"
+             d="m 71.451653,73.530518 c -0.141796,0 -0.257811,-0.565079 -0.257811,-1.255735 0,-1.740407 1.254076,-3.681412 2.449204,-2.260333 10.745912,12.77753 21.117581,2.210039 22.558458,0 0.911641,-1.39829 2.320299,0.570313 2.320299,2.134755 -6.193528,12.701643 -23.62967,7.81445 -27.07015,1.381313 z"
+             id="path4662"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cssscc" />
+          <path
+             style="opacity:0.3;fill:#666666;fill-opacity:1;stroke:none"
+             d="m 78.105064,78.818884 c -0.08937,0.0079 -0.193776,-0.134777 -0.232006,-0.317042 -0.09634,-0.459299 0.586649,-1.041342 1.418589,-0.73284 7.48033,2.773871 13.432534,-0.592245 14.218368,-1.255684 0.497198,-0.419758 1.49403,0.02135 1.580629,0.434212 -3.200628,3.696753 -14.460979,3.377567 -16.98558,1.871354 z"
+             id="path4662-3"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cssscc" />
+          <path
+             style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none"
+             d="m 83.501133,77.238725 c -1.107062,-0.127702 -2.366952,-0.400222 -3.44134,-0.74438 -0.524597,-0.168043 -1.11895,-0.305533 -1.320786,-0.305533 -2.05479,-1.22476 -3.778445,-1.367979 -5.610389,-2.815573 -0.813858,-0.637761 -1.979512,-1.096117 -1.492454,-2.732041 0.326887,-0.665676 0.738569,-1.021398 1.182079,-1.021398 0.240777,0 0.560155,0.272187 1.760371,1.500258 1.638015,1.67603 2.686142,2.539235 4.084716,3.364044 4.541995,2.678642 9.342147,2.312778 14.136657,-1.07749 0.826041,-0.584106 1.938511,-1.595344 2.702094,-2.431176 1.419688,1.673715 -0.06612,2.70602 -1.903081,3.892157 -1.133509,0.747108 -2.744156,1.48649 -4.01006,1.838896 -1.761659,0.490417 -4.428853,0.723601 -6.087807,0.532236 z"
+             id="path5276"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cscccssssccsc" />
+        </g>
+        <g
+           id="g3921">
+          <g
+             transform="matrix(0.94457709,0,0,0.97036371,3.4352734,3.6555216)"
+             id="g5386-0"
+             style="opacity:0.35;fill:#333333">
+            <path
+               sodipodi:nodetypes="sssssscssccsss"
+               inkscape:connector-curvature="0"
+               id="path5125-3"
+               d="m 39.543991,107.75727 c -1.910421,-1.54008 0.932822,-2.68246 1.931893,-2.7136 0.7656,-0.0239 1.67161,-0.6 2.127789,-1.57457 1.118914,-2.39044 -1.731344,-4.098831 -0.849014,-6.479312 0.06062,-0.163535 0.184564,-0.338965 0.296307,-0.572121 0.986353,-2.058059 3.2852,-1.492853 4.951141,-4.360274 1.866297,-3.212274 -1.300836,-5.9397 1.645657,-7.838333 0.959562,-0.629718 3.331616,-0.913141 4.52876,-0.347917 0.129282,0.06104 0.264025,0.08725 0.362793,0.263643 1.69987,3.03589 -3.207366,1.206211 -3.05007,3.421278 0.407585,2.695781 0.236832,4.41141 -0.999303,6.886275 -3.02052,4.448031 -6.450557,0.999904 -3.358021,7.850021 0.700992,1.55275 -0.108068,3.47947 -1.867807,4.54034 -3.020945,1.8212 -4.159196,2.18291 -5.720125,0.92457 z"
+               style="fill:#333333;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="csssssssscsssssscccc"
+               inkscape:connector-curvature="0"
+               id="path5286-2"
+               d="m 39.001203,106.7885 c 0.0072,-0.70523 1.094651,-1.45777 2.386425,-1.65148 1.450509,-0.21752 2.368039,-1.2029 2.4587,-2.64052 0.04995,-0.79211 -0.01893,-1.09439 -0.548321,-2.40603 -0.69087,-1.711751 -0.753705,-2.427741 -0.293622,-3.345755 0.465806,-0.929431 0.962109,-1.387271 2.329918,-2.149349 2.070272,-1.153456 3.229697,-2.749102 3.299044,-4.540272 0.01871,-0.483175 -0.02251,-1.552977 -0.0916,-2.377339 -0.150559,-1.796517 -0.08679,-2.103896 0.592467,-2.855751 0.700316,-0.775166 1.677472,-1.099312 3.338029,-1.107304 1.505359,-0.0072 2.026969,0.258157 2.252137,1.145911 0.21064,0.830476 -0.589917,-0.167245 -2.832546,0.393535 -1.148375,0.287157 -1.73807,0.445079 -1.634814,2.614219 0.102161,2.146161 -0.12117,2.803599 -0.819718,4.481596 -0.605729,1.455027 -1.340615,2.522326 -3.061491,3.435872 -1.535862,0.815329 -2.662993,1.003538 -2.413439,2.205635 0.09423,0.453888 0.222131,1.55401 0.539681,2.316992 1.45664,2.7221 1.434463,3.45268 0.02005,4.78183 -0.617653,0.64559 -1.955442,1.55325 -3.065317,1.92714 -1.62521,0.53256 -1.366334,1.10288 -2.455583,-0.22893 z"
+               style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none" />
+          </g>
+          <g
+             id="g5386">
+            <path
+               sodipodi:nodetypes="sssssscssccsss"
+               inkscape:connector-curvature="0"
+               id="path5125"
+               d="m 39.543991,107.75727 c -1.910421,-1.54008 0.932822,-2.68246 1.931893,-2.7136 0.7656,-0.0239 1.67161,-0.6 2.127789,-1.57457 1.118914,-2.39044 -1.731344,-4.098831 -0.849014,-6.479312 0.06062,-0.163535 0.184564,-0.338965 0.296307,-0.572121 0.986353,-2.058059 3.2852,-1.492853 4.951141,-4.360274 1.866297,-3.212274 -1.300836,-5.9397 1.645657,-7.838333 0.959562,-0.629718 3.331616,-0.913141 4.52876,-0.347917 0.129282,0.06104 0.264025,0.08725 0.362793,0.263643 1.69987,3.03589 -3.207366,1.206211 -3.05007,3.421278 0.407585,2.695781 0.236832,4.41141 -0.999303,6.886275 -3.02052,4.448031 -6.450557,0.999904 -3.358021,7.850021 0.700992,1.55275 -0.108068,3.47947 -1.867807,4.54034 -3.020945,1.8212 -4.159196,2.18291 -5.720125,0.92457 z"
+               style="fill:#e4c6a4;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="csssssssscsssssscccc"
+               inkscape:connector-curvature="0"
+               id="path5286"
+               d="m 39.001203,106.7885 c 0.0072,-0.70523 1.094651,-1.45777 2.386425,-1.65148 1.450509,-0.21752 2.368039,-1.2029 2.4587,-2.64052 0.04995,-0.79211 -0.01893,-1.09439 -0.548321,-2.40603 -0.69087,-1.711751 -0.753705,-2.427741 -0.293622,-3.345755 0.465806,-0.929431 0.962109,-1.387271 2.329918,-2.149349 2.070272,-1.153456 3.229697,-2.749102 3.299044,-4.540272 0.01871,-0.483175 -0.02251,-1.552977 -0.0916,-2.377339 -0.150559,-1.796517 -0.08679,-2.103896 0.592467,-2.855751 0.700316,-0.775166 1.677472,-1.099312 3.338029,-1.107304 1.505359,-0.0072 2.026969,0.258157 2.252137,1.145911 0.21064,0.830476 -0.589917,-0.167245 -2.832546,0.393535 -1.148375,0.287157 -1.73807,0.445079 -1.634814,2.614219 0.102161,2.146161 -0.12117,2.803599 -0.819718,4.481596 -0.605729,1.455027 -1.340615,2.522326 -3.061491,3.435872 -1.535862,0.815329 -2.662993,1.003538 -2.413439,2.205635 0.09423,0.453888 0.222131,1.55401 0.539681,2.316992 1.45664,2.7221 1.434463,3.45268 0.02005,4.78183 -0.617653,0.64559 -1.955442,1.55325 -3.065317,1.92714 -1.62521,0.53256 -1.366334,1.10288 -2.455583,-0.22893 z"
+               style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+          </g>
+        </g>
+        <g
+           id="g3916">
+          <path
+             sodipodi:nodetypes="sssssscssccsss"
+             inkscape:connector-curvature="0"
+             id="path5125-3-9"
+             d="m 128.37247,108.82309 c 1.80454,-1.49444 -0.88113,-2.60297 -1.82482,-2.63318 -0.72317,-0.0232 -1.57897,-0.58222 -2.00987,-1.52791 -1.0569,-2.31959 1.63539,-3.97736 0.80196,-6.287288 -0.0573,-0.158688 -0.17433,-0.328919 -0.27988,-0.555165 -0.93169,-1.997066 -3.10313,-1.448611 -4.67674,-4.231052 -1.76285,-3.117074 1.22874,-5.763669 -1.55444,-7.606034 -0.90638,-0.611055 -3.14697,-0.886079 -4.27776,-0.337606 -0.12212,0.05923 -0.2494,0.08467 -0.34269,0.25583 -1.60566,2.945917 3.0296,1.170463 2.88103,3.319884 -0.385,2.615888 -0.22371,4.280672 0.94391,6.682191 2.85311,4.31621 6.09305,0.970271 3.17191,7.61738 -0.66214,1.50673 0.10208,3.37635 1.76429,4.40578 2.85351,1.76722 3.92868,2.11821 5.4031,0.89717 z"
+             style="opacity:0.35;fill:#333333;fill-opacity:1;stroke:none" />
+          <path
+             style="fill:#e4c6a4;fill-opacity:1;stroke:none"
+             d="m 127.68141,107.75727 c 1.91042,-1.54008 -0.93282,-2.68246 -1.9319,-2.7136 -0.7656,-0.0239 -1.67161,-0.6 -2.12778,-1.57457 -1.11892,-2.39044 1.73134,-4.098836 0.84901,-6.479316 -0.0606,-0.16354 -0.18456,-0.33897 -0.29631,-0.57213 -0.98635,-2.058054 -3.2852,-1.49285 -4.95114,-4.36027 -1.86629,-3.212274 1.30084,-5.9397 -1.64565,-7.838333 -0.95956,-0.629718 -3.33162,-0.913141 -4.52876,-0.347917 -0.12928,0.06104 -0.26403,0.08725 -0.36279,0.263643 -1.69987,3.03589 3.20736,1.206211 3.05007,3.421278 -0.40759,2.695781 -0.23684,4.41141 0.9993,6.886276 3.02052,4.448033 6.45055,0.999903 3.35801,7.850029 -0.70098,1.55275 0.10807,3.47947 1.86781,4.54034 3.02095,1.8212 4.1592,2.18291 5.72013,0.92457 z"
+             id="path5125-6"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssscssccsss" />
+          <path
+             sodipodi:nodetypes="csssssssscssssssccccc"
+             inkscape:connector-curvature="0"
+             id="path5286-6"
+             d="m 126.83068,107.52899 c -0.007,-0.70523 -1.09465,-1.45777 -2.38643,-1.65148 -1.45051,-0.21752 -2.36804,-1.2029 -2.4587,-2.64052 -0.0499,-0.79211 0.0189,-1.09439 0.54832,-2.40603 0.69087,-1.711752 0.75371,-2.427741 0.29362,-3.345755 -0.4658,-0.929431 -0.9621,-1.387271 -2.32991,-2.149349 -2.07028,-1.153456 -3.2297,-2.749102 -3.29905,-4.540272 -0.0187,-0.483175 0.0225,-1.552977 0.0916,-2.377339 0.15056,-1.796517 0.0868,-2.103896 -0.59246,-2.855751 -0.70032,-0.775166 -1.67748,-1.099312 -3.33803,-1.107304 -1.50536,-0.0072 -1.36536,0.05735 -1.06986,0.924233 0.23272,0.68269 -0.59236,0.05443 1.65027,0.615213 1.14837,0.287157 1.73807,0.445079 1.63481,2.614219 -0.10216,2.146161 0.12117,2.803599 0.81972,4.481596 0.60573,1.455027 1.34061,2.522326 3.06149,3.435872 1.53586,0.815329 2.66299,1.003538 2.41344,2.205638 -0.0942,0.453887 -0.22213,1.554009 -0.53968,2.316989 -1.45664,2.7221 -1.43447,3.45268 -0.0201,4.78183 0.61765,0.64559 1.95544,1.55325 3.06531,1.92714 1.62521,0.53256 1.36634,1.10288 2.45559,-0.22893 z"
+             style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+        </g>
+        <g
+           transform="translate(1.2540018,0.2090003)"
+           id="g5527">
+          <g
+             transform="translate(1.2898724,1.5621732)"
+             id="g5479-4"
+             style="opacity:0.35;fill:#333333;fill-opacity:1;stroke:none">
+            <path
+               inkscape:connector-curvature="0"
+               id="path3411-7"
+               d="m 91.274051,98.632458 c -0.155806,-2.22403 -0.02775,-2.384808 1.045002,-1.312055 1.495982,1.495983 1.604626,3.850607 0.177564,3.848337 -0.574751,-9.1e-4 -1.124906,-1.14224 -1.222566,-2.536282 z"
+               style="fill:#333333;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="cccsssscccc"
+               inkscape:connector-curvature="0"
+               id="path5033-3"
+               d="m 70.465541,95.803135 c -0.168321,-2.844429 0.03516,-6.561436 1.556878,-6.74649 0.490001,-0.0564 1.214031,0.06995 1.608966,0.28078 3.530599,2.120903 7.512653,4.429593 10.016677,4.290065 4.886039,-0.272262 9.725537,-5.641988 11.858816,-4.517974 1.077172,0.567556 1.005483,4.433537 1.065191,6.570304 0.113672,4.067876 0.06337,5.67349 -0.672757,6.28957 -2.978056,2.4924 -8.123966,-7.165389 -14.643429,-3.658718 -1.241614,0.667839 -4.21499,1.934088 -5.39789,2.612798 -1.339924,0.69216 -2.423748,1.06455 -3.232426,1.04592 -2.704144,-1.15185 -2.027562,-3.905643 -2.160026,-6.166255 z"
+               style="fill:#333333;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="cccscsscssssscc"
+               inkscape:connector-curvature="0"
+               id="path5468-8"
+               d="m 89.386614,94.374383 c -2.499605,0.360354 -3.6768,0.35096 -6.518022,0.518694 -1.007484,0.06423 -2.678612,-0.37732 -4.470511,-1.033726 -2.465577,-0.42607 -3.966551,-1.406934 -4.841292,-0.838586 -3.546268,2.304126 -2.461217,6.086126 -2.847793,3.287017 -0.172016,-0.627925 -0.304389,-2.238002 -0.186923,-3.674363 0.158934,-1.943442 0.557266,-3.087277 1.188863,-3.413888 0.273968,-0.141674 0.975126,-0.142327 1.449851,-0.0013 0.202638,0.06018 1.081531,0.527204 1.953096,1.037838 4.11191,2.40909 6.550278,3.398 8.345852,3.384761 1.854617,-0.01367 3.584136,-0.679464 7.170817,-2.760453 2.782032,-1.614132 3.431268,-1.888643 4.331225,-1.831338 0.404518,0.02576 0.504726,0.06182 0.691869,0.248958 0.645586,0.645586 0.136437,2.207778 -0.584263,2.618747 -2.551623,1.13494 -3.859947,2.497702 -5.682769,2.457639 z"
+               style="opacity:0.35;fill:#333333;fill-opacity:1;stroke:none" />
+            <g
+               transform="translate(0,10)"
+               id="g5474-9"
+               style="fill:#333333;fill-opacity:1;stroke:none">
+              <path
+                 sodipodi:type="arc"
+                 style="fill:#333333;fill-opacity:1;stroke:none"
+                 id="path5035-0"
+                 sodipodi:cx="-113.20371"
+                 sodipodi:cy="51.179974"
+                 sodipodi:rx="8.5715609"
+                 sodipodi:ry="9.0149174"
+                 d="m -104.63215,51.179974 c 0,4.978801 -3.83762,9.014917 -8.57156,9.014917 -4.73394,0 -8.57156,-4.036116 -8.57156,-9.014917 0,-4.978802 3.83762,-9.014918 8.57156,-9.014918 4.73394,0 8.57156,4.036116 8.57156,9.014918 z"
+                 transform="matrix(0.35660502,0,0,0.39297302,123.87758,65.57577)" />
+              <path
+                 style="opacity:0.35;fill:#333333;fill-opacity:1;stroke:none"
+                 d="m 80.971756,87.5373 c -0.980145,-1.860163 -0.334423,-4.217545 1.38201,-5.045399 0.621817,-0.299909 1.163021,-0.362547 1.77589,-0.205537 2.218219,0.869778 0.01646,0.943563 -1.637817,2.155966 -0.874785,0.641121 -1.117408,1.973244 -1.520083,3.09497 z"
+                 id="path5470-5"
+                 inkscape:connector-curvature="0"
+                 sodipodi:nodetypes="cscsc" />
+              <path
+                 style="opacity:0.35;fill:#333333;fill-opacity:1;stroke:none"
+                 d="m 82.966604,89.122715 c 1.136135,-0.870264 2.636318,-2.07946 3.013016,-1.45817 -0.444839,0.760636 -1.148258,1.29942 -1.99683,1.460348 -0.446242,0.08463 -0.578607,0.08434 -1.016186,-0.0022 l 0,0 z"
+                 id="path5472-7"
+                 inkscape:connector-curvature="0"
+                 sodipodi:nodetypes="ccsccc" />
+            </g>
+          </g>
+          <g
+             id="g5479"
+             transform="translate(0.2090003,0.2090003)">
+            <path
+               inkscape:connector-curvature="0"
+               id="path3411"
+               d="m 91.274051,98.632458 c -0.155806,-2.22403 -0.02775,-2.384808 1.045002,-1.312055 1.495982,1.495983 1.604626,3.850607 0.177564,3.848337 -0.574751,-9.1e-4 -1.124906,-1.14224 -1.222566,-2.536282 z"
+               style="fill:#df002c;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="cccsssscccc"
+               inkscape:connector-curvature="0"
+               id="path5033"
+               d="m 70.465541,95.803135 c -0.168321,-2.844429 0.03516,-6.561436 1.556878,-6.74649 0.490001,-0.0564 1.214031,0.06995 1.608966,0.28078 3.530599,2.120903 7.512653,4.429593 10.016677,4.290065 4.886039,-0.272262 9.725537,-5.641988 11.858816,-4.517974 1.077172,0.567556 1.005483,4.433537 1.065191,6.570304 0.113672,4.067876 0.06337,5.67349 -0.672757,6.28957 -2.978056,2.4924 -8.123966,-7.165389 -14.643429,-3.658718 -1.241614,0.667839 -4.21499,1.934088 -5.39789,2.612798 -1.339924,0.69216 -2.423748,1.06455 -3.232426,1.04592 -2.704144,-1.15185 -2.027562,-3.905643 -2.160026,-6.166255 z"
+               style="fill:#f3d209;fill-opacity:1;stroke:#d4aa00" />
+            <path
+               sodipodi:nodetypes="cccscsscssssscc"
+               inkscape:connector-curvature="0"
+               id="path5468"
+               d="m 89.386614,94.374383 c -2.499605,0.360354 -3.6768,0.35096 -6.518022,0.518694 -1.007484,0.06423 -2.678612,-0.37732 -4.470511,-1.033726 -2.465577,-0.42607 -3.966551,-1.406934 -4.841292,-0.838586 -3.546268,2.304126 -2.461217,6.086126 -2.847793,3.287017 -0.172016,-0.627925 -0.304389,-2.238002 -0.186923,-3.674363 0.158934,-1.943442 0.557266,-3.087277 1.188863,-3.413888 0.273968,-0.141674 0.975126,-0.142327 1.449851,-0.0013 0.202638,0.06018 1.081531,0.527204 1.953096,1.037838 4.11191,2.40909 6.550278,3.398 8.345852,3.384761 1.854617,-0.01367 3.584136,-0.679464 7.170817,-2.760453 2.782032,-1.614132 3.431268,-1.888643 4.331225,-1.831338 0.404518,0.02576 0.504726,0.06182 0.691869,0.248958 0.645586,0.645586 0.136437,2.207778 -0.584263,2.618747 -2.551623,1.13494 -3.859947,2.497702 -5.682769,2.457639 z"
+               style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+            <g
+               transform="translate(0,10)"
+               id="g5474">
+              <path
+                 sodipodi:type="arc"
+                 style="fill:#fab62e;fill-opacity:1;stroke:#ffcc00"
+                 id="path5035"
+                 sodipodi:cx="-113.20371"
+                 sodipodi:cy="51.179974"
+                 sodipodi:rx="8.5715609"
+                 sodipodi:ry="9.0149174"
+                 d="m -104.63215,51.179974 c 0,4.978801 -3.83762,9.014917 -8.57156,9.014917 -4.73394,0 -8.57156,-4.036116 -8.57156,-9.014917 0,-4.978802 3.83762,-9.014918 8.57156,-9.014918 4.73394,0 8.57156,4.036116 8.57156,9.014918 z"
+                 transform="matrix(0.35660502,0,0,0.39297302,123.87758,65.57577)" />
+              <path
+                 style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none"
+                 d="m 80.971756,87.5373 c -0.980145,-1.860163 -0.334423,-4.217545 1.38201,-5.045399 0.621817,-0.299909 1.163021,-0.362547 1.77589,-0.205537 2.218219,0.869778 0.01646,0.943563 -1.637817,2.155966 -0.874785,0.641121 -1.117408,1.973244 -1.520083,3.09497 z"
+                 id="path5470"
+                 inkscape:connector-curvature="0"
+                 sodipodi:nodetypes="cscsc" />
+              <path
+                 style="opacity:0.35;fill:#999999;fill-opacity:1;stroke:none"
+                 d="m 82.966604,89.122715 c 1.136135,-0.870264 2.636318,-2.07946 3.013016,-1.45817 -0.444839,0.760636 -1.148258,1.29942 -1.99683,1.460348 -0.446242,0.08463 -0.578607,0.08434 -1.016186,-0.0022 l 0,0 z"
+                 id="path5472"
+                 inkscape:connector-curvature="0"
+                 sodipodi:nodetypes="ccsccc" />
+            </g>
+          </g>
+        </g>
+        <g
+           id="g4078">
+          <g
+             transform="translate(0.45057145,0.93584558)"
+             id="g4019-7"
+             style="opacity:0.35;fill:#333333;stroke:#333333">
+            <path
+               transform="matrix(0.68041931,0,0,0.7023683,-111.90006,37.970885)"
+               d="m 296.36242,110.75687 c 0,3.57825 -2.99433,6.47901 -6.68801,6.47901 -3.69369,0 -6.68801,-2.90076 -6.68801,-6.47901 0,-3.57826 2.99432,-6.47901 6.68801,-6.47901 3.69368,0 6.68801,2.90075 6.68801,6.47901 z"
+               sodipodi:ry="6.4790092"
+               sodipodi:rx="6.6880093"
+               sodipodi:cy="110.75687"
+               sodipodi:cx="289.67441"
+               id="path5189-3"
+               style="fill:#333333;fill-opacity:1;stroke:#333333;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none"
+               sodipodi:type="arc" />
+            <path
+               transform="matrix(1.3744581,0,0,1.2217405,-33.559901,-27.608615)"
+               d="m 88.375745,116.94453 c 0,1.46915 -1.058653,2.66014 -2.364568,2.66014 -1.305915,0 -2.364568,-1.19099 -2.364568,-2.66014 0,-1.46916 1.058653,-2.66014 2.364568,-2.66014 1.305915,0 2.364568,1.19098 2.364568,2.66014 z"
+               sodipodi:ry="2.6601393"
+               sodipodi:rx="2.3645682"
+               sodipodi:cy="116.94453"
+               sodipodi:cx="86.011177"
+               id="path3107-4"
+               style="fill:#333333;fill-opacity:1;stroke:#333333"
+               sodipodi:type="arc" />
+            <path
+               transform="matrix(0.96212063,0,0,0.85521836,1.2049183,14.592376)"
+               d="m 88.375745,116.94453 c 0,1.46915 -1.058653,2.66014 -2.364568,2.66014 -1.305915,0 -2.364568,-1.19099 -2.364568,-2.66014 0,-1.46916 1.058653,-2.66014 2.364568,-2.66014 1.305915,0 2.364568,1.19098 2.364568,2.66014 z"
+               sodipodi:ry="2.6601393"
+               sodipodi:rx="2.3645682"
+               sodipodi:cy="116.94453"
+               sodipodi:cx="86.011177"
+               id="path3107-5-84"
+               style="fill:#333333;fill-opacity:1;stroke:#333333"
+               sodipodi:type="arc" />
+          </g>
+          <g
+             id="g4019">
+            <path
+               transform="matrix(0.68041931,0,0,0.7023683,-111.90006,37.970885)"
+               d="m 296.36242,110.75687 c 0,3.57825 -2.99433,6.47901 -6.68801,6.47901 -3.69369,0 -6.68801,-2.90076 -6.68801,-6.47901 0,-3.57826 2.99432,-6.47901 6.68801,-6.47901 3.69368,0 6.68801,2.90075 6.68801,6.47901 z"
+               sodipodi:ry="6.4790092"
+               sodipodi:rx="6.6880093"
+               sodipodi:cy="110.75687"
+               sodipodi:cx="289.67441"
+               id="path5189"
+               style="fill:#d40000;fill-opacity:1;stroke:#aa0000;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none"
+               sodipodi:type="arc" />
+            <path
+               transform="matrix(1.3744581,0,0,1.2217405,-33.559901,-27.608615)"
+               d="m 88.375745,116.94453 c 0,1.46915 -1.058653,2.66014 -2.364568,2.66014 -1.305915,0 -2.364568,-1.19099 -2.364568,-2.66014 0,-1.46916 1.058653,-2.66014 2.364568,-2.66014 1.305915,0 2.364568,1.19098 2.364568,2.66014 z"
+               sodipodi:ry="2.6601393"
+               sodipodi:rx="2.3645682"
+               sodipodi:cy="116.94453"
+               sodipodi:cx="86.011177"
+               id="path3107"
+               style="fill:#e10f0f;fill-opacity:1;stroke:none"
+               sodipodi:type="arc" />
+            <path
+               transform="matrix(0.96212063,0,0,0.85521836,1.2049183,14.592376)"
+               d="m 88.375745,116.94453 c 0,1.46915 -1.058653,2.66014 -2.364568,2.66014 -1.305915,0 -2.364568,-1.19099 -2.364568,-2.66014 0,-1.46916 1.058653,-2.66014 2.364568,-2.66014 1.305915,0 2.364568,1.19098 2.364568,2.66014 z"
+               sodipodi:ry="2.6601393"
+               sodipodi:rx="2.3645682"
+               sodipodi:cy="116.94453"
+               sodipodi:cx="86.011177"
+               id="path3107-5"
+               style="fill:#eb2828;fill-opacity:1;stroke:none"
+               sodipodi:type="arc" />
+          </g>
+        </g>
+        <g
+           id="g4088">
+          <g
+             transform="translate(0.45057144,20.268372)"
+             id="g4019-7-9"
+             style="opacity:0.35;fill:#333333;stroke:#333333">
+            <path
+               transform="matrix(0.68041931,0,0,0.7023683,-111.90006,37.970885)"
+               d="m 296.36242,110.75687 c 0,3.57825 -2.99433,6.47901 -6.68801,6.47901 -3.69369,0 -6.68801,-2.90076 -6.68801,-6.47901 0,-3.57826 2.99432,-6.47901 6.68801,-6.47901 3.69368,0 6.68801,2.90075 6.68801,6.47901 z"
+               sodipodi:ry="6.4790092"
+               sodipodi:rx="6.6880093"
+               sodipodi:cy="110.75687"
+               sodipodi:cx="289.67441"
+               id="path5189-3-5"
+               style="fill:#333333;fill-opacity:1;stroke:#333333;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none"
+               sodipodi:type="arc" />
+            <path
+               transform="matrix(1.3744581,0,0,1.2217405,-33.559901,-27.608615)"
+               d="m 88.375745,116.94453 c 0,1.46915 -1.058653,2.66014 -2.364568,2.66014 -1.305915,0 -2.364568,-1.19099 -2.364568,-2.66014 0,-1.46916 1.058653,-2.66014 2.364568,-2.66014 1.305915,0 2.364568,1.19098 2.364568,2.66014 z"
+               sodipodi:ry="2.6601393"
+               sodipodi:rx="2.3645682"
+               sodipodi:cy="116.94453"
+               sodipodi:cx="86.011177"
+               id="path3107-4-8"
+               style="fill:#333333;fill-opacity:1;stroke:#333333"
+               sodipodi:type="arc" />
+            <path
+               transform="matrix(0.96212063,0,0,0.85521836,1.2049183,14.592376)"
+               d="m 88.375745,116.94453 c 0,1.46915 -1.058653,2.66014 -2.364568,2.66014 -1.305915,0 -2.364568,-1.19099 -2.364568,-2.66014 0,-1.46916 1.058653,-2.66014 2.364568,-2.66014 1.305915,0 2.364568,1.19098 2.364568,2.66014 z"
+               sodipodi:ry="2.6601393"
+               sodipodi:rx="2.3645682"
+               sodipodi:cy="116.94453"
+               sodipodi:cx="86.011177"
+               id="path3107-5-84-4"
+               style="fill:#333333;fill-opacity:1;stroke:#333333"
+               sodipodi:type="arc" />
+          </g>
+          <path
+             sodipodi:type="arc"
+             style="fill:#d40000;fill-opacity:1;stroke:#aa0000;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none"
+             id="path5189-1"
+             sodipodi:cx="289.67441"
+             sodipodi:cy="110.75687"
+             sodipodi:rx="6.6880093"
+             sodipodi:ry="6.4790092"
+             d="m 296.36242,110.75687 c 0,3.57825 -2.99433,6.47901 -6.68801,6.47901 -3.69369,0 -6.68801,-2.90076 -6.68801,-6.47901 0,-3.57826 2.99432,-6.47901 6.68801,-6.47901 3.69368,0 6.68801,2.90075 6.68801,6.47901 z"
+             transform="matrix(0.68041931,0,0,0.7023683,-111.90006,57.309238)" />
+          <path
+             sodipodi:type="arc"
+             style="fill:#e10f0f;fill-opacity:1;stroke:none"
+             id="path3107-2"
+             sodipodi:cx="86.011177"
+             sodipodi:cy="116.94453"
+             sodipodi:rx="2.3645682"
+             sodipodi:ry="2.6601393"
+             d="m 88.375745,116.94453 c 0,1.46915 -1.058653,2.66014 -2.364568,2.66014 -1.305915,0 -2.364568,-1.19099 -2.364568,-2.66014 0,-1.46916 1.058653,-2.66014 2.364568,-2.66014 1.305915,0 2.364568,1.19098 2.364568,2.66014 z"
+             transform="matrix(1.3744581,0,0,1.2217405,-33.633293,-8.2614887)" />
+          <path
+             sodipodi:type="arc"
+             style="fill:#eb2828;fill-opacity:1;stroke:none"
+             id="path3107-5-8"
+             sodipodi:cx="86.011177"
+             sodipodi:cy="116.94453"
+             sodipodi:rx="2.3645682"
+             sodipodi:ry="2.6601393"
+             d="m 88.375745,116.94453 c 0,1.46915 -1.058653,2.66014 -2.364568,2.66014 -1.305915,0 -2.364568,-1.19099 -2.364568,-2.66014 0,-1.46916 1.058653,-2.66014 2.364568,-2.66014 1.305915,0 2.364568,1.19098 2.364568,2.66014 z"
+             transform="matrix(0.96212063,0,0,0.85521836,1.1315272,33.939497)" />
+        </g>
+        <g
+           id="g3921-0"
+           transform="matrix(1.1442539,0,0,1.1164895,63.57962,63.496638)">
+          <g
+             transform="matrix(0.94457709,0,0,0.97036371,3.4352734,3.6555216)"
+             id="g5386-0-9"
+             style="opacity:0.35;fill:#333333">
+            <path
+               sodipodi:nodetypes="sssssscssccsss"
+               inkscape:connector-curvature="0"
+               id="path5125-3-2"
+               d="m 39.543991,107.75727 c -1.910421,-1.54008 0.932822,-2.68246 1.931893,-2.7136 0.7656,-0.0239 1.67161,-0.6 2.127789,-1.57457 1.118914,-2.39044 -1.731344,-4.098831 -0.849014,-6.479312 0.06062,-0.163535 0.184564,-0.338965 0.296307,-0.572121 0.986353,-2.058059 3.2852,-1.492853 4.951141,-4.360274 1.866297,-3.212274 -1.300836,-5.9397 1.645657,-7.838333 0.959562,-0.629718 3.331616,-0.913141 4.52876,-0.347917 0.129282,0.06104 0.264025,0.08725 0.362793,0.263643 1.69987,3.03589 -3.207366,1.206211 -3.05007,3.421278 0.407585,2.695781 0.236832,4.41141 -0.999303,6.886275 -3.02052,4.448031 -6.450557,0.999904 -3.358021,7.850021 0.700992,1.55275 -0.108068,3.47947 -1.867807,4.54034 -3.020945,1.8212 -4.159196,2.18291 -5.720125,0.92457 z"
+               style="fill:#333333;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="csssssssscsssssscccc"
+               inkscape:connector-curvature="0"
+               id="path5286-2-0"
+               d="m 39.001203,106.7885 c 0.0072,-0.70523 1.094651,-1.45777 2.386425,-1.65148 1.450509,-0.21752 2.368039,-1.2029 2.4587,-2.64052 0.04995,-0.79211 -0.01893,-1.09439 -0.548321,-2.40603 -0.69087,-1.711751 -0.753705,-2.427741 -0.293622,-3.345755 0.465806,-0.929431 0.962109,-1.387271 2.329918,-2.149349 2.070272,-1.153456 3.229697,-2.749102 3.299044,-4.540272 0.01871,-0.483175 -0.02251,-1.552977 -0.0916,-2.377339 -0.150559,-1.796517 -0.08679,-2.103896 0.592467,-2.855751 0.700316,-0.775166 1.677472,-1.099312 3.338029,-1.107304 1.505359,-0.0072 2.026969,0.258157 2.252137,1.145911 0.21064,0.830476 -0.589917,-0.167245 -2.832546,0.393535 -1.148375,0.287157 -1.73807,0.445079 -1.634814,2.614219 0.102161,2.146161 -0.12117,2.803599 -0.819718,4.481596 -0.605729,1.455027 -1.340615,2.522326 -3.061491,3.435872 -1.535862,0.815329 -2.662993,1.003538 -2.413439,2.205635 0.09423,0.453888 0.222131,1.55401 0.539681,2.316992 1.45664,2.7221 1.434463,3.45268 0.02005,4.78183 -0.617653,0.64559 -1.955442,1.55325 -3.065317,1.92714 -1.62521,0.53256 -1.366334,1.10288 -2.455583,-0.22893 z"
+               style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none" />
+          </g>
+          <g
+             id="g5386-08">
+            <path
+               sodipodi:nodetypes="sssssscssccsss"
+               inkscape:connector-curvature="0"
+               id="path5125-9"
+               d="m 39.543991,107.75727 c -1.910421,-1.54008 0.932822,-2.68246 1.931893,-2.7136 0.7656,-0.0239 1.67161,-0.6 2.127789,-1.57457 1.118914,-2.39044 -1.731344,-4.098831 -0.849014,-6.479312 0.06062,-0.163535 0.184564,-0.338965 0.296307,-0.572121 0.986353,-2.058059 3.2852,-1.492853 4.951141,-4.360274 1.866297,-3.212274 -1.300836,-5.9397 1.645657,-7.838333 0.959562,-0.629718 3.331616,-0.913141 4.52876,-0.347917 0.129282,0.06104 0.264025,0.08725 0.362793,0.263643 1.69987,3.03589 -3.207366,1.206211 -3.05007,3.421278 0.407585,2.695781 0.236832,4.41141 -0.999303,6.886275 -3.02052,4.448031 -6.450557,0.999904 -3.358021,7.850021 0.700992,1.55275 -0.108068,3.47947 -1.867807,4.54034 -3.020945,1.8212 -4.159196,2.18291 -5.720125,0.92457 z"
+               style="fill:#e4c6a4;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="csssssssscsssssscccc"
+               inkscape:connector-curvature="0"
+               id="path5286-3"
+               d="m 39.001203,106.7885 c 0.0072,-0.70523 1.094651,-1.45777 2.386425,-1.65148 1.450509,-0.21752 2.368039,-1.2029 2.4587,-2.64052 0.04995,-0.79211 -0.01893,-1.09439 -0.548321,-2.40603 -0.69087,-1.711751 -0.753705,-2.427741 -0.293622,-3.345755 0.465806,-0.929431 0.962109,-1.387271 2.329918,-2.149349 2.070272,-1.153456 3.229697,-2.749102 3.299044,-4.540272 0.01871,-0.483175 -0.02251,-1.552977 -0.0916,-2.377339 -0.150559,-1.796517 -0.08679,-2.103896 0.592467,-2.855751 0.700316,-0.775166 1.677472,-1.099312 3.338029,-1.107304 1.505359,-0.0072 2.026969,0.258157 2.252137,1.145911 0.21064,0.830476 -0.589917,-0.167245 -2.832546,0.393535 -1.148375,0.287157 -1.73807,0.445079 -1.634814,2.614219 0.102161,2.146161 -0.12117,2.803599 -0.819718,4.481596 -0.605729,1.455027 -1.340615,2.522326 -3.061491,3.435872 -1.535862,0.815329 -2.662993,1.003538 -2.413439,2.205635 0.09423,0.453888 0.222131,1.55401 0.539681,2.316992 1.45664,2.7221 1.434463,3.45268 0.02005,4.78183 -0.617653,0.64559 -1.955442,1.55325 -3.065317,1.92714 -1.62521,0.53256 -1.366334,1.10288 -2.455583,-0.22893 z"
+               style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+          </g>
+        </g>
+        <g
+           id="g3921-0-4"
+           transform="matrix(-1.1442539,0,0,1.1164895,105.44353,63.201069)">
+          <g
+             transform="matrix(0.94457709,0,0,0.97036371,3.4352734,3.6555216)"
+             id="g5386-0-9-0"
+             style="opacity:0.35;fill:#333333">
+            <path
+               sodipodi:nodetypes="sssssscssccsss"
+               inkscape:connector-curvature="0"
+               id="path5125-3-2-9"
+               d="m 39.543991,107.75727 c -1.910421,-1.54008 0.932822,-2.68246 1.931893,-2.7136 0.7656,-0.0239 1.67161,-0.6 2.127789,-1.57457 1.118914,-2.39044 -1.731344,-4.098831 -0.849014,-6.479312 0.06062,-0.163535 0.184564,-0.338965 0.296307,-0.572121 0.986353,-2.058059 3.2852,-1.492853 4.951141,-4.360274 1.866297,-3.212274 -1.300836,-5.9397 1.645657,-7.838333 0.959562,-0.629718 3.331616,-0.913141 4.52876,-0.347917 0.129282,0.06104 0.264025,0.08725 0.362793,0.263643 1.69987,3.03589 -3.207366,1.206211 -3.05007,3.421278 0.407585,2.695781 0.236832,4.41141 -0.999303,6.886275 -3.02052,4.448031 -6.450557,0.999904 -3.358021,7.850021 0.700992,1.55275 -0.108068,3.47947 -1.867807,4.54034 -3.020945,1.8212 -4.159196,2.18291 -5.720125,0.92457 z"
+               style="fill:#333333;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="csssssssscsssssscccc"
+               inkscape:connector-curvature="0"
+               id="path5286-2-0-3"
+               d="m 39.001203,106.7885 c 0.0072,-0.70523 1.094651,-1.45777 2.386425,-1.65148 1.450509,-0.21752 2.368039,-1.2029 2.4587,-2.64052 0.04995,-0.79211 -0.01893,-1.09439 -0.548321,-2.40603 -0.69087,-1.711751 -0.753705,-2.427741 -0.293622,-3.345755 0.465806,-0.929431 0.962109,-1.387271 2.329918,-2.149349 2.070272,-1.153456 3.229697,-2.749102 3.299044,-4.540272 0.01871,-0.483175 -0.02251,-1.552977 -0.0916,-2.377339 -0.150559,-1.796517 -0.08679,-2.103896 0.592467,-2.855751 0.700316,-0.775166 1.677472,-1.099312 3.338029,-1.107304 1.505359,-0.0072 2.026969,0.258157 2.252137,1.145911 0.21064,0.830476 -0.589917,-0.167245 -2.832546,0.393535 -1.148375,0.287157 -1.73807,0.445079 -1.634814,2.614219 0.102161,2.146161 -0.12117,2.803599 -0.819718,4.481596 -0.605729,1.455027 -1.340615,2.522326 -3.061491,3.435872 -1.535862,0.815329 -2.662993,1.003538 -2.413439,2.205635 0.09423,0.453888 0.222131,1.55401 0.539681,2.316992 1.45664,2.7221 1.434463,3.45268 0.02005,4.78183 -0.617653,0.64559 -1.955442,1.55325 -3.065317,1.92714 -1.62521,0.53256 -1.366334,1.10288 -2.455583,-0.22893 z"
+               style="opacity:0.3;fill:#333333;fill-opacity:1;stroke:none" />
+          </g>
+          <g
+             id="g5386-08-4">
+            <path
+               sodipodi:nodetypes="sssssscssccsss"
+               inkscape:connector-curvature="0"
+               id="path5125-9-0"
+               d="m 39.543991,107.75727 c -1.910421,-1.54008 0.932822,-2.68246 1.931893,-2.7136 0.7656,-0.0239 1.67161,-0.6 2.127789,-1.57457 1.118914,-2.39044 -1.731344,-4.098831 -0.849014,-6.479312 0.06062,-0.163535 0.184564,-0.338965 0.296307,-0.572121 0.986353,-2.058059 3.2852,-1.492853 4.951141,-4.360274 1.866297,-3.212274 -1.300836,-5.9397 1.645657,-7.838333 0.959562,-0.629718 3.331616,-0.913141 4.52876,-0.347917 0.129282,0.06104 0.264025,0.08725 0.362793,0.263643 1.69987,3.03589 -3.207366,1.206211 -3.05007,3.421278 0.407585,2.695781 0.236832,4.41141 -0.999303,6.886275 -3.02052,4.448031 -6.450557,0.999904 -3.358021,7.850021 0.700992,1.55275 -0.108068,3.47947 -1.867807,4.54034 -3.020945,1.8212 -4.159196,2.18291 -5.720125,0.92457 z"
+               style="fill:#e4c6a4;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="csssssssscsssssscccc"
+               inkscape:connector-curvature="0"
+               id="path5286-3-0"
+               d="m 39.001203,106.7885 c 0.0072,-0.70523 1.094651,-1.45777 2.386425,-1.65148 1.450509,-0.21752 2.368039,-1.2029 2.4587,-2.64052 0.04995,-0.79211 -0.01893,-1.09439 -0.548321,-2.40603 -0.69087,-1.711751 -0.753705,-2.427741 -0.293622,-3.345755 0.465806,-0.929431 0.962109,-1.387271 2.329918,-2.149349 2.070272,-1.153456 3.229697,-2.749102 3.299044,-4.540272 0.01871,-0.483175 -0.02251,-1.552977 -0.0916,-2.377339 -0.150559,-1.796517 -0.08679,-2.103896 0.592467,-2.855751 0.700316,-0.775166 1.677472,-1.099312 3.338029,-1.107304 1.505359,-0.0072 2.026969,0.258157 2.252137,1.145911 0.21064,0.830476 -0.589917,-0.167245 -2.832546,0.393535 -1.148375,0.287157 -1.73807,0.445079 -1.634814,2.614219 0.102161,2.146161 -0.12117,2.803599 -0.819718,4.481596 -0.605729,1.455027 -1.340615,2.522326 -3.061491,3.435872 -1.535862,0.815329 -2.662993,1.003538 -2.413439,2.205635 0.09423,0.453888 0.222131,1.55401 0.539681,2.316992 1.45664,2.7221 1.434463,3.45268 0.02005,4.78183 -0.617653,0.64559 -1.955442,1.55325 -3.065317,1.92714 -1.62521,0.53256 -1.366334,1.10288 -2.455583,-0.22893 z"
+               style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+          </g>
+        </g>
+      </g>
+    </g>
+    <path
+       sodipodi:nodetypes="sssscccscs"
+       inkscape:connector-curvature="0"
+       id="path5278"
+       d="m 73.727515,33.819114 c 0,-0.147736 11.762253,-15.962214 11.908357,-16.010915 0.07725,-0.02575 1.368721,2.231246 2.869929,5.01555 1.501208,2.784304 2.911095,5.39796 3.133081,5.808125 l 0.403612,0.745755 -3.726372,-4.353439 -2.839657,-2.934791 -3.990209,4.652031 c -2.383726,2.779095 -5.593191,6.362395 -7.574009,7.093449 -0.101602,0.0375 -0.184732,0.0304 -0.184732,-0.01577 z"
+       style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="ccscc"
+       inkscape:connector-curvature="0"
+       id="path5280"
+       d="m 91.148034,33.047782 -0.830994,-0.11371 10.9543,-4.896026 c 6.02487,-2.692814 10.96381,-4.887429 10.97543,-4.876922 -3.28922,4.837992 -14.33903,6.79977 -21.098736,9.886658 z"
+       style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="csscc"
+       inkscape:connector-curvature="0"
+       id="path5282"
+       d="m 104.92238,40.127236 1.60723,-0.121121 c 0.88398,-0.06662 6.1517,-0.181926 11.70604,-0.256243 l 10.09882,-0.135121 c -9.21358,2.703333 -9.4254,2.536293 -23.41209,0.512485 z"
+       style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="ccsccsc"
+       inkscape:connector-curvature="0"
+       id="path5284"
+       d="m 111.46779,49.970304 c -0.39002,-0.855839 -0.62636,-1.52542 -0.5252,-1.487958 0.10115,0.03746 5.65389,2.935103 12.33942,6.439202 l 12.1555,6.371088 -0.79682,0.341741 c -8.48343,-3.873307 -14.12477,-6.591977 -17.91473,-8.00415 -3.21298,-1.197184 -5.21295,-1.102638 -5.25817,-3.659923 z"
+       style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="csssssssssssssssscssssssccsscc"
+       inkscape:connector-curvature="0"
+       id="path4289"
+       d="m 34.218418,191.27307 c -2.935172,-0.94547 -7.29135,-4.60593 -9.907996,-8.3256 -2.192913,-3.11732 -2.429729,-3.81472 -2.627888,-7.73882 -0.361172,-7.15226 2.510264,-11.1175 9.64701,-13.32182 10.310452,-3.18457 18.223025,-10.04582 23.572044,-20.4401 3.590077,-6.97628 4.596188,-12.62212 3.286805,-18.44409 -0.777806,-3.4584 -3.763943,-6.15993 -11.608592,-10.50222 -8.893057,-4.92263 -12.966635,-7.85753 -14.847662,-10.69737 -2.295296,-3.465261 -2.862564,-7.448814 -1.652771,-11.606313 1.676768,-5.762276 5.431279,-9.426991 10.799786,-10.541489 3.091392,-0.64177 3.308802,-0.595678 8.525831,1.807516 6.725501,3.098066 11.865469,3.817163 12.939519,1.810281 0.568236,-1.061758 0.416934,-1.860405 -0.882421,-4.657856 -3.705176,-7.977074 -4.567176,-12.545473 -3.701563,-19.617415 0.762458,-6.229179 3.164406,-10.941612 8.07738,-15.847186 6.645704,-6.635694 12.429957,-8.423225 23.303528,-7.201583 11.308602,1.270518 -20.425317,5.995226 -23.274502,18.882391 -3.615811,16.354689 1.275964,23.83063 2.247741,28.381403 1.276736,6.231528 -4.08591,6.872996 -13.459648,5.645646 -10.460072,-1.36959 -16.474357,-6.352065 -18.253564,0.748318 -4.520269,18.039297 24.304624,21.458917 26.872214,32.106587 2.40166,9.95957 -4.487667,24.66173 -7.506188,29.73678 -8.436046,14.18356 -24.920678,14.94815 -27.120335,20.23142 -3.524652,8.46573 4.349755,16.01972 12.734659,14.4308 7.305106,-1.38429 42.132761,-21.36195 49.167271,-16.03169 9.608294,6.98475 13.258154,11.57752 12.526694,12.43551 -10.212854,-7.75754 -15.664132,-11.04825 -20.441064,-9.60605 -7.09334,2.14155 -8.395301,4.73386 -14.019816,6.93541 -9.08195,3.55485 -9.078613,8.87356 -20.639051,10.911 -4.343152,1.32128 -10.537167,1.55384 -13.757421,0.51654 z"
+       style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Girder.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Girder.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,138 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="116"
+   height="18"
+   sodipodi:docname="Girder.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/Girder.png"
+   inkscape:export-xdpi="180"
+   inkscape:export-ydpi="180">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:zoom="3.7075701"
+     inkscape:cx="104.45559"
+     inkscape:cy="11.324613"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g4541-3" />
+  <rect
+     style="fill:#ec0000;fill-opacity:1;stroke:#000000;stroke-width:1.37790656;stroke-miterlimit:4;stroke-dasharray:none"
+     id="rect3631"
+     width="118.14692"
+     height="8.2908115"
+     x="-0.80874836"
+     y="4.140759" />
+  <g
+     id="g4473"
+     transform="translate(10.489585,22.886368)">
+    <g
+       id="g4541"
+       transform="translate(0.6,0)">
+      <path
+         style="fill:#ffe1e1;fill-opacity:1;stroke:none"
+         d="m -7.989585,-17.997061 7.636388,0 c -0.038731,2.009251 2.6066619,4.679765 5.523273,6.810049 l -7.6710956,0 c -1.930936,0.06037 -4.8095434,-4.139973 -5.4885654,-6.810049 z"
+         id="path4403-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+      <path
+         style="fill:#ffe1e1;fill-opacity:1;stroke:none"
+         d="m 9.510415,-17.997061 7.636388,0 c -0.03873,2.009251 2.606662,4.679765 5.523273,6.810049 l -7.671096,0 c -1.930936,0.06037 -4.809543,-4.139973 -5.488565,-6.810049 z"
+         id="path4403-0-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+    </g>
+    <g
+       transform="translate(41.154329,3.8943275e-7)"
+       id="g4541-0">
+      <path
+         style="fill:#ffe1e1;fill-opacity:1;stroke:none"
+         d="m -11.043914,-17.997061 7.636388,0 c -0.038731,2.009251 2.6066619,4.679765 5.523273,6.810049 l -7.6710956,0 c -1.930936,0.06037 -4.8095434,-4.139973 -5.4885654,-6.810049 z"
+         id="path4403-0-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+      <path
+         style="fill:#ffe1e1;fill-opacity:1;stroke:none"
+         d="m 8.956086,-17.997061 7.636388,0 c -0.03873,2.009251 2.606662,4.679765 5.523273,6.810049 l -7.671096,0 c -1.930936,0.06037 -4.809543,-4.139973 -5.488565,-6.810049 z"
+         id="path4403-0-7-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+    </g>
+    <g
+       transform="translate(77.365735,3.8943275e-7)"
+       id="g4541-3">
+      <path
+         style="fill:#ffe1e1;fill-opacity:1;stroke:none"
+         d="m -7.2553204,-17.997061 7.636388,0 c -0.038731,2.009251 2.6066619,4.679765 5.523273,6.810049 l -7.6710956,0 c -1.930936,0.06037 -4.8095434,-4.139973 -5.4885654,-6.810049 z"
+         id="path4403-0-8"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+      <path
+         style="fill:#ffe1e1;fill-opacity:1;stroke:none"
+         d="m 12.74468,-17.997061 7.636388,0 c -0.03873,2.009251 2.606662,4.679765 5.523273,6.810049 l -7.671096,0 c -1.930936,0.06037 -4.809543,-4.139973 -5.488565,-6.810049 z"
+         id="path4403-0-7-6"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+    </g>
+  </g>
+  <g
+     id="g4518"
+     transform="matrix(1.0011504,0,0,1,-0.12048265,0.12194956)">
+    <path
+       sodipodi:nodetypes="ccccccccc"
+       inkscape:connector-curvature="0"
+       id="path4480"
+       d="M 0.08149225,6.7743026 0.09834967,4.8695865 58.346371,4.8527291 116.61125,4.7515847 l 0,1.9047161 -15.34024,-0.8261832 -42.756065,0 -49.3641703,0.4045777 z"
+       style="opacity:0.35;fill:#ffffff;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="ccccccccc"
+       inkscape:connector-curvature="0"
+       id="path4480-6"
+       d="m 0.0626958,10.746173 0.01686,0.916953 58.2480222,0.0081 58.264882,0.04869 0,-0.916953 -15.34024,0.397734 -42.756068,0 -49.3641712,-0.194768 z"
+       style="opacity:0.35;fill:#1a1a1a;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="ccccccccc"
+       inkscape:connector-curvature="0"
+       id="path4480-6-7"
+       d="m -1.2343738,10.221702 0.01686,1.545541 60.2457238,0.01365 58.26488,0.08207 0,-1.545541 -15.34024,0.670388 -42.756066,0 -49.364171,-0.328285 z"
+       style="opacity:0.35;fill:#1a1a1a;fill-opacity:1;stroke:none" />
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/IceCream.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/IceCream.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,2110 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg3066"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="161"
+   height="271"
+   sodipodi:docname="IceCream.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/IceCream.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata3072">
+    <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>
+  <defs
+     id="defs3070">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 130 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="240 : 130 : 1"
+       inkscape:persp3d-origin="120 : 86.666667 : 1"
+       id="perspective45" />
+    <filter
+       inkscape:collect="always"
+       id="filter5306-1-6"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.365"
+         id="feGaussianBlur5308-0-3" />
+    </filter>
+    <pattern
+       inkscape:stockid="Polka dots, medium"
+       id="Polkadots-med-4-6"
+       patternTransform="translate(0,0) scale(10,10)"
+       height="10"
+       width="10"
+       patternUnits="userSpaceOnUse"
+       inkscape:collect="always">
+      <circle
+         id="circle4775-7-5"
+         r="0.15"
+         cy="0.810"
+         cx="2.567"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4777-7-1"
+         r="0.15"
+         cy="2.33"
+         cx="3.048"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4779-9-2"
+         r="0.15"
+         cy="2.415"
+         cx="4.418"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4781-6-9"
+         r="0.15"
+         cy="3.029"
+         cx="1.844"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4783-4-6"
+         r="0.15"
+         cy="1.363"
+         cx="6.08"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4785-0-5"
+         r="0.15"
+         cy="4.413"
+         cx="5.819"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4787-2-7"
+         r="0.15"
+         cy="4.048"
+         cx="4.305"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4789-9-1"
+         r="0.15"
+         cy="3.045"
+         cx="5.541"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4791-9-6"
+         r="0.15"
+         cy="5.527"
+         cx="4.785"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4793-7-3"
+         r="0.15"
+         cy="5.184"
+         cx="2.667"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4795-2-1"
+         r="0.15"
+         cy="1.448"
+         cx="7.965"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4797-4-2"
+         r="0.15"
+         cy="5.049"
+         cx="7.047"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4799-9-8"
+         r="0.15"
+         cy="0.895"
+         cx="4.340"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4801-6-1"
+         r="0.15"
+         cy="0.340"
+         cx="7.125"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4803-0-6"
+         r="0.15"
+         cy="1.049"
+         cx="9.553"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4805-7-6"
+         r="0.15"
+         cy="2.689"
+         cx="7.006"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4807-5-2"
+         r="0.15"
+         cy="2.689"
+         cx="8.909"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4809-3-4"
+         r="0.15"
+         cy="4.407"
+         cx="9.315"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4811-6-3"
+         r="0.15"
+         cy="3.870"
+         cx="7.820"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4813-7-2"
+         r="0.15"
+         cy="5.948"
+         cx="8.270"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4815-4-7"
+         r="0.15"
+         cy="7.428"
+         cx="7.973"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4817-7-3"
+         r="0.15"
+         cy="8.072"
+         cx="9.342"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4819-3-4"
+         r="0.15"
+         cy="9.315"
+         cx="8.206"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4821-3-5"
+         r="0.15"
+         cy="9.475"
+         cx="9.682"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4823-2-3"
+         r="0.15"
+         cy="6.186"
+         cx="9.688"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4825-9-4"
+         r="0.15"
+         cy="6.296"
+         cx="3.379"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4827-9-2"
+         r="0.15"
+         cy="8.204"
+         cx="2.871"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4829-0-1"
+         r="0.15"
+         cy="8.719"
+         cx="4.59"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4831-0-2"
+         r="0.15"
+         cy="9.671"
+         cx="3.181"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4833-6-3"
+         r="0.15"
+         cy="7.315"
+         cx="5.734"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4835-5-7"
+         r="0.15"
+         cy="6.513"
+         cx="6.707"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4837-9-0"
+         r="0.15"
+         cy="9.670"
+         cx="5.730"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4839-5-4"
+         r="0.15"
+         cy="8.373"
+         cx="6.535"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4841-6-1"
+         r="0.15"
+         cy="7.154"
+         cx="4.37"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4843-7-9"
+         r="0.15"
+         cy="7.25"
+         cx="0.622"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4845-9-1"
+         r="0.15"
+         cy="5.679"
+         cx="0.831"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4847-6-6"
+         r="0.15"
+         cy="8.519"
+         cx="1.257"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4849-1-8"
+         r="0.15"
+         cy="6.877"
+         cx="1.989"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4851-1-4"
+         r="0.15"
+         cy="3.181"
+         cx="0.374"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4853-5-2"
+         r="0.15"
+         cy="1.664"
+         cx="1.166"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4855-8-3"
+         r="0.15"
+         cy="0.093"
+         cx="1.151"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4857-3-5"
+         r="0.15"
+         cy="10.093"
+         cx="1.151"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4859-9-7"
+         r="0.15"
+         cy="4.451"
+         cx="1.302"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4861-0-2"
+         r="0.15"
+         cy="3.763"
+         cx="3.047"
+         style="fill:black;stroke:none" />
+    </pattern>
+    <filter
+       inkscape:collect="always"
+       id="filter5306-1"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.365"
+         id="feGaussianBlur5308-0" />
+    </filter>
+    <pattern
+       inkscape:stockid="Polka dots, medium"
+       id="Polkadots-med-4"
+       patternTransform="translate(0,0) scale(10,10)"
+       height="10"
+       width="10"
+       patternUnits="userSpaceOnUse"
+       inkscape:collect="always">
+      <circle
+         id="circle4775-7"
+         r="0.15"
+         cy="0.810"
+         cx="2.567"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4777-7"
+         r="0.15"
+         cy="2.33"
+         cx="3.048"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4779-9"
+         r="0.15"
+         cy="2.415"
+         cx="4.418"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4781-6"
+         r="0.15"
+         cy="3.029"
+         cx="1.844"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4783-4"
+         r="0.15"
+         cy="1.363"
+         cx="6.08"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4785-0"
+         r="0.15"
+         cy="4.413"
+         cx="5.819"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4787-2"
+         r="0.15"
+         cy="4.048"
+         cx="4.305"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4789-9"
+         r="0.15"
+         cy="3.045"
+         cx="5.541"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4791-9"
+         r="0.15"
+         cy="5.527"
+         cx="4.785"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4793-7"
+         r="0.15"
+         cy="5.184"
+         cx="2.667"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4795-2"
+         r="0.15"
+         cy="1.448"
+         cx="7.965"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4797-4"
+         r="0.15"
+         cy="5.049"
+         cx="7.047"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4799-9"
+         r="0.15"
+         cy="0.895"
+         cx="4.340"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4801-6"
+         r="0.15"
+         cy="0.340"
+         cx="7.125"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4803-0"
+         r="0.15"
+         cy="1.049"
+         cx="9.553"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4805-7"
+         r="0.15"
+         cy="2.689"
+         cx="7.006"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4807-5"
+         r="0.15"
+         cy="2.689"
+         cx="8.909"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4809-3"
+         r="0.15"
+         cy="4.407"
+         cx="9.315"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4811-6"
+         r="0.15"
+         cy="3.870"
+         cx="7.820"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4813-7"
+         r="0.15"
+         cy="5.948"
+         cx="8.270"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4815-4"
+         r="0.15"
+         cy="7.428"
+         cx="7.973"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4817-7"
+         r="0.15"
+         cy="8.072"
+         cx="9.342"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4819-3"
+         r="0.15"
+         cy="9.315"
+         cx="8.206"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4821-3"
+         r="0.15"
+         cy="9.475"
+         cx="9.682"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4823-2"
+         r="0.15"
+         cy="6.186"
+         cx="9.688"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4825-9"
+         r="0.15"
+         cy="6.296"
+         cx="3.379"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4827-9"
+         r="0.15"
+         cy="8.204"
+         cx="2.871"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4829-0"
+         r="0.15"
+         cy="8.719"
+         cx="4.59"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4831-0"
+         r="0.15"
+         cy="9.671"
+         cx="3.181"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4833-6"
+         r="0.15"
+         cy="7.315"
+         cx="5.734"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4835-5"
+         r="0.15"
+         cy="6.513"
+         cx="6.707"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4837-9"
+         r="0.15"
+         cy="9.670"
+         cx="5.730"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4839-5"
+         r="0.15"
+         cy="8.373"
+         cx="6.535"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4841-6"
+         r="0.15"
+         cy="7.154"
+         cx="4.37"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4843-7"
+         r="0.15"
+         cy="7.25"
+         cx="0.622"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4845-9"
+         r="0.15"
+         cy="5.679"
+         cx="0.831"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4847-6"
+         r="0.15"
+         cy="8.519"
+         cx="1.257"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4849-1"
+         r="0.15"
+         cy="6.877"
+         cx="1.989"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4851-1"
+         r="0.15"
+         cy="3.181"
+         cx="0.374"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4853-5"
+         r="0.15"
+         cy="1.664"
+         cx="1.166"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4855-8"
+         r="0.15"
+         cy="0.093"
+         cx="1.151"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4857-3"
+         r="0.15"
+         cy="10.093"
+         cx="1.151"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4859-9"
+         r="0.15"
+         cy="4.451"
+         cx="1.302"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4861-0"
+         r="0.15"
+         cy="3.763"
+         cx="3.047"
+         style="fill:black;stroke:none" />
+    </pattern>
+    <pattern
+       inkscape:stockid="Polka dots, medium"
+       id="Polkadots-med"
+       patternTransform="translate(0,0) scale(10,10)"
+       height="10"
+       width="10"
+       patternUnits="userSpaceOnUse"
+       inkscape:collect="always">
+      <circle
+         id="circle4775"
+         r="0.15"
+         cy="0.810"
+         cx="2.567"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4777"
+         r="0.15"
+         cy="2.33"
+         cx="3.048"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4779"
+         r="0.15"
+         cy="2.415"
+         cx="4.418"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4781"
+         r="0.15"
+         cy="3.029"
+         cx="1.844"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4783"
+         r="0.15"
+         cy="1.363"
+         cx="6.08"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4785"
+         r="0.15"
+         cy="4.413"
+         cx="5.819"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4787"
+         r="0.15"
+         cy="4.048"
+         cx="4.305"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4789"
+         r="0.15"
+         cy="3.045"
+         cx="5.541"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4791"
+         r="0.15"
+         cy="5.527"
+         cx="4.785"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4793"
+         r="0.15"
+         cy="5.184"
+         cx="2.667"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4795"
+         r="0.15"
+         cy="1.448"
+         cx="7.965"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4797"
+         r="0.15"
+         cy="5.049"
+         cx="7.047"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4799"
+         r="0.15"
+         cy="0.895"
+         cx="4.340"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4801"
+         r="0.15"
+         cy="0.340"
+         cx="7.125"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4803"
+         r="0.15"
+         cy="1.049"
+         cx="9.553"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4805"
+         r="0.15"
+         cy="2.689"
+         cx="7.006"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4807"
+         r="0.15"
+         cy="2.689"
+         cx="8.909"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4809"
+         r="0.15"
+         cy="4.407"
+         cx="9.315"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4811"
+         r="0.15"
+         cy="3.870"
+         cx="7.820"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4813"
+         r="0.15"
+         cy="5.948"
+         cx="8.270"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4815"
+         r="0.15"
+         cy="7.428"
+         cx="7.973"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4817"
+         r="0.15"
+         cy="8.072"
+         cx="9.342"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4819"
+         r="0.15"
+         cy="9.315"
+         cx="8.206"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4821"
+         r="0.15"
+         cy="9.475"
+         cx="9.682"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4823"
+         r="0.15"
+         cy="6.186"
+         cx="9.688"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4825"
+         r="0.15"
+         cy="6.296"
+         cx="3.379"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4827"
+         r="0.15"
+         cy="8.204"
+         cx="2.871"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4829"
+         r="0.15"
+         cy="8.719"
+         cx="4.59"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4831"
+         r="0.15"
+         cy="9.671"
+         cx="3.181"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4833"
+         r="0.15"
+         cy="7.315"
+         cx="5.734"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4835"
+         r="0.15"
+         cy="6.513"
+         cx="6.707"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4837"
+         r="0.15"
+         cy="9.670"
+         cx="5.730"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4839"
+         r="0.15"
+         cy="8.373"
+         cx="6.535"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4841"
+         r="0.15"
+         cy="7.154"
+         cx="4.37"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4843"
+         r="0.15"
+         cy="7.25"
+         cx="0.622"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4845"
+         r="0.15"
+         cy="5.679"
+         cx="0.831"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4847"
+         r="0.15"
+         cy="8.519"
+         cx="1.257"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4849"
+         r="0.15"
+         cy="6.877"
+         cx="1.989"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4851"
+         r="0.15"
+         cy="3.181"
+         cx="0.374"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4853"
+         r="0.15"
+         cy="1.664"
+         cx="1.166"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4855"
+         r="0.15"
+         cy="0.093"
+         cx="1.151"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4857"
+         r="0.15"
+         cy="10.093"
+         cx="1.151"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4859"
+         r="0.15"
+         cy="4.451"
+         cx="1.302"
+         style="fill:black;stroke:none" />
+      <circle
+         id="circle4861"
+         r="0.15"
+         cy="3.763"
+         cx="3.047"
+         style="fill:black;stroke:none" />
+    </pattern>
+    <linearGradient
+       id="linearGradient5294"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#d6cda8;stop-opacity:1;"
+         offset="0"
+         id="stop5296" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter5306"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.365"
+         id="feGaussianBlur5308" />
+    </filter>
+    <linearGradient
+       id="linearGradient3248"
+       y2="318.25"
+       gradientUnits="userSpaceOnUse"
+       x2="315.88"
+       gradientTransform="translate(-140.91,-293.36)"
+       y1="643.86"
+       x1="375.59">
+      <stop
+         id="stop3240"
+         style="stop-color:#ee5ca2"
+         offset="0" />
+      <stop
+         id="stop3242"
+         style="stop-color:#ee5ca2;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3264"
+       y2="518.21"
+       gradientUnits="userSpaceOnUse"
+       x2="574.46"
+       gradientTransform="translate(-133.94,-298.78)"
+       y1="518.21"
+       x1="133.95">
+      <stop
+         id="stop3156"
+         style="stop-color:#ffe500;stop-opacity:.70455"
+         offset="0" />
+      <stop
+         id="stop3158"
+         style="stop-color:#ff9b00;stop-opacity:.65152"
+         offset="1" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter5306-1-5"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.365"
+         id="feGaussianBlur5308-0-8" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5306-4"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.365"
+         id="feGaussianBlur5308-3" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5306-1-6-6"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.365"
+         id="feGaussianBlur5308-0-3-2" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview3068"
+     showgrid="false"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:zoom="1.3157773"
+     inkscape:cx="133.68413"
+     inkscape:cy="138.15832"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5107" />
+  <g
+     id="g3776"
+     transform="translate(208.24851,-20.793241)">
+    <g
+       transform="matrix(0.83326358,0.38938306,-0.38938306,0.83326358,271.27582,-377.95472)"
+       style="color:#000000;fill:#d6cda8;fill-opacity:1;fill-rule:nonzero;stroke:#2a2626;stroke-width:2.1744945;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="g4549" />
+    <g
+       transform="translate(21.553829,59.520333)"
+       id="g5122" />
+    <g
+       transform="matrix(1.4325312,0,0,1.2454417,30.312445,220.25707)"
+       style="display:inline"
+       inkscape:label="tmp"
+       id="layer1" />
+    <g
+       id="g5584"
+       transform="translate(-296.71556,-76.208586)">
+      <g
+         id="g3285"
+         transform="matrix(0.88238909,0,0,0.85953712,11.5808,51.717179)">
+        <g
+           id="g5107">
+          <g
+             id="g3451"
+             transform="matrix(1.0233346,0,0,1.0660285,-2.2976844,-24.311109)">
+            <g
+               style="fill:#4d4d4d;stroke:#333333"
+               transform="matrix(0.88471097,0.36488578,-0.34914485,0.9245975,156.42351,-12.939841)"
+               id="g5675-0">
+              <g
+                 style="fill:#96557d;fill-opacity:1;stroke:none"
+                 id="g5396-0"
+                 transform="matrix(0.94470686,0,0,0.90023016,-38.844123,134.83211)">
+                <path
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-149.35314,77.752602)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path2993-9-2"
+                   style="color:#000000;fill:#96557d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.17790425,-0.52568782,0.52532224,0.17802806,-124.9724,67.522841)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4863-5-2"
+                   style="color:#000000;fill:#96557d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.38004708;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.15998585,-0.47274089,0.47241213,0.16009719,-99.289659,58.166468)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4861-3-0"
+                   style="color:#000000;fill:#96557d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.64661217;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#96557d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.00033593;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4865-8-4"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.14112436,-0.41700725,0.41671725,0.14122257,-71.500529,48.303466)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#96557d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.33197927;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4859-0-8"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.09774297,-0.28881991,0.28861906,0.09781099,-9.367546,24.200772)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#96557d;fill-opacity:1;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4596-3-7"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.1773032,-0.56816697,0.55372351,0.2036602,-137.34445,72.411695)" />
+                <g
+                   style="fill:#96557d;fill-opacity:1;stroke:none"
+                   transform="matrix(0.9977853,0.0413905,-0.04110569,0.99802028,-135.67672,21.550549)"
+                   id="g5034-1-2">
+                  <path
+                     transform="matrix(1.2840373,0.4948033,-0.63693027,1.0442759,-143.31777,-322.87204)"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     sodipodi:ry="9.5979052"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:cy="82.19915"
+                     sodipodi:cx="358.32178"
+                     id="path4113-5-0-5-3"
+                     style="fill:#96557d;fill-opacity:1;stroke:none"
+                     sodipodi:type="arc" />
+                  <path
+                     transform="matrix(0.70523907,0.45092417,-0.44742645,0.70994361,46.568891,-280.57848)"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     sodipodi:ry="9.5979052"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:cy="82.19915"
+                     sodipodi:cx="358.32178"
+                     id="path4113-5-5-24"
+                     style="fill:#96557d;fill-opacity:1;stroke:none"
+                     sodipodi:type="arc" />
+                </g>
+                <path
+                   sodipodi:type="arc"
+                   style="opacity:0.9;color:#000000;fill:#96557d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5306-1-5);enable-background:accumulate"
+                   id="path3782-3-7"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.15785508,-0.5086609,0.48963565,0.1808896,-103.43853,60.735973)" />
+              </g>
+              <g
+                 style="fill:#4d4d4d;stroke:#333333"
+                 id="g5105-1"
+                 transform="matrix(0.94470686,0,0,0.90023016,-4.937228,204.0637)">
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path2993-2"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-213.86682,59.100819)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:2.38004708;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4863-0"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.17790425,-0.52568782,0.52532224,0.17802806,-189.48608,48.871058)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:2.64661217;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4861-5"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.15998585,-0.47274089,0.47241213,0.16009719,-163.80334,39.514685)" />
+                <path
+                   transform="matrix(0.14112436,-0.41700725,0.41671725,0.14122257,-136.01421,29.651683)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4865-3"
+                   style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:3.00033593;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.09774297,-0.28881991,0.28861906,0.09781099,-73.881227,5.5489886)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4859-6"
+                   style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:4.33197927;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-214.01556,58.794798)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4596-7"
+                   style="color:#000000;fill:#4d4d4d;stroke:#333333;stroke-width:2.1744945;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <g
+                   style="fill:#4d4d4d;stroke:#333333"
+                   id="g5034-3"
+                   transform="matrix(0.9977853,0.0413905,-0.04110569,0.99802028,-200.1904,2.8987664)">
+                  <path
+                     sodipodi:type="arc"
+                     style="fill:#4d4d4d;fill-opacity:1;stroke:#333333"
+                     id="path4113-5-0-2"
+                     sodipodi:cx="358.32178"
+                     sodipodi:cy="82.19915"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:ry="9.5979052"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     transform="matrix(1.2840373,0.4948033,-0.63693027,1.0442759,-143.31777,-322.87204)" />
+                  <path
+                     sodipodi:type="arc"
+                     style="fill:#4d4d4d;fill-opacity:1;stroke:#333333"
+                     id="path4113-5-1"
+                     sodipodi:cx="358.32178"
+                     sodipodi:cy="82.19915"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:ry="9.5979052"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     transform="matrix(0.70523907,0.45092417,-0.44742645,0.70994361,46.568891,-280.57848)" />
+                </g>
+                <path
+                   transform="matrix(0.15458876,-0.49066637,0.4564754,0.16616779,-155.16782,45.931753)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path3782-7"
+                   style="opacity:0.9;color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5306-4);enable-background:accumulate"
+                   sodipodi:type="arc" />
+              </g>
+              <g
+                 style="fill:#772800;fill-opacity:1;stroke:none"
+                 transform="matrix(1.0216065,-0.00852687,-0.00812765,0.95638889,-46.382153,-100.75588)"
+                 id="g5483-2">
+                <path
+                   style="fill:#772800;fill-opacity:1;stroke:none"
+                   d="M 132.84633,497.85773 C 124.20544,479.37976 106.72977,408.27106 99.249056,343.4965 l -2.452127,-21.23269 c 46.813251,7.09127 54.709771,6.77255 102.205901,0 2.10038,2.05822 -28.50716,102.54573 -31.33085,111.08661 -10.69305,32.3435 -12.72784,46.16119 -24.49058,63.13129 -3.40129,4.90704 -8.92129,4.39927 -10.33507,1.37602 z"
+                   id="path3931-3"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="csccssc" />
+                <path
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69999999;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 135.72806,493.92418 c -6.51453,-5.1886 -11.73429,-20.61506 -13.5432,-29.7567 -1.46341,-7.39552 -4.58443,-17.43451 -4.73996,-24.90983 -0.17414,-8.36949 -3.59074,-12.5976 -4.57418,-22.89235 -0.98343,-10.29477 -3.32111,-18.52561 -5.12972,-31.00835 -1.85092,-12.77481 -5.84322,-22.96217 -6.74741,-42.14694 -0.13554,-2.87591 -4.818299,-17.15176 -5.94105,-19.81345 3.71878,2e-5 10.888,-1.57627 15.5376,1.63044 4.20984,2.9034 4.21001,10.61998 7.57708,10.61998 5.71183,0.24006 7.70907,4.42006 13.23583,5.75065 2.10871,1.14165 12.20903,-1.72921 12.25926,2.75165 -10.99313,0.34924 -19.59116,1.13068 -27.52555,3.36892 -0.6418,3.69428 13.22485,0.66498 14.16429,2.70998 -4.42595,0.61017 -6.57794,-0.29062 -10.62466,1.49325 -1.98353,1.73135 -1.27388,2.82597 0.32868,2.4802 1.29971,0.16788 5.18436,-1.11451 10.85186,0.11806 -5.9772,1.38048 -10.66498,1.87203 -8.33209,3.41451 3.85222,2.87927 10.88911,4.94471 15.74337,5.66742 5.52712,0.67366 18.52491,1.41705 15.52724,2.00338 -3.75053,1.66432 -12.74297,1.88107 -17.1224,2.03694 -4.3702,-0.74612 -9.21943,4.40157 -11.07439,5.5797 -0.0947,4.5495 8.9035,7.40895 14.87264,8.84438 3.84557,0.5366 12.81922,0.98912 15.50048,2.95041 -8.98379,-0.36147 -11.60395,-1.49172 -16.78194,-0.19048 -4.12683,1.24012 -6.74222,1.00504 -11.10258,1.6759 -3.35505,0.38088 -3.21119,1.88536 -1.85509,3.51497 7.06781,-1.20764 8.29324,0.2764 10.89467,0.58207 -8.0258,1.28212 -10.18505,3.93475 -9.98231,4.63256 -0.65483,3.47519 0.79914,7.41591 5.31584,7.71663 5.5348,0.75814 15.18866,-0.88264 20.52378,0.46062 3.44432,-0.0594 0.63141,1.75336 -1.10122,1.86613 -4.20638,1.4163 -8.57169,1.39177 -13.13996,1.27798 -4.04276,-0.27003 -6.07214,0.98075 -9.99188,1.66218 -2.20942,2.98706 -3.10425,9.57271 7.61261,8.54974 5.90762,0.56586 -5.03238,1.89388 -6.65003,1.8187 -2.62626,1.52488 -2.48146,2.84802 -0.007,3.11493 4.6942,0.30407 14.30909,-0.6168 18.53211,0.16846 -0.22392,1.84499 -7.99063,2.62379 -11.24481,2.4706 -3.9065,0.0783 -11.4162,1.74838 -8.94785,5.98302 0.45879,0.80652 -0.57198,2.36315 0.53661,3.6344 1.18416,1.35788 7.41541,0.83042 7.43245,1.64065 -0.47036,0.6026 -5.98551,0.62398 -7.00483,1.41104 -2.48398,1.918 -6.82888,3.59646 -5.52145,3.99867 3.04132,1.73718 19.10582,2.05675 20.78215,4.33107 -5.08663,0.2157 -18.06359,-0.23189 -16.38238,1.51695 0.11145,0.11595 -0.41975,1.62068 0.55155,1.8944 1.68493,0.47481 4.77936,1.30662 5.44617,1.5678 -0.34333,1.38098 -4.51866,1.95066 -4.5586,3.26993 4.71857,3.27982 -4.68764,0.27636 -1.89392,3.67379 1.49297,3.64741 -1.05937,5.77944 -0.28952,9.15803 2.53206,2.28681 0.32126,4.25866 0.67869,6.40664 2.2378,3.69176 4.99594,3.68644 9.42767,4.86345 3.6489,0.73894 -0.39994,1.07958 -2.60585,1.32729 -4.38951,0.49291 -3.86888,1.88657 -2.53878,3.82333 3.06978,2.84214 5.07667,3.96686 4.17493,6.8639 -2.06462,4.96917 0.57306,4.63855 0.47358,7.37801 z"
+                   id="path3053-4"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cssssscscccccccccccccccccccccccccccccccscsccssccccccscccc" />
+                <path
+                   style="color:#000000;fill:#772800;fill-opacity:1;stroke:none;stroke-width:1.99999988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 139.77744,496.35076 c -0.37503,-0.77467 2.93208,-1.60327 2.8206,-2.09007 -0.27552,-1.20292 0.004,-1.98109 1.40488,-3.4431 0.71544,-2.0937 1.54419,-3.83819 0.13036,-4.4737 -2.13457,-0.95945 -5.97116,-0.67768 -7.94814,-2.09887 2.08982,-1.77289 7.6733,-0.0765 9.82903,-3.42835 0.86784,-2.47878 -4.24713,-3.54013 -3.54264,-6.53455 -0.51749,-1.98064 -4.62438,-4.0522 -2.33505,-5.2774 2.99572,-1.60324 5.92223,-3.9911 4.85331,-6.05756 -1.07548,-2.07917 1.46689,-4.45335 2.34262,-6.52221 1.52483,-2.20772 3.34357,-2.72662 2.05225,-3.57788 -3.39527,-2.23822 -16.20864,-1.67621 -18.18857,-1.84548 9.5232,-1.1449 14.05932,-1.3706 20.05563,-1.22462 3.34847,-2.02208 4.74851,-3.9198 6.00229,-8.02283 0.085,-3.97472 6.82015,-6.65465 4.54101,-10.65782 -2.89556,-2.35539 -7.70289,0.53013 -11.51616,-0.0195 -3.76603,8e-5 -7.08341,0.48152 -8.50096,-0.21138 4.04276,-0.53222 11.42511,-1.27792 13.51113,-4.51775 0.92116,-0.37087 -15.99077,-0.77961 -20.63986,-0.79253 6.82787,-2.42332 23.35266,-3.3606 23.50339,-3.85257 0.71137,-2.32189 -2.52648,-3.29525 0.61735,-4.59175 3.98284,-1.52313 4.92271,-9.243 1.23056,-9.64052 -7.65959,-0.36036 -18.57451,-0.59139 -24.58867,-0.0836 4.38942,-1.09818 12.06054,-2.43797 16.42503,-3.50611 4.97332,-0.94067 12.07755,1.90246 13.11435,-2.53948 0.52877,-2.85044 -6.41541,-5.49623 -0.17681,-5.80001 3.73313,-0.43189 6.95121,-2.71343 -1.82142,-3.37591 -4.44271,-0.73624 -10.90669,-2.90067 -29.61744,-1.49854 3.43502,-2.80086 25.30443,-2.60627 38.87312,-0.73687 5.2698,-1.22721 -2.99412,-7.18528 -0.0755,-10.86876 -1.23725,-3.36123 -9.24215,-2.48673 -13.05129,-3.34705 -6.47047,-0.18316 -14.37775,-1.50126 -18.56612,-2.1974 2.40513,-0.46833 8.32484,-1.02665 9.79268,-1.77965 4.98279,-1.83841 9.39865,0.26945 14.40645,-1.49539 4.9734,-0.99812 5.8492,-1.47122 9.96083,-3.76034 3.35469,-1.28703 3.93733,-2.45869 -0.70784,-3.15581 -8.2865,-0.9648 -16.54184,-2.01053 -25.6296,-1.47043 -4.208,0.25008 -20.05365,-0.69589 -22.17309,-0.78134 6.10222,-1.62934 21.2211,-2.60434 27.36536,-3.03352 6.5552,-0.39325 13.5877,2.56267 19.78261,0.42677 2.71822,-1.0333 6.67677,-2.43161 8.3532,-3.73699 1.63446,-1.2727 -26.44334,-5.99994 -36.22493,-5.16682 7.34937,-2.89008 28.85229,-0.53447 38.6994,1.99685 -2.76971,-3.76402 -8.01484,-6.86195 -12.81282,-8.54724 -5.63062,-0.0224 -11.49781,-0.44366 -16.39274,-2.79708 -5.09223,-2.78627 -22.44328,-5.758 -24.65731,-10.56096 -0.16347,-1.66279 11.00755,-1.8141 12.29028,-2.6769 l 56.29083,-5.0201 c -0.99559,14.20362 -8.36489,35.33176 -12.44448,50.32466 -2.09659,7.70526 -5.80568,19.03933 -8.0109,26.72759 -2.36066,8.23025 -5.65982,14.04816 -7.92308,22.29369 -2.83157,10.31598 -5.81159,19.47127 -9.60109,29.61347 -3.46971,9.28631 -7.81407,18.66198 -11.92021,27.8016 -1.68577,3.7523 -3.69839,17.38282 -9.11716,20.53648 z"
+                   id="path3834-2"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cscscccsscsccccccccsccccccccccccccccscccscccccccssssscc" />
+                <path
+                   sodipodi:nodetypes="cc"
+                   inkscape:connector-curvature="0"
+                   id="path3799-6"
+                   d="m 142.51645,355.88721 c 22.6568,-1.4899 37.27113,2.20207 48.51392,5.74409"
+                   style="color:#000000;fill:#772800;fill-opacity:1;stroke:none;stroke-width:1.56252146;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+                <path
+                   style="color:#000000;fill:#772800;fill-opacity:1;stroke:none;stroke-width:1.56252146;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 109.15577,351.38879 c 4.48421,-1.70456 9.89491,-2.84414 14.98439,-3.60971 m 53.52246,0.10898 c 5.44155,0.88909 10.69402,2.12486 15.02682,3.86132"
+                   id="path3029-3"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cccc" />
+                <path
+                   style="color:#000000;fill:#772800;fill-opacity:1;stroke:none;stroke-width:1.56252146;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 124.4646,448.90428 c 17.67088,-4.21005 29.70746,-1.67594 37.8732,1.38769"
+                   id="path3805-4"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cc" />
+                <path
+                   sodipodi:nodetypes="cccccc"
+                   inkscape:connector-curvature="0"
+                   id="path3803-6"
+                   d="m 123.77164,424.83536 c 1.7226,-0.58957 3.45705,-1.03068 5.15267,-1.35298 m 14.84171,-0.91371 c 7.21984,0.0478 12.9659,0.6726 17.94483,1.71991 m 4.51881,1.11638 c 1.31552,0.37451 2.58589,0.78007 3.82802,1.21301"
+                   style="color:#000000;fill:#772800;fill-opacity:1;stroke:none;stroke-width:1.56252146;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+                <path
+                   style="color:#000000;fill:#772800;fill-opacity:1;stroke:none;stroke-width:1.56252146;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 118.99247,390.47211 c 12.08965,-3.30488 21.98765,-4.44277 30.27162,-4.60252"
+                   id="path3801-57"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cc" />
+                <path
+                   sodipodi:nodetypes="ccsssssc"
+                   inkscape:connector-curvature="0"
+                   id="path3828-0"
+                   d="m 96.194991,323.27689 c 13.021209,72.60213 26.751329,161.94271 43.079799,175.58358 7.51982,-2.933 9.86382,-17.24887 12.09383,-22.21253 4.10612,-9.13962 8.3839,-19.41864 11.85359,-28.70494 3.78952,-10.14219 6.17066,-18.68718 9.00223,-29.00316 2.26327,-8.24555 5.7144,-14.34228 8.07507,-22.5725 2.20521,-7.68825 6.51375,-19.18598 8.61036,-26.89125 4.07957,-14.9929 10.01443,-33.96419 11.01001,-48.16773"
+                   style="color:#000000;fill:#772800;fill-opacity:1;stroke:none;stroke-width:3.12504292;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3809-7"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(1.0825451,0,0,-0.68714127,129.106,515.002)" />
+                <path
+                   transform="matrix(0.72169676,0,0,-0.45809417,145.07353,452.45705)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3811-3"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3813-8"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(1.0825451,0,0,-0.68714127,121.13409,512.43726)" />
+                <path
+                   transform="matrix(1.0825451,0,0,-0.68714127,114.25424,545.91732)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3815-6"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3817-5"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(0.72169676,0,0,-0.45809417,129.45734,484.68941)" />
+                <path
+                   transform="matrix(1.0825451,0,0,-0.68714127,120.47887,541.27308)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3819-4"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(1.0825451,0,0,-0.68714127,105.1903,590.76534)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3823-8"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3825-1"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(0.67429179,0,0,-0.42800406,110.85475,575.26476)" />
+                <path
+                   transform="matrix(0.67429179,0,0,-0.42800406,115.33345,573.10813)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3827-3"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#772800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3829-1"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(0.67429179,0,0,-0.42800406,112.86244,569.03993)" />
+                <path
+                   style="color:#000000;fill:#772800;fill-opacity:1;stroke:none;stroke-width:1.33691239;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 120.61412,410.01 c 8.43693,-3.46688 15.34438,-4.66054 21.12547,-4.82812"
+                   id="path3801-5-33"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cc" />
+                <path
+                   style="color:#000000;fill:#772800;fill-opacity:1;stroke:none;stroke-width:1.33691239;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 173.54329,378.9846 c -8.71401,-2.69573 -15.70071,-3.26467 -21.47351,-2.91276"
+                   id="path3801-5-3-6"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cc" />
+              </g>
+              <g
+                 style="fill:#4d4d4d;stroke:#333333"
+                 id="g5117-8"
+                 transform="matrix(1,0,0,0.95318137,-4.822696,95.75682)">
+                <g
+                   style="fill:#4d4d4d;stroke:#333333"
+                   id="g5137-0"
+                   transform="translate(-59.915121,27.935885)">
+                  <path
+                     style="fill:#4d4d4d;fill-opacity:1;stroke:#333333"
+                     d="m 148.36375,105.42787 c -2.95957,7.20623 -4.2095,17.7639 -6.64963,21.04644 -2.96447,3.9879 -6.92794,-0.25474 -8.19737,-2.35562 -1.65547,-2.73975 0.70192,-14.46217 -3.76247,-15.01769 -6.41334,0.11611 -12.73629,-8.35462 -14.04231,-9.32418 -2.47551,-1.837748 -2.36112,-12.261669 -1.27446,-13.195431 4.94042,0.474886 21.05401,-1.317364 27.70705,-1.064868 3.56049,0.147698 5.89446,0.449752 5.88163,0.761179 -0.0117,0.283971 1.37015,0.57403 3.07075,0.644575 1.7006,0.07054 3.10011,-0.06879 3.11003,-0.309634 0.01,-0.240843 1.04723,-0.815003 2.30512,-1.27591 1.25789,-0.460908 2.2952,-1.035068 2.30512,-1.275912 9.629,0.02326 12.14153,29.190001 -10.45346,21.367051 z"
+                     id="path4220-2-4"
+                     inkscape:connector-curvature="0"
+                     sodipodi:nodetypes="csscsccsssscc" />
+                  <path
+                     style="fill:#4d4d4d;fill-opacity:1;stroke:#333333"
+                     d="m 137.60914,126.26638 c -1.29795,-0.70801 -3.08089,-3.04568 -3.40098,-4.45913 -0.13365,-0.59017 -0.32217,-2.9007 -0.41893,-5.13453 -0.19544,-4.51186 -0.68257,-6.94557 -1.56367,-7.81199 -0.32224,-0.31687 -1.46841,-0.73846 -2.54704,-0.93686 -2.8087,-0.51662 -8.33074,-1.84177 -9.63829,-4.68301 -0.38564,-0.83798 -0.84626,-3.82989 -1.26222,-4.50099 -0.57298,-0.924411 -1.32516,-1.825265 -1.2724,-3.106134 0.16671,-4.047605 3.29674,1.02102 5.06581,-0.440292 1.45181,-1.199244 1.94941,7.338506 9.65709,8.832936 1.74479,0.33829 2.54207,16.86661 6.66401,16.76796 5.5724,-0.13336 8.38303,-19.59136 9.10868,-19.29538 0.69185,0.2822 2.23687,0.55587 3.43334,0.60815 7.46381,-1.07902 12.42255,-2.52851 12.3088,-2.08616 -4.68899,6.26351 -6.65678,5.78492 -10.44918,5.34506 -1.37235,-0.15917 -2.81748,-0.59719 -3.24038,-0.77839 -0.42291,-0.18121 -0.81046,-0.33119 -0.86125,-0.3333 -0.22674,-0.009 -1.77554,5.11489 -3.38931,11.21381 -0.96687,3.65407 -2.06863,7.38053 -2.44836,8.28102 -1.22496,2.90493 -3.33795,3.83063 -5.74572,2.51723 z"
+                     id="path4402-1"
+                     inkscape:connector-curvature="0"
+                     sodipodi:nodetypes="csssssssssssccsssssc" />
+                </g>
+              </g>
+              <g
+                 style="fill:#2f7f38;fill-opacity:1;stroke:none"
+                 transform="matrix(0.94470686,0,0,0.90023016,-94.985502,211.07114)"
+                 id="g5471-2">
+                <path
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-66.94609,55.026534)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path2993-9-9-7"
+                   style="color:#000000;fill:#2f7f38;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.17790425,-0.52568782,0.52532224,0.17802806,-42.56535,44.796773)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4863-5-7-1"
+                   style="color:#000000;fill:#2f7f38;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.38004708;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.15998585,-0.47274089,0.47241213,0.16009719,-16.882609,35.4404)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4861-3-3-6"
+                   style="color:#000000;fill:#2f7f38;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.64661217;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#2f7f38;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.00033593;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4865-8-1-2"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.14112436,-0.41700725,0.41671725,0.14122257,10.906521,25.577398)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#2f7f38;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.33197927;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4859-0-6-7"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.09774297,-0.28881991,0.28861906,0.09781099,73.039504,1.474704)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#2f7f38;fill-opacity:1;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4596-3-6-8"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.20246275,-0.57858656,0.58442789,0.19094427,-72.498134,56.95824)" />
+                <g
+                   style="fill:#2f7f38;fill-opacity:1;stroke:none"
+                   transform="matrix(0.9977853,0.0413905,-0.04110569,0.99802028,-53.26967,-1.175519)"
+                   id="g5034-1-7-8">
+                  <path
+                     transform="matrix(1.2840373,0.4948033,-0.63693027,1.0442759,-143.31777,-322.87204)"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     sodipodi:ry="9.5979052"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:cy="82.19915"
+                     sodipodi:cx="358.32178"
+                     id="path4113-5-0-5-2-0"
+                     style="fill:#2f7f38;fill-opacity:1;stroke:none"
+                     sodipodi:type="arc" />
+                  <path
+                     transform="matrix(0.70523907,0.45092417,-0.44742645,0.70994361,46.568891,-280.57848)"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     sodipodi:ry="9.5979052"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:cy="82.19915"
+                     sodipodi:cx="358.32178"
+                     id="path4113-5-5-2-5"
+                     style="fill:#2f7f38;fill-opacity:1;stroke:none"
+                     sodipodi:type="arc" />
+                </g>
+                <path
+                   sodipodi:type="arc"
+                   style="opacity:0.9;color:#000000;fill:#2f7f38;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5306-1-6-6);enable-background:accumulate"
+                   id="path3782-3-1-5"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.17132873,-0.51424088,0.50590581,0.17415147,-32.35412,43.870788)" />
+              </g>
+              <g
+                 style="fill:#4d4d4d;stroke:#333333"
+                 id="g5389-7"
+                 transform="matrix(1,0,0,0.95318137,-57.689815,118.92476)">
+                <g
+                   id="g5133-4"
+                   style="fill:#4d4d4d;fill-opacity:1;stroke:#333333">
+                  <g
+                     id="g5130-5"
+                     style="fill:#4d4d4d;fill-opacity:1;stroke:#333333">
+                    <path
+                       style="fill:#4d4d4d;fill-opacity:1;stroke:#333333"
+                       d="m 161.99583,40.800188 c -3.71532,-1.58804 -1.04861,-6.890279 -3.64354,-6.96817 -3.90334,0.179909 -8.20659,9.004468 -14.79059,5.680801 -8.2682,-7.621726 -14.53533,-16.047859 -5.72068,-21.426245 0.0102,-0.248356 0.65811,-0.425026 1.43973,-0.392603 0.78163,0.03242 1.42951,-0.144246 1.43974,-0.392601 0.0112,-0.272367 1.49895,-0.390145 3.74907,-0.296805 2.25014,0.09334 3.7231,0.333937 3.71188,0.606304 -0.0102,0.248354 0.86074,0.48803 1.93548,0.532612 1.07473,0.04458 1.96116,-0.09128 1.96984,-0.301915 0.009,-0.210636 0.67038,-0.722966 1.47045,-1.138511 0.80008,-0.415546 1.46178,-0.927877 1.47046,-1.138513 0.009,-0.210636 0.57534,-0.359762 1.25926,-0.331391 0.68392,0.02837 1.25187,3.848384 1.2621,3.60003 0.0102,-0.248356 0.89792,-0.415078 1.97265,-0.370496 1.07473,0.04458 1.96196,-0.110518 1.97161,-0.34467 0.0101,-0.24443 3.0857,-0.404168 7.22224,-0.375098 3.96259,0.02785 9.08803,-3.98705 11.38988,-4.0331 2.8393,-0.0568 4.17882,0.07027 4.16544,0.395161 -0.0109,0.263389 0.47133,0.499261 1.07152,0.524158 1.26458,0.05246 2.06969,0.97675 2.01466,2.312891 -0.0212,0.514448 0.12135,0.941993 0.31676,0.950099 0.1954,0.0081 0.33854,0.421136 0.31808,0.917846 -0.0205,0.496709 -0.19707,0.896475 -0.39248,0.888369 -0.1954,-0.0081 -0.38457,0.69646 -0.42037,1.565701 -0.0358,0.86924 -0.22999,1.573599 -0.43153,1.565239 -0.20155,-0.0084 -0.48707,0.335997 -0.6345,0.765252 -0.41419,1.205862 -3.06946,4.026311 -4.04105,4.292443 -0.47838,0.131034 -0.88143,0.521013 -0.89566,0.866627 0.90548,6.606749 0.2285,12.027876 -1.90263,10.659837 -2.98032,-1.913142 -8.1638,-11.67366 -10.1917,-2.164069 -0.0271,0.658494 -1.918,2.408223 -2.57312,2.381047 -0.3997,-0.01658 -0.73509,0.173051 -0.74532,0.421409 -0.0102,0.248357 -0.56874,0.428733 -1.24112,0.400841 -0.67239,-0.02789 -1.32971,0.148384 -1.46071,0.391732 -0.131,0.243347 -0.37918,0.436596 -0.55153,0.429447 -0.17233,-0.0071 -0.40378,-0.220294 -0.51432,-0.473659 z"
+                       id="path4220-4"
+                       inkscape:connector-curvature="0"
+                       sodipodi:nodetypes="ccccsssssssssssssssssssssscscscsccccc" />
+                  </g>
+                </g>
+                <path
+                   sodipodi:nodetypes="csssscsssssssscsssscssccc"
+                   inkscape:connector-curvature="0"
+                   id="path4374-7"
+                   d="m 161.60504,40.457476 c -1.10038,-0.821787 -1.54389,-1.81412 -1.75524,-3.927274 -0.0914,-0.913659 -0.27503,-1.54005 -0.39204,-1.78223 -0.57782,-1.195957 -2.40727,-0.993359 -5.04117,1.112279 -4.43108,3.542372 -5.8966,4.297179 -8.13932,4.192093 -0.76173,-0.0357 -1.75716,-0.242882 -2.21207,-0.460419 -0.28995,-0.871858 -7.05187,-5.620693 -6.04663,-7.97683 0.6846,-1.604589 2.97336,5.350011 10.23443,3.943473 4.19138,-0.811907 2.48766,-4.277319 7.83283,-4.502056 1.20374,-0.05061 3.74241,0.375217 5.00744,2.230344 1.45651,2.135957 1.60988,5.661859 2.45597,4.199703 1.6571,-2.863695 2.68808,-5.603114 4.85743,-6.644584 3.40431,-1.634348 6.11987,1.1587 8.53796,3.522663 1.12755,1.10232 2.83788,2.660185 4.19938,-0.419415 0.99427,-2.248955 -0.65924,4.343883 -0.78999,5.266797 -0.62711,0.577451 -0.92089,0.375576 -3.80873,-2.617228 -2.74268,-2.842362 -3.47865,-3.393967 -4.59145,-3.4413 -1.32861,-0.05651 -2.10135,0.879803 -2.82077,3.417884 -0.35668,1.258328 -1.25607,2.267559 -2.61555,2.93499 -0.45096,0.221394 -0.9762,0.491288 -1.1672,0.599759 -0.19102,0.108473 -0.72742,0.241813 -1.19202,0.296312 -0.4646,0.0545 -0.99921,0.241345 -1.18802,0.415209 -0.42552,0.391828 -0.32154,0.419261 -1.36524,-0.360201 l 0,0 z"
+                   style="opacity:0.3;fill:#4d4d4d;fill-opacity:1;stroke:#333333" />
+                <path
+                   sodipodi:nodetypes="csssscscccsssssccsssc"
+                   inkscape:connector-curvature="0"
+                   id="path4725-6"
+                   d="m 142.96006,25.321411 c 0.49294,-1.103183 0.89143,-1.641111 2.2398,-3.023602 0.23688,-0.242874 0.74792,-0.475316 1.13563,-0.516547 0.38771,-0.0412 0.85821,-0.197735 1.04556,-0.3478 0.506,-0.405333 4.06459,0.06934 4.57966,0.61089 0.56223,0.591106 2.28728,0.767107 2.59795,0.265046 0.13,-0.210069 0.56675,-0.658793 0.97055,-0.997155 0.4038,-0.338362 0.8331,-0.757103 0.954,-0.930529 0.12086,-0.173438 0.49618,-0.350895 0.83395,-0.394368 0.33779,-0.04347 0.72621,-0.196493 0.86315,-0.340051 0.13696,-0.143568 0.6729,-0.279622 1.19098,-0.302349 0.51808,-0.0227 1.24656,-0.142717 1.61884,-0.266635 0.73074,-0.243232 3.34808,-0.190214 9.81146,0.19875 3.68858,0.221992 4.13366,0.286972 4.31634,0.630298 0.11204,0.210551 0.4427,0.486905 0.7348,0.614131 0.68191,0.297003 0.95697,0.898851 0.92943,2.033647 -0.0126,0.498912 0.0513,1.033354 0.14091,1.187621 -1.76335,-0.896762 -3.81765,-2.791863 -6.89029,-3.355403 -2.97264,-0.545196 -6.95284,0.221969 -9.35864,0.480053 -5.43564,0.583114 -10.51889,1.074177 -13.75599,2.239267 -2.00233,0.720678 -2.87724,2.59601 -3.95809,2.214736 z"
+                   style="opacity:0.3;fill:#4d4d4d;fill-opacity:1;stroke:#333333" />
+              </g>
+              <g
+                 style="fill:#4d4d4d;stroke:#333333"
+                 id="g5125-0"
+                 transform="matrix(0.86738581,0,0,0.82313357,-39.853311,136.38214)">
+                <path
+                   sodipodi:nodetypes="cssscsssccsssccsssscc"
+                   inkscape:connector-curvature="0"
+                   id="path4376-2"
+                   d="m 172.69548,120.63384 c -1.29081,-0.8626 -2.33566,-2.22701 -5.42575,-7.08523 -2.78187,-4.37362 -5.15063,-7.04289 -6.56706,-7.40017 -1.47752,-0.37269 -1.69694,-0.67654 -2.37536,-3.28936 -0.92001,-3.543279 8.48056,5.92964 10.79868,0.28978 -0.66324,5.87042 2.05067,13.77387 5.3653,13.26835 2.39904,-0.36588 2.27953,-8.39911 5.97621,-11.27969 3.52544,-2.74715 9.52421,-0.26459 14.5216,-2.24992 2.93864,-1.16745 2.72072,-6.671663 6.4036,-8.046587 2.47002,-3.232062 -5.97295,-0.751756 2.15872,2.81046 -0.8209,-0.762523 5.98928,0.674963 3.76956,2.804607 -0.8981,0.86165 1.78956,-3.759055 -0.78257,-5.017394 -0.2834,-0.138646 -1.07583,0.312113 -1.69032,0.722639 -0.61451,0.410526 -1.44958,0.903681 -1.85575,1.0959 -0.52426,0.24812 -0.68906,0.530745 -0.56815,0.974395 0.33523,1.230017 -0.34185,3.41321 -1.40388,4.5268 -1.99397,2.09071 -4.4954,2.79245 -12.37393,3.47129 -7.73015,0.66606 -8.20648,1.09093 -8.47367,7.55843 -0.13642,3.30207 -0.27223,4.11961 -0.85676,5.15759 -1.24646,2.21338 -4.5673,3.06015 -6.62046,1.68811 z"
+                   style="opacity:0.3;fill:#4d4d4d;fill-opacity:1;stroke:#333333" />
+              </g>
+              <path
+                 sodipodi:nodetypes="csssscscccsssssccsssc"
+                 inkscape:connector-curvature="0"
+                 id="path4725-9-8"
+                 d="m 58.825975,210.15494 c 0.49294,-1.05154 0.89143,-1.56428 2.2398,-2.88204 0.23688,-0.23151 0.74792,-0.45307 1.13563,-0.49237 0.38771,-0.0393 0.85821,-0.18848 1.04556,-0.33151 0.506,-0.38636 4.06459,0.0661 4.57966,0.58229 0.56223,0.56342 2.28728,0.73119 2.59795,0.25263 0.13,-0.20023 0.56675,-0.62795 0.97055,-0.95047 0.4038,-0.32252 0.8331,-0.72165 0.954,-0.88696 0.12086,-0.16532 0.49618,-0.33446 0.83395,-0.37591 0.33779,-0.0415 0.72621,-0.18729 0.86315,-0.32413 0.13696,-0.13684 0.6729,-0.26653 1.19098,-0.28819 0.51808,-0.0216 1.24656,-0.13603 1.61884,-0.25415 0.73074,-0.23184 1.34808,-0.18131 7.81146,0.18945 3.68858,0.21159 4.13366,0.27353 4.31634,0.60079 0.11204,0.20069 0.4427,0.4641 0.7348,0.58537 0.68191,0.2831 0.95697,0.85677 0.92943,1.93843 -0.0126,0.47556 0.0513,0.98498 0.14091,1.13202 -1.76335,-0.85478 -1.81765,-2.66115 -4.89029,-3.19831 -2.97264,-0.51966 -6.95284,0.21158 -9.35864,0.45758 -5.43564,0.55582 -10.51889,1.02389 -13.75599,2.13443 -2.00233,0.68694 -2.87724,2.47447 -3.95809,2.11105 z"
+                 style="opacity:0.3;fill:#4d4d4d;fill-opacity:1;stroke:#333333" />
+              <path
+                 sodipodi:nodetypes="csssscscccsssssccsssc"
+                 inkscape:connector-curvature="0"
+                 id="path4725-9-6-7"
+                 d="m 104.5571,207.25983 c 0.53552,-1.05154 0.96844,-1.56427 2.43329,-2.88204 0.25734,-0.23151 0.81253,-0.45306 1.23373,-0.49236 0.42121,-0.0393 0.93235,-0.18849 1.13588,-0.33152 0.54972,-0.38635 4.41572,0.0661 4.97529,0.58229 0.6108,0.56342 2.48487,0.73119 2.82238,0.25263 0.14123,-0.20023 0.61571,-0.62795 1.05439,-0.95046 0.43868,-0.32252 0.90507,-0.72166 1.03641,-0.88697 0.1313,-0.16532 0.53904,-0.33446 0.90599,-0.3759 0.36697,-0.0415 0.78895,-0.1873 0.93772,-0.32413 0.14879,-0.13685 0.73103,-0.26653 1.29386,-0.2882 0.56284,-0.0216 1.35425,-0.13603 1.75869,-0.25415 0.79387,-0.23184 1.46454,-0.18131 8.48627,0.18945 4.00722,0.2116 4.49075,0.27353 4.68921,0.60079 0.12172,0.20069 0.48094,0.4641 0.79828,0.58538 0.74082,0.28309 1.03964,0.85676 1.00972,1.93842 -0.0137,0.47557 0.0557,0.98498 0.15308,1.13202 -1.91568,-0.85477 -1.97467,-2.66115 -5.31275,-3.1983 -3.22943,-0.51967 -7.55347,0.21158 -10.1671,0.45757 -5.90521,0.55582 -11.42758,1.02389 -14.94432,2.13443 -2.17531,0.68694 -3.1258,2.47447 -4.30002,2.11105 z"
+                 style="opacity:0.3;fill:#4d4d4d;fill-opacity:1;stroke:#333333" />
+            </g>
+            <g
+               transform="matrix(0.85365407,0.36051182,-0.33688846,0.91351416,151.02986,-11.28008)"
+               id="g5675">
+              <g
+                 id="g5396"
+                 transform="matrix(0.94470686,0,0,0.90023016,-38.844123,134.83211)">
+                <path
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-149.35314,77.752602)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path2993-9"
+                   style="color:#000000;fill:#be6eaf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.17790425,-0.52568782,0.52532224,0.17802806,-124.9724,67.522841)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4863-5"
+                   style="color:#000000;fill:#cd8cb9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.38004708;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.15998585,-0.47274089,0.47241213,0.16009719,-99.289659,58.166468)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4861-3"
+                   style="color:#000000;fill:#cd8cb9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.64661217;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#e69bc8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.00033593;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4865-8"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.14112436,-0.41700725,0.41671725,0.14122257,-71.500529,48.303466)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#f5b4d7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.33197927;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4859-0"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.09774297,-0.28881991,0.28861906,0.09781099,-9.367546,24.200772)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:none;stroke:#be6eaf;stroke-width:2.1744945;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4596-3"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-149.50188,77.446581)" />
+                <g
+                   transform="matrix(0.9977853,0.0413905,-0.04110569,0.99802028,-135.67672,21.550549)"
+                   id="g5034-1">
+                  <path
+                     transform="matrix(1.2840373,0.4948033,-0.63693027,1.0442759,-143.31777,-322.87204)"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     sodipodi:ry="9.5979052"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:cy="82.19915"
+                     sodipodi:cx="358.32178"
+                     id="path4113-5-0-5"
+                     style="fill:#ffbee1;fill-opacity:1;stroke:none"
+                     sodipodi:type="arc" />
+                  <path
+                     transform="matrix(0.70523907,0.45092417,-0.44742645,0.70994361,46.568891,-280.57848)"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     sodipodi:ry="9.5979052"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:cy="82.19915"
+                     sodipodi:cx="358.32178"
+                     id="path4113-5-5"
+                     style="fill:#ffe1e1;fill-opacity:1;stroke:none"
+                     sodipodi:type="arc" />
+                </g>
+                <path
+                   sodipodi:type="arc"
+                   style="opacity:0.9;color:#000000;fill:url(#Polkadots-med-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5306-1);enable-background:accumulate"
+                   id="path3782-3"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.17132873,-0.51424088,0.50590581,0.17415147,-112.76117,64.596856)" />
+              </g>
+              <g
+                 id="g5105"
+                 transform="matrix(0.94470686,0,0,0.90023016,-4.937228,204.0637)">
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#5a1405;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path2993"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-213.86682,59.100819)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#783205;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.38004708;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4863"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.17790425,-0.52568782,0.52532224,0.17802806,-189.48608,48.871058)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#783205;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.64661217;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4861"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.15998585,-0.47274089,0.47241213,0.16009719,-163.80334,39.514685)" />
+                <path
+                   transform="matrix(0.14112436,-0.41700725,0.41671725,0.14122257,-136.01421,29.651683)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4865"
+                   style="color:#000000;fill:#8d480e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.00033593;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.09774297,-0.28881991,0.28861906,0.09781099,-73.881227,5.5489886)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4859"
+                   style="color:#000000;fill:#965019;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.33197927;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-214.01556,58.794798)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4596"
+                   style="color:#000000;fill:none;stroke:#641e05;stroke-width:2.1744945;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <g
+                   id="g5034"
+                   transform="matrix(0.9977853,0.0413905,-0.04110569,0.99802028,-200.1904,2.8987664)">
+                  <path
+                     sodipodi:type="arc"
+                     style="fill:#a05a23;fill-opacity:1;stroke:none"
+                     id="path4113-5-0"
+                     sodipodi:cx="358.32178"
+                     sodipodi:cy="82.19915"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:ry="9.5979052"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     transform="matrix(1.2840373,0.4948033,-0.63693027,1.0442759,-143.31777,-322.87204)" />
+                  <path
+                     sodipodi:type="arc"
+                     style="fill:#aa642d;fill-opacity:1;stroke:none"
+                     id="path4113-5"
+                     sodipodi:cx="358.32178"
+                     sodipodi:cy="82.19915"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:ry="9.5979052"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     transform="matrix(0.70523907,0.45092417,-0.44742645,0.70994361,46.568891,-280.57848)" />
+                </g>
+                <path
+                   transform="matrix(0.15458876,-0.49066637,0.4564754,0.16616779,-155.16782,45.931753)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path3782"
+                   style="opacity:0.9;color:#000000;fill:url(#Polkadots-med);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5306);enable-background:accumulate"
+                   sodipodi:type="arc" />
+              </g>
+              <g
+                 transform="matrix(1,0,0,0.95318137,-47.540598,-100.29871)"
+                 id="g5483">
+                <path
+                   style="fill:#d79650;fill-opacity:1;stroke:none"
+                   d="M 135.54826,495.01433 C 126.90737,476.53636 106.72977,408.27106 99.249056,343.4965 l -2.452127,-21.23269 c 46.813251,7.09127 54.709771,6.77255 102.205901,0 2.10038,2.05822 -28.50716,102.54573 -31.33085,111.08661 -10.69305,32.3435 -12.72784,46.16119 -24.49058,63.13129 -3.40129,4.90704 -6.21936,1.55587 -7.63314,-1.46738 z"
+                   id="path3931"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="csccssc" />
+                <path
+                   style="color:#000000;fill:#e6b46e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69999999;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 135.72806,493.92418 c -6.51453,-5.1886 -11.73429,-20.61506 -13.5432,-29.7567 -1.46341,-7.39552 -4.58443,-17.43451 -4.73996,-24.90983 -0.17414,-8.36949 -3.59074,-12.5976 -4.57418,-22.89235 -0.98343,-10.29477 -3.32111,-18.52561 -5.12972,-31.00835 -1.85092,-12.77481 -5.84322,-22.96217 -6.74741,-42.14694 -0.13554,-2.87591 -4.818299,-17.15176 -5.94105,-19.81345 3.71878,2e-5 10.888,-1.57627 15.5376,1.63044 4.20984,2.9034 4.21001,10.61998 7.57708,10.61998 5.71183,0.24006 7.70907,4.42006 13.23583,5.75065 2.10871,1.14165 12.20903,-1.72921 12.25926,2.75165 -10.99313,0.34924 -19.59116,1.13068 -27.52555,3.36892 -0.6418,3.69428 13.22485,0.66498 14.16429,2.70998 -4.42595,0.61017 -6.57794,-0.29062 -10.62466,1.49325 -1.98353,1.73135 -1.27388,2.82597 0.32868,2.4802 1.29971,0.16788 5.18436,-1.11451 10.85186,0.11806 -5.9772,1.38048 -10.66498,1.87203 -8.33209,3.41451 3.85222,2.87927 10.88911,4.94471 15.74337,5.66742 5.52712,0.67366 18.52491,1.41705 15.52724,2.00338 -3.75053,1.66432 -12.74297,1.88107 -17.1224,2.03694 -4.3702,-0.74612 -9.21943,4.40157 -11.07439,5.5797 -0.0947,4.5495 8.9035,7.40895 14.87264,8.84438 3.84557,0.5366 12.81922,0.98912 15.50048,2.95041 -8.98379,-0.36147 -11.60395,-1.49172 -16.78194,-0.19048 -4.12683,1.24012 -6.74222,1.00504 -11.10258,1.6759 -3.35505,0.38088 -3.21119,1.88536 -1.85509,3.51497 7.06781,-1.20764 8.29324,0.2764 10.89467,0.58207 -8.0258,1.28212 -10.18505,3.93475 -9.98231,4.63256 -0.65483,3.47519 0.79914,7.41591 5.31584,7.71663 5.5348,0.75814 15.18866,-0.88264 20.52378,0.46062 3.44432,-0.0594 0.63141,1.75336 -1.10122,1.86613 -4.20638,1.4163 -8.57169,1.39177 -13.13996,1.27798 -4.04276,-0.27003 -6.07214,0.98075 -9.99188,1.66218 -2.20942,2.98706 -3.10425,9.57271 7.61261,8.54974 5.90762,0.56586 -5.03238,1.89388 -6.65003,1.8187 -2.62626,1.52488 -2.48146,2.84802 -0.007,3.11493 4.6942,0.30407 14.30909,-0.6168 18.53211,0.16846 -0.22392,1.84499 -7.99063,2.62379 -11.24481,2.4706 -3.9065,0.0783 -11.4162,1.74838 -8.94785,5.98302 0.45879,0.80652 -0.57198,2.36315 0.53661,3.6344 1.18416,1.35788 7.41541,0.83042 7.43245,1.64065 -0.47036,0.6026 -5.98551,0.62398 -7.00483,1.41104 -2.48398,1.918 -6.82888,3.59646 -5.52145,3.99867 3.04132,1.73718 19.10582,2.05675 20.78215,4.33107 -5.08663,0.2157 -18.06359,-0.23189 -16.38238,1.51695 0.11145,0.11595 -0.41975,1.62068 0.55155,1.8944 1.68493,0.47481 4.77936,1.30662 5.44617,1.5678 -0.34333,1.38098 -4.51866,1.95066 -4.5586,3.26993 4.71857,3.27982 -4.68764,0.27636 -1.89392,3.67379 1.49297,3.64741 -1.05937,5.77944 -0.28952,9.15803 2.53206,2.28681 0.32126,4.25866 0.67869,6.40664 2.2378,3.69176 4.99594,3.68644 9.42767,4.86345 3.6489,0.73894 -0.39994,1.07958 -2.60585,1.32729 -4.38951,0.49291 -3.86888,1.88657 -2.53878,3.82333 3.06978,2.84214 5.07667,3.96686 4.17493,6.8639 -2.06462,4.96917 0.57306,4.63855 0.47358,7.37801 z"
+                   id="path3053"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cssssscscccccccccccccccccccccccccccccccscsccssccccccscccc" />
+                <path
+                   style="color:#000000;fill:#be6e32;fill-opacity:1;stroke:none;stroke-width:1.99999988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 139.77744,496.35076 c -0.37503,-0.77467 2.93208,-1.60327 2.8206,-2.09007 -0.27552,-1.20292 0.004,-1.98109 1.40488,-3.4431 0.71544,-2.0937 1.54419,-3.83819 0.13036,-4.4737 -2.13457,-0.95945 -5.97116,-0.67768 -7.94814,-2.09887 2.08982,-1.77289 7.6733,-0.0765 9.82903,-3.42835 0.86784,-2.47878 -4.24713,-3.54013 -3.54264,-6.53455 -0.51749,-1.98064 -4.62438,-4.0522 -2.33505,-5.2774 2.99572,-1.60324 5.92223,-3.9911 4.85331,-6.05756 -1.07548,-2.07917 1.46689,-4.45335 2.34262,-6.52221 1.52483,-2.20772 3.34357,-2.72662 2.05225,-3.57788 -3.39527,-2.23822 -16.20864,-1.67621 -18.18857,-1.84548 9.5232,-1.1449 14.05932,-1.3706 20.05563,-1.22462 3.34847,-2.02208 4.74851,-3.9198 6.00229,-8.02283 0.085,-3.97472 6.82015,-6.65465 4.54101,-10.65782 -2.89556,-2.35539 -7.70289,0.53013 -11.51616,-0.0195 -3.76603,8e-5 -7.08341,0.48152 -8.50096,-0.21138 4.04276,-0.53222 11.42511,-1.27792 13.51113,-4.51775 0.92116,-0.37087 -15.99077,-0.77961 -20.63986,-0.79253 6.82787,-2.42332 23.35266,-3.3606 23.50339,-3.85257 0.71137,-2.32189 -2.52648,-3.29525 0.61735,-4.59175 3.98284,-1.52313 4.92271,-9.243 1.23056,-9.64052 -7.65959,-0.36036 -18.57451,-0.59139 -24.58867,-0.0836 4.38942,-1.09818 12.06054,-2.43797 16.42503,-3.50611 4.97332,-0.94067 12.07755,1.90246 13.11435,-2.53948 0.52877,-2.85044 -6.41541,-5.49623 -0.17681,-5.80001 3.73313,-0.43189 6.95121,-2.71343 -1.82142,-3.37591 -4.44271,-0.73624 -10.90669,-2.90067 -29.61744,-1.49854 3.43502,-2.80086 25.30443,-2.60627 38.87312,-0.73687 5.2698,-1.22721 -2.99412,-7.18528 -0.0755,-10.86876 -1.23725,-3.36123 -9.24215,-2.48673 -13.05129,-3.34705 -6.47047,-0.18316 -14.37775,-1.50126 -18.56612,-2.1974 2.40513,-0.46833 8.32484,-1.02665 9.79268,-1.77965 4.98279,-1.83841 9.39865,0.26945 14.40645,-1.49539 4.9734,-0.99812 5.8492,-1.47122 9.96083,-3.76034 3.35469,-1.28703 3.93733,-2.45869 -0.70784,-3.15581 -8.2865,-0.9648 -16.54184,-2.01053 -25.6296,-1.47043 -4.208,0.25008 -20.05365,-0.69589 -22.17309,-0.78134 6.10222,-1.62934 21.2211,-2.60434 27.36536,-3.03352 6.5552,-0.39325 13.5877,2.56267 19.78261,0.42677 2.71822,-1.0333 6.67677,-2.43161 8.3532,-3.73699 1.63446,-1.2727 -26.44334,-5.99994 -36.22493,-5.16682 7.34937,-2.89008 28.85229,-0.53447 38.6994,1.99685 -2.76971,-3.76402 -8.01484,-6.86195 -12.81282,-8.54724 -5.63062,-0.0224 -11.49781,-0.44366 -16.39274,-2.79708 -5.09223,-2.78627 -22.44328,-5.758 -24.65731,-10.56096 -0.16347,-1.66279 11.00755,-1.8141 12.29028,-2.6769 l 56.29083,-5.0201 c -0.99559,14.20362 -8.36489,35.33176 -12.44448,50.32466 -2.09659,7.70526 -5.80568,19.03933 -8.0109,26.72759 -2.36066,8.23025 -5.65982,14.04816 -7.92308,22.29369 -2.83157,10.31598 -5.81159,19.47127 -9.60109,29.61347 -3.46971,9.28631 -7.81407,18.66198 -11.92021,27.8016 -1.68577,3.7523 -3.69839,17.38282 -9.11716,20.53648 z"
+                   id="path3834"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cscscccsscsccccccccsccccccccccccccccscccscccccccssssscc" />
+                <path
+                   sodipodi:nodetypes="cc"
+                   inkscape:connector-curvature="0"
+                   id="path3799"
+                   d="m 142.51645,355.88721 c 22.6568,-1.4899 37.27113,2.20207 48.51392,5.74409"
+                   style="color:#000000;fill:none;stroke:#9a5a0d;stroke-width:1.56252146;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+                <path
+                   style="color:#000000;fill:none;stroke:#9a5a0d;stroke-width:1.56252146;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 109.15577,351.38879 c 4.48421,-1.70456 9.89491,-2.84414 14.98439,-3.60971 m 53.52246,0.10898 c 5.44155,0.88909 10.69402,2.12486 15.02682,3.86132"
+                   id="path3029"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cccc" />
+                <path
+                   style="color:#000000;fill:none;stroke:#9a5a0d;stroke-width:1.56252146;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 124.4646,448.90428 c 17.67088,-4.21005 29.70746,-1.67594 37.8732,1.38769"
+                   id="path3805"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cc" />
+                <path
+                   sodipodi:nodetypes="cccccc"
+                   inkscape:connector-curvature="0"
+                   id="path3803"
+                   d="m 123.77164,424.83536 c 1.7226,-0.58957 3.45705,-1.03068 5.15267,-1.35298 m 14.84171,-0.91371 c 7.21984,0.0478 12.9659,0.6726 17.94483,1.71991 m 4.51881,1.11638 c 1.31552,0.37451 2.58589,0.78007 3.82802,1.21301"
+                   style="color:#000000;fill:none;stroke:#9a5a0d;stroke-width:1.56252146;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+                <path
+                   style="color:#000000;fill:none;stroke:#9a5a0d;stroke-width:1.56252146;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 118.99247,390.47211 c 12.08965,-3.30488 21.98765,-4.44277 30.27162,-4.60252"
+                   id="path3801"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cc" />
+                <path
+                   sodipodi:nodetypes="ccsssssc"
+                   inkscape:connector-curvature="0"
+                   id="path3828"
+                   d="m 96.194991,323.27689 c 13.021209,72.60213 26.751329,161.94271 43.079799,175.58358 7.51982,-2.933 9.86382,-17.24887 12.09383,-22.21253 4.10612,-9.13962 8.3839,-19.41864 11.85359,-28.70494 3.78952,-10.14219 6.17066,-18.68718 9.00223,-29.00316 2.26327,-8.24555 5.7144,-14.34228 8.07507,-22.5725 2.20521,-7.68825 6.51375,-19.18598 8.61036,-26.89125 4.07957,-14.9929 10.01443,-33.96419 11.01001,-48.16773"
+                   style="color:#000000;fill:none;stroke:#9a5a0d;stroke-width:3.12504292;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3809"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(1.0825451,0,0,-0.68714127,129.106,515.002)" />
+                <path
+                   transform="matrix(0.72169676,0,0,-0.45809417,145.07353,452.45705)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3811"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3813"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(1.0825451,0,0,-0.68714127,121.13409,512.43726)" />
+                <path
+                   transform="matrix(1.0825451,0,0,-0.68714127,114.25424,545.91732)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3815"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3817"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(0.72169676,0,0,-0.45809417,129.45734,484.68941)" />
+                <path
+                   transform="matrix(1.0825451,0,0,-0.68714127,120.47887,541.27308)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3819"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(1.0825451,0,0,-0.68714127,105.1903,590.76534)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3823"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3825"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(0.67429179,0,0,-0.42800406,110.85475,575.26476)" />
+                <path
+                   transform="matrix(0.67429179,0,0,-0.42800406,115.33345,573.10813)"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   sodipodi:ry="1.5131578"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:cy="253.0921"
+                   sodipodi:cx="51.513157"
+                   id="path3827"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#9a5a0d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path3829"
+                   sodipodi:cx="51.513157"
+                   sodipodi:cy="253.0921"
+                   sodipodi:rx="1.5131578"
+                   sodipodi:ry="1.5131578"
+                   d="m 53.026315,253.0921 c 0,0.8357 -0.677464,1.51316 -1.513158,1.51316 -0.835694,0 -1.513158,-0.67746 -1.513158,-1.51316 0,-0.83569 0.677464,-1.51316 1.513158,-1.51316 0.835694,0 1.513158,0.67747 1.513158,1.51316 z"
+                   transform="matrix(0.67429179,0,0,-0.42800406,112.86244,569.03993)" />
+                <path
+                   style="color:#000000;fill:none;stroke:#9a5a0d;stroke-width:1.33691239;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 120.61412,410.01 c 8.43693,-3.46688 15.34438,-4.66054 21.12547,-4.82812"
+                   id="path3801-5"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cc" />
+                <path
+                   style="color:#000000;fill:none;stroke:#9a5a0d;stroke-width:1.33691239;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   d="m 173.54329,378.9846 c -8.71401,-2.69573 -15.70071,-3.26467 -21.47351,-2.91276"
+                   id="path3801-5-3"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="cc" />
+              </g>
+              <g
+                 id="g5117"
+                 transform="matrix(1,0,0,0.95318137,-4.822696,95.75682)">
+                <g
+                   id="g5137"
+                   transform="translate(-59.915121,27.935885)">
+                  <path
+                     style="fill:#783205;fill-opacity:1;stroke:none"
+                     d="m 148.36375,105.42787 c -2.95957,7.20623 -4.2095,17.7639 -6.64963,21.04644 -2.96447,3.9879 -6.92794,-0.25474 -8.19737,-2.35562 -1.65547,-2.73975 0.70192,-14.46217 -3.76247,-15.01769 -6.41334,0.11611 -12.73629,-8.35462 -14.04231,-9.32418 -2.47551,-1.837748 -2.36112,-12.261669 -1.27446,-13.195431 4.94042,0.474886 21.05401,-1.317364 27.70705,-1.064868 3.56049,0.147698 5.89446,0.449752 5.88163,0.761179 -0.0117,0.283971 1.37015,0.57403 3.07075,0.644575 1.7006,0.07054 3.10011,-0.06879 3.11003,-0.309634 0.01,-0.240843 1.04723,-0.815003 2.30512,-1.27591 1.25789,-0.460908 2.2952,-1.035068 2.30512,-1.275912 9.629,0.02326 12.14153,29.190001 -10.45346,21.367051 z"
+                     id="path4220-2"
+                     inkscape:connector-curvature="0"
+                     sodipodi:nodetypes="csscsccsssscc" />
+                  <path
+                     style="fill:#5a1405;fill-opacity:1;stroke:none"
+                     d="m 137.60914,126.26638 c -1.29795,-0.70801 -3.08089,-3.04568 -3.40098,-4.45913 -0.13365,-0.59017 -0.32217,-2.9007 -0.41893,-5.13453 -0.19544,-4.51186 -0.68257,-6.94557 -1.56367,-7.81199 -0.32224,-0.31687 -1.46841,-0.73846 -2.54704,-0.93686 -2.8087,-0.51662 -8.33074,-1.84177 -9.63829,-4.68301 -0.38564,-0.83798 -0.84626,-3.82989 -1.26222,-4.50099 -0.57298,-0.924411 -1.32516,-1.825265 -1.2724,-3.106134 0.16671,-4.047605 3.29674,1.02102 5.06581,-0.440292 1.45181,-1.199244 1.94941,7.338506 9.65709,8.832936 1.74479,0.33829 2.54207,16.86661 6.66401,16.76796 5.5724,-0.13336 8.38303,-19.59136 9.10868,-19.29538 0.69185,0.2822 2.23687,0.55587 3.43334,0.60815 7.46381,-1.07902 12.42255,-2.52851 12.3088,-2.08616 -4.68899,6.26351 -6.65678,5.78492 -10.44918,5.34506 -1.37235,-0.15917 -2.81748,-0.59719 -3.24038,-0.77839 -0.42291,-0.18121 -0.81046,-0.33119 -0.86125,-0.3333 -0.22674,-0.009 -1.77554,5.11489 -3.38931,11.21381 -0.96687,3.65407 -2.06863,7.38053 -2.44836,8.28102 -1.22496,2.90493 -3.33795,3.83063 -5.74572,2.51723 z"
+                     id="path4402"
+                     inkscape:connector-curvature="0"
+                     sodipodi:nodetypes="csssssssssssccsssssc" />
+                </g>
+              </g>
+              <g
+                 transform="matrix(0.94470686,0,0,0.90023016,-94.985502,211.07114)"
+                 id="g5471">
+                <path
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-66.94609,55.026534)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path2993-9-9"
+                   style="color:#000000;fill:#55c85f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.17790425,-0.52568782,0.52532224,0.17802806,-42.56535,44.796773)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4863-5-7"
+                   style="color:#000000;fill:#64d76e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.38004708;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   transform="matrix(0.15998585,-0.47274089,0.47241213,0.16009719,-16.882609,35.4404)"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   sodipodi:ry="73"
+                   sodipodi:rx="73"
+                   sodipodi:cy="422.94403"
+                   sodipodi:cx="297"
+                   id="path4861-3-3"
+                   style="color:#000000;fill:#64d76e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.64661217;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   sodipodi:type="arc" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#78f078;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.00033593;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4865-8-1"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.14112436,-0.41700725,0.41671725,0.14122257,10.906521,25.577398)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:#8cff8c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.33197927;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4859-0-6"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.09774297,-0.28881991,0.28861906,0.09781099,73.039504,1.474704)" />
+                <path
+                   sodipodi:type="arc"
+                   style="color:#000000;fill:none;stroke:#55c85f;stroke-width:2.1744945;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+                   id="path4596-3-6"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.19472135,-0.57538053,0.57498039,0.19485686,-67.09483,54.720513)" />
+                <g
+                   transform="matrix(0.9977853,0.0413905,-0.04110569,0.99802028,-53.26967,-1.175519)"
+                   id="g5034-1-7">
+                  <path
+                     transform="matrix(1.2840373,0.4948033,-0.63693027,1.0442759,-143.31777,-322.87204)"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     sodipodi:ry="9.5979052"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:cy="82.19915"
+                     sodipodi:cx="358.32178"
+                     id="path4113-5-0-5-2"
+                     style="fill:#a0ffa0;fill-opacity:1;stroke:none"
+                     sodipodi:type="arc" />
+                  <path
+                     transform="matrix(0.70523907,0.45092417,-0.44742645,0.70994361,46.568891,-280.57848)"
+                     d="m 362.16094,82.19915 c 0,5.300777 -1.71885,9.597905 -3.83916,9.597905 -2.12031,0 -3.83916,-4.297128 -3.83916,-9.597905 0,-5.300777 1.71885,-9.597905 3.83916,-9.597905 2.12031,0 3.83916,4.297128 3.83916,9.597905 z"
+                     sodipodi:ry="9.5979052"
+                     sodipodi:rx="3.8391619"
+                     sodipodi:cy="82.19915"
+                     sodipodi:cx="358.32178"
+                     id="path4113-5-5-2"
+                     style="fill:#b4ffb4;fill-opacity:1;stroke:none"
+                     sodipodi:type="arc" />
+                </g>
+                <path
+                   sodipodi:type="arc"
+                   style="opacity:0.9;color:#000000;fill:url(#Polkadots-med-4-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1744945;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5306-1-6);enable-background:accumulate"
+                   id="path3782-3-1"
+                   sodipodi:cx="297"
+                   sodipodi:cy="422.94403"
+                   sodipodi:rx="73"
+                   sodipodi:ry="73"
+                   d="m 370,422.94403 c 0,40.31679 -32.68321,73 -73,73 -40.31679,0 -73,-32.68321 -73,-73 0,-40.31679 32.68321,-73 73,-73 40.31679,0 73,32.68321 73,73 z"
+                   transform="matrix(0.17132873,-0.51424088,0.50590581,0.17415147,-32.35412,43.870788)" />
+              </g>
+              <g
+                 id="g5389"
+                 transform="matrix(1,0,0,0.95318137,-57.689815,118.92476)">
+                <g
+                   id="g5133"
+                   style="fill:#cd8cb9;fill-opacity:1">
+                  <g
+                     id="g5130"
+                     style="fill:#cd8cb9;fill-opacity:1">
+                    <path
+                       style="fill:#cd8cb9;fill-opacity:1;stroke:none"
+                       d="m 161.99583,40.800188 c -3.71532,-1.58804 -1.04861,-6.890279 -3.64354,-6.96817 -3.90334,0.179909 -8.20659,9.004468 -14.79059,5.680801 -8.2682,-7.621726 -14.53533,-16.047859 -5.72068,-21.426245 0.0102,-0.248356 0.65811,-0.425026 1.43973,-0.392603 0.78163,0.03242 1.42951,-0.144246 1.43974,-0.392601 0.0112,-0.272367 1.49895,-0.390145 3.74907,-0.296805 2.25014,0.09334 3.7231,0.333937 3.71188,0.606304 -0.0102,0.248354 0.86074,0.48803 1.93548,0.532612 1.07473,0.04458 1.96116,-0.09128 1.96984,-0.301915 0.009,-0.210636 0.67038,-0.722966 1.47045,-1.138511 0.80008,-0.415546 1.46178,-0.927877 1.47046,-1.138513 0.009,-0.210636 0.57534,-0.359762 1.25926,-0.331391 0.68392,0.02837 1.25187,3.848384 1.2621,3.60003 0.0102,-0.248356 0.89792,-0.415078 1.97265,-0.370496 1.07473,0.04458 1.96196,-0.110518 1.97161,-0.34467 0.0101,-0.24443 3.0857,-0.404168 7.22224,-0.375098 3.96259,0.02785 9.08803,-3.98705 11.38988,-4.0331 2.8393,-0.0568 4.17882,0.07027 4.16544,0.395161 -0.0109,0.263389 0.47133,0.499261 1.07152,0.524158 1.26458,0.05246 2.06969,0.97675 2.01466,2.312891 -0.0212,0.514448 0.12135,0.941993 0.31676,0.950099 0.1954,0.0081 0.33854,0.421136 0.31808,0.917846 -0.0205,0.496709 -0.19707,0.896475 -0.39248,0.888369 -0.1954,-0.0081 -0.38457,0.69646 -0.42037,1.565701 -0.0358,0.86924 -0.22999,1.573599 -0.43153,1.565239 -0.20155,-0.0084 -0.48707,0.335997 -0.6345,0.765252 -0.41419,1.205862 -3.06946,4.026311 -4.04105,4.292443 -0.47838,0.131034 -0.88143,0.521013 -0.89566,0.866627 0.90548,6.606749 0.2285,12.027876 -1.90263,10.659837 -2.98032,-1.913142 -8.1638,-11.67366 -10.1917,-2.164069 -0.0271,0.658494 -1.918,2.408223 -2.57312,2.381047 -0.3997,-0.01658 -0.73509,0.173051 -0.74532,0.421409 -0.0102,0.248357 -0.56874,0.428733 -1.24112,0.400841 -0.67239,-0.02789 -1.32971,0.148384 -1.46071,0.391732 -0.131,0.243347 -0.37918,0.436596 -0.55153,0.429447 -0.17233,-0.0071 -0.40378,-0.220294 -0.51432,-0.473659 z"
+                       id="path4220"
+                       inkscape:connector-curvature="0"
+                       sodipodi:nodetypes="ccccsssssssssssssssssssssscscscsccccc" />
+                  </g>
+                </g>
+                <path
+                   sodipodi:nodetypes="csssscsssssssscsssscssccc"
+                   inkscape:connector-curvature="0"
+                   id="path4374"
+                   d="m 161.60504,40.457476 c -1.10038,-0.821787 -1.54389,-1.81412 -1.75524,-3.927274 -0.0914,-0.913659 -0.27503,-1.54005 -0.39204,-1.78223 -0.57782,-1.195957 -2.40727,-0.993359 -5.04117,1.112279 -4.43108,3.542372 -5.8966,4.297179 -8.13932,4.192093 -0.76173,-0.0357 -1.75716,-0.242882 -2.21207,-0.460419 -0.28995,-0.871858 -7.05187,-5.620693 -6.04663,-7.97683 0.6846,-1.604589 2.97336,5.350011 10.23443,3.943473 4.19138,-0.811907 2.48766,-4.277319 7.83283,-4.502056 1.20374,-0.05061 3.74241,0.375217 5.00744,2.230344 1.45651,2.135957 1.60988,5.661859 2.45597,4.199703 1.6571,-2.863695 2.68808,-5.603114 4.85743,-6.644584 3.40431,-1.634348 6.11987,1.1587 8.53796,3.522663 1.12755,1.10232 2.83788,2.660185 4.19938,-0.419415 0.99427,-2.248955 -0.65924,4.343883 -0.78999,5.266797 -0.62711,0.577451 -0.92089,0.375576 -3.80873,-2.617228 -2.74268,-2.842362 -3.47865,-3.393967 -4.59145,-3.4413 -1.32861,-0.05651 -2.10135,0.879803 -2.82077,3.417884 -0.35668,1.258328 -1.25607,2.267559 -2.61555,2.93499 -0.45096,0.221394 -0.9762,0.491288 -1.1672,0.599759 -0.19102,0.108473 -0.72742,0.241813 -1.19202,0.296312 -0.4646,0.0545 -0.99921,0.241345 -1.18802,0.415209 -0.42552,0.391828 -0.32154,0.419261 -1.36524,-0.360201 l 0,0 z"
+                   style="opacity:0.3;fill:#1a1a1a;fill-opacity:1;stroke:none" />
+                <path
+                   sodipodi:nodetypes="csssscscccsssssccsssc"
+                   inkscape:connector-curvature="0"
+                   id="path4725"
+                   d="m 142.96006,25.321411 c 0.49294,-1.103183 0.89143,-1.641111 2.2398,-3.023602 0.23688,-0.242874 0.74792,-0.475316 1.13563,-0.516547 0.38771,-0.0412 0.85821,-0.197735 1.04556,-0.3478 0.506,-0.405333 4.06459,0.06934 4.57966,0.61089 0.56223,0.591106 2.28728,0.767107 2.59795,0.265046 0.13,-0.210069 0.56675,-0.658793 0.97055,-0.997155 0.4038,-0.338362 0.8331,-0.757103 0.954,-0.930529 0.12086,-0.173438 0.49618,-0.350895 0.83395,-0.394368 0.33779,-0.04347 0.72621,-0.196493 0.86315,-0.340051 0.13696,-0.143568 0.6729,-0.279622 1.19098,-0.302349 0.51808,-0.0227 1.24656,-0.142717 1.61884,-0.266635 0.73074,-0.243232 3.34808,-0.190214 9.81146,0.19875 3.68858,0.221992 4.13366,0.286972 4.31634,0.630298 0.11204,0.210551 0.4427,0.486905 0.7348,0.614131 0.68191,0.297003 0.95697,0.898851 0.92943,2.033647 -0.0126,0.498912 0.0513,1.033354 0.14091,1.187621 -1.76335,-0.896762 -3.81765,-2.791863 -6.89029,-3.355403 -2.97264,-0.545196 -6.95284,0.221969 -9.35864,0.480053 -5.43564,0.583114 -10.51889,1.074177 -13.75599,2.239267 -2.00233,0.720678 -2.87724,2.59601 -3.95809,2.214736 z"
+                   style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+              </g>
+              <g
+                 id="g5125"
+                 transform="matrix(0.86738581,0,0,0.82313357,-39.853311,136.38214)">
+                <path
+                   sodipodi:nodetypes="sssscsssssssssscsssscscs"
+                   inkscape:connector-curvature="0"
+                   id="path4240"
+                   d="m 161.48284,106.71433 c -0.28946,-0.18328 -0.56796,-0.50333 -0.80052,-0.51297 -0.23258,-0.01 -1.93136,0.057 -1.89091,-0.87805 0.0609,-1.40485 -2.11377,-3.86337 -0.72673,-9.005275 1.37251,-5.088017 7.15897,-12.559645 0.9945,-12.782653 1.26685,-0.590513 2.67288,-1.310896 3.12451,-1.60085 0.45161,-0.289956 1.52855,-0.594703 2.39319,-0.677218 0.86464,-0.08251 1.97207,-4.261117 2.25999,-4.406575 0.28791,-0.145458 1.75036,-0.356041 3.24988,-0.467963 1.49952,-0.11192 3.80944,-0.296369 5.13315,-0.409886 1.32372,-0.113516 7.36904,-0.155524 13.43407,-0.09335 16.88836,0.173126 19.65896,0.267932 20.1472,0.689405 0.23867,0.206035 1.0467,0.478469 1.79563,0.60541 1.89297,0.320853 2.61809,5.038322 2.81955,6.42538 0.0928,0.638793 0.37296,1.249715 0.62261,1.357602 0.57746,0.249542 0.54739,1.220051 -0.052,1.677091 -0.25262,0.192642 -0.58497,1.003709 -0.73856,1.802373 -0.18889,0.982236 6.29443,9.550653 1.43155,12.142119 -2.90213,1.54657 -6.8971,-5.829323 -8.61086,-4.995256 -0.98708,0.480396 -2.05687,1.159031 -2.3773,1.508078 -0.32043,0.349046 -0.83559,0.628712 -1.14478,0.62148 0.77435,7.923848 -6.3489,8.200088 -17.84936,8.984748 -8.42581,0.57489 -0.40296,12.5064 -8.11629,14.61699 -6.47813,2.58589 -9.08987,-10.79607 -15.09854,-14.60063 z"
+                   style="fill:#64d76e;fill-opacity:1;stroke:none" />
+                <path
+                   sodipodi:nodetypes="cssscsssccsssccssssccc"
+                   inkscape:connector-curvature="0"
+                   id="path4376"
+                   d="m 172.69548,120.63384 c -1.29081,-0.8626 -2.33566,-2.22701 -5.42575,-7.08523 -2.78187,-4.37362 -5.15063,-7.04289 -6.56706,-7.40017 -1.47752,-0.37269 -1.69694,-0.67654 -2.37536,-3.28936 -0.92001,-3.543279 8.48056,5.92964 10.79868,0.28978 -0.66324,5.87042 2.05067,13.77387 5.3653,13.26835 2.39904,-0.36588 2.27953,-8.39911 5.97621,-11.27969 3.52544,-2.74715 9.52421,-0.26459 14.5216,-2.24992 2.93864,-1.16745 2.72072,-6.671663 6.4036,-8.046587 2.47002,-3.232062 3.93861,-3.375657 12.07028,0.186559 -0.8209,-0.762523 3.31363,2.786262 1.09391,4.915906 -0.8981,0.861652 -5.44635,-3.246453 -8.01848,-4.504792 -0.2834,-0.138646 -1.07583,0.312113 -1.69032,0.722639 -0.61451,0.410526 -1.44958,0.903681 -1.85575,1.0959 -0.52426,0.24812 -0.68906,0.530745 -0.56815,0.974395 0.33523,1.230017 -0.34185,3.41321 -1.40388,4.5268 -1.99397,2.09071 -4.4954,2.79245 -12.37393,3.47129 -7.73015,0.66606 -8.20648,1.09093 -8.47367,7.55843 -0.13642,3.30207 -0.27223,4.11961 -0.85676,5.15759 -1.24646,2.21338 -4.5673,3.06015 -6.62046,1.68811 l 0,0 z"
+                   style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:none" />
+              </g>
+              <path
+                 sodipodi:nodetypes="csssscscccsssssccsssc"
+                 inkscape:connector-curvature="0"
+                 id="path4725-9"
+                 d="m 58.825975,210.15494 c 0.49294,-1.05154 0.89143,-1.56428 2.2398,-2.88204 0.23688,-0.23151 0.74792,-0.45307 1.13563,-0.49237 0.38771,-0.0393 0.85821,-0.18848 1.04556,-0.33151 0.506,-0.38636 4.06459,0.0661 4.57966,0.58229 0.56223,0.56342 2.28728,0.73119 2.59795,0.25263 0.13,-0.20023 0.56675,-0.62795 0.97055,-0.95047 0.4038,-0.32252 0.8331,-0.72165 0.954,-0.88696 0.12086,-0.16532 0.49618,-0.33446 0.83395,-0.37591 0.33779,-0.0415 0.72621,-0.18729 0.86315,-0.32413 0.13696,-0.13684 0.6729,-0.26653 1.19098,-0.28819 0.51808,-0.0216 1.24656,-0.13603 1.61884,-0.25415 0.73074,-0.23184 1.34808,-0.18131 7.81146,0.18945 3.68858,0.21159 4.13366,0.27353 4.31634,0.60079 0.11204,0.20069 0.4427,0.4641 0.7348,0.58537 0.68191,0.2831 0.95697,0.85677 0.92943,1.93843 -0.0126,0.47556 0.0513,0.98498 0.14091,1.13202 -1.76335,-0.85478 -1.81765,-2.66115 -4.89029,-3.19831 -2.97264,-0.51966 -6.95284,0.21158 -9.35864,0.45758 -5.43564,0.55582 -10.51889,1.02389 -13.75599,2.13443 -2.00233,0.68694 -2.87724,2.47447 -3.95809,2.11105 z"
+                 style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+              <path
+                 sodipodi:nodetypes="csssscscccsssssccsssc"
+                 inkscape:connector-curvature="0"
+                 id="path4725-9-6"
+                 d="m 104.5571,207.25983 c 0.53552,-1.05154 0.96844,-1.56427 2.43329,-2.88204 0.25734,-0.23151 0.81253,-0.45306 1.23373,-0.49236 0.42121,-0.0393 0.93235,-0.18849 1.13588,-0.33152 0.54972,-0.38635 4.41572,0.0661 4.97529,0.58229 0.6108,0.56342 2.48487,0.73119 2.82238,0.25263 0.14123,-0.20023 0.61571,-0.62795 1.05439,-0.95046 0.43868,-0.32252 0.90507,-0.72166 1.03641,-0.88697 0.1313,-0.16532 0.53904,-0.33446 0.90599,-0.3759 0.36697,-0.0415 0.78895,-0.1873 0.93772,-0.32413 0.14879,-0.13685 0.73103,-0.26653 1.29386,-0.2882 0.56284,-0.0216 1.35425,-0.13603 1.75869,-0.25415 0.79387,-0.23184 1.46454,-0.18131 8.48627,0.18945 4.00722,0.2116 4.49075,0.27353 4.68921,0.60079 0.12172,0.20069 0.48094,0.4641 0.79828,0.58538 0.74082,0.28309 1.03964,0.85676 1.00972,1.93842 -0.0137,0.47557 0.0557,0.98498 0.15308,1.13202 -1.91568,-0.85477 -1.97467,-2.66115 -5.31275,-3.1983 -3.22943,-0.51967 -7.55347,0.21158 -10.1671,0.45757 -5.90521,0.55582 -11.42758,1.02389 -14.94432,2.13443 -2.17531,0.68694 -3.1258,2.47447 -4.30002,2.11105 z"
+                 style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none" />
+            </g>
+          </g>
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/LandBackTex.png has changed
Binary file share/hedgewars/Data/Themes/Cake/LandTex.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/LandTex.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,7229 @@
+<?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"
+   id="svg3055"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="256"
+   height="256"
+   sodipodi:docname="LandTex.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/LandBackTex.png"
+   inkscape:export-xdpi="168.75"
+   inkscape:export-ydpi="168.75">
+  <metadata
+     id="metadata3061">
+    <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>
+  <defs
+     id="defs3059" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="525"
+     id="namedview3057"
+     showgrid="false"
+     inkscape:zoom="0.96286538"
+     inkscape:cx="60.452588"
+     inkscape:cy="204.35325"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg3055" />
+  <g
+     id="g4747"
+     transform="matrix(1.0666667,0,0,1.0666667,0,-8e-6)">
+    <g
+       id="g5530" />
+    <g
+       inkscape:export-ydpi="90"
+       inkscape:export-xdpi="90"
+       inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/LandTex.png"
+       id="g6899">
+      <rect
+         style="opacity:0.25;fill:#ffff99;fill-opacity:1;stroke:none"
+         id="rect3119"
+         width="239.31035"
+         height="239.31035"
+         x="0.68965518"
+         y="-2.553513e-14"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <path
+         style="fill:#ffff99;fill-opacity:1;stroke:none"
+         d="M 0,120.00001 0,7.4999998e-6 l 120,0 119.99999,0 0,120.0000025000002 0,119.99999 L 120,240 0,240 0,120.00001 z"
+         id="path3121"
+         inkscape:connector-curvature="0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <g
+         id="g5362"
+         transform="translate(0,-4)"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+           inkscape:connector-curvature="0"
+           id="path3123-8"
+           d="m 0,190.2244 c 0,0 7.8260067,2.3368 11.791908,2.15497 4.486646,-0.20571 8.696038,-3.96444 13.179197,-3.65374 3.495404,0.24224 6.491898,4.17719 9.991661,4.25327 3.845769,0.0836 7.245205,-4.29956 11.090661,-4.19396 3.78169,0.10388 6.988799,4.47425 10.766723,4.7195 3.783796,0.24562 7.297379,-3.45018 11.084216,-3.30724 3.847316,0.14519 7.252032,4.44331 11.09663,4.20385 3.597909,-0.22408 6.461528,-4.90833 10.056298,-5.2072 3.458448,-0.28757 6.626722,3.79826 10.076575,3.36751 3.812821,-0.47609 6.580731,-6.19377 10.407071,-6.41187 3.307,-0.18851 6.13312,3.3407 9.32455,4.49743 3.75145,1.3597 7.62063,3.57871 11.47135,2.84383 2.83237,-0.54055 4.77888,-5.04874 7.63958,-5.16002 2.77172,-0.10776 4.84355,4.59491 7.61312,4.41551 2.65189,-0.17178 4.30638,-4.69898 6.93934,-5.14957 3.31498,-0.56732 6.38537,3.84472 9.70507,3.32735 3.12679,-0.48729 5.19225,-5.56508 8.33303,-5.85728 3.19886,-0.29762 5.83336,4.26859 9.03982,4.33496 2.66874,0.0552 4.93848,-3.18587 7.60625,-3.29484 3.82967,-0.15638 7.29602,3.52492 11.12052,3.82978 4.19288,0.33422 8.29083,-2.478 12.48721,-2.2314 4.2801,0.25149 8.26247,3.28877 12.53182,3.76068 C 228.89116,192.07814 240,190.2244 240,190.2244 l 0,47.33196 c 0,0 -10.85203,-4.05894 -16.37861,-3.63265 -5.02063,0.38726 -9.45898,5.69945 -14.48715,5.56528 -3.96393,-0.10588 -7.31277,-4.94621 -11.27734,-4.99307 -4.28757,-0.0508 -8.00174,5.68525 -12.26735,5.11069 -4.01752,-0.54114 -6.5421,-7.7317 -10.58018,-7.79473 -3.89206,-0.0608 -6.46349,6.5928 -10.32926,7.19236 -4.33643,0.67255 -8.32194,-4.44029 -12.68693,-4.30332 -4.53051,0.14218 -8.46622,5.58253 -12.99251,5.2875 -3.44079,-0.22429 -6.10653,-4.7646 -9.52896,-5.28439 -3.92652,-0.59633 -7.73692,2.67601 -11.68915,2.62706 -5.64394,-0.07 -10.99221,-4.13952 -16.63637,-4.16439 -5.353752,-0.0237 -10.447028,3.93488 -15.799991,3.81099 -5.722935,-0.13244 -11.057598,-5.24887 -16.773579,-4.85349 -4.775407,0.33032 -8.85111,5.43375 -13.61605,5.96602 -5.39407,0.60253 -10.644656,-3.52089 -16.053769,-3.23871 -5.377925,0.28055 -10.343155,5.21122 -15.719168,4.87267 -4.191288,-0.26392 -7.73691,-4.99813 -11.925805,-5.32162 C 7.4282637,234.10682 0,237.55636 0,237.55636 z"
+           style="fill:#ffe680;fill-opacity:1;stroke:none" />
+        <path
+           sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+           inkscape:connector-curvature="0"
+           id="path3123"
+           d="m 0,196.43606 c 0,0 7.8260067,1.7643 11.791908,1.62702 4.486646,-0.15531 8.696038,-2.9932 13.179197,-2.75862 3.495404,0.18289 6.491898,3.15383 9.991661,3.21127 3.845769,0.0631 7.245205,-3.24621 11.090661,-3.16649 3.78169,0.0784 6.988799,3.37811 10.766723,3.56328 3.783796,0.18545 7.297379,-2.60492 11.084216,-2.49701 3.847316,0.10963 7.252032,3.35476 11.096633,3.17397 3.597909,-0.16919 6.461526,-3.70585 10.056298,-3.93151 3.458446,-0.21711 6.62672,2.86774 10.076575,2.54251 3.812818,-0.35945 6.580728,-4.67637 10.407068,-4.84104 3.307,-0.14232 6.13312,2.52227 9.32455,3.39562 3.75145,1.02659 7.62063,2.70197 11.47135,2.14712 2.83237,-0.40812 4.77888,-3.81186 7.63958,-3.89587 2.77172,-0.0814 4.84355,3.46921 7.61312,3.33376 2.65189,-0.1297 4.30638,-3.54778 6.93934,-3.88799 3.31498,-0.42833 6.38537,2.90282 9.70507,2.5122 3.12679,-0.36792 5.19225,-4.20171 8.33303,-4.42233 3.19886,-0.22471 5.83336,3.22284 9.03982,3.27295 2.66874,0.0417 4.93848,-2.40537 7.60625,-2.48764 3.82967,-0.11807 7.29602,2.66135 11.12052,2.89153 4.19288,0.25234 8.29083,-1.87092 12.48721,-1.68474 4.2801,0.18988 8.26247,2.48307 12.53182,2.83937 5.53856,0.46223 16.6474,-0.93736 16.6474,-0.93736 l 0,35.73621 c 0,0 -10.85203,-3.06455 -16.37861,-2.7427 -5.02063,0.29239 -9.45898,4.30316 -14.48715,4.20185 -3.96393,-0.0799 -7.31277,-3.73444 -11.27734,-3.76982 -4.28757,-0.0383 -8.00174,4.29243 -12.26735,3.85864 -4.01752,-0.40857 -6.5421,-5.83753 -10.58018,-5.88513 -3.89206,-0.0459 -6.46349,4.97765 -10.32926,5.43033 -4.33643,0.50778 -8.32194,-3.35248 -12.68693,-3.24906 -4.53051,0.10735 -8.46622,4.21487 -12.99251,3.99212 -3.44079,-0.16934 -6.10653,-3.59733 -9.52896,-3.98977 -3.92652,-0.45024 -7.73692,2.02042 -11.68915,1.98346 -5.64394,-0.0528 -10.99221,-3.12539 -16.63637,-3.14417 -5.353748,-0.0179 -10.447032,2.97088 -15.799991,2.87735 -5.722937,-0.1 -11.057598,-3.96297 -16.773579,-3.66445 -4.775407,0.2494 -8.85111,4.10255 -13.61605,4.50442 -5.39407,0.45492 -10.644656,-2.65831 -16.053769,-2.44527 -5.377925,0.21182 -10.343155,3.93454 -15.719168,3.67894 -4.191288,-0.19927 -7.73691,-3.77366 -11.925805,-4.0179 C 7.4282641,229.56782 0,232.17227 0,232.17227 z"
+           style="fill:#ffdd55;fill-opacity:1;stroke:none" />
+      </g>
+      <g
+         id="g3199-74-8-6"
+         style="opacity:0.25"
+         transform="matrix(0.49856324,0,0,0.49856321,150.89486,116.92591)"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           sodipodi:ry="3.1123919"
+           sodipodi:rx="3.2853026"
+           sodipodi:cy="168.06917"
+           sodipodi:cx="22.305475"
+           id="path3125-5-0-7-15"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           sodipodi:ry="3.1123919"
+           sodipodi:rx="3.2853026"
+           sodipodi:cy="168.06917"
+           sodipodi:cx="22.305475"
+           id="path3125-5-36-27-3-0"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           sodipodi:type="arc" />
+      </g>
+      <g
+         transform="translate(0,-86.765413)"
+         id="g5362-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+           inkscape:connector-curvature="0"
+           id="path3123-8-6"
+           d="m 0,190.2244 c 0,0 7.8260067,2.3368 11.791908,2.15497 4.486646,-0.20571 8.696038,-3.96444 13.179197,-3.65374 3.495404,0.24224 6.491898,4.17719 9.991661,4.25327 3.845769,0.0836 7.245205,-4.29956 11.090661,-4.19396 3.78169,0.10388 6.988799,4.47425 10.766723,4.7195 3.783796,0.24562 7.297379,-3.45018 11.084216,-3.30724 3.847316,0.14519 7.252032,4.44331 11.09663,4.20385 3.597909,-0.22408 6.461528,-4.90833 10.056298,-5.2072 3.458448,-0.28757 6.626722,3.79826 10.076575,3.36751 3.812821,-0.47609 6.580731,-6.19377 10.407071,-6.41187 3.307,-0.18851 6.13312,3.3407 9.32455,4.49743 3.75145,1.3597 7.62063,3.57871 11.47135,2.84383 2.83237,-0.54055 4.77888,-5.04874 7.63958,-5.16002 2.77172,-0.10776 4.84355,4.59491 7.61312,4.41551 2.65189,-0.17178 4.30638,-4.69898 6.93934,-5.14957 3.31498,-0.56732 6.38537,3.84472 9.70507,3.32735 3.12679,-0.48729 5.19225,-5.56508 8.33303,-5.85728 3.19886,-0.29762 5.83336,4.26859 9.03982,4.33496 2.66874,0.0552 4.93848,-3.18587 7.60625,-3.29484 3.82967,-0.15638 7.29602,3.52492 11.12052,3.82978 4.19288,0.33422 8.29083,-2.478 12.48721,-2.2314 4.2801,0.25149 8.26247,3.28877 12.53182,3.76068 C 228.89116,192.07814 240,190.2244 240,190.2244 l 0,47.33196 c 0,0 -10.85203,-4.05894 -16.37861,-3.63265 -5.02063,0.38726 -9.45898,5.69945 -14.48715,5.56528 -3.96393,-0.10588 -7.31277,-4.94621 -11.27734,-4.99307 -4.28757,-0.0508 -8.00174,5.68525 -12.26735,5.11069 -4.01752,-0.54114 -6.5421,-7.7317 -10.58018,-7.79473 -3.89206,-0.0608 -6.46349,6.5928 -10.32926,7.19236 -4.33643,0.67255 -8.32194,-4.44029 -12.68693,-4.30332 -4.53051,0.14218 -8.46622,5.58253 -12.99251,5.2875 -3.44079,-0.22429 -6.10653,-4.7646 -9.52896,-5.28439 -3.92652,-0.59633 -7.73692,2.67601 -11.68915,2.62706 -5.64394,-0.07 -10.99221,-4.13952 -16.63637,-4.16439 -5.353752,-0.0237 -10.447028,3.93488 -15.799991,3.81099 -5.722935,-0.13244 -11.057598,-5.24887 -16.773579,-4.85349 -4.775407,0.33032 -8.85111,5.43375 -13.61605,5.96602 -5.39407,0.60253 -10.644656,-3.52089 -16.053769,-3.23871 -5.377925,0.28055 -10.343155,5.21122 -15.719168,4.87267 -4.191288,-0.26392 -7.73691,-4.99813 -11.925805,-5.32162 C 7.4282637,234.10682 0,237.55636 0,237.55636 z"
+           style="fill:#ffe680;fill-opacity:1;stroke:none" />
+        <path
+           sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+           inkscape:connector-curvature="0"
+           id="path3123-3"
+           d="m 0,196.43606 c 0,0 7.8260067,1.7643 11.791908,1.62702 4.486646,-0.15531 8.696038,-2.9932 13.179197,-2.75862 3.495404,0.18289 6.491898,3.15383 9.991661,3.21127 3.845769,0.0631 7.245205,-3.24621 11.090661,-3.16649 3.78169,0.0784 6.988799,3.37811 10.766723,3.56328 3.783796,0.18545 7.297379,-2.60492 11.084216,-2.49701 3.847316,0.10963 7.252032,3.35476 11.096633,3.17397 3.597909,-0.16919 6.461526,-3.70585 10.056298,-3.93151 3.458446,-0.21711 6.62672,2.86774 10.076575,2.54251 3.812818,-0.35945 6.580728,-4.67637 10.407068,-4.84104 3.307,-0.14232 6.13312,2.52227 9.32455,3.39562 3.75145,1.02659 7.62063,2.70197 11.47135,2.14712 2.83237,-0.40812 4.77888,-3.81186 7.63958,-3.89587 2.77172,-0.0814 4.84355,3.46921 7.61312,3.33376 2.65189,-0.1297 4.30638,-3.54778 6.93934,-3.88799 3.31498,-0.42833 6.38537,2.90282 9.70507,2.5122 3.12679,-0.36792 5.19225,-4.20171 8.33303,-4.42233 3.19886,-0.22471 5.83336,3.22284 9.03982,3.27295 2.66874,0.0417 4.93848,-2.40537 7.60625,-2.48764 3.82967,-0.11807 7.29602,2.66135 11.12052,2.89153 4.19288,0.25234 8.29083,-1.87092 12.48721,-1.68474 4.2801,0.18988 8.26247,2.48307 12.53182,2.83937 5.53856,0.46223 16.6474,-0.93736 16.6474,-0.93736 l 0,35.73621 c 0,0 -10.85203,-3.06455 -16.37861,-2.7427 -5.02063,0.29239 -9.45898,4.30316 -14.48715,4.20185 -3.96393,-0.0799 -7.31277,-3.73444 -11.27734,-3.76982 -4.28757,-0.0383 -8.00174,4.29243 -12.26735,3.85864 -4.01752,-0.40857 -6.5421,-5.83753 -10.58018,-5.88513 -3.89206,-0.0459 -6.46349,4.97765 -10.32926,5.43033 -4.33643,0.50778 -8.32194,-3.35248 -12.68693,-3.24906 -4.53051,0.10735 -8.46622,4.21487 -12.99251,3.99212 -3.44079,-0.16934 -6.10653,-3.59733 -9.52896,-3.98977 -3.92652,-0.45024 -7.73692,2.02042 -11.68915,1.98346 -5.64394,-0.0528 -10.99221,-3.12539 -16.63637,-3.14417 -5.353748,-0.0179 -10.447032,2.97088 -15.799991,2.87735 -5.722937,-0.1 -11.057598,-3.96297 -16.773579,-3.66445 -4.775407,0.2494 -8.85111,4.10255 -13.61605,4.50442 -5.39407,0.45492 -10.644656,-2.65831 -16.053769,-2.44527 -5.377925,0.21182 -10.343155,3.93454 -15.719168,3.67894 -4.191288,-0.19927 -7.73691,-3.77366 -11.925805,-4.0179 C 7.4282641,229.56782 0,232.17227 0,232.17227 z"
+           style="fill:#ffdd55;fill-opacity:1;stroke:none" />
+      </g>
+      <g
+         transform="translate(0,-168.44726)"
+         id="g5362-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+           inkscape:connector-curvature="0"
+           id="path3123-8-5"
+           d="m 0,190.2244 c 0,0 7.8260067,2.3368 11.791908,2.15497 4.486646,-0.20571 8.696038,-3.96444 13.179197,-3.65374 3.495404,0.24224 6.491898,4.17719 9.991661,4.25327 3.845769,0.0836 7.245205,-4.29956 11.090661,-4.19396 3.78169,0.10388 6.988799,4.47425 10.766723,4.7195 3.783796,0.24562 7.297379,-3.45018 11.084216,-3.30724 3.847316,0.14519 7.252032,4.44331 11.09663,4.20385 3.597909,-0.22408 6.461528,-4.90833 10.056298,-5.2072 3.458448,-0.28757 6.626722,3.79826 10.076575,3.36751 3.812821,-0.47609 6.580731,-6.19377 10.407071,-6.41187 3.307,-0.18851 6.13312,3.3407 9.32455,4.49743 3.75145,1.3597 7.62063,3.57871 11.47135,2.84383 2.83237,-0.54055 4.77888,-5.04874 7.63958,-5.16002 2.77172,-0.10776 4.84355,4.59491 7.61312,4.41551 2.65189,-0.17178 4.30638,-4.69898 6.93934,-5.14957 3.31498,-0.56732 6.38537,3.84472 9.70507,3.32735 3.12679,-0.48729 5.19225,-5.56508 8.33303,-5.85728 3.19886,-0.29762 5.83336,4.26859 9.03982,4.33496 2.66874,0.0552 4.93848,-3.18587 7.60625,-3.29484 3.82967,-0.15638 7.29602,3.52492 11.12052,3.82978 4.19288,0.33422 8.29083,-2.478 12.48721,-2.2314 4.2801,0.25149 8.26247,3.28877 12.53182,3.76068 C 228.89116,192.07814 240,190.2244 240,190.2244 l 0,47.33196 c 0,0 -10.85203,-4.05894 -16.37861,-3.63265 -5.02063,0.38726 -9.45898,5.69945 -14.48715,5.56528 -3.96393,-0.10588 -7.31277,-4.94621 -11.27734,-4.99307 -4.28757,-0.0508 -8.00174,5.68525 -12.26735,5.11069 -4.01752,-0.54114 -6.5421,-7.7317 -10.58018,-7.79473 -3.89206,-0.0608 -6.46349,6.5928 -10.32926,7.19236 -4.33643,0.67255 -8.32194,-4.44029 -12.68693,-4.30332 -4.53051,0.14218 -8.46622,5.58253 -12.99251,5.2875 -3.44079,-0.22429 -6.10653,-4.7646 -9.52896,-5.28439 -3.92652,-0.59633 -7.73692,2.67601 -11.68915,2.62706 -5.64394,-0.07 -10.99221,-4.13952 -16.63637,-4.16439 -5.353752,-0.0237 -10.447028,3.93488 -15.799991,3.81099 -5.722935,-0.13244 -11.057598,-5.24887 -16.773579,-4.85349 -4.775407,0.33032 -8.85111,5.43375 -13.61605,5.96602 -5.39407,0.60253 -10.644656,-3.52089 -16.053769,-3.23871 -5.377925,0.28055 -10.343155,5.21122 -15.719168,4.87267 -4.191288,-0.26392 -7.73691,-4.99813 -11.925805,-5.32162 C 7.4282637,234.10682 0,237.55636 0,237.55636 z"
+           style="fill:#ffe680;fill-opacity:1;stroke:none" />
+        <path
+           sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+           inkscape:connector-curvature="0"
+           id="path3123-89"
+           d="m 0,196.43606 c 0,0 7.8260067,1.7643 11.791908,1.62702 4.486646,-0.15531 8.696038,-2.9932 13.179197,-2.75862 3.495404,0.18289 6.491898,3.15383 9.991661,3.21127 3.845769,0.0631 7.245205,-3.24621 11.090661,-3.16649 3.78169,0.0784 6.988799,3.37811 10.766723,3.56328 3.783796,0.18545 7.297379,-2.60492 11.084216,-2.49701 3.847316,0.10963 7.252032,3.35476 11.096633,3.17397 3.597909,-0.16919 6.461526,-3.70585 10.056298,-3.93151 3.458446,-0.21711 6.62672,2.86774 10.076575,2.54251 3.812818,-0.35945 6.580728,-4.67637 10.407068,-4.84104 3.307,-0.14232 6.13312,2.52227 9.32455,3.39562 3.75145,1.02659 7.62063,2.70197 11.47135,2.14712 2.83237,-0.40812 4.77888,-3.81186 7.63958,-3.89587 2.77172,-0.0814 4.84355,3.46921 7.61312,3.33376 2.65189,-0.1297 4.30638,-3.54778 6.93934,-3.88799 3.31498,-0.42833 6.38537,2.90282 9.70507,2.5122 3.12679,-0.36792 5.19225,-4.20171 8.33303,-4.42233 3.19886,-0.22471 5.83336,3.22284 9.03982,3.27295 2.66874,0.0417 4.93848,-2.40537 7.60625,-2.48764 3.82967,-0.11807 7.29602,2.66135 11.12052,2.89153 4.19288,0.25234 8.29083,-1.87092 12.48721,-1.68474 4.2801,0.18988 8.26247,2.48307 12.53182,2.83937 5.53856,0.46223 16.6474,-0.93736 16.6474,-0.93736 l 0,35.73621 c 0,0 -10.85203,-3.06455 -16.37861,-2.7427 -5.02063,0.29239 -9.45898,4.30316 -14.48715,4.20185 -3.96393,-0.0799 -7.31277,-3.73444 -11.27734,-3.76982 -4.28757,-0.0383 -8.00174,4.29243 -12.26735,3.85864 -4.01752,-0.40857 -6.5421,-5.83753 -10.58018,-5.88513 -3.89206,-0.0459 -6.46349,4.97765 -10.32926,5.43033 -4.33643,0.50778 -8.32194,-3.35248 -12.68693,-3.24906 -4.53051,0.10735 -8.46622,4.21487 -12.99251,3.99212 -3.44079,-0.16934 -6.10653,-3.59733 -9.52896,-3.98977 -3.92652,-0.45024 -7.73692,2.02042 -11.68915,1.98346 -5.64394,-0.0528 -10.99221,-3.12539 -16.63637,-3.14417 -5.353748,-0.0179 -10.447032,2.97088 -15.799991,2.87735 -5.722937,-0.1 -11.057598,-3.96297 -16.773579,-3.66445 -4.775407,0.2494 -8.85111,4.10255 -13.61605,4.50442 -5.39407,0.45492 -10.644656,-2.65831 -16.053769,-2.44527 -5.377925,0.21182 -10.343155,3.93454 -15.719168,3.67894 -4.191288,-0.19927 -7.73691,-3.77366 -11.925805,-4.0179 C 7.4282641,229.56782 0,232.17227 0,232.17227 z"
+           style="fill:#ffdd55;fill-opacity:1;stroke:none" />
+      </g>
+      <path
+         transform="matrix(0.99712644,0,0,0.99712644,9.3850575,-1.770115)"
+         d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+         sodipodi:ry="3.1123919"
+         sodipodi:rx="3.2853026"
+         sodipodi:cy="168.06917"
+         sodipodi:cx="22.305475"
+         id="path3125"
+         style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+         sodipodi:type="arc"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <path
+         transform="matrix(0.99712644,0,0,0.99712644,18.266289,9.3055137)"
+         d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+         sodipodi:ry="3.1123919"
+         sodipodi:rx="3.2853026"
+         sodipodi:cy="168.06917"
+         sodipodi:cx="22.305475"
+         id="path3125-5-3"
+         style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+         sodipodi:type="arc"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-20.910977,22.119544)"
+         style="opacity:0.25"
+         id="g3199-70"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-39"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-44.473622,24.604486)"
+         style="opacity:0.25"
+         id="g3199-1-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-1-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-8-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,10.010364,24.234533)"
+         style="opacity:0.25"
+         id="g3199-5-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-7-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-7-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,70.799537,16.544)"
+         style="opacity:0.25"
+         id="g3199-4-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-41-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-2-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,107.54838,14.615908)"
+         style="opacity:0.25"
+         id="g3199-7-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,136.56209,21.475913)"
+         style="opacity:0.25"
+         id="g3199-50-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-18-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-40-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,173.17683,97.403068)"
+         style="opacity:0.25"
+         id="g3199-74-0-08"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,150.57305,100.36962)"
+         style="opacity:0.25"
+         id="g3199-74-7-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-79-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-7-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,126.05293,105.23222)"
+         style="opacity:0.25"
+         id="g3199-74-1-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-5-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-1-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,117.05226,106.48331)"
+         style="opacity:0.25"
+         id="g3199-74-76-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-55-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-0-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,92.404397,105.71988)"
+         style="opacity:0.25"
+         id="g3199-74-3-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-0-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-8-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,73.385666,105.71988)"
+         style="opacity:0.25"
+         id="g3199-74-2-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-25-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-62-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,48.412699,110.47291)"
+         style="opacity:0.25"
+         id="g3199-74-75-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-1-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-68-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,58.268212,104.2569)"
+         style="opacity:0.25"
+         id="g3199-74-36-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-22-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-33-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,181.15849,104.74457)"
+         style="opacity:0.25"
+         id="g3199-74-9-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-6-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-82-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,164.74168,20.353108)"
+         style="opacity:0.25"
+         id="g3199-7-4-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-6-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-7-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,29.217448,105.33305)"
+         style="opacity:0.25"
+         id="g3199-74-0-9-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-7-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-1-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,1.4414782,102.05736)"
+         style="opacity:0.25"
+         id="g3199-74-8-1-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-5-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-33-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,18.538288,105.48113)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-40"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,202.84499,104.98332)"
+         style="opacity:0.25"
+         id="g3199-74-8-96-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-1-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-5-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-36.122929,4.4641019)"
+         style="opacity:0.25"
+         id="g3199-70-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-39-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-6-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-49.828023,-3.8672684)"
+         style="opacity:0.25"
+         id="g3199-1-1-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-1-8-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-8-5-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,4.6559636,-4.2372222)"
+         style="opacity:0.25"
+         id="g3199-5-0-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-7-3-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-7-7-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,28.793891,7.8317469)"
+         style="opacity:0.25"
+         id="g3199-8-7-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-4-4-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-4-0-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,69.483551,-2.1682547)"
+         style="opacity:0.25"
+         id="g3199-4-2-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-41-9-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-2-6-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,99.483553,6.4524319)"
+         style="opacity:0.25"
+         id="g3199-7-2-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-2-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-4-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,131.20768,-6.9958423)"
+         style="opacity:0.25"
+         id="g3199-50-1-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-18-8-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-40-7-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,174.58069,89.975969)"
+         style="opacity:0.25"
+         id="g3199-74-85-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-3-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-9-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,145.54046,88.454155)"
+         style="opacity:0.25"
+         id="g3199-74-8-6-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-15-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-0-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,158.73599,84.075364)"
+         style="opacity:0.25"
+         id="g3199-74-0-08-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-5-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-9-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,141.18023,76.272809)"
+         style="opacity:0.25"
+         id="g3199-74-7-4-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-79-9-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-7-9-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,120.69852,76.760464)"
+         style="opacity:0.25"
+         id="g3199-74-1-2-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-5-9-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-1-3-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,108.99468,87.488986)"
+         style="opacity:0.25"
+         id="g3199-74-76-9-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-55-7-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-0-9-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,87.049996,77.248129)"
+         style="opacity:0.25"
+         id="g3199-74-3-1-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-0-1-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-8-9-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,83.120929,88.333462)"
+         style="opacity:0.25"
+         id="g3199-74-6-7-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-2-6-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-6-3-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,68.031266,77.248129)"
+         style="opacity:0.25"
+         id="g3199-74-2-3-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-25-9-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-62-2-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,41.697635,88.464305)"
+         style="opacity:0.25"
+         id="g3199-74-75-0-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-1-8-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-68-9-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,52.913812,75.785145)"
+         style="opacity:0.25"
+         id="g3199-74-36-3-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-22-9-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-33-5-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,175.80408,76.272809)"
+         style="opacity:0.25"
+         id="g3199-74-9-4-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-6-5-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-82-7-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,161.76117,4.6987158)"
+         style="opacity:0.25"
+         id="g3199-7-4-4-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-6-3-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-7-3-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,4.8649514,87.727748)"
+         style="opacity:0.25"
+         id="g3199-74-8-9-5-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-7-9-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-3-2-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,25.863048,82.861292)"
+         style="opacity:0.25"
+         id="g3199-74-0-9-5-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-7-1-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-1-3-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,-3.9129212,73.585603)"
+         style="opacity:0.25"
+         id="g3199-74-8-1-0-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-5-2-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-33-2-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,13.183887,77.009377)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-9-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-6-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-40-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,197.49058,76.511561)"
+         style="opacity:0.25"
+         id="g3199-74-8-96-3-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-1-2-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-5-4-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,201.90823,88.225553)"
+         style="opacity:0.25"
+         id="g3199-74-0-6-7-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-6-1-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-19-6-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,-17.796871,88.464305)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-8-7-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-4-9-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-4-7-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <path
+         transform="matrix(-0.99712644,0,0,0.99712644,233.455,-58.792854)"
+         d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+         sodipodi:ry="3.1123919"
+         sodipodi:rx="3.2853026"
+         sodipodi:cy="168.06917"
+         sodipodi:cx="22.305475"
+         id="path3125-7"
+         style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+         sodipodi:type="arc"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <path
+         transform="matrix(-0.99712644,0,0,0.99712644,224.57376,-47.717233)"
+         d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+         sodipodi:ry="3.1123919"
+         sodipodi:rx="3.2853026"
+         sodipodi:cy="168.06917"
+         sodipodi:cx="22.305475"
+         id="path3125-5-3-4"
+         style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+         sodipodi:type="arc"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,273.60858,-24.086882)"
+         style="opacity:0.25"
+         id="g3199-70-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-39-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-6-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,287.31368,-32.418252)"
+         style="opacity:0.25"
+         id="g3199-1-1-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-1-8-63"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-8-5-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,232.82969,-32.788206)"
+         style="opacity:0.25"
+         id="g3199-5-0-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-7-3-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-7-7-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,208.69176,-20.719237)"
+         style="opacity:0.25"
+         id="g3199-8-7-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-4-4-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-4-0-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,168.0021,-30.719238)"
+         style="opacity:0.25"
+         id="g3199-4-2-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-41-9-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-2-6-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,138.00209,-22.098552)"
+         style="opacity:0.25"
+         id="g3199-7-2-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-2-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-4-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,106.27795,-35.546826)"
+         style="opacity:0.25"
+         id="g3199-50-1-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-18-8-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-40-7-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,62.904949,61.424982)"
+         style="opacity:0.25"
+         id="g3199-74-85-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-3-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-9-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,91.945179,59.903168)"
+         style="opacity:0.25"
+         id="g3199-74-8-6-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-15-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-0-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,78.749647,55.524377)"
+         style="opacity:0.25"
+         id="g3199-74-0-08-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-5-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-9-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,96.305404,47.721823)"
+         style="opacity:0.25"
+         id="g3199-74-7-4-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-79-9-95"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-7-9-87"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,116.78712,48.209478)"
+         style="opacity:0.25"
+         id="g3199-74-1-2-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-5-9-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-1-3-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,128.49095,58.938)"
+         style="opacity:0.25"
+         id="g3199-74-76-9-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-55-7-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-0-9-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,150.43566,48.697142)"
+         style="opacity:0.25"
+         id="g3199-74-3-1-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-0-1-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-8-9-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,154.36472,59.782476)"
+         style="opacity:0.25"
+         id="g3199-74-6-7-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-2-6-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-6-3-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,169.45439,48.697142)"
+         style="opacity:0.25"
+         id="g3199-74-2-3-41"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-25-9-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-62-2-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,195.78802,59.913319)"
+         style="opacity:0.25"
+         id="g3199-74-75-0-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-1-8-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-68-9-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,184.57184,47.234158)"
+         style="opacity:0.25"
+         id="g3199-74-36-3-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-22-9-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-33-5-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,61.681554,47.721823)"
+         style="opacity:0.25"
+         id="g3199-74-9-4-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-6-5-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-82-7-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,75.724465,-23.852268)"
+         style="opacity:0.25"
+         id="g3199-7-4-4-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-6-3-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-7-3-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,232.6207,59.176762)"
+         style="opacity:0.25"
+         id="g3199-74-8-9-5-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-7-9-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-3-2-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,211.62261,54.310306)"
+         style="opacity:0.25"
+         id="g3199-74-0-9-5-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-7-1-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-1-3-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,241.39858,45.034617)"
+         style="opacity:0.25"
+         id="g3199-74-8-1-0-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-5-2-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-33-2-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,224.30177,48.45839)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-9-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-6-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-40-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,39.995051,47.960575)"
+         style="opacity:0.25"
+         id="g3199-74-8-96-3-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-1-2-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-5-4-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,35.577402,59.674567)"
+         style="opacity:0.25"
+         id="g3199-74-0-6-7-15"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-6-1-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-19-6-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,255.28253,59.913319)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-8-7-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-4-9-91"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-4-7-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,278.96298,-52.55864)"
+         style="opacity:0.25"
+         id="g3199-70-1-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-39-9-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-6-2-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,292.66808,-60.890011)"
+         style="opacity:0.25"
+         id="g3199-1-1-7-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-1-8-6-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-8-5-1-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,238.18409,-61.259965)"
+         style="opacity:0.25"
+         id="g3199-5-0-4-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-7-3-1-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-7-7-6-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,214.04616,-49.190995)"
+         style="opacity:0.25"
+         id="g3199-8-7-9-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-4-4-0-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-4-0-8-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,173.3565,-59.190997)"
+         style="opacity:0.25"
+         id="g3199-4-2-4-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-41-9-4-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-2-6-4-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,143.3565,-50.57031)"
+         style="opacity:0.25"
+         id="g3199-7-2-4-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-2-8-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-4-6-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,111.63236,-64.018585)"
+         style="opacity:0.25"
+         id="g3199-50-1-6-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-18-8-4-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-40-7-2-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,68.259358,32.953227)"
+         style="opacity:0.25"
+         id="g3199-74-85-6-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-3-8-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-9-4-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,97.299589,31.431412)"
+         style="opacity:0.25"
+         id="g3199-74-8-6-2-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-15-7-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-0-6-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,84.104056,27.052621)"
+         style="opacity:0.25"
+         id="g3199-74-0-08-8-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-5-6-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-9-7-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,101.65981,19.250067)"
+         style="opacity:0.25"
+         id="g3199-74-7-4-7-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-79-9-9-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-7-9-8-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,122.14153,19.737722)"
+         style="opacity:0.25"
+         id="g3199-74-1-2-9-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-5-9-7-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-1-3-4-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,133.84536,30.466244)"
+         style="opacity:0.25"
+         id="g3199-74-76-9-1-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-55-7-1-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-0-9-7-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,155.79006,20.225386)"
+         style="opacity:0.25"
+         id="g3199-74-3-1-9-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-0-1-2-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-8-9-8-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,159.71912,31.31072)"
+         style="opacity:0.25"
+         id="g3199-74-6-7-8-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-2-6-7-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-6-3-4-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,174.80879,20.225386)"
+         style="opacity:0.25"
+         id="g3199-74-2-3-4-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-25-9-3-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-62-2-4-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,201.14242,31.441563)"
+         style="opacity:0.25"
+         id="g3199-74-75-0-0-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-1-8-1-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-68-9-9-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,189.92624,18.762402)"
+         style="opacity:0.25"
+         id="g3199-74-36-3-3-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-22-9-8-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-33-5-9-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,67.035964,19.250067)"
+         style="opacity:0.25"
+         id="g3199-74-9-4-9-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-6-5-2-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-82-7-8-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.99712644,0,0,0.99712644,81.078874,-52.324027)"
+         style="opacity:0.25"
+         id="g3199-7-4-4-7-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-6-3-3-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-7-3-4-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,237.9751,30.705006)"
+         style="opacity:0.25"
+         id="g3199-74-8-9-5-5-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-7-9-0-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-3-2-4-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,216.97701,25.83855)"
+         style="opacity:0.25"
+         id="g3199-74-0-9-5-3-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-7-1-2-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-1-3-3-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,246.75298,16.562861)"
+         style="opacity:0.25"
+         id="g3199-74-8-1-0-0-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-5-2-3-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-33-2-6-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,229.65617,19.986634)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-9-7-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-6-2-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-40-8-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,45.349461,19.488819)"
+         style="opacity:0.25"
+         id="g3199-74-8-96-3-7-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-1-2-2-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-5-4-5-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,40.931812,31.202811)"
+         style="opacity:0.25"
+         id="g3199-74-0-6-7-1-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-6-1-8-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-19-6-1-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(-0.49856324,0,0,0.49856321,260.63692,31.441563)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-8-7-8-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-4-9-9-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-4-7-2-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <path
+         transform="matrix(0.99712644,0,0,0.99712644,7.3975096,-118.3738)"
+         d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+         sodipodi:ry="3.1123919"
+         sodipodi:rx="3.2853026"
+         sodipodi:cy="168.06917"
+         sodipodi:cx="22.305475"
+         id="path3125-8"
+         style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+         sodipodi:type="arc"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <path
+         transform="matrix(0.99712644,0,0,0.99712644,16.278741,-107.29818)"
+         d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+         sodipodi:ry="3.1123919"
+         sodipodi:rx="3.2853026"
+         sodipodi:cy="168.06917"
+         sodipodi:cx="22.305475"
+         id="path3125-5-3-2"
+         style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+         sodipodi:type="arc"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-32.756079,-83.667833)"
+         style="opacity:0.25"
+         id="g3199-70-11"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-39-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-6-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-46.461173,-91.999203)"
+         style="opacity:0.25"
+         id="g3199-1-1-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-1-8-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-8-5-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,8.0228156,-92.369157)"
+         style="opacity:0.25"
+         id="g3199-5-0-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-7-3-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-7-7-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,32.160744,-80.300188)"
+         style="opacity:0.25"
+         id="g3199-8-7-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-4-4-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-4-0-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,70.232779,-88.396462)"
+         style="opacity:0.25"
+         id="g3199-4-2-47"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-41-9-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-2-6-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,93.331777,-75.254426)"
+         style="opacity:0.25"
+         id="g3199-7-2-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-2-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-4-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,137.90607,-92.748119)"
+         style="opacity:0.25"
+         id="g3199-50-1-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-18-8-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-40-7-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,168.42891,4.4616529)"
+         style="opacity:0.25"
+         id="g3199-74-85-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-3-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-9-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,148.90732,0.32221449)"
+         style="opacity:0.25"
+         id="g3199-74-8-6-48"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-15-72"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-0-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,162.10285,-4.0565765)"
+         style="opacity:0.25"
+         id="g3199-74-0-08-94"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-5-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-9-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,144.5471,-11.859131)"
+         style="opacity:0.25"
+         id="g3199-74-7-4-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-79-9-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-7-9-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,124.06538,-11.371476)"
+         style="opacity:0.25"
+         id="g3199-74-1-2-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-5-9-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-1-3-40"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,112.36155,-0.64295404)"
+         style="opacity:0.25"
+         id="g3199-74-76-9-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-55-7-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-0-9-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,90.416849,-10.883812)"
+         style="opacity:0.25"
+         id="g3199-74-3-1-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-0-1-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-8-9-51"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,86.487782,0.20152231)"
+         style="opacity:0.25"
+         id="g3199-74-6-7-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-2-6-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-6-3-41"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,71.398119,-10.883812)"
+         style="opacity:0.25"
+         id="g3199-74-2-3-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-25-9-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-62-2-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,45.064487,0.33236524)"
+         style="opacity:0.25"
+         id="g3199-74-75-0-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-1-8-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-68-9-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,56.280664,-12.346796)"
+         style="opacity:0.25"
+         id="g3199-74-36-3-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-22-9-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-33-5-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,179.17094,-11.859131)"
+         style="opacity:0.25"
+         id="g3199-74-9-4-08"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-6-5-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-82-7-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,165.12804,-83.433219)"
+         style="opacity:0.25"
+         id="g3199-7-4-4-70"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-6-3-32"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-7-3-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,8.2318033,-0.40419212)"
+         style="opacity:0.25"
+         id="g3199-74-8-9-5-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-7-9-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-3-2-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,29.2299,-5.2706477)"
+         style="opacity:0.25"
+         id="g3199-74-0-9-5-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-7-1-26"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-1-3-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,-0.54606923,-14.546337)"
+         style="opacity:0.25"
+         id="g3199-74-8-1-0-97"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-5-2-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-33-2-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,16.550739,-11.122564)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-9-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-6-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-40-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,200.85744,-11.620379)"
+         style="opacity:0.25"
+         id="g3199-74-8-96-3-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-1-2-21"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-5-4-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,205.27509,0.09361328)"
+         style="opacity:0.25"
+         id="g3199-74-0-6-7-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-6-1-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-19-6-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,-14.430019,0.33236524)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-8-7-80"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-4-9-912"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-4-7-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-38.110479,-112.13959)"
+         style="opacity:0.25"
+         id="g3199-70-1-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-39-9-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-6-2-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-51.815573,-120.47096)"
+         style="opacity:0.25"
+         id="g3199-1-1-7-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-1-8-6-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-8-5-1-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,2.6684161,-120.84091)"
+         style="opacity:0.25"
+         id="g3199-5-0-4-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-7-3-1-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-7-7-6-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,43.702895,-127.73746)"
+         style="opacity:0.25"
+         id="g3199-8-7-9-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-4-4-0-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-4-0-8-00"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,67.496004,-118.77194)"
+         style="opacity:0.25"
+         id="g3199-4-2-4-80"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-41-9-4-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-2-6-4-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,97.496005,-110.15126)"
+         style="opacity:0.25"
+         id="g3199-7-2-4-01"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-2-8-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-4-6-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,129.22014,-123.59953)"
+         style="opacity:0.25"
+         id="g3199-50-1-6-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-18-8-4-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-40-7-2-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,172.59313,-26.627727)"
+         style="opacity:0.25"
+         id="g3199-74-85-6-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-3-8-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-9-4-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,143.55291,-28.149542)"
+         style="opacity:0.25"
+         id="g3199-74-8-6-2-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-15-7-80"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-0-6-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,156.74845,-32.528333)"
+         style="opacity:0.25"
+         id="g3199-74-0-08-8-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-5-6-90"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-9-7-58"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,139.19269,-40.330887)"
+         style="opacity:0.25"
+         id="g3199-74-7-4-7-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-79-9-9-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-7-9-8-58"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,118.71097,-39.843232)"
+         style="opacity:0.25"
+         id="g3199-74-1-2-9-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-5-9-7-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-1-3-4-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,107.00714,-29.11471)"
+         style="opacity:0.25"
+         id="g3199-74-76-9-1-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-55-7-1-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-0-9-7-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,85.062448,-39.355568)"
+         style="opacity:0.25"
+         id="g3199-74-3-1-9-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-0-1-2-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-8-9-8-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,81.133381,-28.270234)"
+         style="opacity:0.25"
+         id="g3199-74-6-7-8-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-2-6-7-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-6-3-4-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,66.043719,-39.355568)"
+         style="opacity:0.25"
+         id="g3199-74-2-3-4-31"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-25-9-3-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-62-2-4-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,39.710087,-28.139391)"
+         style="opacity:0.25"
+         id="g3199-74-75-0-0-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-1-8-1-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-68-9-9-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,50.926263,-40.818552)"
+         style="opacity:0.25"
+         id="g3199-74-36-3-3-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-22-9-8-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-33-5-9-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,173.81653,-40.330887)"
+         style="opacity:0.25"
+         id="g3199-74-9-4-9-7"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-6-5-2-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-82-7-8-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,159.77363,-111.90497)"
+         style="opacity:0.25"
+         id="g3199-7-4-4-7-28"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-6-3-3-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-7-3-4-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,2.8774039,-28.875948)"
+         style="opacity:0.25"
+         id="g3199-74-8-9-5-5-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-7-9-0-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-3-2-4-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,23.8755,-33.742404)"
+         style="opacity:0.25"
+         id="g3199-74-0-9-5-3-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-7-1-2-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-1-3-3-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,-5.9004687,-43.018093)"
+         style="opacity:0.25"
+         id="g3199-74-8-1-0-0-11"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-5-2-3-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-33-2-6-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,11.196339,-39.59432)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-9-7-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-6-2-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-40-8-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,195.50303,-40.092135)"
+         style="opacity:0.25"
+         id="g3199-74-8-96-3-7-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-1-2-2-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-5-4-5-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,199.92068,-28.378143)"
+         style="opacity:0.25"
+         id="g3199-74-0-6-7-1-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-6-1-8-60"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-19-6-1-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,-19.784419,-28.139391)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-8-7-8-36"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-4-9-9-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-4-7-2-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <path
+         transform="matrix(0.99712644,0,0,0.99712644,12.9732,-139.01462)"
+         d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+         sodipodi:ry="3.1123919"
+         sodipodi:rx="3.2853026"
+         sodipodi:cy="168.06917"
+         sodipodi:cx="22.305475"
+         id="path3125-8-6"
+         style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+         sodipodi:type="arc"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-46.239878,-137.12327)"
+         style="opacity:0.25"
+         id="g3199-1-1-7-1-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-1-8-6-8-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-8-5-1-6-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,22.726865,-114.38977)"
+         style="opacity:0.25"
+         id="g3199-5-0-4-7-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-7-3-1-5-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-7-7-6-9-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,73.071695,-135.42426)"
+         style="opacity:0.25"
+         id="g3199-4-2-4-80-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-41-9-4-3-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-2-6-4-9-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,134.79582,-140.25184)"
+         style="opacity:0.25"
+         id="g3199-50-1-6-8-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-18-8-4-6-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-40-7-2-4-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,162.32413,-53.169144)"
+         style="opacity:0.25"
+         id="g3199-74-0-08-8-1-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-5-6-90-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-9-7-58-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,144.76837,-56.983193)"
+         style="opacity:0.25"
+         id="g3199-74-7-4-7-7-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-79-9-9-2-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-7-9-8-58-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,124.28666,-56.495538)"
+         style="opacity:0.25"
+         id="g3199-74-1-2-9-5-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-5-9-7-3-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-1-3-4-8-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,90.638139,-56.007873)"
+         style="opacity:0.25"
+         id="g3199-74-3-1-9-0-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-0-1-2-0-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-8-9-8-0-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,71.61941,-56.007873)"
+         style="opacity:0.25"
+         id="g3199-74-2-3-4-31-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-25-9-3-0-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-62-2-4-5-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,56.501954,-57.470857)"
+         style="opacity:0.25"
+         id="g3199-74-36-3-3-6-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-22-9-8-9-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-33-5-9-5-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,179.39222,-56.983193)"
+         style="opacity:0.25"
+         id="g3199-74-9-4-9-7-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-6-5-2-8-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-82-7-8-7-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,29.45119,-50.39471)"
+         style="opacity:0.25"
+         id="g3199-74-0-9-5-3-9-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-7-1-2-1-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-1-3-3-8-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,-0.32477831,-59.670398)"
+         style="opacity:0.25"
+         id="g3199-74-8-1-0-0-11-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-5-2-3-0-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-33-2-6-3-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,16.77203,-56.246625)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-9-7-4-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-6-2-5-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-40-8-9-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,201.07872,-56.744441)"
+         style="opacity:0.25"
+         id="g3199-74-8-96-3-7-8-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-1-2-2-9-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-5-4-5-2-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <path
+         transform="matrix(0.99712644,0,0,0.99712644,10.214579,-148.66978)"
+         d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+         sodipodi:ry="3.1123919"
+         sodipodi:rx="3.2853026"
+         sodipodi:cy="168.06917"
+         sodipodi:cx="22.305475"
+         id="path3125-8-9"
+         style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+         sodipodi:type="arc"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,-48.998499,-150.76694)"
+         style="opacity:0.25"
+         id="g3199-1-1-7-1-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-1-8-6-8-0"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-8-5-1-6-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,5.4854858,-151.13689)"
+         style="opacity:0.25"
+         id="g3199-5-0-4-7-83"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-7-3-1-5-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-7-7-6-9-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,70.313075,-149.06793)"
+         style="opacity:0.25"
+         id="g3199-4-2-4-80-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-41-9-4-3-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-2-6-4-9-97"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,132.0372,-153.89551)"
+         style="opacity:0.25"
+         id="g3199-50-1-6-8-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-18-8-4-6-71"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-40-7-2-4-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,159.56551,-62.824317)"
+         style="opacity:0.25"
+         id="g3199-74-0-08-8-1-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-5-6-90-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-9-7-58-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,142.00975,-70.626872)"
+         style="opacity:0.25"
+         id="g3199-74-7-4-7-7-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-79-9-9-2-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-7-9-8-58-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,121.52804,-70.139217)"
+         style="opacity:0.25"
+         id="g3199-74-1-2-9-5-20"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-5-9-7-3-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-1-3-4-8-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,87.879518,-69.651552)"
+         style="opacity:0.25"
+         id="g3199-74-3-1-9-0-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-0-1-2-0-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-8-9-8-0-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,68.86079,-69.651552)"
+         style="opacity:0.25"
+         id="g3199-74-2-3-4-31-42"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-25-9-3-0-40"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-62-2-4-5-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,53.743333,-71.114536)"
+         style="opacity:0.25"
+         id="g3199-74-36-3-3-6-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-22-9-8-9-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-33-5-9-5-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,176.6336,-70.626872)"
+         style="opacity:0.25"
+         id="g3199-74-9-4-9-7-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-6-5-2-8-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-82-7-8-7-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,26.692569,-64.038389)"
+         style="opacity:0.25"
+         id="g3199-74-0-9-5-3-9-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-7-1-2-1-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-1-3-3-8-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,-3.083399,-73.314077)"
+         style="opacity:0.25"
+         id="g3199-74-8-1-0-0-11-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-5-2-3-0-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-33-2-6-3-7"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,14.013409,-69.890304)"
+         style="opacity:0.25"
+         id="g3199-74-0-0-9-7-4-3"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-8-1-6-2-5-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-2-8-40-8-9-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,198.3201,-70.38812)"
+         style="opacity:0.25"
+         id="g3199-74-8-96-3-7-8-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-1-2-2-9-9"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-5-4-5-2-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,90,22.413794)"
+         style="opacity:0.50000006"
+         id="g5526"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-2"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,201.81556,-30.406453)"
+         style="opacity:0.50000006"
+         id="g5526-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-9"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-2-7"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,156.98798,53.041823)"
+         style="opacity:0.50000006"
+         id="g5526-9"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-4"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-2-72"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,186.64314,112.697)"
+         style="opacity:0.50000006"
+         id="g5526-0"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-97"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-2-0"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,88.367278,110.2832)"
+         style="opacity:0.50000006"
+         id="g5526-2"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-29"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-2-1"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,231.47073,52.352172)"
+         style="opacity:0.50000006"
+         id="g5526-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-3"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-2-01"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,139.40177,-7.6478318)"
+         style="opacity:0.50000006"
+         id="g5526-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-6"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-2-3"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,168.54781,24.335015)"
+         style="opacity:0.50000006"
+         id="g5526-5-8"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-6-0"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+           id="path5506-2-3-8"
+           sodipodi:cx="170.83574"
+           sodipodi:cy="138.67435"
+           sodipodi:rx="9.6829967"
+           sodipodi:ry="9.3371754"
+           d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+           transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)" />
+      </g>
+      <g
+         transform="matrix(0.99712644,0,0,0.99712644,107.91064,-85.592754)"
+         style="opacity:0.25"
+         id="g3199-7-2-6-5"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-2-2-0-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-83-4-3-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,148.01743,9.5248255)"
+         style="opacity:0.25"
+         id="g3199-74-8-6-48-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-15-72-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-0-2-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,79.959202,9.2868596)"
+         style="opacity:0.25"
+         id="g3199-74-8-6-48-4"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-7-15-72-2"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-3-0-2-59"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,134.45337,6.4312698)"
+         style="opacity:0.25"
+         id="g3199-74-85-9-6"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-3-0-3"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-9-1-8"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,50.927372,10.000757)"
+         style="opacity:0.25"
+         id="g3199-74-85-9-64"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-3-0-38"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-9-1-4"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,181.33264,1.4339877)"
+         style="opacity:0.25"
+         id="g3199-74-85-9-63"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-3-0-1"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-9-1-5"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         transform="matrix(0.49856324,0,0,0.49856321,194.65873,9.0488938)"
+         style="opacity:0.25"
+         id="g3199-74-85-9-1"
+         inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-0-3-0-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+        <path
+           sodipodi:type="arc"
+           style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+           id="path3125-5-36-27-9-1-6"
+           sodipodi:cx="22.305475"
+           sodipodi:cy="168.06917"
+           sodipodi:rx="3.2853026"
+           sodipodi:ry="3.1123919"
+           d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+           transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+      </g>
+      <g
+         id="g5366"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,-35.488506,53.942529)"
+           style="opacity:0.25"
+           id="g3199">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,-49.193605,45.611153)"
+           style="opacity:0.25"
+           id="g3199-1">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,5.2903851,45.241204)"
+           style="opacity:0.25"
+           id="g3199-5">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,27.047154,60.371663)"
+           style="opacity:0.25"
+           id="g3199-8">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,70.117971,47.310169)"
+           style="opacity:0.25"
+           id="g3199-4">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-41"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-2"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,100.11798,55.930859)"
+           style="opacity:0.25"
+           id="g3199-7">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-2"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-83"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,131.84211,42.482583)"
+           style="opacity:0.25"
+           id="g3199-50">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-18"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-40"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,175.21512,139.4544)"
+           style="opacity:0.25"
+           id="g3199-74">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,146.17489,137.93258)"
+           style="opacity:0.25"
+           id="g3199-74-8">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-3"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,159.37042,133.55379)"
+           style="opacity:0.25"
+           id="g3199-74-0">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,141.81466,125.75124)"
+           style="opacity:0.25"
+           id="g3199-74-7">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-79"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,121.33295,126.23889)"
+           style="opacity:0.25"
+           id="g3199-74-1">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-5"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,109.62912,136.96741)"
+           style="opacity:0.25"
+           id="g3199-74-76">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-55"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-0"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,87.684419,126.72656)"
+           style="opacity:0.25"
+           id="g3199-74-3">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-0"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,83.75535,137.81189)"
+           style="opacity:0.25"
+           id="g3199-74-6">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-2"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-6"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,68.665685,126.72656)"
+           style="opacity:0.25"
+           id="g3199-74-2">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-25"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-62"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,42.332054,137.94273)"
+           style="opacity:0.25"
+           id="g3199-74-75">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-68"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,53.548229,125.26357)"
+           style="opacity:0.25"
+           id="g3199-74-36">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-22"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-33"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,176.43851,125.75124)"
+           style="opacity:0.25"
+           id="g3199-74-9">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-6"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-82"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,162.3956,54.177145)"
+           style="opacity:0.25"
+           id="g3199-7-4">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-2-6"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-83-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,5.4993764,137.20618)"
+           style="opacity:0.25"
+           id="g3199-74-8-9">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-7-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-3-3"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,26.497466,132.33972)"
+           style="opacity:0.25"
+           id="g3199-74-0-9">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,-3.278501,123.06403)"
+           style="opacity:0.25"
+           id="g3199-74-8-1">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-7-5"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-3-33"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,13.81831,126.4878)"
+           style="opacity:0.25"
+           id="g3199-74-0-0">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,198.12501,125.98999)"
+           style="opacity:0.25"
+           id="g3199-74-8-96">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-7-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-3-5"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,202.54266,137.70398)"
+           style="opacity:0.25"
+           id="g3199-74-0-6">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-6"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-19"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,-17.162448,137.94273)"
+           style="opacity:0.25"
+           id="g3199-74-0-0-8">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-1-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-8-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,33.127794,40.72566)"
+           style="opacity:0.25"
+           id="g3199-8-7">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-4-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-4-0"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,179.9351,118.44772)"
+           style="opacity:0.25"
+           id="g3199-74-85">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-3"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-9"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,80.311346,120.88721)"
+           style="opacity:0.25"
+           id="g3199-74-6-7">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-2-6"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-6-3"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,8.8586874,119.94133)"
+           style="opacity:0.25"
+           id="g3199-74-8-9-5">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-7-7-9"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-3-3-2"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,206.24214,120.77931)"
+           style="opacity:0.25"
+           id="g3199-74-0-6-7">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-6-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-19-6"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,-10.442471,118.93606)"
+           style="opacity:0.25"
+           id="g3199-74-0-0-8-7">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-1-4-9"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-8-4-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,-0.99712644,-35.20762,388.77654)"
+           style="opacity:0.25"
+           id="g3199-70-2-9">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-39-8-9"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-6-5-6"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,-0.99712644,40.594512,395.52038)"
+           style="opacity:0.25"
+           id="g3199-8-7-6-7">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-4-4-3-2"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-4-0-2-0"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,-0.99712644,92.421875,396.75947)"
+           style="opacity:0.25"
+           id="g3199-7-2-5-1">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-2-2-3-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-83-4-2-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,185.70099,305.89252)"
+           style="opacity:0.25"
+           id="g3199-74-85-1-0">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-3-6-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-9-5-9"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,146.45579,312.76351)"
+           style="opacity:0.25"
+           id="g3199-74-8-6-4-9">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-7-15-4-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-3-0-4-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,159.65132,317.1423)"
+           style="opacity:0.25"
+           id="g3199-74-0-08-9-3">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-5-1-0"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-9-0-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,109.91003,309.74017)"
+           style="opacity:0.25"
+           id="g3199-74-76-9-8-5">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-55-7-9-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-0-9-4-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,84.036238,312.8842)"
+           style="opacity:0.25"
+           id="g3199-74-6-7-9-4">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-2-6-9-9"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-6-3-3-2"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,42.612943,312.75336)"
+           style="opacity:0.25"
+           id="g3199-74-75-0-7-2">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-1-8-0-5"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-68-9-3-5"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,-0.99712644,162.6765,396.51894)"
+           style="opacity:0.25"
+           id="g3199-7-4-4-0-9">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-2-6-3-7-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-83-7-3-9-3"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,5.7802588,315.48417)"
+           style="opacity:0.25"
+           id="g3199-74-8-9-5-8-0">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-7-7-9-8-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-3-3-2-6-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,26.778356,318.35637)"
+           style="opacity:0.25"
+           id="g3199-74-0-9-5-8-9">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-7-1-8-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-1-3-5-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,202.82355,312.99211)"
+           style="opacity:0.25"
+           id="g3199-74-0-6-7-15-9">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-6-1-9-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-19-6-8-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,-0.49856321,-18.875816,314.74761)"
+           style="opacity:0.25"
+           id="g3199-74-0-0-8-7-4-6">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-1-4-9-91-0"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-8-4-7-9-4"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,67.212293,62.891067)"
+           style="opacity:0.25"
+           id="g3199-8-0">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-4-8"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-4-6"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,130.82334,62.210735)"
+           style="opacity:0.25"
+           id="g3199-8-5">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-4-82"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-4-01"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,70.520043,135.90688)"
+           style="opacity:0.25"
+           id="g3199-74-0-6-0">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-6-7"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-19-3"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,27.999292,141.00938)"
+           style="opacity:0.25"
+           id="g3199-74-0-6-4">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-6-18"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-19-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.49856324,0,0,0.49856321,117.80312,142.02987)"
+           style="opacity:0.25"
+           id="g3199-74-0-6-2">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-0-8-6-6"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-27-2-19-65"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,-13.407051,59.149241)"
+           style="opacity:0.25"
+           id="g3199-7-5">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-2-1"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-83-42"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+        <g
+           transform="matrix(0.99712644,0,0,0.99712644,101.22889,42.140941)"
+           style="opacity:0.25"
+           id="g3199-7-4-9">
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-2-6-5"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+             id="path3125-5-36-83-7-0"
+             sodipodi:cx="22.305475"
+             sodipodi:cy="168.06917"
+             sodipodi:rx="3.2853026"
+             sodipodi:ry="3.1123919"
+             d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+             transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Lollipop.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Lollipop.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,265 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="300"
+   height="170"
+   sodipodi:docname="Lollipop.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Lollipop.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6">
+    <linearGradient
+       id="linearGradient3982"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#df002c;stop-opacity:1;"
+         offset="0"
+         id="stop3984" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3248"
+       y2="318.25"
+       gradientUnits="userSpaceOnUse"
+       x2="315.88"
+       gradientTransform="translate(-140.91,-293.36)"
+       y1="643.86"
+       x1="375.59">
+      <stop
+         id="stop3240"
+         style="stop-color:#ee5ca2"
+         offset="0" />
+      <stop
+         id="stop3242"
+         style="stop-color:#ee5ca2;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3264"
+       y2="518.21"
+       gradientUnits="userSpaceOnUse"
+       x2="574.46"
+       gradientTransform="translate(-133.94,-298.78)"
+       y1="518.21"
+       x1="133.95">
+      <stop
+         id="stop3156"
+         style="stop-color:#ffe500;stop-opacity:.70455"
+         offset="0" />
+      <stop
+         id="stop3158"
+         style="stop-color:#ff9b00;stop-opacity:.65152"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3982"
+       id="linearGradient4014"
+       gradientUnits="userSpaceOnUse"
+       x1="132.17237"
+       y1="115.14105"
+       x2="145.83789"
+       y2="115.14105" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3982"
+       id="linearGradient3042"
+       gradientUnits="userSpaceOnUse"
+       x1="132.17237"
+       y1="115.14105"
+       x2="145.83789"
+       y2="115.14105" />
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="2.0731106"
+     inkscape:cx="237.13296"
+     inkscape:cy="60.25669"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g3018"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <g
+     id="g3990"
+     transform="matrix(0.35758495,-0.93388062,0.93388062,0.35758495,45.218885,206.34336)">
+    <g
+       id="g3018"
+       transform="translate(-3.5758495,-9.338806)"
+       inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/SVG's/Lollipop.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90">
+      <g
+         transform="translate(4.6862556,-5.427371)"
+         id="g3182-2">
+        <rect
+           ry="3.9668825"
+           rx="0.53558743"
+           transform="matrix(0.99999872,-0.00160268,0.00143662,0.99999897,0,0)"
+           y="3.1735022"
+           x="133.7588"
+           height="226.05835"
+           width="10.747086"
+           id="rect3256-0"
+           style="fill:#ffd5d5;fill-opacity:1;stroke:url(#linearGradient3042);stroke-width:1.97300005;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+        <path
+           sodipodi:nodetypes="cscccccc"
+           inkscape:connector-curvature="0"
+           id="path4028-4"
+           d="m 136.03895,224.24999 c -0.17607,-0.46794 -0.37481,-39.22577 -0.44218,-86.12829 l -0.12251,-85.277313 1.32189,-0.0021 0.0714,-1.22e-4 0.44902,87.650845 c -2.25438,12.19174 2.53616,87.90596 -1.2776,83.75699 z"
+           style="opacity:0.52000002;fill:#999999;fill-opacity:1;stroke:none" />
+        <path
+           sodipodi:nodetypes="cscccccssc"
+           inkscape:connector-curvature="0"
+           id="path4028-5-3"
+           d="m 142.12996,223.97966 c 0.17445,-0.46861 0.26209,-39.2268 0.1947,-86.12933 l -0.12251,-85.277307 -1.32191,0.0028 -0.0714,1.21e-4 -0.19716,87.651876 -0.80589,84.60771 -1.08475,0.002 c -2.33522,0.003 3.16928,-0.2134 3.40888,-0.85694 z"
+           style="opacity:0.52000002;fill:#ffffff;fill-opacity:1;stroke:none" />
+        <path
+           style="fill:#df002c;fill-opacity:1;stroke:none"
+           d="m 129.12338,233.01754 c -1.09827,-0.88963 -1.11581,-1.27662 -1.11581,-24.61394 l 0,-20.64013 1.48961,0 1.48962,0 0.002,20.37266 c 8.4e-4,11.20496 0.0514,20.78825 0.11245,21.29619 l 0.11092,0.92354 3.61159,-0.0473 3.61159,-0.0473 0.0445,-21.2489 0.0445,-21.2489 1.48891,0 1.48892,0 0,18.92686 c -0.22565,7.42811 0.55705,14.90097 -0.4634,22.27587 5.03247,-5.75608 2.7375,-16.96132 2.73924,-22.67018 l 0.002,-18.53255 0.87624,0 0.87625,0 0.0438,15.02757 c 0.0554,19.01507 0.0282,21.89814 -0.21839,23.08579 -1.4308,4.47924 -1.51177,4.52723 -4.84968,7.09283 -0.43645,0.34331 -0.67883,0.3583 -5.73336,0.35457 -4.73578,-0.003 -5.31601,-0.035 -5.65144,-0.30669 l 0,0 z"
+           id="path3988"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="csccccccccccccccccccscccccc" />
+      </g>
+      <rect
+         style="fill:#ffd5d5;fill-opacity:1;stroke:#df002c;stroke-width:3.17287064;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         id="rect3256"
+         width="10.476224"
+         height="223.54887"
+         x="133.7588"
+         y="3.1735022"
+         transform="matrix(0.99999872,-0.00160268,0.00143662,0.99999897,0,0)"
+         rx="0.53558743"
+         ry="3.9668825" />
+      <path
+         style="opacity:0.52000002;fill:#999999;fill-opacity:1;stroke:none"
+         d="m 136.03895,224.24999 c -0.17607,-0.46794 -0.37481,-39.22577 -0.44218,-86.12829 l -0.12251,-85.277313 1.32189,-0.0021 0.0714,-1.22e-4 0.44902,87.650845 c -2.25438,12.19174 2.53616,87.90596 -1.2776,83.75699 z"
+         id="path4028"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscccccc" />
+      <path
+         style="opacity:0.52000002;fill:#ffffff;fill-opacity:1;stroke:none"
+         d="m 142.12996,223.97966 c 0.17539,-1.44536 0.27737,-4.78407 0.33107,-9.7563 0.15314,-14.18038 -0.0865,-41.64692 -0.13637,-76.37303 l -0.12251,-85.277307 -1.32191,0.0028 -0.0714,1.21e-4 -0.19716,87.651876 -0.80589,84.60771 -1.08475,0.002 c -2.33522,0.003 4.3228,-0.20694 3.76348,-0.60533 z"
+         id="path4028-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscccccssc" />
+      <g
+         transform="matrix(0.34296761,0.93995454,-0.94019776,0.34305636,376.64872,-58.748784)"
+         id="g3158">
+        <path
+           d="M -8.2474496,191.01086 A 50.587366,50.782183 19.901488 1 1 -43.094756,286.40743 50.587366,50.782183 19.901488 1 1 -8.2474496,191.01086 z"
+           inkscape:connector-curvature="0"
+           style="fill:#ffe1e1;fill-opacity:1;fill-rule:evenodd;stroke:#c00808;stroke-width:3.14812779;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path3256-4" />
+        <path
+           d="m -2.2642686,191.42787 c 45.4556206,28.8898 21.4720016,72.53272 24.2887166,63.23654 7.792138,-25.72033 -4.655062,-50.55616 -30.9492466,-58.39112 -23.5459224,-7.01684 -49.4867174,2.87858 -56.3909274,26.68042 -6.10954,21.06567 3.54288,43.60463 25.16065,49.71114 18.857994,5.32687 39.81119237,-5.11971 44.9918334,-24.27935 4.435882,-16.40776 -4.91983703,-34.66406 -21.8668674,-39.0266 -14.165981,-3.64798 -29.841576,4.36144 -33.276976,18.88178 -2.78086,11.74553 4.1117,24.76196 16.38796,27.35291 9.465715,1.99872 19.923696,-3.59931 21.568198,-13.48699 1.173316,-7.06096 -3.298749,-14.95607 -10.914323,-15.67864 -4.72231,-0.44672 -10.247885,2.84925 -9.856371,8.09082 0.170981,2.28019 2.826831,5.94033 5.51341,3.92293 2.067421,-1.06314 3.511521,0.88849 3.646301,2.46478 0.36767,4.2684 -4.56863,6.49118 -8.184191,5.84599 -6.468854,-1.15508 -9.463904,-8.40012 -7.822124,-14.23757 2.40848,-8.56626 12.279575,-12.32924 20.369055,-9.59507 10.7804214,3.64689 15.4555774,16.15719 11.6443664,26.376 -4.7963114,12.86031 -20.0713274,18.29852 -32.5539114,13.34414 -15.11744,-5.99983 -21.51173,-23.94533 -15.4666,-38.51443 7.12155,-17.16969 27.879664,-24.2994 44.738735,-17.09321 19.4644044,8.31871 27.586414,31.74526 19.2888894,50.65286 -9.426679,21.48641 -35.6951094,30.31275 -56.9258444,20.84145 -23.81395,-10.62346 -33.66774,-39.54762 -23.11113,-62.79127 11.72289,-25.80641 44.124924,-36.04894 69.7203974,-24.30751 z"
+           inkscape:connector-curvature="0"
+           style="fill:#ec0000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           id="path2460-3" />
+        <path
+           d="M -8.2474496,191.01086 A 50.587366,50.782183 19.901488 1 1 -43.094756,286.40743 50.587366,50.782183 19.901488 1 1 -8.2474496,191.01086 z"
+           inkscape:connector-curvature="0"
+           style="fill:none;stroke:#c00909;stroke-width:3.1719799;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path2382-2" />
+        <path
+           sodipodi:nodetypes="cssssscc"
+           inkscape:connector-curvature="0"
+           id="path4030-0"
+           d="m -70.061526,259.41599 c -2.38623,-5.08706 -3.84855,-10.26025 -4.39972,-15.63196 -0.51663,-5.0352 -0.23268,-10.24484 0.84134,-15.7215 0.7127,-3.63414 4.03229,-11.83857 6.13962,-15.17416 10.9011,-17.25474 30.88516,-25.99573 50.958261,-22.28905 5.456291,1.00754 13.3494834,4.21267 17.7827204,7.22085 4.506928,3.05818 9.4869026,8.11227 9.4869026,8.11227 0,0 -63.781364,-8.00496 -80.809124,53.48355 z"
+           style="opacity:0.33000004;fill:#ffffff;fill-opacity:1;stroke:none" />
+        <path
+           sodipodi:nodetypes="ccsssssssccc"
+           inkscape:connector-curvature="0"
+           id="path4032-1"
+           d="M 9.7074764,205.65086 C -48.765996,182.01632 -70.516486,223.64482 -70.168446,258.42584 l -0.83188,-1.73977 c -2.07007,-4.32929 -3.74383,-13.46656 -3.53677,-19.30778 0.19804,-5.5865 0.90987,-9.13158 2.987,-14.87593 2.25268,-6.22966 4.22997,-9.9457 7.46677,-14.03242 4.62705,-5.84202 10.35776,-10.34793 17.4288,-13.70384 9.32454,-4.42543 19.352645,-5.82299 29.248908,-4.07629 4.207669,0.74266 12.5387274,3.78284 16.3403544,5.9628 4.786882,2.74509 12.3068346,9.02627 10.772778,8.99816 l -3e-6,1e-5 z"
+           style="opacity:0.43000004;fill:#ffffff;fill-opacity:1;stroke:none" />
+        <path
+           sodipodi:nodetypes="cscscscc"
+           inkscape:connector-curvature="0"
+           id="path4034-4"
+           d="m 17.259887,262.65689 c -2.170775,3.78579 -4.735973,7.16398 -7.6082206,10.11897 -10.45169903,10.75279 -24.9692384,15.90196 -39.3438574,14.69568 -4.782425,-3.04934 13.904651,-4.74946 29.46428937,-17.68597 C 10.801111,260.61589 18.871066,243.1193 22.0745,227.4301 c 1.37193,5.77672 1.666926,12.45485 0.825079,18.67807 -0.537246,3.97156 -3.627633,13.03975 -5.639692,16.54872 z"
+           style="opacity:0.43000004;fill:#b3b3b3;fill-opacity:1;stroke:none" />
+      </g>
+      <path
+         id="path3256"
+         style="fill:#ffe1e1;fill-opacity:1;fill-rule:evenodd;stroke:#c00808;stroke-width:3.15033126;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         inkscape:connector-curvature="0"
+         d="M 190.18513,4.1420509 A 50.617658,50.822864 88.682531 1 1 88.541998,4.1135732 50.617658,50.822864 88.682531 1 1 190.18513,4.1420509 z" />
+      <path
+         id="path2460"
+         style="fill:#ec0000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         inkscape:connector-curvature="0"
+         d="M 191.84511,9.9090255 C 180.27278,62.54608 131.0142,54.974546 140.72049,54.433018 167.57515,52.933742 186.65674,32.713856 185.0051,5.3106847 183.52683,-19.228583 165.32633,-40.21706 140.57997,-38.541331 c -21.90127,1.484023 -39.78188,18.288992 -38.10901,40.7035903 1.45936,19.5530697 18.46748,35.6643567 38.25813,33.9610877 16.9479,-1.459259 30.90372,-16.516149 29.19309,-33.9421835 -1.42865,-14.5668415 -14.33531,-26.5535015 -29.16553,-24.8013265 -11.99687,1.415497 -21.87096,12.359559 -20.0966,24.787524 1.36724,9.583011 10.21725,17.492598 20.07762,15.646328 7.04111,-1.319445 12.9303,-8.2314494 10.99777,-15.6376259 -1.1996,-4.5920069 -6.19355,-8.655088 -10.98739,-6.4889325 -2.08519,0.9429471 -4.61557,4.69495967 -1.79741,6.5281408 1.70862,1.5785639 0.36898,3.6054713 -1.06681,4.2729113 -3.88705,1.8098983 -7.66989,-2.0674605 -8.3033,-5.68725907 -1.13261,-6.47668243 4.65196,-11.77735063 10.70339,-12.23672663 8.88002,-0.674851 15.80342,7.3126139 16.00719,15.8543317 0.26854,11.3841943 -9.89018,20.0703633 -20.80502,19.9936293 -13.73621,-0.0965 -24.08804,-12.58871 -23.71105,-26.0214031 0.45622,-16.2679919 15.1355,-28.4346519 30.90662,-27.7505269 18.58537,0.803771 32.40807,17.869559 31.41494,36.1884472 C 172.95103,27.978117 153.71102,43.649065 133.08836,42.33614 109.65384,40.84654 92.346113,19.183342 93.969555,-4.021769 c 1.82074,-26.028476 25.635635,-45.213208 51.109845,-43.264356 28.2837,2.16593 49.02655,29.108601 46.76571,57.1951505 z" />
+      <path
+         id="path2382"
+         style="fill:none;stroke:#c00909;stroke-width:3.17420006;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         inkscape:connector-curvature="0"
+         d="M 190.18513,4.1420509 A 50.617658,50.822864 88.682531 1 1 88.541998,4.1135732 50.617658,50.822864 88.682531 1 1 190.18513,4.1420509 z" />
+      <path
+         style="opacity:0.33000004;fill:#ffffff;fill-opacity:1;stroke:none"
+         d="m 104.67056,-30.49355 c 3.96444,-3.988105 8.32673,-7.137315 13.18817,-9.49818 4.5569,-2.212966 9.55238,-3.733266 15.06987,-4.602539 3.66125,-0.576809 12.51355,-0.271128 16.37241,0.565371 19.96159,4.327191 35.03373,20.112637 38.43315,40.2520426 0.92404,5.4743091 0.6177,13.9930894 -0.69013,19.1921064 -1.32957,5.285439 -4.37344,11.700226 -4.37344,11.700226 0,0 -14.3487,-62.697731 -78.00003,-57.609027 z"
+         id="path4030"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cssssscc" />
+      <path
+         style="opacity:0.43000004;fill:#ffffff;fill-opacity:1;stroke:none"
+         d="m 182.5786,26.041211 c 2.16663,-63.070389 -44.4321,-69.23393 -77.01377,-56.974938 l 1.35042,-1.378769 c 3.36042,-3.430971 11.37721,-8.138819 16.94013,-9.948059 5.32034,-1.730336 8.89755,-2.277411 15.01076,-2.295639 6.62971,-0.01971 10.80168,0.564041 15.75411,2.204514 7.07958,2.345074 13.28148,6.1859 18.86183,11.681081 7.3588,7.246481 12.11211,16.192994 13.86396,26.0942486 0.74484,4.20979426 0.74376,13.0835606 -0.002,17.4047664 -0.93918,5.441172 -4.26563,14.664384 -4.76534,13.212797 l -1e-5,1e-6 z"
+         id="path4032"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsssssssccc" />
+      <path
+         style="opacity:0.43000004;fill:#b3b3b3;fill-opacity:1;stroke:none"
+         d="m 131.57189,52.696419 c -4.3039,-0.741691 -8.35985,-1.993954 -12.12321,-3.680008 -13.69434,-6.135308 -23.514625,-18.01468 -27.310512,-31.939991 1.226764,-5.541362 9.234272,11.440407 26.733602,21.627808 12.40391,7.221054 31.6219,8.804128 47.47152,6.43293 -4.96073,3.271293 -11.13832,5.839551 -17.2781,7.183172 -3.9183,0.857472 -13.5041,1.063557 -17.4933,0.376089 z"
+         id="path4034"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscscscc" />
+      <rect
+         ry="0"
+         rx="0"
+         transform="matrix(0.58581304,0.81044622,-0.81044622,0.58581304,0,0)"
+         y="9.8275499"
+         x="267.86209"
+         height="6.4283924"
+         width="1.5695188"
+         id="rect3016"
+         style="fill:#df002c;fill-opacity:1;stroke:none" />
+    </g>
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Oreo.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Oreo.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,721 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="80"
+   height="80"
+   sodipodi:docname="Oreo.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Oreo2.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="4.2870566"
+     inkscape:cx="40"
+     inkscape:cy="40"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2"
+     inkscape:snap-midpoints="true" />
+  <g
+     id="g3278"
+     style="fill:#ffff99;fill-opacity:1"
+     transform="matrix(-0.29692414,0,0,0.26827459,135.99375,-6.6751861)">
+    <ellipse
+       ry="108.5"
+       transform="matrix(0.95920549,0.28270979,-0.28270979,0.95920549,59.401377,-112.81822)"
+       rx="81.329002"
+       cy="203.5"
+       cx="342.48001"
+       id="imagebot_20-2"
+       sodipodi:cx="342.48001"
+       sodipodi:cy="203.5"
+       sodipodi:rx="81.329002"
+       sodipodi:ry="108.5"
+       style="fill:#ffff99;fill-opacity:1;stroke:none"
+       d="m 423.80901,203.5 c 0,59.9229 -36.41223,108.5 -81.329,108.5 -44.91677,0 -81.329,-48.5771 -81.329,-108.5 0,-59.9229 36.41223,-108.5 81.329,-108.5 44.91677,0 81.329,48.5771 81.329,108.5 z" />
+    <ellipse
+       ry="110.5"
+       transform="matrix(0.93272716,0.36058293,-0.36058293,0.93272716,131.75764,-93.947601)"
+       rx="75.445999"
+       cy="183.5"
+       cx="270.32999"
+       id="imagebot_21-3"
+       sodipodi:cx="270.32999"
+       sodipodi:cy="183.5"
+       sodipodi:rx="75.445999"
+       sodipodi:ry="110.5"
+       style="fill:#ffff99;fill-opacity:1;stroke:none"
+       d="m 345.77599,183.5 c 0,61.02746 -33.77833,110.5 -75.446,110.5 -41.66768,0 -75.446,-49.47254 -75.446,-110.5 0,-61.02746 33.77832,-110.5 75.446,-110.5 41.66767,0 75.446,49.47254 75.446,110.5 z" />
+    <ellipse
+       ry="109.38"
+       transform="matrix(0.93763437,0.34762307,-0.34762307,0.93763437,105.68575,-89.454289)"
+       rx="70.5"
+       cy="171.67"
+       cx="276.5"
+       id="imagebot_22-0"
+       sodipodi:cx="276.5"
+       sodipodi:cy="171.67"
+       sodipodi:rx="70.5"
+       sodipodi:ry="109.38"
+       style="fill:#ffff99;fill-opacity:1;stroke:none"
+       d="m 347,171.67 c 0,60.4089 -31.56393,109.38 -70.5,109.38 -38.93607,0 -70.5,-48.9711 -70.5,-109.38 0,-60.40891 31.56393,-109.379999 70.5,-109.379999 38.93607,0 70.5,48.971089 70.5,109.379999 z" />
+    <ellipse
+       ry="91.464996"
+       transform="matrix(0.94774614,0.31902548,-0.31902548,0.94774614,214.87797,-24.736951)"
+       rx="56.669998"
+       cy="151.2"
+       cx="143.36"
+       id="imagebot_25-3"
+       sodipodi:cx="143.36"
+       sodipodi:cy="151.2"
+       sodipodi:rx="56.669998"
+       sodipodi:ry="91.464996"
+       style="fill:#ffff99;fill-opacity:1;stroke:none"
+       d="m 200.03,151.2 c 0,50.51472 -25.37202,91.46499 -56.67,91.46499 -31.29798,0 -56.669998,-40.95027 -56.669998,-91.46499 0,-50.51473 25.372018,-91.464999 56.669998,-91.464999 31.29798,0 56.67,40.950269 56.67,91.464999 z" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-46"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,131.32354,34.429695)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-0"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,159.59591,24.984303)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-4-8"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,103.36033,18.32487)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-7-3"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,130.4491,8.6397186)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-19"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,158.72146,-0.80567142)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-4-9-9"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,102.48588,-7.4651114)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-8-1"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,131.1005,-17.744916)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-1-8"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,159.37286,-27.190306)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-4-0-5"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,103.13728,-33.849746)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-5-8"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,135.00895,-41.491087)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-5-4"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,163.28131,-50.936477)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-4-2-1"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,107.04573,-57.595917)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-59-2"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,142.82585,-64.577643)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-15-4"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,173.70384,-72.703801)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-4-7-4"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,114.86263,-80.682473)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-74-7"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,149.33992,-85.68535)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-55-7"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,177.61229,-94.471124)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-4-6-8"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,125.93656,-101.13056)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-4-1"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,185.32194,-1.391544)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-0-7"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,191.50215,-26.118866)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-1-6"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,198.66764,-47.886189)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-41-4"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,206.48454,-70.313129)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-12-5"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,205.83313,-92.740068)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-9-0"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,144.60077,-117.14586)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-8-7"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,196.71341,-114.50739)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-3-9"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,171.9599,-129.01894)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#ffff99;fill-opacity:1;stroke:none"
+       id="path3159-3-4-82-4"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,168.05146,-109.89008)" />
+  </g>
+  <ellipse
+     style="fill:#f7dfc8;stroke:#f7dfc8;stroke-width:10;stroke-linecap:round;stroke-linejoin:round"
+     sodipodi:ry="0"
+     sodipodi:rx="17.5"
+     sodipodi:cy="113"
+     sodipodi:cx="246.5"
+     id="imagebot_6"
+     cx="246.5"
+     cy="113"
+     rx="17.5"
+     ry="0"
+     transform="matrix(0.25320524,0,0,0.25005451,-34.076507,-2.8364033)" />
+  <g
+     id="g3134"
+     transform="matrix(-0.23874349,0,0,0.22667487,117.49362,0.74582116)">
+    <ellipse
+       ry="108.5"
+       transform="matrix(0.95920549,0.28270979,-0.28270979,0.95920549,59.401377,-112.81822)"
+       rx="81.329002"
+       cy="203.5"
+       cx="342.48001"
+       id="imagebot_20"
+       sodipodi:cx="342.48001"
+       sodipodi:cy="203.5"
+       sodipodi:rx="81.329002"
+       sodipodi:ry="108.5"
+       style="fill:#191919;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+       d="m 423.80901,203.5 c 0,59.9229 -36.41223,108.5 -81.329,108.5 -44.91677,0 -81.329,-48.5771 -81.329,-108.5 0,-59.9229 36.41223,-108.5 81.329,-108.5 44.91677,0 81.329,48.5771 81.329,108.5 z" />
+    <ellipse
+       ry="110.5"
+       transform="matrix(0.93272716,0.36058293,-0.36058293,0.93272716,131.75764,-93.947601)"
+       rx="75.445999"
+       cy="183.5"
+       cx="270.32999"
+       id="imagebot_21"
+       sodipodi:cx="270.32999"
+       sodipodi:cy="183.5"
+       sodipodi:rx="75.445999"
+       sodipodi:ry="110.5"
+       style="fill:#ffffff;stroke:#e5e5e5;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+       d="m 345.77599,183.5 c 0,61.02746 -33.77833,110.5 -75.446,110.5 -41.66768,0 -75.446,-49.47254 -75.446,-110.5 0,-61.02746 33.77832,-110.5 75.446,-110.5 41.66767,0 75.446,49.47254 75.446,110.5 z" />
+    <ellipse
+       ry="109.38"
+       transform="matrix(0.93763437,0.34762307,-0.34762307,0.93763437,105.68575,-89.454289)"
+       rx="70.5"
+       cy="171.67"
+       cx="276.5"
+       id="imagebot_22"
+       sodipodi:cx="276.5"
+       sodipodi:cy="171.67"
+       sodipodi:rx="70.5"
+       sodipodi:ry="109.38"
+       style="fill:#191919;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+       d="m 347,171.67 c 0,60.4089 -31.56393,109.38 -70.5,109.38 -38.93607,0 -70.5,-48.9711 -70.5,-109.38 0,-60.40891 31.56393,-109.379999 70.5,-109.379999 38.93607,0 70.5,48.971089 70.5,109.379999 z" />
+    <ellipse
+       ry="91.464996"
+       transform="matrix(0.94774614,0.31902548,-0.31902548,0.94774614,214.87797,-24.736951)"
+       rx="56.669998"
+       cy="151.2"
+       cx="143.36"
+       id="imagebot_25"
+       sodipodi:cx="143.36"
+       sodipodi:cy="151.2"
+       sodipodi:rx="56.669998"
+       sodipodi:ry="91.464996"
+       style="fill:#191919;stroke:#191919;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+       d="m 200.03,151.2 c 0,50.51472 -25.37202,91.46499 -56.67,91.46499 -31.29798,0 -56.669998,-40.95027 -56.669998,-91.46499 0,-50.51473 25.372018,-91.464999 56.669998,-91.464999 31.29798,0 56.67,40.950269 56.67,91.464999 z" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,131.32354,34.429695)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,159.59591,24.984303)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-4"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,103.36033,18.32487)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-7"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,130.4491,8.6397186)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,158.72146,-0.80567142)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-4-9"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,102.48588,-7.4651114)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-8"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,131.1005,-17.744916)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-1"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,159.37286,-27.190306)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-4-0"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,103.13728,-33.849746)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-5"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,135.00895,-41.491087)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-5"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,163.28131,-50.936477)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-4-2"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,107.04573,-57.595917)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-59"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,142.82585,-64.577643)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-15"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,173.70384,-72.703801)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-4-7"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,114.86263,-80.682473)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-74"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,149.33992,-85.68535)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-55"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,177.61229,-94.471124)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-4-6"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,125.93656,-101.13056)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4-4"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,185.32194,-1.391544)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4-0"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,191.50215,-26.118866)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4-1"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,198.66764,-47.886189)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4-41"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,206.48454,-70.313129)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4-12"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,205.83313,-92.740068)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4-9"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,144.60077,-117.14586)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4-8"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,196.71341,-114.50739)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4-3"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,171.9599,-129.01894)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.84019997;fill:#000000;fill-opacity:1;stroke:none"
+       id="path3159-3-4-82"
+       sodipodi:cx="38.038055"
+       sodipodi:cy="53.080761"
+       sodipodi:rx="2.7588038"
+       sodipodi:ry="2.0064027"
+       d="m 40.796859,53.080761 c 0,1.108106 -1.235158,2.006403 -2.758804,2.006403 -1.523645,0 -2.758803,-0.898297 -2.758803,-2.006403 0,-1.108106 1.235158,-2.006403 2.758803,-2.006403 1.523646,0 2.758804,0.898297 2.758804,2.006403 z"
+       transform="matrix(3.9493653,0,0,3.999128,168.05146,-109.89008)" />
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Oreo2.png has changed
Binary file share/hedgewars/Data/Themes/Cake/SDDroplet.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/SDDroplet.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,981 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="16"
+   height="64"
+   sodipodi:docname="Droplet.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Droplet.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Carlos Vives B.</dc:title>
+          </cc:Agent>
+        </dc:creator>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective10" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3615"
+       xlink:href="#linearGradient3617"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2851" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2837" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3743"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3738"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3733"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3728"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       id="linearGradient3724"
+       xlink:href="#linearGradient3605"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective10-6"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3706">
+      <stop
+         id="stop3708"
+         offset="0"
+         style="stop-color:#9aa3dc;stop-opacity:1;" />
+      <stop
+         id="stop3710"
+         offset="1"
+         style="stop-color:#9aa3dc;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718">
+      <stop
+         id="stop3720"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.49803922;"
+         offset="0.5"
+         id="stop3603" />
+      <stop
+         id="stop3722"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3607" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.24705882;"
+         offset="0.5907774"
+         id="stop3613" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3611" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3617">
+      <stop
+         id="stop3619"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         id="stop3621"
+         offset="0.52097768"
+         style="stop-color:#545c9d;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3623"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective2844"
+       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="perspective3644"
+       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="perspective2849"
+       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
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2848" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3615-7"
+       xlink:href="#linearGradient3617-1"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2851-2" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2837-6" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3743-3"
+       xlink:href="#linearGradient3718-9"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3738-8"
+       xlink:href="#linearGradient3718-9"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3733-1"
+       xlink:href="#linearGradient3718-9"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3728-2"
+       xlink:href="#linearGradient3718-9"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       id="linearGradient3724-4"
+       xlink:href="#linearGradient3605-3"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective10-9"
+       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" />
+    <linearGradient
+       id="linearGradient3706-8">
+      <stop
+         id="stop3708-6"
+         offset="0"
+         style="stop-color:#9aa3dc;stop-opacity:1;" />
+      <stop
+         id="stop3710-2"
+         offset="1"
+         style="stop-color:#9aa3dc;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718-9">
+      <stop
+         id="stop3720-4"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.49803922;"
+         offset="0.5"
+         id="stop3603-4" />
+      <stop
+         id="stop3722-3"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605-3">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3607-1" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.24705882;"
+         offset="0.5907774"
+         id="stop3613-3" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3611-9" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3617-1">
+      <stop
+         id="stop3619-7"
+         offset="0"
+         style="stop-color:#5c0500;stop-opacity:1;" />
+      <stop
+         id="stop3621-7"
+         offset="0.77644771"
+         style="stop-color:#550502;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3623-3"
+         offset="1"
+         style="stop-color:#4b0602;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="translate(-133.491,9.5795401)"
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3717"
+       xlink:href="#linearGradient3617-6"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3714"
+       xlink:href="#linearGradient3617-6"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3617-6">
+      <stop
+         style="stop-color:#ff6200;stop-opacity:1;"
+         offset="0"
+         id="stop3619-6" />
+      <stop
+         style="stop-color:#ff6200;stop-opacity:0.24705882;"
+         offset="0.52097768"
+         id="stop3621-4" />
+      <stop
+         style="stop-color:#ff6200;stop-opacity:0;"
+         offset="1"
+         id="stop3623-3-0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605-3-9">
+      <stop
+         id="stop3607-9"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         id="stop3613-4"
+         offset="0.5907774"
+         style="stop-color:#545c9d;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3611-7"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718-5">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3720-1" />
+      <stop
+         id="stop3603-9"
+         offset="0.5"
+         style="stop-color:#545c9d;stop-opacity:0.49803922;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3722-1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3706-4">
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:1;"
+         offset="0"
+         id="stop3708-6-7" />
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:0;"
+         offset="1"
+         id="stop3710-0" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective10-4" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3605-3-9"
+       id="linearGradient3724-3"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-5"
+       id="linearGradient3728-3"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-5"
+       id="linearGradient3733-4"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-5"
+       id="linearGradient3738-0"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-5"
+       id="linearGradient3743-0"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <inkscape:perspective
+       id="perspective2837-2"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective2851-5"
+       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" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3617-6"
+       id="linearGradient3615-4"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       id="linearGradient3774">
+      <stop
+         style="stop-color:#ff9300;stop-opacity:1;"
+         offset="0"
+         id="stop3776" />
+      <stop
+         id="stop3802"
+         offset="0.00048828"
+         style="stop-color:#ff9300;stop-opacity:0.99607843;" />
+      <stop
+         id="stop3800"
+         offset="0.00097656"
+         style="stop-color:#ff9300;stop-opacity:0.99607843;" />
+      <stop
+         id="stop3798"
+         offset="0.00195312"
+         style="stop-color:#44ab00;stop-opacity:0.99607843;" />
+      <stop
+         id="stop3796"
+         offset="0.00390625"
+         style="stop-color:#ff9300;stop-opacity:0.99607843;" />
+      <stop
+         id="stop3794"
+         offset="0.0078125"
+         style="stop-color:#ff9300;stop-opacity:0.99215686;" />
+      <stop
+         id="stop3792"
+         offset="0.015625"
+         style="stop-color:#ff9300;stop-opacity:0.98431373;" />
+      <stop
+         id="stop3790"
+         offset="0.03125"
+         style="stop-color:#ff9300;stop-opacity:0.96862745;" />
+      <stop
+         id="stop3788"
+         offset="0.0625"
+         style="stop-color:#ff9300;stop-opacity:0.9372549;" />
+      <stop
+         id="stop3786"
+         offset="0.17754041"
+         style="stop-color:#ff9300;stop-opacity:0.8745098;" />
+      <stop
+         id="stop3784"
+         offset="0.37418443"
+         style="stop-color:#ff9300;stop-opacity:0.74901961;" />
+      <stop
+         id="stop3782"
+         offset="0.5"
+         style="stop-color:#fedbf8;stop-opacity:0" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0;"
+         offset="1"
+         id="stop3778" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3774"
+       id="linearGradient3780"
+       x1="67.903694"
+       y1="42.525238"
+       x2="67.920876"
+       y2="53.688095"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,2.7977291,-2.1118922,-84.521709)" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3644-9" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2844-2" />
+    <linearGradient
+       id="linearGradient3617-7">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3619-3" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.24705882;"
+         offset="0.52097768"
+         id="stop3621-5" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3623-7" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605-37">
+      <stop
+         id="stop3607-7"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         id="stop3613-7"
+         offset="0.5907774"
+         style="stop-color:#545c9d;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3611-5"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718-3">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3720-46" />
+      <stop
+         id="stop3603-93"
+         offset="0.5"
+         style="stop-color:#545c9d;stop-opacity:0.49803922;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3722-9" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3706-7">
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:1;"
+         offset="0"
+         id="stop3708-5" />
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:0;"
+         offset="1"
+         id="stop3710-04" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective10-6-0" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3605-37"
+       id="linearGradient3724-1"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-3"
+       id="linearGradient3728-0"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-3"
+       id="linearGradient3733-0"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-3"
+       id="linearGradient3738-1"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-3"
+       id="linearGradient3743-7"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <inkscape:perspective
+       id="perspective2837-0"
+       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="perspective2851-8"
+       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" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3617-7"
+       id="linearGradient3615-6"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48" />
+    <inkscape:perspective
+       id="perspective10-8"
+       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
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2856" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2855" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2854" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2853" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2852" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2851-5-6" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2850" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2849-6" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3644-7" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2844-4" />
+    <linearGradient
+       id="linearGradient3617-4">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3619-5" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.24705882;"
+         offset="0.52097768"
+         id="stop3621-52" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3623-2" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605-7">
+      <stop
+         id="stop3607-96"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         id="stop3613-9"
+         offset="0.5907774"
+         style="stop-color:#545c9d;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3611-6"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718-4">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3720-6" />
+      <stop
+         id="stop3603-0"
+         offset="0.5"
+         style="stop-color:#545c9d;stop-opacity:0.49803922;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3722-7" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3706-41">
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:1;"
+         offset="0"
+         id="stop3708-1" />
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:0;"
+         offset="1"
+         id="stop3710-3" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective10-6-6" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3605-7"
+       id="linearGradient3724-2"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-4"
+       id="linearGradient3728-6"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-4"
+       id="linearGradient3733-9"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-4"
+       id="linearGradient3738-6"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-4"
+       id="linearGradient3743-37"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <inkscape:perspective
+       id="perspective2837-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="perspective2851-1"
+       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" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3617-4"
+       id="linearGradient3615-9"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48" />
+    <inkscape:perspective
+       id="perspective10-2"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="971"
+     inkscape:window-height="521"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="2.8906615"
+     inkscape:cx="25.702637"
+     inkscape:cy="13.354068"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg2" />
+  <g
+     id="g3588"
+     transform="translate(0.136638,0.14902253)">
+    <g
+       id="g3659">
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:#a23c00;fill-opacity:1;fill-rule:nonzero;stroke:#bb4b00;stroke-width:1.17017233;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path2884-3"
+         sodipodi:cx="7.7661896"
+         sodipodi:cy="8.4255676"
+         sodipodi:rx="4.5063076"
+         sodipodi:ry="4.5063076"
+         d="m 12.272497,8.4255676 c 0,2.4887654 -2.017542,4.5063074 -4.5063074,4.5063074 -2.488765,0 -4.5063076,-2.017542 -4.5063076,-4.5063074 0,-2.4887649 2.0175426,-4.5063076 4.5063076,-4.5063076 2.4887654,0 4.5063074,2.0175427 4.5063074,4.5063076 z"
+         transform="matrix(0.85457494,0,0,0.85457494,1.363209,48.799721)" />
+      <path
+         transform="matrix(0.73688876,0,0,0.73688876,2.2771821,33.791293)"
+         d="m 12.272497,8.4255676 c 0,2.4887654 -2.017542,4.5063074 -4.5063074,4.5063074 -2.488765,0 -4.5063076,-2.017542 -4.5063076,-4.5063074 0,-2.4887649 2.0175426,-4.5063076 4.5063076,-4.5063076 2.4887654,0 4.5063074,2.0175427 4.5063074,4.5063076 z"
+         sodipodi:ry="4.5063076"
+         sodipodi:rx="4.5063076"
+         sodipodi:cy="8.4255676"
+         sodipodi:cx="7.7661896"
+         id="path3630-9"
+         style="color:#000000;fill:#a23c00;fill-opacity:1;fill-rule:nonzero;stroke:#bb4b00;stroke-width:1.35705698;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:#a23c00;fill-opacity:1;fill-rule:nonzero;stroke:#bb4b00;stroke-width:0.99331439;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3632-71"
+         sodipodi:cx="7.7661896"
+         sodipodi:cy="8.4255676"
+         sodipodi:rx="4.5063076"
+         sodipodi:ry="4.5063076"
+         d="m 12.272497,8.4255676 c 0,2.4887654 -2.017542,4.5063074 -4.5063074,4.5063074 -2.488765,0 -4.5063076,-2.017542 -4.5063076,-4.5063074 0,-2.4887649 2.0175426,-4.5063076 4.5063076,-4.5063076 2.4887654,0 4.5063074,2.0175427 4.5063074,4.5063076 z"
+         transform="matrix(1.0067306,0,0,1.0067306,0.18153949,15.517722)" />
+      <path
+         transform="matrix(0.79851975,0,0,0.79851975,1.7985442,1.2720175)"
+         d="m 12.272497,8.4255676 c 0,2.4887654 -2.017542,4.5063074 -4.5063074,4.5063074 -2.488765,0 -4.5063076,-2.017542 -4.5063076,-4.5063074 0,-2.4887649 2.0175426,-4.5063076 4.5063076,-4.5063076 2.4887654,0 4.5063074,2.0175427 4.5063074,4.5063076 z"
+         sodipodi:ry="4.5063076"
+         sodipodi:rx="4.5063076"
+         sodipodi:cy="8.4255676"
+         sodipodi:cx="7.7661896"
+         id="path3634-0"
+         style="color:#000000;fill:#a23c00;fill-opacity:1;fill-rule:nonzero;stroke:#bb4b00;stroke-width:1.25231719;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/SDSplash.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/SDSplash.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,1004 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="160"
+   height="500"
+   sodipodi:docname="Splash.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/Splash.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2848" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2851" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2837" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3743"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3738"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3733"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3728"
+       xlink:href="#linearGradient3718"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       id="linearGradient3724"
+       xlink:href="#linearGradient3605"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective10"
+       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" />
+    <linearGradient
+       id="linearGradient3706">
+      <stop
+         id="stop3708"
+         offset="0"
+         style="stop-color:#9aa3dc;stop-opacity:1;" />
+      <stop
+         id="stop3710"
+         offset="1"
+         style="stop-color:#9aa3dc;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718">
+      <stop
+         id="stop3720"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.49803922;"
+         offset="0.5"
+         id="stop3603" />
+      <stop
+         id="stop3722"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3607" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.24705882;"
+         offset="0.5907774"
+         id="stop3613" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3611" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3617">
+      <stop
+         id="stop3619"
+         offset="0"
+         style="stop-color:#5c0500;stop-opacity:1;" />
+      <stop
+         id="stop3621"
+         offset="0.77644771"
+         style="stop-color:#550502;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3623"
+         offset="1"
+         style="stop-color:#4b0602;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(1,0,0,2.7977291,-2.1118922,-84.521709)"
+       gradientUnits="userSpaceOnUse"
+       y2="53.688095"
+       x2="67.920876"
+       y1="42.525238"
+       x1="67.903694"
+       id="linearGradient3780"
+       xlink:href="#linearGradient3774"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3774">
+      <stop
+         id="stop3776"
+         offset="0"
+         style="stop-color:#ff9300;stop-opacity:1;" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0.99607843;"
+         offset="0.00048828"
+         id="stop3802" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0.99607843;"
+         offset="0.00097656"
+         id="stop3800" />
+      <stop
+         style="stop-color:#44ab00;stop-opacity:0.99607843;"
+         offset="0.00195312"
+         id="stop3798" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0.99607843;"
+         offset="0.00390625"
+         id="stop3796" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0.99215686;"
+         offset="0.0078125"
+         id="stop3794" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0.98431373;"
+         offset="0.015625"
+         id="stop3792" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0.96862745;"
+         offset="0.03125"
+         id="stop3790" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0.9372549;"
+         offset="0.0625"
+         id="stop3788" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0.8745098;"
+         offset="0.17754041"
+         id="stop3786" />
+      <stop
+         style="stop-color:#ff9300;stop-opacity:0.74901961;"
+         offset="0.37418443"
+         id="stop3784" />
+      <stop
+         style="stop-color:#fedbf8;stop-opacity:0"
+         offset="0.5"
+         id="stop3782" />
+      <stop
+         id="stop3778"
+         offset="1"
+         style="stop-color:#ff9300;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2851-3" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2837-5" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3743-7"
+       xlink:href="#linearGradient3718-5"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3738-6"
+       xlink:href="#linearGradient3718-5"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3733-1"
+       xlink:href="#linearGradient3718-5"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3728-0"
+       xlink:href="#linearGradient3718-5"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       id="linearGradient3724-8"
+       xlink:href="#linearGradient3605-9"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective10-1"
+       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" />
+    <linearGradient
+       id="linearGradient3706-9">
+      <stop
+         id="stop3708-5"
+         offset="0"
+         style="stop-color:#9aa3dc;stop-opacity:1;" />
+      <stop
+         id="stop3710-4"
+         offset="1"
+         style="stop-color:#9aa3dc;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718-5">
+      <stop
+         id="stop3720-7"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.49803922;"
+         offset="0.5"
+         id="stop3603-4" />
+      <stop
+         id="stop3722-2"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605-9">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3607-4" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.24705882;"
+         offset="0.5907774"
+         id="stop3613-3" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3611-3" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3617-5">
+      <stop
+         id="stop3619-3"
+         offset="0"
+         style="stop-color:#ff6200;stop-opacity:1;" />
+      <stop
+         id="stop3621-6"
+         offset="0.52097768"
+         style="stop-color:#ff6200;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3623-5"
+         offset="1"
+         style="stop-color:#ff6200;stop-opacity:0;" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="0.67665627"
+     inkscape:cx="55.152765"
+     inkscape:cy="461.34956"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <g
+     id="g4166"
+     transform="translate(0,1)">
+    <g
+       transform="matrix(1.0075215,0,0,1,-1.023657,-1.2477538)"
+       id="g3074">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 21.295625,500.21348 c -0.0024,-4.20042 0.05945,-6.39271 -1.292793,-9.4943 -4.619609,-4.06863 -0.306832,-8.84104 4.451392,-8.46278 3.425134,0.32851 1.953043,1.17025 5.998446,2.16699 7.918352,-2.18995 7.247275,-2.51622 12.843321,-0.3418 4.266851,1.65795 4.02667,-3.50847 7.996265,-2.04615 6.110478,2.25098 6.450795,4.01932 13.020656,2.05375 2.038667,-0.52552 4.17023,2.6697 3.509292,3.87722 -3.195314,5.8378 -4.00775,2.08432 -5.521203,7.69564 l -0.393921,4.55143 C 48.519597,500.28218 35.591328,500.26483 24.67274,500 z"
+         id="path3834-5-8-2-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsscscccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 23.108743,500.21348 c -0.0021,-3.7632 0.137332,-5.53604 -1.0723,-8.31479 -4.13241,-3.64513 -0.274473,-7.92079 3.981934,-7.5819 3.063909,0.29432 1.747069,1.04844 5.365831,1.94143 7.083257,-1.962 6.482954,-2.25431 11.488824,-0.30622 3.816855,1.48538 3.384797,-2.18208 7.152953,-1.83317 5.051582,2.9051 5.770474,3.60095 11.647457,1.83998 1.823662,-0.47082 3.730424,2.39181 3.139191,3.47364 -2.858327,5.23016 -3.58508,1.86737 -4.93892,6.89462 l -0.352844,3.88641 c -12.449398,0.0615 -23.362267,0 -33.307021,0 z"
+         id="path3834-5-8-2-3-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsccscccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 25.032047,500.21348 c -0.0019,-3.23853 0.401689,-6.10129 -0.665331,-8.49264 -3.645212,-3.13694 -1.17843,-4.85022 2.576159,-4.55858 2.702683,0.25329 1.915622,0.52774 5.107744,1.29623 6.248163,-1.68846 5.718633,-1.75276 10.134327,-0.0763 3.366859,1.27829 4.202951,-1.31607 7.526853,-1.0158 4.456016,2.50008 4.153836,2.91165 9.337941,1.39619 1.608657,-0.40518 2.260669,1.49656 1.73914,2.42757 -2.521338,4.50098 -2.13246,1.13886 -3.326687,5.46522 l -0.310832,3.55811 C 46.169708,500.26641 36.543022,500 27.770723,500 z"
+         id="path3834-5-8-2-3-1-9"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsccscccc" />
+    </g>
+    <g
+       transform="translate(-0.513536,-1.0658767)"
+       id="g3813">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 21.154648,450 c -0.0024,-5.51241 -0.312727,-8.10931 -1.654892,-12.17967 -4.102964,-3.35623 -5.690835,-10.9599 1.908999,-10.36885 3.399605,0.43111 3.23956,1.29002 7.25481,2.59809 7.859331,-2.87398 7.56499,-2.07339 13.769863,-0.20281 4.429834,1.33546 4.94936,-4.9435 8.773066,-3.17677 6.135729,2.835 1.540823,4.81329 9.221262,4.59312 1.633702,0.37579 0.659177,-0.34625 5.932755,-2.14364 2.023472,-0.68967 3.674477,2.64344 3.018466,4.22813 -3.171498,7.66122 -6.115356,1.13794 -7.896329,10.9595 L 60.441126,450 c -13.81341,0.0901 -25.271923,0 -36.30627,0 z"
+         id="path3834-5-8-2"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsscsscccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 22.816018,449.91831 c -0.0022,-4.90122 0.09195,-8.43936 -1.120826,-12.05843 -3.707421,-2.98411 -5.516741,-8.43391 1.350437,-7.90839 3.071869,0.38331 2.927253,1.147 6.555416,2.31003 7.101659,-2.55533 6.835694,-1.84351 12.442391,-0.18032 4.00278,1.18739 4.472221,-4.3954 7.927306,-2.82455 5.544219,2.52068 1.392281,4.27962 8.332294,4.08387 1.476207,0.33412 1.344684,0.1603 6.109867,-1.43781 1.828401,-0.6132 3.133133,2.28955 1.97842,3.29118 -6.108369,5.29858 -5.633793,0.96139 -7.135091,9.7444 L 58.315117,450 c -12.48174,0.0801 -22.835605,0 -32.806194,0 z"
+         id="path3834-5-8-2-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsscsscccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 26.079362,449.96479 c -0.0018,-4.22456 0.0747,-7.33498 -0.910498,-10.4544 -3.011708,-2.57213 -5.408408,-5.1509 0.170115,-4.69793 2.495419,0.33039 4.231756,0.72382 7.179078,1.72628 5.769003,-2.20255 4.228793,-1.32417 8.783371,0.10941 3.25164,1.02345 4.824727,-4.31824 7.631451,-2.96426 4.503823,2.17268 0.336521,2.0998 5.974211,1.93108 1.19919,0.28799 1.092347,0.98085 4.963324,-0.39662 1.485293,-0.52854 1.61828,1.13077 0.680254,1.99411 -4.962107,4.56706 -3.64968,0.82866 -4.869254,8.3991 l -0.76451,4.42365 c -10.139488,0.069 -18.550407,0 -26.649972,0 z"
+         id="path3834-5-8-2-7-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsscsscccc" />
+    </g>
+    <g
+       transform="translate(-0.513536,-1.1729936)"
+       id="g3808">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 22.457296,400 c -0.0023,-6.71319 -0.57052,-9.3962 -1.882478,-14.35322 -2.960564,-3.69012 -4.35086,-6.7694 -4.436949,-7.24019 -0.861248,-4.70991 2.567173,-5.82442 5.282446,-5.39544 3.323094,0.52502 3.056954,1.87399 6.981838,3.467 8.337872,-2.35976 8.602537,-2.50549 14.667764,-0.22743 4.330137,1.62637 6.132538,-4.96688 10.219452,-4.34445 1.462132,0.22269 3.206609,1.54244 3.221552,2.96606 0.02248,2.14219 1.562374,2.42261 2.74387,2.76119 1.596935,0.45765 2.658803,-0.0409 7.813695,-2.2298 1.977932,-0.8399 4.021633,1.83342 4.268031,3.16192 1.588116,8.56263 -8.014904,-0.1857 -10.020626,14.83925 l -0.643555,6.74109 c -13.502527,0.10972 -24.515894,-0.15024 -35.301904,-0.15024 z"
+         id="path3834-5-8"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsscsssssscccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 24.399686,400 c -0.0021,-6.2708 -0.42776,-9.91708 -1.626743,-14.54744 -2.705625,-3.44694 -4.069833,-5.48061 -4.148509,-5.92037 -0.787084,-4.39953 1.409793,-4.22339 3.89125,-3.82268 3.036937,0.49042 3.07461,1.28234 6.661516,2.77037 7.619887,-2.20425 6.831811,-2.62127 12.374753,-0.49333 3.957263,1.51919 8.038882,-4.07778 11.773865,-3.49637 1.336227,0.20802 2.368693,1.06627 2.382349,2.39607 0.02054,2.00102 1.240573,1.60754 2.320329,1.92381 1.45942,0.42749 2.429849,0.80449 7.140846,-1.24017 1.80761,-0.78455 4.606311,1.06563 3.900505,2.11087 -5.25011,7.77498 -7.444265,-0.17745 -9.157735,13.86135 L 59.323973,400 c -12.339804,0.10249 -22.404794,-0.30133 -32.262005,-0.30133 z"
+         id="path3834-5-8-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsscsssssscccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 26.272365,400 c -0.0018,-5.61973 0.09585,-9.60293 -0.947694,-13.75255 -2.354867,-3.08906 -2.576529,-3.62622 -2.645006,-4.02032 -0.685046,-3.94275 0.455255,-1.61805 2.615016,-1.25894 2.643228,0.4395 2.940849,0.75195 6.062748,2.08548 6.632045,-1.97539 6.343382,-2.21669 11.167737,-0.30969 3.444244,1.36147 5.9374,-3.6544 9.18818,-3.13335 1.162999,0.18642 2.061616,0.95555 2.073503,2.14729 0.01788,1.79326 1.079744,1.44064 2.01952,1.72407 1.270221,0.38311 1.187938,-0.7356 5.288201,-2.56798 1.573271,-0.70309 1.99149,1.34933 1.011368,1.89171 -6.964609,3.85408 -3.441814,-0.96415 -4.924976,11.6277 l -0.511892,5.68026 c -10.740074,0.0919 -19.500239,-0.16294 -28.079562,-0.16294 z"
+         id="path3834-5-8-1-6"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsscsssssscccc" />
+    </g>
+    <g
+       transform="matrix(1.0111723,0,0,0.9658163,-1.324153,10.603623)"
+       id="g3803">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 23.24255,349.89256 c -0.0023,-7.81704 0.226574,-10.01106 -1.100628,-15.78317 -2.994963,-4.29688 -6.451043,-8.24582 -6.631764,-9.35582 -0.892364,-5.48096 1.659324,-7.0905 4.406147,-6.59098 3.361706,0.61134 3.654161,3.22353 8.000639,3.78366 3.081936,0.39717 3.502609,-1.98322 6.179807,-2.39619 2.907489,-0.4485 4.671951,0.9697 8.658385,2.69315 4.380452,1.8938 6.203793,-5.78358 10.338195,-5.0588 1.47912,0.2593 3.243867,1.79606 3.258984,3.45376 0.02274,2.49444 1.580528,2.82096 2.775751,3.21522 1.61549,0.5329 3.493419,0.33788 8.708206,-2.21098 2.000914,-0.978 4.296551,-0.74386 4.719484,0.75226 3.080062,10.89571 -9.715476,1.55693 -11.744503,19.05242 l -1.320801,8.5089 c -13.659417,0.12776 -25.336566,-0.0633 -36.247902,-0.0634 z"
+         id="path3834-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsssssssssscccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 24.955277,349.94528 c -0.0021,-7.34396 0.204653,-10.15425 -0.994149,-15.57704 -2.705216,-4.03684 -5.536984,-8.36823 -5.615647,-8.88326 -0.786966,-5.15245 0.749738,-4.50786 3.23082,-4.03857 3.036478,0.57434 3.206212,3.78095 6.945722,2.39711 6.430014,-2.3795 8.515993,-2.36639 14.058095,0.12571 3.956664,1.77919 6.352662,-4.21635 10.087081,-3.53543 1.336023,0.2436 2.649145,1.2192 2.6628,2.77658 0.02054,2.34348 2.457569,2.46298 3.537159,2.83338 1.459201,0.50065 1.750973,0.78559 6.461256,-1.60902 1.807337,-0.91881 4.289218,-1.77483 4.169266,-0.32321 -0.759777,9.19459 -8.996486,1.39772 -10.608282,17.89939 l -1.193021,7.99395 c -12.337937,0.12003 -22.885382,-0.0595 -32.7411,-0.0596 z"
+         id="path3834-5-61"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccssssssssscccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 27.506919,349.94449 c -0.0019,-6.85654 0.180311,-9.21547 -0.875905,-14.27835 -2.383454,-3.76891 -4.6148,-6.88591 -4.684107,-7.36675 -0.693363,-4.81048 -0.393878,-2.48727 1.792102,-2.04913 2.675316,0.53622 4.933748,4.05967 8.228477,2.76767 5.665224,-2.22157 8.293925,-1.67967 13.176845,0.64703 3.486055,1.6611 2.82916,-3.27444 6.119405,-2.63871 1.177115,0.22743 1.806832,1.00587 1.818863,2.45989 0.0181,2.18794 4.274148,-0.34881 5.225332,-0.003 1.285642,0.46742 3.395241,-2.8654 3.734497,-0.79849 0.490935,2.991 -4.621322,2.35365 -5.823787,13.8522 l -1.051123,7.46338 c -10.870453,0.11206 -18.977128,-0.0555 -27.660599,-0.0556 z"
+         id="path3834-5-61-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsssssssscccc" />
+    </g>
+    <g
+       transform="matrix(1,0,0,0.97330928,-0.513536,0.33453616)"
+       id="g3255">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 99.273179,49.438245 c 0.634112,-5.388716 -0.662666,-7.418003 -1.217212,-10.674016 0.74095,-3.074463 4.631243,-3.516086 7.807973,-1.803224 4.49421,2.406283 7.56946,-0.148748 10.68758,-0.484549 0.72804,-0.07841 2.25851,-0.01366 3.13337,0.05071 1.93065,0.367669 1.1283,1.524021 3.18348,1.488012 l 3.18348,0 c 0.48272,-1.465119 2.54827,-1.774053 3.41756,-1.776942 2.7853,0.809822 2.83684,2.368791 5.47745,2.71322 3.90076,0.508795 4.04819,-0.979297 6.83512,-1.779003 1.99573,0.276444 3.07673,1.044146 3.55801,2.15353 l -0.46816,2.621688 C 143.79285,45.903276 141.87561,44.807147 141.87561,50 l -21.5353,0 -21.067131,0 0,-0.561791 z"
+         id="path4116"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsccccccccccccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 100.3224,49.335893 c 0.59515,-4.702226 -0.621928,-6.472994 -1.142389,-9.314211 0.695407,-2.682794 4.346569,-3.068157 7.328019,-1.573504 4.21796,2.099737 7.10419,-0.129798 10.03065,-0.42282 0.68327,-0.06842 2.11967,-0.01192 2.94075,0.04425 1.81198,0.320829 1.05894,1.329869 2.98781,1.298448 l 2.9878,0 c 0.45303,-1.278471 2.39162,-1.54805 3.20748,-1.55057 2.61409,0.706655 2.66246,2.067021 5.14075,2.367571 3.66098,0.443979 3.79936,-0.85454 6.41498,-1.552368 1.87305,0.241227 2.88761,0.911128 3.33931,1.879183 l -0.43939,2.287701 c -1.01266,3.451684 -2.81205,2.495196 -2.81205,7.02651 l -20.21156,0 -19.77216,0 0,-0.490222 z"
+         id="path4116-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsccccccccccccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 101.8255,49.495699 c 0.54492,-3.983082 -0.56944,-5.483035 -1.04598,-7.889724 0.63671,-2.272496 3.97974,-2.598923 6.70957,-1.332857 3.86198,1.778609 6.50462,-0.109948 9.1841,-0.358156 0.62561,-0.05795 1.94078,-0.0101 2.69257,0.03748 1.65905,0.271763 0.96957,1.126483 2.73565,1.099868 l 2.73565,0 c 0.41479,-1.082946 2.18977,-1.311297 2.93677,-1.313431 2.39348,0.598582 2.43777,1.750897 4.7069,2.005483 3.35201,0.376077 3.47872,-0.723851 5.87358,-1.314955 1.71498,0.204335 2.64391,0.771784 3.0575,1.591787 l -0.40232,1.937828 c -0.92719,2.923793 -2.57472,2.113588 -2.57472,5.951897 l -18.50579,0 -18.10348,0 0,-0.415249 z"
+         id="path4116-0-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsccccccccccccc" />
+    </g>
+    <g
+       transform="matrix(1,0,0,0.96980155,-0.513536,2.0198451)"
+       id="g3499">
+      <g
+         id="g3296">
+        <path
+           sodipodi:nodetypes="ccccc"
+           inkscape:connector-curvature="0"
+           id="path3028"
+           d="m 112.71253,91.780824 c 0.2152,-4.12484 2.27805,-10.276226 6.67173,-10.383607 3.87594,-0.04782 5.46358,3.337354 8.23078,9.480685 l 1.67517,0.0025 c -14.90487,1.803846 -9.68179,1.257979 -16.57768,0.900392 z"
+           style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="ccccc"
+           inkscape:connector-curvature="0"
+           id="path3028-1"
+           d="m 113.065,93.410276 c 0.20661,-4.12484 2.18707,-10.276226 6.40528,-10.383607 3.72114,-0.04782 5.24537,3.337354 7.90206,9.480685 l 1.60826,0.0025 c -14.3096,1.803846 -9.29512,1.257979 -15.9156,0.900392 z"
+           style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="ccccc"
+           inkscape:connector-curvature="0"
+           id="path3028-1-4"
+           d="m 114.05811,94.204767 c 0.18598,-3.861846 1.96872,-9.621028 5.76579,-9.721563 3.34963,-0.04477 4.72168,3.124569 7.11313,8.87621 l 1.4477,0.0023 c -12.88096,1.688835 -8.36712,1.177772 -14.32662,0.842984 z"
+           style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      </g>
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 97.696675,99.399413 c 0.634112,-3.964885 0.835442,-5.832511 0.280896,-8.228205 0.74095,-2.262114 3.133139,-2.212522 6.309869,-0.952241 2.9961,1.395957 7.56946,-0.109445 10.68758,-0.356519 0.72804,-0.05769 2.25851,-0.01005 3.13337,0.03731 1.93065,0.270522 1.1283,1.121337 3.18348,1.094843 l 3.18348,0 c 0.48272,-1.077999 3.20369,-0.930778 4.07298,-0.932903 2.7853,0.595847 2.18141,1.368371 4.82203,1.621793 3.90076,0.374359 4.04818,-0.720543 6.83511,-1.308946 1.99574,0.2034 3.07673,0.768256 3.55802,1.584514 l -0.46816,1.928973 c -1.07898,2.910437 -0.2809,2.291195 -0.2809,6.111968 l -24.25062,-0.187263 -21.067135,0 0,-0.413352 z"
+         id="path4116-2"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsccccccccccccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 98.717675,99.489039 c 0.599481,-3.3732 0.789815,-4.962118 0.265555,-7.0003 0.700484,-1.924536 2.96203,-1.882345 5.96526,-0.810137 2.83247,1.187637 7.15606,-0.09311 10.10389,-0.303315 0.68828,-0.04908 2.13517,-0.0086 2.96225,0.03174 1.82521,0.230152 1.06668,0.953999 3.00961,0.931458 l 3.00962,0 c 0.45636,-0.917127 3.02873,-0.791877 3.85054,-0.793684 2.63318,0.506928 2.06227,1.164167 4.55868,1.37977 3.68772,0.318494 3.82709,-0.613016 6.46182,-1.113609 1.88674,0.173046 2.9087,0.653607 3.3637,1.348054 l -0.44259,1.64111 c -1.02005,2.476109 -0.26556,1.949277 -0.26556,5.199872 l -22.9262,-0.159317 -19.916575,0 0,-0.351668 z"
+         id="path4116-2-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsccccccccccccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 99.710789,99.586135 c 0.563031,-2.732209 0.741781,-4.019193 0.2494,-5.67007 0.657901,-1.558827 2.781911,-1.524654 5.602521,-0.656191 2.66023,0.961956 6.7209,-0.07542 9.48948,-0.245678 0.64642,-0.03975 2.00533,-0.0069 2.78211,0.02571 1.71422,0.186417 1.00182,0.772715 2.8266,0.754458 l 2.82661,0 c 0.42861,-0.742851 2.84455,-0.641401 3.61639,-0.642865 2.47306,0.410599 1.93686,0.942947 4.28147,1.11758 3.46347,0.257972 3.59437,-0.496527 6.06888,-0.901996 1.77201,0.140163 2.73182,0.529406 3.15915,1.091891 l -0.41567,1.329258 c -0.95802,2.005587 -0.24941,1.578867 -0.24941,4.211768 l -21.53207,-0.129043 -18.705461,0 0,-0.284842 z"
+         id="path4116-2-5-8"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsccccccccccccc" />
+    </g>
+    <g
+       transform="matrix(1.0184293,0,0,1,-2.2495165,-0.99999959)"
+       id="g3373">
+      <g
+         id="g3209"
+         transform="translate(-0.56179,0.749054)">
+        <path
+           sodipodi:nodetypes="sscccsssssssscccscsccccs"
+           inkscape:connector-curvature="0"
+           id="path3028-8"
+           d="m 104.533,146.88074 c 0,-0.31712 1.00858,-0.37553 0.54682,-0.37553 l 0.54681,0 0,0.0451 0,-2.62875 0.54682,0 c 0.43039,0 2.88284,1.27337 2.88284,1.0384 0,-0.26797 0.12313,-0.30733 1.20298,-0.38455 1.0866,-0.0777 1.203,-0.11542 1.203,-0.38995 0,-0.29648 0.0429,-0.30394 1.7498,-0.30394 1.6981,0 1.74981,0.009 1.74981,0.29852 0,0.26797 0.12314,0.30733 1.203,0.38454 1.0866,0.0777 1.65046,0.4889 1.20298,0.38996 l -2.33602,-1.03298 6.38245,-1.33693 -7.82855,-0.11794 c 0.0831,-1.01688 0.88043,-3.95119 1.03928,-7.29679 0.1936,-4.07735 2.90157,-8.56077 5.02178,-8.59385 2.24541,-0.0177 4.00409,1.28525 5.37484,5.8126 0.6849,2.26207 0.97487,8.30985 1.77585,9.44491 2.72663,6.41758 -0.23192,5.39291 -9.48672,5.42275 l -12.77777,0 0,-0.37554 z"
+           style="opacity:0.98279993;fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="sscccsssssssscccscscccccs"
+           inkscape:connector-curvature="0"
+           id="path3028-4-0"
+           d="m 106.82686,147.28051 c 0,-0.30135 0.85371,-0.35687 0.46285,-0.35687 l 0.46285,0 0,0.0429 0,-2.49804 0.46285,0 c 0.3643,0 2.44015,1.21005 2.44015,0.98677 0,-0.25465 0.10423,-0.29205 1.01826,-0.36543 0.91974,-0.0738 1.01826,-0.10968 1.01826,-0.37057 0,-0.28172 0.0363,-0.28882 1.48111,-0.28882 1.43735,0 1.48112,0.008 1.48112,0.28368 0,0.25464 0.10422,0.29204 1.01826,0.36542 0.91975,0.0738 1.39701,0.46458 1.01826,0.37057 l -1.9773,-0.98162 5.40237,-1.27045 -6.40226,-0.23791 c 0.0866,-1.19006 1.80554,-12.02253 2.765,-13.15487 0.79303,-0.93592 0.6791,-1.72963 2.14117,-1.75523 1.60535,-0.0142 2.06678,-0.0163 3.06015,1.05378 0.77031,0.82981 2.10372,11.96652 2.99251,13.3805 l 1.23186,0.001 c -1.32448,4.49451 6.65979,5.12444 -9.26182,5.15177 l -10.81565,0 0,-0.35686 z"
+           style="opacity:0.98279993;fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="sscccssssssssccccccccccs"
+           inkscape:connector-curvature="0"
+           id="path3028-4-7-4"
+           d="m 109.77781,147.40471 c 0,-0.28427 0.67988,-0.33663 0.36861,-0.33663 l 0.3686,0 0,0.0404 0,-2.35643 0.36861,0 c 0.29013,0 1.9433,1.14146 1.9433,0.93083 0,-0.24021 0.083,-0.27549 0.81093,-0.34471 0.73247,-0.0696 0.81093,-0.10347 0.81093,-0.34956 0,-0.26576 0.029,-0.27245 1.17954,-0.27245 1.14468,0 1.17954,0.008 1.17954,0.2676 0,0.2402 0.083,0.27549 0.81093,0.3447 0.73247,0.0697 1.11256,0.43825 0.81093,0.34956 l -1.5747,-0.92597 4.30238,-1.19843 -5.09867,-0.22442 c 0.069,-1.12259 2.17975,-11.42719 2.94384,-12.49534 0.764,-1.00252 1.60538,-0.50307 2.37047,0.35574 0.61347,0.78277 2.70533,10.35693 3.41314,11.69076 l 0.98104,0.001 c -1.0548,4.23972 5.30377,4.83393 -7.37599,4.85972 l -8.61343,0 0,-0.33663 z"
+           style="opacity:0.98279993;fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      </g>
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 94.196751,149.67888 c 0.826217,-1.66292 2.939123,-2.00809 3.705354,-3.12014 0.612398,-0.88878 0.341288,-2.91439 0.743913,-3.60387 0.977471,-1.67389 2.260062,-1.42967 3.195842,-1.15048 5.5649,3.34485 9.42162,2.01923 10.92453,0.47234 0.54613,-0.56211 2.4273,-0.008 3.36754,0.0289 5.79781,4.02971 5.05722,0.34065 11.22017,0.12569 2.99346,0.46247 2.34444,1.06206 5.1824,1.25876 4.19228,0.29056 1.82267,-1.02741 4.81788,-1.4841 2.14488,0.15787 3.58757,0.68992 4.10482,1.32345 0.55,4.79259 3.9914,4.59914 3.49456,6.3507 -10.44581,0.13291 -28.11543,0.11949 -28.11543,0.11949 l -22.641579,0 0,-0.32083 z"
+         id="path4116-2-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscscccccccccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 95.224556,149.73982 c 0.791204,-1.34764 2.814573,-1.62737 3.548332,-2.52857 0.586452,-0.72027 0.326831,-2.36184 0.712387,-2.92059 0.936045,-1.35653 2.164295,-1.15861 3.060425,-0.93235 5.32907,2.71067 9.02236,1.63639 10.46158,0.38279 0.52299,-0.45554 2.32444,-0.007 3.22484,0.0234 5.55211,3.26568 4.8429,0.27606 10.74469,0.10186 2.86661,0.37478 2.24509,0.86069 4.96278,1.02009 4.01463,0.23548 1.74544,-0.83261 4.61372,-1.20271 2.05399,0.12794 3.43554,0.55911 3.93087,1.07252 0.52669,3.88394 3.82226,3.72717 3.34647,5.14663 -10.00315,0.10771 -26.92399,0.0968 -26.92399,0.0968 l -21.682104,0 0,-0.26 z"
+         id="path4116-2-3-6"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscscccccccccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 96.581943,149.79365 c 0.753138,-1.06945 2.679161,-1.29143 3.377613,-2.00659 0.558224,-0.57158 0.311104,-1.87429 0.678114,-2.31769 0.89101,-1.0765 2.06016,-0.91943 2.91318,-0.73988 5.07267,2.1511 8.58827,1.29859 9.95825,0.30376 0.49782,-0.3615 2.21261,-0.006 3.06968,0.0185 5.28499,2.59154 4.6099,0.21907 10.22774,0.0808 2.72869,0.29741 2.13707,0.68301 4.72401,0.80951 3.82148,0.18687 1.66147,-0.66073 4.39175,-0.95443 1.95517,0.10152 3.27025,0.44368 3.74175,0.85111 0.50134,3.08217 3.63835,2.95776 3.18546,4.08421 -9.52188,0.0855 -25.62862,0.0768 -25.62862,0.0768 l -20.638927,0 0,-0.20633 z"
+         id="path4116-2-3-6-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscscccccccccc" />
+    </g>
+    <g
+       id="g4132">
+      <g
+         id="g3232"
+         transform="matrix(1.1040865,0,0,1.0255883,-12.754726,-3.8254288)">
+        <path
+           sodipodi:nodetypes="sscccsssssscccsscsccccs"
+           inkscape:connector-curvature="0"
+           id="path3028-8-0"
+           d="m 104.04864,196.40367 c 0,-0.32834 1.04235,-0.38882 0.56513,-0.38882 l 0.56511,0 0,0.0467 c -0.54369,-3.4381 1.69961,-1.58113 3.5445,-1.64664 0,-0.27745 0.12725,-0.3182 1.24326,-0.39815 1.12298,-0.0805 1.24328,1.88049 1.24328,1.59624 0,-0.30697 0.0443,-0.31469 1.80839,-0.31469 1.75495,0 1.80839,0.009 1.80839,0.30908 0,0.27746 0.12727,-1.68179 1.24328,-1.60185 1.12299,0.0805 1.70573,0.5062 1.24326,0.40376 l -2.41423,0.93046 6.59615,-1.38424 -8.09067,-0.12211 c 0.0859,-1.05287 0.90989,-6.09103 1.07407,-9.55503 0.10044,-2.11916 0.0606,-5.2399 0.99865,-7.16757 0.93064,-1.91251 2.83517,-2.64028 3.92645,-2.65734 2.32059,-0.0183 4.40299,2.25765 5.81963,6.94523 0.70783,2.34212 1.00751,10.60394 1.83531,11.77917 2.81793,6.6447 -0.23968,3.58377 -9.80436,3.61466 l -13.2056,0 0,-0.38883 z"
+           style="opacity:0.98279993;fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="sscccsssssssscccscscccccs"
+           inkscape:connector-curvature="0"
+           id="path3028-4-0-8"
+           d="m 106.4193,196.81759 c 0,-0.31201 0.8823,-0.3695 0.47835,-0.3695 l 0.47835,0 0,0.0444 0,-2.58645 0.47834,0 c 0.3765,0 2.52186,1.25288 2.52186,1.02169 0,-0.26366 0.10772,-0.30238 1.05235,-0.37836 0.95054,-0.0764 1.05235,-0.11356 1.05235,-0.38368 0,-0.29169 0.0375,1.70096 1.53071,1.70096 1.48547,0 1.53071,-1.992 1.53071,-1.70629 0,0.26366 0.10771,0.30238 1.05235,0.37836 0.95055,0.0764 1.44379,0.48102 1.05236,0.38368 l -2.04351,0.98364 5.58326,-1.31541 -6.61663,-0.24633 c 0.0895,-1.23218 0.76818,-15.67967 1.75976,-16.85208 0.81958,-0.96905 1.46862,-1.55231 2.97964,-1.57881 1.65911,-0.0147 2.46703,0.97621 3.49366,2.08418 0.7961,0.85918 2.17415,14.39003 3.0927,15.85405 l 1.27311,0.001 c -1.36883,4.65357 6.88278,3.30579 -9.57193,3.33409 l -11.17779,0 0,-0.36949 z"
+           style="opacity:0.98279993;fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="sscccssssssssccccccccccs"
+           inkscape:connector-curvature="0"
+           id="path3028-4-7-4-1"
+           d="m 109.46906,196.93498 c 0,-0.3038 0.70264,-0.35975 0.38095,-0.35975 l 0.38094,0 0,0.0432 0,-2.51832 0.38095,0 c 0.29985,0 2.00837,1.21988 2.00837,0.99479 0,-0.25672 0.0858,-0.29443 0.83808,-0.3684 0.757,-0.0743 0.83808,-0.11058 0.83808,-0.37358 0,-0.28401 0.03,-0.29116 1.21904,-0.29116 1.18301,0 1.21903,0.008 1.21903,0.28598 0,0.2567 0.0858,0.29442 0.83808,0.36838 0.757,0.0745 1.14982,0.46836 0.83809,0.37358 l -1.62743,-0.98959 4.44644,0.71925 -5.26939,-0.23984 c 0.0713,-1.19972 0.0776,-12.2309 2.03851,-15.5339 0.78958,-1.07139 2.66303,-0.35752 3.45374,0.5603 0.63401,0.83654 2.79591,13.06845 3.52742,14.49392 l 1.01389,0.001 c -1.09012,4.53098 5.48135,3.16602 -7.62296,3.19358 l -8.90183,0 0,-0.35976 z"
+           style="opacity:0.98279993;fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      </g>
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 91.727015,198.79487 c 0.858518,-1.06221 2.866763,-1.28269 3.66295,-1.99302 0.636339,-0.56772 3.06995,-2.21932 3.488316,-2.65973 1.015683,-1.06922 2.535679,-0.46608 3.508039,-0.28774 5.78246,2.13656 7.79037,1.58991 9.75988,0.21228 0.54918,-0.38413 2.14766,-0.18363 3.12466,-0.16042 6.02448,2.57402 3.66319,0.0388 10.06708,-0.0985 3.11049,0.29541 3.27878,1.03612 6.2277,1.16176 2.6708,-0.4404 0.58307,-1.28226 3.69538,-1.57398 1.39617,-0.20965 2.87283,1.81421 4.92014,3.1788 1.90542,1.27004 4.44294,1.8613 4.28718,2.34915 -10.85418,0.0849 -29.21459,0.0763 -29.21459,0.0763 l -23.526735,0 0,-0.20493 z"
+         id="path4116-2-3-8"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccsccccc" />
+    </g>
+    <path
+       sodipodi:nodetypes="csscsccccsccccc"
+       inkscape:connector-curvature="0"
+       id="path4116-2-3-8-0"
+       d="m 93.365354,198.85031 c 0.803657,-0.77484 2.68357,-0.93567 3.428878,-1.45382 0.595676,-0.41412 2.873772,-1.61889 3.265398,-1.94015 0.95078,-0.77994 2.37365,-0.33998 3.28387,-0.20989 5.41295,1.55852 7.29255,1.15976 9.1362,0.15486 0.51409,-0.28022 2.01042,-0.13397 2.92499,-0.11703 5.6395,1.87764 3.4291,0.0283 9.42377,-0.0718 2.91172,0.21549 3.06925,0.7558 5.82973,0.84745 2.50013,-0.32125 0.54581,-0.93535 3.45924,-1.14815 1.30695,-0.15294 2.68924,1.32338 4.60573,2.31878 1.78366,0.92644 4.15902,1.35773 4.01321,1.7136 -10.16057,0.062 -27.3477,0.0557 -27.3477,0.0557 l -22.023316,0 0,-0.14948 z"
+       style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+    <path
+       sodipodi:nodetypes="csscsccccsccccc"
+       inkscape:connector-curvature="0"
+       id="path4116-2-3-8-0-3"
+       d="m 94.488937,198.9025 c 0.764035,-0.50437 2.551264,-0.60906 3.259829,-0.94634 0.56631,-0.26957 2.732074,-1.05379 3.104404,-1.26291 0.9039,-0.50769 2.25662,-0.22131 3.12196,-0.13663 5.14608,1.0145 6.93301,0.75494 8.68577,0.10081 0.48874,-0.18241 1.9113,-0.0872 2.78078,-0.0762 5.36146,1.22221 3.26004,0.0184 8.95915,-0.0467 2.76817,0.14027 2.91793,0.49198 5.54231,0.55164 2.37687,-0.20912 0.5189,-0.60886 3.2887,-0.74738 1.24251,-0.0995 2.55665,0.86144 4.37865,1.50938 1.69572,0.60305 3.95397,0.88379 3.81535,1.11544 -9.65963,0.0404 -25.99939,0.0363 -25.99939,0.0363 l -20.937513,0 0,-0.0973 z"
+       style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+    <g
+       transform="translate(-0.513536,-0.99999935)"
+       id="g3749">
+      <g
+         id="g4148">
+        <g
+           transform="matrix(1.0327683,0,0,1.0317587,-3.3982859,-7.6505542)"
+           id="g3328">
+          <path
+             style="opacity:0.98279993;fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+             d="m 103.15922,296.1299 c 0,-0.30325 0.43537,1.91224 0.56513,1.48809 l 0.56511,0 0,0.0431 c -0.54369,-3.17543 1.69961,-1.46033 3.5445,-1.52084 0,-0.25625 0.12725,-0.29389 1.24326,-0.36773 1.12298,-0.0744 1.24328,1.73682 1.24328,1.47429 0,-0.28352 0.0443,-0.29065 1.80839,-0.29065 1.75495,0 1.80839,0.008 1.80839,0.28547 0,0.25626 0.12727,-1.5533 1.24328,-1.47947 1.12299,0.0744 1.67634,0.55011 1.24326,0.37291 l -2.41423,0.85938 6.59615,-1.27849 -8.09067,-0.11278 c 0.0859,-0.97243 0.90989,-7.47288 1.07407,-10.67223 0.10044,-1.95726 0.0606,-4.83958 0.99865,-6.61997 0.93064,-1.7664 2.83517,-2.43857 3.92645,-2.45432 2.32059,-0.0169 5.06191,0.89735 5.95205,6.24909 0.34529,2.07601 0.91387,10.16834 1.74167,11.25378 2.81793,6.13705 0.93875,3.40536 -8.62593,3.43389 l -14.42281,-0.3044 z"
+             id="path3028-8-0-3-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cscccsssssscccsscscccc" />
+          <path
+             style="opacity:0.98279993;fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+             d="m 106.96492,295.67028 c 0.3765,0 2.52186,1.15716 2.52186,0.94363 0,-0.24351 0.10772,-0.27927 1.05235,-0.34945 0.95054,-0.0706 1.05235,-0.10488 1.05235,-0.35437 0,-0.2694 0.0375,1.57101 1.53071,1.57101 1.48547,0 1.53071,-1.83981 1.53071,-1.57593 0,0.24352 0.10771,0.27928 1.05235,0.34945 0.95055,0.0706 1.41351,0.52027 1.05236,0.35437 l -2.04351,0.90849 5.58326,-1.21491 -6.61663,-0.22751 c 0.0895,-1.13804 1.27013,-15.49715 2.26171,-16.57999 0.81958,-0.89501 0.96667,-2.26552 2.47769,-2.28999 1.65911,-0.0136 2.46703,0.90163 3.49366,1.92495 0.25643,0.2556 1.27723,1.71577 1.68547,3.62318 0.85916,4.01424 1.25271,10.00937 1.87539,10.926 1.34949,5.61906 1.34159,3.19484 -8.76698,3.17392 12.18105,-4.66738 -10.37944,2.06307 -9.74275,-1.18285 z"
+             id="path3028-4-0-8-0-1"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cssssssscccscssccc" />
+          <path
+             style="opacity:0.98279993;fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+             d="m 108.57964,296.62062 c 0,-0.28059 0.70264,-0.33227 0.38095,-0.33227 l 0.38094,0 0,0.0399 0.42134,0.52787 0.33414,0 c 1.15144,-1.20667 2.91339,-0.31184 3.31,-0.77309 0,-0.26231 0.03,-0.26892 1.21904,-0.26892 1.18301,0 1.21903,0.007 1.21903,0.26414 0,0.23708 0.0858,0.27192 0.83808,0.34023 0.757,0.0688 0.29572,-0.36706 -0.0226,-0.42629 l -0.76673,-0.14266 1.0533,0.24056 -1.87625,0.20223 c 0.0713,-1.10806 2.25273,-14.97365 3.04241,-16.02796 0.78958,-0.98954 1.65913,-0.49657 2.44984,0.35113 0.63401,0.77263 2.79591,12.07003 3.52742,13.38659 1.83227,4.33999 -0.089,2.95845 -6.60907,2.95052 l -8.90183,0 0,-0.33228 z"
+             id="path3028-4-7-4-1-7-3"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sscccccsssscccccccccs" />
+        </g>
+        <path
+           sodipodi:nodetypes="csscsccccsccccc"
+           inkscape:connector-curvature="0"
+           id="path4116-2-3-8-8-9"
+           d="m 89.812846,299.87217 c 0.893001,-0.66158 2.981907,-0.79891 3.810073,-1.24133 0.661898,-0.3536 3.193256,-1.38228 3.628425,-1.65659 1.056479,-0.66595 2.637531,-0.29029 3.648946,-0.17921 6.01471,1.33073 8.10327,0.99026 10.15189,0.13222 0.57124,-0.23926 2.23392,-0.11437 3.25017,-0.0999 6.26645,1.6032 3.81031,0.0242 10.47142,-0.0613 3.23542,0.184 3.41047,0.64534 6.47783,0.72359 2.77808,-0.2743 0.6065,-0.79864 3.84381,-0.98034 1.45225,-0.13058 2.98822,1.12997 5.11775,1.97989 1.98196,0.79103 4.6214,1.15929 4.45938,1.46314 -11.29014,0.0529 -30.38799,0.0475 -30.38799,0.0475 l -24.471704,0 0,-0.12764 z"
+           style="fill:#bb4b00;fill-opacity:0.99215686;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="csscsccccsccccc"
+           inkscape:connector-curvature="0"
+           id="path4116-2-3-8-8-9-9"
+           d="m 90.853304,299.91308 c 0.859475,-0.44919 2.869955,-0.54243 3.667029,-0.84283 0.637048,-0.24008 3.073373,-0.93853 3.492203,-1.12477 1.01682,-0.45217 2.538514,-0.19711 3.511954,-0.12168 5.78889,0.90353 7.79904,0.67235 9.77075,0.0898 0.54979,-0.16245 2.15005,-0.0776 3.12815,-0.0678 6.03118,1.08852 3.66725,0.0165 10.07828,-0.0416 3.11395,0.12492 3.28243,0.43816 6.23463,0.49129 2.67378,-0.18624 0.58373,-0.54225 3.6995,-0.66562 1.39773,-0.0886 2.87603,0.76721 4.92561,1.34428 1.90755,0.53709 4.4479,0.78713 4.29196,0.99344 -10.86627,0.036 -29.24712,0.0323 -29.24712,0.0323 l -23.552946,0 0,-0.0867 z"
+           style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="csscsccccsccccc"
+           inkscape:connector-curvature="0"
+           id="path4116-2-3-8-8-9-9-5"
+           d="m 93.38136,299.93702 c 0.78785,-0.3253 2.630786,-0.39282 3.361435,-0.61037 0.58396,-0.17386 2.817249,-0.67968 3.201179,-0.81455 0.932076,-0.32746 2.326956,-0.14275 3.219276,-0.0881 5.30647,0.65433 7.1491,0.48691 8.9565,0.065 0.50397,-0.11764 1.97088,-0.0562 2.86746,-0.0491 5.52857,0.7883 3.36164,0.012 9.23841,-0.0301 2.85444,0.0905 3.00888,0.31732 5.71506,0.35579 2.45096,-0.13487 0.53508,-0.39269 3.3912,-0.48203 1.28125,-0.0642 2.63636,0.5556 4.51513,0.97352 1.74859,0.38895 4.07723,0.57003 3.93429,0.71944 -9.96072,0.0261 -26.8098,0.0234 -26.8098,0.0234 l -21.59014,0 0,-0.0628 z"
+           style="fill:#6e1400;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      </g>
+    </g>
+    <g
+       transform="translate(-0.513536,-0.99999523)"
+       id="g3740">
+      <g
+         id="g4157">
+        <g
+           transform="matrix(1,0,0,1.0501642,0.07569744,-16.512303)"
+           id="g3333">
+          <path
+             style="opacity:0.98279993;fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+             d="m 111.63228,347.34693 c 1.93476,0 1.99367,0.007 1.99367,0.24599 0,0.22081 0.14031,-1.33845 1.37067,-1.27483 1.23805,0.0641 1.8481,0.47402 1.37065,0.32133 l -2.6616,0.74051 7.272,-1.10165 -8.91965,-0.0972 c 0.0947,-0.83792 1.00312,-6.4392 1.18412,-9.19601 0.11074,-1.68652 0.0668,-4.17015 1.10098,-5.70427 1.02599,-1.52206 3.12566,-2.10126 4.32875,-2.11483 1.37867,-0.008 3.57489,0.0842 4.72728,1.15141 0.98606,0.91321 0.96847,2.6557 1.68863,4.37591 0.78034,1.86398 1.11074,8.4391 2.02336,9.37439 3.10666,5.28815 -0.30073,3.53102 -10.84541,3.55561 -0.34657,-1.20967 -12.52529,-0.27414 -4.63345,-0.27638 z"
+             id="path3028-8-0-3-9-8"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cssscccsscsscccc" />
+          <path
+             style="opacity:0.98279993;fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+             d="m 112.72735,347.79926 c 1.63767,0 1.68755,-1.58532 1.68755,-1.35794 0,0.20984 0.11874,0.24065 1.16017,0.30111 1.04795,0.0608 1.55834,0.44831 1.16019,0.30536 l -2.25289,0.78282 6.15532,-1.04686 -7.29457,-0.19604 c 0.0987,-0.98062 1.40027,-13.35353 2.49344,-14.28659 0.90356,-0.77121 1.06572,-1.95214 2.73156,-1.97323 1.8291,-0.0117 3.08394,0.44588 4.21576,1.32765 0.87767,0.68377 2.03278,11.78327 3.04544,12.9484 1.48776,4.84181 1.99518,2.67224 -9.14912,2.65422 -1.69116,-0.41712 -5.75991,0.36356 -3.95285,0.5411 z"
+             id="path3028-4-0-8-0-1-0"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cssscccscsccc" />
+          <path
+             style="opacity:0.98279993;fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+             d="m 113.04135,346.59458 c 0,-0.22603 0.0331,-0.23172 1.34395,-0.23172 1.30422,0 1.34393,0.006 1.34393,0.2276 0,0.20429 0.0946,0.23431 0.92395,0.29317 0.83456,0.0593 0.32602,-0.31629 -0.0249,-0.36733 l -0.84529,-0.12292 1.16123,0.20728 -2.0685,0.17426 c 0.0786,-0.95479 2.48355,-12.90244 3.35414,-13.81092 0.87048,-0.85266 1.82913,-0.42788 2.70085,0.30256 0.69897,0.66576 3.08238,10.40046 3.88884,11.53491 2.02001,3.73967 -0.0981,2.54923 -7.28624,2.5424 1.27773,-0.97571 -1.94297,-0.88619 -4.49194,-0.74929 z"
+             id="path3028-4-7-4-1-7-3-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="csssscccccccc" />
+        </g>
+        <path
+           sodipodi:nodetypes="csscsccccsccccc"
+           inkscape:connector-curvature="0"
+           id="path4116-2-3-8-8-9-5"
+           d="m 89.812846,349.87217 c 0.893001,-0.66158 2.981907,-0.79891 3.810073,-1.24133 0.661898,-0.3536 3.193256,-1.38228 3.628425,-1.65659 1.056479,-0.66595 2.637531,-0.29029 3.648946,-0.17921 6.01471,1.33073 8.10327,0.99026 10.15189,0.13222 0.57124,-0.23926 2.23392,-0.11437 3.25017,-0.0999 6.26645,1.6032 3.81031,0.0242 10.47142,-0.0613 3.23542,0.184 3.41047,0.64534 6.47783,0.72359 2.77808,-0.2743 0.6065,-0.79864 3.84381,-0.98034 1.45225,-0.13058 2.98822,1.12997 5.11775,1.97989 1.98196,0.79103 4.6214,1.15929 4.45938,1.46314 -11.29014,0.0529 -30.38799,0.0475 -30.38799,0.0475 l -24.471704,0 0,-0.12764 z"
+           style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="csscsccccsccccc"
+           inkscape:connector-curvature="0"
+           id="path4116-2-3-8-8-9-5-3"
+           d="m 90.317678,349.90979 c 0.868618,-0.46688 2.900488,-0.5638 3.706041,-0.87603 0.643826,-0.24954 3.10607,-0.9755 3.529357,-1.16908 1.027631,-0.46999 2.565514,-0.20487 3.549304,-0.12648 5.85048,0.93913 7.88202,0.69885 9.8747,0.0933 0.55564,-0.16885 2.17293,-0.0807 3.16143,-0.0705 6.09534,1.13141 3.70627,0.0171 10.18551,-0.0433 3.14707,0.12986 3.31734,0.45543 6.30095,0.51065 2.70222,-0.19357 0.58994,-0.56361 3.73885,-0.69185 1.4126,-0.0922 2.90664,0.79745 4.97801,1.39726 1.92786,0.55824 4.49523,0.81814 4.33762,1.03257 -10.98186,0.0374 -29.55826,0.0335 -29.55826,0.0335 l -23.803512,0 0,-0.0901 z"
+           style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="csscsccccsccccc"
+           inkscape:connector-curvature="0"
+           id="path4116-2-3-8-8-9-5-3-8"
+           d="m 91.066736,349.95424 c 0.81528,-0.23681 2.722383,-0.28601 3.478471,-0.44439 0.604292,-0.12656 2.915343,-0.49485 3.312633,-0.59307 0.96453,-0.23842 2.40798,-0.10388 3.33136,-0.0641 5.49123,0.47639 7.39803,0.35449 9.26835,0.0471 0.52152,-0.0857 2.0395,-0.0411 2.9673,-0.036 5.72105,0.57394 3.47869,0.009 9.56007,-0.0218 2.95382,0.0658 3.11364,0.23102 5.91404,0.25902 2.53629,-0.0982 0.55371,-0.28591 3.50926,-0.35094 1.32586,-0.0467 2.72816,0.40451 4.67234,0.70878 1.80948,0.28322 4.2192,0.41506 4.07126,0.52382 -10.30751,0.0188 -27.74323,0.0173 -27.74323,0.0173 l -22.341854,0 0,-0.0456 z"
+           style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      </g>
+    </g>
+    <g
+       transform="translate(-0.513536,-1.0000036)"
+       id="g3733">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 109.15151,399.21681 c 0.37497,-0.72046 1.77906,-1.37088 1.96352,-2.09418 2.51377,-9.85676 3.06493,-14.33506 7.74433,-14.69592 2.59527,-0.0156 5.30251,0.84258 6.88683,4.66076 0.79162,1.90774 2.37664,10.89974 3.30243,11.85701 -9.6137,0.12331 -2.92079,0.35917 -19.89711,0.27233 z"
+         id="path3028-8-0-3-9-8-5-7-3-2-4"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscscc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 109.8163,399.32638 c 0.34752,-0.65228 1.64882,-1.24114 1.81978,-1.896 2.32975,-8.92394 2.84056,-12.97843 7.17741,-13.30514 2.40528,-0.0141 4.91434,0.76284 6.38268,4.21969 0.73367,1.72719 2.20265,9.86822 3.06067,10.73489 -8.90993,0.11164 -2.70697,0.32518 -18.44054,0.24656 z"
+         id="path3028-8-0-3-9-8-5-7-3-2-4-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscscc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 110.84544,399.95608 c 0.31399,-0.60809 1.48975,-1.15705 1.64422,-1.76754 2.105,-8.3193 2.56652,-12.09909 6.48499,-12.40366 2.17324,-0.0131 4.44024,0.71115 5.76693,3.9338 0.66289,1.61016 1.99015,9.1996 2.76539,10.00755 -8.05036,0.10407 -2.44581,0.30314 -16.66153,0.22985 z"
+         id="path3028-8-0-3-9-8-5-7-3-2-4-0-2"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscscc" />
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 89.680431,399.86733 c 0.893001,-0.68661 2.981907,-0.82914 3.810073,-1.28829 0.661898,-0.36698 3.193256,-1.43458 3.628425,-1.71927 1.056479,-0.69115 2.637531,-0.30127 3.648951,-0.18599 6.0147,1.38107 8.10327,1.02773 10.15188,0.13722 0.57125,-0.24831 2.23393,-0.11874 3.25017,-0.1037 6.26645,1.66386 3.81032,0.0251 10.47142,-0.0636 3.23542,0.19097 3.41048,0.66976 6.47784,0.75097 2.77807,-0.28468 0.60649,-0.82886 3.84381,-1.01743 1.45225,-0.13552 2.98822,1.17273 5.11775,2.05479 1.98196,0.82096 4.6214,1.20316 4.45938,1.51851 -11.29014,0.0549 -30.388,0.0493 -30.388,0.0493 l -24.471699,0 0,-0.13246 z"
+         id="path4116-2-3-8-8-9-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccsccccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 91.040566,399.90833 c 0.84576,-0.47422 2.824157,-0.57266 3.608511,-0.88979 0.626882,-0.25346 3.024321,-0.99082 3.436467,-1.18745 1.000587,-0.47736 2.497996,-0.20808 3.455916,-0.12845 5.6965,0.95386 7.67459,0.70982 9.61482,0.0948 0.54103,-0.17151 2.11575,-0.082 3.07823,-0.0716 5.93494,1.14918 3.60875,0.0174 9.91745,-0.0439 3.06427,0.13191 3.23006,0.46259 6.13515,0.51868 2.6311,-0.19662 0.57441,-0.57247 3.64047,-0.70272 1.37542,-0.0936 2.83013,0.80998 4.84701,1.4192 1.8771,0.56701 4.37692,0.83099 4.22347,1.04879 -10.69287,0.0379 -28.78041,0.034 -28.78041,0.034 l -23.177084,0 0,-0.0915 z"
+         id="path4116-2-3-8-8-9-3-4"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccsccccc" />
+    </g>
+    <g
+       transform="translate(-0.513536,-0.99999974)"
+       id="g3725">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 109.34037,447.7481 c 4.28287,-3.42936 4.17177,-11.49506 9.70786,-11.76394 2.59527,-0.0109 4.77284,1.33256 6.35717,4.00776 0.79162,1.33665 2.9063,6.89466 3.83209,7.56537 -9.6137,0.0864 -2.9208,0.25165 -19.89712,0.19081 z"
+         id="path3028-8-0-3-9-8-5-7-3-2"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccscc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 110.01491,448.43374 c 3.98056,-3.07453 3.8773,-10.30568 9.02261,-10.54673 2.41208,-0.01 4.43594,1.19468 5.90844,3.59308 0.73574,1.19834 2.70115,6.18127 3.56159,6.78258 -8.93509,0.0775 -2.71463,0.22561 -18.49264,0.17107 z"
+         id="path3028-8-0-3-9-8-5-7-3-2-2"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccscc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 110.91578,449.41479 c 3.63853,-2.80432 3.54414,-9.39996 8.24734,-9.61983 2.20482,-0.009 4.05478,1.08969 5.40076,3.2773 0.67252,1.09303 2.46905,5.63803 3.25556,6.18649 -8.16734,0.0707 -2.48138,0.20579 -16.90366,0.15604 z"
+         id="path3028-8-0-3-9-8-5-7-3-2-2-6"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccscc" />
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 89.680431,449.87217 c 0.88438,-0.66158 2.953121,-0.79891 3.773292,-1.24133 0.655508,-0.3536 3.16243,-1.38228 3.593398,-1.65659 1.04628,-0.66595 2.612069,-0.29029 3.613719,-0.17921 5.95665,1.33073 8.02505,0.99026 10.05389,0.13222 0.56572,-0.23926 2.21236,-0.11437 3.21879,-0.0999 6.20596,1.6032 3.77353,0.0242 10.37033,-0.0613 3.20419,0.184 3.37756,0.64534 6.4153,0.72359 2.75126,-0.2743 0.60064,-0.79864 3.80671,-0.98034 1.43823,-0.13058 2.95937,1.12997 5.06835,1.97989 1.96282,0.79103 4.57678,1.15929 4.41632,1.46314 -11.18115,0.0529 -30.09464,0.0475 -30.09464,0.0475 l -24.235459,0 0,-0.12764 z"
+         id="path4116-2-3-8-8-9-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccsccccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 91.679927,449.90643 c 0.827994,-0.48459 2.764839,-0.58518 3.532718,-0.90924 0.613715,-0.259 2.960799,-1.01248 3.364294,-1.21341 0.979571,-0.48779 2.445531,-0.21263 3.383321,-0.13126 5.57687,0.97472 7.5134,0.72534 9.41289,0.0968 0.52964,-0.17525 2.0713,-0.0838 3.01357,-0.0732 5.81028,1.1743 3.53293,0.0177 9.70914,-0.0449 2.99991,0.13477 3.16222,0.47269 6.00628,0.53001 2.57586,-0.20092 0.56235,-0.58498 3.56401,-0.71807 1.34653,-0.0957 2.77069,0.82767 4.74521,1.45021 1.83767,0.57941 4.28498,0.84916 4.13475,1.07172 -10.46828,0.0387 -28.1759,0.0348 -28.1759,0.0348 l -22.690283,0 0,-0.0935 z"
+         id="path4116-2-3-8-8-9-1-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccsccccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 94.314693,449.93374 c 0.730462,-0.343 2.439162,-0.4142 3.116591,-0.64357 0.541427,-0.18333 2.612036,-0.71665 2.967996,-0.85887 0.8642,-0.34527 2.15748,-0.1505 2.9848,-0.0929 4.91996,0.68992 6.62838,0.51341 8.30412,0.0685 0.46725,-0.12405 1.82732,-0.0593 2.6586,-0.0518 5.12588,0.83119 3.11678,0.0125 8.56547,-0.0318 2.64655,0.0954 2.78974,0.33458 5.29879,0.37515 2.27244,-0.14221 0.49611,-0.41405 3.1442,-0.50826 1.18792,-0.0677 2.44432,0.58584 4.18625,1.02648 1.62121,0.41011 3.78025,0.60105 3.64771,0.75858 -9.23519,0.0274 -24.85699,0.0246 -24.85699,0.0246 l -20.017537,0 0,-0.0662 z"
+         id="path4116-2-3-8-8-9-1-5-4"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccsccccc" />
+    </g>
+    <g
+       transform="translate(-0.513536,-1.0475145)"
+       id="g3717">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 110.50335,498.21417 c 3.9836,-2.04891 3.88025,-6.86787 9.02949,-7.02852 2.41393,-0.007 4.43933,0.79616 5.91295,2.39449 0.73631,0.7986 2.70322,4.11931 3.56431,4.52003 -8.94191,0.0516 -2.71669,0.15036 -18.50675,0.114 z"
+         id="path3028-8-0-3-9-8-5-7-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccscc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 110.71871,499.22991 c 3.82237,-2.04891 3.7232,-6.86787 8.66402,-7.02852 2.31623,-0.007 4.25965,0.79616 5.67363,2.39449 0.70651,0.7986 2.59381,4.11931 3.42005,4.52003 -8.57999,0.0516 -2.60674,0.15036 -17.7577,0.114 z"
+         id="path3028-8-0-3-9-8-5-7-3-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccscc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 111.65502,499.5108 c 3.39913,-1.74867 3.31094,-5.86147 7.70467,-5.99858 2.05976,-0.006 3.78799,0.67949 5.04541,2.04361 0.62828,0.68157 2.3066,3.51568 3.04135,3.85768 -7.62995,0.044 -2.3181,0.12832 -15.79143,0.0973 z"
+         id="path3028-8-0-3-9-8-5-7-3-0-4"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccscc" />
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 89.267296,499.88186 c 0.88438,-0.61152 2.953121,-0.73846 3.773292,-1.1474 0.655508,-0.32684 3.16243,-1.27769 3.593398,-1.53124 1.04628,-0.61556 2.612069,-0.26833 3.613714,-0.16565 5.95665,1.23004 8.02505,0.91533 10.05389,0.12221 0.56572,-0.22115 2.21236,-0.10571 3.21879,-0.0923 6.20596,1.48189 3.77353,0.0224 10.37033,-0.0567 3.20419,0.17008 3.37756,0.59651 6.4153,0.66884 2.75126,-0.25354 0.60064,-0.73821 3.80671,-0.90616 1.43823,-0.1207 2.95937,1.04447 5.06835,1.83008 1.96282,0.73117 4.57678,1.07157 4.41632,1.35242 -11.18115,0.0489 -30.09464,0.0439 -30.09464,0.0439 l -24.235454,0 0,-0.11798 z"
+         id="path4116-2-3-8-8-9-1-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccsccccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 90.994666,499.91943 c 0.827995,-0.41683 2.764839,-0.50336 3.532718,-0.78211 0.613715,-0.22278 2.960803,-0.87091 3.364294,-1.04374 0.979572,-0.41958 2.445532,-0.1829 3.383312,-0.11291 5.57687,0.83843 7.5134,0.62392 9.41289,0.0833 0.52965,-0.15074 2.0713,-0.072 3.01357,-0.0629 5.81028,1.0101 3.53294,0.0153 9.70914,-0.0386 2.9999,0.11593 3.16222,0.4066 6.00628,0.4559 2.57585,-0.17282 0.56235,-0.50318 3.56401,-0.61766 1.34653,-0.0823 2.77069,0.71194 4.74521,1.24744 1.83767,0.49838 4.28497,0.73041 4.13475,0.92185 -10.46828,0.0333 -28.1759,0.0299 -28.1759,0.0299 l -22.690274,0 0,-0.0804 z"
+         id="path4116-2-3-8-8-9-1-3-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccsccccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 93.20294,499.99604 c 0.765495,-0.26665 2.55614,-0.322 3.266057,-0.50032 0.567387,-0.14251 2.737312,-0.55713 3.110351,-0.66769 0.905622,-0.2684 2.260932,-0.117 3.127922,-0.0722 5.15591,0.53635 6.94627,0.39912 8.70237,0.0533 0.48967,-0.0964 1.91496,-0.046 2.7861,-0.0403 5.3717,0.64616 3.26626,0.01 8.97626,-0.0247 2.77346,0.0741 2.92352,0.2601 5.5529,0.29164 2.38142,-0.11056 0.51991,-0.32189 3.295,-0.39512 1.24488,-0.0527 2.56154,0.45543 4.38702,0.79799 1.69896,0.31881 3.96153,0.46724 3.82264,0.58971 -9.67809,0.0213 -26.04909,0.0191 -26.04909,0.0191 l -20.97753,0 0,-0.0514 z"
+         id="path4116-2-3-8-8-9-1-3-0-9"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccsccccc" />
+    </g>
+    <g
+       transform="translate(-0.513536,-1.0768751)"
+       id="g3794">
+      <g
+         id="g4139">
+        <g
+           transform="matrix(1.0077978,0,0,1,60.411961,0)"
+           id="g3323">
+          <path
+             style="opacity:0.98279993;fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+             d="m 43.794451,249.04844 0.56511,0 0,0.0467 c 0.978381,-0.93199 5.815211,0.105 6.03104,-0.44855 0,-0.30697 0.0443,-0.31469 1.80839,-0.31469 1.75495,0 1.80839,0.009 1.80839,0.30908 0,0.27746 0.12727,-1.68179 1.24328,-1.60185 1.12299,0.0805 1.67634,0.59562 1.24326,0.40376 l -2.41423,0.93046 6.59615,-1.38424 -8.09067,-0.12211 c 0.0859,-1.05287 0.90989,-8.09103 1.07407,-11.55503 0.10044,-2.11916 0.0606,-5.2399 0.99865,-7.16757 0.93064,-1.91251 2.83517,-2.64028 3.92645,-2.65734 2.32059,-0.0183 4.40299,2.25765 5.81963,6.94523 0.70783,2.34212 1.00751,10.60394 1.83531,11.77917 2.81793,6.6447 -0.23968,5.58377 -9.80436,5.61466 -7.093411,0.80644 -12.791782,-4.17269 -12.64047,-0.77768 z"
+             id="path3028-8-0-3"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccsssscccsscsccc" />
+          <path
+             style="opacity:0.98279993;fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+             d="m 45.412718,249.94481 c 0,0.31201 0.38439,0.0234 0.47835,-0.3695 l 0.47835,0 0,0.0444 c -0.07984,-2.02135 0.57401,-1.72322 3.0002,-1.56476 0,-0.26366 0.10772,-0.30238 1.05235,-0.37836 0.95054,-0.0764 1.05235,-0.11356 1.05235,-0.38368 0,-0.29169 0.0375,1.70096 1.53071,1.70096 1.48547,0 1.53071,-1.992 1.53071,-1.70629 0,0.26366 0.10771,0.30238 1.05235,0.37836 0.95055,0.0764 1.41351,0.5633 1.05236,0.38368 l -2.04351,0.98364 5.58326,-1.31541 -6.61663,-0.24633 c 0.0895,-1.23218 1.27013,-16.77906 2.26171,-17.95147 0.81958,-0.96905 0.96667,-2.45292 2.47769,-2.47942 1.65911,-0.0147 2.46703,0.97621 3.49366,2.08418 0.7961,0.85918 2.17415,14.39003 3.0927,15.85405 1.34949,6.08387 1.80975,3.35774 -8.29882,3.33509 l -11.17779,0 0,1.63051 z"
+             id="path3028-4-0-8-0"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sscccsssssscccscsccccs" />
+          <path
+             style="opacity:0.98279993;fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+             d="m 47.900687,247.96857 c 0,-0.3038 0.70264,-0.35975 0.38095,-0.35975 l 0.38094,0 0,0.0432 0.42134,0.57153 0.33414,0 c 1.40524,-1.75629 2.813527,-1.46483 3.31,-0.83704 0,-0.28401 0.03,-0.29116 1.21904,-0.29116 1.18301,0 1.21903,0.008 1.21903,0.28598 0,0.2567 0.0858,0.29442 0.83808,0.36838 1.126931,0.51193 0.407251,-0.20691 -0.78934,-0.61601 4.443693,0.45499 3.234114,0.717 -0.82295,0.47941 0.0713,-1.19972 2.25273,-16.21225 3.04241,-17.35378 0.78958,-1.07139 1.65913,-0.53764 2.44984,0.38018 0.63401,0.83654 2.79591,13.06845 3.52742,14.49392 l 0.177725,1.31184 c -1.09012,4.53098 6.317515,1.85518 -6.786795,1.88274 l -8.90183,0 0,-0.35976 z"
+             id="path3028-4-7-4-1-7"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sscccccssccccccccccs" />
+        </g>
+        <path
+           sodipodi:nodetypes="csscsccccsccccc"
+           inkscape:connector-curvature="0"
+           id="path4116-2-3-8-8"
+           d="m 90.210092,249.85095 c 0.886166,-0.77207 2.959083,-0.93233 3.78091,-1.44865 0.656831,-0.41264 3.168814,-1.61312 3.600652,-1.93324 1.048392,-0.77717 2.617346,-0.33877 3.621026,-0.20914 5.96867,1.55297 8.04124,1.15563 10.07417,0.15429 0.56688,-0.27921 2.21683,-0.13347 3.22529,-0.1166 6.2185,1.87095 3.78116,0.0282 10.39128,-0.0716 3.21065,0.21472 3.38436,0.75312 6.42824,0.84443 2.75682,-0.3201 0.60185,-0.93202 3.8144,-1.14406 1.44113,-0.15239 2.96534,1.31868 5.07858,2.31054 1.96677,0.92314 4.58601,1.3529 4.42524,1.7075 -11.20373,0.0617 -30.15539,0.0554 -30.15539,0.0554 l -24.284398,0 0,-0.14896 z"
+           style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="csscsccccsccccc"
+           inkscape:connector-curvature="0"
+           id="path4116-2-3-8-8-5"
+           d="m 91.625075,249.88853 c 0.85264,-0.57738 2.847132,-0.69723 3.637866,-1.08335 0.631981,-0.30858 3.048924,-1.20634 3.464427,-1.44574 1.008728,-0.58119 2.518332,-0.25334 3.484042,-0.1564 5.74285,1.16136 7.73701,0.86422 9.69303,0.11538 0.54544,-0.2088 2.13296,-0.0998 3.10327,-0.0872 5.98323,1.39916 3.63811,0.0211 9.99814,-0.0535 3.08918,0.16057 3.25632,0.56321 6.18504,0.63149 2.65252,-0.23938 0.57908,-0.69699 3.67009,-0.85556 1.3866,-0.11397 2.85315,0.98615 4.88644,1.72789 1.89236,0.69036 4.41251,1.01175 4.25782,1.27693 -10.77986,0.0461 -29.01452,0.0414 -29.01452,0.0414 l -23.365645,0 0,-0.1114 z"
+           style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        <path
+           sodipodi:nodetypes="csscsccccsccccc"
+           inkscape:connector-curvature="0"
+           id="path4116-2-3-8-8-5-2"
+           d="m 93.310443,249.92954 c 0.799303,-0.36498 2.669028,-0.44075 3.410296,-0.68483 0.592447,-0.19507 2.858188,-0.76258 3.247715,-0.91392 0.945626,-0.3674 2.360786,-0.16015 3.266086,-0.0989 5.3836,0.73414 7.25301,0.5463 9.08668,0.0729 0.51132,-0.13198 1.99953,-0.0631 2.90914,-0.0551 5.60895,0.88448 3.41052,0.0134 9.37269,-0.0338 2.89594,0.10151 3.05262,0.35603 5.79813,0.3992 2.48659,-0.15133 0.54286,-0.4406 3.44052,-0.54085 1.29985,-0.072 2.67466,0.62339 4.58075,1.09228 1.77398,0.43641 4.13649,0.63958 3.99147,0.8072 -10.10551,0.0291 -27.19948,0.0262 -27.19948,0.0262 l -21.903997,0 0,-0.0704 z"
+           style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      </g>
+    </g>
+    <g
+       transform="matrix(1.011322,0,0,0.98755459,-1.152843,-0.427648)"
+       id="g3256">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 24.309493,40.570783 c -2.498687,-2.496849 0.629161,-3.659397 2.827572,-3.423365 2.690526,0.288873 1.378375,0.633113 5.172116,0.19094 3.686856,-1.799953 3.038119,-1.920903 7.948799,-0.667468 3.505872,0.894858 4.233221,-1.981112 7.542169,-1.638641 1.183807,0.122521 3.958707,0.834825 3.970806,1.618118 2.345006,1.230956 2.03859,-1.575218 3.723508,-0.687526 1.968089,1.02333 2.608466,1.648715 0.971287,4.536374 -2.687676,5.333265 -2.838275,6.17824 -2.856401,9.450237 -4.347409,0.05751 -24.753951,0.101096 -26.909151,0.101096 -0.419234,-6.302446 -0.872445,-6.437845 -2.390705,-9.479765 z"
+         id="path3834-5-6-3-7-4-5-8"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsscccccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 25.912889,41.679787 c -2.218982,-2.191438 0.558733,-3.211784 2.511051,-3.004624 2.389348,0.253539 1.224079,0.555672 4.593146,0.167585 3.274148,-1.579785 2.69803,-1.68594 7.059006,-0.585824 3.113422,0.7854 3.75935,-1.738784 6.697893,-1.438205 1.05129,0.107535 3.515565,0.732711 3.52631,1.420192 2.082505,1.080387 1.810389,-1.382539 3.306695,-0.603428 1.74778,0.898157 2.316473,1.447046 0.862561,3.98149 -2.386816,4.680907 -2.520557,5.422526 -2.536654,8.294296 C 48.07214,49.961744 29.949922,50 28.035976,50 27.663673,44.46846 27.261195,44.349622 25.912889,41.679787 z"
+         id="path3834-5-6-3-7-4-5-8-4"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsscccccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 27.992848,43.097995 c -1.904633,-1.8179 0.47958,-2.664324 2.155326,-2.492475 2.050864,0.210322 1.050671,0.460955 3.942464,0.139019 2.810319,-1.310505 2.315817,-1.398565 6.059001,-0.485968 2.672362,0.651526 3.226786,-1.442402 5.749044,-1.193057 0.90236,0.0892 3.017537,0.607817 3.026759,1.178115 1.78749,0.896231 1.553924,-1.146881 2.838258,-0.500572 1.500182,0.745063 1.988311,1.200392 0.740366,3.302831 -2.048691,3.883029 -2.163486,4.498236 -2.177302,6.880502 C 47.012936,49.96826 31.457979,50 29.81517,50 29.49561,45.411331 29.150148,45.31275 27.992848,43.097998 z"
+         id="path3834-5-6-3-7-4-5-8-4-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsscccccc" />
+    </g>
+    <g
+       transform="matrix(1,0,0,0.98191228,-0.513536,0.80877237)"
+       id="g3261">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 24.27716,90.464712 c -1.139418,-2.182153 -1.543144,-3.075305 -2.959905,-4.907838 -2.665636,-3.447914 1.178763,-4.4068 3.524061,-4.080862 2.870291,0.398906 1.47047,0.227786 6.735846,1.03945 6.775557,-1.451193 4.865319,-2.393995 10.104104,-0.663119 3.740116,1.235715 2.891852,-2.994322 6.421887,-2.521402 3.780898,0.544505 3.944194,3.18875 7.186335,3.939763 1.379338,0.347721 0.613071,-0.883893 2.849306,-1.749626 1.693533,-0.655624 5.016038,2.147425 3.066445,4.066265 -4.847303,4.770841 -3.949778,3.39993 -5.910569,8.393615 -1.006211,3.794125 -0.99418,5.879438 -0.99418,5.879438 C 49.662612,99.939816 27.892616,100 25.593417,100 25.474391,94.544006 25.825727,92.808834 24.27716,90.464712 z"
+         id="path3834-5-6-3-7-4-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccsscccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 25.533114,90.750488 c -1.03664,-1.945332 -1.029423,-3.209711 -2.318389,-4.843366 -2.425191,-3.073724 0.323382,-2.711334 2.45713,-2.420769 2.611386,0.355614 1.337831,0.203065 6.12826,0.926642 6.164389,-1.2937 4.426458,-2.134183 9.192695,-0.591153 3.402751,1.101607 3.754583,-2.388465 6.966202,-1.966868 3.439854,0.485411 2.371207,2.000001 5.320902,2.669509 1.254918,0.309985 2.055878,0.14835 4.090401,-0.623428 1.540773,-0.584472 2.035525,1.539846 0.261788,3.250441 -4.410066,4.253079 -2.469919,3.030948 -4.253843,7.482687 -0.915449,3.382362 -0.904503,5.241364 -0.904503,5.241364 C 48.254224,99.946347 28.447922,100 26.356115,100 c -0.10829,-4.863875 0.585882,-7.159789 -0.823001,-9.249512 z"
+         id="path3834-5-6-3-7-4-5-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccsscccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 27.189003,91.033099 c -0.936234,-1.704467 -1.730966,-2.108073 -2.281101,-3.869148 -0.799936,-2.560731 -0.105186,-1.736269 1.821895,-1.481681 2.358457,0.311584 1.6055,1.965529 5.931946,2.599515 5.567328,-1.133518 4.19635,-1.737519 8.500947,-0.385543 3.073173,0.96521 3.390928,-1.496865 6.291481,-1.127468 3.106683,0.425309 1.413257,0.229592 4.077255,0.816204 1.133371,0.271603 2.187791,-1.127964 3.628012,-0.347615 -1.634114,1.953559 -2.158363,4.081879 -3.009531,7.550373 -0.826781,2.963569 -0.816895,4.989642 -0.816895,4.989642 -3.810845,0.06204 -21.698781,0.109043 -23.587984,0.109043 -0.0978,-4.261646 0.716399,-7.022341 -0.556025,-8.853322 z"
+         id="path3834-5-6-3-7-4-5-1-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccccccc" />
+    </g>
+    <g
+       transform="matrix(1,0,0,0.98007354,-0.513536,1.988969)"
+       id="g3266">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 22.736302,135.0422 c -1.204006,-2.95831 -1.468482,-2.77513 -3.528651,-4.49558 -4.092595,-3.41769 0.243174,-6.48197 2.721415,-6.0401 3.032995,0.54079 1.553824,0.68961 7.11767,1.78997 7.159632,-1.96736 5.842797,-2.73776 11.378544,-0.39124 3.952126,1.67524 5.762279,-4.69403 9.492415,-4.0529 3.956539,1.23961 3.400826,4.40069 6.99225,5.46801 1.457526,0.4714 3.655048,-0.94441 6.018044,-2.11807 1.789531,-0.88882 3.796762,3.1651 2.939545,4.24322 -5.132245,6.45481 -8.584268,5.11697 -8.952113,12.39457 -0.662284,1.97026 -1.050534,7.97066 -1.050534,7.97066 C 50.96411,149.91841 27.960073,150 25.530543,150 25.204289,141.71485 25.67578,139.74331 22.736302,135.0422 z"
+         id="path3834-5-6-3-7-4"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccsscccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 25.064022,136.13507 c -1.050052,-2.74216 -0.906183,-3.50869 -2.702922,-5.10343 -3.569282,-3.16799 -0.630607,-4.41664 1.530747,-4.00705 2.645171,0.50128 1.823298,-0.0162 6.675704,1.00376 6.244143,-1.82361 5.09569,-2.53772 9.92359,-0.36265 3.446775,1.55284 5.77452,-3.69565 9.027691,-3.10136 3.450623,1.14904 2.216915,3.42374 5.349109,4.41308 1.271155,0.43696 4.311265,-0.12636 6.372108,-1.21427 1.560707,-0.82388 1.064116,2.37206 0.316509,3.37141 -4.475994,5.98319 -6.363032,4.55584 -6.683841,11.30171 -0.577599,1.82631 -0.916204,7.3883 -0.916204,7.3883 C 49.68239,149.92437 29.619838,150 27.500968,150 c -0.284536,-7.67981 0.126666,-9.5073 -2.436946,-13.86493 z"
+         id="path3834-5-6-3-7-4-59"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccsscccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 25.118008,132.26433 c -3.251031,-2.99338 -2.030946,-2.98538 -0.06231,-2.59836 2.409317,0.47365 3.305638,5.24358 6.838129,3.78011 4.581544,-1.89807 5.995672,-1.73578 10.393098,0.31942 3.139447,1.46725 3.948797,-4.05376 6.911903,-3.49222 3.142952,1.08571 0.521138,2.39235 3.374054,3.32716 1.157814,0.41288 2.803275,-2.92834 4.493102,-2.36455 1.537439,0.51295 -1.133259,2.58655 -1.771609,3.56012 -2.399462,4.49452 -2.380138,6.21592 -2.053547,15.03823 C 49.347805,149.92854 31.635897,150 29.705954,150 c -0.280175,-7.89869 -0.61624,-13.99718 -4.587946,-17.73567 z"
+         id="path3834-5-6-3-7-4-59-2"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csssccscccc" />
+    </g>
+    <g
+       transform="matrix(1,0,0,0.97812443,-0.3187027,3.3178323)"
+       id="g3271">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 21.64439,180.55753 c -2.849057,-4.60893 -3.81898,-3.25148 -5.991183,-5.33761 -4.315154,-4.14416 0.05895,-7.97331 2.671961,-7.43751 3.197932,0.65574 3.217899,1.74446 9.084313,3.0787 7.54898,-2.38553 8.628622,-2.63847 14.465409,0.20682 4.167047,2.03133 5.384573,-6.0324 9.317559,-5.25499 5.696083,0.21635 2.99157,4.97936 7.273771,6.63029 1.536788,0.5716 5.137219,-1.25869 7.628717,-2.68182 1.886848,-1.07775 3.684308,1.04263 4.086637,2.64741 2.930009,11.68698 -9.779402,-1.12565 -11.709581,17.64041 l -2.094898,9.94927 c -5.167286,0.13056 -28.435072,0.003 -30.996722,0.003 -0.582394,-9.05309 -1.339154,-15.51914 -3.735983,-19.44388 z"
+         id="path3834-5-6-3-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccssccccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 23.760317,181.63128 c -2.516108,-4.34158 -2.048532,-3.85736 -3.966886,-5.82248 -3.810874,-3.90377 -2.861075,-5.92183 -0.553426,-5.41711 2.824214,0.61771 3.239093,1.37844 8.419945,2.63529 6.666788,-2.24716 8.811997,-3.01508 13.966683,-0.33484 3.680076,1.9135 6.741549,-4.75557 10.214916,-4.02326 5.030425,0.2038 0.655739,3.76362 4.437511,5.31879 1.357196,0.53844 5.728609,0.13847 7.928944,-1.20211 1.666347,-1.01524 3.142442,1.35055 2.946987,2.89109 -0.590365,4.65313 -9.166218,-2.78175 -10.870832,14.89576 l -1.850084,9.37214 c -4.563424,0.12299 -25.11208,0.003 -27.37437,0.003 -0.514334,-8.52795 -1.182657,-14.61893 -3.299388,-18.31601 z"
+         id="path3834-5-6-3-7-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscsccssccccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 25.154482,179.5718 c -3.003337,-3.1029 -3.049296,-4.3097 -1.230645,-3.90852 2.225753,0.49098 2.420303,1.89014 6.503315,2.88914 5.254074,-1.78615 6.944705,-2.39653 11.007097,-0.26615 2.900256,1.52095 5.312993,-3.77996 8.050342,-3.19788 3.964462,0.16199 0.516786,2.99151 3.497188,4.22763 1.069602,0.42798 3.295379,-2.52783 5.189452,-3.27276 1.737078,-0.68318 1.734758,0.25348 1.594227,1.5035 -0.416454,3.70435 -5.43626,0.90068 -6.779661,14.95163 l -1.458045,7.44943 c -3.596419,0.0977 -19.790747,0.003 -21.57365,0.003 -0.679605,-4.87003 -1.91053,-17.23417 -4.79962,-20.37902 z"
+         id="path3834-5-6-3-7-0-8"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscsccsscccc" />
+    </g>
+    <g
+       transform="matrix(1,0,0,0.96925179,0.24308763,6.6437531)"
+       id="g3276">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 23.743124,249.99998 c -0.0021,-8.38473 -0.674478,-13.21106 -1.947372,-19.40235 -2.872411,-4.60893 -8.660165,-7.98126 -9.00852,-9.36377 -1.45177,-5.76161 3.219163,-6.38157 5.853588,-5.84577 3.224147,0.65574 3.00822,4.48264 8.858827,2.89143 7.800011,-2.12139 7.371568,-2.4512 13.2562,0.39409 4.201205,2.03133 7.439447,-5.93877 11.404672,-5.16136 5.88637,1.47719 3.32255,5.27447 8.482387,7.09844 1.549385,0.5716 3.83884,-1.44595 6.350762,-2.86908 1.902314,-1.07775 5.150747,0.29358 5.556374,1.89836 2.954028,11.68698 -11.678801,1.6833 -13.624802,20.44936 l -2.112071,9.89196 c -5.209643,0.13056 -30.487397,0.019 -33.070045,0.0187 z"
+         id="path3834-5-6-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccssssccsscccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 25.496074,249.95921 c -0.0019,-7.80617 -0.613588,-12.29948 -1.771569,-18.06356 -2.348268,-6.14472 -7.854441,-9.22953 -8.592502,-10.70389 -2.475121,-4.94432 1.736809,-3.55775 4.133405,-3.05892 2.93308,0.61049 4.32563,3.77608 9.64806,2.29467 7.095848,-1.97502 6.706084,-2.28207 12.059468,0.36689 3.821932,1.89117 6.767834,-5.52898 10.37509,-4.80522 5.354965,1.37527 3.022599,4.91053 7.716621,6.60864 1.409511,0.53216 4.816432,-0.81652 7.101585,-2.14145 1.730578,-1.00338 3.411783,-0.26785 3.730608,1.23771 1.098363,5.1867 -10.624472,1.56715 -12.394793,19.03833 l -1.921399,9.2094 c -4.739331,0.12155 -27.735081,0.0176 -30.084574,0.0174 z"
+         id="path3834-5-6-3-9"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccssssccssccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 27.065792,249.95841 c -0.0017,-6.40851 -0.539507,-10.09732 -1.55768,-14.82937 -1.005428,-5.70662 -4.018476,-8.65907 -4.667428,-9.86945 -2.176288,-4.05906 0.367507,-2.79775 2.474751,-1.45191 2.214151,1.41411 2.168956,4.05903 6.848785,2.84286 6.239133,-1.62141 5.802795,-2.06075 10.509841,0.11393 3.360492,1.55256 6.887038,-4.44541 10.058774,-3.85123 4.708435,1.12903 1.721349,3.18863 5.84864,4.5827 1.239334,0.43688 3.433776,-1.43268 5.443032,-2.52039 1.521637,-0.82373 2.466305,-2.06039 2.746635,-0.8244 0.479655,2.11481 -1.679538,1.87114 -3.976849,4.07261 -2.328176,2.23105 -4.803273,6.94048 -5.586757,14.15986 l -1.68942,7.56051 c -4.16713,0.0998 -24.386496,0.0144 -26.452324,0.0143 z"
+         id="path3834-5-6-3-9-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccssssccssscccc" />
+    </g>
+    <g
+       transform="matrix(0.96289698,0,0,0.98960187,1.0985144,2.0458593)"
+       id="g3281">
+      <path
+         style="fill:#bb4b00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 22.29079,299.99998 c -0.0021,-8.38473 0.408741,-12.55759 -0.863963,-18.74888 -2.871983,-4.60893 -8.382106,-8.51092 -8.465619,-9.09894 -0.835479,-5.88265 3.218684,-7.04365 5.852716,-6.50785 3.223667,0.65574 4.943793,4.84775 10.79351,3.25655 7.799166,-2.12148 7.329923,-2.28666 13.213678,0.55863 4.200579,2.03133 5.94905,-6.2036 9.913685,-5.42619 1.418383,0.27813 4.642426,2.30102 4.656922,4.0791 0.02181,2.6756 1.324158,2.46404 2.470304,2.88693 1.549154,0.5716 4.785995,-0.38663 7.297542,-1.80976 1.902031,-1.07775 5.55615,-0.23608 5.961716,1.3687 2.953588,11.68698 -11.135502,0.35914 -13.081213,19.1252 l -1.840976,10.15679 c 11.579461,0.39539 -33.326038,0.16006 -35.908302,0.15976 z"
+         id="path3834-5-6"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccssssssssscccc" />
+      <path
+         style="fill:#a23c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 23.511372,299.99999 c -0.002,-7.82741 0.779178,-12.68366 -0.41005,-18.46342 -2.683611,-4.30259 -7.170252,-8.60729 -7.248287,-9.15622 -0.78068,-5.49165 1.418589,-4.85408 3.879856,-4.35389 3.012229,0.61215 3.514653,3.06065 9.040402,4.30621 6.126595,-4.41217 8.423986,-3.53321 13.921828,-0.87704 3.925065,1.89631 5.558855,-5.79126 9.263452,-5.06552 1.325352,0.25964 4.337931,2.14808 4.351477,3.80797 0.02038,2.49776 1.237307,2.30026 2.308278,2.69504 1.447545,0.53361 4.472084,-0.36093 6.8189,-1.68947 1.777277,-1.00611 5.852269,-0.2417 5.57069,1.27773 -1.404478,7.5787 -11.002374,-0.14252 -12.223223,17.85398 l -1.720228,9.48169 c 10.81997,0.36911 -31.1402,0.18326 -33.553095,0.18296 z"
+         id="path3834-5-6-36"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsscsssssscccc" />
+      <path
+         style="fill:#6d1300;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="m 25.193947,299.95293 c -0.0018,-6.39776 0.689282,-10.36704 -0.362741,-15.09115 -0.126835,-7.63655 -4.283101,-8.34605 -4.726661,-10.4801 -0.924185,-4.4464 -1.773422,0.7313 -0.125778,-2.43508 1.251523,-2.40513 4.045474,5.49784 8.933702,6.51591 5.419753,-3.60631 9.137458,-2.51336 14.000999,-0.34233 3.472219,1.54996 4.542987,-3.60992 7.820175,-3.01673 1.172441,0.21221 3.462924,1.00667 3.474907,2.36339 0.01802,2.04156 1.094556,2.06741 2.041966,2.39007 1.280537,0.43616 2.832546,-3.47848 4.908603,-4.56437 1.572227,-0.82235 2.876194,-1.77222 2.306295,-0.64101 -2.366019,4.69637 -5.987729,2.69246 -7.067726,17.40198 l -1.52176,7.7499 c 9.571639,0.30169 -27.547467,0.14979 -29.681981,0.14954 z"
+         id="path3834-5-6-36-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsscsssssscccc" />
+    </g>
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/SDWater.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/SDWater.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,595 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="128"
+   height="48"
+   sodipodi:docname="BlueWater.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/BlueWater.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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:license
+           rdf:resource="" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Carlos Vives B.</dc:title>
+          </cc:Agent>
+        </dc:creator>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6">
+    <linearGradient
+       id="linearGradient3617">
+      <stop
+         style="stop-color:#5c0500;stop-opacity:0.98823529"
+         offset="0"
+         id="stop3619" />
+      <stop
+         style="stop-color:#550502;stop-opacity:0.24705882;"
+         offset="0.52097768"
+         id="stop3621" />
+      <stop
+         style="stop-color:#4b0602;stop-opacity:0;"
+         offset="1"
+         id="stop3623" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605">
+      <stop
+         id="stop3607"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         id="stop3613"
+         offset="0.5907774"
+         style="stop-color:#545c9d;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3611"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3720" />
+      <stop
+         id="stop3603"
+         offset="0.5"
+         style="stop-color:#545c9d;stop-opacity:0.49803922;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3722" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3706">
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:1;"
+         offset="0"
+         id="stop3708" />
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:0;"
+         offset="1"
+         id="stop3710" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective10" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3605"
+       id="linearGradient3724"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718"
+       id="linearGradient3728"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718"
+       id="linearGradient3733"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718"
+       id="linearGradient3738"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718"
+       id="linearGradient3743"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <inkscape:perspective
+       id="perspective2837"
+       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="perspective2851"
+       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" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3617"
+       id="linearGradient3615"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48" />
+    <inkscape:perspective
+       id="perspective2848"
+       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="perspective2849"
+       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="perspective2850"
+       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="perspective3636"
+       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="perspective2852"
+       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="perspective2853"
+       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="perspective2854"
+       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" />
+    <linearGradient
+       id="linearGradient3617-3">
+      <stop
+         style="stop-color:#a70b0c;stop-opacity:1;"
+         offset="0"
+         id="stop3619-4" />
+      <stop
+         style="stop-color:#a70b0c;stop-opacity:0.24705882;"
+         offset="0.52097768"
+         id="stop3621-8" />
+      <stop
+         style="stop-color:#a70b0c;stop-opacity:0;"
+         offset="1"
+         id="stop3623-6" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605-3">
+      <stop
+         id="stop3607-4"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         id="stop3613-3"
+         offset="0.5907774"
+         style="stop-color:#545c9d;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3611-7"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718-3">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3720-8" />
+      <stop
+         id="stop3603-2"
+         offset="0.5"
+         style="stop-color:#545c9d;stop-opacity:0.49803922;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3722-0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3706-2">
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:1;"
+         offset="0"
+         id="stop3708-3" />
+      <stop
+         style="stop-color:#9aa3dc;stop-opacity:0;"
+         offset="1"
+         id="stop3710-8" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective10-2" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3605-3"
+       id="linearGradient3724-4"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-3"
+       id="linearGradient3728-8"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-3"
+       id="linearGradient3733-7"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-3"
+       id="linearGradient3738-0"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718-3"
+       id="linearGradient3743-9"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="39.058487"
+       x2="64"
+       y2="48" />
+    <inkscape:perspective
+       id="perspective2837-0"
+       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="perspective2851-4"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3617-3"
+       id="linearGradient3615-8"
+       gradientUnits="userSpaceOnUse"
+       x1="64"
+       y1="31.882462"
+       x2="64"
+       y2="48" />
+    <inkscape:perspective
+       id="perspective2848-0"
+       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="perspective2849-0"
+       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="perspective2850-4"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective3636-9"
+       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="perspective2852-4"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective2853-8"
+       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="perspective2854-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:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2848-4" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3615-3"
+       xlink:href="#linearGradient3617-36"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2851-2" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2837-7" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3743-98"
+       xlink:href="#linearGradient3718-6"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3738-4"
+       xlink:href="#linearGradient3718-6"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3733-1"
+       xlink:href="#linearGradient3718-6"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48"
+       x2="64"
+       y1="39.058487"
+       x1="64"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3728-9"
+       xlink:href="#linearGradient3718-6"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="48"
+       x2="64"
+       y1="31.882462"
+       x1="64"
+       id="linearGradient3724-6"
+       xlink:href="#linearGradient3605-4"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective10-1"
+       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" />
+    <linearGradient
+       id="linearGradient3706-0">
+      <stop
+         id="stop3708-2"
+         offset="0"
+         style="stop-color:#9aa3dc;stop-opacity:1;" />
+      <stop
+         id="stop3710-3"
+         offset="1"
+         style="stop-color:#9aa3dc;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3718-6">
+      <stop
+         id="stop3720-2"
+         offset="0"
+         style="stop-color:#545c9d;stop-opacity:1;" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.49803922;"
+         offset="0.5"
+         id="stop3603-1" />
+      <stop
+         id="stop3722-4"
+         offset="1"
+         style="stop-color:#545c9d;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3605-4">
+      <stop
+         style="stop-color:#545c9d;stop-opacity:1;"
+         offset="0"
+         id="stop3607-1" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0.24705882;"
+         offset="0.5907774"
+         id="stop3613-0" />
+      <stop
+         style="stop-color:#545c9d;stop-opacity:0;"
+         offset="1"
+         id="stop3611-4" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3617-36">
+      <stop
+         id="stop3619-43"
+         offset="0"
+         style="stop-color:#5c0500;stop-opacity:1;" />
+      <stop
+         id="stop3621-4"
+         offset="0.77644771"
+         style="stop-color:#550502;stop-opacity:0.24705882;" />
+      <stop
+         id="stop3623-4"
+         offset="1"
+         style="stop-color:#4b0602;stop-opacity:0;" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ff5932"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="2.8671876"
+     inkscape:cx="25.111015"
+     inkscape:cy="15.236671"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2"
+     inkscape:snap-grids="true"
+     inkscape:snap-to-guides="true"
+     inkscape:snap-nodes="false" />
+  <path
+     style="color:#000000;fill:#bb4b00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     d="M 64 2 C 38.959039 2 20.132303 14 0 14 L 0 32.5 C 20.035226 32.5 38.95904 20.5 64 20.5 C 89.040961 20.5 107.56704 32.5 128 32.5 L 128 14 C 107.61504 14 89.040961 2 64 2 z "
+     id="rect2818" />
+  <path
+     style="color:#000000;fill:#a23c00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     d="M 64 5 C 38.959039 5 19.996219 17 0 17 L 0 32.5 C 20.035226 32.5 38.95904 20.5 64 20.5 C 89.040961 20.5 107.56704 32.5 128 32.5 L 128 17 C 107.44342 17 89.040961 5 64 5 z "
+     id="path3595" />
+  <path
+     style="color:#000000;fill:#832300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     d="M 64 9.25 C 38.959039 9.25 19.95839 21.25 0 21.25 L 0 32.5 C 20.035226 32.5 38.95904 20.5 64 20.5 C 89.04096 20.5 107.56704 32.5 128 32.5 L 128 21.25 C 108.02065 21.25 89.040961 9.25 64 9.25 z "
+     id="path3597" />
+  <path
+     style="color:#000000;fill:#6d1300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     d="M 64 14.5 C 38.959039 14.5 19.95839 26.5 0 26.5 L 0 32.5 C 20.035226 32.5 38.95904 20.5 64 20.5 C 89.04096 20.5 107.56704 32.5 128 32.5 L 128 26.5 C 108.1723 26.5 89.040961 14.5 64 14.5 z "
+     id="path3599" />
+  <path
+     id="path3691"
+     d="m 64,20.146447 c -25.04096,0 -43.964774,12 -64,12 L 0,48 l 128,0 0,-15.853553 c -20.43296,0 -38.959039,-12 -64,-12 z"
+     style="color:#000000;fill:url(#linearGradient3615);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     sodipodi:nodetypes="cccccc" />
+  <rect
+     style="color:#000000;fill:#545c9d;fill-opacity:1;fill-rule:nonzero;stroke:#9aa3dc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     id="rect3603"
+     x="94.876152"
+     y="12.273567"
+     width="0"
+     height="0"
+     rx="128"
+     ry="128" />
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Sky.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Sky.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,888 @@
+<?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"
+   id="svg2985"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="512"
+   height="512"
+   sodipodi:docname="Sky.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/Sky.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata2991">
+    <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>
+  <defs
+     id="defs2989">
+    <linearGradient
+       id="linearGradient3866">
+      <stop
+         style="stop-color:#0e0524;stop-opacity:1;"
+         offset="0"
+         id="stop3868" />
+      <stop
+         style="stop-color:#002d60;stop-opacity:1;"
+         offset="1"
+         id="stop3870" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3866"
+       id="linearGradient3872"
+       x1="777.50739"
+       y1="-0.73396552"
+       x2="782.28876"
+       y2="506.48468"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-533.52881,2.0545731)" />
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview2987"
+     showgrid="false"
+     inkscape:zoom="0.33039856"
+     inkscape:cx="48.6522"
+     inkscape:cy="368.64927"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g3935" />
+  <rect
+     style="fill:url(#linearGradient3872);fill-opacity:1;stroke:none"
+     id="rect3096"
+     width="512"
+     height="512"
+     x="0"
+     y="0" />
+  <path
+     style="fill:#000033;fill-opacity:1;stroke:none"
+     d="M 0,477.67532 C 0.33174703,440.02757 0.38902514,439.7106 0,415 c 5.9125268,6.3e-4 6.1229292,0.23242 17.327431,0 0.59562,-0.37046 5.31165,-11.47279 10.47999,-19.3026 13.83769,-20.96354 19.33821,-27.89191 25.57018,-32.20753 l 5.59079,-3.87165 17.18358,0.006 c 14.08514,0.006 19.08094,0.43339 27.706289,2.37289 15.1415,3.40467 23.1661,6.24822 26.56082,9.41189 3.24135,3.02077 6.78809,9.86799 6.82414,13.17448 0.0282,2.58862 8.74969,17.64112 13.13025,22.66164 3.53189,4.04786 10.34761,8.02039 13.76071,8.02039 3.66819,0 11.79056,-4.8101 16.08951,-9.5283 4.95811,-5.44165 16.99431,-22.11192 16.99431,-23.53733 0,-0.5595 1.86192,-2.70997 4.13761,-4.77883 7.77284,-7.06642 15.40991,-4.57399 22.81074,7.44448 2.44623,3.97252 5.99815,8.29183 7.89317,9.59847 3.02363,2.08485 4.26479,2.29872 10.13767,1.74685 3.68072,-0.34587 7.74136,-1.17853 9.02364,-1.85034 2.51645,-1.3184 9.58274,-7.23668 17.83631,-14.93853 5.79259,-5.40538 14.19736,-9.87482 20.05679,-10.66567 7.55299,-1.01943 15.37934,5.86981 18.27804,16.08943 2.36029,8.32142 4.73142,10.65691 10.81952,10.65691 4.48054,0 5.15179,-0.35393 8.5231,-4.49401 4.56327,-5.60387 6.61725,-12.81652 7.45827,-26.19043 0.92187,-14.65876 2.8974,-22.21623 6.72955,-25.74373 3.70567,-3.41106 6.14348,-3.56528 11.91507,-0.75371 5.14464,2.5061 7.19133,1.9734 13.81555,-3.59574 5.96812,-5.01756 6.82399,-5.40767 13.70612,-6.24718 8.20827,-1.00129 10.81599,0.63815 17.25935,10.85072 2.91345,4.61781 5.29714,8.77519 5.29714,9.23861 0,2.17731 10.74725,15.93957 13.17204,16.86725 6.41738,2.45522 10.37423,-2.36485 16.27662,-19.82781 4.1456,-12.26511 10.90826,-19.77302 17.823,-19.7872 2.56528,-0.006 4.48578,1.09773 8.26925,4.74932 2.71044,2.61589 6.16038,5.00532 7.66656,5.30984 8.69678,1.75824 16.12603,14.37905 19.95098,33.8923 1.41164,7.20159 13.33164,36.36407 19.96106,45.22912 6.14432,0.26699 -3.74844,0.41613 5.96485,0 0.50629,38.39598 -0.005,56.92801 0,78.53684 l 0,18.46268 -255.72458,0 L 0,512 c 0.09945414,-16.36309 0.46346799,-16.23759 0,-34.32468 z"
+     id="path3876"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="cccssccsssssssssssssssssssssssssscsssccccccc" />
+  <g
+     inkscape:label="Layer 1"
+     id="layer1"
+     transform="translate(72.035971,103.88797)">
+    <g
+       id="g3813">
+      <g
+         transform="translate(-1325.3555,-575.88603)"
+         id="g3935">
+        <g
+           transform="matrix(0.66134093,0,0,0.68513753,1820.6436,702.98318)"
+           id="g3015"
+           style="fill:#000033;fill-opacity:1">
+          <path
+             d="m -758.21,124.15 c 0.0698,0.0349 -0.18502,-3.3321 2.0268,-9.0714 l 4.8214,-14.304 c 0.30887,-3.151 -0.77572,-6.2884 2.3393,-6.8304 26.887,-20.133 29.775,-27.289 38.1,-18.096 2.7493,3.0361 6.9269,7.7998 11.65,14.542 -1.8261,3.19 1.9896,7.4689 1.5357,10.518 -11.117,18.16 -39.672,15.045 -60.473,23.241 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccccsccc"
+             id="path3017" />
+          <g
+             transform="translate(9.2857,-1.4286)"
+             id="g3019"
+             style="fill:#000033;fill-opacity:1">
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1;fill-rule:evenodd"
+               sodipodi:nodetypes="ccccc"
+               d="m -753.73,156.17 39.311,-0.38661 -5.606,47.446 h -27.713 z"
+               id="path3021" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccccc"
+               d="m -765.09,126.5 c 16.503,2.4076 32.812,4.9346 61.246,0 v 30.02 l -12.86,3.1786 h -34.258 l -14.127,-3.1786 z"
+               id="path3023" />
+            <path
+               d="m -703.85,126.5 c -76.142,102.81 -38.071,51.403 0,0 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="cc"
+               id="path3025" />
+            <path
+               sodipodi:cx="320.71429"
+               sodipodi:cy="470.21933"
+               transform="matrix(0.27845,0,0,0.27063,-823.47,0.15753)"
+               d="m 444.28572,470.21933 c 0,8.28427 -55.32481,15 -123.57143,15 -68.24661,0 -123.57142,-6.71573 -123.57142,-15 0,-8.28427 55.32481,-15 123.57142,-15 68.24662,0 123.57143,6.71573 123.57143,15 z"
+               sodipodi:type="arc"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:ry="15"
+               sodipodi:rx="123.57143"
+               id="path3027" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -764,135.38 -4.4706,-7.6204 c 3.7439,0.85555 5.6037,2.3391 7.891,3.6802 l 0.60442,1.2412 z"
+               id="path3029" />
+            <path
+               d="m -704.13,135.38 4.4706,-7.6204 -8.0843,3.1003 -0.4111,1.8212 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               id="path3031" />
+            <rect
+               x="-747.31"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3033" />
+            <rect
+               x="-741.57001"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3035" />
+            <rect
+               x="-734.87"
+               y="157.57001"
+               width="1.5465"
+               height="39.002998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3037" />
+            <rect
+               x="-728.58002"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3039" />
+            <rect
+               x="-721.75"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3041" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -748.76,194.94 29.662,0.0683 -0.13669,2.0504 h -29.252 z"
+               id="path3043" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -749.71,188.37 h 31.439 l -0.13668,2.1187 h -30.96 z"
+               id="path3045" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -750.47,181.61 h 33.011 l -0.28844,2.187 h -32.449 z"
+               id="path3047" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -751.49,173.82 34.993,-0.13669 -0.34173,2.0504 h -34.309 z"
+               id="path3049" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -752.58,165.82 37.043,0.0683 -0.27338,2.187 h -36.496 z"
+               id="path3051" />
+          </g>
+          <path
+             d="m -757.31,118.43 c 10.635,-4.4232 20.831,-6.5463 25.367,-6.5231 30.825,0.15755 45.074,-20.47 21.065,-35.888 -4.6038,9.0862 -11.744,15.327 -21.33,17.449 -15.868,3.5129 -36.441,9.5153 -25.102,24.961 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cscsc"
+             id="path3053" />
+          <path
+             d="m -759.5,139.27 c -12.766,-32.092 45.188,-15.914 61.788,-38.389 22.229,15.443 15.045,35.917 -26.258,34.652 -14.836,-0.45438 -25.305,2.0649 -35.531,3.7376 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccsc"
+             id="path3055" />
+          <path
+             d="m -751.09,96.126 c -5.2804,-10.544 9.785,-16.567 21.205,-23.399 9.9712,-5.5463 5.387,-15.858 0,-8.0434 -4.2399,-3.6482 -0.8661,-8.71 3.6656,-9.4732 10.621,-0.16576 17.175,11.226 10.264,21.985 -9.3661,14.259 -23.326,13.016 -35.135,18.93 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccccc"
+             id="path3057" />
+          <path
+             d="m -749.22,91.356 c -0.59415,-2.6578 1.1304,-5.2916 3.2464,-6.7879 4.2364,-3.3384 7.8834,1.1787 3.2464,1.9183 -2.9341,0.77501 -4.1974,3.4953 -6.4928,4.8696 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3059" />
+          <path
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             d="m -756.46,111.56 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             id="path3061" />
+          <path
+             d="m -756.94,133.05 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3063" />
+        </g>
+        <g
+           transform="matrix(0.61033918,0.25467217,-0.26383587,0.63230062,1884.6751,939.67357)"
+           id="g3015-8"
+           style="fill:#000033;fill-opacity:1">
+          <path
+             d="m -758.21,124.15 c 0.0698,0.0349 -0.18502,-3.3321 2.0268,-9.0714 l 4.8214,-14.304 c 0.30887,-3.151 -0.77572,-6.2884 2.3393,-6.8304 26.887,-20.133 29.775,-27.289 38.1,-18.096 2.7493,3.0361 6.9269,7.7998 11.65,14.542 -1.8261,3.19 1.9896,7.4689 1.5357,10.518 -11.117,18.16 -39.672,15.045 -60.473,23.241 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccccsccc"
+             id="path3017-2" />
+          <g
+             transform="translate(9.2857,-1.4286)"
+             id="g3019-6"
+             style="fill:#000033;fill-opacity:1">
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1;fill-rule:evenodd"
+               sodipodi:nodetypes="ccccc"
+               d="m -753.73,156.17 39.311,-0.38661 -5.606,47.446 h -27.713 z"
+               id="path3021-0" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccccc"
+               d="m -765.09,126.5 c 16.503,2.4076 32.812,4.9346 61.246,0 v 30.02 l -12.86,3.1786 h -34.258 l -14.127,-3.1786 z"
+               id="path3023-9" />
+            <path
+               d="m -703.85,126.5 c -76.142,102.81 -38.071,51.403 0,0 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="cc"
+               id="path3025-7" />
+            <path
+               sodipodi:cx="320.71429"
+               sodipodi:cy="470.21933"
+               transform="matrix(0.27845,0,0,0.27063,-823.47,0.15753)"
+               d="m 444.28572,470.21933 c 0,8.28427 -55.32481,15 -123.57143,15 -68.24661,0 -123.57142,-6.71573 -123.57142,-15 0,-8.28427 55.32481,-15 123.57142,-15 68.24662,0 123.57143,6.71573 123.57143,15 z"
+               sodipodi:type="arc"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:ry="15"
+               sodipodi:rx="123.57143"
+               id="path3027-7" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -764,135.38 -4.4706,-7.6204 c 3.7439,0.85555 5.6037,2.3391 7.891,3.6802 l 0.60442,1.2412 z"
+               id="path3029-8" />
+            <path
+               d="m -704.13,135.38 4.4706,-7.6204 -8.0843,3.1003 -0.4111,1.8212 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               id="path3031-1" />
+            <rect
+               x="-747.31"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3033-2" />
+            <rect
+               x="-741.57001"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3035-8" />
+            <rect
+               x="-734.87"
+               y="157.57001"
+               width="1.5465"
+               height="39.002998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3037-1" />
+            <rect
+               x="-728.58002"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3039-3" />
+            <rect
+               x="-721.75"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3041-4" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -748.76,194.94 29.662,0.0683 -0.13669,2.0504 h -29.252 z"
+               id="path3043-7" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -749.71,188.37 h 31.439 l -0.13668,2.1187 h -30.96 z"
+               id="path3045-3" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -750.47,181.61 h 33.011 l -0.28844,2.187 h -32.449 z"
+               id="path3047-7" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -751.49,173.82 34.993,-0.13669 -0.34173,2.0504 h -34.309 z"
+               id="path3049-4" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -752.58,165.82 37.043,0.0683 -0.27338,2.187 h -36.496 z"
+               id="path3051-0" />
+          </g>
+          <path
+             d="m -757.31,118.43 c 10.635,-4.4232 20.831,-6.5463 25.367,-6.5231 30.825,0.15755 45.074,-20.47 21.065,-35.888 -4.6038,9.0862 -11.744,15.327 -21.33,17.449 -15.868,3.5129 -36.441,9.5153 -25.102,24.961 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cscsc"
+             id="path3053-8" />
+          <path
+             d="m -759.5,139.27 c -12.766,-32.092 45.188,-15.914 61.788,-38.389 22.229,15.443 15.045,35.917 -26.258,34.652 -14.836,-0.45438 -25.305,2.0649 -35.531,3.7376 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccsc"
+             id="path3055-5" />
+          <path
+             d="m -751.09,96.126 c -5.2804,-10.544 9.785,-16.567 21.205,-23.399 9.9712,-5.5463 5.387,-15.858 0,-8.0434 -4.2399,-3.6482 -0.8661,-8.71 3.6656,-9.4732 10.621,-0.16576 17.175,11.226 10.264,21.985 -9.3661,14.259 -23.326,13.016 -35.135,18.93 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccccc"
+             id="path3057-6" />
+          <path
+             d="m -749.22,91.356 c -0.59415,-2.6578 1.1304,-5.2916 3.2464,-6.7879 4.2364,-3.3384 7.8834,1.1787 3.2464,1.9183 -2.9341,0.77501 -4.1974,3.4953 -6.4928,4.8696 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3059-4" />
+          <path
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             d="m -756.46,111.56 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             id="path3061-2" />
+          <path
+             d="m -756.94,133.05 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3063-8" />
+        </g>
+        <g
+           transform="matrix(-0.61033918,0.25467217,0.26383587,0.63230062,1038.0479,913.52331)"
+           id="g3015-8-4"
+           style="fill:#000033;fill-opacity:1">
+          <path
+             d="m -758.21,124.15 c 0.0698,0.0349 -0.18502,-3.3321 2.0268,-9.0714 l 4.8214,-14.304 c 0.30887,-3.151 -0.77572,-6.2884 2.3393,-6.8304 26.887,-20.133 29.775,-27.289 38.1,-18.096 2.7493,3.0361 6.9269,7.7998 11.65,14.542 -1.8261,3.19 1.9896,7.4689 1.5357,10.518 -11.117,18.16 -39.672,15.045 -60.473,23.241 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccccsccc"
+             id="path3017-2-1" />
+          <g
+             transform="translate(9.2857,-1.4286)"
+             id="g3019-6-5"
+             style="fill:#000033;fill-opacity:1">
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1;fill-rule:evenodd"
+               sodipodi:nodetypes="ccccc"
+               d="m -753.73,156.17 39.311,-0.38661 -5.606,47.446 h -27.713 z"
+               id="path3021-0-2" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccccc"
+               d="m -765.09,126.5 c 16.503,2.4076 32.812,4.9346 61.246,0 v 30.02 l -12.86,3.1786 h -34.258 l -14.127,-3.1786 z"
+               id="path3023-9-3" />
+            <path
+               d="m -703.85,126.5 c -76.142,102.81 -38.071,51.403 0,0 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="cc"
+               id="path3025-7-4" />
+            <path
+               sodipodi:cx="320.71429"
+               sodipodi:cy="470.21933"
+               transform="matrix(0.27845,0,0,0.27063,-823.47,0.15753)"
+               d="m 444.28572,470.21933 c 0,8.28427 -55.32481,15 -123.57143,15 -68.24661,0 -123.57142,-6.71573 -123.57142,-15 0,-8.28427 55.32481,-15 123.57142,-15 68.24662,0 123.57143,6.71573 123.57143,15 z"
+               sodipodi:type="arc"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:ry="15"
+               sodipodi:rx="123.57143"
+               id="path3027-7-0" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -764,135.38 -4.4706,-7.6204 c 3.7439,0.85555 5.6037,2.3391 7.891,3.6802 l 0.60442,1.2412 z"
+               id="path3029-8-7" />
+            <path
+               d="m -704.13,135.38 4.4706,-7.6204 -8.0843,3.1003 -0.4111,1.8212 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               id="path3031-1-0" />
+            <rect
+               x="-747.31"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3033-2-0" />
+            <rect
+               x="-741.57001"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3035-8-6" />
+            <rect
+               x="-734.87"
+               y="157.57001"
+               width="1.5465"
+               height="39.002998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3037-1-9" />
+            <rect
+               x="-728.58002"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3039-3-0" />
+            <rect
+               x="-721.75"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3041-4-6" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -748.76,194.94 29.662,0.0683 -0.13669,2.0504 h -29.252 z"
+               id="path3043-7-0" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -749.71,188.37 h 31.439 l -0.13668,2.1187 h -30.96 z"
+               id="path3045-3-4" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -750.47,181.61 h 33.011 l -0.28844,2.187 h -32.449 z"
+               id="path3047-7-4" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -751.49,173.82 34.993,-0.13669 -0.34173,2.0504 h -34.309 z"
+               id="path3049-4-4" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -752.58,165.82 37.043,0.0683 -0.27338,2.187 h -36.496 z"
+               id="path3051-0-7" />
+          </g>
+          <path
+             d="m -757.31,118.43 c 10.635,-4.4232 20.831,-6.5463 25.367,-6.5231 30.825,0.15755 45.074,-20.47 21.065,-35.888 -4.6038,9.0862 -11.744,15.327 -21.33,17.449 -15.868,3.5129 -36.441,9.5153 -25.102,24.961 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cscsc"
+             id="path3053-8-1" />
+          <path
+             d="m -759.5,139.27 c -12.766,-32.092 45.188,-15.914 61.788,-38.389 22.229,15.443 15.045,35.917 -26.258,34.652 -14.836,-0.45438 -25.305,2.0649 -35.531,3.7376 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccsc"
+             id="path3055-5-3" />
+          <path
+             d="m -751.09,96.126 c -5.2804,-10.544 9.785,-16.567 21.205,-23.399 9.9712,-5.5463 5.387,-15.858 0,-8.0434 -4.2399,-3.6482 -0.8661,-8.71 3.6656,-9.4732 10.621,-0.16576 17.175,11.226 10.264,21.985 -9.3661,14.259 -23.326,13.016 -35.135,18.93 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccccc"
+             id="path3057-6-3" />
+          <path
+             d="m -749.22,91.356 c -0.59415,-2.6578 1.1304,-5.2916 3.2464,-6.7879 4.2364,-3.3384 7.8834,1.1787 3.2464,1.9183 -2.9341,0.77501 -4.1974,3.4953 -6.4928,4.8696 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3059-4-0" />
+          <path
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             d="m -756.46,111.56 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             id="path3061-2-9" />
+          <path
+             d="m -756.94,133.05 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3063-8-5" />
+        </g>
+        <g
+           transform="matrix(0.65760906,-0.07015811,0.07268256,0.68127137,2097.7303,628.77943)"
+           id="g3015-8-4-8"
+           style="fill:#000033;fill-opacity:1">
+          <path
+             d="m -758.21,124.15 c 0.0698,0.0349 -0.18502,-3.3321 2.0268,-9.0714 l 4.8214,-14.304 c 0.30887,-3.151 -0.77572,-6.2884 2.3393,-6.8304 26.887,-20.133 29.775,-27.289 38.1,-18.096 2.7493,3.0361 6.9269,7.7998 11.65,14.542 -1.8261,3.19 1.9896,7.4689 1.5357,10.518 -11.117,18.16 -39.672,15.045 -60.473,23.241 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccccsccc"
+             id="path3017-2-1-4" />
+          <g
+             transform="translate(9.2857,-1.4286)"
+             id="g3019-6-5-1"
+             style="fill:#000033;fill-opacity:1">
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1;fill-rule:evenodd"
+               sodipodi:nodetypes="ccccc"
+               d="m -753.73,156.17 39.311,-0.38661 -5.606,47.446 h -27.713 z"
+               id="path3021-0-2-4" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccccc"
+               d="m -765.09,126.5 c 16.503,2.4076 32.812,4.9346 61.246,0 v 30.02 l -12.86,3.1786 h -34.258 l -14.127,-3.1786 z"
+               id="path3023-9-3-9" />
+            <path
+               d="m -703.85,126.5 c -76.142,102.81 -38.071,51.403 0,0 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="cc"
+               id="path3025-7-4-1" />
+            <path
+               sodipodi:cx="320.71429"
+               sodipodi:cy="470.21933"
+               transform="matrix(0.27845,0,0,0.27063,-823.47,0.15753)"
+               d="m 444.28572,470.21933 c 0,8.28427 -55.32481,15 -123.57143,15 -68.24661,0 -123.57142,-6.71573 -123.57142,-15 0,-8.28427 55.32481,-15 123.57142,-15 68.24662,0 123.57143,6.71573 123.57143,15 z"
+               sodipodi:type="arc"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:ry="15"
+               sodipodi:rx="123.57143"
+               id="path3027-7-0-9" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -764,135.38 -4.4706,-7.6204 c 3.7439,0.85555 5.6037,2.3391 7.891,3.6802 l 0.60442,1.2412 z"
+               id="path3029-8-7-2" />
+            <path
+               d="m -704.13,135.38 4.4706,-7.6204 -8.0843,3.1003 -0.4111,1.8212 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               id="path3031-1-0-6" />
+            <rect
+               x="-747.31"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3033-2-0-3" />
+            <rect
+               x="-741.57001"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3035-8-6-5" />
+            <rect
+               x="-734.87"
+               y="157.57001"
+               width="1.5465"
+               height="39.002998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3037-1-9-0" />
+            <rect
+               x="-728.58002"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3039-3-0-3" />
+            <rect
+               x="-721.75"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3041-4-6-4" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -748.76,194.94 29.662,0.0683 -0.13669,2.0504 h -29.252 z"
+               id="path3043-7-0-2" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -749.71,188.37 h 31.439 l -0.13668,2.1187 h -30.96 z"
+               id="path3045-3-4-5" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -750.47,181.61 h 33.011 l -0.28844,2.187 h -32.449 z"
+               id="path3047-7-4-0" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -751.49,173.82 34.993,-0.13669 -0.34173,2.0504 h -34.309 z"
+               id="path3049-4-4-1" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -752.58,165.82 37.043,0.0683 -0.27338,2.187 h -36.496 z"
+               id="path3051-0-7-5" />
+          </g>
+          <path
+             d="m -757.31,118.43 c 10.635,-4.4232 20.831,-6.5463 25.367,-6.5231 30.825,0.15755 45.074,-20.47 21.065,-35.888 -4.6038,9.0862 -11.744,15.327 -21.33,17.449 -15.868,3.5129 -36.441,9.5153 -25.102,24.961 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cscsc"
+             id="path3053-8-1-8" />
+          <path
+             d="m -759.5,139.27 c -12.766,-32.092 45.188,-15.914 61.788,-38.389 22.229,15.443 15.045,35.917 -26.258,34.652 -14.836,-0.45438 -25.305,2.0649 -35.531,3.7376 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccsc"
+             id="path3055-5-3-4" />
+          <path
+             d="m -751.09,96.126 c -5.2804,-10.544 9.785,-16.567 21.205,-23.399 9.9712,-5.5463 5.387,-15.858 0,-8.0434 -4.2399,-3.6482 -0.8661,-8.71 3.6656,-9.4732 10.621,-0.16576 17.175,11.226 10.264,21.985 -9.3661,14.259 -23.326,13.016 -35.135,18.93 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccccc"
+             id="path3057-6-3-9" />
+          <path
+             d="m -749.22,91.356 c -0.59415,-2.6578 1.1304,-5.2916 3.2464,-6.7879 4.2364,-3.3384 7.8834,1.1787 3.2464,1.9183 -2.9341,0.77501 -4.1974,3.4953 -6.4928,4.8696 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3059-4-0-4" />
+          <path
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             d="m -756.46,111.56 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             id="path3061-2-9-8" />
+          <path
+             d="m -756.94,133.05 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3063-8-5-9" />
+        </g>
+        <g
+           transform="matrix(0.64405628,0.15021098,-0.15561592,0.66723093,2206.3866,793.10664)"
+           id="g3015-7"
+           style="fill:#000033;fill-opacity:1">
+          <path
+             d="m -758.21,124.15 c 0.0698,0.0349 -0.18502,-3.3321 2.0268,-9.0714 l 4.8214,-14.304 c 0.30887,-3.151 -0.77572,-6.2884 2.3393,-6.8304 26.887,-20.133 29.775,-27.289 38.1,-18.096 2.7493,3.0361 6.9269,7.7998 11.65,14.542 -1.8261,3.19 1.9896,7.4689 1.5357,10.518 -11.117,18.16 -39.672,15.045 -60.473,23.241 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccccsccc"
+             id="path3017-3" />
+          <g
+             transform="translate(9.2857,-1.4286)"
+             id="g3019-2"
+             style="fill:#000033;fill-opacity:1">
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1;fill-rule:evenodd"
+               sodipodi:nodetypes="ccccc"
+               d="m -753.73,156.17 39.311,-0.38661 -5.606,47.446 h -27.713 z"
+               id="path3021-7" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccccc"
+               d="m -765.09,126.5 c 16.503,2.4076 32.812,4.9346 61.246,0 v 30.02 l -12.86,3.1786 h -34.258 l -14.127,-3.1786 z"
+               id="path3023-2" />
+            <path
+               d="m -703.85,126.5 c -76.142,102.81 -38.071,51.403 0,0 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="cc"
+               id="path3025-78" />
+            <path
+               sodipodi:cx="320.71429"
+               sodipodi:cy="470.21933"
+               transform="matrix(0.27845,0,0,0.27063,-823.47,0.15753)"
+               d="m 444.28572,470.21933 c 0,8.28427 -55.32481,15 -123.57143,15 -68.24661,0 -123.57142,-6.71573 -123.57142,-15 0,-8.28427 55.32481,-15 123.57142,-15 68.24662,0 123.57143,6.71573 123.57143,15 z"
+               sodipodi:type="arc"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:ry="15"
+               sodipodi:rx="123.57143"
+               id="path3027-8" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -764,135.38 -4.4706,-7.6204 c 3.7439,0.85555 5.6037,2.3391 7.891,3.6802 l 0.60442,1.2412 z"
+               id="path3029-0" />
+            <path
+               d="m -704.13,135.38 4.4706,-7.6204 -8.0843,3.1003 -0.4111,1.8212 z"
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               id="path3031-2" />
+            <rect
+               x="-747.31"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3033-9" />
+            <rect
+               x="-741.57001"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3035-4" />
+            <rect
+               x="-734.87"
+               y="157.57001"
+               width="1.5465"
+               height="39.002998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3037-3" />
+            <rect
+               x="-728.58002"
+               y="157.57001"
+               width="1.5465"
+               height="39.139999"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3039-1" />
+            <rect
+               x="-721.75"
+               y="157.57001"
+               width="1.5465"
+               height="39.412998"
+               style="fill:#000033;fill-opacity:1"
+               id="rect3041-0" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -748.76,194.94 29.662,0.0683 -0.13669,2.0504 h -29.252 z"
+               id="path3043-6" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -749.71,188.37 h 31.439 l -0.13668,2.1187 h -30.96 z"
+               id="path3045-6" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -750.47,181.61 h 33.011 l -0.28844,2.187 h -32.449 z"
+               id="path3047-3" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -751.49,173.82 34.993,-0.13669 -0.34173,2.0504 h -34.309 z"
+               id="path3049-9" />
+            <path
+               inkscape:connector-curvature="0"
+               style="fill:#000033;fill-opacity:1"
+               sodipodi:nodetypes="ccccc"
+               d="m -752.58,165.82 37.043,0.0683 -0.27338,2.187 h -36.496 z"
+               id="path3051-07" />
+          </g>
+          <path
+             d="m -757.31,118.43 c 10.635,-4.4232 20.831,-6.5463 25.367,-6.5231 30.825,0.15755 45.074,-20.47 21.065,-35.888 -4.6038,9.0862 -11.744,15.327 -21.33,17.449 -15.868,3.5129 -36.441,9.5153 -25.102,24.961 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cscsc"
+             id="path3053-7" />
+          <path
+             d="m -759.5,139.27 c -12.766,-32.092 45.188,-15.914 61.788,-38.389 22.229,15.443 15.045,35.917 -26.258,34.652 -14.836,-0.45438 -25.305,2.0649 -35.531,3.7376 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="ccsc"
+             id="path3055-2" />
+          <path
+             d="m -751.09,96.126 c -5.2804,-10.544 9.785,-16.567 21.205,-23.399 9.9712,-5.5463 5.387,-15.858 0,-8.0434 -4.2399,-3.6482 -0.8661,-8.71 3.6656,-9.4732 10.621,-0.16576 17.175,11.226 10.264,21.985 -9.3661,14.259 -23.326,13.016 -35.135,18.93 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccccc"
+             id="path3057-1" />
+          <path
+             d="m -749.22,91.356 c -0.59415,-2.6578 1.1304,-5.2916 3.2464,-6.7879 4.2364,-3.3384 7.8834,1.1787 3.2464,1.9183 -2.9341,0.77501 -4.1974,3.4953 -6.4928,4.8696 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3059-2" />
+          <path
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             d="m -756.46,111.56 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             id="path3061-25" />
+          <path
+             d="m -756.94,133.05 c -0.73604,-3.2926 1.4003,-6.5554 4.0217,-8.4091 5.2481,-4.1356 9.7661,1.4602 4.0217,2.3765 -3.6348,0.9601 -5.1998,4.33 -8.0434,6.0326 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000033;fill-opacity:1"
+             sodipodi:nodetypes="cccc"
+             id="path3063-4" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Snowball.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/Snowball.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,80 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="16"
+   height="16"
+   sodipodi:docname="Snowball.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Snowball.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="7.476066"
+     inkscape:cx="8"
+     inkscape:cy="10.711864"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g3198" />
+  <g
+     id="g3198"
+     transform="matrix(0.49611438,0,0,0.5058304,3.6074717,3.8058578)">
+    <path
+       style="opacity:0.98999999000000005;fill:#d4aa00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="M 6.4829717,20.254816 C 3.0911857,19.66111 -0.44213184,17.107813 -1.9889489,14.132719 -4.3107697,9.66701 -3.3711005,4.6030152 0.42502752,1.1234663 5.1067641,-3.1678302 12.630306,-3.1410123 17.348587,1.1838133 19.803483,3.4339824 20.974444,6.0710768 20.952535,9.3001755 20.904513,16.370511 14.029174,21.575744 6.4829717,20.254841 z"
+       id="path3042-5-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="opacity:0.98999999000000005;fill:#ffdd55;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="M 5.8408699,19.470223 C 2.5015679,18.852722 -0.97708195,16.197091 -2.4999654,13.10276 -4.7858595,8.4580711 -3.8607286,3.1911173 -0.12333677,-0.42788885 4.4859528,-4.8911734 11.893088,-4.8632818 16.538357,-0.36512941 18.955279,1.9752219 20.108113,4.7180119 20.086544,8.0765235 20.039244,15.43023 13.270315,20.844083 5.8408699,19.47024 z"
+       id="path3042-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="opacity:0.98999999000000005;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="M 6.8729055,18.754078 C 3.7975795,18.193402 0.59392895,15.782151 -0.808568,12.972565 -2.9137556,8.7552941 -2.0617603,3.9730211 1.3801838,0.68704379 5.6250998,-3.3655159 12.446677,-3.3401925 16.724724,0.74402735 18.950578,2.869014 20.012284,5.3594044 19.992415,8.4088613 19.948825,15.085858 13.715021,20.001515 6.8729055,18.754096 z"
+       id="path3042"
+       inkscape:connector-curvature="0" />
+    <path
+       style="opacity:0.3;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="M 2.3708594,0.8592022 C 3.3002678,-0.37339504 5.836193,-1.1818967 7.3054764,-1.3096621 10.092002,-1.5519711 11.212498,-0.30254556 11.537923,0.40009475 12.053045,1.512343 9.9963908,1.9617483 7.9092843,2.17706 6.9248465,2.2786204 5.960988,3.1160669 5.5268642,3.6016833 2.4848237,7.0045197 -0.51914457,4.6919472 2.3708594,0.8592022 z"
+       id="path3044"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ssssss" />
+  </g>
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/Splash.png has changed
Binary file share/hedgewars/Data/Themes/Cake/amSnowball.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/amSnowball.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,96 @@
+<?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"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="128"
+   height="128"
+   sodipodi:docname="amSnowball.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/amSnowball.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata8">
+    <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>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="5.286377"
+     inkscape:cx="64"
+     inkscape:cy="74.847458"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <path
+     style="opacity:0.98999999000000005;fill:#d4aa00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+     d="m 72.43056,69.529726 c -3.074603,-0.545235 -6.277503,-2.890076 -7.679669,-5.622279 -2.104695,-4.101119 -1.252898,-8.75168 2.188234,-11.947152 4.243923,-3.940947 11.063901,-3.916319 15.340951,0.05542 2.225326,2.066462 3.286785,4.488259 3.266925,7.453728 -0.04352,6.493099 -6.275923,11.273368 -13.116441,10.060305 z"
+     id="path3042-5-9"
+     inkscape:connector-curvature="0" />
+  <path
+     style="opacity:0.98999999000000005;fill:#ffd42a;fill-opacity:1;fill-rule:evenodd;stroke:none"
+     d="m 71.848505,68.809188 c -3.027027,-0.567087 -6.180372,-3.005907 -7.560842,-5.847611 -2.072128,-4.265488 -1.233512,-9.102438 2.154378,-12.425982 4.178252,-4.098893 10.892708,-4.073279 15.103574,0.05764 2.190903,2.14928 3.23593,4.668144 3.216378,7.752461 -0.04288,6.753336 -6.178809,11.725191 -12.913488,10.463512 z"
+     id="path3042-5"
+     inkscape:connector-curvature="0" />
+  <path
+     style="opacity:0.98999999000000005;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+     d="m 72.661115,68.276034 c -2.787736,-0.514902 -5.691796,-2.729293 -6.963139,-5.3095 -1.908321,-3.872965 -1.135999,-8.264804 1.98407,-11.282508 3.847953,-3.721701 10.031609,-3.698445 13.909595,0.05233 2.017702,1.951499 2.980123,4.238569 2.962112,7.039063 -0.03952,6.131874 -5.690362,10.646207 -11.892638,9.50063 z"
+     id="path3042"
+     inkscape:connector-curvature="0" />
+  <path
+     style="opacity:0.3;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+     d="m 68.825905,51.717606 c 0.842495,-1.131965 3.141273,-1.87446 4.473156,-1.991795 2.525943,-0.222525 3.541656,0.924895 3.836649,1.57017 0.46695,1.021442 -1.397376,1.434157 -3.289307,1.63189 -0.892377,0.09327 -1.766101,0.862345 -2.159627,1.308315 -2.757564,3.125022 -5.480615,1.001252 -2.860871,-2.51858 z"
+     id="path3044"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="ssssss" />
+  <path
+     sodipodi:type="arc"
+     style="fill:#a3086a;fill-opacity:1;fill-rule:evenodd;stroke:none"
+     id="path3100-1"
+     sodipodi:cx="73.395287"
+     sodipodi:cy="70.232971"
+     sodipodi:rx="1.6778805"
+     sodipodi:ry="1.7737594"
+     d="m 75.073167,70.232971 a 1.6778805,1.7737594 0 1 1 -3.355761,0 1.6778805,1.7737594 0 1 1 3.355761,0 z"
+     transform="matrix(2.5755564,0,0,2.2478717,-122.64804,-91.700602)" />
+  <path
+     sodipodi:type="arc"
+     style="fill:#f49ee9;fill-opacity:1;fill-rule:evenodd;stroke:#db2efe;stroke-width:0.40000001;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+     id="path3100"
+     sodipodi:cx="73.395287"
+     sodipodi:cy="70.232971"
+     sodipodi:rx="1.6778805"
+     sodipodi:ry="1.7737594"
+     d="m 75.073167,70.232971 a 1.6778805,1.7737594 0 1 1 -3.355761,0 1.6778805,1.7737594 0 1 1 3.355761,0 z"
+     transform="matrix(1.5185689,0,0,1.4518088,-45.304584,-35.849202)" />
+</svg>
Binary file share/hedgewars/Data/Themes/Cake/icon.png has changed
Binary file share/hedgewars/Data/Themes/Cake/icon@2x.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/icon@2x.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,3063 @@
+<?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"
+   id="svg3119"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="65"
+   height="64"
+   sodipodi:docname="icon@2x.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/icon@2x.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata3125">
+    <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>
+  <defs
+     id="defs3123" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview3121"
+     showgrid="false"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:zoom="3.3427041"
+     inkscape:cx="14.025811"
+     inkscape:cy="50.554487"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg3119" />
+  <path
+     style="fill:#ffff99;fill-opacity:1;stroke:#4c3e39;stroke-width:2.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+     d="m 2.9494784,58.911401 c -1.366165,-1.619349 -1.198965,-5.736473 -1.332988,-7.970209 -0.404365,-6.739477 -0.315438,-13.431227 -0.16064,-18.467489 0.106448,-3.192864 -0.0337,-7.270899 -0.132557,-11.528216 -0.08934,-3.847752 -0.220937,-7.725246 0.459367,-11.0989465 0.567243,-2.813014 2.575551,-4.837474 4.766852,-6.640699 1.530516,-1.259463 14.1947406,-0.08494 28.0274506,0.752943 12.19735,0.738828 24.39649,0.1276979 27.848277,3.405371 1.169721,1.1107182 0.49932,4.8501955 0.80285,6.4250905 l 0.0889,16.977863 c 0.0567,10.828048 -0.0115,17.812621 -0.18847,19.282394 -0.80549,6.691944 -1.898145,8.94481 -7.986525,9.701873 -2.64199,0.328518 -17.317209,2.326664 -40.44716,2.986151 C 9.1484434,62.895667 5.1722454,61.5461 2.9494784,58.911401 z"
+     id="path4116-8"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssssscsssss" />
+  <g
+     id="g7124">
+    <path
+       sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+       inkscape:connector-curvature="0"
+       id="path3123-8-5-4-2"
+       d="m 0.82538613,37.640473 c 0,0 2.03561387,0.780514 3.06718017,0.719781 1.1670162,-0.06871 2.2619171,-1.324161 3.4280264,-1.220384 0.9091855,0.08091 1.6886004,1.395221 2.5989198,1.420633 1.0003195,0.02792 1.8845425,-1.436095 2.8847795,-1.400823 0.983651,0.0347 1.817849,1.494442 2.80052,1.576358 0.984199,0.08204 1.898114,-1.152393 2.883103,-1.10465 1.000722,0.04849 1.886319,1.484108 2.886333,1.404126 0.935848,-0.07484 1.680701,-1.639429 2.615733,-1.739254 0.899573,-0.09605 1.723668,1.268655 2.621007,1.12478 0.991749,-0.159018 1.711707,-2.068778 2.706972,-2.141626 0.860179,-0.06296 1.595279,1.115826 2.425397,1.502185 0.975786,0.454153 1.982194,1.195323 2.983801,0.949866 0.736724,-0.180548 1.243029,-1.686327 1.987122,-1.723496 0.72095,-0.03599 1.259851,1.534744 1.980241,1.474823 0.68978,-0.05738 1.120127,-1.569504 1.804984,-1.720006 0.862256,-0.18949 1.660892,1.284174 2.524375,1.111367 0.813306,-0.162759 1.350551,-1.85879 2.167495,-1.956388 0.832052,-0.09941 1.517309,1.42575 2.351337,1.447919 0.694164,0.01844 1.284543,-1.064111 1.978454,-1.100508 0.996131,-0.05223 1.89776,1.177357 2.892546,1.279183 1.090606,0.111632 2.156519,-0.827676 3.248035,-0.745309 1.113291,0.084 2.149141,1.09848 3.259638,1.256103 1.440629,0.204487 4.330137,-0.41468 4.330137,-0.41468 l 0,15.809329 c 0,0 -2.822709,-1.355725 -4.260223,-1.21334 -1.30591,0.129348 -2.460364,1.903671 -3.768236,1.858857 -1.031054,-0.03536 -1.902117,-1.652082 -2.933337,-1.667733 -1.115235,-0.01697 -2.081324,1.898928 -3.190847,1.707019 -1.044993,-0.180746 -1.701659,-2.582462 -2.751999,-2.603515 -1.012359,-0.02031 -1.681211,2.202059 -2.686732,2.402318 -1.127944,0.224638 -2.16461,-1.4831 -3.299983,-1.43735 -1.178427,0.04749 -2.20214,1.864618 -3.379468,1.766075 -0.89498,-0.07492 -1.588363,-1.591422 -2.478567,-1.765037 -1.021323,-0.19918 -2.012442,0.893813 -3.040452,0.877463 -1.468039,-0.02338 -2.859172,-1.382639 -4.327269,-1.390946 -1.392558,-0.0079 -2.717364,1.314288 -4.109717,1.272907 -1.488587,-0.04424 -2.876179,-1.753172 -4.362957,-1.621112 -1.242127,0.11033 -2.302252,1.814925 -3.541656,1.992708 -1.403046,0.201251 -2.76877,-1.176011 -4.175728,-1.08176 -1.3988461,0.09371 -2.6903469,1.740597 -4.0886957,1.627518 -1.0901912,-0.08815 -2.0124395,-1.669423 -3.1020077,-1.777472 -0.9961044,-0.09878 -2.92826147,1.0534 -2.92826147,1.0534 z"
+       style="fill:#ffe680;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+       inkscape:connector-curvature="0"
+       id="path3123-89-3-4"
+       d="m 0.82538613,39.673542 c 0,0 2.03561387,0.634891 3.06718017,0.58549 1.1670163,-0.05588 2.2619171,-1.077115 3.4280264,-0.9927 0.9091859,0.06582 1.6886004,1.134918 2.5989198,1.155589 1.0003195,0.02271 1.8845415,-1.168162 2.8847795,-1.139475 0.983651,0.02822 1.817849,1.215627 2.80052,1.282261 0.984199,0.06673 1.898114,-0.937392 2.883103,-0.89856 1.000722,0.03945 1.886319,1.207225 2.886334,1.142167 0.935848,-0.06088 1.6807,-1.333566 2.615732,-1.41477 0.899573,-0.07813 1.723669,1.031967 2.621007,0.914932 0.991748,-0.129349 1.711706,-1.68281 2.706971,-1.742067 0.86018,-0.05122 1.59528,0.907649 2.425398,1.221927 0.975786,0.369423 1.982194,0.972315 2.983801,0.77265 0.736724,-0.146864 1.243029,-1.371714 1.987122,-1.401945 0.72095,-0.02929 1.259851,1.248409 1.980241,1.199668 0.68978,-0.04667 1.120127,-1.276684 1.804983,-1.39911 0.862257,-0.154136 1.660892,1.044592 2.524376,0.904026 0.813306,-0.132398 1.350551,-1.512003 2.167495,-1.591394 0.832052,-0.08087 1.517309,1.159753 2.351338,1.177785 0.694163,0.01501 1.284542,-0.865583 1.978453,-0.895188 0.996131,-0.04249 1.897759,0.957698 2.892546,1.040529 1.090606,0.0908 2.156519,-0.673258 3.248035,-0.60626 1.113292,0.06833 2.149142,0.893543 3.259638,1.021758 1.440628,0.166336 4.330137,-0.337313 4.330137,-0.337313 l 0,12.859823 c 0,0 -2.82271,-1.102791 -4.260223,-0.986972 -1.305911,0.105217 -2.460365,1.548509 -3.768237,1.512053 -1.031053,-0.02876 -1.902116,-1.343854 -2.933336,-1.356585 -1.115235,-0.01378 -2.081324,1.544648 -3.190847,1.388547 -1.044992,-0.147026 -1.701659,-2.100659 -2.751999,-2.117788 -1.012359,-0.01652 -1.681211,1.791228 -2.686732,1.954126 -1.127945,0.182728 -2.164611,-1.206403 -3.299983,-1.169187 -1.178426,0.03863 -2.20214,1.516738 -3.379468,1.43658 -0.89498,-0.06094 -1.588363,-1.294513 -2.478567,-1.435734 -1.021323,-0.162022 -2.012442,0.727056 -3.040452,0.713756 -1.46804,-0.019 -2.859172,-1.124685 -4.327268,-1.131442 -1.392557,-0.0065 -2.717366,1.069083 -4.109718,1.035425 -1.488587,-0.03598 -2.87618,-1.426091 -4.362958,-1.318667 -1.242126,0.08975 -2.302252,1.47632 -3.541655,1.620934 -1.403046,0.163705 -2.76877,-0.956604 -4.175728,-0.87994 -1.3988461,0.07623 -2.6903467,1.41586 -4.0886957,1.323882 -1.0901912,-0.07171 -2.0124395,-1.357968 -3.1020077,-1.445858 -0.9961036,-0.08035 -2.92826147,0.85687 -2.92826147,0.85687 z"
+       style="fill:#ffdd55;fill-opacity:1;stroke:none" />
+  </g>
+  <g
+     id="g7120">
+    <path
+       sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+       inkscape:connector-curvature="0"
+       id="path3123-8-5-4"
+       d="m 0.82538637,13.194743 c 0,0 2.03561393,0.780514 3.06718023,0.719781 1.1670162,-0.06871 2.2619171,-1.324161 3.4280264,-1.220384 0.9091855,0.08091 1.6886004,1.395221 2.5989198,1.420633 1.0003192,0.02792 1.8845422,-1.436095 2.8847792,-1.400823 0.983651,0.0347 1.817849,1.494442 2.80052,1.576358 0.984199,0.08204 1.898114,-1.152393 2.883103,-1.10465 1.000722,0.04849 1.886319,1.484108 2.886333,1.404126 0.935848,-0.07484 1.680701,-1.639429 2.615733,-1.739254 0.899573,-0.09605 1.723668,1.268655 2.621007,1.12478 0.991749,-0.159018 1.711707,-2.068778 2.706972,-2.141626 0.860179,-0.06296 1.595279,1.115826 2.425397,1.502185 0.975786,0.454153 1.982194,1.195323 2.983801,0.949866 0.736724,-0.180548 1.243029,-1.686327 1.987122,-1.723496 0.72095,-0.03599 1.259851,1.534744 1.980241,1.474823 0.68978,-0.05738 1.120127,-1.569504 1.804984,-1.720006 0.862256,-0.18949 1.660892,1.284174 2.524375,1.111367 0.813306,-0.162759 1.350551,-1.85879 2.167495,-1.956388 0.832052,-0.09941 1.517309,1.42575 2.351337,1.447919 0.694164,0.01844 1.284543,-1.064111 1.978454,-1.100508 0.996131,-0.05223 1.89776,1.177357 2.892546,1.279183 1.090606,0.111632 2.156519,-0.827676 3.248035,-0.745309 1.113291,0.084 2.149141,1.09848 3.259638,1.256103 1.440629,0.204487 4.330137,-0.41468 4.330137,-0.41468 l 0,15.809329 c 0,0 -2.822709,-1.355725 -4.260223,-1.21334 -1.30591,0.129348 -2.460364,1.903671 -3.768236,1.858857 -1.031054,-0.03536 -1.902117,-1.652082 -2.933337,-1.667733 -1.115235,-0.01697 -2.081324,1.898928 -3.190847,1.707019 -1.044993,-0.180746 -1.701659,-2.582462 -2.751999,-2.603515 -1.012359,-0.02031 -1.681211,2.202059 -2.686732,2.402318 -1.127944,0.224638 -2.16461,-1.4831 -3.299983,-1.43735 -1.178427,0.04749 -2.20214,1.864618 -3.379468,1.766075 -0.89498,-0.07492 -1.588363,-1.591422 -2.478567,-1.765037 -1.021323,-0.19918 -2.012442,0.893813 -3.040452,0.877463 -1.468039,-0.02338 -2.859172,-1.382639 -4.327269,-1.390946 -1.392558,-0.0079 -2.717364,1.314288 -4.109717,1.272907 -1.488587,-0.04424 -2.876179,-1.753172 -4.362957,-1.621112 -1.242127,0.11033 -2.302252,1.814925 -3.541656,1.992708 -1.403046,0.201251 -2.76877,-1.176011 -4.175728,-1.08176 -1.3988458,0.09371 -2.6903466,1.740597 -4.0886954,1.627518 -1.0901912,-0.08815 -2.0124395,-1.669423 -3.1020077,-1.777472 -0.9961044,-0.09878 -2.92826153,1.0534 -2.92826153,1.0534 z"
+       style="fill:#ffe680;fill-opacity:1;stroke:none" />
+    <path
+       sodipodi:nodetypes="cssssssssssssssssssssssccssssssssssssssssscc"
+       inkscape:connector-curvature="0"
+       id="path3123-89-3"
+       d="m 0.61095011,14.477284 c 0,0 2.03561389,0.634891 3.06718019,0.58549 1.1670163,-0.05588 2.2619171,-1.077115 3.4280264,-0.9927 0.9091859,0.06582 1.6886004,1.134918 2.5989198,1.155589 1.0003195,0.02271 1.8845415,-1.168162 2.8847795,-1.139475 0.983651,0.02822 1.817849,1.215627 2.80052,1.282261 0.984199,0.06673 1.898114,-0.937392 2.883103,-0.89856 1.000722,0.03945 1.886319,1.207225 2.886334,1.142167 0.935848,-0.06088 1.6807,-1.333566 2.615732,-1.41477 0.899573,-0.07813 1.723669,1.031967 2.621007,0.914932 0.991748,-0.129349 1.711706,-1.68281 2.706971,-1.742067 0.86018,-0.05122 1.59528,0.907649 2.425398,1.221927 0.975786,0.369423 1.982194,0.972315 2.983801,0.77265 0.736724,-0.146864 1.243029,-1.371714 1.987122,-1.401945 0.72095,-0.02929 1.259851,1.248409 1.980241,1.199668 0.68978,-0.04667 1.120127,-1.276684 1.804983,-1.39911 0.862257,-0.154136 1.660892,1.044592 2.524376,0.904026 0.813306,-0.132398 1.350551,-1.512003 2.167495,-1.591394 0.832052,-0.08087 1.517309,1.159753 2.351338,1.177785 0.694163,0.01501 1.284542,-0.865583 1.978453,-0.895188 0.996131,-0.04249 1.897759,0.957698 2.892546,1.040529 1.090606,0.0908 2.156519,-0.673258 3.248035,-0.60626 1.113292,0.06833 2.149142,0.893543 3.259638,1.021758 1.440628,0.166336 4.330137,-0.337313 4.330137,-0.337313 l 0,12.859823 c 0,0 -2.82271,-1.102791 -4.260223,-0.986972 -1.305911,0.105217 -2.460365,1.548509 -3.768237,1.512053 -1.031053,-0.02876 -1.902116,-1.343854 -2.933336,-1.356585 -1.115235,-0.01378 -2.081324,1.544648 -3.190847,1.388547 -1.044992,-0.147026 -1.701659,-2.100659 -2.751999,-2.117788 -1.012359,-0.01652 -1.681211,1.791228 -2.686732,1.954126 -1.127945,0.182728 -2.164611,-1.206403 -3.299983,-1.169187 -1.178426,0.03863 -2.20214,1.516738 -3.379468,1.43658 -0.89498,-0.06094 -1.588363,-1.294513 -2.478567,-1.435734 -1.021323,-0.162022 -2.012442,0.727056 -3.040452,0.713756 -1.46804,-0.019 -2.859172,-1.124685 -4.327268,-1.131442 -1.392557,-0.0065 -2.717366,1.069083 -4.109718,1.035425 -1.488587,-0.03598 -2.87618,-1.426091 -4.362958,-1.318667 -1.242126,0.08975 -2.302252,1.47632 -3.541655,1.620934 -1.403046,0.163705 -2.76877,-0.956604 -4.175728,-0.87994 -1.3988461,0.07623 -2.6903467,1.41586 -4.0886957,1.323882 -1.0901912,-0.07171 -2.0124395,-1.357968 -3.1020077,-1.445858 -0.9961036,-0.08035 -2.92826149,0.85687 -2.92826149,0.85687 z"
+       style="fill:#ffdd55;fill-opacity:1;stroke:none" />
+  </g>
+  <path
+     style="fill:none;stroke:#4c3e39;stroke-width:2.51282048;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+     d="M 2.9555377,58.864725 C 1.5896548,57.228386 1.7568202,53.068062 1.6228249,50.810897 1.2185434,44.000712 1.3074521,37.238757 1.4622181,32.14966 1.5686441,28.923303 1.4285251,24.802479 1.3296885,20.500494 1.2403669,16.612376 1.1087971,12.694206 1.7889606,9.2851122 2.3560865,6.4425831 4.3639799,4.3968839 6.5548284,2.5747408 c 1.5302,-1.2726764 14.1918106,-0.085831 28.0216606,0.7608423 12.194832,0.7465793 24.391453,0.1290377 27.84253,3.4410977 1.169478,1.1223719 0.499217,4.9010822 0.802684,6.4924952 l 0.08888,17.155989 c 0.05669,10.94164 -0.0115,17.999498 -0.188431,19.484687 -0.805324,6.762147 -1.897748,9.038653 -7.984871,9.803655 -2.641445,0.331967 -17.313634,2.35108 -40.438813,3.017479 -5.5452473,0.159799 -9.5206242,-1.20392 -11.7429323,-3.866261 z"
+     id="path4116-8-3"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssssscsssss" />
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-4-2-9"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,60.530888,-3.7510669)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-41-9-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-2-6-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-50-1-4"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,40.063923,-5.3635276)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-18-8-2"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-40-7-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-7-4-3"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,36.75715,22.448999)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-79-9-95"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-7-9-87"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-1-2-0"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,43.548634,22.61188)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-5-9-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-1-3-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-3-1-4"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,54.706073,22.774764)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-0-1-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-8-9-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-2-3-41"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,61.012449,22.774764)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-25-9-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-62-2-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-9-4-0"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,25.276309,22.448999)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-6-5-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-82-7-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-96-3-4"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,18.085333,22.528744)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-1-2-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-5-4-2"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-8-7-9-0"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,75.798529,-9.9208106)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-4-4-0-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-4-0-8-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-4-2-4-8"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,62.306341,-13.260908)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-41-9-4-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-2-6-4-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-7-2-4-0"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,52.358712,-10.381515)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-2-2-8-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-83-4-6-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-50-1-6-3"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,41.839379,-14.873368)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-18-8-4-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-40-7-2-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-85-6-7"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,27.457427,17.516146)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-3-8-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-9-4-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-6-2-4"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,37.086809,17.007845)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-15-7-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-0-6-2"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-08-8-0"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,32.711333,15.545288)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-5-6-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-9-7-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-7-4-7-1"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,38.532604,12.93916)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-79-9-9-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-7-9-8-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-1-2-9-3"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,45.32409,13.102041)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-5-9-7-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-1-3-4-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-76-9-1-5"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,49.204935,16.68547)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-55-7-1-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-0-9-7-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-3-1-9-9"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,56.481526,13.264926)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-0-1-2-2"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-8-9-8-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-6-7-8-1"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,57.784354,16.967533)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-2-6-7-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-6-3-4-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-2-3-4-3"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,62.787902,13.264926)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-25-9-3-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-62-2-4-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-9-4-9-0"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,27.051765,12.93916)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-6-5-2-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-82-7-8-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-7-4-4-7-2"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,31.70822,-10.967274)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-2-6-3-3-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-83-7-3-4-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-96-3-7-4"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,19.860789,13.018905)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-1-2-2-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-5-4-5-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-6-7-1-6"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,18.395951,16.93149)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-6-1-8-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-19-6-1-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <path
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     sodipodi:type="arc"
+     style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+     id="path3125-8"
+     sodipodi:cx="22.305475"
+     sodipodi:cy="168.06917"
+     sodipodi:rx="3.2853026"
+     sodipodi:ry="3.1123919"
+     d="m 25.590778,168.06917 a 3.2853026,3.1123919 0 1 1 -6.570605,0 3.2853026,3.1123919 0 1 1 6.570605,0 z"
+     transform="matrix(0.3306348,0,0,0.33304978,7.2763906,-33.028531)" />
+  <path
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     sodipodi:type="arc"
+     style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+     id="path3125-5-3-2"
+     sodipodi:cx="22.305475"
+     sodipodi:cy="168.06917"
+     sodipodi:rx="3.2853026"
+     sodipodi:ry="3.1123919"
+     d="m 25.590778,168.06917 a 3.2853026,3.1123919 0 1 1 -6.570605,0 3.2853026,3.1123919 0 1 1 6.570605,0 z"
+     transform="matrix(0.3306348,0,0,0.33304978,10.221297,-29.329168)" />
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-70-11"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,-6.0380434,-21.436405)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-39-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-6-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-1-1-3"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,-10.582483,-24.219163)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-1-8-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-8-5-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-5-0-6"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,7.4837336,-24.342731)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-7-3-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-7-7-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-8-7-5"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,15.487573,-20.31158)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-4-4-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-4-0-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-4-2-47"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,28.111789,-23.015813)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-41-9-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-2-6-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-7-2-6"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,35.771132,-18.626247)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-2-2-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-83-4-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-1-2-5"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,45.962015,2.711271)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-5-9-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-1-3-40"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-76-9-3"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,42.081169,6.2947001)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-55-7-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-0-9-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-3-1-2"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,34.804578,2.8741554)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-0-1-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-8-9-51"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-6-7-5"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,33.501748,6.5767633)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-2-6-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-6-3-41"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-2-3-8"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,28.498202,2.8741554)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-25-9-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-62-2-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-75-0-9"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,19.766295,6.6204661)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-1-8-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-68-9-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-36-3-9"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,23.485441,2.3855048)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-22-9-2"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-33-5-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-9-5-9"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,7.5530316,6.3744489)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-7-9-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-3-2-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-9-5-5"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,14.515742,4.7490061)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-7-1-26"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-1-3-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-1-0-97"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,4.6423976,1.650837)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-5-2-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-33-2-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-0-9-1"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,10.311488,2.79441)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-1-6-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-8-40-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-0-8-7-80"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,0.03865157,6.6204661)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-1-4-9-912"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-8-4-7-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-70-1-3"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,-7.8134964,-30.946245)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-39-9-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-6-2-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-1-1-7-1"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,-12.357936,-33.729002)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-1-8-6-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-8-5-1-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-5-0-4-7"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,5.7082816,-33.852569)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-7-3-1-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-7-7-6-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-8-7-9-3"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,19.314808,-36.156083)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-4-4-0-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-4-0-8-00"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-4-2-4-80"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,27.204309,-33.161513)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-41-9-4-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-2-6-4-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-7-2-4-01"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,37.151938,-30.282124)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-2-2-8-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-83-4-6-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-1-2-9-5"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,44.186558,-6.7985686)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-5-9-7-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-1-3-4-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-76-9-1-7"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,40.305713,-3.2151391)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-55-7-1-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-0-9-7-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-3-1-9-0"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,33.029124,-6.6356836)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-0-1-2-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-8-9-8-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-6-7-8-3"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,31.726294,-2.9330761)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-2-6-7-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-6-3-4-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-2-3-4-31"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,26.722749,-6.6356836)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-25-9-3-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-62-2-4-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-75-0-0-8"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,17.990842,-2.8893733)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-1-8-1-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-68-9-9-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-36-3-3-6"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,21.709987,-7.1243346)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-22-9-8-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-33-5-9-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-9-5-5-4"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,5.7775796,-3.1353904)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-7-9-0-2"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-3-2-4-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-9-5-3-9"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,12.740289,-4.7608336)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-7-1-2-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-1-3-3-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-1-0-0-11"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,2.8669456,-7.8590026)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-5-2-3-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-33-2-6-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-0-9-7-4"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,8.5360356,-6.7154296)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-1-6-2-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-8-40-8-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-0-8-7-8-36"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,-1.7368014,-2.8893733)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-1-4-9-9-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-8-4-7-2-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <path
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     sodipodi:type="arc"
+     style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+     id="path3125-8-6"
+     sodipodi:cx="22.305475"
+     sodipodi:cy="168.06917"
+     sodipodi:rx="3.2853026"
+     sodipodi:ry="3.1123919"
+     d="m 25.590778,168.06917 a 3.2853026,3.1123919 0 1 1 -6.570605,0 3.2853026,3.1123919 0 1 1 6.570605,0 z"
+     transform="matrix(0.3306348,0,0,0.33304978,9.1252206,-39.922762)" />
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-1-1-7-1-5"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,-10.509104,-39.291033)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-1-8-6-8-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-8-5-1-6-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-5-0-4-7-8"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,12.359416,-31.697827)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-7-3-1-5-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-7-7-6-9-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-4-2-4-80-1"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,29.053139,-38.723548)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-41-9-4-3-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-2-6-4-9-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-1-2-9-5-2"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,46.035388,-12.360598)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-5-9-7-3-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-1-3-4-8-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-3-1-9-0-0"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,34.877955,-12.197714)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-0-1-2-0-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-8-9-8-0-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-2-3-4-31-4"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,28.571579,-12.197714)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-25-9-3-0-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-62-2-4-5-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-36-3-3-6-1"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,23.558818,-12.686364)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-22-9-8-9-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-33-5-9-5-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-9-5-3-9-9"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,14.589119,-10.322863)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-7-1-2-1-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-1-3-3-8-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-1-0-0-11-2"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,4.7157756,-13.421032)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-5-2-3-0-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-33-2-6-3-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-0-9-7-4-1"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,10.384866,-12.277459)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-1-6-2-5-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-8-40-8-9-2"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <path
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     sodipodi:type="arc"
+     style="opacity:0.25;fill:#ffe680;fill-opacity:1;stroke:none"
+     id="path3125-8-9"
+     sodipodi:cx="22.305475"
+     sodipodi:cy="168.06917"
+     sodipodi:rx="3.2853026"
+     sodipodi:ry="3.1123919"
+     d="m 25.590778,168.06917 a 3.2853026,3.1123919 0 1 1 -6.570605,0 3.2853026,3.1123919 0 1 1 6.570605,0 z"
+     transform="matrix(0.3306348,0,0,0.33304978,8.2104956,-43.147678)" />
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-1-1-7-1-4"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,-11.423829,-43.84815)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-1-8-6-8-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-8-5-1-6-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-5-0-4-7-83"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,6.6423866,-43.971717)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-7-3-1-5-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-7-7-6-9-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-4-2-4-80-8"
+     style="opacity:0.25"
+     transform="matrix(0.3306348,0,0,0.33304978,28.138415,-43.280664)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-41-9-4-3-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-2-6-4-9-97"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-1-2-9-5-20"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,45.120664,-16.917718)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-5-9-7-3-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-1-3-4-8-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-3-1-9-0-3"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,33.96323,-16.754833)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-0-1-2-0-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-8-9-8-0-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-2-3-4-31-42"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,27.656855,-16.754833)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-25-9-3-0-40"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-62-2-4-5-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-36-3-3-6-3"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,22.644093,-17.243484)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-22-9-8-9-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-33-5-9-5-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-9-5-3-9-5"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,13.674394,-14.879983)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-7-1-2-1-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-1-3-3-8-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-1-0-0-11-9"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,3.8010506,-17.978152)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-5-2-3-0-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-33-2-6-3-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-0-9-7-4-3"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,9.4701406,-16.834579)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-1-6-2-5-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-8-40-8-9-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g5526"
+     style="opacity:0.50000006"
+     transform="matrix(0.3306348,0,0,0.33304978,34.666356,13.995875)">
+    <path
+       transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506-2"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g5526-9"
+     style="opacity:0.50000006"
+     transform="matrix(0.3306348,0,0,0.33304978,56.878742,24.22593)">
+    <path
+       transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506-4"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506-2-72"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g5526-5"
+     style="opacity:0.50000006"
+     transform="matrix(0.3306348,0,0,0.33304978,51.047372,3.9550038)">
+    <path
+       transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506-6"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506-2-3"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g5526-5-8"
+     style="opacity:0.50000006"
+     transform="matrix(0.3306348,0,0,0.33304978,60.711839,14.637581)">
+    <path
+       transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506-6-0"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506-2-3-8"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-6-48-4"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,31.336951,9.611353)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-15-72-2"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-0-2-59"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-85-9-64"
+     style="opacity:0.25"
+     transform="matrix(0.16531741,0,0,0.16652489,21.710355,9.8498016)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-3-0-38"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-9-1-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-4-2-9-1"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,58.391274,4.1159408)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-41-9-5-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-2-6-7-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-50-1-4-9"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,37.924304,2.5034798)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-18-8-2-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-40-7-4-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-7-4-3-1"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,34.617531,30.316007)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-79-9-95-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-7-9-87-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-1-2-0-2"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,41.409015,30.478888)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-5-9-8-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-1-3-7-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-3-1-4-4"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,52.566454,30.641772)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-0-1-1-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-8-9-5-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-2-3-41-4"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,58.872834,30.641772)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-25-9-7-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-62-2-7-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-9-4-0-7"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,23.13669,30.316007)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-6-5-4-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-82-7-0-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-96-3-4-4"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,15.945714,30.395752)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-1-2-4-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-5-4-2-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-8-7-9-0-0"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,73.658914,-2.0538032)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-4-4-0-7-5"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-4-0-8-0-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-7-2-4-0-5"
+     style="opacity:0.25"
+     transform="matrix(-0.3306348,0,0,0.33304978,50.219093,-2.5145072)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-2-2-8-6-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-83-4-6-6-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-85-6-7-8"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,25.317808,25.383154)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-3-8-7-0"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-9-4-4-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-8-6-2-4-5"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,34.94719,24.874853)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-7-15-7-8-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-3-0-6-2-1"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-08-8-0-2"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,30.571714,23.412296)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-5-6-9-4"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-9-7-5-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-76-9-1-5-8"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,47.065316,24.552478)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-55-7-1-0-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-0-9-7-6-8"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-6-7-8-1-7"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,55.644734,24.834541)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-2-6-7-1-3"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-6-3-4-9-7"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g3199-74-0-6-7-1-6-2"
+     style="opacity:0.25"
+     transform="matrix(-0.16531741,0,0,0.16652489,16.256332,24.798498)">
+    <path
+       transform="matrix(0.91315788,0,0,0.96388888,38.107432,0.16345667)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-0-8-6-1-8-6-9"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.2175438,0,0,1.2851852,31.33091,-53.854817)"
+       d="m 25.590778,168.06917 c 0,1.71892 -1.47088,3.11239 -3.285303,3.11239 -1.814422,0 -3.285302,-1.39347 -3.285302,-3.11239 0,-1.71893 1.47088,-3.11239 3.285302,-3.11239 1.814423,0 3.285303,1.39346 3.285303,3.11239 z"
+       sodipodi:ry="3.1123919"
+       sodipodi:rx="3.2853026"
+       sodipodi:cy="168.06917"
+       sodipodi:cx="22.305475"
+       id="path3125-5-36-27-2-19-6-1-0-6"
+       style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:export-ydpi="90"
+     inkscape:export-xdpi="90"
+     inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/g5366.png"
+     id="g5526-9-3"
+     style="opacity:0.50000006"
+     transform="matrix(0.3306348,0,0,0.33304978,26.081184,27.089171)">
+    <path
+       transform="matrix(0.67127979,0,0,0.69614201,-155.90191,-33.181135)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506-4-8"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.51636907,0,0,0.53549385,-129.77906,-10.787294)"
+       d="m 180.51874,138.67435 c 0,5.15678 -4.33523,9.33717 -9.683,9.33717 -5.34777,0 -9.683,-4.18039 -9.683,-9.33717 0,-5.15678 4.33523,-9.33718 9.683,-9.33718 5.34777,0 9.683,4.1804 9.683,9.33718 z"
+       sodipodi:ry="9.3371754"
+       sodipodi:rx="9.6829967"
+       sodipodi:cy="138.67435"
+       sodipodi:cx="170.83574"
+       id="path5506-2-72-9"
+       style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+       sodipodi:type="arc" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Cake/plant3.svg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,496 @@
+<?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"
+   id="svg3039"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="160"
+   height="155"
+   sodipodi:docname="plant3.svg"
+   inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Cake/plant3.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata3045">
+    <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>
+  <defs
+     id="defs3043">
+    <filter
+       color-interpolation-filters="sRGB"
+       x="-.043297"
+       y="-.2136"
+       width="1.0866"
+       height="1.4272"
+       id="filter4407">
+      <feGaussianBlur
+         stdDeviation="2.490299"
+         id="feGaussianBlur4409" />
+    </filter>
+    <linearGradient
+       y2="268.66971"
+       x2="426.23254"
+       y1="204.98993"
+       x1="427.62885"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8517"
+       xlink:href="#linearGradient8252"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="268.66971"
+       x2="426.23254"
+       y1="204.98993"
+       x1="427.62885"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8515"
+       xlink:href="#linearGradient8252-1"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8252-1"
+       inkscape:collect="always">
+      <stop
+         id="stop8254-6"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop8256-2"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       y2="268.66971"
+       x2="426.23254"
+       y1="204.98993"
+       x1="427.62885"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8275-6"
+       xlink:href="#linearGradient8252-1"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="268.66971"
+       x2="426.23254"
+       y1="204.98993"
+       x1="427.62885"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8275"
+       xlink:href="#linearGradient8252"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8252"
+       inkscape:collect="always">
+      <stop
+         id="stop8254"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop8256"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="522"
+     id="namedview3041"
+     showgrid="false"
+     inkscape:zoom="1.6047001"
+     inkscape:cx="25.054382"
+     inkscape:cy="87.976501"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g4017" />
+  <g
+     transform="matrix(0.81536171,0,0,0.78402066,-192.92462,-197.62646)"
+     id="layer1">
+    <g
+       transform="matrix(1.3357,0,0,1.3357,-80.475,-153.68)"
+       id="g4413">
+      <g
+         id="g4017">
+        <g
+           id="g3325"
+           transform="matrix(0.98101236,0,0,0.98089891,5.6796288,5.3066132)"
+           inkscape:export-filename="/home/randi/.hedgewars/Data/Themes/Candy/Cupcake.png"
+           inkscape:export-xdpi="90"
+           inkscape:export-ydpi="90">
+          <g
+             style="fill:#550000;stroke:none"
+             id="g3181-5"
+             transform="matrix(1.0561507,0,0,1.0229042,-16.517642,-5.3981329)">
+            <path
+               style="fill:#550000;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path4311-0"
+               d="m 239.75,361.44 c 0,0 14.391,-12.559 69.17,-12.718 54.78,-0.16 71.58,12.72 71.58,12.72 l -58.065,45.693 -63.118,-11.347 z" />
+            <path
+               sodipodi:nodetypes="cccssccc"
+               style="fill:#550000;fill-opacity:1;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path45037-3"
+               d="m 257.21259,397.21885 c 46.19064,19.08183 22.06179,20.86412 91.41922,4.01305 0.28255,-7.37693 13.8267,-18.19666 26.75563,-31.69146 0,0 7.96375,-0.38756 6.34162,-6.97959 -3.26891,-13.28431 -16.65694,-33.51922 -67.67303,-34.77009 -88.49126,-2.16972 -73.87335,42.28307 -73.87335,42.28307 -2.49036,-1.0535 18.23983,17.48832 25.05691,29.15154 z" />
+            <path
+               sodipodi:nodetypes="ccccc"
+               style="fill:#550000;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path3339-7"
+               d="M 240.94588,365.19765 260,442.36 c 1.5922,9.2743 95.513,10.7 100,0 l 20.94588,-78.10823 c -19.775,13.599 -131.76471,9.30364 -140,0.94588 z" />
+            <path
+               sodipodi:nodetypes="ccccccccccc"
+               style="fill:#550000;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path45039-0"
+               d="m 306.58266,327.51 c -5.1148,0.009 -9.7347,0.30313 -13.905,0.84255 -2.3762,2.9958 -4.7331,5.9975 -3.8492,9.8121 0.61413,4.3865 -1.6501,9.4366 2.0708,13.173 2.4188,3.7515 6.6208,5.9503 10.324,8.7385 1.0226,0.77309 -8.9487,3.5726 3.2942,1.9692 32.48042,8.85836 -30.60363,57.50008 58.9821,30.3128 -0.58687,-7.4141 -1.7874,-12.996 -4.7755,-16.399 0,0 12.979,-46.496 -47.36,-48.377 -1.6395,-0.0512 -3.2327,-0.075 -4.7802,-0.0722 z" />
+            <path
+               style="fill:#550000;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path4130-1"
+               d="m 346.66,447.46 16.737,-79.758 -17.583,2.152 -11.042,78.989 z" />
+            <g
+               style="fill:#550000;stroke:none"
+               id="g4122-1">
+              <path
+                 style="fill:#550000;stroke:none"
+                 inkscape:connector-curvature="0"
+                 id="path45043-7"
+                 d="m 253.2302,351.1 c -3.1512,-3.1482 2.7164,-10.793 10.757,-17.022 8.9334,-6.9213 21.82,-15.679 40.229,-16.65 55.847,-2.9432 59.535,44.478 61.472,49.318 5.389,13.463 -0.35921,15.662 -7.232,13.945 -5.0478,-1.2608 -1.3238,-16.671 -7.9553,-25.509 -1.8808,26.178 15.18,38.573 3.4234,45.416 -17.643,10.27 -17.692,-24.087 -18.611,-41.505 -0.38091,-7.2225 -3.0174,-10.958 -7.7745,-15.816 8.6785,16.326 4.8816,29.25 -9.2209,29.25 -15.217,-6.4932 -3.9718,-14.871 -9.4017,-23.809 -8.9367,-7.3598 -12.088,3.9092 -27.482,-1.3605 -4.3392,11.931 -8.903,13.669 -13.018,12.244 -7.7931,-2.6973 -6.1286,-9.8522 1.618,-19.568 0,0 -13.883,13.984 -16.805,11.065 z" />
+              <path
+                 sodipodi:nodetypes="csccccccccsccccssccccccsscccccccccccccccccc"
+                 style="opacity:0.43999999;fill:#550000;stroke:none"
+                 inkscape:connector-curvature="0"
+                 id="path45045-7"
+                 d="m 256.76,343.32 c -0.4625,0.0474 -1.2762,1.0117 -1.9549,2.3543 -0.77561,1.5343 -1.0799,2.9853 -0.67801,3.2418 0.40185,0.25653 1.3601,-0.77743 2.1357,-2.3118 0.77562,-1.5343 1.0742,-2.9906 0.67236,-3.2471 -0.0502,-0.0321 -0.10907,-0.044 -0.17516,-0.0372 z m 11.927,1.9185 c -2.6507,3.4584 -3.1248,7.7113 -2.712,9.5234 0.97692,4.2891 5.0183,3.2474 7.0512,2.2958 -1.773,-1.4304 -2.86542,-1.18223 -4.48396,-3.29627 -1.29071,-1.68586 2.04656,-6.15383 0.14477,-8.52303 z m 57.54,3.5713 c -0.19586,0 -0.39173,0.0283 -0.5876,0.085 -0.44055,2.6841 1.3501,4.4513 1.5368,5.527 0.47103,2.7138 -0.42884,5.8874 0.1808,6.8024 0.90766,1.3623 5.253,-1.8152 -0.6328,-11.139 -0.0841,-0.12821 -0.0664,-0.49567 0.0904,-1.1904 -0.19587,-0.0567 -0.39174,-0.085 -0.58761,-0.085 z m 20.012,8.5562 c -0.1298,0.008 -0.26373,0.0501 -0.3955,0.0744 -0.42815,0.42948 -0.89744,0.96309 -0.85881,1.9557 0.0863,2.21877 6.18787,19.65085 7.49575,30.0698 1.03818,8.2704 -2.29802,8.69957 1.1407,8.89997 6.46342,-3.23958 -7.56547,-38.65977 -7.32565,-39.98977 0.0577,-0.32006 0.20468,-0.59816 0.3164,-0.89283 -0.11744,-0.097 -0.2431,-0.12446 -0.3729,-0.11691 z m 14.43,2.7741 -0.15821,6.9512 c 0.12326,0.2638 0.13141,0.60293 0.94921,0.38263 3.3839,-0.91152 0.21188,-4.6721 0.3164,-6.845 -0.26366,-0.30446 -0.84374,-0.4364 -1.1074,-0.48892 z m -47.071,2.3224 c -0.10881,-0.004 -0.22439,0.009 -0.34465,0.0372 -0.49327,1.9076 0.78664,4.9326 2.3052,5.9946 2.3587,1.6496 6.643,1.8995 8.1813,1.9982 -1.7579,-2.327 -3.9226,-1.568 -5.9212,-2.9336 -2.1496,-1.4686 -2.5884,-5.034 -4.2206,-5.0965 z" />
+            </g>
+            <path
+               style="fill:#550000;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path4126-8"
+               d="m 353.79,369.28 c 4.7122,-0.43242 9.2099,-1.2938 13.646,-2.2787 l 4.1519,10.846 -7.2398,8.8839 -9.5594,-4.6931 z" />
+            <path
+               style="fill:#550000;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path4128-0"
+               d="m 273.51,447.48821 -16.737,-78.13091 17.583,2.1081 11.042,77.3776 z" />
+            <path
+               style="fill:#550000;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path4132-1"
+               d="m 363.38,367.84 c -3.1272,0.6146 -6.31,1.1362 -9.5938,1.4375 l 1,12.75 5.0938,2.5 3.5,-16.688 z" />
+            <path
+               style="fill:#550000;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path4137-0"
+               d="m 294.74,372.51883 30.278,0.1587 -5.6525,77.09309 -17.67,-0.046 z" />
+            <path
+               style="fill:#550000;fill-opacity:1;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path4143-4"
+               d="m 239.75,361.44 0.65625,2.5 c 7.594,5.5666 43.68,8.8855 77.719,8.5 -1.459,-0.63387 -2.6556,-1.2692 -3.6562,-1.9375 -33.993,0.12691 -68.951,-3.3857 -74.719,-9.0625 z m 140.75,0 c -3.0516,2.0878 -8.253,3.7912 -14.875,5.125 0.017,0.0479 0.0458,0.14582 0.0625,0.1875 0.23412,0.58489 0.40085,1.1133 0.59375,1.6562 5.8946,-1.2281 10.635,-2.749 13.625,-4.5938 z m -13.719,4.8438 c -0.934,0.49212 -14.324,2.355 -15.625,2.4062 0.11286,0.66505 0.24428,1.3274 0.375,1.9688 1.498,0.18568 14.457,-2.1665 15.469,-2.4375 -0.0666,-0.63167 -0.13941,-1.2851 -0.21875,-1.9375 z m -31.094,3.625 c -2.8718,0.15497 -5.8142,0.28181 -8.7812,0.375 -1.7242,1.1386 -3.8734,1.8597 -6.4062,2.125 5.2606,-0.087 10.455,-0.25744 15.469,-0.53125 -0.0417,-0.66026 -0.0884,-1.3173 -0.125,-1.9688 -0.0526,0.003 -0.1036,-0.003 -0.15625,0 z" />
+            <g
+               style="fill:#550000;stroke:none"
+               transform="matrix(0.27608473,0,0,0.28018334,274.26436,267.29107)"
+               id="g8483-8">
+              <g
+                 style="fill:#550000;stroke:none"
+                 id="g8452-2">
+                <g
+                   style="fill:#550000;stroke:none"
+                   id="g8328-0">
+                  <path
+                     style="fill:#550000;fill-opacity:1;stroke:none"
+                     d="m 95.079019,155.31595 c -0.81084,-0.56793 -1.47426,-1.61268 -1.47426,-2.32165 -8.686225,-12.25685 -2.97994,-44.53973 11.276631,-66.295501 23.04038,-41.363086 34.90329,-59.362407 52.40315,-80.8672333 0,-0.789521 3.87453,-2.7120646 4.8087,-1.543135 1.62051,2.0277505 1.7737,27.2744463 0.50585,32.4369983 -0.97855,2.938667 -2.29359,30.101286 -2.29092,47.320046 1.06061,24.013215 1.98279,37.973305 10.24299,58.905925 0,1.4538 -1.97715,3.4472 -3.41909,3.4472 -1.29033,0 -3.87755,-2.76314 -3.87755,-4.14119 -6.30398,-12.7556 -7.89374,-27.68637 -8.57163,-41.297 -0.7349,-15.090058 1.49015,-65.405474 2.63924,-68.925239 0.97342,-2.981682 0.32885,-14.986129 -0.55192,-14.986129 -0.39762,0 -0.91241,0.596998 -1.144,1.326663 -26.51904,45.013151 -73.263766,94.304055 -57.0465,130.676215 1.16444,0 3.92112,4.22079 2.96164,6.01359 -0.85146,1.59098 -4.35466,1.72675 -6.462371,0.25044 z"
+                     id="path8198-0"
+                     inkscape:connector-curvature="0"
+                     sodipodi:nodetypes="ccccscccsccssccscc" />
+                  <g
+                     style="fill:#550000;stroke:none"
+                     id="g8266-6-7"
+                     transform="translate(-260.1692,-20.787228)">
+                    <g
+                       style="fill:#550000;stroke:none"
+                       id="g8204-2-3-1"
+                       transform="translate(146.3651,15.832825)">
+                      <path
+                         sodipodi:type="arc"
+                         style="fill:#550000;fill-opacity:1;stroke:none"
+                         id="path7404-6-2-5-8"
+                         sodipodi:cx="179.81747"
+                         sodipodi:cy="197.43155"
+                         sodipodi:rx="46.310299"
+                         sodipodi:ry="48.396351"
+                         d="m 226.12777,197.43155 c 0,26.72857 -20.73382,48.39635 -46.3103,48.39635 -25.57647,0 -46.31029,-21.66778 -46.31029,-48.39635 0,-26.72857 20.73382,-48.39635 46.31029,-48.39635 25.57648,0 46.3103,21.66778 46.3103,48.39635 z"
+                         transform="matrix(1.0359105,0,0,0.99125908,95.314222,-2.4256205)" />
+                      <path
+                         style="fill:#550000;fill-opacity:1;stroke:none"
+                         d="m 249.52909,183.97216 c -2.21011,-8.40204 -0.72441,-18.73246 5.21989,-23.63279 11.52924,-9.50441 34.6493,-8.29738 43.79512,-1.0594 1.09359,1.09359 0.36815,2.17799 -1.45704,2.17799 -21.24091,-0.12711 -28.81853,12.12814 -45.2196,22.04515 -0.2542,0 -0.46219,0.42215 -0.46219,0.9381 0,0.62539 -0.31269,0.93809 -0.93809,0.93809 -0.72962,0 -0.93809,-0.3127 -0.93809,-1.40714 z"
+                         id="path8200-7-0-2"
+                         inkscape:connector-curvature="0"
+                         sodipodi:nodetypes="cscccssc" />
+                    </g>
+                    <path
+                       sodipodi:nodetypes="sccssssss"
+                       inkscape:connector-curvature="0"
+                       id="path8264-9-6"
+                       d="m 423.84104,258.77802 c -5.99538,-0.51113 -13.2837,-2.53986 -18.34994,-5.10777 22.53424,-3.33287 36.46632,-4.83964 64.38567,-17.68296 -4.08366,6.34267 -9.63878,11.78351 -16.3795,15.93763 -1.38343,0.85257 -2.60144,1.55012 -2.70668,1.55012 -0.10524,0 -1.28671,0.50002 -2.62549,1.11115 -3.69785,1.688 -7.6922,2.98094 -10.42042,3.37299 -0.71519,0.10277 -2.0466,0.31946 -2.95868,0.48154 -2.58957,0.46016 -7.66803,0.61666 -10.94496,0.3373 z"
+                       style="opacity:0.30040002;fill:#550000;stroke:none" />
+                  </g>
+                  <g
+                     style="fill:#550000;stroke:none"
+                     id="g8266-1"
+                     transform="translate(-336.95413,-9.7447695)">
+                    <g
+                       style="fill:#550000;stroke:none"
+                       id="g8204-2-1"
+                       transform="translate(146.3651,15.832825)">
+                      <path
+                         sodipodi:type="arc"
+                         style="fill:#550000;fill-opacity:1;stroke:none"
+                         id="path7404-6-2-8"
+                         sodipodi:cx="179.81747"
+                         sodipodi:cy="197.43155"
+                         sodipodi:rx="46.310299"
+                         sodipodi:ry="48.396351"
+                         d="m 226.12777,197.43155 c 0,26.72857 -20.73382,48.39635 -46.3103,48.39635 -25.57647,0 -46.31029,-21.66778 -46.31029,-48.39635 0,-26.72857 20.73382,-48.39635 46.31029,-48.39635 25.57648,0 46.3103,21.66778 46.3103,48.39635 z"
+                         transform="matrix(1.0359105,0,0,0.99125908,95.314222,-2.4256205)" />
+                      <path
+                         style="fill:#550000;fill-opacity:1;stroke:none"
+                         d="m 249.52909,183.97216 c -2.21011,-8.40204 -0.72441,-18.73246 5.21989,-23.63279 11.52924,-9.50441 34.6493,-8.29738 43.79512,-1.0594 1.09359,1.09359 0.36815,2.17799 -1.45704,2.17799 -21.24091,-0.12711 -28.81853,12.12814 -45.2196,22.04515 -0.2542,0 -0.46219,0.42215 -0.46219,0.9381 0,0.62539 -0.31269,0.93809 -0.93809,0.93809 -0.72962,0 -0.93809,-0.3127 -0.93809,-1.40714 z"
+                         id="path8200-7-8"
+                         inkscape:connector-curvature="0"
+                         sodipodi:nodetypes="cscccssc" />
+                    </g>
+                    <path
+                       sodipodi:nodetypes="sccssssss"
+                       inkscape:connector-curvature="0"
+                       id="path8264-95"
+                       d="m 423.84104,258.77802 c -5.99538,-0.51113 -13.2837,-2.53986 -18.34994,-5.10777 22.53424,-3.33287 36.46632,-4.83964 64.38567,-17.68296 -4.08366,6.34267 -9.63878,11.78351 -16.3795,15.93763 -1.38343,0.85257 -2.60144,1.55012 -2.70668,1.55012 -0.10524,0 -1.28671,0.50002 -2.62549,1.11115 -3.69785,1.688 -7.6922,2.98094 -10.42042,3.37299 -0.71519,0.10277 -2.0466,0.31946 -2.95868,0.48154 -2.58957,0.46016 -7.66803,0.61666 -10.94496,0.3373 z"
+                       style="opacity:0.30040002;fill:#550000;stroke:none" />
+                  </g>
+                </g>
+              </g>
+            </g>
+            <path
+               sodipodi:nodetypes="csssssscc"
+               inkscape:connector-curvature="0"
+               id="path3991-0"
+               d="m 300.28901,340.70446 c -9.07151,-1.00813 -15.74693,-3.92052 -15.74693,-6.87016 0,-1.11149 2.61293,-3.13804 5.35595,-4.154 4.50153,-1.66727 11.78916,3.34925 18.72092,3.26327 6.40202,-0.0794 12.44263,-5.38126 17.05389,-4.02913 5.86981,1.72117 8.5601,3.85723 7.6226,6.05223 -0.22474,0.52623 -1.34618,1.49463 -2.49205,2.15198 -5.82151,3.33962 -18.9002,4.87652 -30.51438,3.58581 z"
+               style="fill:#550000;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="ccccc"
+               style="fill:#550000;stroke:none"
+               inkscape:connector-curvature="0"
+               id="path3339-5-3"
+               d="m 241.52892,365.59397 19.05412,77.16235 c 1.5922,9.27431 95.513,10.7 100,0 l 20.94588,-78.10823 c -19.775,13.599 -131.76471,9.30364 -140,0.94588 z" />
+            <path
+               sodipodi:nodetypes="ccccccccc"
+               inkscape:connector-curvature="0"
+               id="path4013-1"
+               d="m 336.51972,372.01397 0,-3.90178 5.3206,0 5.3206,0 1.41883,4.13825 0.82765,3.54706 -7.56708,0.11824 -5.3206,0 z"
+               style="fill:#550000;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="ccccccccc"
+               inkscape:connector-curvature="0"
+               id="path4015-3"
+               d="m 348.36718,372.18596 -1.05841,-3.81688 0.80379,0.0225 1.24707,-0.59121 1.0584,3.81687 1.0584,3.81687 -1.00005,0.1546 -1.05081,0.41409 z"
+               style="fill:#550000;fill-opacity:1;stroke:none" />
+          </g>
+          <g
+             id="g3181">
+            <path
+               style="fill:#d1655e"
+               inkscape:connector-curvature="0"
+               id="path4311"
+               d="m 239.75,361.44 c 0,0 14.391,-12.559 69.17,-12.718 54.78,-0.16 71.58,12.72 71.58,12.72 l -58.065,45.693 -63.118,-11.347 z" />
+            <path
+               sodipodi:nodetypes="cccssccc"
+               style="fill:#ffccff;fill-opacity:1;stroke:#8c283c;stroke-width:3.8488555;stroke-linecap:round;stroke-linejoin:round"
+               inkscape:connector-curvature="0"
+               id="path45037"
+               d="m 257.21259,397.21885 c 46.19064,19.08183 22.06179,20.86412 91.41922,4.01305 0.28255,-7.37693 13.8267,-18.19666 26.75563,-31.69146 0,0 7.96375,-0.38756 6.34162,-6.97959 -3.26891,-13.28431 -16.65694,-33.51922 -67.67303,-34.77009 -88.49126,-2.16972 -73.87335,42.28307 -73.87335,42.28307 -2.49036,-1.0535 18.23983,17.48832 25.05691,29.15154 z" />
+            <path
+               sodipodi:nodetypes="ccccc"
+               style="fill:#da4a49;stroke:#8c283c;stroke-width:2.99468446;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+               inkscape:connector-curvature="0"
+               id="path3339"
+               d="M 240.94588,365.19765 260,442.36 c 1.5922,9.2743 95.513,10.7 100,0 l 20.94588,-78.10823 c -19.775,13.599 -131.76471,9.30364 -140,0.94588 z" />
+            <path
+               sodipodi:nodetypes="ccccccccccc"
+               style="fill:#da4a49"
+               inkscape:connector-curvature="0"
+               id="path45039"
+               d="m 306.58266,327.51 c -5.1148,0.009 -9.7347,0.30313 -13.905,0.84255 -2.3762,2.9958 -4.7331,5.9975 -3.8492,9.8121 0.61413,4.3865 -1.6501,9.4366 2.0708,13.173 2.4188,3.7515 6.6208,5.9503 10.324,8.7385 1.0226,0.77309 -8.9487,3.5726 3.2942,1.9692 32.48042,8.85836 -30.60363,57.50008 58.9821,30.3128 -0.58687,-7.4141 -1.7874,-12.996 -4.7755,-16.399 0,0 12.979,-46.496 -47.36,-48.377 -1.6395,-0.0512 -3.2327,-0.075 -4.7802,-0.0722 z" />
+            <path
+               style="fill:#de6f6f"
+               inkscape:connector-curvature="0"
+               id="path4130"
+               d="m 346.66,447.46 16.737,-79.758 -17.583,2.152 -11.042,78.989 z" />
+            <g
+               id="g4122">
+              <path
+                 style="fill:#240203"
+                 inkscape:connector-curvature="0"
+                 id="path45043"
+                 d="m 253.2302,351.1 c -3.1512,-3.1482 2.7164,-10.793 10.757,-17.022 8.9334,-6.9213 21.82,-15.679 40.229,-16.65 55.847,-2.9432 59.535,44.478 61.472,49.318 5.389,13.463 -0.35921,15.662 -7.232,13.945 -5.0478,-1.2608 -1.3238,-16.671 -7.9553,-25.509 -1.8808,26.178 15.18,38.573 3.4234,45.416 -17.643,10.27 -17.692,-24.087 -18.611,-41.505 -0.38091,-7.2225 -3.0174,-10.958 -7.7745,-15.816 8.6785,16.326 4.8816,29.25 -9.2209,29.25 -15.217,-6.4932 -3.9718,-14.871 -9.4017,-23.809 -8.9367,-7.3598 -12.088,3.9092 -27.482,-1.3605 -4.3392,11.931 -8.903,13.669 -13.018,12.244 -7.7931,-2.6973 -6.1286,-9.8522 1.618,-19.568 0,0 -13.883,13.984 -16.805,11.065 z" />
+              <path
+                 sodipodi:nodetypes="csccccccccsccccssccccccsscccccccccccccccccc"
+                 style="opacity:0.43999999;fill:#ffffff"
+                 inkscape:connector-curvature="0"
+                 id="path45045"
+                 d="m 256.76,343.32 c -0.4625,0.0474 -1.2762,1.0117 -1.9549,2.3543 -0.77561,1.5343 -1.0799,2.9853 -0.67801,3.2418 0.40185,0.25653 1.3601,-0.77743 2.1357,-2.3118 0.77562,-1.5343 1.0742,-2.9906 0.67236,-3.2471 -0.0502,-0.0321 -0.10907,-0.044 -0.17516,-0.0372 z m 11.927,1.9185 c -2.6507,3.4584 -3.1248,7.7113 -2.712,9.5234 0.97692,4.2891 5.0183,3.2474 7.0512,2.2958 -1.773,-1.4304 -2.86542,-1.18223 -4.48396,-3.29627 -1.29071,-1.68586 2.04656,-6.15383 0.14477,-8.52303 z m 57.54,3.5713 c -0.19586,0 -0.39173,0.0283 -0.5876,0.085 -0.44055,2.6841 1.3501,4.4513 1.5368,5.527 0.47103,2.7138 -0.42884,5.8874 0.1808,6.8024 0.90766,1.3623 5.253,-1.8152 -0.6328,-11.139 -0.0841,-0.12821 -0.0664,-0.49567 0.0904,-1.1904 -0.19587,-0.0567 -0.39174,-0.085 -0.58761,-0.085 z m 20.012,8.5562 c -0.1298,0.008 -0.26373,0.0501 -0.3955,0.0744 -0.42815,0.42948 -0.89744,0.96309 -0.85881,1.9557 0.0863,2.21877 6.18787,19.65085 7.49575,30.0698 1.03818,8.2704 -2.29802,8.69957 1.1407,8.89997 6.46342,-3.23958 -7.56547,-38.65977 -7.32565,-39.98977 0.0577,-0.32006 0.20468,-0.59816 0.3164,-0.89283 -0.11744,-0.097 -0.2431,-0.12446 -0.3729,-0.11691 z m 14.43,2.7741 -0.15821,6.9512 c 0.12326,0.2638 0.13141,0.60293 0.94921,0.38263 3.3839,-0.91152 0.21188,-4.6721 0.3164,-6.845 -0.26366,-0.30446 -0.84374,-0.4364 -1.1074,-0.48892 z m -47.071,2.3224 c -0.10881,-0.004 -0.22439,0.009 -0.34465,0.0372 -0.49327,1.9076 0.78664,4.9326 2.3052,5.9946 2.3587,1.6496 6.643,1.8995 8.1813,1.9982 -1.7579,-2.327 -3.9226,-1.568 -5.9212,-2.9336 -2.1496,-1.4686 -2.5884,-5.034 -4.2206,-5.0965 z" />
+            </g>
+            <path
+               style="fill:#da4a49"
+               inkscape:connector-curvature="0"
+               id="path4126"
+               d="m 353.79,369.28 c 4.7122,-0.43242 9.2099,-1.2938 13.646,-2.2787 l 4.1519,10.846 -7.2398,8.8839 -9.5594,-4.6931 z" />
+            <path
+               style="fill:#ff8080"
+               inkscape:connector-curvature="0"
+               id="path4128"
+               d="m 273.51,447.48821 -16.737,-78.13091 17.583,2.1081 11.042,77.3776 z" />
+            <path
+               style="fill:#de6f6f"
+               inkscape:connector-curvature="0"
+               id="path4132"
+               d="m 363.38,367.84 c -3.1272,0.6146 -6.31,1.1362 -9.5938,1.4375 l 1,12.75 5.0938,2.5 3.5,-16.688 z" />
+            <path
+               style="fill:#ff8080"
+               inkscape:connector-curvature="0"
+               id="path4137"
+               d="m 294.74,372.51883 30.278,0.1587 -5.6525,77.09309 -17.67,-0.046 z" />
+            <path
+               style="fill:#8c283c;fill-opacity:1"
+               inkscape:connector-curvature="0"
+               id="path4143"
+               d="m 239.75,361.44 0.65625,2.5 c 7.594,5.5666 43.68,8.8855 77.719,8.5 -1.459,-0.63387 -2.6556,-1.2692 -3.6562,-1.9375 -33.993,0.12691 -68.951,-3.3857 -74.719,-9.0625 z m 140.75,0 c -3.0516,2.0878 -8.253,3.7912 -14.875,5.125 0.017,0.0479 0.0458,0.14582 0.0625,0.1875 0.23412,0.58489 0.40085,1.1133 0.59375,1.6562 5.8946,-1.2281 10.635,-2.749 13.625,-4.5938 z m -13.719,4.8438 c -0.934,0.49212 -14.324,2.355 -15.625,2.4062 0.11286,0.66505 0.24428,1.3274 0.375,1.9688 1.498,0.18568 14.457,-2.1665 15.469,-2.4375 -0.0666,-0.63167 -0.13941,-1.2851 -0.21875,-1.9375 z m -31.094,3.625 c -2.8718,0.15497 -5.8142,0.28181 -8.7812,0.375 -1.7242,1.1386 -3.8734,1.8597 -6.4062,2.125 5.2606,-0.087 10.455,-0.25744 15.469,-0.53125 -0.0417,-0.66026 -0.0884,-1.3173 -0.125,-1.9688 -0.0526,0.003 -0.1036,-0.003 -0.15625,0 z" />
+            <g
+               transform="matrix(0.27608473,0,0,0.28018334,274.26436,267.29107)"
+               id="g8483">
+              <g
+                 id="g8452">
+                <g
+                   id="g8328">
+                  <path
+                     style="fill:#502d16;fill-opacity:1;stroke:#28170b"
+                     d="m 95.079019,155.31595 c -0.81084,-0.56793 -1.47426,-1.61268 -1.47426,-2.32165 -8.686225,-12.25685 -2.97994,-44.53973 11.276631,-66.295501 23.04038,-41.363086 34.90329,-59.362407 52.40315,-80.8672333 0,-0.789521 3.87453,-2.7120646 4.8087,-1.543135 1.62051,2.0277505 1.7737,27.2744463 0.50585,32.4369983 -0.97855,2.938667 -2.29359,30.101286 -2.29092,47.320046 1.06061,24.013215 1.98279,37.973305 10.24299,58.905925 0,1.4538 -1.97715,3.4472 -3.41909,3.4472 -1.29033,0 -3.87755,-2.76314 -3.87755,-4.14119 -6.30398,-12.7556 -7.89374,-27.68637 -8.57163,-41.297 -0.7349,-15.090058 1.49015,-65.405474 2.63924,-68.925239 0.97342,-2.981682 0.32885,-14.986129 -0.55192,-14.986129 -0.39762,0 -0.91241,0.596998 -1.144,1.326663 -26.51904,45.013151 -73.263766,94.304055 -57.0465,130.676215 1.16444,0 3.92112,4.22079 2.96164,6.01359 -0.85146,1.59098 -4.35466,1.72675 -6.462371,0.25044 z"
+                     id="path8198"
+                     inkscape:connector-curvature="0"
+                     sodipodi:nodetypes="ccccscccsccssccscc" />
+                  <g
+                     id="g8266-6"
+                     transform="translate(-260.1692,-20.787228)">
+                    <g
+                       id="g8204-2-3"
+                       transform="translate(146.3651,15.832825)">
+                      <path
+                         sodipodi:type="arc"
+                         style="fill:#990000;fill-opacity:1;stroke:#660000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+                         id="path7404-6-2-5"
+                         sodipodi:cx="179.81747"
+                         sodipodi:cy="197.43155"
+                         sodipodi:rx="46.310299"
+                         sodipodi:ry="48.396351"
+                         d="m 226.12777,197.43155 c 0,26.72857 -20.73382,48.39635 -46.3103,48.39635 -25.57647,0 -46.31029,-21.66778 -46.31029,-48.39635 0,-26.72857 20.73382,-48.39635 46.31029,-48.39635 25.57648,0 46.3103,21.66778 46.3103,48.39635 z"
+                         transform="matrix(1.0359105,0,0,0.99125908,95.314222,-2.4256205)" />
+                      <path
+                         style="fill:#ff0000;fill-opacity:1;stroke:none"
+                         d="m 249.52909,183.97216 c -2.21011,-8.40204 -0.72441,-18.73246 5.21989,-23.63279 11.52924,-9.50441 34.6493,-8.29738 43.79512,-1.0594 1.09359,1.09359 0.36815,2.17799 -1.45704,2.17799 -21.24091,-0.12711 -28.81853,12.12814 -45.2196,22.04515 -0.2542,0 -0.46219,0.42215 -0.46219,0.9381 0,0.62539 -0.31269,0.93809 -0.93809,0.93809 -0.72962,0 -0.93809,-0.3127 -0.93809,-1.40714 z"
+                         id="path8200-7-0"
+                         inkscape:connector-curvature="0"
+                         sodipodi:nodetypes="cscccssc" />
+                    </g>
+                    <path
+                       sodipodi:nodetypes="sccssssss"
+                       inkscape:connector-curvature="0"
+                       id="path8264-9"
+                       d="m 423.84104,258.77802 c -5.99538,-0.51113 -13.2837,-2.53986 -18.34994,-5.10777 22.53424,-3.33287 36.46632,-4.83964 64.38567,-17.68296 -4.08366,6.34267 -9.63878,11.78351 -16.3795,15.93763 -1.38343,0.85257 -2.60144,1.55012 -2.70668,1.55012 -0.10524,0 -1.28671,0.50002 -2.62549,1.11115 -3.69785,1.688 -7.6922,2.98094 -10.42042,3.37299 -0.71519,0.10277 -2.0466,0.31946 -2.95868,0.48154 -2.58957,0.46016 -7.66803,0.61666 -10.94496,0.3373 z"
+                       style="opacity:0.30040002;fill:#1a1a1a;stroke:none" />
+                  </g>
+                  <g
+                     id="g8266"
+                     transform="translate(-336.95413,-9.7447695)">
+                    <g
+                       id="g8204-2"
+                       transform="translate(146.3651,15.832825)">
+                      <path
+                         sodipodi:type="arc"
+                         style="fill:#990000;fill-opacity:1;stroke:#660000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+                         id="path7404-6-2"
+                         sodipodi:cx="179.81747"
+                         sodipodi:cy="197.43155"
+                         sodipodi:rx="46.310299"
+                         sodipodi:ry="48.396351"
+                         d="m 226.12777,197.43155 c 0,26.72857 -20.73382,48.39635 -46.3103,48.39635 -25.57647,0 -46.31029,-21.66778 -46.31029,-48.39635 0,-26.72857 20.73382,-48.39635 46.31029,-48.39635 25.57648,0 46.3103,21.66778 46.3103,48.39635 z"
+                         transform="matrix(1.0359105,0,0,0.99125908,95.314222,-2.4256205)" />
+                      <path
+                         style="fill:#ff0000;fill-opacity:1;stroke:none"
+                         d="m 249.52909,183.97216 c -2.21011,-8.40204 -0.72441,-18.73246 5.21989,-23.63279 11.52924,-9.50441 34.6493,-8.29738 43.79512,-1.0594 1.09359,1.09359 0.36815,2.17799 -1.45704,2.17799 -21.24091,-0.12711 -28.81853,12.12814 -45.2196,22.04515 -0.2542,0 -0.46219,0.42215 -0.46219,0.9381 0,0.62539 -0.31269,0.93809 -0.93809,0.93809 -0.72962,0 -0.93809,-0.3127 -0.93809,-1.40714 z"
+                         id="path8200-7"
+                         inkscape:connector-curvature="0"
+                         sodipodi:nodetypes="cscccssc" />
+                    </g>
+                    <path
+                       sodipodi:nodetypes="sccssssss"
+                       inkscape:connector-curvature="0"
+                       id="path8264"
+                       d="m 423.84104,258.77802 c -5.99538,-0.51113 -13.2837,-2.53986 -18.34994,-5.10777 22.53424,-3.33287 36.46632,-4.83964 64.38567,-17.68296 -4.08366,6.34267 -9.63878,11.78351 -16.3795,15.93763 -1.38343,0.85257 -2.60144,1.55012 -2.70668,1.55012 -0.10524,0 -1.28671,0.50002 -2.62549,1.11115 -3.69785,1.688 -7.6922,2.98094 -10.42042,3.37299 -0.71519,0.10277 -2.0466,0.31946 -2.95868,0.48154 -2.58957,0.46016 -7.66803,0.61666 -10.94496,0.3373 z"
+                       style="opacity:0.30040002;fill:#1a1a1a;stroke:none" />
+                  </g>
+                </g>
+              </g>
+            </g>
+            <path
+               sodipodi:nodetypes="csssssscc"
+               inkscape:connector-curvature="0"
+               id="path3991"
+               d="m 300.28901,340.70446 c -9.07151,-1.00813 -15.74693,-3.92052 -15.74693,-6.87016 0,-1.11149 2.61293,-3.13804 5.35595,-4.154 4.50153,-1.66727 11.78916,3.34925 18.72092,3.26327 6.40202,-0.0794 12.44263,-5.38126 17.05389,-4.02913 5.86981,1.72117 8.5601,3.85723 7.6226,6.05223 -0.22474,0.52623 -1.34618,1.49463 -2.49205,2.15198 -5.82151,3.33962 -18.9002,4.87652 -30.51438,3.58581 z"
+               style="fill:#240203;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="ccccc"
+               style="fill:none;stroke:#8c283c;stroke-width:2.99468446;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+               inkscape:connector-curvature="0"
+               id="path3339-5"
+               d="m 241.52892,365.59397 19.05412,77.16235 c 1.5922,9.27431 95.513,10.7 100,0 l 20.94588,-78.10823 c -19.775,13.599 -131.76471,9.30364 -140,0.94588 z" />
+            <path
+               sodipodi:nodetypes="ccccccccc"
+               inkscape:connector-curvature="0"
+               id="path4013"
+               d="m 336.51972,372.01397 0,-3.90178 5.3206,0 5.3206,0 1.41883,4.13825 0.82765,3.54706 -7.56708,0.11824 -5.3206,0 z"
+               style="fill:#240203;fill-opacity:1;stroke:none" />
+            <path
+               sodipodi:nodetypes="ccccccccc"
+               inkscape:connector-curvature="0"
+               id="path4015"
+               d="m 348.36718,372.18596 -1.05841,-3.81688 0.80379,0.0225 1.24707,-0.59121 1.0584,3.81687 1.0584,3.81687 -1.00005,0.1546 -1.05081,0.41409 z"
+               style="fill:#847172;fill-opacity:1;stroke:none" />
+          </g>
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
--- a/share/hedgewars/Data/Themes/Cake/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Cake/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -1,11 +1,19 @@
-sky = 0, 0, 51
+sky = 14, 5, 36
 border = 255, 200, 90
 water-top = $FF, $DF, $E1
 water-bottom = $FF, $DF, $E1
 water-opacity = $80
+sd-water-top = 92, 5, 0
+sd-water-bottom = 75, 6, 2
+sd-water-opacity = 125
 music = snow.ogg
 clouds = 9
-object = plant1, 3, 83, 215, 92, 35, 1, 0, 0, 250, 190
-object = plant2, 3, 118, 115, 41, 20, 1, 0, 0, 159, 110
-object = plant3, 3, 0, 115, 70, 40, 1, 8, 0, 60, 100
-flakes = 20, 100, 0, 30, 250
+object = Cherry, 1, 12, 181, 108, 9, 1, 3, 1, 124, 168
+object = Gingerbread, 3, 11, 173, 116, 11, 1, 6, 1, 123, 160  
+object = CandyCane, 2, 0, 85, 25, 25, 2, 0, 0, 170, 70, 50, 70, 120, 40
+object = CupCake, 1, 20, 179, 121, 12, 1, 2, 1, 155, 171
+object = IceCream, 2, 0, 257, 45, 12, 1, 8, 1, 150, 236
+object = Lollipop, 2, 222, 120, 43, 15, 1, 0, 0, 220, 111
+spray = Oreo, 2
+spray = Oreo2, 2
+flakes = 55, 40, 99999999, 30, 200
--- a/share/hedgewars/Data/Themes/Castle/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Castle/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -9,4 +9,4 @@
 object = Shield, 3, 0, 165, 163, 2, 1, 0, 0, 163, 140
 object = Sword, 3, 240, 22, 17, 43, 1, 8, 21, 227, 80
 object = Axe, 3, 25, 195, 90, 65, 1, 40, 5, 195, 175
-flakes = 25, 3, 99999999, 0, 750
+flakes = 25, 3, 0, 0, 750
--- a/share/hedgewars/Data/Themes/Cave/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Cave/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -13,4 +13,4 @@
 spray = CrystalSpray01, 2
 spray = CrystalSpray02, 3
 spray = CrystalSpray03, 4
-flakes = 8, 2, 99999999, 0, 1700
+flakes = 8, 2, 0, 0, 1700
--- a/share/hedgewars/Data/Themes/Christmas/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Christmas/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -13,6 +13,6 @@
 object = Snowman, 1, 38, 283, 119, 14, 1, 38, 21, 124, 216
 spray = holly, 4
 spray = holly2, 4
-flakes = 100, 3, 99999999, 100, 300
+flakes = 100, 3, 0, 100, 300
 ice = yes
 snow = yes
--- a/share/hedgewars/Data/Themes/Fruit/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Fruit/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -10,4 +10,4 @@
 object = Watermelon, 1, 87, 272, 77, 10, 1, 21, 2, 242, 219
 object = Banana1, 1, 152, 191, 37, 24, 1, 2, 1, 163, 174
 object = Banana2, 1, 1, 190, 37, 24, 1, 22, 0, 163, 174
-flakes = 20, 3, 999999999, 100, 260
+flakes = 20, 3, 0, 100, 260
--- a/share/hedgewars/Data/Themes/Golf/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Golf/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -19,5 +19,5 @@
 object = Ball, 3, 10, 0, 6, 16, 1, 0, 0, 6, 16
 object = Bag, 1, 65, 0, 129, 44, 1, 0, 71, 234, 81
 spray = Balldirt, 5
-flakes = 55, 40, 99999999, 30, 200
+flakes = 55, 40, 0, 30, 200
 
Binary file share/hedgewars/Data/Themes/Hoggywood/Border.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Hoggywood/CMakeLists.txt	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,6 @@
+file(GLOB images *.png)
+
+install(FILES
+    theme.cfg
+    ${images}
+    DESTINATION ${SHAREPATH}Data/Themes/Hoggywood)
Binary file share/hedgewars/Data/Themes/Hoggywood/Clouds.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/Flake.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/Girder.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/LandBackTex.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/LandTex.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/SDClouds.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/SignL.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/SignR.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/Sky.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/SkyL.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/SkyR.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/camera.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/clapper.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/hogscar.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/horizont.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/horizontL.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/icon.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/icon@2x.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/palm.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/reel.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/reel2.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/star1.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/star2.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/star3.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/star4.png has changed
Binary file share/hedgewars/Data/Themes/Hoggywood/star5.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Themes/Hoggywood/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,22 @@
+sky = 100, 180, 220
+border = 71, 74, 93
+water-top = $54, $5C, $9D
+water-bottom = $34, $3C, $7D
+water-opacity = $80
+music = Rock.ogg
+sd-music = hell.ogg
+clouds = 32
+object = palm, 4,  169, 467, 61, 6,  2,  0, 0, 333, 238,  168, 237, 55, 92
+object = hogscar, 1,  20, 159, 70, 1,  1,  0, 0, 132, 140
+object = camera, 1,  25, 285, 92, 25,  1,  0, 0, 123, 222
+object = clapper, 1,  52, 227, 18, 5,  1,  0, 0, 263, 209
+object = reel, 1,  64, 128, 1, 1,  2,  0, 0, 150, 90,  170, 90, 49, 40
+object = reel2, 1,  40, 0, 20, 5,  1,  0, 45, 140, 175
+object = SignL, 1,  177, 15, 4, 39,  1,  0, 0, 160, 54
+object = SignR, 1,  0, 17, 5, 39,  1,  23, 0, 158, 56
+;spray = star1, 1
+;spary = star2, 1
+;spray = star3, 1
+spray = star4, 1
+spray = star5, 1
+flakes = 100, 3, 99999999, 10, 20
--- a/share/hedgewars/Data/Themes/Nature/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Nature/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -16,4 +16,4 @@
 object = snail, 3, 51, 94, 52, 3, 1, 0, 0, 135, 87
 object = mushroom, 3, 14, 77, 24, 2, 1, 0, 0, 76, 73
 object = mushroom2, 3, 24, 78, 48, 7, 2, 0, 0, 80, 36, 15, 38, 57, 30
-flakes = 55, 40, 99999999, 30, 200
+flakes = 55, 40, 0, 30, 200
--- a/share/hedgewars/Data/Themes/Snow/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Snow/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -9,6 +9,6 @@
 object = plant2, 3, 0, 85, 25, 25, 2, 0, 0, 170, 70, 50, 70, 120, 40
 object = plant3, 3, 26, 0, 48, 1, 1, 25, 15, 50, 60
 object = plant4, 3, 45, 4, 1, 45, 1, 20, 45, 20, 60
-flakes = 100, 3, 99999999, 100, 300
+flakes = 100, 3, 0, 100, 300
 ice = yes
 snow = yes
--- a/share/hedgewars/Data/Themes/Stage/theme.cfg	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/Themes/Stage/theme.cfg	Sat Jan 03 23:46:26 2015 +0300
@@ -15,4 +15,4 @@
 spray = poster2, 2
 spray = poster3, 2
 spray = poster4, 2
-flakes = 100, 3, 99999999, 10, 20
+flakes = 100, 3, 0, 10, 20
--- a/share/hedgewars/Data/misc/hedgewars-mimeinfo.xml	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/misc/hedgewars-mimeinfo.xml	Sat Jan 03 23:46:26 2015 +0300
@@ -7,7 +7,7 @@
     <generic-icon name="applications-games"/>
     -->
     <comment>Hedgewars Demo</comment>
-    <comment xml:lang="de">Hedgewars Demo</comment>
+    <comment xml:lang="de">Hedgewars-Wiederholung</comment>
     <comment xml:lang="es">Demo de Hedgewars</comment>
     <comment xml:lang="fr">Démonstration d'Hedgewars</comment>
     <comment xml:lang="it">Demo di Hedgewars</comment>
@@ -29,7 +29,7 @@
     <icon name="hedgewars" />
     <!--<generic-icon name="applications-games"/>-->
     <comment>Hedgewars Save</comment>
-    <comment xml:lang="de">Hedgewars gespeichertes Spiel</comment>
+    <comment xml:lang="de">Hedgewars-Spielstand</comment>
     <comment xml:lang="es">Partida guardada de Hedgewars</comment>
     <comment xml:lang="fr">Parties enregistrées d'Hedgewars</comment>
     <comment xml:lang="ko">헤즈와스 저장된 게임</comment>
--- a/share/hedgewars/Data/misc/hwengine.desktop.in	Thu Dec 18 00:03:53 2014 +0300
+++ b/share/hedgewars/Data/misc/hwengine.desktop.in	Sat Jan 03 23:46:26 2015 +0300
@@ -3,7 +3,7 @@
 Version=1.0
 Name=Hedgewars Engine
 GenericName=Hedgewars engine, for playback of saves and demos
-GenericName[de]=Hedgewars engine, für die Wiedergabe von gespeicherten Spielen und Demos
+GenericName[de]=Hedgewars-Engine, für die Wiedergabe von gespeicherten Spielen und Demos
 GenericName[es]=Motor del juego Hedgewars, reproduce demos y partidas guardadas
 GenericName[fr]=Moteur graphique d'Hedgewars, pour revoir les parties enregistrées et de démonstration.
 GenericName[it]=Motore grafico di Hedgewars, riproduce le demo e riprende le partite salvate
--- a/tests/lua/drillrockets_boom.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/tests/lua/drillrockets_boom.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,29 +1,3 @@
-
- -- taken from http://code.google.com/p/hedgewars/wiki/LuaDrawing
- PointsBuffer = ''  -- A string to accumulate points in
- function AddPoint(x, y, width, erase)
-     PointsBuffer = PointsBuffer .. string.char(band(x,0xff00) / 256 , band(x,0xff) , band(y,0xff00) / 256 , band(y,0xff))
-     if width then
-         width = bor(width,0x80)
-         if erase then
-             width = bor(width,0x40)
-         end
-         PointsBuffer = PointsBuffer .. string.char(width)
-     else
-         PointsBuffer = PointsBuffer .. string.char(0)
-     end
-     if #PointsBuffer > 245 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
- function FlushPoints()
-     if #PointsBuffer > 0 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
-
 
 local ta_pointsize = 63
 local ta_radius = (ta_pointsize * 10 + 6) / 2
@@ -84,7 +58,7 @@
 	DamagePercent = 1
 
 	-- Draw Map
-	AddPoint(10,30,0) -- hog spawn platform
+	-- AddPoint(10,30,0) -- hog spawn platform
 	-- test areas
 	AddTestArea(taa_v1)
 	AddTestArea(taa_v2)
--- a/tests/lua/drillrockets_drill.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/tests/lua/drillrockets_drill.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,29 +1,3 @@
-
- -- taken from http://code.google.com/p/hedgewars/wiki/LuaDrawing
- PointsBuffer = ''  -- A string to accumulate points in
- function AddPoint(x, y, width, erase)
-     PointsBuffer = PointsBuffer .. string.char(band(x,0xff00) / 256 , band(x,0xff) , band(y,0xff00) / 256 , band(y,0xff))
-     if width then
-         width = bor(width,0x80)
-         if erase then
-             width = bor(width,0x40)
-         end
-         PointsBuffer = PointsBuffer .. string.char(width)
-     else
-         PointsBuffer = PointsBuffer .. string.char(0)
-     end
-     if #PointsBuffer > 245 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
- function FlushPoints()
-     if #PointsBuffer > 0 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
-
 
 local ta_pointsize = 63
 local ta_radius = (ta_pointsize * 10 + 6) / 2
--- a/tests/lua/hellfire_burns.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/tests/lua/hellfire_burns.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,29 +1,3 @@
-
- -- taken from http://code.google.com/p/hedgewars/wiki/LuaDrawing
- PointsBuffer = ''  -- A string to accumulate points in
- function AddPoint(x, y, width, erase)
-     PointsBuffer = PointsBuffer .. string.char(band(x,0xff00) / 256 , band(x,0xff) , band(y,0xff00) / 256 , band(y,0xff))
-     if width then
-         width = bor(width,0x80)
-         if erase then
-             width = bor(width,0x40)
-         end
-         PointsBuffer = PointsBuffer .. string.char(width)
-     else
-         PointsBuffer = PointsBuffer .. string.char(0)
-     end
-     if #PointsBuffer > 245 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
- function FlushPoints()
-     if #PointsBuffer > 0 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
-
 
 local ta_pointsize = 63
 local ta_radius = (ta_pointsize * 10 + 6) / 2
--- a/tests/lua/twothousandmines.lua	Thu Dec 18 00:03:53 2014 +0300
+++ b/tests/lua/twothousandmines.lua	Sat Jan 03 23:46:26 2015 +0300
@@ -1,30 +1,3 @@
--- spawns 2000 mines in a bit to see if engine can deal with it
-
- -- taken from http://code.google.com/p/hedgewars/wiki/LuaDrawing
- PointsBuffer = ''  -- A string to accumulate points in
- function AddPoint(x, y, width, erase)
-     PointsBuffer = PointsBuffer .. string.char(band(x,0xff00) / 256 , band(x,0xff) , band(y,0xff00) / 256 , band(y,0xff))
-     if width then
-         width = bor(width,0x80)
-         if erase then
-             width = bor(width,0x40)
-         end
-         PointsBuffer = PointsBuffer .. string.char(width)
-     else
-         PointsBuffer = PointsBuffer .. string.char(0)
-     end
-     if #PointsBuffer > 245 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
- function FlushPoints()
-     if #PointsBuffer > 0 then
-         ParseCommand('draw '..PointsBuffer)
-         PointsBuffer = ''
-     end
- end
-
 
 local ta_pointsize = 63
 local ta_radius = (ta_pointsize * 10 + 6) / 2
--- a/tools/docgen.sh	Thu Dec 18 00:03:53 2014 +0300
+++ b/tools/docgen.sh	Sat Jan 03 23:46:26 2015 +0300
@@ -25,10 +25,13 @@
 branch=$(hg identify -b)
 rev=$(hg identify -rdefault -i)
 
-branchurl="<a href=http://code.google.com/p/hedgewars/source/list?name=${branch}>${branch}</a>"
-revurl="<a href=http://code.google.com/p/hedgewars/source/detail?r=${rev}>${rev}</a>"
+#branchurl="<a href=http://code.google.com/p/hedgewars/source/list?name=${branch}>${branch}</a>"
+#revurl="<a href=http://code.google.com/p/hedgewars/source/detail?r=${rev}>${rev}</a>"
 
-export PROJECT_NUMBER="${branchurl} as of ${revurl}"
+branchurl="$branch"
+revurl="$rev"
+
+export PROJECT_NUMBER="${branchurl} branch, ${revurl}"
 export OUTPUT_DIRECTORY
 
 fi
--- a/tools/pas2c/Pas2C.hs	Thu Dec 18 00:03:53 2014 +0300
+++ b/tools/pas2c/Pas2C.hs	Sat Jan 03 23:46:26 2015 +0300
@@ -909,17 +909,15 @@
     iType <- gets lastIdTypeDecl
     e1 <- expr2C e1'
     e2 <- expr2C e2'
-    let inc = if up then "inc" else "dec"
-    let add = if up then "+ 1" else "- 1"
     let iEnd = i <> text "__end__"
-    ph <- phrase2C . appendPhrase (BuiltInFunctionCall [Reference $ SimpleReference i'] (SimpleReference (Identifier inc BTUnknown))) $ wrapPhrase p
+    ph <- phrase2C $ wrapPhrase p
     return . braces $
         i <+> text "=" <+> e1 <> semi
         $$
         iType <+> iEnd <+> text "=" <+> e2 <> semi
         $$
         text "if" <+> (parens $ i <+> text (if up then "<=" else ">=") <+> iEnd) <+> text "do" <+> ph <+>
-        text "while" <> parens (i <+> text "!=" <+> iEnd <+> text add) <> semi
+        text "while" <> parens (i <> text (if up then "++" else "--") <+> text "!=" <+> iEnd) <> semi
     where
         appendPhrase p (Phrases ps) = Phrases $ ps ++ [p]
         appendPhrase _ _ = error "illegal appendPhrase call"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/rgit2hg.sh	Sat Jan 03 23:46:26 2015 +0300
@@ -0,0 +1,62 @@
+#!/bin/sh
+
+#HW_HG=
+
+if [ -z "$1" ]; then
+    echo 'You have to supply at least one hedgewars git revision as parameter!' >&2
+    exit
+fi
+
+if [ -z "$HW_HG" ]; then 
+    HW_HG="$PWD"
+fi
+
+if [ ! -d "$HW_HG/.hg" ]; then
+    echo 'You have to set HW_HG (inside script or env) to a repo clone OR call this script from inside the repository!' >&2
+    exit
+fi
+
+while [ ! -z "$1" ]; do
+    echo
+    echo
+    echo '---------------------------------------------------------------'
+    echo "$1"
+    echo '---------------------------------------------------------------'
+    url="https://github.com/hedgewars/hw/commit/$1"
+    echo "Checking $url ..."
+    echo
+    page=$(wget -q -O- "$url")
+    author=$(echo "$page" | sed -rn 's/^.*"author-name">(<[^>]*>)*([^ <]*).*/\2/ p')
+    if [ -z "$author" ]; then
+        echo 'Couldn'\''t find author! Skipping '"$1"' ...' >&2
+        shift
+        continue
+    fi
+    echo 'Found author: '"$author"
+    date=$(echo "$page" | sed -rn 's/^.*<time datetime="([^T]+)T([^Z]+).*/\1 \2 +0000/ p')
+    if [ -z "$date" ]; then
+        echo 'Couldn'\''t find date! Skipping '"$1"' ...' >&2
+        shift
+        continue
+    fi
+    echo 'Found date:   '"$date"
+    echo
+    echo 'Checking mercurial log for matches ...'
+    echo
+    result=$(hg log -R "$HW_HG" -u "$author" -d "$date" -v -l1)
+    if [ -z "$result" ]; then
+        echo 'No match :('
+        shift
+        continue
+    fi
+    rev=$(echo "$result" | sed 's/^.*://;q')
+    echo 'Found match: r'"$rev"
+    echo 'Link:        https://code.google.com/p/hedgewars/source/detail?r='"$rev"
+    echo
+    echo "$result"
+    # proceed to next parameter
+    shift
+done
+
+echo
+